aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-01-26 23:33:47 +0000
committerdos-reis <gdr@axiomatics.org>2008-01-26 23:33:47 +0000
commit228450b9bdf11e3a51dc0e2069bf7e12cc99d3a9 (patch)
tree051fff1be001d6f433099fa358022ad251d7b3a4
parent31a2bea16b21b23a129599b2fd84843e58ac9273 (diff)
downloadopen-axiom-228450b9bdf11e3a51dc0e2069bf7e12cc99d3a9.tar.gz
* interp/database.boot: Tidy uses of $EmptyEnvironment.
* interp/i-map.boot: Likewise. Allocate fresh cell for $env. * interp/i-spec1.boot: Likewise. * interp/i-syscmd.boot: Likewise. * interp/i-toplev.boot: Likewise. * interp/lisplib.boot: Likewise. * interp/setvars.boot: Likewise. * interp/sys-globals.boot: Likewise. * interp/nruncomp.boot: Encode flag types too. * interp/template.boot: Likewise. * share/algebra: Update databases.
-rw-r--r--src/ChangeLog19
-rw-r--r--src/interp/database.boot6
-rw-r--r--src/interp/i-map.boot12
-rw-r--r--src/interp/i-spec1.boot4
-rw-r--r--src/interp/i-syscmd.boot4
-rw-r--r--src/interp/i-toplev.boot4
-rw-r--r--src/interp/lisplib.boot6
-rw-r--r--src/interp/nruncomp.boot4
-rw-r--r--src/interp/setvars.boot6
-rw-r--r--src/interp/sys-globals.boot10
-rw-r--r--src/interp/template.boot5
-rw-r--r--src/share/algebra/browse.daase756
-rw-r--r--src/share/algebra/category.daase1126
-rw-r--r--src/share/algebra/compress.daase1285
-rw-r--r--src/share/algebra/interp.daase8264
-rw-r--r--src/share/algebra/operation.daase27690
16 files changed, 19611 insertions, 19590 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 41c48f4e..83028dec 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,18 @@
+2008-01-26 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
+ * interp/database.boot: Tidy uses of $EmptyEnvironment.
+ * interp/i-map.boot: Likewise. Allocate fresh cell for $env.
+ * interp/i-spec1.boot: Likewise.
+ * interp/i-syscmd.boot: Likewise.
+ * interp/i-toplev.boot: Likewise.
+ * interp/lisplib.boot: Likewise.
+ * interp/setvars.boot: Likewise.
+ * interp/sys-globals.boot: Likewise.
+
+ * interp/nruncomp.boot: Encode flag types too.
+ * interp/template.boot: Likewise.
+ * share/algebra: Update databases.
+
2008-01-25 Gabriel Dos Reis <gdr@cs.tamu.edu>
Fix AW/311
@@ -20,12 +35,12 @@
Waldek Hebisch <hebisch@math.uni.wroc.pl>
Fix AW/102
- * interp/iterator.boot (getIdentity): Properly identity the
+ * interp/iterator.boot (getIdentity): Properly identify the
algebra empty list.
2008-01-21 Gabriel Dos Reis <gdr@cs.tamu.edu>
- Apply patch byStephen Wilson <<wilsons@multiboard.com>
+ Apply patch by Stephen Wilson <<wilsons@multiboard.com>
Fix AW/370
* interp/compiler.boot (compWithMappingMode): Consult current
environment to decide which variabes are free.
diff --git a/src/interp/database.boot b/src/interp/database.boot
index aef6f6fa..60387234 100644
--- a/src/interp/database.boot
+++ b/src/interp/database.boot
@@ -1,6 +1,6 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
--- Copyright (C) 2007, Gabriel Dos Reis.
+-- Copyright (C) 2007-2008, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -101,10 +101,10 @@ augmentLisplibModemapsFromFunctor(form,opAlist,signature) ==
rebuildCDT(filemode) ==
clearConstructorAndLisplibCaches()
$databaseQueue:local :=nil
- $e: local := [$EmptyEnvironment] -- We may need to evaluate Categories
+ $e: local := $EmptyEnvironment -- We may need to evaluate Categories
buildDatabase(filemode,false)
$IOindex:= 1
- $InteractiveFrame:= [$EmptyEnvironment]
+ $InteractiveFrame:= $EmptyEnvironment
0
buildDatabase(filemode,expensive) ==
diff --git a/src/interp/i-map.boot b/src/interp/i-map.boot
index 1dc09662..0add6301 100644
--- a/src/interp/i-map.boot
+++ b/src/interp/i-map.boot
@@ -1,5 +1,7 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
+-- Copyright (C) 2007-2008, Gabriel Dos Reis.
+-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are
@@ -115,7 +117,7 @@ addDefMap(['DEF,lhs,mapsig,.,rhs],pred) ==
someDecs := nil
allDecs := true
mapmode := ['Mapping]
- $env:local := [$EmptyEnvironment]
+ $env:local := [[nil]]
$eval:local := true --generate code-- don't just type analyze
$genValue:local := true --evaluate all generated code
for d in mapsig repeat
@@ -578,7 +580,7 @@ rewriteMap0(op,opName,argl) ==
tar:= nil
argTypes:= nil
get(opName,'mode,$e) is ['Mapping,tar,:argTypes]
- $env: local := [$EmptyEnvironment]
+ $env: local := [[nil]]
for arg in argl
for var in $FormalMapVariableList repeat
if argTypes then
@@ -611,7 +613,7 @@ rewriteMap1(opName,argl,sig) ==
for arg in reverse argl repeat
v := getValue arg
evArgl := [objNew(objVal v, objMode v),:evArgl]
- $env : local := [$EmptyEnvironment]
+ $env : local := [[nil]]
for arg in argl for evArg in evArgl
for var in $FormalMapVariableList repeat
if argTypes then
@@ -669,7 +671,7 @@ compileDeclaredMap(op,sig,mapDef) ==
-- creates a local modemap and puts it into the environment
$localVars: local := nil
$freeVars: local := nil
- $env:local:= [$EmptyEnvironment]
+ $env:local:= [[nil]]
parms:=[var for var in $FormalMapVariableList for m in CDR sig]
for m in CDR sig for var in parms repeat
$env:= put(var,'mode,m,$env)
@@ -785,7 +787,7 @@ analyzeUndeclaredMap(op,argTypes,mapDef,$mapList) ==
-- Computes the signature of the map named op, and compiles the body
$freeVars:local := NIL
$localVars: local := NIL
- $env:local:= [$EmptyEnvironment]
+ $env:local:= [[nil]]
$mapList := [op,:$mapList]
parms:=[var for var in $FormalMapVariableList for m in argTypes]
for m in argTypes for var in parms repeat
diff --git a/src/interp/i-spec1.boot b/src/interp/i-spec1.boot
index 14c28dcd..00e391bb 100644
--- a/src/interp/i-spec1.boot
+++ b/src/interp/i-spec1.boot
@@ -1,5 +1,7 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
+-- Copyright (C) 2007-2008, Gabriel Dos Reis.
+-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are
@@ -82,7 +84,7 @@ upADEF t ==
-- $localVars: local := nil
-- $freeVars: local := nil
--- $env: local := [$EmptyEnvironment]
+-- $env: local := [[nil]]
$compilingMap : local := true
-- if there is a predicate, merge it in with the body
diff --git a/src/interp/i-syscmd.boot b/src/interp/i-syscmd.boot
index 9835c95c..188d0899 100644
--- a/src/interp/i-syscmd.boot
+++ b/src/interp/i-syscmd.boot
@@ -1,5 +1,7 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
+-- Copyright (C) 2007-2008, Gabriel Dos Reis.
+-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are
@@ -2259,7 +2261,7 @@ showSpad2Cmd l ==
reportOperations(oldArg,u) ==
-- u might be an uppercased version of oldArg
- $env:local := [$EmptyEnvironment]
+ $env:local := [[nil]]
$eval:local := true --generate code-- don't just type analyze
$genValue:local := true --evaluate all generated code
null u => nil
diff --git a/src/interp/i-toplev.boot b/src/interp/i-toplev.boot
index 0c40b23d..27b0cc47 100644
--- a/src/interp/i-toplev.boot
+++ b/src/interp/i-toplev.boot
@@ -1,5 +1,7 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
+-- Copyright (C) 2007-2008, Gabriel Dos Reis.
+-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are
@@ -305,7 +307,7 @@ interpretTopLevel(x, posnForm) ==
interpret(x, :restargs) ==
posnForm := if PAIRP restargs then CAR restargs else restargs
--type analyzes and evaluates expression x, returns object
- $env:local := [$EmptyEnvironment]
+ $env:local := [[nil]]
$eval:local := true --generate code-- don't just type analyze
$genValue:local := true --evaluate all generated code
interpret1(x,nil,posnForm)
diff --git a/src/interp/lisplib.boot b/src/interp/lisplib.boot
index 056a9603..8f46262c 100644
--- a/src/interp/lisplib.boot
+++ b/src/interp/lisplib.boot
@@ -1,5 +1,7 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
+-- Copyright (C) 2007-2008, Gabriel Dos Reis.
+-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are
@@ -160,7 +162,7 @@ loadLib cname ==
else
REMPROP(cname,'NILADIC)
MAKEPROP(cname,'LOADED,fullLibName)
- if $InteractiveMode then $CategoryFrame := [$EmptyEnvironment]
+ if $InteractiveMode then $CategoryFrame := $EmptyEnvironment
stopTimingProcess 'load
'T
@@ -178,7 +180,7 @@ loadLibNoUpdate(cname, libName, fullLibName) ==
clearConstructorCache cname
installConstructor(cname,kind)
MAKEPROP(cname,'LOADED,fullLibName)
- if $InteractiveMode then $CategoryFrame := [$EmptyEnvironment]
+ if $InteractiveMode then $CategoryFrame := $EmptyEnvironment
stopTimingProcess 'load
'T
diff --git a/src/interp/nruncomp.boot b/src/interp/nruncomp.boot
index 02ce4bd1..9b52de19 100644
--- a/src/interp/nruncomp.boot
+++ b/src/interp/nruncomp.boot
@@ -1,6 +1,6 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
--- Copyright (C) 2007, Gabriel Dos Reis.
+-- Copyright (C) 2007-2008, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -237,7 +237,7 @@ NRTgetLocalIndex1(item,killBindingIfTrue) ==
-- when assigning slot to flag values, we don't really want to
-- compile them. Rather, we want to record them as if they were atoms.
flag := isQuasiquote item
- $NRTdeltaList:= [['domain,(flag => item; NRTaddInner item),:value],
+ $NRTdeltaList:= [['domain, NRTaddInner item,:value],
:$NRTdeltaList]
saveNRTdeltaListComp:= $NRTdeltaListComp:=[nil,:$NRTdeltaListComp]
saveIndex := $NRTbase + $NRTdeltaLength
diff --git a/src/interp/setvars.boot b/src/interp/setvars.boot
index 4aee9c65..eec432a5 100644
--- a/src/interp/setvars.boot
+++ b/src/interp/setvars.boot
@@ -1,6 +1,6 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
--- Copyright (C) 2007, Gabriel Dos Reis.
+-- Copyright (C) 2007-2008, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -158,8 +158,8 @@ resetWorkspaceVariables() ==
SETQ($dependeeClosureAlist , NIL)
SETQ($IOindex , 1 )
SETQ($coerceIntByMapCounter , 0 )
- SETQ($e , [$EmptyEnvironment])
- SETQ($env , [$EmptyEnvironment])
+ SETQ($e , $EmptyEnvironment)
+ SETQ($env , [[nil]])
-- many variables set by the following
diff --git a/src/interp/sys-globals.boot b/src/interp/sys-globals.boot
index 24e80779..cc7242d2 100644
--- a/src/interp/sys-globals.boot
+++ b/src/interp/sys-globals.boot
@@ -1,6 +1,6 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
--- Copyright (C) 2007, Gabriel Dos Reis.
+-- Copyright (C) 2007-2008, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -31,8 +31,6 @@
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--
--- Copyright (C) 2007 Gabriel Dos Reis
---
--
-- This file collects and documents some the global variables used by either
@@ -160,9 +158,9 @@ $insideWhereIfTrue := false
$instantRecord := MAKE_-HASHTABLE "ID"
++
-$InteractiveFrame := [$EmptyEnvironment]
-$e := [$EmptyEnvironment]
-$env := [$EmptyEnvironment]
+$InteractiveFrame := $EmptyEnvironment
+$e := $EmptyEnvironment
+$env := [[nil]]
++
$InteractiveMode := false
diff --git a/src/interp/template.boot b/src/interp/template.boot
index a8abe566..cf3adf6b 100644
--- a/src/interp/template.boot
+++ b/src/interp/template.boot
@@ -1,6 +1,6 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
--- Copyright (C) 2007, Gabriel Dos Reis.
+-- Copyright (C) 2007-2008, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -278,7 +278,7 @@ NRTaddInner x ==
atom x => nil
x is ['Record,:l] =>
for [.,.,y] in l repeat NRTinnerGetLocalIndex y
- first x in '(Union Mapping) =>
+ first x in '(Union Mapping _[_|_|_]) =>
for y in rest x repeat
y is [":",.,z] => NRTinnerGetLocalIndex z
NRTinnerGetLocalIndex y
@@ -286,7 +286,6 @@ NRTaddInner x ==
getConstructorSignature x is [.,:ml] =>
for y in rest x for m in ml | not (y = '$) repeat
isCategoryForm(m,$CategoryFrame) => NRTinnerGetLocalIndex y
- isQuasiquote x => NRTinnerGetLocalIndex x
keyedSystemError("S2NR0003",[x])
x
diff --git a/src/share/algebra/browse.daase b/src/share/algebra/browse.daase
index 7da8d7f8..60de9c5b 100644
--- a/src/share/algebra/browse.daase
+++ b/src/share/algebra/browse.daase
@@ -1,12 +1,12 @@
-(2234201 . 3409939477)
+(2234201 . 3410359537)
(-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.")))
-((-4239 . T) (-4238 . T) (-2047 . T))
+((-4239 . T) (-4238 . T) (-2088 . 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}.")))
@@ -46,13 +46,13 @@ 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}.")))
-((-4235 . T) (-4233 . T) (-4232 . T) ((-4240 "*") . T) (-4231 . T) (-4236 . T) (-4230 . T) (-2047 . T))
+((-4235 . T) (-4233 . T) (-4232 . T) ((-4240 "*") . T) (-4231 . T) (-4236 . T) (-4230 . T) (-2088 . 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 R -4055)
+(-31 R -4102)
((|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 -962) (QUOTE (-522)))))
@@ -62,7 +62,7 @@ NIL
((|HasAttribute| |#1| (QUOTE -4238)))
(-33)
((|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.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-34)
((|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}.")))
@@ -70,7 +70,7 @@ NIL
NIL
(-35 |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}.")))
-((-4238 . T) (-4239 . T) (-2047 . T))
+((-4238 . T) (-4239 . T) (-2088 . T))
NIL
(-36 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.")))
@@ -84,11 +84,11 @@ NIL
((|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
-(-39 -4055 UP UPUP -3010)
+(-39 -4102 UP UPUP -1246)
((|constructor| (NIL "Function field defined by \\spad{f}(\\spad{x},{} \\spad{y}) = 0.")) (|knownInfBasis| (((|Void|) (|NonNegativeInteger|)) "\\spad{knownInfBasis(n)} \\undocumented{}")))
((-4231 |has| (-382 |#2|) (-338)) (-4236 |has| (-382 |#2|) (-338)) (-4230 |has| (-382 |#2|) (-338)) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-382 |#2|) (QUOTE (-133))) (|HasCategory| (-382 |#2|) (QUOTE (-135))) (|HasCategory| (-382 |#2|) (QUOTE (-324))) (|HasCategory| (-382 |#2|) (QUOTE (-338))) (-3708 (|HasCategory| (-382 |#2|) (QUOTE (-338))) (|HasCategory| (-382 |#2|) (QUOTE (-324)))) (|HasCategory| (-382 |#2|) (QUOTE (-343))) (|HasCategory| (-382 |#2|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| (-382 |#2|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-382 |#2|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-343))) (-3708 (|HasCategory| (-382 |#2|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-12 (|HasCategory| (-382 |#2|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-3708 (-12 (|HasCategory| (-382 |#2|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-12 (|HasCategory| (-382 |#2|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-382 |#2|) (QUOTE (-324))))) (-12 (|HasCategory| (-382 |#2|) (QUOTE (-210))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-3708 (-12 (|HasCategory| (-382 |#2|) (QUOTE (-210))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (|HasCategory| (-382 |#2|) (QUOTE (-324)))))
-(-40 R -4055)
+((|HasCategory| (-382 |#2|) (QUOTE (-133))) (|HasCategory| (-382 |#2|) (QUOTE (-135))) (|HasCategory| (-382 |#2|) (QUOTE (-324))) (|HasCategory| (-382 |#2|) (QUOTE (-338))) (-3844 (|HasCategory| (-382 |#2|) (QUOTE (-338))) (|HasCategory| (-382 |#2|) (QUOTE (-324)))) (|HasCategory| (-382 |#2|) (QUOTE (-343))) (|HasCategory| (-382 |#2|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| (-382 |#2|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-382 |#2|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-343))) (-3844 (|HasCategory| (-382 |#2|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-12 (|HasCategory| (-382 |#2|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-3844 (-12 (|HasCategory| (-382 |#2|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-12 (|HasCategory| (-382 |#2|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-382 |#2|) (QUOTE (-324))))) (-12 (|HasCategory| (-382 |#2|) (QUOTE (-210))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-3844 (-12 (|HasCategory| (-382 |#2|) (QUOTE (-210))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (|HasCategory| (-382 |#2|) (QUOTE (-324)))))
+(-40 R -4102)
((|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 (-426))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -405) (|devaluate| |#1|)))))
@@ -107,7 +107,7 @@ NIL
(-44 |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.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-1014))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-784))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (-12 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3048) (|devaluate| |#2|)))))) (-3708 (-12 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-784))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3048) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3048) (|devaluate| |#2|))))))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-784))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-1014))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-784))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (-12 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3149) (|devaluate| |#2|)))))) (-3844 (-12 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-784))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3149) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3149) (|devaluate| |#2|))))))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-784))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
(-45 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
@@ -140,7 +140,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
-(-53 |Base| R -4055)
+(-53 |Base| R -4102)
((|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
@@ -150,7 +150,7 @@ NIL
NIL
(-55 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")))
-((-4238 . T) (-4239 . T) (-2047 . T))
+((-4238 . T) (-4239 . T) (-2088 . T))
NIL
(-56 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),{}...]}.")))
@@ -159,64 +159,64 @@ NIL
(-57 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}")))
((-4239 . T) (-4238 . T))
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3708 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3844 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-58 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}.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
-(-59 -2888)
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+(-59 -3015)
((|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
-(-60 -2888)
+(-60 -3015)
((|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
-(-61 -2888)
+(-61 -3015)
((|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
-(-62 -2888)
+(-62 -3015)
((|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
-(-63 -2888)
+(-63 -3015)
((|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
-(-64 -2888)
+(-64 -3015)
((|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
-(-65 -2888)
+(-65 -3015)
((|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
-(-66 -2888)
+(-66 -3015)
((|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
-(-67 -2888)
+(-67 -3015)
((|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
-(-68 -2888)
+(-68 -3015)
((|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
-(-69 -2888)
+(-69 -3015)
((|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
-(-70 -2888)
+(-70 -3015)
((|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
-(-71 -2888)
+(-71 -3015)
((|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
-(-72 -2888)
+(-72 -3015)
((|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
@@ -228,55 +228,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
-(-75 -2888)
+(-75 -3015)
((|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
-(-76 -2888)
+(-76 -3015)
((|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
-(-77 -2888)
+(-77 -3015)
((|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
-(-78 -2888)
+(-78 -3015)
((|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
-(-79 -2888)
+(-79 -3015)
((|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
-(-80 -2888)
+(-80 -3015)
((|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
-(-81 -2888)
+(-81 -3015)
((|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
-(-82 -2888)
+(-82 -3015)
((|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
-(-83 -2888)
+(-83 -3015)
((|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
-(-84 -2888)
+(-84 -3015)
((|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
-(-85 -2888)
+(-85 -3015)
((|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
-(-86 -2888)
+(-86 -3015)
((|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
-(-87 -2888)
+(-87 -3015)
((|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
@@ -287,7 +287,7 @@ NIL
(-89 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}.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-90 S)
((|constructor| (NIL "Category for the inverse trigonometric functions.")) (|atan| (($ $) "\\spad{atan(x)} returns the arc-tangent of \\spad{x}.")) (|asin| (($ $) "\\spad{asin(x)} returns the arc-sine of \\spad{x}.")) (|asec| (($ $) "\\spad{asec(x)} returns the arc-secant of \\spad{x}.")) (|acsc| (($ $) "\\spad{acsc(x)} returns the arc-cosecant of \\spad{x}.")) (|acot| (($ $) "\\spad{acot(x)} returns the arc-cotangent of \\spad{x}.")) (|acos| (($ $) "\\spad{acos(x)} returns the arc-cosine of \\spad{x}.")))
NIL
@@ -323,7 +323,7 @@ NIL
(-98 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}.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-99 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
@@ -338,12 +338,12 @@ NIL
NIL
(-102 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.")))
-((-4239 . T) (-2047 . T))
+((-4239 . T) (-2088 . T))
NIL
(-103)
((|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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-522) (QUOTE (-838))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-522) (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-135))) (|HasCategory| (-522) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-522) (QUOTE (-947))) (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-1061))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-522) (QUOTE (-210))) (|HasCategory| (-522) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-522) (LIST (QUOTE -483) (QUOTE (-1085)) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -285) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -262) (QUOTE (-522)) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-283))) (|HasCategory| (-522) (QUOTE (-507))) (|HasCategory| (-522) (QUOTE (-784))) (-3708 (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (QUOTE (-784)))) (|HasCategory| (-522) (LIST (QUOTE -584) (QUOTE (-522)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (|HasCategory| (-522) (QUOTE (-133)))))
+((|HasCategory| (-522) (QUOTE (-838))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-522) (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-135))) (|HasCategory| (-522) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-522) (QUOTE (-947))) (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-1061))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-522) (QUOTE (-210))) (|HasCategory| (-522) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-522) (LIST (QUOTE -483) (QUOTE (-1085)) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -285) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -262) (QUOTE (-522)) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-283))) (|HasCategory| (-522) (QUOTE (-507))) (|HasCategory| (-522) (QUOTE (-784))) (-3844 (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (QUOTE (-784)))) (|HasCategory| (-522) (LIST (QUOTE -584) (QUOTE (-522)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (|HasCategory| (-522) (QUOTE (-133)))))
(-104)
((|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
@@ -372,7 +372,7 @@ 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
-(-111 -4055 UP)
+(-111 -4102 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
@@ -383,14 +383,14 @@ NIL
(-113 |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}.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-112 |#1|) (QUOTE (-838))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-112 |#1|) (QUOTE (-133))) (|HasCategory| (-112 |#1|) (QUOTE (-135))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-112 |#1|) (QUOTE (-947))) (|HasCategory| (-112 |#1|) (QUOTE (-757))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-112 |#1|) (QUOTE (-1061))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| (-112 |#1|) (QUOTE (-210))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -112) (|devaluate| |#1|)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -285) (LIST (QUOTE -112) (|devaluate| |#1|)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -262) (LIST (QUOTE -112) (|devaluate| |#1|)) (LIST (QUOTE -112) (|devaluate| |#1|)))) (|HasCategory| (-112 |#1|) (QUOTE (-283))) (|HasCategory| (-112 |#1|) (QUOTE (-507))) (|HasCategory| (-112 |#1|) (QUOTE (-784))) (-3708 (|HasCategory| (-112 |#1|) (QUOTE (-757))) (|HasCategory| (-112 |#1|) (QUOTE (-784)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-112 |#1|) (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-112 |#1|) (QUOTE (-838)))) (|HasCategory| (-112 |#1|) (QUOTE (-133)))))
+((|HasCategory| (-112 |#1|) (QUOTE (-838))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-112 |#1|) (QUOTE (-133))) (|HasCategory| (-112 |#1|) (QUOTE (-135))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-112 |#1|) (QUOTE (-947))) (|HasCategory| (-112 |#1|) (QUOTE (-757))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-112 |#1|) (QUOTE (-1061))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| (-112 |#1|) (QUOTE (-210))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -112) (|devaluate| |#1|)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -285) (LIST (QUOTE -112) (|devaluate| |#1|)))) (|HasCategory| (-112 |#1|) (LIST (QUOTE -262) (LIST (QUOTE -112) (|devaluate| |#1|)) (LIST (QUOTE -112) (|devaluate| |#1|)))) (|HasCategory| (-112 |#1|) (QUOTE (-283))) (|HasCategory| (-112 |#1|) (QUOTE (-507))) (|HasCategory| (-112 |#1|) (QUOTE (-784))) (-3844 (|HasCategory| (-112 |#1|) (QUOTE (-757))) (|HasCategory| (-112 |#1|) (QUOTE (-784)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-112 |#1|) (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-112 |#1|) (QUOTE (-838)))) (|HasCategory| (-112 |#1|) (QUOTE (-133)))))
(-114 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 -4239)))
(-115 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.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-116 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.")))
@@ -399,14 +399,14 @@ NIL
(-117 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")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-118 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}}.")) (^ (($ $) "\\spad{^ b} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")) (|not| (($ $) "\\spad{not(b)} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")))
NIL
NIL
(-119)
((|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}}.")) (^ (($ $) "\\spad{^ b} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")) (|not| (($ $) "\\spad{not(b)} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")))
-((-4239 . T) (-4238 . T) (-2047 . T))
+((-4239 . T) (-4238 . T) (-2088 . T))
NIL
(-120 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")))
@@ -414,16 +414,16 @@ NIL
NIL
(-121 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")))
-((-4238 . T) (-4239 . T) (-2047 . T))
+((-4238 . T) (-4239 . T) (-2088 . T))
NIL
(-122 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.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-123 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.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-124)
((|constructor| (NIL "This is an \\spadtype{AbelianMonoid} with the cancellation property,{} \\spadignore{i.e.} \\spad{ a+b = a+c => b=c }. This is formalised by the partial subtraction operator,{} which satisfies the axioms listed below: \\blankline")) (|subtractIfCan| (((|Union| $ "failed") $ $) "\\spad{subtractIfCan(x,{} y)} returns an element \\spad{z} such that \\spad{z+y=x} or \"failed\" if no such element exists.")))
NIL
@@ -436,18 +436,18 @@ NIL
((|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.")))
(((-4240 "*") . T))
NIL
-(-127 |minix| -2617 S T$)
+(-127 |minix| -2787 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
-(-128 |minix| -2617 R)
+(-128 |minix| -2787 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
(-129)
((|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}.")))
((-4238 . T) (-4228 . T) (-4239 . T))
-((|HasCategory| (-132) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-132) (QUOTE (-343))) (|HasCategory| (-132) (QUOTE (-784))) (|HasCategory| (-132) (QUOTE (-1014))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132))))) (-3708 (-12 (|HasCategory| (-132) (QUOTE (-343))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132))))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132)))))) (|HasCategory| (-132) (LIST (QUOTE -562) (QUOTE (-792)))))
+((|HasCategory| (-132) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-132) (QUOTE (-343))) (|HasCategory| (-132) (QUOTE (-784))) (|HasCategory| (-132) (QUOTE (-1014))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132))))) (-3844 (-12 (|HasCategory| (-132) (QUOTE (-343))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132))))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132)))))) (|HasCategory| (-132) (LIST (QUOTE -562) (QUOTE (-792)))))
(-130 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
@@ -472,7 +472,7 @@ NIL
((|constructor| (NIL "Rings of Characteristic Zero.")))
((-4235 . T))
NIL
-(-136 -4055 UP UPUP)
+(-136 -4102 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
@@ -486,7 +486,7 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasAttribute| |#1| (QUOTE -4238)))
(-139 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.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-140 |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.")))
@@ -504,7 +504,7 @@ NIL
((|constructor| (NIL "Color() specifies a domain of 27 colors provided in the \\Language{} system (the colors mix additively).")) (|color| (($ (|Integer|)) "\\spad{color(i)} returns a color of the indicated hue \\spad{i}.")) (|numberOfHues| (((|PositiveInteger|)) "\\spad{numberOfHues()} returns the number of total hues,{} set in totalHues.")) (|hue| (((|Integer|) $) "\\spad{hue(c)} returns the hue index of the indicated color \\spad{c}.")) (|blue| (($) "\\spad{blue()} returns the position of the blue hue from total hues.")) (|green| (($) "\\spad{green()} returns the position of the green hue from total hues.")) (|yellow| (($) "\\spad{yellow()} returns the position of the yellow hue from total hues.")) (|red| (($) "\\spad{red()} returns the position of the red hue from total hues.")) (+ (($ $ $) "\\spad{c1 + c2} additively mixes the two colors \\spad{c1} and \\spad{c2}.")) (* (($ (|DoubleFloat|) $) "\\spad{s * c},{} returns the color \\spad{c},{} whose weighted shade has been scaled by \\spad{s}.") (($ (|PositiveInteger|) $) "\\spad{s * c},{} returns the color \\spad{c},{} whose weighted shade has been scaled by \\spad{s}.")))
NIL
NIL
-(-144 R -4055)
+(-144 R -4102)
((|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
@@ -534,7 +534,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (QUOTE (-507))) (|HasCategory| |#2| (QUOTE (-928))) (|HasCategory| |#2| (QUOTE (-1106))) (|HasCategory| |#2| (QUOTE (-980))) (|HasCategory| |#2| (QUOTE (-947))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (QUOTE (-338))) (|HasAttribute| |#2| (QUOTE -4234)) (|HasAttribute| |#2| (QUOTE -4237)) (|HasCategory| |#2| (QUOTE (-283))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-784))))
(-151 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})")))
-((-4231 -3708 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4234 |has| |#1| (-6 -4234)) (-4237 |has| |#1| (-6 -4237)) (-3911 . T) (-2047 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
+((-4231 -3844 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4234 |has| |#1| (-6 -4234)) (-4237 |has| |#1| (-6 -4237)) (-4005 . T) (-2088 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-152 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.")))
@@ -546,8 +546,8 @@ NIL
NIL
(-154 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}.")))
-((-4231 -3708 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4234 |has| |#1| (-6 -4234)) (-4237 |has| |#1| (-6 -4237)) (-3911 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-324)))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-1106))) (-12 (|HasCategory| |#1| (QUOTE (-928))) (|HasCategory| |#1| (QUOTE (-1106)))) (|HasCategory| |#1| (QUOTE (-947))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -262) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-765))) (|HasCategory| |#1| (QUOTE (-980))) (-12 (|HasCategory| |#1| (QUOTE (-980))) (|HasCategory| |#1| (QUOTE (-1106)))) (|HasCategory| |#1| (QUOTE (-507))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-283))) (-3708 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-514)))) (-3708 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-324)))) (|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-210))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-324)))) (|HasCategory| |#1| (QUOTE (-210))) (-12 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -262) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-343)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-765)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-784)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-947)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-1106)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-338))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-838))))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-838))))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-338)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasAttribute| |#1| (QUOTE -4234)) (|HasAttribute| |#1| (QUOTE -4237)) (-12 (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085))))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-324)))))
+((-4231 -3844 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4234 |has| |#1| (-6 -4234)) (-4237 |has| |#1| (-6 -4237)) (-4005 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
+((|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-324)))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-1106))) (-12 (|HasCategory| |#1| (QUOTE (-928))) (|HasCategory| |#1| (QUOTE (-1106)))) (|HasCategory| |#1| (QUOTE (-947))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -262) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-765))) (|HasCategory| |#1| (QUOTE (-980))) (-12 (|HasCategory| |#1| (QUOTE (-980))) (|HasCategory| |#1| (QUOTE (-1106)))) (|HasCategory| |#1| (QUOTE (-507))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-283))) (-3844 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-514)))) (-3844 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-324)))) (|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-210))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-324)))) (|HasCategory| |#1| (QUOTE (-210))) (-12 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-324)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -262) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-343)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-765)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-784)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-947)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-1106)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-338))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-838))))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-838))))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-338)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasAttribute| |#1| (QUOTE -4234)) (|HasAttribute| |#1| (QUOTE -4237)) (-12 (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085))))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-324)))))
(-155 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
@@ -596,7 +596,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
-(-167 R -4055)
+(-167 R -4102)
((|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
@@ -700,19 +700,19 @@ 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
-(-193 -4055 UP UPUP R)
+(-193 -4102 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
-(-194 -4055 FP)
+(-194 -4102 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
(-195)
((|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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-522) (QUOTE (-838))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-522) (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-135))) (|HasCategory| (-522) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-522) (QUOTE (-947))) (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-1061))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-522) (QUOTE (-210))) (|HasCategory| (-522) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-522) (LIST (QUOTE -483) (QUOTE (-1085)) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -285) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -262) (QUOTE (-522)) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-283))) (|HasCategory| (-522) (QUOTE (-507))) (|HasCategory| (-522) (QUOTE (-784))) (-3708 (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (QUOTE (-784)))) (|HasCategory| (-522) (LIST (QUOTE -584) (QUOTE (-522)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (|HasCategory| (-522) (QUOTE (-133)))))
-(-196 R -4055)
+((|HasCategory| (-522) (QUOTE (-838))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-522) (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-135))) (|HasCategory| (-522) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-522) (QUOTE (-947))) (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-1061))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-522) (QUOTE (-210))) (|HasCategory| (-522) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-522) (LIST (QUOTE -483) (QUOTE (-1085)) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -285) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -262) (QUOTE (-522)) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-283))) (|HasCategory| (-522) (QUOTE (-507))) (|HasCategory| (-522) (QUOTE (-784))) (-3844 (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (QUOTE (-784)))) (|HasCategory| (-522) (LIST (QUOTE -584) (QUOTE (-522)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (|HasCategory| (-522) (QUOTE (-133)))))
+(-196 R -4102)
((|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
@@ -727,18 +727,18 @@ NIL
(-199 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}.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-200 |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}.")))
((-4235 . T))
NIL
-(-201 R -4055)
+(-201 R -4102)
((|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
(-202)
((|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}.")) (|hash| (((|Integer|) $) "\\spad{hash(x)} returns the hash key 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}.")))
-((-3898 . T) (-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
+((-3996 . T) (-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-203)
((|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)}.}")))
@@ -747,14 +747,14 @@ NIL
(-204 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}")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-514))) (|HasAttribute| |#1| (QUOTE (-4240 "*"))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-514))) (|HasAttribute| |#1| (QUOTE (-4240 "*"))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-205 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
(-206 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.")))
-((-4239 . T) (-2047 . T))
+((-4239 . T) (-2088 . T))
NIL
(-207 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}.")))
@@ -778,28 +778,28 @@ NIL
((|HasAttribute| |#1| (QUOTE -4238)))
(-212 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}.")))
-((-4239 . T) (-2047 . T))
+((-4239 . T) (-2088 . T))
NIL
(-213)
((|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
-(-214 S -2617 R)
+(-214 S -2787 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 (-338))) (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (QUOTE (-782))) (|HasAttribute| |#3| (QUOTE -4235)) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (QUOTE (-664))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (QUOTE (-1014))))
-(-215 -2617 R)
+(-215 -2787 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")))
-((-4232 |has| |#2| (-971)) (-4233 |has| |#2| (-971)) (-4235 |has| |#2| (-6 -4235)) ((-4240 "*") |has| |#2| (-157)) (-4238 . T) (-2047 . T))
+((-4232 |has| |#2| (-971)) (-4233 |has| |#2| (-971)) (-4235 |has| |#2| (-6 -4235)) ((-4240 "*") |has| |#2| (-157)) (-4238 . T) (-2088 . T))
NIL
-(-216 -2617 A B)
+(-216 -2787 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
-(-217 -2617 R)
+(-217 -2787 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.")))
((-4232 |has| |#2| (-971)) (-4233 |has| |#2| (-971)) (-4235 |has| |#2| (-6 -4235)) ((-4240 "*") |has| |#2| (-157)) (-4238 . T))
-((|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782))) (-3708 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782)))) (|HasCategory| |#2| (QUOTE (-157))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338)))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| (-522) (QUOTE (-784))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (|HasCategory| |#2| (QUOTE (-664))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-3708 (|HasCategory| |#2| (QUOTE (-971))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014)))) (|HasAttribute| |#2| (QUOTE -4235)) (|HasCategory| |#2| (QUOTE (-124))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-25))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-1014)))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3708 (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-157)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-210)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-343)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-730)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-782)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014))))) (-3708 (-12 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-3708 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782))) (-3844 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782)))) (|HasCategory| |#2| (QUOTE (-157))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338)))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| (-522) (QUOTE (-784))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (|HasCategory| |#2| (QUOTE (-664))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-3844 (|HasCategory| |#2| (QUOTE (-971))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014)))) (|HasAttribute| |#2| (QUOTE -4235)) (|HasCategory| |#2| (QUOTE (-124))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-25))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-1014)))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3844 (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-157)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-210)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-343)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-730)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-782)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014))))) (-3844 (-12 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-3844 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
(-218)
((|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
@@ -814,12 +814,12 @@ NIL
NIL
(-221 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.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-222 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}")))
((-4239 . T) (-4238 . T))
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3708 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3844 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-223 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
@@ -827,19 +827,19 @@ NIL
(-224 |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")))
(((-4240 "*") |has| |#2| (-157)) (-4231 |has| |#2| (-514)) (-4236 |has| |#2| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-157))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-514)))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#2| (QUOTE -4236)) (|HasCategory| |#2| (QUOTE (-426))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#2| (QUOTE (-133)))))
+((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-157))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-514)))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#2| (QUOTE -4236)) (|HasCategory| |#2| (QUOTE (-426))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#2| (QUOTE (-133)))))
(-225)
((|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
(-226 |n| R M S)
((|constructor| (NIL "This constructor provides a direct product type with a left matrix-module view.")))
-((-4235 -3708 (-4015 (|has| |#4| (-971)) (|has| |#4| (-210))) (-4015 (|has| |#4| (-971)) (|has| |#4| (-829 (-1085)))) (|has| |#4| (-6 -4235)) (-4015 (|has| |#4| (-971)) (|has| |#4| (-584 (-522))))) (-4232 |has| |#4| (-971)) (-4233 |has| |#4| (-971)) ((-4240 "*") |has| |#4| (-157)) (-4238 . T))
-((|HasCategory| |#4| (QUOTE (-338))) (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (QUOTE (-730))) (|HasCategory| |#4| (QUOTE (-782))) (-3708 (|HasCategory| |#4| (QUOTE (-730))) (|HasCategory| |#4| (QUOTE (-782)))) (|HasCategory| |#4| (QUOTE (-157))) (-3708 (|HasCategory| |#4| (QUOTE (-157))) (|HasCategory| |#4| (QUOTE (-338))) (|HasCategory| |#4| (QUOTE (-971)))) (-3708 (|HasCategory| |#4| (QUOTE (-157))) (|HasCategory| |#4| (QUOTE (-338)))) (-3708 (|HasCategory| |#4| (QUOTE (-157))) (|HasCategory| |#4| (QUOTE (-971)))) (|HasCategory| |#4| (QUOTE (-343))) (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#4| (QUOTE (-210))) (-3708 (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#4| (QUOTE (-157))) (|HasCategory| |#4| (QUOTE (-210))) (|HasCategory| |#4| (QUOTE (-971)))) (|HasCategory| |#4| (QUOTE (-1014))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#4| (QUOTE (-664))) (-12 (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#4| (QUOTE (-210))) (|HasCategory| |#4| (QUOTE (-971)))) (-12 (|HasCategory| |#4| (QUOTE (-1014))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-3708 (-12 (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-157))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-210))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-338))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-343))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-730))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-782))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-1014))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522)))))) (-3708 (|HasCategory| |#4| (QUOTE (-971))) (-12 (|HasCategory| |#4| (QUOTE (-1014))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-1014)))) (-3708 (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-157)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-210)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-338)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-343)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-730)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-782)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-971)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-1014))))) (-3708 (|HasAttribute| |#4| (QUOTE -4235)) (-12 (|HasCategory| |#4| (QUOTE (-210))) (|HasCategory| |#4| (QUOTE (-971)))) (-12 (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#4| (QUOTE (-124))) (|HasCategory| |#4| (QUOTE (-25))) (-12 (|HasCategory| |#4| (QUOTE (-1014))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-3708 (-12 (|HasCategory| |#4| (QUOTE (-157))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-210))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-338))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-343))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-730))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-782))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1014))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#4| (LIST (QUOTE -562) (QUOTE (-792)))))
+((-4235 -3844 (-4079 (|has| |#4| (-971)) (|has| |#4| (-210))) (-4079 (|has| |#4| (-971)) (|has| |#4| (-829 (-1085)))) (|has| |#4| (-6 -4235)) (-4079 (|has| |#4| (-971)) (|has| |#4| (-584 (-522))))) (-4232 |has| |#4| (-971)) (-4233 |has| |#4| (-971)) ((-4240 "*") |has| |#4| (-157)) (-4238 . T))
+((|HasCategory| |#4| (QUOTE (-338))) (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (QUOTE (-730))) (|HasCategory| |#4| (QUOTE (-782))) (-3844 (|HasCategory| |#4| (QUOTE (-730))) (|HasCategory| |#4| (QUOTE (-782)))) (|HasCategory| |#4| (QUOTE (-157))) (-3844 (|HasCategory| |#4| (QUOTE (-157))) (|HasCategory| |#4| (QUOTE (-338))) (|HasCategory| |#4| (QUOTE (-971)))) (-3844 (|HasCategory| |#4| (QUOTE (-157))) (|HasCategory| |#4| (QUOTE (-338)))) (-3844 (|HasCategory| |#4| (QUOTE (-157))) (|HasCategory| |#4| (QUOTE (-971)))) (|HasCategory| |#4| (QUOTE (-343))) (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#4| (QUOTE (-210))) (-3844 (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#4| (QUOTE (-157))) (|HasCategory| |#4| (QUOTE (-210))) (|HasCategory| |#4| (QUOTE (-971)))) (|HasCategory| |#4| (QUOTE (-1014))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#4| (QUOTE (-664))) (-12 (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#4| (QUOTE (-210))) (|HasCategory| |#4| (QUOTE (-971)))) (-12 (|HasCategory| |#4| (QUOTE (-1014))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-3844 (-12 (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-157))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-210))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-338))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-343))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-730))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-782))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-1014))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522)))))) (-3844 (|HasCategory| |#4| (QUOTE (-971))) (-12 (|HasCategory| |#4| (QUOTE (-1014))) (|HasCategory| |#4| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-1014)))) (-3844 (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-157)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-210)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-338)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-343)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-730)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-782)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-971)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#4| (QUOTE (-1014))))) (-3844 (|HasAttribute| |#4| (QUOTE -4235)) (-12 (|HasCategory| |#4| (QUOTE (-210))) (|HasCategory| |#4| (QUOTE (-971)))) (-12 (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#4| (QUOTE (-124))) (|HasCategory| |#4| (QUOTE (-25))) (-12 (|HasCategory| |#4| (QUOTE (-1014))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-3844 (-12 (|HasCategory| |#4| (QUOTE (-157))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-210))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-338))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-343))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-730))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-782))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-971))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1014))) (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -285) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#4| (LIST (QUOTE -562) (QUOTE (-792)))))
(-227 |n| R S)
((|constructor| (NIL "This constructor provides a direct product of \\spad{R}-modules with an \\spad{R}-module view.")))
-((-4235 -3708 (-4015 (|has| |#3| (-971)) (|has| |#3| (-210))) (-4015 (|has| |#3| (-971)) (|has| |#3| (-829 (-1085)))) (|has| |#3| (-6 -4235)) (-4015 (|has| |#3| (-971)) (|has| |#3| (-584 (-522))))) (-4232 |has| |#3| (-971)) (-4233 |has| |#3| (-971)) ((-4240 "*") |has| |#3| (-157)) (-4238 . T))
-((|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (QUOTE (-782))) (-3708 (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (QUOTE (-782)))) (|HasCategory| |#3| (QUOTE (-157))) (-3708 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971)))) (-3708 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-338)))) (-3708 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-971)))) (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-210))) (-3708 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-971)))) (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#3| (QUOTE (-664))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-971)))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-3708 (-12 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-782))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522)))))) (-3708 (|HasCategory| |#3| (QUOTE (-971))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-1014)))) (-3708 (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-157)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-210)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-338)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-343)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-730)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-782)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-971)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-1014))))) (-3708 (|HasAttribute| |#3| (QUOTE -4235)) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-971)))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-25))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-3708 (-12 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-782))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#3| (LIST (QUOTE -562) (QUOTE (-792)))))
+((-4235 -3844 (-4079 (|has| |#3| (-971)) (|has| |#3| (-210))) (-4079 (|has| |#3| (-971)) (|has| |#3| (-829 (-1085)))) (|has| |#3| (-6 -4235)) (-4079 (|has| |#3| (-971)) (|has| |#3| (-584 (-522))))) (-4232 |has| |#3| (-971)) (-4233 |has| |#3| (-971)) ((-4240 "*") |has| |#3| (-157)) (-4238 . T))
+((|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (QUOTE (-782))) (-3844 (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (QUOTE (-782)))) (|HasCategory| |#3| (QUOTE (-157))) (-3844 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971)))) (-3844 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-338)))) (-3844 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-971)))) (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-210))) (-3844 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-971)))) (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#3| (QUOTE (-664))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-971)))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-3844 (-12 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-782))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522)))))) (-3844 (|HasCategory| |#3| (QUOTE (-971))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-1014)))) (-3844 (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-157)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-210)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-338)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-343)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-730)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-782)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-971)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-1014))))) (-3844 (|HasAttribute| |#3| (QUOTE -4235)) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-971)))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-25))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-3844 (-12 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-782))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#3| (LIST (QUOTE -562) (QUOTE (-792)))))
(-228 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
@@ -850,7 +850,7 @@ NIL
NIL
(-230 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}.")))
-((-4238 . T) (-4239 . T) (-2047 . T))
+((-4238 . T) (-4239 . T) (-2088 . T))
NIL
(-231)
((|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.")))
@@ -891,7 +891,7 @@ NIL
(-240 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")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#3| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#3| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#3| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#3| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
+((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#3| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#3| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#3| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#3| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
(-241 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
@@ -936,11 +936,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
-(-252 R -4055)
+(-252 R -4102)
((|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
-(-253 R -4055)
+(-253 R -4102)
((|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
@@ -962,7 +962,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-1014))))
(-258 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}.")))
-((-4239 . T) (-2047 . T))
+((-4239 . T) (-2088 . T))
NIL
(-259 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}.")))
@@ -988,7 +988,7 @@ NIL
((|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
-(-265 S R |Mod| -4048 -2160 |exactQuo|)
+(-265 S R |Mod| -3004 -3164 |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")))
((-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
@@ -1010,21 +1010,21 @@ NIL
NIL
(-270 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.")))
-((-4235 -3708 (|has| |#1| (-971)) (|has| |#1| (-447))) (-4232 |has| |#1| (-971)) (-4233 |has| |#1| (-971)))
-((|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-971)))) (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-278))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-447)))) (-3708 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-971)))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-971)))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-664))) (-3708 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-664)))) (|HasCategory| |#1| (QUOTE (-1026))) (-3708 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#1| (QUOTE (-1026)))) (|HasCategory| |#1| (QUOTE (-21))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-971)))) (-3708 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-664)))) (|HasCategory| |#1| (QUOTE (-25))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-971)))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-1014)))))
+((-4235 -3844 (|has| |#1| (-971)) (|has| |#1| (-447))) (-4232 |has| |#1| (-971)) (-4233 |has| |#1| (-971)))
+((|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-971)))) (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-278))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-447)))) (-3844 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-971)))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-971)))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-664))) (-3844 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-664)))) (|HasCategory| |#1| (QUOTE (-1026))) (-3844 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#1| (QUOTE (-1026)))) (|HasCategory| |#1| (QUOTE (-21))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-971)))) (-3844 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-664)))) (|HasCategory| |#1| (QUOTE (-25))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-971)))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-1014)))))
(-271 |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.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3048) (|devaluate| |#2|)))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-1014))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3149) (|devaluate| |#2|)))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-1014))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
(-272)
((|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
-(-273 -4055 S)
+(-273 -4102 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
-(-274 E -4055)
+(-274 E -4102)
((|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
@@ -1072,7 +1072,7 @@ NIL
((|constructor| (NIL "This category provides \\spadfun{eval} operations. A domain may belong to this category if it is possible to make ``evaluation\\spad{''} substitutions.")) (|eval| (($ $ (|List| (|Equation| |#1|))) "\\spad{eval(f,{} [x1 = v1,{}...,{}xn = vn])} replaces \\spad{xi} by \\spad{vi} in \\spad{f}.") (($ $ (|Equation| |#1|)) "\\spad{eval(f,{}x = v)} replaces \\spad{x} by \\spad{v} in \\spad{f}.")))
NIL
NIL
-(-286 -4055)
+(-286 -4102)
((|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
@@ -1083,7 +1083,7 @@ NIL
(-288 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))}.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-838))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-133))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-135))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-947))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-757))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-1061))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-210))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -1152) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -285) (LIST (QUOTE -1152) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -262) (LIST (QUOTE -1152) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)) (LIST (QUOTE -1152) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-283))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-507))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-784))) (-3708 (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-757))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-784)))) (-12 (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-838))) (|HasCategory| $ (QUOTE (-133)))) (-3708 (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-133))) (-12 (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-838))) (|HasCategory| $ (QUOTE (-133))))))
+((|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-838))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-133))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-135))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-947))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-757))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-1061))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-210))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -1152) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -285) (LIST (QUOTE -1152) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (LIST (QUOTE -262) (LIST (QUOTE -1152) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)) (LIST (QUOTE -1152) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-283))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-507))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-784))) (-3844 (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-757))) (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-784)))) (-12 (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-838))) (|HasCategory| $ (QUOTE (-133)))) (-3844 (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-133))) (-12 (|HasCategory| (-1152 |#1| |#2| |#3| |#4|) (QUOTE (-838))) (|HasCategory| $ (QUOTE (-133))))))
(-289 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
@@ -1094,9 +1094,9 @@ NIL
NIL
(-291 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.")))
-((-4235 -3708 (-4015 (|has| |#1| (-971)) (|has| |#1| (-584 (-522)))) (-12 (|has| |#1| (-514)) (-3708 (-4015 (|has| |#1| (-971)) (|has| |#1| (-584 (-522)))) (|has| |#1| (-971)) (|has| |#1| (-447)))) (|has| |#1| (-971)) (|has| |#1| (-447))) (-4233 |has| |#1| (-157)) (-4232 |has| |#1| (-157)) ((-4240 "*") |has| |#1| (-514)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-514)) (-4230 |has| |#1| (-514)))
-((|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-971))) (-3708 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-971)))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-971)))) (-12 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514)))) (-3708 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522))))) (-3708 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))) (-3708 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-971)))) (|HasCategory| |#1| (QUOTE (-21))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-971)))) (-3708 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))))) (|HasCategory| |#1| (QUOTE (-25))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-971)))) (-3708 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))))) (|HasCategory| |#1| (QUOTE (-1026))) (-3708 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-1026)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-1026)))) (-3708 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-1026)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514)))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))))) (|HasCategory| $ (QUOTE (-971))) (|HasCategory| $ (LIST (QUOTE -962) (QUOTE (-522)))))
-(-292 R -4055)
+((-4235 -3844 (-4079 (|has| |#1| (-971)) (|has| |#1| (-584 (-522)))) (-12 (|has| |#1| (-514)) (-3844 (-4079 (|has| |#1| (-971)) (|has| |#1| (-584 (-522)))) (|has| |#1| (-971)) (|has| |#1| (-447)))) (|has| |#1| (-971)) (|has| |#1| (-447))) (-4233 |has| |#1| (-157)) (-4232 |has| |#1| (-157)) ((-4240 "*") |has| |#1| (-514)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-514)) (-4230 |has| |#1| (-514)))
+((|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-971))) (-3844 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-971)))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-971)))) (-12 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514)))) (-3844 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522))))) (-3844 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))) (-3844 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-971)))) (|HasCategory| |#1| (QUOTE (-21))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-971)))) (-3844 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))))) (|HasCategory| |#1| (QUOTE (-25))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-971)))) (-3844 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))))) (|HasCategory| |#1| (QUOTE (-1026))) (-3844 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#1| (QUOTE (-1026)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-1026)))) (-3844 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-1026)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514)))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))))) (|HasCategory| $ (QUOTE (-971))) (|HasCategory| $ (LIST (QUOTE -962) (QUOTE (-522)))))
+(-292 R -4102)
((|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
@@ -1107,7 +1107,7 @@ NIL
(-294 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.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|))))) (|HasCategory| (-382 (-522)) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasSignature| |#1| (LIST (QUOTE -2190) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -1858) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -4090) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|))))) (|HasCategory| (-382 (-522)) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasSignature| |#1| (LIST (QUOTE -2217) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2611) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -3533) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
(-295 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
@@ -1139,12 +1139,12 @@ NIL
(-302 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.")))
((-4239 . T) (-4238 . T))
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3708 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
-(-303 S -4055)
+((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3844 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+(-303 S -4102)
((|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 (-343))))
-(-304 -4055)
+(-304 -4102)
((|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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
@@ -1164,15 +1164,15 @@ NIL
((|constructor| (NIL "\\indented{1}{Lift a map to finite divisors.} Author: Manuel Bronstein Date Created: 1988 Date Last Updated: 19 May 1993")) (|map| (((|FiniteDivisor| |#5| |#6| |#7| |#8|) (|Mapping| |#5| |#1|) (|FiniteDivisor| |#1| |#2| |#3| |#4|)) "\\spad{map(f,{}d)} \\undocumented{}")))
NIL
NIL
-(-309 S -4055 UP UPUP R)
+(-309 S -4102 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
-(-310 -4055 UP UPUP R)
+(-310 -4102 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
-(-311 -4055 UP UPUP R)
+(-311 -4102 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
@@ -1192,26 +1192,26 @@ NIL
((|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
-(-316 S -4055 UP UPUP)
+(-316 S -4102 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}.") (($ (|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 (-343))) (|HasCategory| |#2| (QUOTE (-338))))
-(-317 -4055 UP UPUP)
+(-317 -4102 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}.") (($ (|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.")))
((-4231 |has| (-382 |#2|) (-338)) (-4236 |has| (-382 |#2|) (-338)) (-4230 |has| (-382 |#2|) (-338)) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-318 |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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-839 |#1|) (QUOTE (-135))) (|HasCategory| (-839 |#1|) (QUOTE (-343))) (|HasCategory| (-839 |#1|) (QUOTE (-133))) (-3708 (|HasCategory| (-839 |#1|) (QUOTE (-133))) (|HasCategory| (-839 |#1|) (QUOTE (-343)))))
+((|HasCategory| (-839 |#1|) (QUOTE (-135))) (|HasCategory| (-839 |#1|) (QUOTE (-343))) (|HasCategory| (-839 |#1|) (QUOTE (-133))) (-3844 (|HasCategory| (-839 |#1|) (QUOTE (-133))) (|HasCategory| (-839 |#1|) (QUOTE (-343)))))
(-319 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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-133))) (-3708 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-343)))))
+((|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-133))) (-3844 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-343)))))
(-320 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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-133))) (-3708 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-343)))))
+((|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-133))) (-3844 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-343)))))
(-321 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}.")))
NIL
@@ -1228,31 +1228,31 @@ NIL
((|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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
-(-325 R UP -4055)
+(-325 R UP -4102)
((|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
(-326 |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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-839 |#1|) (QUOTE (-135))) (|HasCategory| (-839 |#1|) (QUOTE (-343))) (|HasCategory| (-839 |#1|) (QUOTE (-133))) (-3708 (|HasCategory| (-839 |#1|) (QUOTE (-133))) (|HasCategory| (-839 |#1|) (QUOTE (-343)))))
+((|HasCategory| (-839 |#1|) (QUOTE (-135))) (|HasCategory| (-839 |#1|) (QUOTE (-343))) (|HasCategory| (-839 |#1|) (QUOTE (-133))) (-3844 (|HasCategory| (-839 |#1|) (QUOTE (-133))) (|HasCategory| (-839 |#1|) (QUOTE (-343)))))
(-327 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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-133))) (-3708 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-343)))))
+((|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-133))) (-3844 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-343)))))
(-328 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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-133))) (-3708 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-343)))))
+((|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-133))) (-3844 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-343)))))
(-329 |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}.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-839 |#1|) (QUOTE (-135))) (|HasCategory| (-839 |#1|) (QUOTE (-343))) (|HasCategory| (-839 |#1|) (QUOTE (-133))) (-3708 (|HasCategory| (-839 |#1|) (QUOTE (-133))) (|HasCategory| (-839 |#1|) (QUOTE (-343)))))
+((|HasCategory| (-839 |#1|) (QUOTE (-135))) (|HasCategory| (-839 |#1|) (QUOTE (-343))) (|HasCategory| (-839 |#1|) (QUOTE (-133))) (-3844 (|HasCategory| (-839 |#1|) (QUOTE (-133))) (|HasCategory| (-839 |#1|) (QUOTE (-343)))))
(-330 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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-133))) (-3708 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-343)))))
-(-331 -4055 GF)
+((|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-133))) (-3844 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-343)))))
+(-331 -4102 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
@@ -1260,14 +1260,14 @@ 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
-(-333 -4055 FP FPP)
+(-333 -4102 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
(-334 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}.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-133))) (-3708 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-343)))))
+((|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-133))) (-3844 (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-343)))))
(-335 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}}.")))
NIL
@@ -1322,7 +1322,7 @@ NIL
((|HasAttribute| |#1| (QUOTE -4239)) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-1014))))
(-348 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]}.")))
-((-4238 . T) (-2047 . T))
+((-4238 . T) (-2088 . T))
NIL
(-349 |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.")))
@@ -1346,7 +1346,7 @@ NIL
NIL
(-354)
((|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}.")))
-((-4221 . T) (-4229 . T) (-3898 . T) (-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
+((-4221 . T) (-4229 . T) (-3996 . T) (-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-355 |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}.")))
@@ -1362,11 +1362,11 @@ NIL
NIL
(-358)
((|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}.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-359)
((|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.}")))
-((-2047 . T))
+((-2088 . T))
NIL
(-360 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.")))
@@ -1396,7 +1396,7 @@ NIL
((|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
-(-367 -4055 UP UPUP R)
+(-367 -4102 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
@@ -1410,27 +1410,27 @@ NIL
NIL
(-370)
((|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.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-371)
((|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.}")))
-((-2047 . T))
+((-2088 . T))
NIL
(-372)
((|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
-(-373 -2888 |returnType| -3890 |symbols|)
+(-373 -3015 |returnType| -2174 |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
-(-374 -4055 UP)
+(-374 -4102 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
(-375 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).")))
-((-2047 . T))
+((-2088 . T))
NIL
(-376 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.")))
@@ -1446,7 +1446,7 @@ NIL
((|HasAttribute| |#1| (QUOTE -4221)) (|HasAttribute| |#1| (QUOTE -4229)))
(-379)
((|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\".")))
-((-3898 . T) (-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
+((-3996 . T) (-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-380 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.")))
@@ -1459,7 +1459,7 @@ NIL
(-382 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.")))
((-4225 -12 (|has| |#1| (-6 -4236)) (|has| |#1| (-426)) (|has| |#1| (-6 -4225))) (-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-947))) (|HasCategory| |#1| (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-1061))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -262) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-507))) (-12 (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-765)))) (-12 (|HasAttribute| |#1| (QUOTE -4236)) (|HasAttribute| |#1| (QUOTE -4225)) (|HasCategory| |#1| (QUOTE (-426)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-765)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (-3708 (|HasCategory| |#1| (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-784)))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-765)))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-765)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-765))))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (-12 (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-765))))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
+((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-947))) (|HasCategory| |#1| (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-1061))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -262) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-507))) (-12 (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-765)))) (-12 (|HasAttribute| |#1| (QUOTE -4236)) (|HasAttribute| |#1| (QUOTE -4225)) (|HasCategory| |#1| (QUOTE (-426)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-765)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (-3844 (|HasCategory| |#1| (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-784)))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-765)))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-765)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-765))))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (-12 (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-765))))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
(-383 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
@@ -1480,11 +1480,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
-(-388 R -4055 UP A)
+(-388 R -4102 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)}.")))
((-4235 . T))
NIL
-(-389 R -4055 UP A |ibasis|)
+(-389 R -4102 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 -962) (|devaluate| |#2|))))
@@ -1503,7 +1503,7 @@ NIL
(-393 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.")))
((-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -285) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -262) (QUOTE $) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-1124))) (|HasCategory| |#1| (QUOTE (-947))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -262) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-426))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-1124)))))
+((|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -285) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -262) (QUOTE $) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-1124))) (|HasCategory| |#1| (QUOTE (-947))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -262) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-426))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-1124)))))
(-394 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
@@ -1530,9 +1530,9 @@ NIL
((|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-343))))
(-400 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}.")))
-((-4238 . T) (-4228 . T) (-4239 . T) (-2047 . T))
+((-4238 . T) (-4228 . T) (-4239 . T) (-2088 . T))
NIL
-(-401 R -4055)
+(-401 R -4102)
((|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
@@ -1540,7 +1540,7 @@ NIL
((|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")))
((-4225 -12 (|has| |#1| (-6 -4225)) (|has| |#2| (-6 -4225))) (-4232 . T) (-4233 . T) (-4235 . T))
((-12 (|HasAttribute| |#1| (QUOTE -4225)) (|HasAttribute| |#2| (QUOTE -4225))))
-(-403 R -4055)
+(-403 R -4102)
((|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
@@ -1550,17 +1550,17 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-447))) (|HasCategory| |#2| (QUOTE (-1026))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498)))))
(-405 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}.")))
-((-4235 -3708 (|has| |#1| (-971)) (|has| |#1| (-447))) (-4233 |has| |#1| (-157)) (-4232 |has| |#1| (-157)) ((-4240 "*") |has| |#1| (-514)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-514)) (-4230 |has| |#1| (-514)) (-2047 . T))
+((-4235 -3844 (|has| |#1| (-971)) (|has| |#1| (-447))) (-4233 |has| |#1| (-157)) (-4232 |has| |#1| (-157)) ((-4240 "*") |has| |#1| (-514)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-514)) (-4230 |has| |#1| (-514)) (-2088 . T))
NIL
-(-406 R -4055)
+(-406 R -4102)
((|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
-(-407 R -4055)
+(-407 R -4102)
((|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))))
-(-408 R -4055)
+(-408 R -4102)
((|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
@@ -1568,7 +1568,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
-(-410 R -4055 UP)
+(-410 R -4102 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 -962) (QUOTE (-47)))))
@@ -1586,17 +1586,17 @@ NIL
NIL
(-414)
((|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}.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-415)
((|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.}")))
-((-2047 . T))
+((-2088 . T))
NIL
(-416 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
-(-417 R UP -4055)
+(-417 R UP -4102)
((|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
@@ -1643,7 +1643,7 @@ NIL
(-428 |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")))
(((-4240 "*") |has| |#2| (-157)) (-4231 |has| |#2| (-514)) (-4236 |has| |#2| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-157))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-514)))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#2| (QUOTE -4236)) (|HasCategory| |#2| (QUOTE (-426))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#2| (QUOTE (-133)))))
+((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-157))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-514)))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#2| (QUOTE -4236)) (|HasCategory| |#2| (QUOTE (-426))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#2| (QUOTE (-133)))))
(-429 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
@@ -1708,7 +1708,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
-(-445 |lv| -4055 R)
+(-445 |lv| -4102 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
@@ -1723,11 +1723,11 @@ NIL
(-448 |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.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|))))) (|HasCategory| (-382 (-522)) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasSignature| |#1| (LIST (QUOTE -2190) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -1858) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -4090) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|))))) (|HasCategory| (-382 (-522)) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasSignature| |#1| (LIST (QUOTE -2217) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2611) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -3533) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
(-449 |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.")))
((-4239 . T))
-((|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3048) (|devaluate| |#2|)))))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3149) (|devaluate| |#2|)))))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
(-450 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)}")))
((-4239 . T) (-4238 . T))
@@ -1739,7 +1739,7 @@ NIL
(-452 |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.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3048) (|devaluate| |#2|)))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-1014))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3149) (|devaluate| |#2|)))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-1014))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
(-453)
((|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
@@ -1747,16 +1747,16 @@ NIL
(-454 |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")))
(((-4240 "*") |has| |#2| (-157)) (-4231 |has| |#2| (-514)) (-4236 |has| |#2| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-157))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-514)))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#2| (QUOTE -4236)) (|HasCategory| |#2| (QUOTE (-426))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#2| (QUOTE (-133)))))
-(-455 -2617 S)
+((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-157))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-514)))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#2| (QUOTE -4236)) (|HasCategory| |#2| (QUOTE (-426))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#2| (QUOTE (-133)))))
+(-455 -2787 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}.")))
((-4232 |has| |#2| (-971)) (-4233 |has| |#2| (-971)) (-4235 |has| |#2| (-6 -4235)) ((-4240 "*") |has| |#2| (-157)) (-4238 . T))
-((|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782))) (-3708 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782)))) (|HasCategory| |#2| (QUOTE (-157))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338)))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| (-522) (QUOTE (-784))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (|HasCategory| |#2| (QUOTE (-664))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-3708 (|HasCategory| |#2| (QUOTE (-971))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014)))) (|HasAttribute| |#2| (QUOTE -4235)) (|HasCategory| |#2| (QUOTE (-124))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-25))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-1014)))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3708 (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-157)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-210)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-343)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-730)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-782)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014))))) (-3708 (-12 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-3708 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782))) (-3844 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782)))) (|HasCategory| |#2| (QUOTE (-157))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338)))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| (-522) (QUOTE (-784))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (|HasCategory| |#2| (QUOTE (-664))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-3844 (|HasCategory| |#2| (QUOTE (-971))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014)))) (|HasAttribute| |#2| (QUOTE -4235)) (|HasCategory| |#2| (QUOTE (-124))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-25))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-1014)))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3844 (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-157)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-210)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-343)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-730)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-782)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014))))) (-3844 (-12 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-3844 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
(-456 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}.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
-(-457 -4055 UP UPUP R)
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+(-457 -4102 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
@@ -1767,14 +1767,14 @@ NIL
(-459)
((|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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-522) (QUOTE (-838))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-522) (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-135))) (|HasCategory| (-522) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-522) (QUOTE (-947))) (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-1061))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-522) (QUOTE (-210))) (|HasCategory| (-522) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-522) (LIST (QUOTE -483) (QUOTE (-1085)) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -285) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -262) (QUOTE (-522)) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-283))) (|HasCategory| (-522) (QUOTE (-507))) (|HasCategory| (-522) (QUOTE (-784))) (-3708 (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (QUOTE (-784)))) (|HasCategory| (-522) (LIST (QUOTE -584) (QUOTE (-522)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (|HasCategory| (-522) (QUOTE (-133)))))
+((|HasCategory| (-522) (QUOTE (-838))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-522) (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-135))) (|HasCategory| (-522) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-522) (QUOTE (-947))) (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-1061))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-522) (QUOTE (-210))) (|HasCategory| (-522) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-522) (LIST (QUOTE -483) (QUOTE (-1085)) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -285) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -262) (QUOTE (-522)) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-283))) (|HasCategory| (-522) (QUOTE (-507))) (|HasCategory| (-522) (QUOTE (-784))) (-3844 (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (QUOTE (-784)))) (|HasCategory| (-522) (LIST (QUOTE -584) (QUOTE (-522)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (|HasCategory| (-522) (QUOTE (-133)))))
(-460 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 -4238)) (|HasAttribute| |#1| (QUOTE -4239)) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))))
(-461 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}]}.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-462 S)
((|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}.")))
@@ -1784,7 +1784,7 @@ 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
-(-464 -4055 UP |AlExt| |AlPol|)
+(-464 -4102 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
@@ -1795,16 +1795,16 @@ NIL
(-466 S |mn|)
((|constructor| (NIL "\\indented{1}{Author Micheal Monagan Aug/87} This is the basic one dimensional array data type.")))
((-4239 . T) (-4238 . T))
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3708 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3844 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-467 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.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-468 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
-(-469 R UP -4055)
+(-469 R UP -4102)
((|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
@@ -1824,7 +1824,7 @@ NIL
((|constructor| (NIL "InnerCommonDenominator provides functions to compute the common denominator of a finite linear aggregate of elements of the quotient field of an integral domain.")) (|splitDenominator| (((|Record| (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) "\\spad{splitDenominator([q1,{}...,{}qn])} returns \\spad{[[p1,{}...,{}pn],{} d]} such that \\spad{\\spad{qi} = pi/d} and \\spad{d} is a common denominator for the \\spad{qi}\\spad{'s}.")) (|clearDenominator| ((|#3| |#4|) "\\spad{clearDenominator([q1,{}...,{}qn])} returns \\spad{[p1,{}...,{}pn]} such that \\spad{\\spad{qi} = pi/d} where \\spad{d} is a common denominator for the \\spad{qi}\\spad{'s}.")) (|commonDenominator| ((|#1| |#4|) "\\spad{commonDenominator([q1,{}...,{}qn])} returns a common denominator \\spad{d} for \\spad{q1},{}...,{}\\spad{qn}.")))
NIL
NIL
-(-474 -4055 |Expon| |VarSet| |DPoly|)
+(-474 -4102 |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 -563) (QUOTE (-1085)))))
@@ -1871,19 +1871,19 @@ NIL
(-485 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}")))
((-4239 . T) (-4238 . T))
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3708 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3844 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-486 |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}.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-535 |#1|) (QUOTE (-135))) (|HasCategory| (-535 |#1|) (QUOTE (-343))) (|HasCategory| (-535 |#1|) (QUOTE (-133))) (-3708 (|HasCategory| (-535 |#1|) (QUOTE (-133))) (|HasCategory| (-535 |#1|) (QUOTE (-343)))))
+((|HasCategory| (-535 |#1|) (QUOTE (-135))) (|HasCategory| (-535 |#1|) (QUOTE (-343))) (|HasCategory| (-535 |#1|) (QUOTE (-133))) (-3844 (|HasCategory| (-535 |#1|) (QUOTE (-133))) (|HasCategory| (-535 |#1|) (QUOTE (-343)))))
(-487 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}.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-488 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.")))
((-4239 . T) (-4238 . T))
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3708 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3844 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-489 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
@@ -1895,7 +1895,7 @@ NIL
(-491 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.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-514))) (|HasAttribute| |#1| (QUOTE (-4240 "*"))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-514))) (|HasAttribute| |#1| (QUOTE (-4240 "*"))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-492 GF)
((|constructor| (NIL "InnerNormalBasisFieldFunctions(\\spad{GF}) (unexposed): This package has functions used by every normal basis finite field extension domain.")) (|minimalPolynomial| (((|SparseUnivariatePolynomial| |#1|) (|Vector| |#1|)) "\\spad{minimalPolynomial(x)} \\undocumented{} See \\axiomFunFrom{minimalPolynomial}{FiniteAlgebraicExtensionField}")) (|normalElement| (((|Vector| |#1|) (|PositiveInteger|)) "\\spad{normalElement(n)} \\undocumented{} See \\axiomFunFrom{normalElement}{FiniteAlgebraicExtensionField}")) (|basis| (((|Vector| (|Vector| |#1|)) (|PositiveInteger|)) "\\spad{basis(n)} \\undocumented{} See \\axiomFunFrom{basis}{FiniteAlgebraicExtensionField}")) (|normal?| (((|Boolean|) (|Vector| |#1|)) "\\spad{normal?(x)} \\undocumented{} See \\axiomFunFrom{normal?}{FiniteAlgebraicExtensionField}")) (|lookup| (((|PositiveInteger|) (|Vector| |#1|)) "\\spad{lookup(x)} \\undocumented{} See \\axiomFunFrom{lookup}{Finite}")) (|inv| (((|Vector| |#1|) (|Vector| |#1|)) "\\spad{inv x} \\undocumented{} See \\axiomFunFrom{inv}{DivisionRing}")) (|trace| (((|Vector| |#1|) (|Vector| |#1|) (|PositiveInteger|)) "\\spad{trace(x,{}n)} \\undocumented{} See \\axiomFunFrom{trace}{FiniteAlgebraicExtensionField}")) (|norm| (((|Vector| |#1|) (|Vector| |#1|) (|PositiveInteger|)) "\\spad{norm(x,{}n)} \\undocumented{} See \\axiomFunFrom{norm}{FiniteAlgebraicExtensionField}")) (/ (((|Vector| |#1|) (|Vector| |#1|) (|Vector| |#1|)) "\\spad{x/y} \\undocumented{} See \\axiomFunFrom{/}{Field}")) (* (((|Vector| |#1|) (|Vector| |#1|) (|Vector| |#1|)) "\\spad{x*y} \\undocumented{} See \\axiomFunFrom{*}{SemiGroup}")) (** (((|Vector| |#1|) (|Vector| |#1|) (|Integer|)) "\\spad{x**n} \\undocumented{} See \\axiomFunFrom{\\spad{**}}{DivisionRing}")) (|qPot| (((|Vector| |#1|) (|Vector| |#1|) (|Integer|)) "\\spad{qPot(v,{}e)} computes \\spad{v**(q**e)},{} interpreting \\spad{v} as an element of normal basis field,{} \\spad{q} the size of the ground field. This is done by a cyclic \\spad{e}-shift of the vector \\spad{v}.")) (|expPot| (((|Vector| |#1|) (|Vector| |#1|) (|SingleInteger|) (|SingleInteger|)) "\\spad{expPot(v,{}e,{}d)} returns the sum from \\spad{i = 0} to \\spad{e - 1} of \\spad{v**(q**i*d)},{} interpreting \\spad{v} as an element of a normal basis field and where \\spad{q} is the size of the ground field. Note: for a description of the algorithm,{} see \\spad{T}.Itoh and \\spad{S}.Tsujii,{} \"A fast algorithm for computing multiplicative inverses in \\spad{GF}(2^m) using normal bases\",{} Information and Computation 78,{} \\spad{pp}.171-177,{} 1988.")) (|repSq| (((|Vector| |#1|) (|Vector| |#1|) (|NonNegativeInteger|)) "\\spad{repSq(v,{}e)} computes \\spad{v**e} by repeated squaring,{} interpreting \\spad{v} as an element of a normal basis field.")) (|dAndcExp| (((|Vector| |#1|) (|Vector| |#1|) (|NonNegativeInteger|) (|SingleInteger|)) "\\spad{dAndcExp(v,{}n,{}k)} computes \\spad{v**e} interpreting \\spad{v} as an element of normal basis field. A divide and conquer algorithm similar to the one from \\spad{D}.\\spad{R}.Stinson,{} \"Some observations on parallel Algorithms for fast exponentiation in \\spad{GF}(2^n)\",{} Siam \\spad{J}. Computation,{} Vol.19,{} No.4,{} \\spad{pp}.711-717,{} August 1990 is used. Argument \\spad{k} is a parameter of this algorithm.")) (|xn| (((|SparseUnivariatePolynomial| |#1|) (|NonNegativeInteger|)) "\\spad{xn(n)} returns the polynomial \\spad{x**n-1}.")) (|pol| (((|SparseUnivariatePolynomial| |#1|) (|Vector| |#1|)) "\\spad{pol(v)} turns the vector \\spad{[v0,{}...,{}vn]} into the polynomial \\spad{v0+v1*x+ ... + vn*x**n}.")) (|index| (((|Vector| |#1|) (|PositiveInteger|) (|PositiveInteger|)) "\\spad{index(n,{}m)} is a index function for vectors of length \\spad{n} over the ground field.")) (|random| (((|Vector| |#1|) (|PositiveInteger|)) "\\spad{random(n)} creates a vector over the ground field with random entries.")) (|setFieldInfo| (((|Void|) (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|))))) |#1|) "\\spad{setFieldInfo(m,{}p)} initializes the field arithmetic,{} where \\spad{m} is the multiplication table and \\spad{p} is the respective normal element of the ground field \\spad{GF}.")))
NIL
@@ -1908,7 +1908,7 @@ NIL
((|constructor| (NIL "converts entire exponents to OutputForm")))
NIL
NIL
-(-495 K -4055 |Par|)
+(-495 K -4102 |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
@@ -1928,7 +1928,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
-(-500 K -4055 |Par|)
+(-500 K -4102 |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
@@ -1963,12 +1963,12 @@ NIL
(-508 |Key| |Entry| |addDom|)
((|constructor| (NIL "This domain is used to provide a conditional \"add\" domain for the implementation of \\spadtype{Table}.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3048) (|devaluate| |#2|)))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-1014))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
-(-509 R -4055)
+((|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3149) (|devaluate| |#2|)))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-1014))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
+(-509 R -4102)
((|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
-(-510 R0 -4055 UP UPUP R)
+(-510 R0 -4102 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
@@ -1978,7 +1978,7 @@ NIL
NIL
(-512 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.")))
-((-3898 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
+((-3996 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-513 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.")))
@@ -1988,7 +1988,7 @@ NIL
((|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.")))
((-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
-(-515 R -4055)
+(-515 R -4102)
((|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
@@ -2000,7 +2000,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
-(-518 R -4055 L)
+(-518 R -4102 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 -598) (|devaluate| |#2|))))
@@ -2008,11 +2008,11 @@ 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
-(-520 -4055 UP UPUP R)
+(-520 -4102 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
-(-521 -4055 UP)
+(-521 -4102 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
@@ -2024,15 +2024,15 @@ NIL
((|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
-(-524 R -4055 L)
+(-524 R -4102 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 -598) (|devaluate| |#2|))))
-(-525 R -4055)
+(-525 R -4102)
((|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 -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-574)))))
-(-526 -4055 UP)
+(-526 -4102 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
@@ -2040,27 +2040,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
-(-528 -4055)
+(-528 -4102)
((|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
(-529 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.")))
-((-3898 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
+((-3996 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-530)
((|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
-(-531 R -4055)
+(-531 R -4102)
((|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 -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-260))) (|HasCategory| |#2| (QUOTE (-574))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085))))) (-12 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-260)))) (|HasCategory| |#1| (QUOTE (-514))))
-(-532 -4055 UP)
+(-532 -4102 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
-(-533 R -4055)
+(-533 R -4102)
((|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
@@ -2076,15 +2076,15 @@ NIL
((|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
-(-537 R -4055)
+(-537 R -4102)
((|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
-(-538 E -4055)
+(-538 E -4102)
((|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
-(-539 -4055)
+(-539 -4102)
((|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}.")))
((-4233 . T) (-4232 . T))
((|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-1085)))))
@@ -2111,7 +2111,7 @@ NIL
(-545 |mn|)
((|constructor| (NIL "This domain implements low-level strings")) (|hash| (((|Integer|) $) "\\spad{hash(x)} provides a hashing function for strings")))
((-4239 . T) (-4238 . T))
-((|HasCategory| (-132) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-132) (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| (-132) (QUOTE (-1014))) (-3708 (|HasCategory| (-132) (QUOTE (-784))) (|HasCategory| (-132) (QUOTE (-1014)))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132))))) (-3708 (-12 (|HasCategory| (-132) (QUOTE (-784))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132))))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132)))))) (|HasCategory| (-132) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-132) (LIST (QUOTE -562) (QUOTE (-792)))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132)))))))
+((|HasCategory| (-132) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-132) (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| (-132) (QUOTE (-1014))) (-3844 (|HasCategory| (-132) (QUOTE (-784))) (|HasCategory| (-132) (QUOTE (-1014)))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132))))) (-3844 (-12 (|HasCategory| (-132) (QUOTE (-784))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132))))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132)))))) (|HasCategory| (-132) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-132) (LIST (QUOTE -562) (QUOTE (-792)))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132)))))))
(-546 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
@@ -2119,7 +2119,7 @@ NIL
(-547 |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}.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|))))) (|HasCategory| (-522) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2190) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|))))) (|HasCategory| (-522) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2217) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))))
(-548 |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.}")))
((-4233 |has| |#1| (-514)) (-4232 |has| |#1| (-514)) ((-4240 "*") |has| |#1| (-514)) (-4231 |has| |#1| (-514)) (-4235 . T))
@@ -2132,7 +2132,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
-(-551 R -4055 FG)
+(-551 R -4102 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
@@ -2143,30 +2143,30 @@ NIL
(-553 R |mn|)
((|constructor| (NIL "\\indented{2}{This type represents vector like objects with varying lengths} and a user-specified initial index.")))
((-4239 . T) (-4238 . T))
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3708 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#1| (QUOTE (-971))) (-12 (|HasCategory| |#1| (QUOTE (-928))) (|HasCategory| |#1| (QUOTE (-971)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3844 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#1| (QUOTE (-971))) (-12 (|HasCategory| |#1| (QUOTE (-928))) (|HasCategory| |#1| (QUOTE (-971)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-554 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 -4239)) (|HasCategory| |#2| (QUOTE (-784))) (|HasAttribute| |#1| (QUOTE -4238)) (|HasCategory| |#3| (QUOTE (-1014))))
(-555 |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.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-556 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).")))
-((-4235 -3708 (-4015 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))) (-4233 . T) (-4232 . T))
-((|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -342) (|devaluate| |#1|))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -342) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#2| (LIST (QUOTE -342) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|))))))
+((-4235 -3844 (-4079 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))) (-4233 . T) (-4232 . T))
+((|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -342) (|devaluate| |#1|))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -342) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#2| (LIST (QUOTE -342) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|))))))
(-557 |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.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| (-1068) (QUOTE (-784))) (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (QUOTE (-1068))) (LIST (QUOTE |:|) (QUOTE -3048) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (LIST (QUOTE -562) (QUOTE (-792)))))
+((|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| (-1068) (QUOTE (-784))) (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (QUOTE (-1068))) (LIST (QUOTE |:|) (QUOTE -3149) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (LIST (QUOTE -562) (QUOTE (-792)))))
(-558 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
(-559 |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}.")))
-((-4239 . T) (-2047 . T))
+((-4239 . T) (-2088 . T))
NIL
(-560 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")))
@@ -2184,7 +2184,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
-(-564 -4055 UP)
+(-564 -4102 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
@@ -2200,7 +2200,7 @@ NIL
((|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}.")))
((-4232 . T) (-4233 . T) (-4235 . T))
((|HasCategory| |#1| (QUOTE (-782))))
-(-568 R -4055)
+(-568 R -4102)
((|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
@@ -2228,18 +2228,18 @@ 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
-(-575 R -4055)
+(-575 R -4102)
((|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
-(-576 |lv| -4055)
+(-576 |lv| -4102)
((|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
(-577)
((|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.")))
((-4239 . T))
-((|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-1068) (QUOTE (-784))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (QUOTE (-1014))) (-12 (|HasCategory| (-51) (QUOTE (-1014))) (|HasCategory| (-51) (LIST (QUOTE -285) (QUOTE (-51))))) (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (QUOTE (-1068))) (LIST (QUOTE |:|) (QUOTE -3048) (QUOTE (-51))))))) (-3708 (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (QUOTE (-1014))) (|HasCategory| (-51) (QUOTE (-1014)))) (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (QUOTE (-1014))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792))))) (-3708 (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-1068) (QUOTE (-784))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (QUOTE (-1014))) (-12 (|HasCategory| (-51) (QUOTE (-1014))) (|HasCategory| (-51) (LIST (QUOTE -285) (QUOTE (-51))))) (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (QUOTE (-1068))) (LIST (QUOTE |:|) (QUOTE -3149) (QUOTE (-51))))))) (-3844 (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (QUOTE (-1014))) (|HasCategory| (-51) (QUOTE (-1014)))) (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (QUOTE (-1014))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792))))) (-3844 (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792))))))
(-578 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
@@ -2250,8 +2250,8 @@ NIL
NIL
(-580 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).")))
-((-4235 -3708 (-4015 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))) (-4233 . T) (-4232 . T))
-((|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -342) (|devaluate| |#1|))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -342) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#2| (LIST (QUOTE -342) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|))))))
+((-4235 -3844 (-4079 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))) (-4233 . T) (-4232 . T))
+((|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -342) (|devaluate| |#1|))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -342) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#2| (LIST (QUOTE -342) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#2| (LIST (QUOTE -392) (|devaluate| |#1|))))))
(-581 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))}.")))
NIL
@@ -2263,7 +2263,7 @@ NIL
(-583 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
-((|HasCategory| |#1| (QUOTE (-338))) (-2401 (|HasCategory| |#1| (QUOTE (-338)))))
+((|HasCategory| |#1| (QUOTE (-338))) (-2473 (|HasCategory| |#1| (QUOTE (-338)))))
(-584 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}.")))
((-4235 . T))
@@ -2283,11 +2283,11 @@ NIL
(-588 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.")))
((-4239 . T) (-4238 . T))
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-765))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3708 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-765))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3844 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-589 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.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-590 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
@@ -2302,9 +2302,9 @@ NIL
((|HasAttribute| |#1| (QUOTE -4239)))
(-593 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})}.")))
-((-2047 . T))
+((-2088 . T))
NIL
-(-594 R -4055 L)
+(-594 R -4102 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
@@ -2324,11 +2324,11 @@ NIL
((|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}.")))
((-4232 . T) (-4233 . T) (-4235 . T))
NIL
-(-599 -4055 UP)
+(-599 -4102 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))))
-(-600 A -3383)
+(-600 A -3596)
((|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}}")))
((-4232 . T) (-4233 . T) (-4235 . T))
((|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-338))))
@@ -2362,13 +2362,13 @@ NIL
NIL
(-608 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}.")))
-((-4239 . T) (-4238 . T) (-2047 . T))
+((-4239 . T) (-4238 . T) (-2088 . T))
NIL
-(-609 -4055)
+(-609 -4102)
((|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
-(-610 -4055 |Row| |Col| M)
+(-610 -4102 |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
@@ -2379,7 +2379,7 @@ NIL
(-612 |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.")))
((-4235 . T) (-4238 . T) (-4232 . T) (-4233 . T))
-((|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210))) (|HasAttribute| |#2| (QUOTE (-4240 "*"))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-283))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-514))) (-3708 (|HasAttribute| |#2| (QUOTE (-4240 "*"))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-3708 (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-157))))
+((|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210))) (|HasAttribute| |#2| (QUOTE (-4240 "*"))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-283))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-514))) (-3844 (|HasAttribute| |#2| (QUOTE (-4240 "*"))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-3844 (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-157))))
(-613 |VarSet|)
((|constructor| (NIL "Lyndon words over arbitrary (ordered) symbols: see Free Lie Algebras by \\spad{C}. Reutenauer (Oxford science publications). A Lyndon word is a word which is smaller than any of its right factors \\spad{w}.\\spad{r}.\\spad{t}. the pure lexicographical ordering. If \\axiom{a} and \\axiom{\\spad{b}} are two Lyndon words such that \\axiom{a < \\spad{b}} holds \\spad{w}.\\spad{r}.\\spad{t} lexicographical ordering then \\axiom{a*b} is a Lyndon word. Parenthesized Lyndon words can be generated from symbols by using the following rule: \\axiom{[[a,{}\\spad{b}],{}\\spad{c}]} is a Lyndon word iff \\axiom{a*b < \\spad{c} \\spad{<=} \\spad{b}} holds. Lyndon words are internally represented by binary trees using the \\spadtype{Magma} domain constructor. Two ordering are provided: lexicographic and length-lexicographic. \\newline Author : Michel Petitot (petitot@lifl.\\spad{fr}).")) (|LyndonWordsList| (((|List| $) (|List| |#1|) (|PositiveInteger|)) "\\axiom{LyndonWordsList(\\spad{vl},{} \\spad{n})} returns the list of Lyndon words over the alphabet \\axiom{\\spad{vl}},{} up to order \\axiom{\\spad{n}}.")) (|LyndonWordsList1| (((|OneDimensionalArray| (|List| $)) (|List| |#1|) (|PositiveInteger|)) "\\axiom{LyndonWordsList1(\\spad{vl},{} \\spad{n})} returns an array of lists of Lyndon words over the alphabet \\axiom{\\spad{vl}},{} up to order \\axiom{\\spad{n}}.")) (|varList| (((|List| |#1|) $) "\\axiom{varList(\\spad{x})} returns the list of distinct entries of \\axiom{\\spad{x}}.")) (|lyndonIfCan| (((|Union| $ "failed") (|OrderedFreeMonoid| |#1|)) "\\axiom{lyndonIfCan(\\spad{w})} convert \\axiom{\\spad{w}} into a Lyndon word.")) (|lyndon| (($ (|OrderedFreeMonoid| |#1|)) "\\axiom{lyndon(\\spad{w})} convert \\axiom{\\spad{w}} into a Lyndon word,{} error if \\axiom{\\spad{w}} is not a Lyndon word.")) (|lyndon?| (((|Boolean|) (|OrderedFreeMonoid| |#1|)) "\\axiom{lyndon?(\\spad{w})} test if \\axiom{\\spad{w}} is a Lyndon word.")) (|factor| (((|List| $) (|OrderedFreeMonoid| |#1|)) "\\axiom{factor(\\spad{x})} returns the decreasing factorization into Lyndon words.")) (|coerce| (((|Magma| |#1|) $) "\\axiom{coerce(\\spad{x})} returns the element of \\axiomType{Magma}(VarSet) corresponding to \\axiom{\\spad{x}}.") (((|OrderedFreeMonoid| |#1|) $) "\\axiom{coerce(\\spad{x})} returns the element of \\axiomType{OrderedFreeMonoid}(VarSet) corresponding to \\axiom{\\spad{x}}.")) (|lexico| (((|Boolean|) $ $) "\\axiom{lexico(\\spad{x},{}\\spad{y})} returns \\axiom{\\spad{true}} iff \\axiom{\\spad{x}} is smaller than \\axiom{\\spad{y}} \\spad{w}.\\spad{r}.\\spad{t}. the lexicographical ordering induced by \\axiom{VarSet}.")) (|length| (((|PositiveInteger|) $) "\\axiom{length(\\spad{x})} returns the number of entries in \\axiom{\\spad{x}}.")) (|right| (($ $) "\\axiom{right(\\spad{x})} returns right subtree of \\axiom{\\spad{x}} or error if \\axiomOpFrom{retractable?}{LyndonWord}(\\axiom{\\spad{x}}) is \\spad{true}.")) (|left| (($ $) "\\axiom{left(\\spad{x})} returns left subtree of \\axiom{\\spad{x}} or error if \\axiomOpFrom{retractable?}{LyndonWord}(\\axiom{\\spad{x}}) is \\spad{true}.")) (|retractable?| (((|Boolean|) $) "\\axiom{retractable?(\\spad{x})} tests if \\axiom{\\spad{x}} is a tree with only one entry.")))
NIL
@@ -2390,12 +2390,12 @@ NIL
NIL
(-615 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)]}.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-616 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
-((|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (QUOTE (-971))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (QUOTE (-971))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-971))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-617 |VarSet|)
((|constructor| (NIL "This type is the basic representation of parenthesized words (binary trees over arbitrary symbols) useful in \\spadtype{LiePolynomial}. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|varList| (((|List| |#1|) $) "\\axiom{varList(\\spad{x})} returns the list of distinct entries of \\axiom{\\spad{x}}.")) (|right| (($ $) "\\axiom{right(\\spad{x})} returns right subtree of \\axiom{\\spad{x}} or error if \\axiomOpFrom{retractable?}{Magma}(\\axiom{\\spad{x}}) is \\spad{true}.")) (|retractable?| (((|Boolean|) $) "\\axiom{retractable?(\\spad{x})} tests if \\axiom{\\spad{x}} is a tree with only one entry.")) (|rest| (($ $) "\\axiom{rest(\\spad{x})} return \\axiom{\\spad{x}} without the first entry or error if \\axiomOpFrom{retractable?}{Magma}(\\axiom{\\spad{x}}) is \\spad{true}.")) (|mirror| (($ $) "\\axiom{mirror(\\spad{x})} returns the reversed word of \\axiom{\\spad{x}}. That is \\axiom{\\spad{x}} itself if \\axiomOpFrom{retractable?}{Magma}(\\axiom{\\spad{x}}) is \\spad{true} and \\axiom{mirror(\\spad{z}) * mirror(\\spad{y})} if \\axiom{\\spad{x}} is \\axiom{\\spad{y*z}}.")) (|lexico| (((|Boolean|) $ $) "\\axiom{lexico(\\spad{x},{}\\spad{y})} returns \\axiom{\\spad{true}} iff \\axiom{\\spad{x}} is smaller than \\axiom{\\spad{y}} \\spad{w}.\\spad{r}.\\spad{t}. the lexicographical ordering induced by \\axiom{VarSet}. \\spad{N}.\\spad{B}. This operation does not take into account the tree structure of its arguments. Thus this is not a total ordering.")) (|length| (((|PositiveInteger|) $) "\\axiom{length(\\spad{x})} returns the number of entries in \\axiom{\\spad{x}}.")) (|left| (($ $) "\\axiom{left(\\spad{x})} returns left subtree of \\axiom{\\spad{x}} or error if \\axiomOpFrom{retractable?}{Magma}(\\axiom{\\spad{x}}) is \\spad{true}.")) (|first| ((|#1| $) "\\axiom{first(\\spad{x})} returns the first entry of the tree \\axiom{\\spad{x}}.")) (|coerce| (((|OrderedFreeMonoid| |#1|) $) "\\axiom{coerce(\\spad{x})} returns the element of \\axiomType{OrderedFreeMonoid}(VarSet) corresponding to \\axiom{\\spad{x}} by removing parentheses.")) (* (($ $ $) "\\axiom{x*y} returns the tree \\axiom{[\\spad{x},{}\\spad{y}]}.")))
NIL
@@ -2434,7 +2434,7 @@ NIL
((|HasAttribute| |#2| (QUOTE (-4240 "*"))) (|HasCategory| |#2| (QUOTE (-283))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-514))))
(-626 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")))
-((-4238 . T) (-4239 . T) (-2047 . T))
+((-4238 . T) (-4239 . T) (-2088 . T))
NIL
(-627 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.")))
@@ -2443,12 +2443,12 @@ NIL
(-628 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.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-514))) (|HasAttribute| |#1| (QUOTE (-4240 "*"))) (|HasCategory| |#1| (QUOTE (-338))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-514))) (|HasAttribute| |#1| (QUOTE (-4240 "*"))) (|HasCategory| |#1| (QUOTE (-338))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-629 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
NIL
-(-630 S -4055 FLAF FLAS)
+(-630 S -4102 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
@@ -2458,11 +2458,11 @@ NIL
NIL
(-632)
((|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")))
-((-4231 . T) (-4236 |has| (-637) (-338)) (-4230 |has| (-637) (-338)) (-3911 . T) (-4237 |has| (-637) (-6 -4237)) (-4234 |has| (-637) (-6 -4234)) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-637) (QUOTE (-135))) (|HasCategory| (-637) (QUOTE (-133))) (|HasCategory| (-637) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-637) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| (-637) (QUOTE (-343))) (|HasCategory| (-637) (QUOTE (-338))) (|HasCategory| (-637) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-637) (QUOTE (-210))) (|HasCategory| (-637) (QUOTE (-324))) (-3708 (|HasCategory| (-637) (QUOTE (-338))) (|HasCategory| (-637) (QUOTE (-324)))) (|HasCategory| (-637) (LIST (QUOTE -262) (QUOTE (-637)) (QUOTE (-637)))) (|HasCategory| (-637) (LIST (QUOTE -285) (QUOTE (-637)))) (|HasCategory| (-637) (LIST (QUOTE -483) (QUOTE (-1085)) (QUOTE (-637)))) (|HasCategory| (-637) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-637) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-637) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-637) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-637) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-637) (QUOTE (-947))) (|HasCategory| (-637) (QUOTE (-1106))) (-12 (|HasCategory| (-637) (QUOTE (-928))) (|HasCategory| (-637) (QUOTE (-1106)))) (|HasCategory| (-637) (QUOTE (-507))) (|HasCategory| (-637) (QUOTE (-980))) (-12 (|HasCategory| (-637) (QUOTE (-980))) (|HasCategory| (-637) (QUOTE (-1106)))) (-3708 (|HasCategory| (-637) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-637) (QUOTE (-338)))) (|HasCategory| (-637) (QUOTE (-283))) (-3708 (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-338))) (|HasCategory| (-637) (QUOTE (-324)))) (|HasCategory| (-637) (QUOTE (-838))) (-12 (|HasCategory| (-637) (QUOTE (-210))) (|HasCategory| (-637) (QUOTE (-338)))) (-12 (|HasCategory| (-637) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-637) (QUOTE (-338)))) (|HasCategory| (-637) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-637) (QUOTE (-784))) (|HasCategory| (-637) (QUOTE (-514))) (|HasAttribute| (-637) (QUOTE -4237)) (|HasAttribute| (-637) (QUOTE -4234)) (-12 (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (-3708 (-12 (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (|HasCategory| (-637) (QUOTE (-338))) (-12 (|HasCategory| (-637) (QUOTE (-324))) (|HasCategory| (-637) (QUOTE (-838))))) (-3708 (-12 (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (-12 (|HasCategory| (-637) (QUOTE (-338))) (|HasCategory| (-637) (QUOTE (-838)))) (-12 (|HasCategory| (-637) (QUOTE (-324))) (|HasCategory| (-637) (QUOTE (-838))))) (-3708 (-12 (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (|HasCategory| (-637) (QUOTE (-338)))) (-3708 (-12 (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (|HasCategory| (-637) (QUOTE (-514)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (|HasCategory| (-637) (QUOTE (-133)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (|HasCategory| (-637) (QUOTE (-324)))))
+((-4231 . T) (-4236 |has| (-637) (-338)) (-4230 |has| (-637) (-338)) (-4005 . T) (-4237 |has| (-637) (-6 -4237)) (-4234 |has| (-637) (-6 -4234)) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
+((|HasCategory| (-637) (QUOTE (-135))) (|HasCategory| (-637) (QUOTE (-133))) (|HasCategory| (-637) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-637) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| (-637) (QUOTE (-343))) (|HasCategory| (-637) (QUOTE (-338))) (|HasCategory| (-637) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-637) (QUOTE (-210))) (|HasCategory| (-637) (QUOTE (-324))) (-3844 (|HasCategory| (-637) (QUOTE (-338))) (|HasCategory| (-637) (QUOTE (-324)))) (|HasCategory| (-637) (LIST (QUOTE -262) (QUOTE (-637)) (QUOTE (-637)))) (|HasCategory| (-637) (LIST (QUOTE -285) (QUOTE (-637)))) (|HasCategory| (-637) (LIST (QUOTE -483) (QUOTE (-1085)) (QUOTE (-637)))) (|HasCategory| (-637) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-637) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-637) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-637) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-637) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-637) (QUOTE (-947))) (|HasCategory| (-637) (QUOTE (-1106))) (-12 (|HasCategory| (-637) (QUOTE (-928))) (|HasCategory| (-637) (QUOTE (-1106)))) (|HasCategory| (-637) (QUOTE (-507))) (|HasCategory| (-637) (QUOTE (-980))) (-12 (|HasCategory| (-637) (QUOTE (-980))) (|HasCategory| (-637) (QUOTE (-1106)))) (-3844 (|HasCategory| (-637) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-637) (QUOTE (-338)))) (|HasCategory| (-637) (QUOTE (-283))) (-3844 (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-338))) (|HasCategory| (-637) (QUOTE (-324)))) (|HasCategory| (-637) (QUOTE (-838))) (-12 (|HasCategory| (-637) (QUOTE (-210))) (|HasCategory| (-637) (QUOTE (-338)))) (-12 (|HasCategory| (-637) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-637) (QUOTE (-338)))) (|HasCategory| (-637) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-637) (QUOTE (-784))) (|HasCategory| (-637) (QUOTE (-514))) (|HasAttribute| (-637) (QUOTE -4237)) (|HasAttribute| (-637) (QUOTE -4234)) (-12 (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (-3844 (-12 (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (|HasCategory| (-637) (QUOTE (-338))) (-12 (|HasCategory| (-637) (QUOTE (-324))) (|HasCategory| (-637) (QUOTE (-838))))) (-3844 (-12 (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (-12 (|HasCategory| (-637) (QUOTE (-338))) (|HasCategory| (-637) (QUOTE (-838)))) (-12 (|HasCategory| (-637) (QUOTE (-324))) (|HasCategory| (-637) (QUOTE (-838))))) (-3844 (-12 (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (|HasCategory| (-637) (QUOTE (-338)))) (-3844 (-12 (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (|HasCategory| (-637) (QUOTE (-514)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (|HasCategory| (-637) (QUOTE (-133)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-637) (QUOTE (-283))) (|HasCategory| (-637) (QUOTE (-838)))) (|HasCategory| (-637) (QUOTE (-324)))))
(-633 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}.")))
-((-4239 . T) (-2047 . T))
+((-4239 . T) (-2088 . T))
NIL
(-634 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}.")))
@@ -2472,13 +2472,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
-(-636 OV E -4055 PG)
+(-636 OV E -4102 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
(-637)
((|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}")))
-((-3898 . T) (-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
+((-3996 . T) (-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-638 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.")))
@@ -2508,7 +2508,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
-(-645 S -2213 I)
+(-645 S -2252 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
@@ -2524,14 +2524,14 @@ NIL
((|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}.")))
NIL
NIL
-(-649 R |Mod| -4048 -2160 |exactQuo|)
+(-649 R |Mod| -3004 -3164 |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")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-650 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")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4234 |has| |#1| (-338)) (-4236 |has| |#1| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-1061))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-324))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
+((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-1061))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-324))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
(-651 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
@@ -2540,7 +2540,7 @@ NIL
((|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}.")))
((-4233 |has| |#1| (-157)) (-4232 |has| |#1| (-157)) (-4235 . T))
((|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))))
-(-653 R |Mod| -4048 -2160 |exactQuo|)
+(-653 R |Mod| -3004 -3164 |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")))
((-4235 . T))
NIL
@@ -2552,7 +2552,7 @@ NIL
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
((-4233 . T) (-4232 . T))
NIL
-(-656 -4055)
+(-656 -4102)
((|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]]}.")))
((-4235 . T))
NIL
@@ -2588,7 +2588,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.")) (** (($ $ (|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
-(-665 -4055 UP)
+(-665 -4102 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
@@ -2607,7 +2607,7 @@ NIL
(-669 |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.")))
(((-4240 "*") |has| |#2| (-157)) (-4231 |has| |#2| (-514)) (-4236 |has| |#2| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-157))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-514)))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#2| (QUOTE -4236)) (|HasCategory| |#2| (QUOTE (-426))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#2| (QUOTE (-133)))))
+((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-157))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-514)))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-794 |#1|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#2| (QUOTE -4236)) (|HasCategory| |#2| (QUOTE (-426))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#2| (QUOTE (-133)))))
(-670 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
@@ -2626,7 +2626,7 @@ NIL
((-12 (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#2| (QUOTE (-343)))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#2| (QUOTE (-784))))
(-674 S)
((|constructor| (NIL "A multi-set aggregate is a set which keeps track of the multiplicity of its elements.")))
-((-4228 . T) (-4239 . T) (-2047 . T))
+((-4228 . T) (-4239 . T) (-2088 . T))
NIL
(-675 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}.")))
@@ -2740,15 +2740,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
-(-703 -4055)
+(-703 -4102)
((|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
-(-704 P -4055)
+(-704 P -4102)
((|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
-(-705 UP -4055)
+(-705 UP -4102)
((|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
@@ -2764,7 +2764,7 @@ NIL
((|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.")))
(((-4240 "*") . T))
NIL
-(-709 R -4055)
+(-709 R -4102)
((|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
@@ -2784,7 +2784,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
-(-714 -4055 |ExtF| |SUEx| |ExtP| |n|)
+(-714 -4102 |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
@@ -2799,7 +2799,7 @@ NIL
(-717 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.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085))))) (|HasCategory| |#1| (QUOTE (-338))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085))))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085)))) (-2401 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085)))))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085)))) (-2401 (|HasCategory| |#1| (QUOTE (-507)))) (-2401 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085)))) (-2401 (|HasCategory| |#1| (LIST (QUOTE -37) (QUOTE (-522))))) (-2401 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085)))) (-2401 (|HasCategory| |#1| (LIST (QUOTE -919) (QUOTE (-522))))))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
+((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085))))) (|HasCategory| |#1| (QUOTE (-338))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085))))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085)))) (-2473 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085)))))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085)))) (-2473 (|HasCategory| |#1| (QUOTE (-507)))) (-2473 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085)))) (-2473 (|HasCategory| |#1| (LIST (QUOTE -37) (QUOTE (-522))))) (-2473 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-1085)))) (-2473 (|HasCategory| |#1| (LIST (QUOTE -919) (QUOTE (-522))))))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
(-718 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
@@ -2807,14 +2807,14 @@ NIL
(-719 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)}")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4234 |has| |#1| (-338)) (-4236 |has| |#1| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-1061))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
+((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-1061))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
(-720 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 -37) (LIST (QUOTE -382) (QUOTE (-522))))))
(-721 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.}")))
-((-4239 . T) (-4238 . T) (-2047 . T))
+((-4239 . T) (-4238 . T) (-2088 . T))
NIL
(-722 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}.")))
@@ -2868,23 +2868,23 @@ NIL
((|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}.")))
((-4232 . T) (-4233 . T) (-4235 . T))
NIL
-(-735 -3708 R OS S)
+(-735 -3844 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}.")))
NIL
NIL
(-736 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}.")))
((-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -262) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-980))) (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| (-925 |#1|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-925 |#1|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (-3708 (|HasCategory| (-925 |#1|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (-3708 (|HasCategory| (-925 |#1|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))))
+((|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -262) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-980))) (|HasCategory| |#1| (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| (-925 |#1|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-925 |#1|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (-3844 (|HasCategory| (-925 |#1|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (-3844 (|HasCategory| (-925 |#1|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))))
(-737)
((|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
-(-738 R -4055 L)
+(-738 R -4102 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
-(-739 R -4055)
+(-739 R -4102)
((|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
@@ -2892,7 +2892,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
-(-741 R -4055)
+(-741 R -4102)
((|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
@@ -2900,11 +2900,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
-(-743 -4055 UP UPUP R)
+(-743 -4102 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
-(-744 -4055 UP L LQ)
+(-744 -4102 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
@@ -2912,38 +2912,38 @@ 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
-(-746 -4055 UP L LQ)
+(-746 -4102 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
-(-747 -4055 UP)
+(-747 -4102 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
-(-748 -4055 L UP A LO)
+(-748 -4102 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
-(-749 -4055 UP)
+(-749 -4102 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))))
-(-750 -4055 LO)
+(-750 -4102 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
-(-751 -4055 LODO)
+(-751 -4102 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
-(-752 -2617 S |f|)
+(-752 -2787 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}.")))
((-4232 |has| |#2| (-971)) (-4233 |has| |#2| (-971)) (-4235 |has| |#2| (-6 -4235)) ((-4240 "*") |has| |#2| (-157)) (-4238 . T))
-((|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782))) (-3708 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782)))) (|HasCategory| |#2| (QUOTE (-157))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338)))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| (-522) (QUOTE (-784))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (|HasCategory| |#2| (QUOTE (-664))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-3708 (|HasCategory| |#2| (QUOTE (-971))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014)))) (|HasAttribute| |#2| (QUOTE -4235)) (|HasCategory| |#2| (QUOTE (-124))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-25))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-1014)))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3708 (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-157)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-210)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-343)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-730)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-782)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014))))) (-3708 (-12 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-3708 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782))) (-3844 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782)))) (|HasCategory| |#2| (QUOTE (-157))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338)))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| (-522) (QUOTE (-784))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (|HasCategory| |#2| (QUOTE (-664))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-3844 (|HasCategory| |#2| (QUOTE (-971))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014)))) (|HasAttribute| |#2| (QUOTE -4235)) (|HasCategory| |#2| (QUOTE (-124))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (|HasCategory| |#2| (QUOTE (-25))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-1014)))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-971)))) (-3844 (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-157)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-210)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-343)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-730)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-782)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014))))) (-3844 (-12 (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-3844 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-124))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-343))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-730))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-782))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (QUOTE (-971)))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
(-753 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")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-755 (-1085)) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-755 (-1085)) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-755 (-1085)) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-755 (-1085)) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-755 (-1085)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
+((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-755 (-1085)) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-755 (-1085)) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-755 (-1085)) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-755 (-1085)) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-755 (-1085)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
(-754 |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.")))
(((-4240 "*") |has| |#2| (-338)) (-4231 |has| |#2| (-338)) (-4236 |has| |#2| (-338)) (-4230 |has| |#2| (-338)) (-4235 . T) (-4233 . T) (-4232 . T))
@@ -2998,7 +2998,7 @@ NIL
NIL
(-767 S)
((|constructor| (NIL "to become an in order iterator")) (|min| ((|#1| $) "\\spad{min(u)} returns the smallest entry in the multiset aggregate \\spad{u}.")))
-((-4238 . T) (-4228 . T) (-4239 . T) (-2047 . T))
+((-4238 . T) (-4228 . T) (-4239 . T) (-2088 . T))
NIL
(-768)
((|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.")))
@@ -3011,7 +3011,7 @@ NIL
(-770 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.")))
((-4235 |has| |#1| (-782)))
-((|HasCategory| |#1| (QUOTE (-782))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-507))) (-3708 (|HasCategory| |#1| (QUOTE (-782))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-21))) (-3708 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-782)))))
+((|HasCategory| |#1| (QUOTE (-782))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-507))) (-3844 (|HasCategory| |#1| (QUOTE (-782))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-21))) (-3844 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-782)))))
(-771 R)
((|constructor| (NIL "Algebra of ADDITIVE operators over a ring.")))
((-4233 |has| |#1| (-157)) (-4232 |has| |#1| (-157)) (-4235 . T))
@@ -3039,12 +3039,12 @@ NIL
(-777 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.")))
((-4235 |has| |#1| (-782)))
-((|HasCategory| |#1| (QUOTE (-782))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-507))) (-3708 (|HasCategory| |#1| (QUOTE (-782))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-21))) (-3708 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-782)))))
+((|HasCategory| |#1| (QUOTE (-782))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-507))) (-3844 (|HasCategory| |#1| (QUOTE (-782))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-21))) (-3844 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-782)))))
(-778)
((|constructor| (NIL "Ordered finite sets.")))
NIL
NIL
-(-779 -2617 S)
+(-779 -2787 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
@@ -3080,11 +3080,11 @@ NIL
((|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 (-338))) (|HasCategory| |#1| (QUOTE (-514))))
-(-788 R |sigma| -1203)
+(-788 R |sigma| -2764)
((|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.")))
((-4232 . T) (-4233 . T) (-4235 . T))
((|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-338))))
-(-789 |x| R |sigma| -1203)
+(-789 |x| R |sigma| -2764)
((|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.")))
((-4232 . T) (-4233 . T) (-4235 . T))
((|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-338))))
@@ -3131,15 +3131,15 @@ NIL
(-800 |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).")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-799 |#1|) (QUOTE (-838))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-799 |#1|) (QUOTE (-133))) (|HasCategory| (-799 |#1|) (QUOTE (-135))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-799 |#1|) (QUOTE (-947))) (|HasCategory| (-799 |#1|) (QUOTE (-757))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-799 |#1|) (QUOTE (-1061))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| (-799 |#1|) (QUOTE (-210))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -799) (|devaluate| |#1|)))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -285) (LIST (QUOTE -799) (|devaluate| |#1|)))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -262) (LIST (QUOTE -799) (|devaluate| |#1|)) (LIST (QUOTE -799) (|devaluate| |#1|)))) (|HasCategory| (-799 |#1|) (QUOTE (-283))) (|HasCategory| (-799 |#1|) (QUOTE (-507))) (|HasCategory| (-799 |#1|) (QUOTE (-784))) (-3708 (|HasCategory| (-799 |#1|) (QUOTE (-757))) (|HasCategory| (-799 |#1|) (QUOTE (-784)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-799 |#1|) (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-799 |#1|) (QUOTE (-838)))) (|HasCategory| (-799 |#1|) (QUOTE (-133)))))
+((|HasCategory| (-799 |#1|) (QUOTE (-838))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-799 |#1|) (QUOTE (-133))) (|HasCategory| (-799 |#1|) (QUOTE (-135))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-799 |#1|) (QUOTE (-947))) (|HasCategory| (-799 |#1|) (QUOTE (-757))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-799 |#1|) (QUOTE (-1061))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| (-799 |#1|) (QUOTE (-210))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -799) (|devaluate| |#1|)))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -285) (LIST (QUOTE -799) (|devaluate| |#1|)))) (|HasCategory| (-799 |#1|) (LIST (QUOTE -262) (LIST (QUOTE -799) (|devaluate| |#1|)) (LIST (QUOTE -799) (|devaluate| |#1|)))) (|HasCategory| (-799 |#1|) (QUOTE (-283))) (|HasCategory| (-799 |#1|) (QUOTE (-507))) (|HasCategory| (-799 |#1|) (QUOTE (-784))) (-3844 (|HasCategory| (-799 |#1|) (QUOTE (-757))) (|HasCategory| (-799 |#1|) (QUOTE (-784)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-799 |#1|) (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-799 |#1|) (QUOTE (-838)))) (|HasCategory| (-799 |#1|) (QUOTE (-133)))))
(-801 |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)}.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (QUOTE (-947))) (|HasCategory| |#2| (QUOTE (-757))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-1061))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -262) (|devaluate| |#2|) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-283))) (|HasCategory| |#2| (QUOTE (-507))) (|HasCategory| |#2| (QUOTE (-784))) (-3708 (|HasCategory| |#2| (QUOTE (-757))) (|HasCategory| |#2| (QUOTE (-784)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#2| (QUOTE (-133)))))
+((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (QUOTE (-947))) (|HasCategory| |#2| (QUOTE (-757))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-1061))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -262) (|devaluate| |#2|) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-283))) (|HasCategory| |#2| (QUOTE (-507))) (|HasCategory| |#2| (QUOTE (-784))) (-3844 (|HasCategory| |#2| (QUOTE (-757))) (|HasCategory| |#2| (QUOTE (-784)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#2| (QUOTE (-133)))))
(-802 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 (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))))))
+((-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))))))
(-803)
((|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
@@ -3195,7 +3195,7 @@ NIL
(-816 |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
-((|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085)))) (-12 (-2401 (|HasCategory| |#2| (QUOTE (-971)))) (-2401 (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085)))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (-2401 (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085)))))))
+((|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085)))) (-12 (-2473 (|HasCategory| |#2| (QUOTE (-971)))) (-2473 (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085)))))) (-12 (|HasCategory| |#2| (QUOTE (-971))) (-2473 (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085)))))))
(-817 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
@@ -3204,7 +3204,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
-(-819 R -2213)
+(-819 R -2252)
((|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
@@ -3228,7 +3228,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
-(-825 UP -4055)
+(-825 UP -4102)
((|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
@@ -3251,7 +3251,7 @@ NIL
(-830 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
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-831 |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
@@ -3267,7 +3267,7 @@ NIL
(-834 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.")))
((-4235 . T))
-((|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-784))) (-3708 (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-784)))))
+((|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-784))) (-3844 (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-784)))))
(-835 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.")))
NIL
@@ -3288,7 +3288,7 @@ NIL
((|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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
((|HasCategory| $ (QUOTE (-135))) (|HasCategory| $ (QUOTE (-133))) (|HasCategory| $ (QUOTE (-343))))
-(-840 R0 -4055 UP UPUP R)
+(-840 R0 -4102 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
@@ -3316,7 +3316,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
-(-847 -4055)
+(-847 -4102)
((|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
@@ -3332,11 +3332,11 @@ NIL
((|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}.")))
(((-4240 "*") . T))
NIL
-(-851 -4055 P)
+(-851 -4102 P)
((|constructor| (NIL "This package exports interpolation algorithms")) (|LagrangeInterpolation| ((|#2| (|List| |#1|) (|List| |#1|)) "\\spad{LagrangeInterpolation(l1,{}l2)} \\undocumented")))
NIL
NIL
-(-852 |xx| -4055)
+(-852 |xx| -4102)
((|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
@@ -3360,7 +3360,7 @@ NIL
((|constructor| (NIL "This package exports plotting tools")) (|calcRanges| (((|List| (|Segment| (|DoubleFloat|))) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{calcRanges(l)} \\undocumented")))
NIL
NIL
-(-858 R -4055)
+(-858 R -4102)
((|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
@@ -3372,7 +3372,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
-(-861 S R -4055)
+(-861 S R -4102)
((|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
@@ -3392,11 +3392,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 -815) (|devaluate| |#1|))))
-(-866 R -4055 -2213)
+(-866 R -4102 -2252)
((|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
-(-867 -2213)
+(-867 -2252)
((|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
@@ -3419,7 +3419,7 @@ NIL
(-872 R)
((|constructor| (NIL "This domain implements points in coordinate space")))
((-4239 . T) (-4238 . T))
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3708 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#1| (QUOTE (-971))) (-12 (|HasCategory| |#1| (QUOTE (-928))) (|HasCategory| |#1| (QUOTE (-971)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3844 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#1| (QUOTE (-971))) (-12 (|HasCategory| |#1| (QUOTE (-928))) (|HasCategory| |#1| (QUOTE (-971)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-873 |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
@@ -3444,7 +3444,7 @@ NIL
((|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}.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
NIL
-(-879 E V R P -4055)
+(-879 E V R P -4102)
((|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
@@ -3455,8 +3455,8 @@ NIL
(-881 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}.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-1085) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-1085) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-1085) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-1085) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-1085) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
-(-882 E V R P -4055)
+((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-1085) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-1085) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-1085) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-1085) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-1085) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
+(-882 E V R P -4102)
((|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 (-426))))
@@ -3475,12 +3475,12 @@ NIL
(-886 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")))
((-4239 . T) (-4238 . T))
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3708 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3844 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-887)
((|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
-(-888 -4055)
+(-888 -4102)
((|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
@@ -3495,11 +3495,11 @@ NIL
(-891 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}")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-6 -4236)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-124)))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (-12 (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-124)))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)))
(-892 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")))
((-4235 -12 (|has| |#2| (-447)) (|has| |#1| (-447))))
-((-12 (|HasCategory| |#1| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-730)))) (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#2| (QUOTE (-447)))) (-12 (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#2| (QUOTE (-343)))) (-12 (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#2| (QUOTE (-664)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#2| (QUOTE (-447)))) (-12 (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#2| (QUOTE (-664))))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-124)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#1| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-730))))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#1| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-730))))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#2| (QUOTE (-447)))) (-12 (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#2| (QUOTE (-664)))) (-12 (|HasCategory| |#1| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-730))))) (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-784)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-730)))) (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-784))))))
+((-12 (|HasCategory| |#1| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-730)))) (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#2| (QUOTE (-447)))) (-12 (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#2| (QUOTE (-343)))) (-12 (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#2| (QUOTE (-664)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#2| (QUOTE (-447)))) (-12 (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#2| (QUOTE (-664))))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-124)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#1| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-730))))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#1| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-730))))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-124))) (|HasCategory| |#2| (QUOTE (-124)))) (-12 (|HasCategory| |#1| (QUOTE (-447))) (|HasCategory| |#2| (QUOTE (-447)))) (-12 (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#2| (QUOTE (-664)))) (-12 (|HasCategory| |#1| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-730))))) (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-784)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-730))) (|HasCategory| |#2| (QUOTE (-730)))) (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-784))))))
(-893)
((|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}")))
NIL
@@ -3514,7 +3514,7 @@ NIL
NIL
(-896 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}.")))
-((-4238 . T) (-4239 . T) (-2047 . T))
+((-4238 . T) (-4239 . T) (-2088 . T))
NIL
(-897 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}}")))
@@ -3542,7 +3542,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-514))))
(-903 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.")))
-((-4238 . T) (-2047 . T))
+((-4238 . T) (-2088 . T))
NIL
(-904 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.")))
@@ -3558,7 +3558,7 @@ NIL
NIL
(-907 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}.")))
-((-4239 . T) (-4238 . T) (-2047 . T))
+((-4239 . T) (-4238 . T) (-2088 . T))
NIL
(-908 R1 R2)
((|constructor| (NIL "This package \\undocumented")) (|map| (((|Point| |#2|) (|Mapping| |#2| |#1|) (|Point| |#1|)) "\\spad{map(f,{}p)} \\undocumented")))
@@ -3576,7 +3576,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
-(-912 K R UP -4055)
+(-912 K R UP -4102)
((|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
@@ -3606,7 +3606,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (QUOTE (-507))) (|HasCategory| |#2| (QUOTE (-283))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (QUOTE (-947))) (|HasCategory| |#2| (QUOTE (-757))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-1061))))
(-919 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}.")))
-((-2047 . T) (-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
+((-2088 . T) (-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-920 |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}.")))
@@ -3614,7 +3614,7 @@ NIL
NIL
(-921 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.")))
-((-4238 . T) (-4239 . T) (-2047 . T))
+((-4238 . T) (-4239 . T) (-2088 . T))
NIL
(-922 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}.")))
@@ -3631,11 +3631,11 @@ NIL
(-925 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.}")))
((-4231 |has| |#1| (-266)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-266))) (-3708 (|HasCategory| |#1| (QUOTE (-266))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -262) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-980))) (|HasCategory| |#1| (QUOTE (-507))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))))
+((|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-266))) (-3844 (|HasCategory| |#1| (QUOTE (-266))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -262) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-980))) (|HasCategory| |#1| (QUOTE (-507))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))))
(-926 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}.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-927 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
@@ -3644,14 +3644,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
-(-929 -4055 UP UPUP |radicnd| |n|)
+(-929 -4102 UP UPUP |radicnd| |n|)
((|constructor| (NIL "Function field defined by y**n = \\spad{f}(\\spad{x}).")))
((-4231 |has| (-382 |#2|) (-338)) (-4236 |has| (-382 |#2|) (-338)) (-4230 |has| (-382 |#2|) (-338)) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-382 |#2|) (QUOTE (-133))) (|HasCategory| (-382 |#2|) (QUOTE (-135))) (|HasCategory| (-382 |#2|) (QUOTE (-324))) (|HasCategory| (-382 |#2|) (QUOTE (-338))) (-3708 (|HasCategory| (-382 |#2|) (QUOTE (-338))) (|HasCategory| (-382 |#2|) (QUOTE (-324)))) (|HasCategory| (-382 |#2|) (QUOTE (-343))) (|HasCategory| (-382 |#2|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| (-382 |#2|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-382 |#2|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-343))) (-3708 (|HasCategory| (-382 |#2|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-12 (|HasCategory| (-382 |#2|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-3708 (-12 (|HasCategory| (-382 |#2|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-12 (|HasCategory| (-382 |#2|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-382 |#2|) (QUOTE (-324))))) (-12 (|HasCategory| (-382 |#2|) (QUOTE (-210))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-3708 (-12 (|HasCategory| (-382 |#2|) (QUOTE (-210))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (|HasCategory| (-382 |#2|) (QUOTE (-324)))))
+((|HasCategory| (-382 |#2|) (QUOTE (-133))) (|HasCategory| (-382 |#2|) (QUOTE (-135))) (|HasCategory| (-382 |#2|) (QUOTE (-324))) (|HasCategory| (-382 |#2|) (QUOTE (-338))) (-3844 (|HasCategory| (-382 |#2|) (QUOTE (-338))) (|HasCategory| (-382 |#2|) (QUOTE (-324)))) (|HasCategory| (-382 |#2|) (QUOTE (-343))) (|HasCategory| (-382 |#2|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| (-382 |#2|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-382 |#2|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-343))) (-3844 (|HasCategory| (-382 |#2|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-12 (|HasCategory| (-382 |#2|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-3844 (-12 (|HasCategory| (-382 |#2|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-12 (|HasCategory| (-382 |#2|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-382 |#2|) (QUOTE (-324))))) (-12 (|HasCategory| (-382 |#2|) (QUOTE (-210))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (-3844 (-12 (|HasCategory| (-382 |#2|) (QUOTE (-210))) (|HasCategory| (-382 |#2|) (QUOTE (-338)))) (|HasCategory| (-382 |#2|) (QUOTE (-324)))))
(-930 |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.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-522) (QUOTE (-838))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-522) (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-135))) (|HasCategory| (-522) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-522) (QUOTE (-947))) (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-1061))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-522) (QUOTE (-210))) (|HasCategory| (-522) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-522) (LIST (QUOTE -483) (QUOTE (-1085)) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -285) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -262) (QUOTE (-522)) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-283))) (|HasCategory| (-522) (QUOTE (-507))) (|HasCategory| (-522) (QUOTE (-784))) (-3708 (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (QUOTE (-784)))) (|HasCategory| (-522) (LIST (QUOTE -584) (QUOTE (-522)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (|HasCategory| (-522) (QUOTE (-133)))))
+((|HasCategory| (-522) (QUOTE (-838))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| (-522) (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-135))) (|HasCategory| (-522) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-522) (QUOTE (-947))) (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-1061))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| (-522) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| (-522) (QUOTE (-210))) (|HasCategory| (-522) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| (-522) (LIST (QUOTE -483) (QUOTE (-1085)) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -285) (QUOTE (-522)))) (|HasCategory| (-522) (LIST (QUOTE -262) (QUOTE (-522)) (QUOTE (-522)))) (|HasCategory| (-522) (QUOTE (-283))) (|HasCategory| (-522) (QUOTE (-507))) (|HasCategory| (-522) (QUOTE (-784))) (-3844 (|HasCategory| (-522) (QUOTE (-757))) (|HasCategory| (-522) (QUOTE (-784)))) (|HasCategory| (-522) (LIST (QUOTE -584) (QUOTE (-522)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-522) (QUOTE (-838)))) (|HasCategory| (-522) (QUOTE (-133)))))
(-931)
((|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
@@ -3674,7 +3674,7 @@ NIL
((|HasAttribute| |#1| (QUOTE -4239)) (|HasCategory| |#2| (QUOTE (-1014))))
(-936 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}.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-937 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)}") (($ $ (|NonNegativeInteger|)) "\\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}}")))
@@ -3684,19 +3684,19 @@ NIL
((|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)}") (($ $ (|NonNegativeInteger|)) "\\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}}")))
((-4231 . T) (-4236 . T) (-4230 . T) (-4233 . T) (-4232 . T) ((-4240 "*") . T) (-4235 . T))
NIL
-(-939 R -4055)
+(-939 R -4102)
((|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
-(-940 R -4055)
+(-940 R -4102)
((|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
-(-941 -4055 UP)
+(-941 -4102 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
-(-942 -4055 UP)
+(-942 -4102 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
@@ -3727,8 +3727,8 @@ NIL
(-949 |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")))
((-4231 . T) (-4236 . T) (-4230 . T) (-4233 . T) (-4232 . T) ((-4240 "*") . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-382 (-522)) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-382 (-522)) (LIST (QUOTE -962) (QUOTE (-522)))) (-3708 (|HasCategory| (-382 (-522)) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))))
-(-950 -4055 L)
+((|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-382 (-522)) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-382 (-522)) (LIST (QUOTE -962) (QUOTE (-522)))) (-3844 (|HasCategory| (-382 (-522)) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522))))))
+(-950 -4102 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
@@ -3764,14 +3764,14 @@ NIL
((|constructor| (NIL "This package provides coercions for the special types \\spadtype{Exit} and \\spadtype{Void}.")) (|coerce| ((|#1| (|Exit|)) "\\spad{coerce(e)} is never really evaluated. This coercion is used for formal type correctness when a function will not return directly to its caller.") (((|Void|) |#1|) "\\spad{coerce(s)} throws all information about \\spad{s} away. This coercion allows values of any type to appear in contexts where they will not be used. For example,{} it allows the resolution of different types in the \\spad{then} and \\spad{else} branches when an \\spad{if} is in a context where the resulting value is not used.")))
NIL
NIL
-(-959 -4055 |Expon| |VarSet| |FPol| |LFPol|)
+(-959 -4102 |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")))
(((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-960)
((|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.}")))
((-4238 . T) (-4239 . T))
-((|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (QUOTE (-1085))) (LIST (QUOTE |:|) (QUOTE -3048) (QUOTE (-51))))))) (|HasCategory| (-1085) (QUOTE (-784))) (|HasCategory| (-51) (QUOTE (-1014))) (-3708 (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (QUOTE (-1014))) (|HasCategory| (-51) (QUOTE (-1014)))) (-12 (|HasCategory| (-51) (QUOTE (-1014))) (|HasCategory| (-51) (LIST (QUOTE -285) (QUOTE (-51))))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (QUOTE (-1014))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792))))) (-3708 (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (QUOTE (-1085))) (LIST (QUOTE |:|) (QUOTE -3149) (QUOTE (-51))))))) (|HasCategory| (-1085) (QUOTE (-784))) (|HasCategory| (-51) (QUOTE (-1014))) (-3844 (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (QUOTE (-1014))) (|HasCategory| (-51) (QUOTE (-1014)))) (-12 (|HasCategory| (-51) (QUOTE (-1014))) (|HasCategory| (-51) (LIST (QUOTE -285) (QUOTE (-51))))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (QUOTE (-1014))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792))))) (-3844 (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792))))))
(-961 A S)
((|constructor| (NIL "A is retractable to \\spad{B} means that some elementsif A can be converted into elements of \\spad{B} and any element of \\spad{B} can be converted into an element of A.")) (|retract| ((|#2| $) "\\spad{retract(a)} transforms a into an element of \\spad{S} if possible. Error: if a cannot be made into an element of \\spad{S}.")) (|retractIfCan| (((|Union| |#2| "failed") $) "\\spad{retractIfCan(a)} transforms a into an element of \\spad{S} if possible. Returns \"failed\" if a cannot be made into an element of \\spad{S}.")) (|coerce| (($ |#2|) "\\spad{coerce(a)} transforms a into an element of \\%.")))
NIL
@@ -3816,7 +3816,7 @@ NIL
((|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.")))
((-4235 . T))
NIL
-(-972 |xx| -4055)
+(-972 |xx| -4102)
((|constructor| (NIL "This package exports rational interpolation algorithms")))
NIL
NIL
@@ -3826,12 +3826,12 @@ NIL
((|HasCategory| |#4| (QUOTE (-283))) (|HasCategory| |#4| (QUOTE (-338))) (|HasCategory| |#4| (QUOTE (-514))) (|HasCategory| |#4| (QUOTE (-157))))
(-974 |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")))
-((-4238 . T) (-2047 . T) (-4233 . T) (-4232 . T))
+((-4238 . T) (-2088 . T) (-4233 . T) (-4232 . T))
NIL
(-975 |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}.")))
((-4238 . T) (-4233 . T) (-4232 . T))
-((|HasCategory| |#3| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (QUOTE (-283))) (|HasCategory| |#3| (QUOTE (-514))) (|HasCategory| |#3| (QUOTE (-157))) (-3708 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-338)))) (|HasCategory| |#3| (LIST (QUOTE -562) (QUOTE (-792)))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-3708 (-12 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|))))))
+((|HasCategory| |#3| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (QUOTE (-283))) (|HasCategory| |#3| (QUOTE (-514))) (|HasCategory| |#3| (QUOTE (-157))) (-3844 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-338)))) (|HasCategory| |#3| (LIST (QUOTE -562) (QUOTE (-792)))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-3844 (-12 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|))))))
(-976 |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
@@ -3863,7 +3863,7 @@ NIL
(-983)
((|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}")))
((-4238 . T) (-4239 . T))
-((|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (QUOTE (-1085))) (LIST (QUOTE |:|) (QUOTE -3048) (QUOTE (-51))))))) (|HasCategory| (-1085) (QUOTE (-784))) (|HasCategory| (-51) (QUOTE (-1014))) (-3708 (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (QUOTE (-1014))) (|HasCategory| (-51) (QUOTE (-1014)))) (-12 (|HasCategory| (-51) (QUOTE (-1014))) (|HasCategory| (-51) (LIST (QUOTE -285) (QUOTE (-51))))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (QUOTE (-1014))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792))))) (-3708 (|HasCategory| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (QUOTE (-1085))) (LIST (QUOTE |:|) (QUOTE -3149) (QUOTE (-51))))))) (|HasCategory| (-1085) (QUOTE (-784))) (|HasCategory| (-51) (QUOTE (-1014))) (-3844 (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (QUOTE (-1014))) (|HasCategory| (-51) (QUOTE (-1014)))) (-12 (|HasCategory| (-51) (QUOTE (-1014))) (|HasCategory| (-51) (LIST (QUOTE -285) (QUOTE (-51))))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (QUOTE (-1014))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792))))) (-3844 (|HasCategory| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-51) (LIST (QUOTE -562) (QUOTE (-792))))))
(-984 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
@@ -3890,7 +3890,7 @@ NIL
NIL
(-990 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}.")))
-((-4239 . T) (-4238 . T) (-2047 . T))
+((-4239 . T) (-4238 . T) (-2088 . T))
NIL
(-991 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.")))
@@ -3900,11 +3900,11 @@ NIL
((|constructor| (NIL "This domain implements named rules")) (|name| (((|Symbol|) $) "\\spad{name(x)} returns the symbol")))
NIL
NIL
-(-993 |Base| R -4055)
+(-993 |Base| R -4102)
((|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
-(-994 |Base| R -4055)
+(-994 |Base| R -4102)
((|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
@@ -3919,7 +3919,7 @@ NIL
(-997 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.")))
((-4231 |has| |#1| (-338)) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-324)))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085))))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (QUOTE (-338)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-324)))))
+((|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-324)))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085))))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#1| (QUOTE (-324))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (QUOTE (-338)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-324)))))
(-998 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
@@ -3943,7 +3943,7 @@ NIL
(-1003 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")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-1004 (-1085)) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-1004 (-1085)) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-1004 (-1085)) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-1004 (-1085)) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-1004 (-1085)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
+((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-1004 (-1085)) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-1004 (-1085)) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-1004 (-1085)) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-1004 (-1085)) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-1004 (-1085)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
(-1004 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
@@ -3962,7 +3962,7 @@ NIL
((|HasCategory| |#1| (QUOTE (-1014))))
(-1008 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.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-1009 S)
((|constructor| (NIL "This type is used to specify a range of values from type \\spad{S}.")))
@@ -3970,7 +3970,7 @@ NIL
((|HasCategory| |#1| (QUOTE (-782))) (|HasCategory| |#1| (QUOTE (-1014))))
(-1010 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]}.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-1011 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.")) (< (((|Boolean|) $ $) "\\spad{s < t} returns \\spad{true} if all elements of set aggregate \\spad{s} are also elements of set aggregate \\spad{t}.")))
@@ -3978,7 +3978,7 @@ NIL
NIL
(-1012 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.")) (< (((|Boolean|) $ $) "\\spad{s < t} returns \\spad{true} if all elements of set aggregate \\spad{s} are also elements of set aggregate \\spad{t}.")))
-((-4228 . T) (-2047 . T))
+((-4228 . T) (-2088 . T))
NIL
(-1013 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}.")))
@@ -3995,7 +3995,7 @@ NIL
(-1016 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)}}")))
((-4238 . T) (-4228 . T) (-4239 . T))
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (QUOTE (-784))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))))
+((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (QUOTE (-784))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-343))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))))
(-1017 |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
@@ -4022,7 +4022,7 @@ NIL
NIL
(-1023 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.}")))
-((-4239 . T) (-4238 . T) (-2047 . T))
+((-4239 . T) (-4238 . T) (-2088 . T))
NIL
(-1024)
((|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.")))
@@ -4039,12 +4039,12 @@ NIL
(-1027 |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}.")))
((-4232 |has| |#3| (-971)) (-4233 |has| |#3| (-971)) (-4235 |has| |#3| (-6 -4235)) ((-4240 "*") |has| |#3| (-157)) (-4238 . T))
-((|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (QUOTE (-782))) (-3708 (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (QUOTE (-782)))) (|HasCategory| |#3| (QUOTE (-157))) (-3708 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971)))) (-3708 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-338)))) (-3708 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-971)))) (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-210))) (-3708 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971)))) (-3708 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-971)))) (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| (-522) (QUOTE (-784))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-971)))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085))))) (|HasCategory| |#3| (QUOTE (-664))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-3708 (|HasCategory| |#3| (QUOTE (-971))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-1014)))) (|HasAttribute| |#3| (QUOTE -4235)) (|HasCategory| |#3| (QUOTE (-124))) (-3708 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971)))) (|HasCategory| |#3| (QUOTE (-25))) (-3708 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (QUOTE (-782))) (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (QUOTE (-1014)))) (-3708 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971)))) (-3708 (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-124)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-157)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-210)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-338)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-343)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-730)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-782)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-971)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-1014))))) (-3708 (-12 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-782))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-3708 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-782))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#3| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-1014)))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-971)))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#3| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (QUOTE (-782))) (-3844 (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (QUOTE (-782)))) (|HasCategory| |#3| (QUOTE (-157))) (-3844 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971)))) (-3844 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-338)))) (-3844 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-971)))) (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-210))) (-3844 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971)))) (-3844 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-971)))) (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| (-522) (QUOTE (-784))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-971)))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085))))) (|HasCategory| |#3| (QUOTE (-664))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-3844 (|HasCategory| |#3| (QUOTE (-971))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-1014)))) (|HasAttribute| |#3| (QUOTE -4235)) (|HasCategory| |#3| (QUOTE (-124))) (-3844 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971)))) (|HasCategory| |#3| (QUOTE (-25))) (-3844 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (QUOTE (-782))) (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (QUOTE (-1014)))) (-3844 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (QUOTE (-971)))) (-3844 (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-124)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-157)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-210)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-338)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-343)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-730)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-782)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-971)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-1014))))) (-3844 (-12 (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-782))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522)))))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-3844 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-124))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-157))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-338))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-343))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-730))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-782))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#3| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#3| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#3| (QUOTE (-1014)))) (-12 (|HasCategory| |#3| (QUOTE (-210))) (|HasCategory| |#3| (QUOTE (-971)))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#3| (QUOTE (-971))) (|HasCategory| |#3| (LIST (QUOTE -829) (QUOTE (-1085))))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -285) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1014))) (|HasCategory| |#3| (LIST (QUOTE -962) (QUOTE (-522))))) (|HasCategory| |#3| (LIST (QUOTE -562) (QUOTE (-792))))))
(-1028 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 (-426))))
-(-1029 R -4055)
+(-1029 R -4102)
((|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
@@ -4062,7 +4062,7 @@ NIL
NIL
(-1033 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}.")))
-((-4238 . T) (-4239 . T) (-2047 . T))
+((-4238 . T) (-4239 . T) (-2088 . T))
NIL
(-1034 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.")))
@@ -4070,7 +4070,7 @@ NIL
((|HasCategory| |#3| (QUOTE (-338))) (|HasAttribute| |#3| (QUOTE (-4240 "*"))) (|HasCategory| |#3| (QUOTE (-157))))
(-1035 |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.")))
-((-2047 . T) (-4238 . T) (-4232 . T) (-4233 . T) (-4235 . T))
+((-2088 . T) (-4238 . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-1036 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}.")))
@@ -4079,16 +4079,16 @@ NIL
(-1037 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.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
+((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
(-1038 |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}.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-514))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-338))))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-514))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-338))))
(-1039 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}")))
-((-4239 . T) (-4238 . T) (-2047 . T))
+((-4239 . T) (-4238 . T) (-2088 . T))
NIL
-(-1040 UP -4055)
+(-1040 UP -4102)
((|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
@@ -4135,18 +4135,18 @@ NIL
(-1051 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.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| (-1050 |#1| |#2|) (QUOTE (-1014))) (-12 (|HasCategory| (-1050 |#1| |#2|) (LIST (QUOTE -285) (LIST (QUOTE -1050) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1050 |#1| |#2|) (QUOTE (-1014)))) (|HasCategory| (-1050 |#1| |#2|) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-1050 |#1| |#2|) (LIST (QUOTE -562) (QUOTE (-792)))) (-12 (|HasCategory| (-1050 |#1| |#2|) (LIST (QUOTE -285) (LIST (QUOTE -1050) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1050 |#1| |#2|) (QUOTE (-1014))))))
+((|HasCategory| (-1050 |#1| |#2|) (QUOTE (-1014))) (-12 (|HasCategory| (-1050 |#1| |#2|) (LIST (QUOTE -285) (LIST (QUOTE -1050) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1050 |#1| |#2|) (QUOTE (-1014)))) (|HasCategory| (-1050 |#1| |#2|) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-1050 |#1| |#2|) (LIST (QUOTE -562) (QUOTE (-792)))) (-12 (|HasCategory| (-1050 |#1| |#2|) (LIST (QUOTE -285) (LIST (QUOTE -1050) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1050 |#1| |#2|) (QUOTE (-1014))))))
(-1052 |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}.")))
((-4235 . T) (-4227 |has| |#2| (-6 (-4240 "*"))) (-4238 . T) (-4232 . T) (-4233 . T))
-((|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210))) (|HasAttribute| |#2| (QUOTE (-4240 "*"))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (QUOTE (-283))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-338))) (-3708 (|HasAttribute| |#2| (QUOTE (-4240 "*"))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-3708 (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-157))))
+((|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210))) (|HasAttribute| |#2| (QUOTE (-4240 "*"))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (QUOTE (-283))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-338))) (-3844 (|HasAttribute| |#2| (QUOTE (-4240 "*"))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#2| (QUOTE (-210)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-3844 (-12 (|HasCategory| |#2| (QUOTE (-210))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-157))))
(-1053 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
(-1054)
((|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.")))
-((-4239 . T) (-4238 . T) (-2047 . T))
+((-4239 . T) (-4238 . T) (-2088 . T))
NIL
(-1055 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.}")))
@@ -4159,19 +4159,19 @@ NIL
(-1057 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}.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-1058 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
(-1059 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})}.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-1060 |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.")))
((-4239 . T))
-((|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3048) (|devaluate| |#2|)))))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3149) (|devaluate| |#2|)))))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
(-1061)
((|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
@@ -4195,19 +4195,19 @@ NIL
(-1066 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.")))
((-4239 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-1067)
((|constructor| (NIL "A category for string-like objects")) (|string| (($ (|Integer|)) "\\spad{string(i)} returns the decimal representation of \\spad{i} in a string")))
-((-4239 . T) (-4238 . T) (-2047 . T))
+((-4239 . T) (-4238 . T) (-2088 . T))
NIL
(-1068)
NIL
((-4239 . T) (-4238 . T))
-((|HasCategory| (-132) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-132) (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| (-132) (QUOTE (-1014))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132))))) (-3708 (-12 (|HasCategory| (-132) (QUOTE (-784))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132))))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132)))))) (|HasCategory| (-132) (LIST (QUOTE -562) (QUOTE (-792)))))
+((|HasCategory| (-132) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-132) (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| (-132) (QUOTE (-1014))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132))))) (-3844 (-12 (|HasCategory| (-132) (QUOTE (-784))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132))))) (-12 (|HasCategory| (-132) (QUOTE (-1014))) (|HasCategory| (-132) (LIST (QUOTE -285) (QUOTE (-132)))))) (|HasCategory| (-132) (LIST (QUOTE -562) (QUOTE (-792)))))
(-1069 |Entry|)
((|constructor| (NIL "This domain provides tables where the keys are strings. A specialized hash function for strings is used.")))
((-4238 . T) (-4239 . T))
-((|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (QUOTE (-1068))) (LIST (QUOTE |:|) (QUOTE -3048) (|devaluate| |#1|)))))) (|HasCategory| (-1068) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3708 (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (QUOTE (-1014))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))) (-3708 (|HasCategory| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (QUOTE (-1068))) (LIST (QUOTE |:|) (QUOTE -3149) (|devaluate| |#1|)))))) (|HasCategory| (-1068) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3844 (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (QUOTE (-1014))) (|HasCategory| |#1| (QUOTE (-1014)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))) (-3844 (|HasCategory| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-1070 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
@@ -4234,9 +4234,9 @@ NIL
NIL
(-1076 |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.")))
-(((-4240 "*") -3708 (-4015 (|has| |#1| (-338)) (|has| (-1083 |#1| |#2| |#3|) (-757))) (|has| |#1| (-157)) (-4015 (|has| |#1| (-338)) (|has| (-1083 |#1| |#2| |#3|) (-838)))) (-4231 -3708 (-4015 (|has| |#1| (-338)) (|has| (-1083 |#1| |#2| |#3|) (-757))) (|has| |#1| (-514)) (-4015 (|has| |#1| (-338)) (|has| (-1083 |#1| |#2| |#3|) (-838)))) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| (-522) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-135)))) (-3708 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|)))))) (-3708 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-210))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|))))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-947))) (|HasCategory| |#1| (QUOTE (-338)))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-1061))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -262) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2190) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-133))) (-3708 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-133)))) (-3708 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-514)))) (-3708 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-157)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-338)))) (-3708 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-338))))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (-3708 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-947))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-1061))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -262) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -1858) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -4090) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))) (-3708 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-133)))))
-(-1077 R -4055)
+(((-4240 "*") -3844 (-4079 (|has| |#1| (-338)) (|has| (-1083 |#1| |#2| |#3|) (-757))) (|has| |#1| (-157)) (-4079 (|has| |#1| (-338)) (|has| (-1083 |#1| |#2| |#3|) (-838)))) (-4231 -3844 (-4079 (|has| |#1| (-338)) (|has| (-1083 |#1| |#2| |#3|) (-757))) (|has| |#1| (-514)) (-4079 (|has| |#1| (-338)) (|has| (-1083 |#1| |#2| |#3|) (-838)))) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4232 . T) (-4233 . T) (-4235 . T))
+((|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| (-522) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-135)))) (-3844 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|)))))) (-3844 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-210))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|))))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-947))) (|HasCategory| |#1| (QUOTE (-338)))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-1061))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -262) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2217) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-133))) (-3844 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-133)))) (-3844 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-514)))) (-3844 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-157)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-338)))) (-3844 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-338))))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (-3844 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-947))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-1061))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -262) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -1083) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2611) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -3533) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))) (-3844 (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1083 |#1| |#2| |#3|) (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-133)))))
+(-1077 R -4102)
((|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
@@ -4255,15 +4255,15 @@ NIL
(-1081 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.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4234 |has| |#1| (-338)) (-4236 |has| |#1| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-1061))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
+((|HasCategory| |#1| (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-1061))) (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasCategory| |#1| (QUOTE (-210))) (|HasAttribute| |#1| (QUOTE -4236)) (|HasCategory| |#1| (QUOTE (-426))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (|HasCategory| |#1| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133)))))
(-1082 |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.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|))))) (|HasCategory| (-382 (-522)) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasSignature| |#1| (LIST (QUOTE -2190) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -1858) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -4090) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|))))) (|HasCategory| (-382 (-522)) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasSignature| |#1| (LIST (QUOTE -2217) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2611) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -3533) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
(-1083 |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}.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-708)) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-708)) (|devaluate| |#1|))))) (|HasCategory| (-708) (QUOTE (-1026))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-708))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-708))))) (|HasSignature| |#1| (LIST (QUOTE -2190) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -1858) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -4090) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-708)) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-708)) (|devaluate| |#1|))))) (|HasCategory| (-708) (QUOTE (-1026))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-708))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-708))))) (|HasSignature| |#1| (LIST (QUOTE -2217) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2611) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -3533) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
(-1084)
((|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
@@ -4279,7 +4279,7 @@ NIL
(-1087 R)
((|constructor| (NIL "This domain implements symmetric polynomial")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-6 -4236)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (-12 (|HasCategory| (-898) (QUOTE (-124))) (|HasCategory| |#1| (QUOTE (-514)))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-426))) (-12 (|HasCategory| (-898) (QUOTE (-124))) (|HasCategory| |#1| (QUOTE (-514)))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasAttribute| |#1| (QUOTE -4236)))
(-1088)
((|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
@@ -4307,7 +4307,7 @@ NIL
(-1094 |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}")))
((-4238 . T) (-4239 . T))
-((|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2530) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3048) (|devaluate| |#2|)))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-1014))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3708 (|HasCategory| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (-12 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -285) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2644) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -3149) (|devaluate| |#2|)))))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#2| (QUOTE (-1014))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| |#2| (QUOTE (-1014)))) (-12 (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (QUOTE (-1014))) (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (QUOTE (-1014))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))) (-3844 (|HasCategory| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (LIST (QUOTE -562) (QUOTE (-792)))) (|HasCategory| |#2| (LIST (QUOTE -562) (QUOTE (-792))))))
(-1095 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
@@ -4318,7 +4318,7 @@ NIL
NIL
(-1097 |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})}.")))
-((-4239 . T) (-2047 . T))
+((-4239 . T) (-2088 . T))
NIL
(-1098 |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.")))
@@ -4359,7 +4359,7 @@ NIL
(-1107 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}.")))
((-4239 . T) (-4238 . T))
-((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (QUOTE (-1014))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-1108 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
@@ -4368,7 +4368,7 @@ NIL
((|constructor| (NIL "Category for the trigonometric functions.")) (|tan| (($ $) "\\spad{tan(x)} returns the tangent of \\spad{x}.")) (|sin| (($ $) "\\spad{sin(x)} returns the sine of \\spad{x}.")) (|sec| (($ $) "\\spad{sec(x)} returns the secant of \\spad{x}.")) (|csc| (($ $) "\\spad{csc(x)} returns the cosecant of \\spad{x}.")) (|cot| (($ $) "\\spad{cot(x)} returns the cotangent of \\spad{x}.")) (|cos| (($ $) "\\spad{cos(x)} returns the cosine of \\spad{x}.")))
NIL
NIL
-(-1110 R -4055)
+(-1110 R -4102)
((|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
@@ -4376,7 +4376,7 @@ NIL
((|constructor| (NIL "This package provides functions that compute \"fraction-free\" inverses of upper and lower triangular matrices over a integral domain. By \"fraction-free inverses\" we mean the following: given a matrix \\spad{B} with entries in \\spad{R} and an element \\spad{d} of \\spad{R} such that \\spad{d} * inv(\\spad{B}) also has entries in \\spad{R},{} we return \\spad{d} * inv(\\spad{B}). Thus,{} it is not necessary to pass to the quotient field in any of our computations.")) (|LowTriBddDenomInv| ((|#4| |#4| |#1|) "\\spad{LowTriBddDenomInv(B,{}d)} returns \\spad{M},{} where \\spad{B} is a non-singular lower triangular matrix and \\spad{d} is an element of \\spad{R} such that \\spad{M = d * inv(B)} has entries in \\spad{R}.")) (|UpTriBddDenomInv| ((|#4| |#4| |#1|) "\\spad{UpTriBddDenomInv(B,{}d)} returns \\spad{M},{} where \\spad{B} is a non-singular upper triangular matrix and \\spad{d} is an element of \\spad{R} such that \\spad{M = d * inv(B)} has entries in \\spad{R}.")))
NIL
NIL
-(-1112 R -4055)
+(-1112 R -4102)
((|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 -563) (LIST (QUOTE -821) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -815) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -815) (|devaluate| |#1|)))))
@@ -4386,12 +4386,12 @@ NIL
((|HasCategory| |#4| (QUOTE (-343))))
(-1114 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.")))
-((-4239 . T) (-4238 . T) (-2047 . T))
+((-4239 . T) (-4238 . T) (-2088 . T))
NIL
(-1115 |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}.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-514))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-338))))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-514))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-338))))
(-1116 |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
@@ -4404,13 +4404,13 @@ NIL
((|constructor| (NIL "\\indented{1}{This domain is used to interface with the interpreter\\spad{'s} notion} of comma-delimited sequences of values.")) (|length| (((|NonNegativeInteger|) $) "\\spad{length(x)} returns the number of elements in tuple \\spad{x}")) (|select| ((|#1| $ (|NonNegativeInteger|)) "\\spad{select(x,{}n)} returns the \\spad{n}-th element of tuple \\spad{x}. tuples are 0-based")) (|coerce| (($ (|PrimitiveArray| |#1|)) "\\spad{coerce(a)} makes a tuple from primitive array a")))
NIL
((|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))))
-(-1119 -4055)
+(-1119 -4102)
((|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
(-1120)
((|constructor| (NIL "The fundamental Type.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-1121 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}.}")))
@@ -4442,16 +4442,16 @@ NIL
((|HasCategory| |#2| (QUOTE (-338))))
(-1128 |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)}.")))
-(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-2047 |has| |#1| (-338)) (-4232 . T) (-4233 . T) (-4235 . T))
+(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-2088 |has| |#1| (-338)) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
(-1129 |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)}.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| (-522) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (QUOTE (-135))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-135))))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-210)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|))))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-947)))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-757)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-1061)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -262) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2190) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-784)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-757)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-784))))) (|HasCategory| |#2| (QUOTE (-838))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-507)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-283)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-133))) (-3708 (|HasCategory| |#1| (QUOTE (-133))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-133))))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (-3708 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -262) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-757)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-784)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-947)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-1061)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085)))))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -1858) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -4090) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-133))))))
+((|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| (-522) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (QUOTE (-135))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-135))))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-210)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|))))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-947)))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-757)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-1061)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -262) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2217) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-784)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-757)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-784))))) (|HasCategory| |#2| (QUOTE (-838))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-507)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-283)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-133))) (-3844 (|HasCategory| |#1| (QUOTE (-133))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-133))))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (-3844 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -262) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -483) (QUOTE (-1085)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-757)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-784)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-947)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-1061)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522))))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-1085)))))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2611) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -3533) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#1| (QUOTE (-133))) (-12 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-133))))))
(-1130 |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.")))
-(((-4240 "*") -3708 (-4015 (|has| |#1| (-338)) (|has| (-1158 |#1| |#2| |#3|) (-757))) (|has| |#1| (-157)) (-4015 (|has| |#1| (-338)) (|has| (-1158 |#1| |#2| |#3|) (-838)))) (-4231 -3708 (-4015 (|has| |#1| (-338)) (|has| (-1158 |#1| |#2| |#3|) (-757))) (|has| |#1| (-514)) (-4015 (|has| |#1| (-338)) (|has| (-1158 |#1| |#2| |#3|) (-838)))) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| (-522) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-135)))) (-3708 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|)))))) (-3708 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-210))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|))))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-947))) (|HasCategory| |#1| (QUOTE (-338)))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-1061))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -262) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2190) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-133))) (-3708 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-133)))) (-3708 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-514)))) (-3708 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-157)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-338)))) (-3708 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-338))))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (-3708 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-947))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-1061))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -262) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -1858) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -4090) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))) (-3708 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-133)))))
+(((-4240 "*") -3844 (-4079 (|has| |#1| (-338)) (|has| (-1158 |#1| |#2| |#3|) (-757))) (|has| |#1| (-157)) (-4079 (|has| |#1| (-338)) (|has| (-1158 |#1| |#2| |#3|) (-838)))) (-4231 -3844 (-4079 (|has| |#1| (-338)) (|has| (-1158 |#1| |#2| |#3|) (-757))) (|has| |#1| (-514)) (-4079 (|has| |#1| (-338)) (|has| (-1158 |#1| |#2| |#3|) (-838)))) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4232 . T) (-4233 . T) (-4235 . T))
+((|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| (-522) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-135))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-135)))) (-3844 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|)))))) (-3844 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-210))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-522)) (|devaluate| |#1|))))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-947))) (|HasCategory| |#1| (QUOTE (-338)))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-1061))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -262) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2217) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-507))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-133))) (-3844 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-133)))) (-3844 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-514)))) (-3844 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-157)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-338)))) (-3844 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-338))))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (-3844 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-757))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-947))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-1061))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -262) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -483) (QUOTE (-1085)) (LIST (QUOTE -1158) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-1085)))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2611) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -3533) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))) (-3844 (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-838))) (|HasCategory| |#1| (QUOTE (-338)))) (-12 (|HasCategory| (-1158 |#1| |#2| |#3|) (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-338)))) (|HasCategory| |#1| (QUOTE (-133)))))
(-1131 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
@@ -4487,7 +4487,7 @@ NIL
(-1139 |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.")))
(((-4240 "*") |has| |#2| (-157)) (-4231 |has| |#2| (-514)) (-4234 |has| |#2| (-338)) (-4236 |has| |#2| (-6 -4236)) (-4233 . T) (-4232 . T) (-4235 . T))
-((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-157))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-514)))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-1061))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (-3708 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasCategory| |#2| (QUOTE (-210))) (|HasAttribute| |#2| (QUOTE -4236)) (|HasCategory| |#2| (QUOTE (-426))) (-3708 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (-3708 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#2| (QUOTE (-133)))))
+((|HasCategory| |#2| (QUOTE (-838))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-157))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-514)))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-354)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-354))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -815) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -815) (QUOTE (-522))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-354)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -563) (LIST (QUOTE -821) (QUOTE (-522)))))) (-12 (|HasCategory| (-999) (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#2| (LIST (QUOTE -563) (QUOTE (-498))))) (|HasCategory| |#2| (QUOTE (-784))) (|HasCategory| |#2| (LIST (QUOTE -584) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-135))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-1061))) (|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (-3844 (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasCategory| |#2| (QUOTE (-210))) (|HasAttribute| |#2| (QUOTE -4236)) (|HasCategory| |#2| (QUOTE (-426))) (-3844 (|HasCategory| |#2| (QUOTE (-157))) (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-514))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (|HasCategory| |#2| (QUOTE (-338))) (|HasCategory| |#2| (QUOTE (-426))) (|HasCategory| |#2| (QUOTE (-838)))) (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (-3844 (-12 (|HasCategory| $ (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-838)))) (|HasCategory| |#2| (QUOTE (-133)))))
(-1140 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
@@ -4503,7 +4503,7 @@ NIL
(-1143 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 -829) (QUOTE (-1085)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1026))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -2190) (LIST (|devaluate| |#2|) (QUOTE (-1085))))))
+((|HasCategory| |#2| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1026))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -2217) (LIST (|devaluate| |#2|) (QUOTE (-1085))))))
(-1144 |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.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4232 . T) (-4233 . T) (-4235 . T))
@@ -4531,22 +4531,22 @@ NIL
(-1150 |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)}.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|))))) (|HasCategory| (-382 (-522)) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasSignature| |#1| (LIST (QUOTE -2190) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -1858) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -4090) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
+((|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|))))) (|HasCategory| (-382 (-522)) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasSignature| |#1| (LIST (QUOTE -2217) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2611) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -3533) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
(-1151 |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.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4236 |has| |#1| (-338)) (-4230 |has| |#1| (-338)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|))))) (|HasCategory| (-382 (-522)) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-3708 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasSignature| |#1| (LIST (QUOTE -2190) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -1858) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -4090) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522))) (|devaluate| |#1|))))) (|HasCategory| (-382 (-522)) (QUOTE (-1026))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (-3844 (|HasCategory| |#1| (QUOTE (-338))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasSignature| |#1| (LIST (QUOTE -2217) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2611) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -3533) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
(-1152 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))}.")))
(((-4240 "*") |has| (-1151 |#2| |#3| |#4|) (-157)) (-4231 |has| (-1151 |#2| |#3| |#4|) (-514)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| (-1151 |#2| |#3| |#4|) (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-1151 |#2| |#3| |#4|) (QUOTE (-133))) (|HasCategory| (-1151 |#2| |#3| |#4|) (QUOTE (-135))) (|HasCategory| (-1151 |#2| |#3| |#4|) (QUOTE (-157))) (|HasCategory| (-1151 |#2| |#3| |#4|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-1151 |#2| |#3| |#4|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-1151 |#2| |#3| |#4|) (QUOTE (-338))) (|HasCategory| (-1151 |#2| |#3| |#4|) (QUOTE (-426))) (-3708 (|HasCategory| (-1151 |#2| |#3| |#4|) (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-1151 |#2| |#3| |#4|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasCategory| (-1151 |#2| |#3| |#4|) (QUOTE (-514))))
+((|HasCategory| (-1151 |#2| |#3| |#4|) (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-1151 |#2| |#3| |#4|) (QUOTE (-133))) (|HasCategory| (-1151 |#2| |#3| |#4|) (QUOTE (-135))) (|HasCategory| (-1151 |#2| |#3| |#4|) (QUOTE (-157))) (|HasCategory| (-1151 |#2| |#3| |#4|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-1151 |#2| |#3| |#4|) (LIST (QUOTE -962) (QUOTE (-522)))) (|HasCategory| (-1151 |#2| |#3| |#4|) (QUOTE (-338))) (|HasCategory| (-1151 |#2| |#3| |#4|) (QUOTE (-426))) (-3844 (|HasCategory| (-1151 |#2| |#3| |#4|) (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| (-1151 |#2| |#3| |#4|) (LIST (QUOTE -962) (LIST (QUOTE -382) (QUOTE (-522)))))) (|HasCategory| (-1151 |#2| |#3| |#4|) (QUOTE (-514))))
(-1153 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 -4239)))
(-1154 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)}.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-1155 |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)}.}")))
@@ -4555,7 +4555,7 @@ NIL
(-1156 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 (-522)))) (|HasCategory| |#2| (QUOTE (-887))) (|HasCategory| |#2| (QUOTE (-1106))) (|HasSignature| |#2| (LIST (QUOTE -4090) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -1858) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1085))))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338))))
+((|HasCategory| |#2| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#2| (QUOTE (-887))) (|HasCategory| |#2| (QUOTE (-1106))) (|HasSignature| |#2| (LIST (QUOTE -3533) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -2611) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1085))))) (|HasCategory| |#2| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#2| (QUOTE (-338))))
(-1157 |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.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4232 . T) (-4233 . T) (-4235 . T))
@@ -4563,18 +4563,18 @@ NIL
(-1158 |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}.")))
(((-4240 "*") |has| |#1| (-157)) (-4231 |has| |#1| (-514)) (-4232 . T) (-4233 . T) (-4235 . T))
-((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3708 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-708)) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-708)) (|devaluate| |#1|))))) (|HasCategory| (-708) (QUOTE (-1026))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-708))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-708))))) (|HasSignature| |#1| (LIST (QUOTE -2190) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (|HasCategory| |#1| (QUOTE (-338))) (-3708 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -1858) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -4090) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
+((|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasCategory| |#1| (QUOTE (-514))) (|HasCategory| |#1| (QUOTE (-157))) (-3844 (|HasCategory| |#1| (QUOTE (-157))) (|HasCategory| |#1| (QUOTE (-514)))) (|HasCategory| |#1| (QUOTE (-133))) (|HasCategory| |#1| (QUOTE (-135))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-708)) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -829) (QUOTE (-1085)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-708)) (|devaluate| |#1|))))) (|HasCategory| (-708) (QUOTE (-1026))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-708))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-708))))) (|HasSignature| |#1| (LIST (QUOTE -2217) (LIST (|devaluate| |#1|) (QUOTE (-1085)))))) (|HasCategory| |#1| (QUOTE (-338))) (-3844 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-522)))) (|HasCategory| |#1| (QUOTE (-887))) (|HasCategory| |#1| (QUOTE (-1106))) (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -37) (LIST (QUOTE -382) (QUOTE (-522))))) (|HasSignature| |#1| (LIST (QUOTE -2611) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1085))))) (|HasSignature| |#1| (LIST (QUOTE -3533) (LIST (LIST (QUOTE -588) (QUOTE (-1085))) (|devaluate| |#1|)))))))
(-1159 |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
-(-1160 -4055 UP L UTS)
+(-1160 -4102 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 (-514))))
(-1161)
((|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.")))
-((-2047 . T))
+((-2088 . T))
NIL
(-1162 |sym|)
((|constructor| (NIL "This domain implements variables")) (|variable| (((|Symbol|)) "\\spad{variable()} returns the symbol")) (|coerce| (((|Symbol|) $) "\\spad{coerce(x)} returns the symbol")))
@@ -4586,7 +4586,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-928))) (|HasCategory| |#2| (QUOTE (-971))) (|HasCategory| |#2| (QUOTE (-664))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-25))))
(-1164 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.")))
-((-4239 . T) (-4238 . T) (-2047 . T))
+((-4239 . T) (-4238 . T) (-2088 . T))
NIL
(-1165 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}.")))
@@ -4595,7 +4595,7 @@ NIL
(-1166 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.")))
((-4239 . T) (-4238 . T))
-((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3708 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#1| (QUOTE (-971))) (-12 (|HasCategory| |#1| (QUOTE (-928))) (|HasCategory| |#1| (QUOTE (-971)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3708 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
+((|HasCategory| |#1| (LIST (QUOTE -563) (QUOTE (-498)))) (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| (-522) (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014))) (-3844 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (QUOTE (-1014)))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-664))) (|HasCategory| |#1| (QUOTE (-971))) (-12 (|HasCategory| |#1| (QUOTE (-928))) (|HasCategory| |#1| (QUOTE (-971)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-784))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792)))) (-3844 (-12 (|HasCategory| |#1| (QUOTE (-1014))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -562) (QUOTE (-792))))))
(-1167)
((|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
@@ -4628,7 +4628,7 @@ NIL
((|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
-(-1175 K R UP -4055)
+(-1175 K R UP -4102)
((|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
@@ -4656,11 +4656,11 @@ NIL
((|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}.")))
((-4231 |has| |#2| (-6 -4231)) (-4233 . T) (-4232 . T) (-4235 . T))
NIL
-(-1182 S -4055)
+(-1182 S -4102)
((|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 (-343))) (|HasCategory| |#2| (QUOTE (-133))) (|HasCategory| |#2| (QUOTE (-135))))
-(-1183 -4055)
+(-1183 -4102)
((|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}.")))
((-4230 . T) (-4236 . T) (-4231 . T) ((-4240 "*") . T) (-4232 . T) (-4233 . T) (-4235 . T))
NIL
diff --git a/src/share/algebra/category.daase b/src/share/algebra/category.daase
index 9583d92d..d48ed6f3 100644
--- a/src/share/algebra/category.daase
+++ b/src/share/algebra/category.daase
@@ -1,14 +1,14 @@
-(142485 . 3409939483)
-(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((#0=(-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) #0#) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))))
+(142485 . 3410359543)
+(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((#0=(-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) #0#) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))))
(((|#2| |#2|) . T))
((((-522)) . T))
-((($ $) -3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))) ((|#2| |#2|) . T) ((#0=(-382 (-522)) #0#) |has| |#2| (-37 (-382 (-522)))))
+((($ $) -3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))) ((|#2| |#2|) . T) ((#0=(-382 (-522)) #0#) |has| |#2| (-37 (-382 (-522)))))
((($) . T))
(((|#1|) . T))
((($) . T) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#2|) . T))
-((($) -3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))) ((|#2|) . T) (((-382 (-522))) |has| |#2| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))) ((|#2|) . T) (((-382 (-522))) |has| |#2| (-37 (-382 (-522)))))
(|has| |#1| (-838))
((((-792)) . T))
((((-792)) . T))
@@ -23,28 +23,28 @@
((((-202)) . T) (((-792)) . T))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1|) . T))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-782)))
-((($ $) . T) ((#0=(-382 (-522)) #0#) -3708 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1| |#1|) . T))
-(-3708 (|has| |#1| (-757)) (|has| |#1| (-784)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-782)))
+((($ $) . T) ((#0=(-382 (-522)) #0#) -3844 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1| |#1|) . T))
+(-3844 (|has| |#1| (-757)) (|has| |#1| (-784)))
((((-382 (-522))) |has| |#1| (-962 (-382 (-522)))) (((-522)) |has| |#1| (-962 (-522))) ((|#1|) . T))
((((-792)) . T))
((((-792)) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
(|has| |#1| (-782))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1| |#2| |#3|) . T))
(((|#4|) . T))
-((($) . T) (((-382 (-522))) -3708 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
+((($) . T) (((-382 (-522))) -3844 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
((((-792)) . T))
((((-792)) |has| |#1| (-1014)))
(((|#1|) . T) ((|#2|) . T))
(((|#1|) . T) (((-522)) |has| |#1| (-962 (-522))) (((-382 (-522))) |has| |#1| (-962 (-382 (-522)))))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
-(((|#2| (-455 (-3480 |#1|) (-708))) . T))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(((|#2| (-455 (-3591 |#1|) (-708))) . T))
(((|#1| (-494 (-1085))) . T))
(((#0=(-799 |#1|) #0#) . T) ((#1=(-382 (-522)) #1#) . T) (($ $) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(|has| |#4| (-343))
(|has| |#3| (-343))
(((|#1|) . T))
@@ -54,10 +54,10 @@
(|has| |#1| (-133))
(|has| |#1| (-135))
(|has| |#1| (-514))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
((($) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
((((-498)) |has| |#1| (-563 (-498))))
((($) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T))
((($) . T))
@@ -66,59 +66,59 @@
((((-792)) . T))
((((-792)) . T))
((((-382 (-522))) . T) (($) . T))
-((((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)) (($) . T) ((|#1|) . T))
+((((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)) (($) . T) ((|#1|) . T))
((((-792)) . T))
((((-792)) . T))
((((-792)) . T))
(((|#1|) . T))
-(((|#1|) . T) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) . T))
+(((|#1|) . T) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) . T))
(((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) (($) . T))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(((|#1| |#2|) . T))
((((-792)) . T))
(((|#1|) . T))
-(((#0=(-382 (-522)) #0#) |has| |#2| (-37 (-382 (-522)))) ((|#2| |#2|) . T) (($ $) -3708 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+(((#0=(-382 (-522)) #0#) |has| |#2| (-37 (-382 (-522)))) ((|#2| |#2|) . T) (($ $) -3844 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
(((|#1|) . T))
-((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
-((($) -3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((($) -3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#1|) . T) (((-382 (-522))) . T) (($) . T))
(((|#1|) . T) (((-382 (-522))) . T) (($) . T))
(((|#1|) . T) (((-382 (-522))) . T) (($) . T))
-(((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))) ((|#1| |#1|) . T) (($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
+(((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))) ((|#1| |#1|) . T) (($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
((($ $) . T))
(((|#2|) . T))
-((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) . T) (($) -3708 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
-((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T) (($) -3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
+((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) . T) (($) -3844 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T) (($) -3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
((($) . T))
(|has| |#1| (-343))
(((|#1|) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
((((-792)) . T))
((((-792)) . T))
(((|#1| |#2|) . T))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
(((|#1| |#1|) . T))
(|has| |#1| (-514))
(((|#2| |#2|) -12 (|has| |#1| (-338)) (|has| |#2| (-285 |#2|))) (((-1085) |#2|) -12 (|has| |#1| (-338)) (|has| |#2| (-483 (-1085) |#2|))))
((((-382 |#2|)) . T) (((-382 (-522))) . T) (($) . T))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-782)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-782)))
((($ $) . T) ((#0=(-382 (-522)) #0#) . T))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(|has| |#1| (-1014))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(|has| |#1| (-1014))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(|has| |#1| (-782))
((($) . T) (((-382 (-522))) . T))
(((|#1|) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-324)))
-(-3708 (|has| |#4| (-730)) (|has| |#4| (-782)))
-(-3708 (|has| |#4| (-730)) (|has| |#4| (-782)))
-(-3708 (|has| |#3| (-730)) (|has| |#3| (-782)))
-(-3708 (|has| |#3| (-730)) (|has| |#3| (-782)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#4| (-730)) (|has| |#4| (-782)))
+(-3844 (|has| |#4| (-730)) (|has| |#4| (-782)))
+(-3844 (|has| |#3| (-730)) (|has| |#3| (-782)))
+(-3844 (|has| |#3| (-730)) (|has| |#3| (-782)))
(((|#1| |#2|) . T))
(((|#1| |#2|) . T))
(|has| |#1| (-1014))
@@ -132,21 +132,21 @@
((((-522)) . T))
((((-522)) . T))
(((|#1|) . T))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
(((|#1| (-708)) . T))
(|has| |#2| (-730))
-(-3708 (|has| |#2| (-730)) (|has| |#2| (-782)))
+(-3844 (|has| |#2| (-730)) (|has| |#2| (-782)))
(|has| |#2| (-782))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1| |#2|) . T))
((((-1068) |#1|) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
(((|#1|) . T))
(((|#3| (-708)) . T))
(|has| |#1| (-135))
(|has| |#1| (-133))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
(|has| |#1| (-1014))
((((-382 (-522))) . T) (((-522)) . T))
((((-1085) |#2|) |has| |#2| (-483 (-1085) |#2|)) ((|#2| |#2|) |has| |#2| (-285 |#2|)))
@@ -154,7 +154,7 @@
(((|#1|) . T) (($) . T))
((((-522)) . T))
((((-522)) . T))
-((($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#1|) |has| |#1| (-157)))
+((($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#1|) |has| |#1| (-157)))
((((-522)) . T))
((((-522)) . T))
(((#0=(-637) (-1081 #0#)) . T))
@@ -173,12 +173,12 @@
((((-792)) . T))
((((-792)) . T))
(((|#1| |#1|) . T))
-(((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))) ((|#1| |#1|) . T) (($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
+(((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))) ((|#1| |#1|) . T) (($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
(((|#1|) . T))
-((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T) (($) -3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
-((($) -3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971))) ((|#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))))
+((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T) (($) -3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971))) ((|#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))))
((((-792)) . T))
((((-792)) . T))
((((-792)) . T))
@@ -189,25 +189,25 @@
((((-154 (-202))) |has| |#1| (-947)) (((-154 (-354))) |has| |#1| (-947)) (((-498)) |has| |#1| (-563 (-498))) (((-1081 |#1|)) . T) (((-821 (-522))) |has| |#1| (-563 (-821 (-522)))) (((-821 (-354))) |has| |#1| (-563 (-821 (-354)))))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1|) . T))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-782)))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-782)))
-((((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))) ((|#2|) |has| |#1| (-338)) ((|#1|) |has| |#1| (-157)))
-(((|#1|) |has| |#1| (-157)) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-782)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-782)))
+((((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))) ((|#2|) |has| |#1| (-338)) ((|#1|) |has| |#1| (-157)))
+(((|#1|) |has| |#1| (-157)) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))))
(|has| |#1| (-338))
(-12 (|has| |#4| (-210)) (|has| |#4| (-971)))
(-12 (|has| |#3| (-210)) (|has| |#3| (-971)))
-(-3708 (|has| |#4| (-157)) (|has| |#4| (-782)) (|has| |#4| (-971)))
-(-3708 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
+(-3844 (|has| |#4| (-157)) (|has| |#4| (-782)) (|has| |#4| (-971)))
+(-3844 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
((((-792)) . T))
(((|#1|) . T))
((((-382 (-522))) |has| |#1| (-962 (-382 (-522)))) (((-522)) |has| |#1| (-962 (-522))) ((|#1|) . T))
(((|#1|) . T) (((-522)) |has| |#1| (-584 (-522))))
-(((|#2|) . T) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
-(((|#1|) . T) (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) . T))
+(((|#2|) . T) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
+(((|#1|) . T) (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) . T))
(|has| |#1| (-514))
(|has| |#1| (-514))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(((|#1|) . T))
(|has| |#1| (-514))
(|has| |#1| (-514))
@@ -218,11 +218,11 @@
(((|#2|) . T) (($) . T) (((-382 (-522))) . T))
(-12 (|has| |#1| (-1014)) (|has| |#2| (-1014)))
((($) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T))
-((((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)) (($) . T) ((|#1|) . T))
-(((|#1|) . T) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) . T))
+((((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)) (($) . T) ((|#1|) . T))
+(((|#1|) . T) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) . T))
(((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) (($) . T))
-(((|#4| |#4|) -3708 (|has| |#4| (-157)) (|has| |#4| (-338)) (|has| |#4| (-971))) (($ $) |has| |#4| (-157)))
-(((|#3| |#3|) -3708 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-971))) (($ $) |has| |#3| (-157)))
+(((|#4| |#4|) -3844 (|has| |#4| (-157)) (|has| |#4| (-338)) (|has| |#4| (-971))) (($ $) |has| |#4| (-157)))
+(((|#3| |#3|) -3844 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-971))) (($ $) |has| |#3| (-157)))
(((|#1|) . T))
(((|#2|) . T))
((((-498)) |has| |#2| (-563 (-498))) (((-821 (-354))) |has| |#2| (-563 (-821 (-354)))) (((-821 (-522))) |has| |#2| (-563 (-821 (-522)))))
@@ -231,21 +231,21 @@
((((-792)) . T))
((((-498)) |has| |#1| (-563 (-498))) (((-821 (-354))) |has| |#1| (-563 (-821 (-354)))) (((-821 (-522))) |has| |#1| (-563 (-821 (-522)))))
((((-792)) . T))
-(((|#4|) -3708 (|has| |#4| (-157)) (|has| |#4| (-338)) (|has| |#4| (-971))) (($) |has| |#4| (-157)))
-(((|#3|) -3708 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-971))) (($) |has| |#3| (-157)))
+(((|#4|) -3844 (|has| |#4| (-157)) (|has| |#4| (-338)) (|has| |#4| (-971))) (($) |has| |#4| (-157)))
+(((|#3|) -3844 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-971))) (($) |has| |#3| (-157)))
((((-792)) . T))
((((-498)) . T) (((-522)) . T) (((-821 (-522))) . T) (((-354)) . T) (((-202)) . T))
(((|#1|) . T) (((-522)) |has| |#1| (-962 (-522))) (((-382 (-522))) |has| |#1| (-962 (-382 (-522)))))
((($) . T) (((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) . T))
((((-382 $) (-382 $)) |has| |#2| (-514)) (($ $) . T) ((|#2| |#2|) . T))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) . T))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) . T))
(((|#1|) . T))
(|has| |#2| (-838))
((((-1068) (-51)) . T))
((((-522)) |has| #0=(-382 |#2|) (-584 (-522))) ((#0#) . T))
((((-498)) . T) (((-202)) . T) (((-354)) . T) (((-821 (-354))) . T))
((((-792)) . T))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
(((|#1|) |has| |#1| (-157)))
(((|#1| $) |has| |#1| (-262 |#1| |#1|)))
((((-792)) . T))
@@ -256,13 +256,13 @@
(|has| |#1| (-784))
(|has| |#1| (-1014))
(((|#1|) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
((((-498)) |has| |#1| (-563 (-498))))
-((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
-((($) -3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
-((($) -3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((($) -3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(|has| |#1| (-210))
-((($) -3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#1| (-494 (-755 (-1085)))) . T))
(((|#1| (-898)) . T))
(((#0=(-799 |#1|) $) |has| #0# (-262 #0# #0#)))
@@ -271,7 +271,7 @@
(((|#1|) . T))
(((|#2| |#2|) . T))
(|has| |#1| (-1061))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) . T))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) . T))
(|has| (-1152 |#1| |#2| |#3| |#4|) (-133))
(|has| (-1152 |#1| |#2| |#3| |#4|) (-135))
(|has| |#1| (-133))
@@ -288,20 +288,20 @@
((($) . T) ((|#1|) . T))
(((|#2|) |has| |#2| (-971)))
((((-792)) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((#0=(-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) #0#) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((#0=(-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) #0#) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))))
(((|#1|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((#0=(-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) #0#) |has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))))
+(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((#0=(-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) #0#) |has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))))
((((-522) |#1|) . T))
((((-792)) . T))
((((-498)) -12 (|has| |#1| (-563 (-498))) (|has| |#2| (-563 (-498)))) (((-821 (-354))) -12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354))))) (((-821 (-522))) -12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522))))))
((((-792)) . T))
((((-792)) . T))
((($) . T))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
((($) . T))
((($) . T))
((($) . T))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
((((-792)) . T))
((((-792)) . T))
(|has| (-1151 |#2| |#3| |#4|) (-135))
@@ -312,16 +312,16 @@
((((-792)) . T))
(((|#1|) . T))
(((|#1|) . T))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
(((|#1|) . T))
((((-522) |#1|) . T))
(((|#2|) |has| |#2| (-157)))
(((|#1|) |has| |#1| (-157)))
(((|#1|) . T))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-782)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-782)))
((((-792)) |has| |#1| (-1014)))
-(-3708 (|has| |#1| (-447)) (|has| |#1| (-664)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)) (|has| |#1| (-1026)))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-447)) (|has| |#1| (-664)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)) (|has| |#1| (-1026)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-324)))
((((-839 |#1|)) . T))
((((-382 |#2|) |#3|) . T))
(|has| |#1| (-15 * (|#1| (-522) |#1|)))
@@ -333,7 +333,7 @@
(((|#1|) . T))
((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) |has| |#1| (-157)) (($) |has| |#1| (-514)))
(|has| |#1| (-338))
-(-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))
+(-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))
(|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))
(|has| |#1| (-338))
((((-522)) . T))
@@ -345,31 +345,31 @@
(((|#1|) . T))
((((-522) |#1|) . T))
(((|#2|) . T))
-(-3708 (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
-(-3708 (|has| |#2| (-730)) (|has| |#2| (-782)))
-(-3708 (|has| |#2| (-730)) (|has| |#2| (-782)))
+(-3844 (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#2| (-730)) (|has| |#2| (-782)))
+(-3844 (|has| |#2| (-730)) (|has| |#2| (-782)))
(((|#1|) . T))
((((-1085)) -12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971))))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(-12 (|has| |#1| (-338)) (|has| |#2| (-757)))
-(-3708 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)) (|has| |#1| (-514)))
-(((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))) ((|#1| |#1|) . T) (($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))))
+(-3844 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)) (|has| |#1| (-514)))
+(((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))) ((|#1| |#1|) . T) (($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))))
((($ $) |has| |#1| (-514)))
(((#0=(-637) (-1081 #0#)) . T))
((((-792)) . T))
((((-792)) . T) (((-1166 |#4|)) . T))
((((-792)) . T) (((-1166 |#3|)) . T))
-((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T) (($) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))))
+((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T) (($) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))))
((($) |has| |#1| (-514)))
((((-792)) . T))
((($) . T))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((#0=(-382 (-522)) #0#) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((#1=(-1158 |#1| |#2| |#3|) #1#) |has| |#1| (-338)) ((|#1| |#1|) . T))
-(((|#1| |#1|) . T) (($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((#0=(-382 (-522)) #0#) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)) ((|#1|) . T))
-(((|#1|) . T) (($) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((#0=(-382 (-522)) #0#) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((#1=(-1158 |#1| |#2| |#3|) #1#) |has| |#1| (-338)) ((|#1| |#1|) . T))
+(((|#1| |#1|) . T) (($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((#0=(-382 (-522)) #0#) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)) ((|#1|) . T))
+(((|#1|) . T) (($) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))))
(((|#3|) |has| |#3| (-971)))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(|has| |#1| (-1014))
(((|#2| (-756 |#1|)) . T))
(((|#1|) . T))
@@ -381,37 +381,37 @@
((((-132)) . T))
(((|#3|) |has| |#3| (-1014)) (((-522)) -12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014))) (((-382 (-522))) -12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014))))
((((-792)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(((|#1|) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
((((-498)) |has| |#1| (-563 (-498))))
-((((-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) . T))
+((((-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) . T))
(|has| |#1| (-338))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-782)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-782)))
((((-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)) ((|#1| |#1|) |has| |#1| (-285 |#1|)))
(|has| |#2| (-757))
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-782))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
((((-792)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((((-498)) |has| |#1| (-563 (-498))))
(((|#1| |#2|) . T))
((((-1085)) -12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085)))))
((((-1068) |#1|) . T))
(((|#1| |#2| |#3| (-494 |#3|)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(|has| |#1| (-343))
(|has| |#1| (-343))
(|has| |#1| (-343))
((((-792)) . T))
(((|#1|) . T))
-(-3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
(|has| |#1| (-343))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
((((-522)) . T))
((((-522)) . T))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
((((-792)) . T))
((((-792)) . T))
(-12 (|has| |#2| (-210)) (|has| |#2| (-971)))
@@ -420,10 +420,10 @@
((((-522) |#4|) . T))
((((-522) |#3|) . T))
(((|#1|) . T) (((-522)) |has| |#1| (-584 (-522))))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
((((-1152 |#1| |#2| |#3| |#4|)) . T))
((((-382 (-522))) . T) (((-522)) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
(((|#1| |#1|) . T))
(((|#1|) . T))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
@@ -452,37 +452,37 @@
((($) . T))
((($ $) . T) ((#0=(-1085) $) . T) ((#0# |#1|) . T))
(((|#2|) |has| |#2| (-157)))
-((($) -3708 (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))) ((|#2|) |has| |#2| (-157)) (((-382 (-522))) |has| |#2| (-37 (-382 (-522)))))
-(((|#2| |#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))) (($ $) |has| |#2| (-157)))
+((($) -3844 (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))) ((|#2|) |has| |#2| (-157)) (((-382 (-522))) |has| |#2| (-37 (-382 (-522)))))
+(((|#2| |#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))) (($ $) |has| |#2| (-157)))
((((-132)) . T))
(((|#1|) . T))
(-12 (|has| |#1| (-343)) (|has| |#2| (-343)))
((((-792)) . T))
-(((|#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))) (($) |has| |#2| (-157)))
+(((|#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))) (($) |has| |#2| (-157)))
(((|#1|) . T))
((((-792)) . T))
(|has| |#1| (-1014))
(|has| $ (-135))
((((-522) |#1|) . T))
-((($) -3708 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)) (|has| |#1| (-514))) (((-382 (-522))) -3708 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
+((($) -3844 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)) (|has| |#1| (-514))) (((-382 (-522))) -3844 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
((((-1085)) -12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085)))))
(|has| |#1| (-338))
-(-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))
+(-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))
(|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))
(|has| |#1| (-338))
(|has| |#1| (-15 * (|#1| (-708) |#1|)))
(((|#1|) . T))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
((((-792)) . T))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
(((|#2| (-494 (-794 |#1|))) . T))
((((-792)) . T))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1|) . T))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
((((-535 |#1|)) . T))
((($) . T))
(((|#1|) . T) (($) . T))
@@ -499,28 +499,28 @@
((((-792)) . T))
((((-792)) . T))
(((|#1| |#2| |#3| |#4| |#5|) . T))
-(((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))) ((|#1| |#1|) . T) (($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((#0=(-382 (-522)) #0#) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((#1=(-1083 |#1| |#2| |#3|) #1#) |has| |#1| (-338)) ((|#1| |#1|) . T))
-(((|#1| |#1|) . T) (($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((#0=(-382 (-522)) #0#) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
+(((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))) ((|#1| |#1|) . T) (($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((#0=(-382 (-522)) #0#) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((#1=(-1083 |#1| |#2| |#3|) #1#) |has| |#1| (-338)) ((|#1| |#1|) . T))
+(((|#1| |#1|) . T) (($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((#0=(-382 (-522)) #0#) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
(((|#2|) |has| |#2| (-971)))
(|has| |#1| (-1014))
-((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T) (($) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)) ((|#1|) . T))
-(((|#1|) . T) (($) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T) (($) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)) ((|#1|) . T))
+(((|#1|) . T) (($) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#1|) |has| |#1| (-157)) (($) . T))
(((|#1|) . T))
-(((#0=(-382 (-522)) #0#) |has| |#2| (-37 (-382 (-522)))) ((|#2| |#2|) . T) (($ $) -3708 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+(((#0=(-382 (-522)) #0#) |has| |#2| (-37 (-382 (-522)))) ((|#2| |#2|) . T) (($ $) -3844 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
((((-792)) . T))
-((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
((($ $) . T) ((|#2| $) . T) ((|#2| |#1|) . T))
-((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) |has| |#1| (-157)) (($) -3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
+((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) |has| |#1| (-157)) (($) -3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
(((#0=(-999) |#1|) . T) ((#0# $) . T) (($ $) . T))
-((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) . T) (($) -3708 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) . T) (($) -3844 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
((($) . T))
(((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) (($) . T))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(((|#2|) |has| |#1| (-338)))
(((|#1|) . T))
(((|#2|) |has| |#2| (-1014)) (((-522)) -12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014))) (((-382 (-522))) -12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014))))
@@ -534,8 +534,8 @@
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-133))
(|has| |#1| (-135))
-((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
-((($) -3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((($) -3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
((((-382 (-522))) . T) (($) . T))
((((-382 (-522))) . T) (($) . T))
((((-382 (-522))) . T) (($) . T))
@@ -546,12 +546,12 @@
(((|#1| (-708) (-999)) . T))
((((-382 (-522))) |has| |#2| (-338)) (($) . T))
(((|#1| (-494 (-1004 (-1085))) (-1004 (-1085))) . T))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
(((|#1|) . T))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
(|has| |#2| (-730))
-(-3708 (|has| |#2| (-730)) (|has| |#2| (-782)))
+(-3844 (|has| |#2| (-730)) (|has| |#2| (-782)))
(|has| |#1| (-343))
(|has| |#1| (-343))
(|has| |#1| (-343))
@@ -583,61 +583,61 @@
(((|#4| |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))
(((|#2|) . T) (((-522)) |has| |#2| (-962 (-522))) (((-382 (-522))) |has| |#2| (-962 (-382 (-522)))))
(((|#3| |#3|) -12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))))
-(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))))
(((|#1|) . T))
(((|#1| |#2|) . T))
((($) . T))
((($) . T))
(((|#2|) . T))
(((|#3|) . T))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
-(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))))
(((|#2|) . T))
-((((-792)) -3708 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-562 (-792))) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014))) (((-1166 |#2|)) . T))
+((((-792)) -3844 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-562 (-792))) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014))) (((-1166 |#2|)) . T))
(((|#1|) |has| |#1| (-157)))
((((-522)) . T))
-((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) |has| |#1| (-157)) (($) -3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
-((($) -3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) |has| |#1| (-157)) (($) -3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
+((($) -3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
((((-522) (-132)) . T))
-((($) -3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971))) ((|#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971)))
+((($) -3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971))) ((|#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971)))
(((|#1|) . T))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971)))
(((|#2|) |has| |#1| (-338)))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1| |#1|) . T) (($ $) . T))
-((($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#1|) |has| |#1| (-157)))
+((($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#1|) |has| |#1| (-157)))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1| (-494 #0=(-1085)) #0#) . T))
(((|#1|) . T) (($) . T))
(|has| |#4| (-157))
(|has| |#3| (-157))
(((#0=(-382 (-881 |#1|)) #0#) . T))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(|has| |#1| (-1014))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(|has| |#1| (-1014))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
((((-498)) |has| |#1| (-563 (-498))))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(((|#1| |#1|) |has| |#1| (-157)))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1|) . T))
((((-382 (-881 |#1|))) . T))
(((|#1|) |has| |#1| (-157)))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
((((-792)) . T))
((((-1152 |#1| |#2| |#3| |#4|)) . T))
(((|#1|) |has| |#1| (-971)) (((-522)) -12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))))
(((|#1| |#2|) . T))
-(-3708 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
+(-3844 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
(|has| |#3| (-730))
-(-3708 (|has| |#3| (-730)) (|has| |#3| (-782)))
+(-3844 (|has| |#3| (-730)) (|has| |#3| (-782)))
(|has| |#3| (-782))
-((((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))) ((|#2|) |has| |#1| (-338)) ((|#1|) |has| |#1| (-157)))
-(((|#1|) |has| |#1| (-157)) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))))
+((((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))) ((|#2|) |has| |#1| (-338)) ((|#1|) |has| |#1| (-157)))
+(((|#1|) |has| |#1| (-157)) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))))
(((|#2|) . T))
((((-792)) . T))
((((-792)) . T))
@@ -652,22 +652,22 @@
(|has| |#1| (-1014))
(((|#2|) . T))
((((-498)) |has| |#2| (-563 (-498))) (((-821 (-354))) |has| |#2| (-563 (-821 (-354)))) (((-821 (-522))) |has| |#2| (-563 (-821 (-522)))))
-(((|#4|) -3708 (|has| |#4| (-157)) (|has| |#4| (-338))))
-(((|#3|) -3708 (|has| |#3| (-157)) (|has| |#3| (-338))))
+(((|#4|) -3844 (|has| |#4| (-157)) (|has| |#4| (-338))))
+(((|#3|) -3844 (|has| |#3| (-157)) (|has| |#3| (-338))))
((((-792)) . T))
(((|#1|) . T))
-(-3708 (|has| |#2| (-426)) (|has| |#2| (-838)))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-838)))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-838)))
+(-3844 (|has| |#2| (-426)) (|has| |#2| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-838)))
((($ $) . T) ((#0=(-1085) $) |has| |#1| (-210)) ((#0# |#1|) |has| |#1| (-210)) ((#1=(-755 (-1085)) |#1|) . T) ((#1# $) . T))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-838)))
((((-522) |#2|) . T))
((((-792)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
-((($) -3708 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971))) ((|#3|) -3708 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-971))))
+((($) -3844 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971))) ((|#3|) -3844 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-971))))
((((-522) |#1|) . T))
(|has| (-382 |#2|) (-135))
(|has| (-382 |#2|) (-133))
@@ -680,21 +680,21 @@
(|has| |#1| (-514))
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-37 (-382 (-522))))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((((-792)) . T))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) . T))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) . T))
(|has| |#1| (-37 (-382 (-522))))
-((((-363) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) . T))
+((((-363) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) . T))
(|has| |#1| (-37 (-382 (-522))))
(|has| |#2| (-1061))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
(((|#1|) . T))
((((-363) (-1068)) . T))
(|has| |#1| (-514))
((((-112 |#1|)) . T))
((((-522) |#1|) . T))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
(((|#2|) . T))
((((-792)) . T))
((((-756 |#1|)) . T))
@@ -707,7 +707,7 @@
(((|#1|) |has| |#1| (-157)))
((((-792)) . T))
((((-498)) |has| |#1| (-563 (-498))))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(((|#2|) |has| |#2| (-285 |#2|)))
(((#0=(-522) #0#) . T) ((#1=(-382 (-522)) #1#) . T) (($ $) . T))
(((|#1|) . T))
@@ -717,7 +717,7 @@
(((#0=(-522) #0#) . T) ((#1=(-382 (-522)) #1#) . T) (($ $) . T))
((($) . T) (((-522)) . T) (((-382 (-522))) . T))
(|has| |#2| (-343))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(((|#1|) . T) (((-382 (-522))) . T) (($) . T))
(((|#1|) . T) (((-382 (-522))) . T) (($) . T))
(((|#1|) . T) (((-382 (-522))) . T) (($) . T))
@@ -728,9 +728,9 @@
((((-1083 |#1| |#2| |#3|) $) -12 (|has| (-1083 |#1| |#2| |#3|) (-262 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338))) (($ $) . T))
((((-792)) . T))
((((-792)) . T))
-((($) . T) (((-382 (-522))) -3708 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
+((($) . T) (((-382 (-522))) -3844 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
((((-498)) |has| |#1| (-563 (-498))))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
((($ $) . T))
((($ $) . T))
((((-792)) . T))
@@ -740,12 +740,12 @@
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((($) -3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
((((-382 (-522))) . T) (((-522)) . T))
((((-522) (-132)) . T))
((((-132)) . T))
(((|#1|) . T))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971)))
((((-108)) . T))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
((((-108)) . T))
@@ -753,38 +753,38 @@
((((-498)) |has| |#1| (-563 (-498))) (((-202)) . #0=(|has| |#1| (-947))) (((-354)) . #0#))
((((-792)) . T))
(|has| |#1| (-757))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
(|has| |#1| (-784))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-514)))
(|has| |#1| (-514))
(|has| |#1| (-838))
(((|#1|) . T))
(|has| |#1| (-1014))
((((-792)) . T))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-514)))
((((-792)) . T))
((((-792)) . T))
((((-792)) . T))
(((|#1| (-1166 |#1|) (-1166 |#1|)) . T))
((((-522) (-132)) . T))
((($) . T))
-(-3708 (|has| |#4| (-157)) (|has| |#4| (-782)) (|has| |#4| (-971)))
-(-3708 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
+(-3844 (|has| |#4| (-157)) (|has| |#4| (-782)) (|has| |#4| (-971)))
+(-3844 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
((((-792)) . T))
(|has| |#1| (-1014))
(((|#1| (-898)) . T))
(((|#1| |#1|) . T))
((($) . T))
-(-3708 (|has| |#2| (-730)) (|has| |#2| (-782)))
-(-3708 (|has| |#2| (-730)) (|has| |#2| (-782)))
+(-3844 (|has| |#2| (-730)) (|has| |#2| (-782)))
+(-3844 (|has| |#2| (-730)) (|has| |#2| (-782)))
(-12 (|has| |#1| (-447)) (|has| |#2| (-447)))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
-(-3708 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664))))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664))))
(((|#1|) . T))
(|has| |#2| (-730))
-(-3708 (|has| |#2| (-730)) (|has| |#2| (-782)))
+(-3844 (|has| |#2| (-730)) (|has| |#2| (-782)))
(((|#1| |#2|) . T))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(|has| |#2| (-782))
@@ -799,7 +799,7 @@
(((|#1|) . T))
(((|#1|) . T))
((((-382 (-522))) . T) (($) . T))
-((($) . T) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#1|) . T))
+((($) . T) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#1|) . T))
(|has| |#1| (-765))
((((-382 (-522))) |has| |#1| (-962 (-382 (-522)))) (((-522)) |has| |#1| (-962 (-522))) ((|#1|) . T))
(|has| |#1| (-1014))
@@ -810,8 +810,8 @@
(((|#3|) |has| |#3| (-1014)))
(|has| |#3| (-343))
(((|#1|) . T) (((-792)) . T))
-((((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)) ((|#1|) |has| |#1| (-157)))
-(((|#1|) |has| |#1| (-157)) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))))
+((((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)) ((|#1|) |has| |#1| (-157)))
+(((|#1|) |has| |#1| (-157)) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))))
((((-792)) . T))
((($) |has| |#1| (-514)) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#2|) . T))
@@ -821,30 +821,30 @@
(((|#1|) . T))
(((|#1|) |has| |#1| (-157)))
((((-382 (-522))) . T) (((-522)) . T))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))
((((-132)) . T))
(((|#1|) . T))
((((-132)) . T))
-((($) -3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971))) ((|#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))))
+((($) -3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971))) ((|#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))))
((((-132)) . T))
(((|#1| |#2| |#3|) . T))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971)))
(|has| $ (-135))
(|has| $ (-135))
(|has| |#1| (-1014))
((((-792)) . T))
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-37 (-382 (-522))))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-447)) (|has| |#1| (-514)) (|has| |#1| (-971)) (|has| |#1| (-1026)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-447)) (|has| |#1| (-514)) (|has| |#1| (-971)) (|has| |#1| (-1026)))
((($ $) |has| |#1| (-262 $ $)) ((|#1| $) |has| |#1| (-262 |#1| |#1|)))
(((|#1| (-382 (-522))) . T))
(((|#1|) . T))
((((-1085)) . T))
(|has| |#1| (-514))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
(|has| |#1| (-514))
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-37 (-382 (-522))))
@@ -855,7 +855,7 @@
(|has| |#1| (-135))
(|has| |#1| (-133))
(|has| |#4| (-782))
-(((|#2| (-217 (-3480 |#1|) (-708)) (-794 |#1|)) . T))
+(((|#2| (-217 (-3591 |#1|) (-708)) (-794 |#1|)) . T))
(|has| |#3| (-782))
(((|#1| (-494 |#3|) |#3|) . T))
(|has| |#1| (-135))
@@ -869,21 +869,21 @@
(|has| |#1| (-133))
((((-382 (-522))) |has| |#2| (-338)) (($) . T))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
-(-3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
-(-3708 (|has| |#1| (-324)) (|has| |#1| (-343)))
+(-3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#1| (-324)) (|has| |#1| (-343)))
((((-1052 |#2| |#1|)) . T) ((|#1|) . T))
(|has| |#2| (-157))
(((|#1| |#2|) . T))
(-12 (|has| |#2| (-210)) (|has| |#2| (-971)))
-(((|#2|) . T) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
-(-3708 (|has| |#3| (-730)) (|has| |#3| (-782)))
-(-3708 (|has| |#3| (-730)) (|has| |#3| (-782)))
+(((|#2|) . T) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
+(-3844 (|has| |#3| (-730)) (|has| |#3| (-782)))
+(-3844 (|has| |#3| (-730)) (|has| |#3| (-782)))
((((-792)) . T))
(((|#1|) . T))
(((|#2|) . T) (($) . T))
(((|#1|) . T) (($) . T))
((((-637)) . T))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
(|has| |#1| (-514))
(((|#1|) . T))
(((|#1|) . T))
@@ -905,10 +905,10 @@
(((|#1| (-382 (-522))) . T))
(((|#3|) . T) (((-561 $)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(((|#1|) . T))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((($ $) . T) ((|#2| $) . T))
(((|#1|) . T) (((-382 (-522))) . T) (($) . T))
(((#0=(-1083 |#1| |#2| |#3|) #0#) -12 (|has| (-1083 |#1| |#2| |#3|) (-285 (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338))) (((-1085) #0#) -12 (|has| (-1083 |#1| |#2| |#3|) (-483 (-1085) (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338))))
@@ -916,8 +916,8 @@
((((-792)) . T))
((((-792)) . T))
(((|#1| |#1|) . T))
-(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))))
-(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) |has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))))
+(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))))
+(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) |has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))))
((((-792)) . T))
(((|#1|) . T))
(((|#3| |#3|) . T))
@@ -928,10 +928,10 @@
((($ $) . T) ((#0=(-794 |#1|) $) . T) ((#0# |#2|) . T))
(|has| |#1| (-765))
(|has| |#1| (-1014))
-(((|#2| |#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))) (($ $) |has| |#2| (-157)))
-(((|#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-338))))
-((((-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T) ((|#1| |#2|) . T))
-(((|#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))) (($) |has| |#2| (-157)))
+(((|#2| |#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))) (($ $) |has| |#2| (-157)))
+(((|#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-338))))
+((((-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T) ((|#1| |#2|) . T))
+(((|#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))) (($) |has| |#2| (-157)))
((((-708)) . T))
((((-522)) . T))
(|has| |#1| (-514))
@@ -944,29 +944,29 @@
((((-112 |#1|)) . T))
(((|#1|) . T))
(|has| |#1| (-135))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-514)))
((((-821 (-522))) . T) (((-821 (-354))) . T) (((-498)) . T) (((-1085)) . T))
((((-792)) . T))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
((($) . T))
((((-792)) . T))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
(((|#2|) |has| |#2| (-157)))
-((($) -3708 (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))) ((|#2|) |has| |#2| (-157)) (((-382 (-522))) |has| |#2| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))) ((|#2|) |has| |#2| (-157)) (((-382 (-522))) |has| |#2| (-37 (-382 (-522)))))
((((-799 |#1|)) . T))
-(-3708 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014)))
+(-3844 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014)))
(-12 (|has| |#3| (-210)) (|has| |#3| (-971)))
(|has| |#2| (-1061))
-(((#0=(-51)) . T) (((-2 (|:| -2530 (-1085)) (|:| -3048 #0#))) . T))
+(((#0=(-51)) . T) (((-2 (|:| -2644 (-1085)) (|:| -3149 #0#))) . T))
(((|#1| |#2|) . T))
-(-3708 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
+(-3844 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
(((|#1| (-522) (-999)) . T))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1| (-382 (-522)) (-999)) . T))
-((($) -3708 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)) (|has| |#1| (-514))) (((-382 (-522))) -3708 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
+((($) -3844 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)) (|has| |#1| (-514))) (((-382 (-522))) -3844 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
((((-522) |#2|) . T))
(((|#1| |#2|) . T))
(((|#1| |#2|) . T))
@@ -974,37 +974,37 @@
(-12 (|has| |#1| (-343)) (|has| |#2| (-343)))
((((-792)) . T))
((((-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)) ((|#1| |#1|) |has| |#1| (-285 |#1|)))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))
(((|#1|) . T))
((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) |has| |#1| (-157)) (($) |has| |#1| (-514)))
-((((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)) ((|#1|) |has| |#1| (-157)))
-(((|#1|) |has| |#1| (-157)) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))))
+((((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)) ((|#1|) |has| |#1| (-157)))
+(((|#1|) |has| |#1| (-157)) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))))
((($) |has| |#1| (-514)) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
((((-792)) . T))
(|has| |#1| (-324))
(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((#0=(-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) #0#) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((#0=(-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) #0#) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))))
(|has| |#1| (-514))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
((((-792)) . T))
(((|#1| |#2|) . T))
-(-3708 (|has| |#2| (-426)) (|has| |#2| (-838)))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-838)))
+(-3844 (|has| |#2| (-426)) (|has| |#2| (-838)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-838)))
((((-382 (-522))) . T) (((-522)) . T))
((((-522)) . T))
-((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
((($) . T))
((((-792)) . T))
(((|#1|) . T))
((((-799 |#1|)) . T) (($) . T) (((-382 (-522))) . T))
((((-792)) . T))
-(((|#3| |#3|) -3708 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-971))) (($ $) |has| |#3| (-157)))
+(((|#3| |#3|) -3844 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-971))) (($ $) |has| |#3| (-157)))
(|has| |#1| (-947))
((((-792)) . T))
-(((|#3|) -3708 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-971))) (($) |has| |#3| (-157)))
+(((|#3|) -3844 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-971))) (($) |has| |#3| (-157)))
((((-522) (-108)) . T))
(((|#1|) |has| |#1| (-285 |#1|)))
(|has| |#1| (-343))
@@ -1012,31 +1012,31 @@
(|has| |#1| (-343))
((((-1085) $) |has| |#1| (-483 (-1085) $)) (($ $) |has| |#1| (-285 $)) ((|#1| |#1|) |has| |#1| (-285 |#1|)) (((-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)))
((((-1085)) |has| |#1| (-829 (-1085))))
-(-3708 (-12 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))
+(-3844 (-12 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))
((((-363) (-1032)) . T))
(((|#1| |#4|) . T))
(((|#1| |#3|) . T))
((((-363) |#1|) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-324)))
(|has| |#1| (-1014))
((((-792)) . T))
((((-792)) . T))
((((-839 |#1|)) . T))
-((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
-((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) |has| |#1| (-157)) (($) -3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
+((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) |has| |#1| (-157)) (($) -3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
(((|#1| |#2|) . T))
((($) . T))
(((|#1| |#1|) . T))
(((#0=(-799 |#1|)) |has| #0# (-285 #0#)))
(((|#1| |#2|) . T))
-(-3708 (|has| |#2| (-730)) (|has| |#2| (-782)))
-(-3708 (|has| |#2| (-730)) (|has| |#2| (-782)))
+(-3844 (|has| |#2| (-730)) (|has| |#2| (-782)))
+(-3844 (|has| |#2| (-730)) (|has| |#2| (-782)))
(-12 (|has| |#1| (-730)) (|has| |#2| (-730)))
(((|#1|) . T))
(-12 (|has| |#1| (-730)) (|has| |#2| (-730)))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
(((|#2|) . T) (($) . T))
-(((|#2|) . T) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(|has| |#1| (-1106))
(((#0=(-522) #0#) . T) ((#1=(-382 (-522)) #1#) . T) (($ $) . T))
((((-382 (-522))) . T) (($) . T))
@@ -1047,8 +1047,8 @@
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-382 (-522)) #0#) . T))
(|has| |#1| (-338))
((((-522)) . T) (((-382 (-522))) . T) (($) . T))
-((($ $) . T) ((#0=(-382 (-522)) #0#) -3708 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1| |#1|) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((($ $) . T) ((#0=(-382 (-522)) #0#) -3844 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1| |#1|) . T))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
(((|#1|) . T) (($) . T) (((-382 (-522))) . T))
((((-792)) . T))
((((-792)) . T))
@@ -1063,14 +1063,14 @@
(((|#1| |#2|) . T))
(|has| |#1| (-782))
(|has| |#1| (-782))
-((($) . T) (((-382 (-522))) -3708 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-514)))
-(((#0=(-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) #0#) |has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))))
+((($) . T) (((-382 (-522))) -3844 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-514)))
+(((#0=(-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) #0#) |has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))))
((($) . T))
(|has| |#2| (-784))
((($) . T))
(((|#2|) |has| |#2| (-1014)))
-((((-792)) -3708 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-562 (-792))) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014))) (((-1166 |#2|)) . T))
+((((-792)) -3844 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-562 (-792))) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014))) (((-1166 |#2|)) . T))
(|has| |#1| (-784))
(|has| |#1| (-784))
((((-1068) (-51)) . T))
@@ -1078,10 +1078,10 @@
((((-792)) . T))
((((-522)) |has| #0=(-382 |#2|) (-584 (-522))) ((#0#) . T))
((((-522) (-132)) . T))
-((((-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T) ((|#1| |#2|) . T))
+((((-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T) ((|#1| |#2|) . T))
((((-382 (-522))) . T) (($) . T))
(((|#1|) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((((-792)) . T))
((((-839 |#1|)) . T))
(|has| |#1| (-338))
@@ -1106,31 +1106,31 @@
((($) . T))
(((|#2|) . T) (($) . T))
(((|#1|) |has| |#1| (-157)))
-((((-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T) ((|#1| |#2|) . T))
+((((-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T) ((|#1| |#2|) . T))
(((|#1|) . T))
((($) |has| |#1| (-514)) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#3|) . T))
(((|#1|) |has| |#1| (-157)))
-((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) |has| |#1| (-157)) (($) -3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
-((($) -3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) |has| |#1| (-157)) (($) -3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))))
+((($) -3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#1|) . T))
(((|#1|) . T))
((((-498)) |has| |#1| (-563 (-498))) (((-821 (-354))) |has| |#1| (-563 (-821 (-354)))) (((-821 (-522))) |has| |#1| (-563 (-821 (-522)))))
((((-792)) . T))
-(((|#2|) . T) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(|has| |#2| (-782))
(-12 (|has| |#2| (-210)) (|has| |#2| (-971)))
(|has| |#1| (-514))
(|has| |#1| (-1061))
((((-1068) |#1|) . T))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
-(((#0=(-382 (-522)) #0#) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((|#1| |#1|) . T))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(((#0=(-382 (-522)) #0#) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((|#1| |#1|) . T))
((((-382 (-522))) |has| |#1| (-962 (-522))) (((-522)) |has| |#1| (-962 (-522))) (((-1085)) |has| |#1| (-962 (-1085))) ((|#1|) . T))
((((-522) |#2|) . T))
((((-382 (-522))) |has| |#1| (-962 (-382 (-522)))) (((-522)) |has| |#1| (-962 (-522))) ((|#1|) . T))
((((-522)) |has| |#1| (-815 (-522))) (((-354)) |has| |#1| (-815 (-354))))
-((((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((|#1|) . T))
+((((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((|#1|) . T))
(((|#1|) . T))
((((-588 |#4|)) . T) (((-792)) . T))
((((-498)) |has| |#4| (-563 (-498))))
@@ -1143,17 +1143,17 @@
(((|#1|) . T))
(((|#2|) . T))
((((-1085)) |has| (-382 |#2|) (-829 (-1085))))
-(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((#0=(-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) #0#) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((#0=(-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) #0#) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))))
((($) . T))
((($) . T))
(((|#2|) . T))
-((((-792)) -3708 (|has| |#3| (-25)) (|has| |#3| (-124)) (|has| |#3| (-562 (-792))) (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-343)) (|has| |#3| (-730)) (|has| |#3| (-782)) (|has| |#3| (-971)) (|has| |#3| (-1014))) (((-1166 |#3|)) . T))
+((((-792)) -3844 (|has| |#3| (-25)) (|has| |#3| (-124)) (|has| |#3| (-562 (-792))) (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-343)) (|has| |#3| (-730)) (|has| |#3| (-782)) (|has| |#3| (-971)) (|has| |#3| (-1014))) (((-1166 |#3|)) . T))
((((-522) |#2|) . T))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
-(((|#2| |#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))) (($ $) |has| |#2| (-157)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(((|#2| |#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))) (($ $) |has| |#2| (-157)))
((((-792)) . T))
((((-792)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T) ((|#2|) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T) ((|#2|) . T))
((((-792)) . T))
((((-792)) . T))
((((-1068) (-1085) (-522) (-202) (-792)) . T))
@@ -1188,8 +1188,8 @@
(|has| |#1| (-37 (-382 (-522))))
((((-792)) . T))
((((-498)) |has| |#1| (-563 (-498))))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
-(((|#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))) (($) |has| |#2| (-157)))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+(((|#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-971))) (($) |has| |#2| (-157)))
(|has| $ (-135))
((((-382 |#2|)) . T))
((((-382 (-522))) |has| #0=(-382 |#2|) (-962 (-382 (-522)))) (((-522)) |has| #0# (-962 (-522))) ((#0#) . T))
@@ -1200,11 +1200,11 @@
(((|#3|) |has| |#3| (-157)))
(|has| |#1| (-135))
(|has| |#1| (-133))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))
(|has| |#1| (-135))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))
(|has| |#1| (-135))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))
(|has| |#1| (-135))
(((|#1|) . T))
(((|#2|) . T))
@@ -1235,7 +1235,7 @@
((((-925 |#1|)) . T) ((|#1|) . T))
((((-792)) . T))
((((-792)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((((-382 (-522))) . T) (((-382 |#1|)) . T) ((|#1|) . T) (($) . T))
(((|#1| (-1081 |#1|)) . T))
((((-522)) . T) (($) . T) (((-382 (-522))) . T))
@@ -1243,9 +1243,9 @@
(|has| |#1| (-784))
(((|#2|) . T))
((((-522)) . T) (($) . T) (((-382 (-522))) . T))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) . T))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) . T))
((((-522) |#2|) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
(((|#2|) . T))
((((-522) |#3|) . T))
(((|#2|) . T))
@@ -1260,7 +1260,7 @@
(((|#3|) -12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))))
(((|#2|) . T))
(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((#0=(-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) #0#) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((#0=(-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) #0#) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))))
(((|#2| |#2|) . T))
(|has| |#2| (-338))
(((|#2|) . T) (((-522)) |has| |#2| (-962 (-522))) (((-382 (-522))) |has| |#2| (-962 (-382 (-522)))))
@@ -1290,19 +1290,19 @@
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1| |#2|) . T))
((((-522) (-132)) . T))
-(((#0=(-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) #0#) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))
-((($) -3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+(((#0=(-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) #0#) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))
+((($) -3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(|has| |#1| (-784))
(((|#2| (-708) (-999)) . T))
(((|#1| |#2|) . T))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-514)))
(|has| |#1| (-728))
(((|#1|) |has| |#1| (-157)))
(((|#4|) . T))
(((|#4|) . T))
(((|#1| |#2|) . T))
-(-3708 (|has| |#1| (-135)) (-12 (|has| |#1| (-338)) (|has| |#2| (-135))))
-(-3708 (|has| |#1| (-133)) (-12 (|has| |#1| (-338)) (|has| |#2| (-133))))
+(-3844 (|has| |#1| (-135)) (-12 (|has| |#1| (-338)) (|has| |#2| (-135))))
+(-3844 (|has| |#1| (-133)) (-12 (|has| |#1| (-338)) (|has| |#2| (-133))))
(((|#4|) . T))
(|has| |#1| (-133))
((((-1068) |#1|) . T))
@@ -1315,10 +1315,10 @@
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#3|) . T))
((((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(((|#1|) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))) (((-886 |#1|)) . T))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))) (((-886 |#1|)) . T))
(|has| |#1| (-782))
(|has| |#1| (-782))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
@@ -1331,8 +1331,8 @@
((($) . T))
((((-363) (-1068)) . T))
((($) |has| |#1| (-514)) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
-((((-792)) -3708 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-562 (-792))) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014))) (((-1166 |#2|)) . T))
-(((#0=(-51)) . T) (((-2 (|:| -2530 (-1068)) (|:| -3048 #0#))) . T))
+((((-792)) -3844 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-562 (-792))) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014))) (((-1166 |#2|)) . T))
+(((#0=(-51)) . T) (((-2 (|:| -2644 (-1068)) (|:| -3149 #0#))) . T))
(((|#1|) . T))
((((-792)) . T))
(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))
@@ -1340,7 +1340,7 @@
(|has| |#2| (-133))
(|has| |#2| (-135))
(|has| |#1| (-447))
-(-3708 (|has| |#1| (-447)) (|has| |#1| (-664)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
+(-3844 (|has| |#1| (-447)) (|has| |#1| (-664)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
(|has| |#1| (-338))
((((-792)) . T))
(|has| |#1| (-37 (-382 (-522))))
@@ -1349,8 +1349,8 @@
(|has| |#1| (-782))
(|has| |#1| (-782))
((((-792)) . T))
-((((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)) ((|#1|) |has| |#1| (-157)))
-(((|#1|) |has| |#1| (-157)) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))))
+((((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)) ((|#1|) |has| |#1| (-157)))
+(((|#1|) |has| |#1| (-157)) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))))
((($) |has| |#1| (-514)) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#1| |#2|) . T))
((((-1085)) |has| |#1| (-829 (-1085))))
@@ -1358,7 +1358,7 @@
((((-792)) . T))
((((-792)) . T))
(|has| |#1| (-1014))
-(((|#2| (-455 (-3480 |#1|) (-708)) (-794 |#1|)) . T))
+(((|#2| (-455 (-3591 |#1|) (-708)) (-794 |#1|)) . T))
((((-382 (-522))) . #0=(|has| |#2| (-338))) (($) . #0#))
(((|#1| (-494 (-1085)) (-1085)) . T))
(((|#1|) . T))
@@ -1378,16 +1378,16 @@
(|has| |#1| (-135))
(((|#1|) . T))
(((|#2|) . T))
-(((|#1|) . T) (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
-((((-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) . T))
+(((|#1|) . T) (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
+((((-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) . T))
((((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((((-1085) (-51)) . T))
((($ $) . T))
(((|#1| (-522)) . T))
((((-839 |#1|)) . T))
-(((|#1|) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-971))) (($) -3708 (|has| |#1| (-829 (-1085))) (|has| |#1| (-971))))
+(((|#1|) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-971))) (($) -3844 (|has| |#1| (-829 (-1085))) (|has| |#1| (-971))))
(((|#1|) . T) (((-522)) |has| |#1| (-962 (-522))) (((-382 (-522))) |has| |#1| (-962 (-382 (-522)))))
(|has| |#1| (-784))
(|has| |#1| (-784))
@@ -1402,13 +1402,13 @@
(((|#4| |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))
(((|#1|) |has| |#1| (-157)))
(((|#4| |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))
-(((|#3|) -3708 (|has| |#3| (-157)) (|has| |#3| (-338))))
+(((|#3|) -3844 (|has| |#3| (-157)) (|has| |#3| (-338))))
(|has| |#2| (-784))
(|has| |#1| (-784))
-(-3708 (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-838)))
+(-3844 (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-838)))
((($ $) . T) ((#0=(-382 (-522)) #0#) . T))
((((-522) |#2|) . T))
-(((|#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-338))))
+(((|#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-338))))
(|has| |#1| (-324))
(((|#3| |#3|) -12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))))
((($) . T) (((-382 (-522))) . T))
@@ -1416,7 +1416,7 @@
(|has| |#1| (-757))
(|has| |#1| (-757))
(((|#1|) . T))
-(-3708 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)))
(|has| |#1| (-782))
(|has| |#1| (-782))
(|has| |#1| (-782))
@@ -1425,13 +1425,13 @@
((((-522)) . T) (($) . T) (((-382 (-522))) . T))
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-37 (-382 (-522))))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-324)))
(|has| |#1| (-37 (-382 (-522))))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((((-1085)) |has| |#1| (-829 (-1085))) (((-999)) . T))
(((|#1|) . T))
(|has| |#1| (-782))
-(((#0=(-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) #0#) |has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))))))
+(((#0=(-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) #0#) |has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))))))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(|has| |#1| (-1014))
(((|#1|) . T))
@@ -1449,7 +1449,7 @@
(((|#1|) . T))
((((-132)) . T))
(((|#2|) |has| |#2| (-157)))
-(-3708 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014)))
+(-3844 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014)))
(((|#1|) . T))
(|has| |#1| (-133))
(|has| |#1| (-135))
@@ -1471,32 +1471,32 @@
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1|) . T))
(((|#1| |#2|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((#0=(-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) #0#) |has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))))
-(-3708 (|has| |#2| (-426)) (|has| |#2| (-838)))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-838)))
+(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((#0=(-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) #0#) |has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))))
+(-3844 (|has| |#2| (-426)) (|has| |#2| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-838)))
(((|#1|) . T) (($) . T))
(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))
(((|#1| |#2|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-(((|#3|) -3708 (|has| |#3| (-157)) (|has| |#3| (-338))))
+(((|#3|) -3844 (|has| |#3| (-157)) (|has| |#3| (-338))))
(|has| |#1| (-784))
(|has| |#1| (-514))
((((-535 |#1|)) . T))
((($) . T))
(((|#2|) . T))
-(-3708 (-12 (|has| |#1| (-338)) (|has| |#2| (-757))) (-12 (|has| |#1| (-338)) (|has| |#2| (-784))))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (-12 (|has| |#1| (-338)) (|has| |#2| (-757))) (-12 (|has| |#1| (-338)) (|has| |#2| (-784))))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
((((-839 |#1|)) . T))
(((|#1| (-466 |#1| |#3|) (-466 |#1| |#2|)) . T))
(((|#1| |#4| |#5|) . T))
(((|#1| (-708)) . T))
((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) |has| |#1| (-157)) (($) |has| |#1| (-514)))
-((((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)) ((|#1|) |has| |#1| (-157)))
-(((|#1|) |has| |#1| (-157)) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))))
+((((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)) ((|#1|) |has| |#1| (-157)))
+(((|#1|) |has| |#1| (-157)) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))))
((($) |has| |#1| (-514)) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
-((((-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) . T))
+((((-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) . T))
((((-382 |#2|)) . T) (((-382 (-522))) . T) (($) . T))
((((-613 |#1|)) . T))
(((|#1| |#2| |#3| |#4|) . T))
@@ -1504,17 +1504,17 @@
((((-792)) . T))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
((((-792)) . T))
-((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
((((-792)) . T))
((((-792)) . T))
((((-792)) . T))
(((|#2|) . T))
-(-3708 (|has| |#3| (-25)) (|has| |#3| (-124)) (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-343)) (|has| |#3| (-730)) (|has| |#3| (-782)) (|has| |#3| (-971)) (|has| |#3| (-1014)))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#3| (-25)) (|has| |#3| (-124)) (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-343)) (|has| |#3| (-730)) (|has| |#3| (-782)) (|has| |#3| (-971)) (|has| |#3| (-1014)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
((((-382 (-522))) |has| |#1| (-962 (-382 (-522)))) (((-522)) |has| |#1| (-962 (-522))) ((|#1|) . T))
(|has| |#1| (-1106))
(|has| |#1| (-1106))
-(-3708 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014)))
+(-3844 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014)))
(|has| |#1| (-1106))
(|has| |#1| (-1106))
(((|#3| |#3|) . T))
@@ -1527,43 +1527,43 @@
(((|#1|) . T) (((-382 (-522))) . T) (($) . T))
((((-1068) (-51)) . T))
(|has| |#1| (-1014))
-(-3708 (|has| |#2| (-757)) (|has| |#2| (-784)))
+(-3844 (|has| |#2| (-757)) (|has| |#2| (-784)))
(((|#1|) . T))
-((($) -3708 (|has| |#1| (-338)) (|has| |#1| (-324))) (((-382 (-522))) -3708 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
+((($) -3844 (|has| |#1| (-338)) (|has| |#1| (-324))) (((-382 (-522))) -3844 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
(((|#1|) |has| |#1| (-157)) (($) . T))
((($) . T))
((((-1083 |#1| |#2| |#3|)) -12 (|has| (-1083 |#1| |#2| |#3|) (-285 (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338))))
((((-792)) . T))
-(-3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
((($) . T))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
((((-792)) . T))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-838)))
(|has| |#2| (-838))
(|has| |#1| (-338))
(((|#2|) |has| |#2| (-1014)))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
((($) . T) ((|#2|) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-838)))
(|has| |#1| (-838))
(|has| |#1| (-838))
((((-498)) . T) (((-382 (-1081 (-522)))) . T) (((-202)) . T) (((-354)) . T))
((((-354)) . T) (((-202)) . T) (((-792)) . T))
(|has| |#1| (-838))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(((|#1|) . T))
(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))
((($ $) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((($ $) . T))
((((-522) (-108)) . T))
((($) . T))
(((|#1|) . T))
((((-522)) . T))
((((-108)) . T))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514)))
(|has| |#1| (-37 (-382 (-522))))
(((|#1| (-522)) . T))
((($) . T))
@@ -1585,7 +1585,7 @@
(((|#1| (-1130 |#1| |#2| |#3|)) . T))
(((|#1| (-708)) . T))
(((|#1|) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((((-792)) . T))
(|has| |#1| (-1014))
((((-1068) |#1|) . T))
@@ -1605,18 +1605,18 @@
(((|#1|) . T))
((((-522)) . T))
((((-792)) . T))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-324)))
((((-792)) . T))
(|has| |#1| (-135))
(((|#3|) . T))
-(-3708 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
+(-3844 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
((((-792)) . T))
((((-1151 |#2| |#3| |#4|)) . T) (((-1152 |#1| |#2| |#3| |#4|)) . T))
((((-792)) . T))
-((((-47)) -12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522)))) (((-561 $)) . T) ((|#1|) . T) (((-522)) |has| |#1| (-962 (-522))) (((-382 (-522))) -3708 (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522)))) (|has| |#1| (-962 (-382 (-522))))) (((-382 (-881 |#1|))) |has| |#1| (-514)) (((-881 |#1|)) |has| |#1| (-971)) (((-1085)) . T))
+((((-47)) -12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522)))) (((-561 $)) . T) ((|#1|) . T) (((-522)) |has| |#1| (-962 (-522))) (((-382 (-522))) -3844 (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522)))) (|has| |#1| (-962 (-382 (-522))))) (((-382 (-881 |#1|))) |has| |#1| (-514)) (((-881 |#1|)) |has| |#1| (-971)) (((-1085)) . T))
(((|#1|) . T) (($) . T))
(((|#1| (-708)) . T))
-((($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#1|) |has| |#1| (-157)))
+((($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#1|) |has| |#1| (-157)))
(((|#1|) |has| |#1| (-285 |#1|)))
((((-1152 |#1| |#2| |#3| |#4|)) . T))
((((-522)) |has| |#1| (-815 (-522))) (((-354)) |has| |#1| (-815 (-354))))
@@ -1624,14 +1624,14 @@
(|has| |#1| (-514))
(((|#1|) . T))
((((-792)) . T))
-(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))))
(((|#1|) |has| |#1| (-157)))
((($) |has| |#1| (-514)) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))
(((|#1|) . T))
(((|#3|) |has| |#3| (-1014)))
-(((|#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-338))))
+(((|#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-338))))
((((-1151 |#2| |#3| |#4|)) . T))
((((-108)) . T))
(|has| |#1| (-757))
@@ -1641,8 +1641,8 @@
(|has| |#1| (-782))
(|has| |#1| (-782))
(((|#1| (-522) (-999)) . T))
-(-3708 (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+(-3844 (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(((|#1| (-382 (-522)) (-999)) . T))
(((|#1| (-708) (-999)) . T))
(|has| |#1| (-784))
@@ -1658,28 +1658,28 @@
(((|#1|) . T))
(|has| |#1| (-1014))
((((-522)) -12 (|has| |#1| (-338)) (|has| |#2| (-584 (-522)))) ((|#2|) |has| |#1| (-338)))
-(-3708 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014)))
+(-3844 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014)))
(((|#2|) |has| |#2| (-157)))
(((|#1|) |has| |#1| (-157)))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) . T))
((((-792)) . T))
(|has| |#3| (-782))
((((-792)) . T))
((((-1151 |#2| |#3| |#4|) (-294 |#2| |#3| |#4|)) . T))
((((-792)) . T))
-(((|#1| |#1|) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-971))))
+(((|#1| |#1|) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-971))))
(((|#1|) . T))
((((-522)) . T))
((((-522)) . T))
-(((|#1|) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-971))))
+(((|#1|) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-971))))
(((|#2|) |has| |#2| (-338)))
((($) . T) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-338)))
(|has| |#1| (-784))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(((|#2|) . T))
-((((-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) |has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-838)))
+((((-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) |has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-838)))
(((|#2|) . T) (((-522)) |has| |#2| (-584 (-522))))
((((-792)) . T))
((((-792)) . T))
@@ -1713,18 +1713,18 @@
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-37 (-382 (-522))))
(((|#1|) . T))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
(((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) . T) (($ $) . T))
((((-792)) . T))
(((|#1|) . T) (((-382 (-522))) . T) (($) . T))
((($) . T) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
(|has| |#1| (-338))
(|has| |#1| (-338))
(|has| (-382 |#2|) (-210))
(|has| |#1| (-838))
(((|#2|) |has| |#2| (-971)))
-(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))))
(|has| |#1| (-338))
(((|#1|) |has| |#1| (-157)))
(((|#1| |#1|) . T))
@@ -1749,7 +1749,7 @@
(((|#1| (-382 (-522)) (-999)) . T))
(((|#1| (-708) (-999)) . T))
(((#0=(-382 |#2|) #0#) . T) ((#1=(-382 (-522)) #1#) . T) (($ $) . T))
-(((|#1|) . T) (((-522)) -3708 (|has| (-382 (-522)) (-962 (-522))) (|has| |#1| (-962 (-522)))) (((-382 (-522))) . T))
+(((|#1|) . T) (((-522)) -3844 (|has| (-382 (-522)) (-962 (-522))) (|has| |#1| (-962 (-522)))) (((-382 (-522))) . T))
(((|#1| (-553 |#1| |#3|) (-553 |#1| |#2|)) . T))
(((|#1|) |has| |#1| (-157)))
(((|#1|) . T))
@@ -1768,24 +1768,24 @@
((((-637)) . T))
(((|#2|) |has| |#2| (-157)))
(|has| |#2| (-782))
-((((-108)) |has| |#1| (-1014)) (((-792)) -3708 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-447)) (|has| |#1| (-664)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)) (|has| |#1| (-1026)) (|has| |#1| (-1014))))
+((((-108)) |has| |#1| (-1014)) (((-792)) -3844 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-447)) (|has| |#1| (-664)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)) (|has| |#1| (-1026)) (|has| |#1| (-1014))))
(((|#1|) . T) (($) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) . T))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) . T))
((((-792)) . T))
((((-522) |#1|) . T))
((((-637)) . T) (((-382 (-522))) . T) (((-522)) . T))
(((|#1| |#1|) |has| |#1| (-157)))
(((|#2|) . T))
-(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))))
((((-354)) . T))
((((-637)) . T))
((((-382 (-522))) . #0=(|has| |#2| (-338))) (($) . #0#))
(((|#1|) |has| |#1| (-157)))
((((-382 (-881 |#1|))) . T))
(((|#2| |#2|) . T))
-(-3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
(((|#2|) . T))
(|has| |#2| (-784))
(((|#3|) |has| |#3| (-971)))
@@ -1795,14 +1795,14 @@
(|has| |#1| (-784))
((((-1085)) |has| |#2| (-829 (-1085))))
((((-792)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((((-382 (-522))) . T) (($) . T))
(|has| |#1| (-447))
(|has| |#1| (-343))
(|has| |#1| (-343))
(|has| |#1| (-343))
(|has| |#1| (-338))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-447)) (|has| |#1| (-514)) (|has| |#1| (-971)) (|has| |#1| (-1026)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-447)) (|has| |#1| (-514)) (|has| |#1| (-971)) (|has| |#1| (-1026)))
(|has| |#1| (-37 (-382 (-522))))
((((-112 |#1|)) . T))
((((-112 |#1|)) . T))
@@ -1823,11 +1823,11 @@
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-784))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) . T))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) . T))
(((|#1| |#2|) . T))
(|has| |#1| (-135))
(|has| |#1| (-133))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) ((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) ((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))
(((|#2|) . T))
(((|#3|) . T))
((((-112 |#1|)) . T))
@@ -1845,11 +1845,11 @@
((((-498)) |has| |#1| (-563 (-498))) (((-821 (-522))) |has| |#1| (-563 (-821 (-522)))) (((-821 (-354))) |has| |#1| (-563 (-821 (-354)))) (((-354)) . #0=(|has| |#1| (-947))) (((-202)) . #0#))
(((|#1|) |has| |#1| (-338)))
((((-792)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((($ $) . T) (((-561 $) $) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
((($) . T) (((-1152 |#1| |#2| |#3| |#4|)) . T) (((-382 (-522))) . T))
-((($) -3708 (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-514)))
+((($) -3844 (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-514)))
(|has| |#1| (-338))
(|has| |#1| (-338))
(|has| |#1| (-338))
@@ -1860,11 +1860,11 @@
((((-354)) . T))
(((|#3|) -12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))))
((((-792)) . T))
-(-3708 (|has| |#2| (-426)) (|has| |#2| (-838)))
+(-3844 (|has| |#2| (-426)) (|has| |#2| (-838)))
(((|#1|) . T))
(|has| |#1| (-784))
(|has| |#1| (-784))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
((((-498)) |has| |#1| (-563 (-498))))
(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))
(|has| |#1| (-1014))
@@ -1873,13 +1873,13 @@
(|has| |#1| (-133))
(|has| |#1| (-135))
((((-522)) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
(((#0=(-1151 |#2| |#3| |#4|)) . T) (((-382 (-522))) |has| #0# (-37 (-382 (-522)))) (($) . T))
((((-522)) . T))
(|has| |#1| (-338))
-(-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-135)) (|has| |#1| (-338))) (|has| |#1| (-135)))
-(-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-133)) (|has| |#1| (-338))) (|has| |#1| (-133)))
+(-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-135)) (|has| |#1| (-338))) (|has| |#1| (-135)))
+(-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-133)) (|has| |#1| (-338))) (|has| |#1| (-133)))
(|has| |#1| (-338))
(|has| |#1| (-133))
(|has| |#1| (-135))
@@ -1896,18 +1896,18 @@
(((|#1| |#2|) . T))
(((|#1|) . T) (((-522)) |has| |#1| (-584 (-522))))
(((|#3|) |has| |#3| (-157)))
-(-3708 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014)))
+(-3844 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014)))
((((-522)) . T))
(((|#1| $) |has| |#1| (-262 |#1| |#1|)))
((((-382 (-522))) . T) (($) . T) (((-382 |#1|)) . T) ((|#1|) . T))
((((-792)) . T))
(((|#3|) . T))
-(((|#1| |#1|) . T) (($ $) -3708 (|has| |#1| (-266)) (|has| |#1| (-338))) ((#0=(-382 (-522)) #0#) |has| |#1| (-338)))
-((((-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) . T))
+(((|#1| |#1|) . T) (($ $) -3844 (|has| |#1| (-266)) (|has| |#1| (-338))) ((#0=(-382 (-522)) #0#) |has| |#1| (-338)))
+((((-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) . T))
((($) . T))
((((-522) |#1|) . T))
((((-1085)) |has| (-382 |#2|) (-829 (-1085))))
-(((|#1|) . T) (($) -3708 (|has| |#1| (-266)) (|has| |#1| (-338))) (((-382 (-522))) |has| |#1| (-338)))
+(((|#1|) . T) (($) -3844 (|has| |#1| (-266)) (|has| |#1| (-338))) (((-382 (-522))) |has| |#1| (-338)))
((((-498)) |has| |#2| (-563 (-498))))
((((-628 |#2|)) . T) (((-792)) . T))
(((|#1|) . T))
@@ -1915,8 +1915,8 @@
(((|#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))
((((-799 |#1|)) . T))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
-(-3708 (|has| |#4| (-730)) (|has| |#4| (-782)))
-(-3708 (|has| |#3| (-730)) (|has| |#3| (-782)))
+(-3844 (|has| |#4| (-730)) (|has| |#4| (-782)))
+(-3844 (|has| |#3| (-730)) (|has| |#3| (-782)))
((((-792)) . T))
((((-792)) . T))
(((|#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))
@@ -1932,17 +1932,17 @@
((((-382 (-522))) . T) (($) . T))
((((-382 (-522))) . T) (($) . T))
((((-382 (-522))) . T) (($) . T))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-1124)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-1124)))
((($) . T))
((((-382 (-522))) |has| #0=(-382 |#2|) (-962 (-382 (-522)))) (((-522)) |has| #0# (-962 (-522))) ((#0#) . T))
(((|#2|) . T) (((-522)) |has| |#2| (-584 (-522))))
(((|#1| (-708)) . T))
(|has| |#1| (-784))
(((|#1|) . T) (((-522)) |has| |#1| (-584 (-522))))
-((($) -3708 (|has| |#1| (-338)) (|has| |#1| (-324))) (((-382 (-522))) -3708 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
+((($) -3844 (|has| |#1| (-338)) (|has| |#1| (-324))) (((-382 (-522))) -3844 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
((((-522)) . T))
(|has| |#1| (-37 (-382 (-522))))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) |has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))))))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) |has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))))))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(|has| |#1| (-782))
(|has| |#1| (-37 (-382 (-522))))
@@ -1967,24 +1967,24 @@
(((|#1| |#2|) . T))
((((-132)) . T))
((((-717 |#1| (-794 |#2|))) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
(|has| |#1| (-1106))
(((|#1|) . T))
-(-3708 (|has| |#3| (-25)) (|has| |#3| (-124)) (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-343)) (|has| |#3| (-730)) (|has| |#3| (-782)) (|has| |#3| (-971)) (|has| |#3| (-1014)))
+(-3844 (|has| |#3| (-25)) (|has| |#3| (-124)) (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-343)) (|has| |#3| (-730)) (|has| |#3| (-782)) (|has| |#3| (-971)) (|has| |#3| (-1014)))
((((-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)))
(((|#2|) . T))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
((((-839 |#1|)) . T))
((($) . T))
((((-382 (-881 |#1|))) . T))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
((((-498)) |has| |#4| (-563 (-498))))
((((-792)) . T) (((-588 |#4|)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(((|#1|) . T))
(|has| |#1| (-782))
-(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) |has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))))
+(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) |has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))))
(|has| |#1| (-1014))
(|has| |#1| (-338))
(|has| |#1| (-784))
@@ -1992,16 +1992,16 @@
(((|#1|) . T))
(((|#1|) . T))
((($) . T) (((-382 (-522))) . T))
-((($) -3708 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#1|) |has| |#1| (-157)))
+((($) -3844 (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#1|) |has| |#1| (-157)))
(|has| |#1| (-133))
(|has| |#1| (-135))
-(-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-135)) (|has| |#1| (-338))) (|has| |#1| (-135)))
-(-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-133)) (|has| |#1| (-338))) (|has| |#1| (-133)))
+(-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-135)) (|has| |#1| (-338))) (|has| |#1| (-135)))
+(-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-133)) (|has| |#1| (-338))) (|has| |#1| (-133)))
(|has| |#1| (-133))
(|has| |#1| (-135))
(|has| |#1| (-135))
(|has| |#1| (-133))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
((((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)))
(|has| |#1| (-782))
(((|#1| |#2|) . T))
@@ -2024,9 +2024,9 @@
((((-792)) . T))
((((-792)) . T))
((((-498)) |has| |#1| (-563 (-498))))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((((-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)) ((|#1| |#1|) |has| |#1| (-285 |#1|)))
-(((|#1|) -3708 (|has| |#1| (-157)) (|has| |#1| (-338))))
+(((|#1|) -3844 (|has| |#1| (-157)) (|has| |#1| (-338))))
((((-291 |#1|)) . T))
(((|#2|) |has| |#2| (-338)))
(((|#2|) . T))
@@ -2047,14 +2047,14 @@
(|has| |#1| (-133))
(|has| |#1| (-135))
((($ $) . T))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-447)) (|has| |#1| (-664)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)) (|has| |#1| (-1026)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-447)) (|has| |#1| (-664)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)) (|has| |#1| (-1026)) (|has| |#1| (-1014)))
(|has| |#1| (-514))
(((|#2|) . T))
((((-522)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(((|#1|) . T))
(((|#1|) . T))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971)))
((((-535 |#1|)) . T))
((($) . T))
(((|#1| (-57 |#1|) (-57 |#1|)) . T))
@@ -2079,12 +2079,12 @@
(((|#1| |#2|) . T))
((((-1085) |#1|) . T))
(((|#4|) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-324)))
((((-1085) (-51)) . T))
((((-1151 |#2| |#3| |#4|) (-294 |#2| |#3| |#4|)) . T))
((((-382 (-522))) |has| |#1| (-962 (-382 (-522)))) (((-522)) |has| |#1| (-962 (-522))) ((|#1|) . T))
((((-792)) . T))
-(-3708 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014)))
+(-3844 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-343)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)) (|has| |#2| (-1014)))
(((#0=(-1152 |#1| |#2| |#3| |#4|) #0#) . T) ((#1=(-382 (-522)) #1#) . T) (($ $) . T))
(((|#1| |#1|) |has| |#1| (-157)) ((#0=(-382 (-522)) #0#) |has| |#1| (-514)) (($ $) |has| |#1| (-514)))
(((|#1|) . T) (($) . T) (((-382 (-522))) . T))
@@ -2103,14 +2103,14 @@
(((|#1|) . T))
(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))
(((|#2| |#3|) . T))
-(-3708 (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#2| (-338)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
(((|#1| (-494 |#2|)) . T))
(((|#1| (-708)) . T))
(((|#1| (-494 (-1004 (-1085)))) . T))
(((|#1|) |has| |#1| (-157)))
(((|#1|) . T))
(|has| |#2| (-838))
-(-3708 (|has| |#2| (-730)) (|has| |#2| (-782)))
+(-3844 (|has| |#2| (-730)) (|has| |#2| (-782)))
((((-792)) . T))
((($ $) . T) ((#0=(-1151 |#2| |#3| |#4|) #0#) . T) ((#1=(-382 (-522)) #1#) |has| #0# (-37 (-382 (-522)))))
((((-839 |#1|)) . T))
@@ -2119,13 +2119,13 @@
((($) . T))
((($) . T))
(|has| |#1| (-338))
-(-3708 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)) (|has| |#1| (-514)))
(|has| |#1| (-338))
((($) . T) ((#0=(-1151 |#2| |#3| |#4|)) . T) (((-382 (-522))) |has| #0# (-37 (-382 (-522)))))
(((|#1| |#2|) . T))
((((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)))
-(-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338)) (|has| |#1| (-324)))
-(-3708 (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
+(-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)))
((((-522)) |has| |#1| (-584 (-522))) ((|#1|) . T))
(((|#1| |#2|) . T))
((((-792)) . T))
@@ -2157,27 +2157,27 @@
(((|#1|) |has| |#1| (-157)))
((((-792)) . T))
(((|#4| |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))
-(((|#2|) -3708 (|has| |#2| (-6 (-4240 "*"))) (|has| |#2| (-157))))
-(-3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(((|#2|) -3844 (|has| |#2| (-6 (-4240 "*"))) (|has| |#2| (-157))))
+(-3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
(|has| |#2| (-784))
(|has| |#2| (-838))
(|has| |#1| (-838))
(((|#2|) |has| |#2| (-157)))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)))
((((-792)) . T))
((((-792)) . T))
((((-498)) . T) (((-522)) . T) (((-821 (-522))) . T) (((-354)) . T) (((-202)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) . T))
(((|#1|) . T))
((((-792)) . T))
(((|#1| |#2|) . T))
(((|#1| (-382 (-522))) . T))
(((|#1|) . T))
-(-3708 (|has| |#1| (-266)) (|has| |#1| (-338)))
+(-3844 (|has| |#1| (-266)) (|has| |#1| (-338)))
((((-132)) . T))
((((-382 |#2|)) . T) (((-382 (-522))) . T) (($) . T))
(|has| |#1| (-782))
@@ -2192,7 +2192,7 @@
((((-382 (-522))) . T) (($) . T))
((((-792)) . T))
((((-792)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(((|#2| |#2|) . T) ((|#1| |#1|) . T))
((((-792)) . T))
((((-792)) . T))
@@ -2203,7 +2203,7 @@
(((|#1|) . T))
((((-588 (-132))) . T) (((-1068)) . T))
((((-792)) . T))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) . T))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) . T))
((((-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)) ((|#1| |#1|) |has| |#1| (-285 |#1|)))
(|has| |#1| (-784))
((((-792)) . T))
@@ -2215,16 +2215,16 @@
((((-792)) . T) (((-588 |#4|)) . T))
(((|#2|) . T))
((((-839 |#1|)) . T) (((-382 (-522))) . T) (($) . T))
-(-3708 (|has| |#4| (-157)) (|has| |#4| (-782)) (|has| |#4| (-971)))
-(-3708 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
+(-3844 (|has| |#4| (-157)) (|has| |#4| (-782)) (|has| |#4| (-971)))
+(-3844 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
((((-1085) (-51)) . T))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-(-3708 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-782)) (|has| |#2| (-971)))
(|has| |#1| (-838))
(|has| |#1| (-838))
(((|#2|) . T))
@@ -2239,12 +2239,12 @@
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-37 (-382 (-522))))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
(|has| |#1| (-757))
(((#0=(-839 |#1|) #0#) . T) (($ $) . T) ((#1=(-382 (-522)) #1#) . T))
((((-382 |#2|)) . T))
(|has| |#1| (-782))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
(((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) . T) ((#1=(-522) #1#) . T) (($ $) . T))
((((-839 |#1|)) . T) (($) . T) (((-382 (-522))) . T))
(((|#2|) |has| |#2| (-971)) (((-522)) -12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971))))
@@ -2254,25 +2254,25 @@
(|has| |#1| (-133))
(((|#2|) . T))
((((-792)) . T))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))
-((((-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) . T))
-(((#0=(-51)) . T) (((-2 (|:| -2530 (-1085)) (|:| -3048 #0#))) . T))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))
+((((-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) . T))
+(((#0=(-51)) . T) (((-2 (|:| -2644 (-1085)) (|:| -3149 #0#))) . T))
(|has| |#1| (-324))
((((-522)) . T))
((((-792)) . T))
(((#0=(-1152 |#1| |#2| |#3| |#4|) $) |has| #0# (-262 #0# #0#)))
(|has| |#1| (-338))
(((#0=(-999) |#1|) . T) ((#0# $) . T) (($ $) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-324)))
(((#0=(-382 (-522)) #0#) . T) ((#1=(-637) #1#) . T) (($ $) . T))
((((-291 |#1|)) . T) (($) . T))
(((|#1|) . T) (((-382 (-522))) |has| |#1| (-338)))
(|has| |#1| (-1014))
(((|#1|) . T))
-(((|#1|) -3708 (|has| |#2| (-342 |#1|)) (|has| |#2| (-392 |#1|))))
-(((|#1|) -3708 (|has| |#2| (-342 |#1|)) (|has| |#2| (-392 |#1|))))
+(((|#1|) -3844 (|has| |#2| (-342 |#1|)) (|has| |#2| (-392 |#1|))))
+(((|#1|) -3844 (|has| |#2| (-342 |#1|)) (|has| |#2| (-392 |#1|))))
(((|#2|) . T))
((((-382 (-522))) . T) (((-637)) . T) (($) . T))
(((|#3| |#3|) . T))
@@ -2291,7 +2291,7 @@
(((|#2|) . T))
(((|#1|) . T))
((((-522)) . T))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
(((|#2|) . T) (((-522)) |has| |#2| (-584 (-522))))
(((|#1| |#2|) . T))
((($) . T))
@@ -2328,7 +2328,7 @@
(|has| |#2| (-947))
((($) . T))
(|has| |#1| (-838))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((($) . T))
(((|#2|) . T))
(((|#1|) . T))
@@ -2336,24 +2336,24 @@
((($) . T))
(|has| |#1| (-338))
((((-839 |#1|)) . T))
-((($) -3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
((($ $) . T) ((#0=(-382 (-522)) #0#) . T))
-(-3708 (|has| |#1| (-343)) (|has| |#1| (-784)))
+(-3844 (|has| |#1| (-343)) (|has| |#1| (-784)))
(((|#1|) . T))
((((-792)) . T))
((((-1085)) -12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085)))))
((((-382 |#2|) |#3|) . T))
((($) . T) (((-382 (-522))) . T))
((((-708) |#1|) . T))
-(((|#2| (-217 (-3480 |#1|) (-708))) . T))
+(((|#2| (-217 (-3591 |#1|) (-708))) . T))
(((|#1| (-494 |#3|)) . T))
((((-382 (-522))) . T))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
((((-792)) . T))
-(((#0=(-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) #0#) |has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))))
+(((#0=(-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) #0#) |has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))))
(|has| |#1| (-838))
(|has| |#2| (-338))
-(-3708 (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
((((-154 (-354))) . T) (((-202)) . T) (((-354)) . T))
((((-792)) . T))
(((|#1|) . T))
@@ -2370,11 +2370,11 @@
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-37 (-382 (-522))))
-(-3708 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)))
(|has| |#1| (-37 (-382 (-522))))
(-12 (|has| |#1| (-507)) (|has| |#1| (-765)))
((((-792)) . T))
-((((-1085)) -3708 (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))) (-12 (|has| |#1| (-338)) (|has| |#2| (-829 (-1085))))))
+((((-1085)) -3844 (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))) (-12 (|has| |#1| (-338)) (|has| |#2| (-829 (-1085))))))
(|has| |#1| (-338))
((((-1085)) -12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085)))))
(|has| |#1| (-338))
@@ -2384,7 +2384,7 @@
(((|#1|) . T))
(((|#2|) |has| |#1| (-338)))
(((|#2|) |has| |#1| (-338)))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(((|#1|) . T))
(((|#1|) |has| |#1| (-157)))
(((|#1|) . T))
@@ -2407,31 +2407,31 @@
(((|#2|) |has| |#1| (-338)))
((((-354)) -12 (|has| |#1| (-338)) (|has| |#2| (-815 (-354)))) (((-522)) -12 (|has| |#1| (-338)) (|has| |#2| (-815 (-522)))))
(|has| |#1| (-338))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
(|has| |#1| (-338))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
(|has| |#1| (-338))
(|has| |#1| (-514))
(((|#4| |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))
(((|#3|) . T))
(((|#1|) . T))
-(-3708 (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
(((|#2|) . T))
(((|#2|) . T))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(|has| |#1| (-37 (-382 (-522))))
(((|#1| |#2|) . T))
(|has| |#1| (-37 (-382 (-522))))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))
(|has| |#1| (-135))
((((-1068) |#1|) . T))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))
(|has| |#1| (-135))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))
(|has| |#1| (-135))
((((-535 |#1|)) . T))
((($) . T))
@@ -2439,7 +2439,7 @@
(|has| |#1| (-514))
(|has| |#1| (-37 (-382 (-522))))
(|has| |#1| (-37 (-382 (-522))))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-324)))
(|has| |#1| (-135))
((((-792)) . T))
((($) . T))
@@ -2464,7 +2464,7 @@
(|has| |#1| (-728))
(|has| |#1| (-728))
((((-498)) |has| |#1| (-563 (-498))))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
((((-110)) . T) ((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -2484,7 +2484,7 @@
((((-522)) . T))
((((-792)) . T))
((((-522)) . T))
-(-3708 (|has| |#2| (-730)) (|has| |#2| (-782)))
+(-3844 (|has| |#2| (-730)) (|has| |#2| (-782)))
((((-154 (-354))) . T) (((-202)) . T) (((-354)) . T))
((((-792)) . T))
((((-792)) . T))
@@ -2496,9 +2496,9 @@
(((|#1|) . T) (($) . T) (((-382 (-522))) . T))
(|has| |#1| (-338))
(|has| |#1| (-338))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-447)) (|has| |#1| (-664)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)) (|has| |#1| (-1026)) (|has| |#1| (-1014)))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-447)) (|has| |#1| (-664)) (|has| |#1| (-829 (-1085))) (|has| |#1| (-971)) (|has| |#1| (-1026)) (|has| |#1| (-1014)))
(|has| |#1| (-1061))
((((-522) |#1|) . T))
(((|#1|) . T))
@@ -2516,8 +2516,8 @@
(((|#1|) . T))
(|has| |#1| (-514))
((((-382 |#2|)) . T) (((-382 (-522))) . T) (($) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
((((-354)) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -2526,7 +2526,7 @@
(|has| |#1| (-514))
(|has| |#1| (-1014))
((((-717 |#1| (-794 |#2|))) |has| (-717 |#1| (-794 |#2|)) (-285 (-717 |#1| (-794 |#2|)))))
-(-3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
(((|#1|) . T))
(((|#2| |#3|) . T))
(|has| |#2| (-838))
@@ -2536,12 +2536,12 @@
(|has| |#1| (-210))
(((|#1| (-494 (-1004 (-1085)))) . T))
(|has| |#2| (-338))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) . T))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) . T))
(((|#1|) . T))
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
((((-792)) . T))
((((-792)) . T))
-(-3708 (|has| |#3| (-730)) (|has| |#3| (-782)))
+(-3844 (|has| |#3| (-730)) (|has| |#3| (-782)))
((((-792)) . T))
((((-792)) . T))
(((|#1|) . T))
@@ -2550,8 +2550,8 @@
((((-522)) . T))
(((|#3|) . T))
((((-792)) . T))
-(-3708 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)))
-(-3708 (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971)))
+(-3844 (|has| |#1| (-283)) (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-133)) (|has| |#1| (-135)) (|has| |#1| (-157)) (|has| |#1| (-514)) (|has| |#1| (-971)))
(((#0=(-535 |#1|) #0#) . T) (($ $) . T) ((#1=(-382 (-522)) #1#) . T))
((($ $) . T) ((#0=(-382 (-522)) #0#) . T))
(((|#1|) |has| |#1| (-157)))
@@ -2564,7 +2564,7 @@
(((|#1|) . T))
((((-792)) |has| |#1| (-562 (-792))))
((((-270 |#3|)) . T))
-(((#0=(-382 (-522)) #0#) |has| |#2| (-37 (-382 (-522)))) ((|#2| |#2|) . T) (($ $) -3708 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+(((#0=(-382 (-522)) #0#) |has| |#2| (-37 (-382 (-522)))) ((|#2| |#2|) . T) (($ $) -3844 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
(((|#2| |#2|) . T) ((|#6| |#6|) . T))
(((|#1|) . T))
((($) . T) (((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) . T))
@@ -2572,20 +2572,20 @@
(((|#1|) . T) (((-382 (-522))) . T) (($) . T))
(((|#1|) . T) (((-382 (-522))) . T) (($) . T))
(((|#1|) . T) (((-382 (-522))) . T) (($) . T))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
(((|#2|) . T))
-((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) . T) (($) -3708 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) . T) (($) -3844 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
(((|#2|) . T) ((|#6|) . T))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
((((-792)) . T))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(|has| |#2| (-838))
(|has| |#1| (-838))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#1|) . T))
-((((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) . T))
+((((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1| |#1|) . T))
@@ -2599,10 +2599,10 @@
(((|#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))
(((#0=(-382 (-522)) #0#) . T))
((((-382 (-522))) . T))
-(-3708 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
(((|#1|) . T))
(((|#1|) . T))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-782)) (|has| |#2| (-971)))
((((-498)) . T))
((((-792)) . T))
((((-1085)) |has| |#2| (-829 (-1085))) (((-999)) . T))
@@ -2616,12 +2616,12 @@
((($ $) . T) ((#0=(-382 (-522)) #0#) . T))
((((-1085)) |has| |#1| (-829 (-1085))))
((((-839 |#1|)) . T) (((-382 (-522))) . T) (($) . T))
-((($) . T) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#1|) . T))
-(((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))) ((|#1| |#1|) . T) (($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))))
+((($) . T) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#1|) . T))
+(((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))) ((|#1| |#1|) . T) (($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))))
((($) . T) (((-382 (-522))) . T))
(((|#1|) . T) (((-382 (-522))) . T) (((-522)) . T) (($) . T))
(((|#2|) |has| |#2| (-971)) (((-522)) -12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971))))
-((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T) (($) -3708 (|has| |#1| (-157)) (|has| |#1| (-514))))
+((((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T) (($) -3844 (|has| |#1| (-157)) (|has| |#1| (-514))))
(|has| |#1| (-514))
(((|#1|) |has| |#1| (-338)))
((((-522)) . T))
@@ -2640,8 +2640,8 @@
((((-792)) . T))
(|has| |#2| (-757))
(|has| |#2| (-757))
-((((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#2|) |has| |#1| (-338)) (($) . T) ((|#1|) . T))
-(((|#1|) . T) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) . T))
+((((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#2|) |has| |#1| (-338)) (($) . T) ((|#1|) . T))
+(((|#1|) . T) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) . T))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1|) . T) (((-522)) |has| |#1| (-962 (-522))) (((-382 (-522))) |has| |#1| (-962 (-382 (-522)))))
((((-522)) |has| |#1| (-815 (-522))) (((-354)) |has| |#1| (-815 (-354))))
@@ -2667,12 +2667,12 @@
(((|#2| (-708)) . T))
((((-1085)) . T))
((((-799 |#1|)) . T))
-(-3708 (|has| |#3| (-25)) (|has| |#3| (-124)) (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-730)) (|has| |#3| (-782)) (|has| |#3| (-971)))
-(-3708 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-782)) (|has| |#3| (-971)))
+(-3844 (|has| |#3| (-25)) (|has| |#3| (-124)) (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-730)) (|has| |#3| (-782)) (|has| |#3| (-971)))
+(-3844 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-782)) (|has| |#3| (-971)))
((((-792)) . T))
(((|#1|) . T))
-(-3708 (|has| |#2| (-730)) (|has| |#2| (-782)))
-(-3708 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784))))
+(-3844 (|has| |#2| (-730)) (|has| |#2| (-782)))
+(-3844 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784))))
((((-799 |#1|)) . T))
(((|#1|) . T))
(|has| |#1| (-343))
@@ -2698,7 +2698,7 @@
(((|#1|) . T))
((((-792)) . T))
(|has| |#2| (-838))
-((((-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) . T))
+((((-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) . T))
((((-498)) |has| |#2| (-563 (-498))) (((-821 (-354))) |has| |#2| (-563 (-821 (-354)))) (((-821 (-522))) |has| |#2| (-563 (-821 (-522)))))
((((-792)) . T))
((((-792)) . T))
@@ -2731,11 +2731,11 @@
((((-382 |#2|) |#3|) . T))
(((|#1|) . T))
(|has| |#1| (-1014))
-(((|#2| (-455 (-3480 |#1|) (-708))) . T))
+(((|#2| (-455 (-3591 |#1|) (-708))) . T))
((((-522) |#1|) . T))
(((|#2| |#2|) . T))
(((|#1| (-494 (-1085))) . T))
-(-3708 (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
((((-522)) . T))
(((|#2|) . T))
(((|#2|) . T))
@@ -2745,9 +2745,9 @@
((($) . T) (((-382 (-522))) . T))
((($) . T))
((($) . T))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
(((|#1|) . T))
-((($) -3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
((((-792)) . T))
((((-132)) . T))
(((|#1|) . T) (((-382 (-522))) . T))
@@ -2787,27 +2787,27 @@
(|has| |#1| (-210))
(((|#1| (-494 |#3|)) . T))
(|has| |#1| (-343))
-(((|#2| (-217 (-3480 |#1|) (-708))) . T))
+(((|#2| (-217 (-3591 |#1|) (-708))) . T))
(|has| |#1| (-343))
(|has| |#1| (-343))
(((|#1|) . T) (($) . T))
(((|#1| (-494 |#2|)) . T))
-(-3708 (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
(((|#1| (-708)) . T))
(|has| |#1| (-514))
-(-3708 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-25)) (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-782)) (|has| |#2| (-971)))
(-12 (|has| |#1| (-21)) (|has| |#2| (-21)))
((((-792)) . T))
-(-3708 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730))))
-(-3708 (|has| |#3| (-124)) (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-730)) (|has| |#3| (-782)) (|has| |#3| (-971)))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730))))
+(-3844 (|has| |#3| (-124)) (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-730)) (|has| |#3| (-782)) (|has| |#3| (-971)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
(((|#1|) |has| |#1| (-157)))
(((|#4|) |has| |#4| (-971)))
(((|#3|) |has| |#3| (-971)))
(-12 (|has| |#1| (-338)) (|has| |#2| (-757)))
(-12 (|has| |#1| (-338)) (|has| |#2| (-757)))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
((((-498)) |has| |#1| (-563 (-498))))
((((-382 |#2|)) . T) (((-382 (-522))) . T) (($) . T))
((($ $) . T) ((#0=(-382 (-522)) #0#) . T))
@@ -2820,14 +2820,14 @@
(((|#2|) |has| |#2| (-971)) (((-522)) -12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971))))
(((|#1|) . T))
(|has| |#2| (-338))
-(((#0=(-382 (-522)) #0#) |has| |#2| (-37 (-382 (-522)))) ((|#2| |#2|) . T) (($ $) -3708 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
+(((#0=(-382 (-522)) #0#) |has| |#2| (-37 (-382 (-522)))) ((|#2| |#2|) . T) (($ $) -3844 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1| |#1|) . T) ((#0=(-382 (-522)) #0#) |has| |#1| (-37 (-382 (-522)))))
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-382 (-522)) #0#) . T))
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-382 (-522)) #0#) . T))
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-382 (-522)) #0#) . T))
(((|#2| |#2|) . T))
-((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) . T) (($) -3708 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) . T) (($) -3844 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#1|) . T) (($) . T) (((-382 (-522))) . T))
(((|#1|) . T) (($) . T) (((-382 (-522))) . T))
(((|#1|) . T) (($) . T) (((-382 (-522))) . T))
@@ -2846,25 +2846,25 @@
(((|#1|) |has| |#2| (-392 |#1|)))
(((|#1|) |has| |#2| (-392 |#1|)))
((((-839 |#1|)) . T) (((-382 (-522))) . T) (($) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
((((-498)) |has| |#1| (-563 (-498))))
((((-792)) . T))
-((((-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) |has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))))
-(-3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+((((-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) |has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))))
+(-3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
((((-522) |#1|) . T))
((((-522) |#1|) . T))
((((-522) |#1|) . T))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
((((-522) |#1|) . T))
(((|#1|) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
((((-1085)) |has| |#1| (-829 (-1085))) (((-755 (-1085))) . T))
-(-3708 (|has| |#3| (-124)) (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-730)) (|has| |#3| (-782)) (|has| |#3| (-971)))
+(-3844 (|has| |#3| (-124)) (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-730)) (|has| |#3| (-782)) (|has| |#3| (-971)))
((((-756 |#1|)) . T))
(((|#1| |#2|) . T))
((((-792)) . T))
-(-3708 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
+(-3844 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
(((|#1| |#2|) . T))
(|has| |#1| (-37 (-382 (-522))))
((((-792)) . T))
@@ -2872,15 +2872,15 @@
(((|#1|) |has| |#1| (-157)) (($) |has| |#1| (-514)) (((-382 (-522))) |has| |#1| (-514)))
(((|#2|) . T) (((-522)) |has| |#2| (-584 (-522))))
(|has| |#1| (-338))
-(-3708 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (-12 (|has| |#1| (-338)) (|has| |#2| (-210))))
+(-3844 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (-12 (|has| |#1| (-338)) (|has| |#2| (-210))))
(|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))
(|has| |#1| (-338))
(((|#1|) . T))
-(((#0=(-382 (-522)) #0#) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((|#1| |#1|) . T))
+(((#0=(-382 (-522)) #0#) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((|#1| |#1|) . T))
((((-522) |#1|) . T))
((((-291 |#1|)) . T))
(((#0=(-637) (-1081 #0#)) . T))
-((((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((|#1|) . T))
+((((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) (($) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((|#1|) . T))
(((|#1| |#2| |#3| |#4|) . T))
(|has| |#1| (-782))
((($ $) . T) ((#0=(-794 |#1|) $) . T) ((#0# |#2|) . T))
@@ -2897,12 +2897,12 @@
(((#0=(-1152 |#1| |#2| |#3| |#4|)) |has| #0# (-285 #0#)))
((($) . T))
(((|#1|) . T))
-((($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((#0=(-382 (-522)) #0#) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#2| |#2|) |has| |#1| (-338)) ((|#1| |#1|) . T))
-(((|#1| |#1|) . T) (($ $) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((#0=(-382 (-522)) #0#) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))))
+((($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((#0=(-382 (-522)) #0#) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#2| |#2|) |has| |#1| (-338)) ((|#1| |#1|) . T))
+(((|#1| |#1|) . T) (($ $) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) ((#0=(-382 (-522)) #0#) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))))
(|has| |#2| (-210))
(|has| $ (-135))
((((-792)) . T))
-((($) . T) (((-382 (-522))) -3708 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
+((($) . T) (((-382 (-522))) -3844 (|has| |#1| (-338)) (|has| |#1| (-324))) ((|#1|) . T))
((((-792)) . T))
(|has| |#1| (-782))
((((-1085)) -12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))
@@ -2914,23 +2914,23 @@
(((|#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#4|) . T))
(|has| |#1| (-514))
-((($) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#2|) |has| |#1| (-338)) ((|#1|) . T))
-((((-1085)) -3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))
-(((|#1|) . T) (($) -3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))))
+((($) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))) ((|#2|) |has| |#1| (-338)) ((|#1|) . T))
+((((-1085)) -3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))
+(((|#1|) . T) (($) -3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-514))) (((-382 (-522))) -3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-338))))
((((-1085)) -12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085)))))
((((-1085)) -12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085)))))
(((|#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))
((((-522) |#1|) . T))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
(((|#1|) . T))
(((|#1| (-494 (-755 (-1085)))) . T))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
(((|#1|) . T))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
(((|#1|) . T))
-(-3708 (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
-(-3708 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730))))
+(-3844 (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730))))
((((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)))
((($) . T) (((-799 |#1|)) . T) (((-382 (-522))) . T))
((((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)))
@@ -2939,15 +2939,15 @@
(((|#1|) . T))
(((|#1|) . T))
((((-382 |#2|)) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-324)))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-324)))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
((((-498)) |has| |#1| (-563 (-498))))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
((((-498)) |has| |#1| (-563 (-498))))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
((((-498)) |has| |#1| (-563 (-498))))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
(((|#1|) . T))
(((|#2| |#2|) . T) ((#0=(-382 (-522)) #0#) . T) (($ $) . T))
((((-522)) . T))
@@ -2976,32 +2976,32 @@
((((-1158 |#1| |#2| |#3|)) |has| |#1| (-338)))
((((-1085)) . T) (((-792)) . T))
(|has| |#1| (-338))
-((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
+((((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) |has| |#2| (-157)) (($) -3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838))))
(((|#2|) . T) ((|#6|) . T))
((($) . T) (((-382 (-522))) |has| |#2| (-37 (-382 (-522)))) ((|#2|) . T))
-((($) -3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
-((($) -3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
((((-1018)) . T))
((((-792)) . T))
((($) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((|#1|) . T))
((($) . T))
-((($) -3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
+((($) -3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838))) ((|#1|) |has| |#1| (-157)) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(|has| |#2| (-838))
(|has| |#1| (-838))
(((|#1|) . T))
(((|#1|) . T))
(((|#1| |#1|) |has| |#1| (-157)))
((((-637)) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
(((|#1|) |has| |#1| (-157)))
(((|#1|) |has| |#1| (-157)))
((((-382 (-522))) . T) (($) . T))
(((|#1| (-522)) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-324)))
(|has| |#1| (-338))
(|has| |#1| (-338))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-324)))
-(-3708 (|has| |#1| (-157)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-157)) (|has| |#1| (-514)))
(((|#1| (-522)) . T))
(((|#1| (-382 (-522))) . T))
(((|#1| (-708)) . T))
@@ -3016,16 +3016,16 @@
((((-821 (-354))) . T) (((-821 (-522))) . T) (((-1085)) . T) (((-498)) . T))
(((|#1|) . T))
((((-792)) . T))
-(-3708 (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
-(-3708 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730))))
+(-3844 (|has| |#2| (-124)) (|has| |#2| (-157)) (|has| |#2| (-338)) (|has| |#2| (-730)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730))))
((((-522)) . T))
((((-522)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(((|#1| |#2|) . T))
(((|#1|) . T))
-(-3708 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
+(-3844 (|has| |#2| (-157)) (|has| |#2| (-782)) (|has| |#2| (-971)))
((((-1085)) -12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971))))
-(-3708 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664))))
+(-3844 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664))))
(|has| |#1| (-133))
(|has| |#1| (-135))
(|has| |#1| (-338))
@@ -3049,7 +3049,7 @@
((((-1068) (-1085) (-522) (-202) (-792)) . T))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1| |#2|) . T))
-(-3708 (|has| |#1| (-324)) (|has| |#1| (-343)))
+(-3844 (|has| |#1| (-324)) (|has| |#1| (-343)))
(((|#1| |#2|) . T))
((($) . T) ((|#1|) . T))
((((-792)) . T))
@@ -3057,7 +3057,7 @@
((($) . T) ((|#1|) . T) (((-382 (-522))) |has| |#1| (-37 (-382 (-522)))))
(((|#2|) |has| |#2| (-1014)) (((-522)) -12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014))) (((-382 (-522))) -12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014))))
((((-498)) |has| |#1| (-563 (-498))))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-784)) (|has| |#1| (-1014))))
((($) . T) (((-382 (-522))) . T))
(|has| |#1| (-838))
(|has| |#1| (-838))
@@ -3066,14 +3066,14 @@
((((-792)) . T))
(((|#2| |#2|) . T))
(((|#1| |#1|) |has| |#1| (-157)))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-514)))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-782)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-514)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-782)))
(((|#2|) . T))
-(-3708 (|has| |#1| (-21)) (|has| |#1| (-782)))
+(-3844 (|has| |#1| (-21)) (|has| |#1| (-782)))
(((|#1|) |has| |#1| (-157)))
(((|#1|) . T))
(((|#1|) . T))
-((((-792)) -3708 (-12 (|has| |#1| (-562 (-792))) (|has| |#2| (-562 (-792)))) (-12 (|has| |#1| (-1014)) (|has| |#2| (-1014)))))
+((((-792)) -3844 (-12 (|has| |#1| (-562 (-792))) (|has| |#2| (-562 (-792)))) (-12 (|has| |#1| (-1014)) (|has| |#2| (-1014)))))
((((-382 |#2|) |#3|) . T))
((((-382 (-522))) . T) (($) . T))
(|has| |#1| (-37 (-382 (-522))))
@@ -3085,17 +3085,17 @@
(((|#1|) . T) (((-382 (-522))) . T) (((-522)) . T) (($) . T))
(((#0=(-522) #0#) . T))
((($) . T) (((-382 (-522))) . T))
-(-3708 (|has| |#4| (-157)) (|has| |#4| (-782)) (|has| |#4| (-971)))
-(-3708 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
+(-3844 (|has| |#4| (-157)) (|has| |#4| (-782)) (|has| |#4| (-971)))
+(-3844 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971)))
(|has| |#4| (-730))
-(-3708 (|has| |#4| (-730)) (|has| |#4| (-782)))
+(-3844 (|has| |#4| (-730)) (|has| |#4| (-782)))
(|has| |#4| (-782))
(|has| |#3| (-730))
-(-3708 (|has| |#3| (-730)) (|has| |#3| (-782)))
+(-3844 (|has| |#3| (-730)) (|has| |#3| (-782)))
(|has| |#3| (-782))
((((-522)) . T))
(((|#2|) . T))
-((((-1085)) -3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))
+((((-1085)) -3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))
((((-1085)) -12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085)))))
((((-1085)) -12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085)))))
(((|#1| |#1|) . T) (($ $) . T))
@@ -3110,11 +3110,11 @@
((((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)))
((((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)))
((((-1050 |#1| |#2|)) . T))
-(((|#2|) . T) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
-((((-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) . T))
+(((|#2|) . T) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
+((((-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) . T))
((($) . T))
(|has| |#1| (-947))
-(((|#2|) . T) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
((((-792)) . T))
((((-498)) |has| |#2| (-563 (-498))) (((-821 (-522))) |has| |#2| (-563 (-821 (-522)))) (((-821 (-354))) |has| |#2| (-563 (-821 (-354)))) (((-354)) . #0=(|has| |#2| (-947))) (((-202)) . #0#))
((((-1085) (-51)) . T))
@@ -3126,15 +3126,15 @@
((((-1083 |#1| |#2| |#3|)) . T))
((((-1083 |#1| |#2| |#3|)) . T) (((-1076 |#1| |#2| |#3|)) . T))
((((-792)) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
((((-522) |#1|) . T))
((((-1083 |#1| |#2| |#3|)) |has| |#1| (-338)))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1|) . T))
(((|#2|) . T))
(|has| |#2| (-338))
-(((|#3|) . T) ((|#2|) . T) (($) -3708 (|has| |#4| (-157)) (|has| |#4| (-782)) (|has| |#4| (-971))) ((|#4|) -3708 (|has| |#4| (-157)) (|has| |#4| (-338)) (|has| |#4| (-971))))
-(((|#2|) . T) (($) -3708 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971))) ((|#3|) -3708 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-971))))
+(((|#3|) . T) ((|#2|) . T) (($) -3844 (|has| |#4| (-157)) (|has| |#4| (-782)) (|has| |#4| (-971))) ((|#4|) -3844 (|has| |#4| (-157)) (|has| |#4| (-338)) (|has| |#4| (-971))))
+(((|#2|) . T) (($) -3844 (|has| |#3| (-157)) (|has| |#3| (-782)) (|has| |#3| (-971))) ((|#3|) -3844 (|has| |#3| (-157)) (|has| |#3| (-338)) (|has| |#3| (-971))))
(((|#1|) . T))
(((|#1|) . T))
(|has| |#1| (-338))
@@ -3146,37 +3146,37 @@
((((-792)) . T))
((((-792)) . T))
(((|#1|) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
((((-522) |#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#2| $) -12 (|has| |#1| (-338)) (|has| |#2| (-262 |#2| |#2|))) (($ $) . T))
((($ $) . T))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-838)))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-426)) (|has| |#1| (-838)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
((((-792)) . T))
((((-792)) . T))
((((-792)) . T))
(((|#1| (-494 |#2|)) . T))
-((((-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) . T))
+((((-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) . T))
(((|#1| (-522)) . T))
(((|#1| (-382 (-522))) . T))
(((|#1| (-708)) . T))
((((-112 |#1|)) . T) (($) . T) (((-382 (-522))) . T))
-(-3708 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
-(-3708 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
+(-3844 (|has| |#2| (-426)) (|has| |#2| (-514)) (|has| |#2| (-838)))
+(-3844 (|has| |#1| (-426)) (|has| |#1| (-514)) (|has| |#1| (-838)))
((($) . T))
(((|#2| (-494 (-794 |#1|))) . T))
((((-522) |#1|) . T))
(((|#2|) . T))
(((|#2| (-708)) . T))
-((((-792)) -3708 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
+((((-792)) -3844 (|has| |#1| (-562 (-792))) (|has| |#1| (-1014))))
(((|#1|) . T))
(((|#1| |#2|) . T))
((((-1068) |#1|) . T))
((((-382 |#2|)) . T))
-((((-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T))
+((((-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T))
(|has| |#1| (-514))
(|has| |#1| (-514))
((($) . T) ((|#2|) . T))
@@ -3184,12 +3184,12 @@
(((|#1| |#2|) . T))
(((|#2| $) |has| |#2| (-262 |#2| |#2|)))
(((|#1| (-588 |#1|)) |has| |#1| (-782)))
-(-3708 (|has| |#1| (-210)) (|has| |#1| (-324)))
-(-3708 (|has| |#1| (-338)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-210)) (|has| |#1| (-324)))
+(-3844 (|has| |#1| (-338)) (|has| |#1| (-324)))
(|has| |#1| (-1014))
(((|#1|) . T))
((((-382 (-522))) . T) (($) . T))
-((((-925 |#1|)) . T) ((|#1|) . T) (((-522)) -3708 (|has| (-925 |#1|) (-962 (-522))) (|has| |#1| (-962 (-522)))) (((-382 (-522))) -3708 (|has| (-925 |#1|) (-962 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))
+((((-925 |#1|)) . T) ((|#1|) . T) (((-522)) -3844 (|has| (-925 |#1|) (-962 (-522))) (|has| |#1| (-962 (-522)))) (((-382 (-522))) -3844 (|has| (-925 |#1|) (-962 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
(((|#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))
@@ -3200,9 +3200,9 @@
(((|#1|) . T))
(((|#1| |#2| |#3| |#4|) . T))
(((#0=(-1050 |#1| |#2|) #0#) |has| (-1050 |#1| |#2|) (-285 (-1050 |#1| |#2|))))
-(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((#0=(-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) #0#) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((#0=(-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) #0#) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))))
(((#0=(-112 |#1|)) |has| #0# (-285 #0#)))
-(-3708 (|has| |#1| (-784)) (|has| |#1| (-1014)))
+(-3844 (|has| |#1| (-784)) (|has| |#1| (-1014)))
((($ $) . T))
((($ $) . T) ((#0=(-794 |#1|) $) . T) ((#0# |#2|) . T))
((($ $) . T) ((|#2| $) |has| |#1| (-210)) ((|#2| |#1|) |has| |#1| (-210)) ((|#3| |#1|) . T) ((|#3| $) . T))
diff --git a/src/share/algebra/compress.daase b/src/share/algebra/compress.daase
index 5fa2086c..9bc45ab2 100644
--- a/src/share/algebra/compress.daase
+++ b/src/share/algebra/compress.daase
@@ -1,5 +1,5 @@
-(30 . 3409939476)
+(30 . 3410359535)
(4241 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
ATTRIBUTE |package| |domain| |category| CATEGORY |nobranch| AND |Join|
|ofType| SIGNATURE "failed" "algebra" |OneDimensionalArrayAggregate&|
@@ -460,645 +460,644 @@
|XPolynomialRing| |XRecursivePolynomial|
|ParadoxicalCombinatorsForStreams| |ZeroDimensionalSolvePackage|
|IntegerLinearDependence| |IntegerMod| |Enumeration| |Mapping|
- |Record| |Union| |Category| |makeFloatFunction| |OMputFloat| |rquo|
- |indicialEquation| |adaptive| |delta| |charClass| |upperCase?| |tab1|
- |leadingSupport| |probablyZeroDim?| |iicosh| |sup| |factorFraction|
- |insertMatch| |toseSquareFreePart| |constantToUnaryFunction|
- |subQuasiComponent?| |intermediateResultsIF| |character?|
- |returnTypeOf| |elColumn2!| |c02aff| |rootsOf| |mat|
- |primitiveElement| |or?| |mirror| |lfextendedint| |showClipRegion|
- |ramified?| |OMsupportsSymbol?| |rightExtendedGcd| |key?|
- |KrullNumber| |subtractIfCan| |expenseOfEvaluationIF| |connect|
- |declare| |subscript| |degreeSubResultant| |acosIfCan| |reify|
- |isMult| |clipWithRanges| |setrest!| |complexNumeric| |imagJ|
- |andOperands| |powers| |setProperty!| |integralRepresents|
- |rationalPoint?| |limitedint| |taylorQuoByVar| |depth| |log| |s21bdf|
- |controlPanel| |chineseRemainder| |primitivePart!| |socf2socdf|
- |mapSolve| |pascalTriangle| |integers| |even?| |dmpToHdmp| |iiacoth|
- |LyndonWordsList| |kernels| |setchildren!| |mainMonomials| |write!|
- |sPol| |comment| |clip| |d02bbf| |uncouplingMatrices|
- |lastSubResultantEuclidean| |cSin| |userOrdered?| |leaves| |summation|
- |linears| |univariate| |s19acf| |readLineIfCan!| |nextNormalPoly|
- |lambda| |viewDefaults| |commutator| |retractable?|
- |mainDefiningPolynomial| |inverseColeman| |separant| |f07adf|
- |sizeMultiplication| |fprindINFO| |showSummary| |retractIfCan|
- |pointSizeDefault| |createNormalElement| |poisson|
- |fortranCarriageReturn| |incrementKthElement| |expandPower|
- |exprHasWeightCosWXorSinWX| |selectNonFiniteRoutines| |build|
- |gcdPolynomial| |escape| |laguerreL| |generalLambert| |ratDenom|
- |startTableGcd!| |mainContent| |innerSolve1| |nonQsign|
- |totalDifferential| |createMultiplicationTable| |computeCycleLength|
- |rotatex| |fracPart| |showAttributes| |ran| |totolex| |BumInSepFFE|
- |systemSizeIF| |var2Steps| |swapColumns!| |constant?| |cCot| |makeSin|
- |lastSubResultant| |integral?| |plot| |extension| |mulmod|
- |leftExtendedGcd| |moduloP| |removeRedundantFactors| |moebiusMu|
- |defineProperty| |sign| |powern| |shanksDiscLogAlgorithm| |e02bdf| BY
- |setfirst!| |RemainderList| |addBadValue| |numberOfVariables|
- |setnext!| |rst| Y |quotient| |numericalIntegration| |top|
- |makeSketch| |ocf2ocdf| |deepExpand| |minIndex| |changeVar|
- |definingEquations| |rule| |ipow| |discriminantEuclidean| |continue|
- |matrix| |void| |trapezoidalo| |merge!| |HermiteIntegrate|
- |reduceLODE| |product| |LiePolyIfCan| |anticoord|
- |stiffnessAndStabilityFactor| |high| |ref| |prolateSpheroidal|
- |pattern| |s17aff| |OMconnOutDevice| |formula| |generator|
- |getBadValues| |minimize| |numberOfChildren| |changeBase|
- |symmetricProduct| |elements| |setScreenResolution3D| |map| |lyndon?|
- |unexpand| |extractIndex| |inconsistent?| |quote| |startStats!|
- |tableForDiscreteLogarithm| |htrigs| |exponent| |nary?|
- |univariateSolve| |replaceKthElement| |d03faf| |index?| |viewport3D|
- |equivOperands| |iilog| |stoseSquareFreePart| |divideIfCan!| |nrows|
- |cExp| |removeSquaresIfCan| |find| |acoshIfCan| ~= |measure2Result|
- |SturmHabichtCoefficients| |f01rdf| |op| |nextSublist| |ncols|
- |remove| |prinpolINFO| |linearAssociatedExp| |stopTableInvSet!|
- |noncommutativeJordanAlgebra?| |c06frf| |symbolTableOf| |s21bcf|
- |convert| |bivariate?| |true| |resize| |palgLODE0| |schema|
- |cyclotomic| |normalizedDivide| |sech2cosh| |getPickedPoints|
- |separate| |last| |s13aaf| |totalfract| |rk4a| |assoc| |toScale|
- |leftZero| |cyclePartition| |lo| |initiallyReduce| |tracePowMod|
- |decimal| |fixPredicate| |match?| |transform| |nextPartition|
- |genericRightTraceForm| |coord| |nextsubResultant2| |incr| |edf2df|
- |wronskianMatrix| |fortran| |complexEigenvalues| |e02zaf| |presuper|
- |exteriorDifferential| |palglimint0| |drawToScale| |hi|
- |createNormalPrimitivePoly| |solveLinearPolynomialEquation| |atom?|
- |weakBiRank| |s14baf| |imagE| |normalise| |definingPolynomial|
- |binomial| |idealiser| |c05nbf| |outputList| |retract|
- |var2StepsDefault| |symbolIfCan| |variable?| |basisOfLeftNucloid|
- |f02fjf| |symbol| |makeop| |rational| |resetVariableOrder| |isobaric?|
- |iflist2Result| |dAndcExp| |realEigenvalues| |tValues| |refine|
- |genericLeftTrace| ~ |makeViewport2D| |hasSolution?| |nthRoot|
- |leftNorm| |null| |string| |zag| |integer| |getCurve| |lambert|
- |argumentList!| |triangSolve| |interval| |OMgetEndApp| |iiperm|
- |calcRanges| |yellow| |bumptab| |graphStates| |mvar| |complete|
- |removeSuperfluousQuasiComponents| |numberOfHues| |entries|
- |genericRightTrace| |constantKernel| |binaryTournament| |var1Steps|
- |tab| = |harmonic| |findBinding| |tubePlot| |univariate?| |eq?|
- |kroneckerDelta| |normalizeAtInfinity| |segment|
- |LagrangeInterpolation| |pseudoDivide| |lowerPolynomial| |e04dgf|
- |open| |halfExtendedResultant1| |leftTrace| |distFact| |clearCache| <
- |curryLeft| |solveLinearlyOverQ| |leftFactorIfCan| |pade| |level|
- |dequeue| |variationOfParameters| |OMlistCDs| > |externalList|
- |varselect| |mainCharacterization| |interpret| |iisqrt2| |mapCoef|
- |squareFreePolynomial| <= |cAsec| |trueEqual| |characteristicSet|
- |leader| |useSingleFactorBound?| |horizConcat| |quotientByP| >= |expr|
- |iisqrt3| |copyInto!| |generate| |universe| |list| |script| |satisfy?|
- |cyclotomicFactorization| |s18aef| |output| |setDifference|
- |selectsecond| |structuralConstants| |countRealRoots| |hessian|
- |abelianGroup| |orthonormalBasis| |incrementBy| |complexIntegrate|
- |setIntersection| |multiset| |firstUncouplingMatrix| |c06fqf|
- |lazyPquo| |checkPrecision| |airyBi| + |createPrimitiveNormalPoly|
- |expand| |setUnion| |mainVariable?| |equation| |removeSinSq| |s14abf|
- |internalZeroSetSplit| |variable| - |sylvesterMatrix| |filterWhile|
- |frobenius| |apply| |zerosOf| |quickSort| |nthFractionalTerm| /
- |UP2ifCan| |filterUntil| |asechIfCan| |c06gbf| |numberOfComposites|
- |csc2sin| |option?| |select| |size| |quasiMonic?| |bindings| |tex|
- |copy!| |complementaryBasis| |deepestInitial| |rspace| |stopTableGcd!|
- |rowEch| |t| |rootProduct| |tan2trig| |limit| |setClipValue| |ldf2lst|
- UP2UTS |iisinh| |showTheFTable| |freeOf?| |fortranDouble| |close|
- |transcendent?| |fglmIfCan| |badNum| |Ei| |f02aff| |pushucoef|
- |createIrreduciblePoly| |csubst| |identity| |pmintegrate| |insert|
- |shift| |redmat| |rationalIfCan| |makeEq| |bezoutResultant|
- |condition| |newReduc| |cAtanh| |maxrank| |hclf| |cotIfCan| SEGMENT
- |makeRecord| |messagePrint| |solid?| |fortranReal| |display|
- |rightPower| |OMParseError?| |someBasis| |meshPar1Var| |seed|
- |implies?| |getSyntaxFormsFromFile| |tanAn| |sizeLess?| |stFuncN|
- |s17agf| |OMputAtp| |symmetricGroup| |phiCoord| |showAll?| |s01eaf|
- |bandedHessian| |cschIfCan| |antisymmetric?| |front|
- |extendedResultant| |infLex?| |addMatchRestricted| |s13acf| |arity|
- |prem| |halfExtendedResultant2| |qroot| |wordsForStrongGenerators|
- |diagonalProduct| |clipSurface| |iroot| |minPoly| |minimalPolynomial|
- |rotate| |coordinate| |exprHasLogarithmicWeights| |linkToFortran|
- |partialQuotients| |input| |s17dgf| |hexDigit| |OMgetEndAttr|
- |sizePascalTriangle| |s18def| |mkPrim| |pToHdmp| |OMputSymbol|
- |library| |subResultantsChain| |hMonic| |s17aef| |cRationalPower|
- |upDateBranches| |exprHasAlgebraicWeight| |iisec| |contours|
- |mergeFactors| |result| |csch| |OMgetEndBind| |listRepresentation|
- |pair?| |middle| |rightZero| |changeThreshhold| |asinh|
- |rightScalarTimes!| |splitNodeOf!| |mindegTerm| |children|
- |totalGroebner| |csch2sinh| |acosh| |sparsityIF| |leaf?|
- |getMultiplicationTable| |pile| |sortConstraints| |entry?| |atanh|
- |d02cjf| |rur| |critM| |bernoulli| |set| |shufflein| |d02bhf|
- |diagonal?| |acoth| |irreducible?| |rational?| |rightTraceMatrix|
- |OMopenFile| |oddlambert| |superHeight| |closedCurve?| |asech|
- |inrootof| |decrease| |stoseInvertible?reg| |compile| |id| |polyRDE|
- |e04mbf| |f07fdf| |removeCosSq| |conjug|
- |rewriteIdealWithHeadRemainder| |ksec| |readIfCan!| |beauzamyBound|
- |ddFact| |s21bbf| |multiple| |e01bff| |genericRightMinimalPolynomial|
- |c06gqf| |ptree| |measure| |root| |table| |Is| |prinshINFO|
- |outputFixed| |coleman| |applyQuote| |rightFactorCandidate| |leftRank|
- |numberOfComputedEntries| |changeWeightLevel| |e04fdf| |new|
- |derivative| |startPolynomial| |c06ekf| |ParCondList| |showRegion|
- |iteratedInitials| |patternVariable| |lazyPrem| |characteristicSerie|
- |startTableInvSet!| |alphanumeric?| |coerceListOfPairs| |dmp2rfi|
- |complexEigenvectors| |leviCivitaSymbol| |iFTable| |postfix| |besselY|
- |compose| |call| |graphImage| |permutations| |acotIfCan|
- |partialNumerators| |pdf2ef| |ruleset| |ScanRoman|
- |reciprocalPolynomial| |checkForZero| |bracket| |mainPrimitivePart|
- |pointColorPalette| |exptMod| |show|
- |dimensionOfIrreducibleRepresentation| |commonDenominator| |cTan|
- |groebgen| |quasiAlgebraicSet| |iidsum| |writable?| |gcdcofactprim|
- |insertionSort!| |repeating?| |ratpart| |toseLastSubResultant|
- |integrate| |derivationCoordinates| |row| |symmetricPower| |reverse|
- |s19abf| |pushdown| |trace| |irreducibleRepresentation| |revert|
- |rightUnits| |reverseLex| |suchThat| |UnVectorise| |setright!|
- |unrankImproperPartitions1| |computePowers|
- |removeRoughlyRedundantFactorsInPol| |strongGenerators| |numFunEvals|
- |aLinear| |zoom| |OMgetBind| |critpOrder| |plenaryPower| |dot|
- |rotatey| |minColIndex| |tower| |nullary| |setColumn!|
- |numberOfPrimitivePoly| |hypergeometric0F1| |rdregime| |iiasech|
- |center| |mapMatrixIfCan| |e01saf| |extendedint| |f04maf| |cosIfCan|
- |numberOfImproperPartitions| |printHeader| |initial| |mapBivariate|
- |prindINFO| |birth| |nthExpon| |printInfo| |exprToGenUPS| |viewpoint|
- |lowerCase!| |nextPrime| |impliesOperands| |firstDenom| |left|
- |useEisensteinCriterion| |kmax| |factor| |karatsuba| |partition|
- |routines| |nand| |digit| |nextsousResultant2| |outputFloating|
- |right| |deepCopy| |genericLeftNorm| |OMencodingUnknown| |s19adf|
- |sqrt| |maximumExponent| |property| |expintfldpoly|
- |indicialEquationAtInfinity| |reduced?| |paraboloidal| |style| |real|
- |lazyPseudoDivide| |f04mcf| |makingStats?| |increasePrecision|
- |noKaratsuba| |leftTraceMatrix| |fortranLiteral| |saturate| |bat|
- |bitLength| |imag| |B1solve| |resultant| |fixedPointExquo|
- |setleaves!| |paren| |symbolTable| |rootSimp| |lepol| |d01gaf|
- |invmultisect| |f02adf| |ridHack1| |blue| |directProduct| |iicos|
- |subNodeOf?| |enqueue!| |stoseIntegralLastSubResultant| |polygamma|
- |units| |extractBottom!| |eigenMatrix| |cCoth| |cAsin| |ricDsolve|
- |coHeight| |ef2edf| |bat1| |inRadical?| |Lazard| |iicsch| |s18aff|
- |pushFortranOutputStack| |rootPower| |integerBound| |slash|
- |scanOneDimSubspaces| |rangeIsFinite| |subSet| |groebnerFactorize|
- |zeroDim?| |laplace| |destruct| |removeSinhSq| |patternMatchTimes|
- |definingInequation| |popFortranOutputStack| FG2F |rowEchelonLocal|
- |semicolonSeparate| |vspace| |OMputEndAttr| |tubeRadiusDefault|
- |lfinfieldint| |optimize| |OMputBind| |addiag| |mapdiv| |leftUnit|
- |twist| |outputAsFortran| |deleteProperty!| |distance| |polyPart|
- |unitNormal| |maxIndex| |octon| |elliptic?| |rationalPoints| |Gamma|
- |colorDef| |collectUpper| |setTex!| |unitCanonical|
- |fortranCompilerName| |s13adf| |prepareDecompose| |OMencodingXML|
- |selectfirst| |type| |c06eaf| |node?| |symbol?| |polygon?| |code|
- |factorset| |innerint| |tanh2coth| |useEisensteinCriterion?|
- |badValues| |headRemainder| |rightFactorIfCan| |expenseOfEvaluation|
- |solveid| |FormatRoman| |deepestTail| |null?| |sumSquares| |nil|
- |c06fpf| |setlast!| |print| |characteristicPolynomial|
- |pseudoRemainder| |lineColorDefault| |unary?| |heapSort|
- |setErrorBound| |fixedPoints| |absolutelyIrreducible?| |imaginary|
- |cAcsch| |iicot| |laplacian| |sinhIfCan| |nullSpace| |cycleElt|
- |completeEval| |cardinality| |bernoulliB| |algebraicSort| |rotate!|
- |primitivePart| |mesh| |multiplyExponents| |wholeRagits|
- |internalSubPolSet?| |setPoly| |fractRadix| |prepareSubResAlgo|
- |symmetricDifference| |processTemplate| |second| |leadingExponent|
- |printInfo!| |upperCase| |getOrder| |quasiMonicPolynomials|
- |removeRedundantFactorsInContents| |splitConstant| |OMgetEndObject|
- |addPoint2| |quasiComponent| |SturmHabicht| |third| |function| |hex|
- |reducedSystem| |s17ajf| |positiveSolve| |s18dcf| |norm|
- |expintegrate| |getRef| |linSolve| |parametric?| |sylvesterSequence|
- |checkRur| |outputMeasure| |d02ejf| |regularRepresentation|
- |viewPosDefault| |primeFrobenius| |numberOfMonomials| |padecf|
- |taylorIfCan| |nlde| |inspect| |denomLODE| |pointPlot| |testModulus|
- |lookup| |basisOfRightNucloid| |cycleEntry| |infRittWu?| |tube|
- |linearMatrix| |monomialIntegrate| |increase| |representationType|
- |nor| |d01alf| |LiePoly| |Vectorise| |super| |supRittWu?|
- |internalAugment| |getDatabase| |ldf2vmf| |solveInField|
- |drawComplexVectorField| |in?| |rootRadius| |divergence| |charthRoot|
- |enterInCache| |coshIfCan| |vector| |inverse| |appendPoint|
- |rewriteSetWithReduction| |logGamma| |pdct| |close!| |qinterval|
- |ideal| |lazyEvaluate| |integralAtInfinity?| |differentiate| |debug3D|
- |red| |merge| |ScanArabic| |bumptab1| |chebyshevU| |cCosh|
- |fixedDivisor| |iiabs| |gbasis| |e01bhf| |zeroMatrix| |isPower|
- |d01fcf| |traverse| |setleft!| |goto| |precision| |case| |linear|
- |outlineRender| |coth2trigh| |oneDimensionalArray| |c06gcf|
- |consnewpol| |ratDsolve| |e02daf| |epilogue| |hconcat| |expint|
- |augment| |doubleComplex?| |coerce| |nullary?| |nthRootIfCan| |expPot|
- |crest| |s18adf| |alternatingGroup| |anfactor| |purelyAlgebraic?|
- |polynomial| |intensity| |construct| |linearlyDependentOverZ?|
- |binarySearchTree| |primlimitedint| |updatF| |d01akf| |lyndon|
- |purelyTranscendental?| |OMgetFloat| |redPo| |hasHi| |squareTop| D
- |complex?| |toseInvertibleSet| |outputArgs| |realEigenvectors|
- |OMopenString| |transcendenceDegree| |nextColeman| |double?|
- |perfectSqrt| |ode| |lcm| |generalizedEigenvectors|
- |chainSubResultants| |selectODEIVPRoutines| |completeHermite|
- |wholePart| |headReduced?| |leftRecip| |exquo| |identityMatrix|
- |enumerate| |pureLex| |squareFreePrim| |po| |ListOfTerms| |bright|
- |rationalFunction| |abs| |initials| |div| |padicFraction| |pow|
- |member?| |qqq| |critB| |is?| |zero?| |axesColorDefault| |imagK|
- |extractClosed| |quo| |content| |rightRank| |f01qcf| |terms| |gcd|
- |rischNormalize| |and?| |OMputEndBind| |typeLists| |rowEchelon|
- |cubic| |updateStatus!| |lflimitedint| |internalDecompose|
- |decomposeFunc| |union| |binary| |shiftLeft| |OMgetError|
- |unprotectedRemoveRedundantFactors| |iExquo| |rdHack1| |rem| |maxrow|
- |chebyshevT| |showTheSymbolTable| |fi2df| |false| |setRealSteps|
- |cAcot| |selectPolynomials| |const| |direction| |s20acf| |eval|
- |numberOfFractionalTerms| |internalSubQuasiComponent?| |optAttributes|
- |graphState| |first| |surface| |fortranLogical| |splitDenominator|
- |LazardQuotient2| |tableau| |romberg| |setPrologue!|
- |leftCharacteristicPolynomial| |enterPointData| |e02dff| |normalize|
- |rest| |particularSolution| |box| |tanintegrate| |viewDeltaXDefault|
- |linear?| |evenInfiniteProduct| |clearTheIFTable| |low| |packageCall|
- |back| |generic| |transpose| |substitute| |argscript|
- |basisOfRightAnnihilator| |leadingIndex| |characteristic| |/\\|
- |aQuartic| |pr2dmp| |pop!| |any| |backOldPos| |normal01| |d02gbf|
- |modifyPoint| |removeDuplicates| |skewSFunction| |singleFactorBound|
- |explimitedint| |sub| |resultantReduitEuclidean| |positiveRemainder|
- |normFactors| |invmod| |bivariateSLPEBR| |stopMusserTrials|
- |extendedIntegrate| |rroot| |cartesian| |atoms| |getCode|
- |decreasePrecision| |OMgetEndBVar| |algebraic?| |preprocess|
- |removeIrreducibleRedundantFactors| |OMputInteger| |integral| |rename|
- |brillhartTrials| |lagrange| |iisin| |algebraicVariables| |parabolic|
- |sumOfKthPowerDivisors| |newLine| |open?| |infinite?| |crushedSet|
- |oblateSpheroidal| |partialDenominators| |zeroVector| |matrixConcat3D|
- |diag| |f07aef| |radicalEigenvectors| |Nul| |yCoordinates| |objectOf|
- |complexElementary| |rewriteSetByReducingWithParticularGenerators|
- |setelt| |chvar| |e02agf| |d02gaf| |currentCategoryFrame|
- |OMgetInteger| |latex| |range| |iitan| |reorder| |numeric| |lowerCase|
- |bombieriNorm| |applyRules| |cycleLength| |groebner?| |color| |over|
- |numberOfComponents| |powerSum| |putColorInfo| |plus| |not| |radical|
- |normalizedAssociate| |copy| |real?| |linGenPos| |setAdaptive3D|
- |f01rcf| |predicates| |vconcat| |factorSFBRlcUnit| |conditionP|
- |setStatus!| |alphabetic| |asecIfCan| |intersect| |basisOfLeftNucleus|
- |localUnquote| |setAdaptive| |properties| |completeHensel|
- |shallowExpand| |expextendedint| |rangePascalTriangle| |child?|
- |zeroDimPrime?| |rootPoly| |yCoord| |sncndn| ^= |signAround|
- |cylindrical| |makeGraphImage| |listOfMonoms| |tanIfCan| |f02bbf|
- |quotedOperators| |polCase| |exprToXXP| |laurentRep| |integerIfCan|
- |autoCoerce| |pmComplexintegrate| |swapRows!| |rowEchLocal| |max|
- |conjugates| |OMgetString| |wrregime| |OMreadStr| |mindeg|
- |createThreeSpace| |exponential| |isList| |rk4f| |inR?|
- |initializeGroupForWordProblem| |mainVariables| |say| |iicsc| |df2st|
- |isTimes| |collect| |d01asf| |solveRetract| |primes|
- |subResultantChain| |unitVector| |translate| |omError| |bubbleSort!|
- |singularAtInfinity?| |makeFR| |reflect| |leftDiscriminant|
- |leftScalarTimes!| |besselJ| |monicDivide| |allRootsOf| |setRow!|
- |f02xef| |hspace| |constDsolve| |OMputEndBVar| |c05adf| |triangulate|
- |times| |nextPrimitivePoly| |zeroSquareMatrix| |rootOfIrreduciblePoly|
- |mathieu11| |branchIfCan| |rubiksGroup| |getOperator|
- |resultantEuclideannaif| |contractSolve| |leftRankPolynomial|
- |shrinkable| |squareMatrix| |seriesSolve| |coerceImages|
- |setLegalFortranSourceExtensions| |getVariableOrder| |divisors|
- |nextNormalPrimitivePoly| |semiResultantEuclidean2| |specialTrigs|
- |pastel| |leftDivide| |singularitiesOf| |primitive?| |inHallBasis?|
- |increment| |monicLeftDivide| |clearTheSymbolTable| |replace| |length|
- |monom| |OMputAttr| |radix| |quartic| |expt| |check| |getButtonValue|
- |setProperties!| |scripts| |square?| |musserTrials| |OMputEndError|
- |key| |jacobi| |cos2sec| |df2mf| |OMputApp|
- |selectSumOfSquaresRoutines| |prologue| |options| |quadratic?|
- |setMinPoints| |common| |OMgetEndAtp| |idealSimplify| |e01sbf|
- |stoseInvertible?| |elt| |irreducibleFactor| |changeMeasure| |solid|
- |univariatePolynomial| |cycles| |clikeUniv| |lieAlgebra?|
- |expressIdealMember| |filename| |xCoord| |negative?| |dn| |Si|
- |complexRoots| |semiSubResultantGcdEuclidean2| |e02baf|
- |semiResultantEuclidean1| |reopen!| |point?| |iisech| |uniform01|
- |BasicMethod| |baseRDEsys| |iipow| |not?| |factorSquareFree|
- |factorByRecursion| |setVariableOrder| |prod| |minRowIndex|
- |leadingCoefficientRicDE| |showAllElements| |cyclotomicDecomposition|
- |asinhIfCan| |parse| |createPrimitiveElement| |redpps| |linearPart|
- |sturmVariationsOf| |s14aaf| |list?| |cond| |sumOfSquares|
- |stoseInvertible?sqfreg| |d02kef| |odd?| |alphabetic?| |graphCurves|
- |space| |computeBasis| |cn| |qfactor| |constantIfCan| |round| |fmecg|
- |scopes| |fill!| |numericIfCan| |delay| |OMgetObject|
- |semiIndiceSubResultantEuclidean| |airyAi| |addPoint|
- |factorsOfDegree| |palgLODE| |monicRightFactorIfCan| |rightGcd|
- |trunc| |lexTriangular| |digits| |curve| |dim| |RittWuCompare|
- |edf2ef| |multiple?| |extensionDegree| |bringDown| |sechIfCan|
- |mainForm| |initTable!| |operator| |Beta| |alternating| |e04gcf|
- |concat!| |removeConstantTerm| |monomialIntPoly|
- |basisOfLeftAnnihilator| |radPoly| |iicoth| |bsolve|
- |createMultiplicationMatrix| |fullPartialFraction| |notOperand| |axes|
- |useNagFunctions| |setref| |tubePoints| |makeTerm| |width|
- |cycleSplit!| |rewriteIdealWithQuasiMonicGenerators| |dominantTerm|
- |fortranInteger| |explogs2trigs| |extractIfCan| |rightLcm|
- |nonSingularModel| |listLoops| |cap| |conditionsForIdempotents|
- |evaluateInverse| |factorGroebnerBasis| |certainlySubVariety?|
- |knownInfBasis| |exists?| |root?| |adaptive3D?| |fullDisplay|
- |radicalRoots| |powerAssociative?| |useSingleFactorBound| |endOfFile?|
- |complexSolve| |gcdcofact| |pomopo!| |palglimint| |fortranLinkerArgs|
- |singRicDE| |bipolar| |powmod| |constant| |lieAdmissible?| |swap!|
- |headReduce| |d01bbf| |recip| |meshFun2Var| |e01bgf| |midpoints|
- |OMsetEncoding| |OMgetSymbol| |setFormula!|
- |solveLinearPolynomialEquationByRecursion| |trivialIdeal?| |rename!|
- |factorials| |getProperty| |palginfieldint| |doublyTransitive?|
- |semiLastSubResultantEuclidean| |youngGroup| |fortranTypeOf|
- |optional| |roman| |unitsColorDefault| |continuedFraction|
- |infiniteProduct| |basisOfRightNucleus| |primPartElseUnitCanonical|
- |erf| |infinityNorm| |e02bbf| |besselK| |selectOptimizationRoutines|
- |triangularSystems| |e04naf| |parametersOf| |clipParametric|
- |modularFactor| |binaryFunction| |index| |e04ucf| UTS2UP |less?|
- |cfirst| |xn| |isAbsolutelyIrreducible?| |split| |viewThetaDefault|
- |multiEuclideanTree| |symmetric?| |setOrder| |nthFlag| |fintegrate|
- |equality| |meshPar2Var| |bitCoef| |sec2cos| |dilog| |point|
- |combineFeatureCompatibility| |d02raf| |karatsubaOnce| |gethi|
- |normal?| |associatedSystem| |cup| |getVariable| |listBranches|
- |showScalarValues| |reducedContinuedFraction| |sin| |makeCrit|
- |search| |pair| |divide| |linearlyDependent?| |radicalEigenvalues|
- |stop| |alphanumeric| |getConstant| |mathieu12| |cyclic| |ReduceOrder|
- |cos| |functionIsContinuousAtEndPoints| |lazyPseudoRemainder|
- |chiSquare| |frst| |psolve| |\\/| |iiacosh| |discriminant| |safeFloor|
- |perspective| |tan| |series| |clipBoolean| |exprToUPS|
- |resultantReduit| |areEquivalent?| |geometric| |callForm?| |module|
- |cot2trig| |one?| |toseInvertible?| |cot| |numberOfFactors| |f02abf|
- |resetNew| |create3Space| |truncate| |select!| |getProperties|
- |pToDmp| |degree| |sec| |bag| |setImagSteps| |trailingCoefficient|
- |distdfact| |move| |unravel| |hexDigit?| |divisorCascade|
- |rootNormalize| |csc| |numer| |removeZero| |makeViewport3D|
- |figureUnits| |separateFactors| |cPower| |getMeasure| |lifting|
- |prime?| |min| |asin| |denom| |mapUp!| |has?| |OMconnectTCP|
- |drawCurves| |d01anf| |inGroundField?| |normalDeriv| |f04arf| |acos|
- |computeInt| |primeFactor| |rightRegularRepresentation| |writeLine!|
- |modularGcd| |status| |dimensionsOf| |newTypeLists| |leadingTerm|
- |cyclicSubmodule| |atan| |binding| |pi| |PollardSmallFactor| |message|
- |updatD| |c02agf| |composites| |safeCeiling| |magnitude| |neglist|
- |innerEigenvectors| |acot| |infinity| |rightTrim| |vark| |lyndonIfCan|
- |iiacsc| |coercePreimagesImages| |explicitlyFinite?| |charpol|
- |perfectNthRoot| |e01baf| |viewport2D| |asec| |obj| |leftTrim|
- |pointLists| |commutativeEquality| |resultantnaif| |viewZoomDefault|
- |setStatus| |factorial| |usingTable?| |balancedFactorisation|
- |component| |acsc| |plusInfinity| |cache| |contains?| |oddintegers|
- |iitanh| |rightAlternative?| |string?| |fractionFreeGauss!| |e02bef|
- |FormatArabic| |setClosed| |sinh| |insertTop!| |minusInfinity|
- |wordInGenerators| |name| |flexible?| |cycle| |clearTheFTable|
- |SFunction| |invertibleSet| |validExponential| |firstNumer| |cosh|
- |dom| |singular?| |janko2| |principal?| |associatorDependence|
- |numerator| |recolor| |iiasinh| |mathieu24| |e02ddf| |label| |tanh|
- |kernel| |iiacot| |df2ef| |fibonacci| |mesh?| |lazyVariations|
- |gradient| |e02ahf| |approxSqrt| |cLog| |coth| |draw| |sin?|
- |supersub| |rotatez| |monicModulo| |minimumDegree| |changeName|
- |generalInfiniteProduct| |associative?| |OMgetVariable| |sech|
- |computeCycleEntry| |sinhcosh| |degreePartition|
- |removeRedundantFactorsInPols| |subResultantGcdEuclidean|
- |univariatePolynomials| |f04asf| |setTopPredicate|
- |semiDiscriminantEuclidean| |pointColorDefault| |linearAssociatedLog|
- |selectIntegrationRoutines| |mkAnswer| |hermiteH| |minimumExponent|
- |OMputError| |lazy?| |blankSeparate| |compdegd|
- |zeroSetSplitIntoTriangularSystems| |infieldIntegrate| |Lazard2|
- |monicRightDivide| |atanhIfCan| |title| |makeObject| |inc|
- |complexLimit| |linearPolynomials| |generators| |froot| |graeffe|
- |primaryDecomp| |f01qef| |f01qdf| |keys| |e| |cAtan| |coefChoose|
- |plotPolar| |algebraicDecompose| |error| |splitLinear| |secIfCan|
- |rightDiscriminant| |factors| |coef| |restorePrecision| |putGraph|
- |LowTriBddDenomInv| |cosSinInfo| |simplifyExp| |assert| |localReal?|
- |dimensions| |randomR| |lquo| |getlo| |failed?| |sayLength|
- |flagFactor| |rightMinimalPolynomial| |categoryFrame|
- |currentSubProgram| |opeval| |maxPoints3D| |getGraph|
- |numberOfIrreduciblePoly| |OMsupportsCD?| |bezoutMatrix| |shiftRoots|
- |outputGeneral| |leftAlternative?| |nextItem| |innerSolve| |setEmpty!|
- |selectAndPolynomials| |closeComponent| |newSubProgram| |modulus|
- |debug| |monic?| |differentialVariables| |pleskenSplit| |leftMult|
- |subresultantVector| |option| |discreteLog| |unitNormalize|
- |stopTable!| |algebraicCoefficients?| |scalarMatrix|
- |functionIsFracPolynomial?| |antiCommutator| |ceiling|
- |jordanAdmissible?| |subPolSet?| |selectOrPolynomials|
- |companionBlocks| |makeResult| |cCsch| |d01apf| |argumentListOf|
- |OMUnknownCD?| |getGoodPrime| |cAsech| |node| |stirling1| |s17dcf|
- |nonLinearPart| |integralDerivationMatrix| |cyclic?| |distribute|
- |overlabel| |constantOperator| |df2fi| |partialFraction| |entry|
- |tablePow| |rewriteIdealWithRemainder| |finiteBound| |pointColor|
- |every?| |OMbindTCP| |jacobiIdentity?| |dec| |compBound| |taylor|
- |tanQ| |normalDenom| ** |llprop| |resetAttributeButtons| |insertRoot!|
- |antiCommutative?| |tryFunctionalDecomposition?| |OMgetEndError|
- |laurent| |possiblyInfinite?| |var1StepsDefault| |float|
- |problemPoints| |constantOpIfCan| |linearAssociatedOrder|
- |removeRoughlyRedundantFactorsInPols| |rightNorm|
- |stosePrepareSubResAlgo| |tan2cot| |puiseux| |flexibleArray|
- |minordet| |rootBound| |failed| |legendreP| |ranges| |cCsc| EQ
- |s18acf| |palgint0| |symmetricTensors| |scale| |lfintegrate|
- |basisOfCentroid| |midpoint| |nextPrimitiveNormalPoly| |integer?|
- |composite| |inv| |seriesToOutputForm| |elRow2!| |interReduce|
- |overbar| |LyndonCoordinates| |SturmHabichtSequence| |elem?|
- |scripted?| |cycleTail| |ground?| |hdmpToP| |mightHaveRoots|
- |setOfMinN| |npcoef| |internalIntegrate| |karatsubaDivide| |An|
- |imagj| |hyperelliptic| |ground| |squareFreePart| |ravel|
- |realElementary| |conjugate| |directory| |countRealRootsMultiple|
- |thetaCoord| |gramschmidt| |lazyGintegrate| |leadingMonomial|
- |purelyAlgebraicLeadingMonomial?| |rightUnit| |exp1| |element?|
- |reshape| |f01ref| |simpleBounds?| |inf| |fixedPoint|
- |leadingCoefficient| |rk4| |shuffle| |getZechTable|
- |selectMultiDimensionalRoutines| |Hausdorff| |ramifiedAtInfinity?|
- |mainVariable| |atanIfCan| |primitiveMonomials| |setMinPoints3D|
- |e02ajf| GE |float?| |weight| |compiledFunction| |quasiRegular|
- |extractProperty| |reductum| |elliptic| |f02awf| GT
- |subscriptedVariables| |createLowComplexityNormalBasis| |divideIfCan|
- |plus!| |polynomialZeros| |OMcloseConn| |rank| |log10| |henselFact| LE
- |repSq| |nthr| |stoseInvertibleSetreg| |constantLeft| |traceMatrix|
- |sample| |setFieldInfo| |perfectNthPower?| |makeSeries| LT
- |normalizeIfCan| |OMserve| |mix| |update| |c06ebf| |tensorProduct|
- |lprop| |sqfree| |s20adf| |integralMatrixAtInfinity| |f04qaf|
- |zeroDimensional?| |trim| |s21baf| |pushuconst| |exactQuotient|
- |lazyPseudoQuotient| |eq| |s17dlf| GF2FG |cscIfCan| |car| |f04jgf|
- |setValue!| |lazyIrreducibleFactors| |sdf2lst| |determinant| |iter|
- |diophantineSystem| |makeUnit| |unit| |maxint| |cdr| |s19aaf|
- |randnum| |biRank| |sort| |virtualDegree| |push!| |permutation|
- |setPosition| |quasiRegular?| |e02aef| |f01brf| |slex| |hasPredicate?|
- |radicalEigenvector| |baseRDE| |LyndonBasis| |leadingBasisTerm|
- |cross| |mergeDifference| |gcdprim| |quadraticNorm| |OMUnknownSymbol?|
- |palgextint| |digamma| |listOfLists| |position| |laguerre| |nsqfree|
- |moduleSum| |shiftRight| |coefficient| |generic?| |simplify|
- |standardBasisOfCyclicSubmodule| |li| |log2| |denomRicDE| |evaluate|
- |lSpaceBasis| |topFortranOutputStack| |moebius| |child| |random|
- |f01maf| |deref| |curve?| |palgRDE0| |physicalLength| |hermite|
- |infix| |diagonal| |cyclicParents| |extractTop!| |exp| |setprevious!|
- |recur| |iiacos| |createRandomElement| |OMputBVar| |OMputEndAtp|
- |expandTrigProducts| |btwFact| |currentScope| |simplifyPower|
- |leftPower| |OMconnInDevice| |movedPoints| |rightExactQuotient|
- |gderiv| |internalIntegrate0| |inverseLaplace| |monomRDE| |isExpt|
- |acscIfCan| |removeRoughlyRedundantFactorsInContents| |bottom!|
- |corrPoly| |region| |e02dcf| |tanSum|
- |inverseIntegralMatrixAtInfinity| |acschIfCan| |maxdeg| |OMgetBVar|
- |principalIdeal| |randomLC| |rules| |e01daf| |dioSolve|
- |exponentialOrder| |unrankImproperPartitions0| |algDsolve| |subst|
- |permutationRepresentation| |extendIfCan| |members| |lex| |medialSet|
- |cot2tan| |interpretString| |kovacic| |prinb| |critMonD1|
- |numFunEvals3D| |multiEuclidean| |optional?| |integralMatrix| |f01mcf|
- |taylorRep| |contract| |getOperands| |closedCurve| |datalist| |e04ycf|
- |pushdterm| |optpair| |polarCoordinates| |realRoots| |stirling2|
- |trapezoidal| |mathieu23| |printStats!| |showArrayValues|
- |doubleResultant| |f02axf| |implies| |stFunc2| |monomial?|
- |normalized?| |tryFunctionalDecomposition| |sturmSequence|
- |leftQuotient| |objects| |whatInfinity| |f07fef| |associatedEquations|
- |xor| |LyndonWordsList1| |exQuo| |more?| |doubleRank| |minset| |base|
- |subresultantSequence| |mantissa| |normDeriv2| |functionIsOscillatory|
- |OMclose| |cSech| |removeDuplicates!| |critMTonD1| |getExplanations|
- |nilFactor| |c06fuf| |nextSubsetGray| |possiblyNewVariety?| |double|
- |internalInfRittWu?| |cosh2sech| |monicCompleteDecompose|
- |semiSubResultantGcdEuclidean1| |radicalSimplify| |prefix|
- |rightRemainder| |PDESolve| |finiteBasis| |genericLeftTraceForm|
- |polyRicDE| |physicalLength!| |relerror| |diff| |mkcomm| |wreath|
- |genericRightNorm| |squareFreeLexTriangular| |elRow1!| |term?| |pole?|
- |hdmpToDmp| |brace| |cAcoth| |generalTwoFactor|
- |clearFortranOutputStack| |identitySquareMatrix| |errorInfo| |points|
- |convergents| |normalElement| |bfKeys| |test| |copies| |number?|
- |mainCoefficients| |algSplitSimple| |supDimElseRittWu?| |partitions|
- |initiallyReduced?| |bitTruth| |irreducibleFactors| |iiasin|
- |splitSquarefree| |lintgcd| |resetBadValues| |d01ajf| |difference|
- |internal?| |basisOfMiddleNucleus| |iiacsch| |remainder| |vedf2vef|
- |cyclicEqual?| |relationsIdeal| |declare!| |solve| |OMgetAttr|
- |Frobenius| |primPartElseUnitCanonical!| |exponents| |radicalSolve|
- |viewWriteAvailable| |cyclicEntries| |logpart| |value|
- |clipPointsDefault| |vertConcat| |lowerCase?|
- |constantCoefficientRicDE| |cons| |moreAlgebraic?| |sincos|
- |highCommonTerms| |sn| |outputForm| |antisymmetricTensors|
- |mainMonomial| |deleteRoutine!| |curveColor| |squareFree| |chiSquare1|
- |listYoungTableaus| |setScreenResolution| |complexNumericIfCan|
- |shade| |indiceSubResultantEuclidean| |arrayStack| |primextendedint|
- |ord| |numberOfDivisors| |halfExtendedSubResultantGcd2| |ODESolve|
- |previous| |recoverAfterFail| |padicallyExpand| |orbit|
- |resultantEuclidean| |e01sef| |iomode| |leftLcm| |acothIfCan|
- |drawStyle| |fortranCharacter| |tree| |euler| |dihedral|
- |stoseInvertibleSetsqfreg| |setsubMatrix!| |setButtonValue| |#|
- |submod| |solveLinear| |zero| |normInvertible?| |rk4qc|
- |oddInfiniteProduct| |split!| |column| |ScanFloatIgnoreSpacesIfCan|
- |outputSpacing| |lllip| |cSinh| |e01bef| |iiexp| |factorPolynomial|
- |decompose| |nextLatticePermutation| |And| |transcendentalDecompose|
- |modularGcdPrimitive| |e02adf| |term| |fortranComplex| |leadingIdeal|
- |leftUnits| |Or| |setProperty| |char| |reverse!| ^ |minPoints|
- |adaptive?| |clearDenominator| |numberOfOperations| |e02gaf| |s17def|
- |Not| |sum| |readLine!| |OMmakeConn| |aCubic| |OMputEndApp| |lexico|
- |raisePolynomial| |listConjugateBases| |light| |polygon| |printTypes|
- |stFunc1| |curryRight| |OMlistSymbols| |branchPointAtInfinity?|
- |denominator| |viewPhiDefault| |s17dhf| |accuracyIF| |sort!|
- |roughBase?| |upperCase!| |factorOfDegree| |ptFunc| |tubeRadius| |Ci|
- |generalizedContinuumHypothesisAssumed| |makeMulti| |quoByVar|
- |mainSquareFreePart| |stoseInvertibleSet| |rightRankPolynomial|
- |generalizedInverse| |fillPascalTriangle| |logical?| |numerators|
- |power!| |mapmult| |OMreceive| |subset?| |bit?| |imagI|
- |mapUnivariate| |s15aef| |basisOfCommutingElements| |sequences|
- |iprint| |orbits| |Zero| |ode2| |unaryFunction|
- |factorSquareFreeByRecursion| |Aleph| |clearTable!| |palgint|
- |buildSyntax| |intcompBasis| |stronglyReduced?| |setMaxPoints| |One|
- |rCoord| |getMultiplicationMatrix| |f2df| |smith| |minPol| |ode1|
- |symmetricSquare| |e02def| |spherical| |genericPosition| |c06gsf|
- |solve1| |digit?| |comp| |lazyPremWithDefault| |lhs| |rightTrace|
- |curry| |rischDEsys| |rombergo| |bumprow| |hcrf| |scalarTypeOf|
- |primlimintfrac| |rhs| |radicalOfLeftTraceForm| |indices| |expandLog|
- |collectUnder| |stronglyReduce| |constructorName| |conical|
- |associator| |f2st| |bipolarCylindrical| |matrixGcd| |belong?|
- |endSubProgram| |tanNa| |minPoints3D| |logIfCan|
- |numericalOptimization| |exactQuotient!| |next| |int| |showTheIFTable|
- |makeSUP| |push| |groebnerIdeal| |torsionIfCan| |setvalue!| |critT|
- |leftMinimalPolynomial| |qelt| |binomThmExpt| |forLoop| |mainValue|
- |unparse| |primextintfrac| |rightRecip| |sts2stst| |roughUnitIdeal?|
- |systemCommand| |makeCos| |reduceBasisAtInfinity| |createZechTable|
- |asinIfCan| |cyclicCopy| |sinh2csch| |viewWriteDefault| |any?|
- |removeCoshSq| |dequeue!| |outputAsTex| |tanh2trigh| |rightDivide|
- |selectPDERoutines| |approximants| |createNormalPoly| |polar|
- |generalSqFr| |perfectSquare?| |semiDegreeSubResultantEuclidean|
- |SturmHabichtMultiple| |viewSizeDefault| |normal|
- |genericLeftMinimalPolynomial| |f04adf| |uniform| |drawComplex|
- |lfunc| |getStream| |lighting| |leftGcd| |e02bcf|
- |selectFiniteRoutines| |compactFraction| |reducedDiscriminant|
- |simpsono| |coordinates| |mpsode| |homogeneous?| |iiasec| |delete!|
- |append| |lexGroebner| |d01amf| |univariatePolynomialsGcds| |floor|
- |positive?| |safetyMargin| |genericLeftDiscriminant| |scan|
- |eyeDistance| |bivariatePolynomials| |extractPoint| |dflist| NOT
- |delete| |dmpToP| |duplicates| |realZeros| |mathieu22| |removeZeroes|
- |bfEntry| |leftRemainder| |nextIrreduciblePoly| |minGbasis|
- |primintfldpoly| |cAcosh| OR |setAttributeButtonStep| |jordanAlgebra?|
- |cSec| |assign| |setMaxPoints3D| |order| |showTypeInOutput|
- |repeatUntilLoop| |prime| |UpTriBddDenomInv| |extend| AND
- |zeroDimPrimary?| |overset?| |e04jaf| |OMread| |squareFreeFactors|
- |reseed| |bezoutDiscriminant| |complexZeros|
- |factorSquareFreePolynomial| |euclideanSize| |testDim| |green|
- |infieldint| |rightMult| |legendre| |printCode| |lazyIntegrate|
- |halfExtendedSubResultantGcd1| |unit?| |dihedralGroup| |leftFactor|
- |removeSuperfluousCases| |palgRDE| |substring?| |localAbs|
- |cyclicGroup| |algint| |screenResolution3D| |fTable| |nthFactor|
- |loopPoints| |duplicates?| |subTriSet?| |linearDependenceOverZ|
- |evenlambert| |modifyPointData| |stiffnessAndStabilityOfODEIF|
- |times!| |iiGamma| |asimpson| |OMputObject| |equiv?| |complement|
- |separateDegrees| |d03edf| |represents| |OMencodingSGML| |suffix?|
- |printingInfo?| |block| |pushNewContour| |create|
- |showIntensityFunctions| |interpolate| |empty| |palgextint0|
- |setLabelValue| |iiatan| |GospersMethod| |reindex| |totalDegree|
- |doubleDisc| |basisOfCenter| |localIntegralBasis| |adjoint|
- |leastMonomial| |brillhartIrreducible?| |comparison| |boundOfCauchy|
- |linearDependence| |zCoord| |prefix?| |unmakeSUP| |xRange|
- |colorFunction| |setCondition!| |external?| |OMunhandledSymbol|
- |nullity| |extractSplittingLeaf| |sinIfCan| |init| |cothIfCan|
- |basisOfNucleus| |elementary| |eigenvalues| |jacobian| |yRange|
- |nthExponent| |scaleRoots| |f04faf| |semiResultantEuclideannaif|
- |notelem| |multisect| |central?| |nthCoef| |f02bjf| |LazardQuotient|
- |att2Result| |myDegree| |zRange| |createPrimitivePoly| |imagk|
- |argument| |rarrow| |f01bsf| |finite?| |schwerpunkt|
- |leftExactQuotient| |makeVariable| |lists| |eigenvector|
- |createLowComplexityTable| |shellSort| |tail| |bits| |parts| |map!| *
- |euclideanGroebner| |gcdPrimitive| RF2UTS |atrapezoidal| |components|
- |subNode?| |complexNormalize| |OMgetAtp| |cAcsc| |lift| |topPredicate|
- LODO2FUN |top!| |generalPosition| |qsetelt!| |basis|
- |antiAssociative?| |pack!| |OMReadError?| |remove!| |largest|
- |mapExponents| |flatten| |setelt!| |reduce| |eigenvectors| |realSolve|
- |ratPoly| |qPot| |trace2PowMod| |lllp| |symmetricRemainder|
- |solveLinearPolynomialEquationByFractions| |s15adf| |trigs|
- |complexExpand| |OMputVariable| |alternative?| |invertible?|
- |generateIrredPoly| |f04atf| |infix?| |integralBasis| |countable?|
- |iifact| |extendedEuclidean| |maxRowIndex| |genericRightDiscriminant|
- |closed?| F2FG |arguments| |rightOne| |pol| |mask| |setPredicates|
- |choosemon| |mapGen| |f02aaf| |approximate| |OMsend| |setEpilogue!|
- |commaSeparate| |rischDE| |mdeg| |normalForm|
- |extendedSubResultantGcd| |univcase| |meatAxe| |indicialEquations|
- |subCase?| |multinomial| |complex| |hue| |HenselLift| |goodnessOfFit|
- |subHeight| |coefficients| |constantRight| |euclideanNormalForm|
- |limitedIntegrate| |e02akf| |se2rfi| |isOp| |mr| |acsch| |OMreadFile|
- |setProperties| |cCos| |primintegrate| |superscript| |c06ecf|
- |factorList| |d01aqf| |fractionPart| |factorAndSplit|
- |mapUnivariateIfCan| |balancedBinaryTree| |completeEchelonBasis|
- |changeNameToObjf| |nil?| |genus| |mapExpon| |quoted?| |reset|
- |rootOf| |leastPower| |d01gbf| |permanent| |diagonals| |s17adf|
- |multiplyCoefficients| |rightQuotient| |withPredicates| |coth2tanh|
- |algintegrate| |f04axf| |doubleFloatFormat| |outerProduct|
- |associates?| |lastSubResultantElseSplit| |vectorise| |sh| |whileLoop|
- |stoseInternalLastSubResultant| |integralLastSubResultant| |simpson|
- |OMgetType| |tanhIfCan| |collectQuasiMonic| |write|
- |stoseLastSubResultant| |relativeApprox| |findCycle|
- |matrixDimensions| |subspace| |iidprod| |save| |reducedQPowers|
- |stack| |addPointLast| |viewDeltaYDefault| |polyred| |roughSubIdeal?|
- |factor1| |subResultantGcd| |empty?| |lifting1| |rationalPower|
- |fortranLiteralLine| |basicSet| |dictionary| |currentEnv| |f02agf|
- |mainKernel| |tubePointsDefault| |imagi| |roughEqualIdeals?|
- |showFortranOutputStack| |bandedJacobian| |or| |untab| |OMgetApp|
- |head| |integralBasisAtInfinity| |addmod| |predicate| |cAsinh|
- |numberOfCycles| |listexp| |OMputString| |explicitEntries?|
- |patternMatch| |invertIfCan| |deriv| |rightCharacteristicPolynomial|
- |and| |toroidal| |screenResolution| |orOperands| |lazyResidueClass|
- |laurentIfCan| |binaryTree| |errorKind| |compound?|
- |stripCommentsAndBlanks| |coerceP| |aromberg| |lfextlimint| |heap|
- |completeSmith| |readable?| |explicitlyEmpty?| |zeroOf| |mkIntegral|
- |commutative?| |approxNthRoot| |intChoose| |fractRagits| |minus!|
- |prevPrime| |weights| |startTable!| |power| |permutationGroup|
- |aQuadratic| |read!| |OMputEndObject| |lp| |reduction| |monomial|
- |eulerPhi| |f02wef| |monomials| |typeList| |groebner| F |iibinom|
- |iCompose| |goodPoint| |s17akf| |algebraicOf| |critBonD|
- |quadraticForm| |semiResultantReduitEuclidean| |limitPlus| |twoFactor|
- |integralCoordinates| |pdf2df| |internalLastSubResultant| |pquo|
- |symFunc| |morphism| |monomRDEsys| |multivariate|
- |monicDecomposeIfCan| |totalLex| |isQuotient| |diagonalMatrix|
- |dimension| |quadratic| |droot| |credPol| |maxPoints| |arg1| |minrank|
- |edf2efi| |numberOfNormalPoly| |extract!| |rectangularMatrix| |f02aef|
- |variables| |makeYoungTableau| |queue| |groebSolve| |regime| |insert!|
- |ellipticCylindrical| |arg2| |f02ajf| |getMatch| |cycleRagits|
- |directSum| |sin2csc| |iiatanh| |generalizedEigenvector| |multMonom|
- |varList| |c05pbf| |expIfCan| |ScanFloatIgnoreSpaces| |exponential1|
- |ignore?| |tRange| |fortranDoubleComplex| |indiceSubResultant|
- |identification| |s17ahf| |position!| |divisor| |noLinearFactor?|
- |idealiserMatrix| |dark| |hasTopPredicate?| |presub| |overlap|
- |zeroSetSplit| |f04mbf| |aspFilename| |OMencodingBinary|
- |prefixRagits| |conditions| |eisensteinIrreducible?| |maxColIndex|
- |generalizedContinuumHypothesisAssumed?| |wholeRadix| |e01sff|
- |s17acf| |degreeSubResultantEuclidean| |nodes| |curveColorPalette|
- |triangular?| |size?| |leftRegularRepresentation| |leftOne| |ffactor|
- |trigs2explogs| |pushup| |parent| |match| |OMwrite| |equiv| |hash|
- |pseudoQuotient| |sumOfDivisors| |weierstrass| |height| |weighted|
- |ParCond| |divideExponents| |sqfrFactor| |rootSplit| |operators|
- |complexForm| |pointData| |reduceByQuasiMonic| |concat|
- |roughBasicSet| |returnType!| |count| |d03eef| |branchPoint?|
- |palgintegrate| |redPol| |f02akf| |rootKerSimp| |addMatch| |makeprod|
- |operation| |inverseIntegralMatrix| |factorsOfCyclicGroupSize|
- |wordInStrongGenerators| |hitherPlane| |returns| |subMatrix|
- |reducedForm| |printStatement| |dfRange| |sorted?| |quatern|
- |outputAsScript| |invertibleElseSplit?| |repeating|
- |createGenericMatrix| |isPlus| |insertBottom!| |edf2fi|
- |showTheRoutinesTable| |modTree| |cTanh| |domainOf| |firstSubsetGray|
- |swap| |rationalApproximation| |hasoln| |unvectorise| |besselI|
- |simplifyLog| |denominators| |nodeOf?| |mapDown!| |graphs|
- |parabolicCylindrical| |autoReduced?| |leastAffineMultiple| |eulerE|
- |intPatternMatch| |torsion?| |cAcos| |shallowCopy| |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| |Category| |setvalue!| |quasiComponent|
+ |exprToGenUPS| |taylorRep| |balancedBinaryTree| |e01baf|
+ |exprHasLogarithmicWeights| |setEmpty!| |critT| |SturmHabicht|
+ |contract| |completeEchelonBasis| |viewpoint| |viewport2D|
+ |radicalEigenvectors| |select!| |linkToFortran| |selectAndPolynomials|
+ |leftMinimalPolynomial| |hex| |changeNameToObjf| |lowerCase!|
+ |getOperands| |Nul| |pointLists| |partialQuotients| |closeComponent|
+ |binomThmExpt| |reducedSystem| |declare| |yCoordinates|
+ |commutativeEquality| |nextPrime| |closedCurve| |complexNumeric|
+ |nil?| |s17dgf| |newSubProgram| |forLoop| |s17ajf| |log| |point|
+ |objectOf| |e04ycf| |impliesOperands| |genus| |resultantnaif|
+ |hexDigit| |modulus| |mainValue| |positiveSolve| |kernels| |mapExpon|
+ |pushdterm| |firstDenom| |viewZoomDefault| |complexElementary|
+ |comment| |OMgetEndAttr| |monic?| |unparse| |s18dcf|
+ |useEisensteinCriterion| |quoted?| |setStatus| |optpair| |univariate|
+ |rewriteSetByReducingWithParticularGenerators| |differentialVariables|
+ |sizePascalTriangle| |primextintfrac| |norm| |series| |chvar|
+ |polarCoordinates| |kmax| |factorial| |rootOf| |pleskenSplit| |s18def|
+ |expintegrate| |rightRecip| |showSummary| |realRoots| |leastPower|
+ |karatsuba| |e02agf| |usingTable?| |mkPrim| |leftMult| |getRef|
+ |sts2stst| |balancedFactorisation| |stirling2| |partition| |d01gbf|
+ |d02gaf| |pToHdmp| |subresultantVector| |linSolve| |roughUnitIdeal?|
+ |showAttributes| |trapezoidal| |routines| |component| |permanent|
+ |discreteLog| |OMputSymbol| |makeCos| |parametric?| |min| |nand|
+ |mathieu23| |contains?| |diagonals| |unitNormalize|
+ |subResultantsChain| |reduceBasisAtInfinity| |sylvesterSequence|
+ |digit| |printStats!| |s17adf| |oddintegers| |cycleLength| |top|
+ |hMonic| |stopTable!| |createZechTable| |checkRur| BY
+ |nextsousResultant2| |showArrayValues| Y |iitanh|
+ |multiplyCoefficients| |groebner?| |continue| |s17aef|
+ |algebraicCoefficients?| |outputMeasure| |asinIfCan| |doubleResultant|
+ |rightAlternative?| |outputFloating| |rightQuotient| |rule| |color|
+ |cRationalPower| |d02ejf| |matrix| |scalarMatrix| |cyclicCopy| |void|
+ |f02axf| |pattern| |deepCopy| |withPredicates| |string?| |over|
+ |functionIsFracPolynomial?| |upDateBranches| |regularRepresentation|
+ |sinh2csch| |measure| |genericLeftNorm| |stFunc2| |fractionFreeGauss!|
+ |coth2tanh| |numberOfComponents| |exprHasAlgebraicWeight| |generator|
+ |antiCommutator| |viewPosDefault| |viewWriteDefault| |normal?|
+ |OMencodingUnknown| |monomial?| |algintegrate| |e02bef| |powerSum|
+ |iisec| |ceiling| |primeFrobenius| |any?| |associatedSystem| |s19adf|
+ |normalized?| |f04axf| |FormatArabic| |putColorInfo|
+ |jordanAdmissible?| |null| |contours| |numberOfMonomials|
+ |removeCoshSq| |cup| |tryFunctionalDecomposition| |maximumExponent|
+ |doubleFloatFormat| |setClosed| |normalizedAssociate| |mergeFactors|
+ |subPolSet?| |padecf| |dequeue!| |getVariable| |expintfldpoly|
+ |sturmSequence| |insertTop!| |associates?| |real?| |OMgetEndBind| |op|
+ |selectOrPolynomials| |outputAsTex| |taylorIfCan| |listBranches|
+ |indicialEquationAtInfinity| |leftQuotient| |wordInGenerators|
+ |lastSubResultantElseSplit| ~= |listRepresentation| |companionBlocks|
+ |nlde| |tanh2trigh| |remove| |whatInfinity| |reduced?| |flexible?|
+ |vectorise| |makeResult| |pair?| |inspect| |rightDivide| |true|
+ |paraboloidal| |f07fef| |cycle| |sh| |cCsch| |middle| |denomLODE|
+ |selectPDERoutines| |last| |associatedEquations| |style| |match?|
+ |whileLoop| |clearTheFTable| |approximants| |rightZero| |d01apf| |lo|
+ |pointPlot| |assoc| |linearlyDependent?| |LyndonWordsList1|
+ |lazyPseudoDivide| |SFunction| |stoseInternalLastSubResultant|
+ |createNormalPoly| |changeThreshhold| |argumentListOf| |testModulus|
+ |incr| |radicalEigenvalues| |fortran| |exQuo| |f04mcf| |invertibleSet|
+ |integralLastSubResultant| |uncouplingMatrices| |continuedFraction|
+ |polar| |rightScalarTimes!| |OMUnknownCD?| |lookup| |hi|
+ |alphanumeric| |retract| |makingStats?| |more?| |validExponential|
+ |simpson| |lastSubResultantEuclidean| |infiniteProduct|
+ |basisOfRightNucloid| |getGoodPrime| |splitNodeOf!| |symbol|
+ |generalSqFr| |getConstant| |complex?| |outputList| |doubleRank|
+ |increasePrecision| |OMgetType| |firstNumer| |basisOfRightNucleus|
+ |cSin| |cAsech| |mindegTerm| |perfectSquare?| |cycleEntry| |mathieu12|
+ ~ |toseInvertibleSet| |minset| |noKaratsuba| |singular?| |tanhIfCan|
+ |primPartElseUnitCanonical| |userOrdered?| |stirling1| |string|
+ |semiDegreeSubResultantEuclidean| |children| |integer| |infRittWu?|
+ |cyclic| |atom?| |outputArgs| |leftTraceMatrix| |subresultantSequence|
+ |janko2| |collectQuasiMonic| |summation| |infinityNorm| |s17dcf|
+ |totalGroebner| |SturmHabichtMultiple| |tube| |ReduceOrder|
+ |weakBiRank| |realEigenvectors| |fortranLiteral| |normDeriv2|
+ |principal?| |stoseLastSubResultant| |linears| |e02bbf|
+ |nonLinearPart| |csch2sinh| |linearMatrix| |viewSizeDefault|
+ |functionIsContinuousAtEndPoints| |s14baf| |functionIsOscillatory|
+ |saturate| |associatorDependence| |relativeApprox| |s19acf| |besselK|
+ |genericLeftMinimalPolynomial| |monomialIntegrate|
+ |lazyPseudoRemainder| |imagE| |OMclose| |bat| |numerator| |findCycle|
+ |selectOptimizationRoutines| |readLineIfCan!| = |increase| |f04adf|
+ |chiSquare| |open| |normalise| |recolor| |bitLength| |cSech|
+ |matrixDimensions| |segment| |nextNormalPoly| |triangularSystems|
+ |clearCache| |representationType| |uniform| |frst|
+ |definingPolynomial| |OMopenString| |removeDuplicates!| |B1solve|
+ |iiasinh| |subspace| |e04naf| |viewDefaults| < |nor| |drawComplex|
+ |psolve| |binomial| |level| |transcendenceDegree| |iidprod|
+ |mathieu24| |commutator| > |lfunc| |d01alf| |iiacosh| |idealiser|
+ |interpret| |nsqfree| |bivariateSLPEBR| |axes| |reducedQPowers|
+ |e02ddf| |retractable?| <= |expr| |leader| |LiePoly| |getStream|
+ |list| |discriminant| |useNagFunctions| |c05nbf| |stopMusserTrials|
+ |moduleSum| |iiacot| |addPointLast| |mainDefiningPolynomial| >=
+ |safeFloor| |Vectorise| |generate| |lighting| |extendedIntegrate|
+ |setDifference| |script| |var2StepsDefault| |setref| |shiftRight|
+ |df2ef| |viewDeltaYDefault| |inverseColeman| |output|
+ |setIntersection| |perspective| |tubePoints| |symbolIfCan| |rroot|
+ |coefficient| |fibonacci| |polyred| |separant| |stoseInvertibleSet|
+ |incrementBy| |clipBoolean| |setUnion| |cartesian| |variable?|
+ |makeTerm| |generic?| |checkPrecision| |equation| |roughSubIdeal?|
+ |mesh?| |f07adf| |variable| + |rightRankPolynomial| |expand| |apply|
+ |basisOfLeftNucloid| |atoms| |simplify| |cycleSplit!| |factor1|
+ |lazyVariations| |sizeMultiplication| - |generalizedInverse|
+ |filterWhile| |getCode| |f02fjf|
+ |rewriteIdealWithQuasiMonicGenerators|
+ |standardBasisOfCyclicSubmodule| |RittWuCompare| |fprindINFO|
+ |identityMatrix| / |fillPascalTriangle| |filterUntil| |size| |log2|
+ |makeop| |decreasePrecision| |dominantTerm| |edf2ef| |OMReadError?|
+ |rank| |enumerate| |pointSizeDefault| |logical?| |select|
+ |fortranInteger| |tex| |rational| |remove!| |denomRicDE|
+ |OMgetEndBVar| |multiple?| |t| |createNormalElement| |pureLex|
+ |numerators| |explogs2trigs| |resetVariableOrder| |evaluate|
+ |algebraic?| |largest| |extensionDegree| |squareFreePrim| |poisson|
+ |power!| |isobaric?| |lSpaceBasis| |makeFloatFunction| |close|
+ |preprocess| |extractIfCan| |mapExponents| |bringDown|
+ |fortranCarriageReturn| |po| |mapmult| |iflist2Result| |palgintegrate|
+ |topFortranOutputStack| |insert| |setelt!| |OMputFloat| |rightLcm|
+ |removeIrreducibleRedundantFactors| |shift| |sechIfCan| |ListOfTerms|
+ |incrementKthElement| |OMreceive| |redPol| |nonSingularModel|
+ |dAndcExp| |moebius| |rquo| |OMputInteger| |eigenvectors| |mainForm|
+ |rationalFunction| |expandPower| |subset?| SEGMENT |f02akf|
+ |indicialEquation| |condition| |realEigenvalues| |display| |child|
+ |listLoops| |realSolve| |initTable!| |exprHasWeightCosWXorSinWX|
+ |bit?| |rootKerSimp| |makeRecord| |cap| |tValues| |adaptive| |f01maf|
+ |ratPoly| |operator| |selectNonFiniteRoutines| |imagI| |addMatch|
+ |charClass| |refine| |conditionsForIdempotents| |deref| |qPot| |build|
+ |mapUnivariate| |makeprod| |upperCase?| |genericLeftTrace| |zero|
+ |evaluateInverse| |curve?| |trace2PowMod| |gcdPolynomial| |s15aef|
+ |inverseIntegralMatrix| |factorGroebnerBasis| |makeViewport2D|
+ |palgRDE0| |tab1| |lllp| |escape| |basisOfCommutingElements|
+ |factorsOfCyclicGroupSize| |input| |leadingSupport| |hasSolution?|
+ |physicalLength| |certainlySubVariety?| |symmetricRemainder|
+ |laguerreL| |sequences| |wordInStrongGenerators| |knownInfBasis|
+ |library| |nthRoot| |probablyZeroDim?| |hermite|
+ |solveLinearPolynomialEquationByFractions| |generalLambert| |iprint|
+ |hitherPlane| |iicosh| |leftNorm| |exists?| |infix| |s15adf|
+ |ratDenom| |orbits| |returns| |zag| |sup| |diagonal| |trigs| |result|
+ |csch| |startTableGcd!| |ode2| |subMatrix| |getCurve| |factorFraction|
+ |cyclicParents| |complexExpand| |asinh| |mainContent| |unaryFunction|
+ |reducedForm| |lambert| |extractTop!| |insertMatch| |OMputVariable|
+ |subst| |innerSolve1| |acosh| |factorSquareFreeByRecursion|
+ |printStatement| |set| |argumentList!| |setprevious!| |alternative?|
+ |atanh| |nonQsign| |Aleph| |dfRange| |triangSolve| |recur|
+ |invertible?| |totalDifferential| |acoth| |clearTable!| |sorted?|
+ |datalist| |id| |interval| |iiacos| |generateIrredPoly|
+ |createMultiplicationTable| |asech| |palgint| |quatern| |compile|
+ |OMgetEndApp| |createRandomElement| |f04atf| |computeCycleLength|
+ |buildSyntax| |outputAsScript| |table| |iiperm| |OMputBVar|
+ |integralBasis| |objects| |rotatex| |multiple| |intcompBasis| |ptree|
+ |invertibleElseSplit?| |new| |calcRanges| |OMputEndAtp| |countable?|
+ |base| |fracPart| |applyQuote| |stronglyReduced?| |repeating| |yellow|
+ |space| |expandTrigProducts| |iifact| |ran| |setMaxPoints|
+ |modifyPoint| |exprToUPS| |createGenericMatrix| |call| |computeBasis|
+ |bumptab| |btwFact| |extendedEuclidean| |totolex| |skewSFunction|
+ |rCoord| |isPlus| |resultantReduit| |qfactor| |show| |graphStates|
+ |currentScope| |maxRowIndex| |ruleset| |BumInSepFFE|
+ |getMultiplicationMatrix| |singleFactorBound| |insertBottom!|
+ |areEquivalent?| |constantIfCan| |mvar| |simplifyPower|
+ |genericRightDiscriminant| |systemSizeIF| |f2df| |explimitedint|
+ |reverse| |edf2fi| |geometric| |rename| |round| |complete| |trace|
+ |leftPower| |closed?| |var2Steps| |sub| |smith| |showTheRoutinesTable|
+ |brillhartTrials| |fmecg| |removeSuperfluousQuasiComponents|
+ |OMconnInDevice| F2FG |swapColumns!| |suchThat| |minPol|
+ |resultantReduitEuclidean| |modTree| |lagrange| |numberOfHues|
+ |scopes| |movedPoints| |rightOne| |constant?| |positiveRemainder|
+ |ode1| |cTanh| |iisin| |fill!| |entries| |tower| |rightExactQuotient|
+ |pol| |cCot| |symmetricSquare| |normFactors| |center| |domainOf|
+ |algebraicVariables| |genericRightTrace| |numericIfCan| |gderiv|
+ |setPredicates| |makeSin| |invmod| |e02def| |parabolic|
+ |firstSubsetGray| |initial| |left| |constantKernel| |delay|
+ |internalIntegrate0| |choosemon| |lastSubResultant| |spherical| |swap|
+ |sumOfKthPowerDivisors| |right| |binaryTournament| |OMgetObject|
+ |inverseLaplace| |factor| |mapGen| |property| |previous| |integral?|
+ |genericPosition| |rationalApproximation| |newLine| |var1Steps|
+ |semiIndiceSubResultantEuclidean| |sqrt| |monomRDE| |f02aaf| |plot|
+ |c06gsf| |hasoln| |airyAi| |tab| |isExpt| |real| |OMsend| |divisors|
+ |extension| |solve1| |unvectorise| |harmonic| |acscIfCan| |imag|
+ |setEpilogue!| |units| |nextNormalPrimitivePoly| |mulmod|
+ |lazyPremWithDefault| |besselI| |findBinding| |directProduct|
+ |removeRoughlyRedundantFactorsInContents| |commaSeparate|
+ |semiResultantEuclidean2| |leftExtendedGcd| |rightTrace| |simplifyLog|
+ |tubePlot| |bottom!| |rischDE| |specialTrigs| |curry| |denominators|
+ |rischNormalize| |optimize| |univariate?| |corrPoly| |destruct| |mdeg|
+ |pastel| |toseSquareFreePart| |rischDEsys| |and?| |nodeOf?| |eq?|
+ |bindings| |region| |normalForm| |constantToUnaryFunction|
+ |leftDivide| |rombergo| |mapDown!| |OMputEndBind| |kroneckerDelta|
+ |type| |e02dcf| |code| |extendedSubResultantGcd| |singularitiesOf|
+ |subQuasiComponent?| |bumprow| |typeLists| |graphs| |tanSum|
+ |univcase| |intermediateResultsIF| |primitive?| |nil| |hcrf|
+ |parabolicCylindrical| |rowEchelon| |d03faf| |integral|
+ |inverseIntegralMatrixAtInfinity| |root?| |meatAxe| |character?|
+ |inHallBasis?| |scalarTypeOf| |print| |cubic| |autoReduced?| |index?|
+ |adaptive3D?| |acschIfCan| |indicialEquations| |increment|
+ |returnTypeOf| |primlimintfrac| |leastAffineMultiple| |updateStatus!|
+ |viewport3D| |fullDisplay| |maxdeg| |subCase?| |second| |elColumn2!|
+ |monicLeftDivide| |radicalOfLeftTraceForm| |lflimitedint| |eulerE|
+ |equivOperands| |OMgetBVar| |radicalRoots| |multinomial| |third|
+ |c02aff| |clearTheSymbolTable| |asechIfCan| |indices|
+ |intPatternMatch| |internalDecompose| |iilog| |powerAssociative?|
+ |principalIdeal| |rootsOf| |hue| |function| |OMputAttr| |setFormula!|
+ |c06gbf| |lift| |expandLog| |torsion?| |decomposeFunc|
+ |stoseSquareFreePart| |randomLC| |HenselLift| |mat| |radix|
+ |solveLinearPolynomialEquationByRecursion| |numberOfComposites|
+ |reduce| |collectUnder| |binary| |cAcos| |divideIfCan!|
+ |goodnessOfFit| |quartic| |primitiveElement| |trivialIdeal?| |csc2sin|
+ |stronglyReduce| |shallowCopy| |shiftLeft| |cExp| |setFieldInfo|
+ |startTableInvSet!| |subHeight| |expt| |or?| |option?| |rename!|
+ |arguments| |conical| |OMgetError| |removeSquaresIfCan|
+ |alphanumeric?| |perfectNthPower?| |coefficients| |check| |mirror|
+ |factorials| |quasiMonic?| |associator| |qelt| |find| |makeSeries|
+ |coerceListOfPairs| |constantRight| |getButtonValue| |lfextendedint|
+ |copy!| |acoshIfCan| |normalizeIfCan| |dmp2rfi| |euclideanNormalForm|
+ |setProperties!| |showClipRegion| |complementaryBasis| |maxIndex|
+ |oddInfiniteProduct| |measure2Result| |complexEigenvectors| |OMserve|
+ |limitedIntegrate| |ramified?| |square?| |deepestInitial| |octon|
+ |split!| |leviCivitaSymbol| |SturmHabichtCoefficients| |mix| |case|
+ |e02akf| |coerce| |musserTrials| |OMsupportsSymbol?| |elliptic?|
+ |rspace| |unprotectedRemoveRedundantFactors| |column| |f01rdf|
+ |c06ebf| |iFTable| |construct| |rightExtendedGcd| |OMputEndError|
+ |rationalPoints| |stopTableGcd!| |iExquo| |ScanFloatIgnoreSpacesIfCan|
+ |linearDependence| |nextSublist| |postfix| |tensorProduct| |s18adf|
+ |asecIfCan| |jacobi| |key?| |outputSpacing| |rowEch| |rdHack1| |Gamma|
+ |prinpolINFO| |lprop| |besselY| |alternatingGroup| |zCoord|
+ |intersect| D |KrullNumber| |cos2sec| |rootProduct| |lllip| |maxrow|
+ |colorDef| |linearAssociatedExp| |predicate| |sqfree| |compose|
+ |anfactor| |unmakeSUP| |subtractIfCan| |df2mf| |lcm| |cSinh|
+ |tan2trig| |chebyshevT| |collectUpper| |bright| |graphImage|
+ |stopTableInvSet!| |s20adf| |exquo| |colorFunction| |purelyAlgebraic?|
+ |expenseOfEvaluationIF| |limit| |e01bef| |currentCategoryFrame|
+ |showTheSymbolTable| |setTex!| |ScanFloatIgnoreSpaces|
+ |integralMatrixAtInfinity| |noncommutativeJordanAlgebra?| |Beta| |div|
+ |permutations| |setCondition!| |intensity| |setClipValue| |connect|
+ |iiexp| |OMgetInteger| |fi2df| |unitCanonical| |exponential1|
+ |alternating| |c06frf| |f04qaf| |quo| |acotIfCan| |external?|
+ |linearlyDependentOverZ?| |setRealSteps| |gcd| |subscript| |ldf2lst|
+ |latex| |fortranCompilerName| |factorPolynomial| |ignore?|
+ |binarySearchTree| |symbolTableOf| |partialNumerators|
+ |zeroDimensional?| |e04gcf| |OMunhandledSymbol| |range|
+ |degreeSubResultant| |union| |cAcot| UP2UTS |s13adf| |decompose|
+ |tRange| |pdf2ef| |eval| |primlimitedint| |s21bcf| |rem| |trim|
+ |concat!| |nullity| |first| |false| |acosIfCan| |iitan| |iisinh|
+ |prepareDecompose| |nextLatticePermutation| |fortranDoubleComplex|
+ |updatF| |bivariate?| |s21baf| |ScanRoman| |removeConstantTerm|
+ |extractSplittingLeaf| |xRange| |rest| |reify| |reorder|
+ |showTheFTable| |OMencodingXML| |transcendentalDecompose|
+ |indiceSubResultant| |reciprocalPolynomial| |resize| |monomialIntPoly|
+ |pushuconst| |d01akf| |sinIfCan| |substitute| |yRange| |isMult|
+ |freeOf?| |lowerCase| |modularGcdPrimitive| |selectfirst|
+ |identification| |basisOfLeftAnnihilator| |palgLODE0| |checkForZero|
+ |exactQuotient| |lyndon| |cothIfCan| |removeDuplicates| |zRange|
+ |basisOfNucleus| |clipWithRanges| |fortranDouble| |bombieriNorm|
+ |c06eaf| |e02adf| |s17ahf| |/\\| |lists| |linear?| |radPoly| |schema|
+ |lazyPseudoQuotient| |bracket| |parts| |purelyTranscendental?| |map!|
+ |setrest!| |applyRules| |transcendent?| |term| |node?| |position!|
+ |evenInfiniteProduct| |elementary| |cyclotomic| |s17dlf|
+ |mainPrimitivePart| |iicoth| |OMgetFloat| |qsetelt!| |imagJ|
+ |fglmIfCan| |fortranComplex| |symbol?| |divisor| |clearTheIFTable|
+ |pointColorPalette| |normalizedDivide| |eigenvalues| GF2FG |redPo|
+ |bsolve| |andOperands| |leadingIdeal| |badNum| |selectPolynomials|
+ |polygon?| |noLinearFactor?| |low| |createMultiplicationMatrix|
+ |sech2cosh| |exptMod| |cscIfCan| |jacobian| |hasHi| |setelt| |powers|
+ |leftUnits| |Ei| |const| |factorset| |idealiserMatrix|
+ |fullPartialFraction| |getPickedPoints|
+ |dimensionOfIrreducibleRepresentation| |f04jgf| |nthExponent|
+ |squareTop| |setProperty!| |setProperty| |f02aff| |innerint|
+ |direction| |dark| |getProperties| |plus| |separate| |setValue!|
+ |commonDenominator| |scaleRoots| |notOperand| |copy|
+ |integralRepresents| |reverse!| |pushucoef| |s20acf| |tanh2coth|
+ |hasTopPredicate?| |cTan| |s13aaf| |lazyIrreducibleFactors| |not|
+ |f04faf| |pToDmp| |acsch| |rationalPoint?| |createIrreduciblePoly|
+ |useEisensteinCriterion?| |numberOfFractionalTerms| |minPoints|
+ |presub| |totalfract| |sdf2lst| |groebgen|
+ |semiResultantEuclideannaif| |degree| ^= |limitedint| |badValues|
+ |csubst| |symbolTable| |adaptive?| |internalSubQuasiComponent?|
+ |linGenPos| |overlap| |properties| |rk4a| |quasiAlgebraicSet|
+ |determinant| |bag| |notelem| |autoCoerce| |taylorQuoByVar| |identity|
+ |optAttributes| |headRemainder| |clearDenominator| |setAdaptive3D|
+ |zeroSetSplit| |toScale| |iidsum| |diophantineSystem| |setImagSteps|
+ |multisect| |numberOfOperations| |s21bdf| |pushFortranOutputStack|
+ |pmintegrate| |rightFactorIfCan| |graphState| |f01rcf| |f04mbf| |max|
+ |leftZero| |writable?| |makeUnit| |central?| |trailingCoefficient|
+ |expenseOfEvaluation| |popFortranOutputStack| |controlPanel|
+ |wrregime| |redmat| |e02gaf| |surface| |aspFilename| |predicates|
+ |say| |cyclePartition| |unit| |gcdcofactprim| |distdfact| |nthCoef|
+ |fortranLogical| |chineseRemainder| |OMreadStr| |leaves|
+ |rationalIfCan| |outputAsFortran| |solveid| |s17def|
+ |OMencodingBinary| |vconcat| |translate| |initiallyReduce| |maxint|
+ |insertionSort!| |f02bjf| |move| |makeEq| |keys| |primitivePart!|
+ |FormatRoman| |mindeg| |readLine!| |splitDenominator|
+ |factorSFBRlcUnit| |prefixRagits| |tracePowMod| |s19aaf| |times|
+ |repeating?| |unravel| |LazardQuotient| |bezoutResultant| |socf2socdf|
+ |OMmakeConn| |setVariableOrder| |LazardQuotient2| |deepestTail|
+ |eisensteinIrreducible?| |conditionP| |decimal| |ratpart| |randnum|
+ |hexDigit?| |att2Result| |newReduc| |mapSolve| |null?| |prod| |aCubic|
+ |tableau| |maxColIndex| |setStatus!| |fixPredicate| |biRank|
+ |toseLastSubResultant| |divisorCascade| |myDegree| |pascalTriangle|
+ |cAtanh| |minRowIndex| |sumSquares| |OMputEndApp|
+ |generalizedContinuumHypothesisAssumed?| |alphabetic| |transform|
+ |virtualDegree| |integrate| |rootNormalize| |createPrimitivePoly|
+ |integers| |leadingCoefficientRicDE| |maxrank| |c06fpf| |lexico|
+ |wholeRadix| |derivationCoordinates| |nextPartition| |push!| |monom|
+ |imagk| |removeZero| |even?| |showAllElements| |createThreeSpace|
+ |hclf| |raisePolynomial| |setlast!| |e01sff| |genericRightTraceForm|
+ |permutation| |row| |argument| |makeViewport3D|
+ |cyclotomicDecomposition| |packageCall| |listConjugateBases|
+ |dmpToHdmp| |cotIfCan| |exponential| |key| |characteristicPolynomial|
+ |s17acf| |coord| |setPosition| |symmetricPower| |figureUnits| |rarrow|
+ |iiacoth| |back| |options| |messagePrint| |isList| |asinhIfCan|
+ |light| |pseudoRemainder| |degreeSubResultantEuclidean| |common|
+ |nextsubResultant2| |s19abf| |quasiRegular?| |separateFactors|
+ |f01bsf| |generic| |solid?| |LyndonWordsList| |createPrimitiveElement|
+ |rk4f| |polygon| |lineColorDefault| |nodes| |unary?| |edf2df| |e02aef|
+ |pushdown| |cPower| |finite?| |fortranReal| |transpose| |elt|
+ |setchildren!| |inR?| |redpps| |filename| |printTypes|
+ |curveColorPalette| |wronskianMatrix| |irreducibleRepresentation|
+ |f01brf| |schwerpunkt| |getMeasure| |argscript| |heapSort|
+ |mainMonomials| |rightPower| |initializeGroupForWordProblem| |romberg|
+ |stFunc1| |triangular?| |basisOfRightAnnihilator| |complexEigenvalues|
+ |slex| |revert| |lifting| |leftExactQuotient| |setErrorBound| |write!|
+ |curryRight| |OMParseError?| |vector| |mainVariables| |not?|
+ |setPrologue!| |size?| |makeVariable| |iicsc| |operation| |e02zaf|
+ |rightUnits| |hasPredicate?| |leftCharacteristicPolynomial| |prime?|
+ |someBasis| |leadingIndex| |sPol| |parametersOf| |parse|
+ |differentiate| |OMlistSymbols| |fixedPoints|
+ |leftRegularRepresentation| |mapUp!| |presuper| |reverseLex|
+ |radicalEigenvector| |clipParametric| |eigenvector| |clip|
+ |characteristic| |df2st| |cond| |branchPointAtInfinity?| |meshPar1Var|
+ |absolutelyIrreducible?| |enterPointData| |leftOne|
+ |exteriorDifferential| |UnVectorise| |baseRDE| |has?|
+ |createLowComplexityTable| |imaginary| |aQuartic| |modularFactor|
+ |d02bbf| |seed| |isTimes| |e02dff| |denominator| |ffactor| |delta|
+ |palglimint0| |setright!| |LyndonBasis| |shellSort| |OMconnectTCP|
+ |cn| |cAcsch| |implies?| |collect| |normalize| |viewPhiDefault|
+ |trigs2explogs| |drawToScale| |leadingBasisTerm|
+ |unrankImproperPartitions1| |bits| |drawCurves| |iicot| |d01asf|
+ |getSyntaxFormsFromFile| |s17dhf| |particularSolution| |dim| |pushup|
+ |createNormalPrimitivePoly| |computePowers| |cross|
+ |euclideanGroebner| |d01anf| |accuracyIF| |tanAn| |solveRetract|
+ |tanintegrate| |laplacian| |parent| |solveLinearPolynomialEquation|
+ |mergeDifference| |removeRoughlyRedundantFactorsInPol| |gcdPrimitive|
+ |inGroundField?| |sizeLess?| |sort!| |primes| |sinhIfCan|
+ |viewDeltaXDefault| |OMwrite| |gcdprim| |strongGenerators|
+ |normalDeriv| RF2UTS |width| |stFuncN| |subResultantChain|
+ |roughBase?| |nullSpace| |equiv| |quadraticNorm| |numFunEvals|
+ |f04arf| |atrapezoidal| |s17agf| |unitVector| |cycleElt| |upperCase!|
+ |callForm?| |pseudoQuotient| |OMUnknownSymbol?| |aLinear| |computeInt|
+ |components| |completeEval| |OMputAtp| |omError| |module|
+ |factorOfDegree| |lambda| |sumOfDivisors| |palgextint| |zoom|
+ |primeFactor| |subNode?| |bubbleSort!| |cardinality| |ptFunc|
+ |cot2trig| |weierstrass| |OMgetBind| |digamma|
+ |rightRegularRepresentation| |complexNormalize| |constant|
+ |singularAtInfinity?| |tubeRadius| |bernoulliB| |one?| |weighted|
+ |critpOrder| |listOfLists| |OMgetAtp| |writeLine!| |makeFR| |Ci|
+ |optional| |algebraicSort| |ParCond| |plenaryPower| |laguerre|
+ |modularGcd| |cAcsc| |reflect| |generalizedContinuumHypothesisAssumed|
+ |rotate!| |divideExponents| |dimensionsOf| |topPredicate| |erf|
+ |makeMulti| |index| |primitivePart| |sqfrFactor| |cycleTail|
+ |newTypeLists| LODO2FUN |mesh| |quoByVar| |rootSplit| |hdmpToP| |top!|
+ |leadingTerm| |mainSquareFreePart| |multiplyExponents| |operators|
+ |mightHaveRoots| |generalPosition| |cyclicSubmodule| |dilog| |pair|
+ |complexForm| |setOfMinN| |binding| |basis| |sin| |cyclicEqual?|
+ |resultant| |pointData| |stop| |npcoef| |antiAssociative?|
+ |PollardSmallFactor| |formula| |cos| |relationsIdeal|
+ |fixedPointExquo| |reduceByQuasiMonic| |internalIntegrate| |\\/|
+ |updatD| |pack!| |tan| |setleaves!| |solve| |roughBasicSet|
+ |karatsubaDivide| |cot| |OMgetAttr| |paren| |returnType!| |An| |green|
+ |super| |is?| |sec| |rootSimp| |Frobenius| |d03eef| |imagj|
+ |infieldint| |supRittWu?| |lepol| |zero?| |pr2dmp| |csc| |numer|
+ |primPartElseUnitCanonical!| |nrows| |branchPoint?| |hyperelliptic|
+ |rightMult| |internalAugment| |exponents| |d01gaf| |pop!| |asin|
+ |axesColorDefault| |denom| |ncols| |squareFreePart| |getDatabase|
+ |legendre| |backOldPos| |imagK| |acos| |radicalSolve| |invmultisect|
+ |aQuadratic| |message| |realElementary| |status| |ldf2vmf| |printCode|
+ |f02adf| |atan| |normal01| |extractClosed| |rightTrim| |pi|
+ |viewWriteAvailable| |read!| |conjugate| |solveInField|
+ |lazyIntegrate| |obj| |d02gbf| |content| |acot| |infinity| |ridHack1|
+ |leftTrim| |cyclicEntries| |OMputEndObject| |countRealRootsMultiple|
+ |drawComplexVectorField| |halfExtendedSubResultantGcd1| |rightRank|
+ |blue| |linearPart| |asec| |logpart| |cache| |reduction| |thetaCoord|
+ |in?| |unit?| |iicos| |clipPointsDefault| |f01qcf| |acsc|
+ |plusInfinity| |sturmVariationsOf| |eulerPhi| |name| |rootRadius|
+ |gramschmidt| |dihedralGroup| |cons| |leftDiscriminant| |vertConcat|
+ |s14aaf| |sinh| |terms| |minusInfinity| |subNodeOf?| |f02wef| |dom|
+ |lazyGintegrate| |divergence| |leftFactor| |label| |lowerCase?|
+ |leftScalarTimes!| |cosh| |enqueue!| |list?| |monomials|
+ |purelyAlgebraicLeadingMonomial?| |charthRoot|
+ |removeSuperfluousCases| |sumOfSquares| |kernel| |tanh|
+ |constantCoefficientRicDE| |stoseIntegralLastSubResultant| |besselJ|
+ |typeList| |wholePart| |rightUnit| |palgRDE| |enterInCache| |draw|
+ |coth| |moreAlgebraic?| |polygamma| |stoseInvertible?sqfreg|
+ |monicDivide| |groebner| |headReduced?| |exp1| |localAbs| |coshIfCan|
+ |extractBottom!| |d02kef| |sech| |sincos| |allRootsOf| |iibinom|
+ |leftRecip| |element?| |cyclicGroup| |inverse| |setRow!|
+ |highCommonTerms| |eigenMatrix| |odd?| |iCompose| |f01ref|
+ |appendPoint| |algint| |title| |alphabetic?| |sn| |cCoth| |f02xef|
+ |goodPoint| |simpleBounds?| |screenResolution3D|
+ |rewriteSetWithReduction| |makeObject| |inc| |cAsin| |outputForm|
+ |hspace| |graphCurves| |s17akf| |e| |inf| |logGamma| |fTable|
+ |ricDsolve| |antisymmetricTensors| |constDsolve| |algebraicOf| |error|
+ |fixedPoint| |nthFactor| |pdct| |mainMonomial| |coHeight| |coef|
+ |critBonD| |rk4| |assert| |close!| |loopPoints| |ef2edf|
+ |deleteRoutine!| |quadraticForm| |shuffle| |qinterval| |duplicates?|
+ |curveColor| |bat1| |semiResultantReduitEuclidean| |debug|
+ |getZechTable| |ideal| |subTriSet?| |option| |inRadical?| |squareFree|
+ |limitPlus| |selectMultiDimensionalRoutines| |lazyEvaluate|
+ |linearDependenceOverZ| |Lazard| |chiSquare1| |twoFactor| |Hausdorff|
+ |integralAtInfinity?| |evenlambert| |iicsch| |listYoungTableaus|
+ |integralCoordinates| |node| |ramifiedAtInfinity?| |entry| |debug3D|
+ |modifyPointData| |s18aff| |setScreenResolution| |pdf2df|
+ |mainVariable| |red| |stiffnessAndStabilityOfODEIF| |rootPower|
+ |complexNumericIfCan| |internalLastSubResultant| |atanIfCan| |taylor|
+ |times!| |merge| ** |integerBound| |shade| |pquo| |setMinPoints3D|
+ |laurent| |iiGamma| |ScanArabic| |float| |slash|
+ |indiceSubResultantEuclidean| |symFunc| |e02ajf| |puiseux| |asimpson|
+ |bumptab1| |failed| |arrayStack| |scanOneDimSubspaces| |morphism| EQ
+ |float?| |OMputObject| |chebyshevU| |rangeIsFinite| |primextendedint|
+ |monomRDEsys| |weight| |inv| |cCosh| |equiv?| |ord| |subSet|
+ |monicDecomposeIfCan| |ground?| |compiledFunction| |complement|
+ |fixedDivisor| |ravel| |groebnerFactorize| |numberOfDivisors|
+ |totalLex| |ground| |quasiRegular| |separateDegrees| |iiabs|
+ |directory| |zeroDim?| |reshape| |halfExtendedSubResultantGcd2|
+ |diagonalMatrix| |leadingMonomial| |extractProperty| |gbasis| |d03edf|
+ |laplace| |ODESolve| |dimension| |elliptic| |leadingCoefficient|
+ |represents| |e01bhf| |basisOfLeftNucleus| |recoverAfterFail|
+ |removeSinhSq| |quadratic| |f02awf| |primitiveMonomials| |zeroMatrix|
+ |OMencodingSGML| GE |localUnquote| |padicallyExpand|
+ |patternMatchTimes| |droot| |subscriptedVariables| |reductum|
+ |isPower| |printingInfo?| GT |printInfo| |orbit| |setAdaptive|
+ |definingInequation| |credPol| |createLowComplexityNormalBasis|
+ |block| |d01fcf| LE |completeHensel| FG2F |resultantEuclidean|
+ |update| |maxPoints| |divideIfCan| |pushNewContour| |traverse| LT
+ |shallowExpand| |rowEchelonLocal| |e01sef| |minrank| |plus!|
+ |setleft!| |create| |iomode| |car| |expextendedint|
+ |semicolonSeparate| |edf2efi| |polynomialZeros| |goto| |eq|
+ |showIntensityFunctions| |binaryFunction| |rangePascalTriangle| |cdr|
+ |addPoint| |leftLcm| |vspace| |numberOfNormalPoly| |iter|
+ |OMcloseConn| |interpolate| |outlineRender| |e04ucf| |factorsOfDegree|
+ |OMputEndAttr| |acothIfCan| |child?| |extract!| |sort| |log10| |empty|
+ |coth2trigh| UTS2UP |zeroDimPrime?| |palgLODE| |drawStyle|
+ |tubeRadiusDefault| |rectangularMatrix| |henselFact|
+ |oneDimensionalArray| |palgextint0| |less?| |rootPoly|
+ |fortranCharacter| |lfinfieldint| |monicRightFactorIfCan| |position|
+ |f02aef| |moduloP| |repSq| |setLabelValue| |c06gcf| |rightGcd|
+ |OMputBind| |euler| |yCoord| |makeYoungTableau|
+ |removeRedundantFactors| |nthr| |iiatan| |consnewpol| |dihedral|
+ |sncndn| |trunc| |addiag| |queue| |moebiusMu| |li|
+ |stoseInvertibleSetreg| |GospersMethod| |ratDsolve| |signAround|
+ |lexTriangular| |stoseInvertibleSetsqfreg| |mapdiv| |groebSolve|
+ |random| |defineProperty| |constantLeft| |reindex| |e02daf|
+ |normalizeAtInfinity| |cylindrical| |leftUnit| |setsubMatrix!|
+ |digits| |regime| |sign| |traceMatrix| |exp| |totalDegree| |epilogue|
+ |LagrangeInterpolation| |setButtonValue| |makeGraphImage| |twist|
+ |curve| |insert!| |powern| |sample| |hconcat| |doubleDisc|
+ |pseudoDivide| |deleteProperty!| |submod| |listOfMonoms|
+ |ellipticCylindrical| |shanksDiscLogAlgorithm| |basisOfCenter|
+ |expint| |lowerPolynomial| |solveLinear| |tanIfCan| |distance|
+ |f02ajf| |e02bdf| |sparsityIF| |integralDerivationMatrix| |augment|
+ |localIntegralBasis| |e04dgf| |polyPart| |f02bbf| |normInvertible?|
+ |getMatch| |setfirst!| |leaf?| |cyclic?| |doubleComplex?| |adjoint|
+ |rules| |cfirst| |halfExtendedResultant1| |unitNormal| |rk4qc|
+ |quotedOperators| |cycleRagits| |RemainderList| |distribute|
+ |getMultiplicationTable| |nullary?| |leastMonomial| |xn| |leftTrace|
+ |directSum| |addBadValue| |pile| |overlabel| |brillhartIrreducible?|
+ |nthRootIfCan| |isAbsolutelyIrreducible?| |distFact| |critMTonD1|
+ |toseInvertible?| |sin2csc| |numberOfVariables| |constantOperator|
+ |sortConstraints| |comparison| |expPot| |split| |curryLeft|
+ |getExplanations| |iiatanh| |setnext!| |df2fi| |entry?|
+ |boundOfCauchy| |crest| |viewThetaDefault| |solveLinearlyOverQ|
+ |nilFactor| |generalizedEigenvector| |rst| |d02cjf| |partialFraction|
+ |implies| |multiEuclideanTree| |leftFactorIfCan| |c06fuf| |multMonom|
+ |tablePow| |quotient| |mantissa| |rur| |leftGcd| |xor| |symmetric?|
+ |pade| |nextSubsetGray| |c05pbf| |numericalIntegration| |critM|
+ |rewriteIdealWithRemainder| |e02bcf| |setOrder| |dequeue|
+ |possiblyNewVariety?| |expIfCan| |makeSketch| |finiteBound|
+ |bernoulli| |selectFiniteRoutines| |double| |nthFlag|
+ |variationOfParameters| |internalInfRittWu?| |ocf2ocdf| |prefix|
+ |pointColor| |shufflein| |compactFraction| |gradient| |OMlistCDs|
+ |brace| |cosh2sech| |OMputApp| |subResultantGcd| |deepExpand| |every?|
+ |d02bhf| |reducedDiscriminant| |e02ahf| |externalList|
+ |selectSumOfSquaresRoutines| |monicCompleteDecompose| |empty?|
+ |truncate| |minIndex| |OMbindTCP| |diagonal?| |simpsono| |monomial|
+ |test| |varselect| |approxSqrt| |semiSubResultantGcdEuclidean1|
+ |lifting1| |prologue| |changeVar| |irreducible?| |jacobiIdentity?|
+ |coordinates| |mainCharacterization| |quadratic?| |radicalSimplify|
+ |cLog| |rationalPower| |compBound| |definingEquations| |dec|
+ |rational?| |multivariate| |mpsode| |iisqrt2| |sin?|
+ |fortranLiteralLine| |rightRemainder| |value| |setMinPoints|
+ |declare!| |ipow| |tanQ| |rightTraceMatrix| |homogeneous?| |variables|
+ |mapCoef| |OMgetEndAtp| |PDESolve| |supersub| |basicSet|
+ |discriminantEuclidean| |normalDenom| |OMopenFile| |iiasec|
+ |squareFreePolynomial| |rotatez| |finiteBasis| |dictionary|
+ |idealSimplify| |trapezoidalo| |llprop| |oddlambert| |delete!| |cAsec|
+ |genericLeftTraceForm| |e01sbf| |f02agf| |monicModulo| |merge!|
+ |resetAttributeButtons| |superHeight| |lexGroebner| |trueEqual|
+ |mainKernel| |polyRicDE| |minimumDegree| |stoseInvertible?|
+ |HermiteIntegrate| |insertRoot!| |closedCurve?| |d01amf| |tree|
+ |characteristicSet| |changeName| |physicalLength!| |irreducibleFactor|
+ |tubePointsDefault| |inrootof| |reduceLODE| |antiCommutative?|
+ |polCase| |univariatePolynomialsGcds| |getProperty|
+ |useSingleFactorBound?| |relerror| |imagi| |changeMeasure|
+ |generalInfiniteProduct| |decrease| |exprToXXP| |product|
+ |tryFunctionalDecomposition?| |#| |floor| |palginfieldint|
+ |horizConcat| |solid| |diff| |associative?| |roughEqualIdeals?|
+ |OMgetEndError| |LiePolyIfCan| |stoseInvertible?reg| |laurentRep|
+ |positive?| |And| |doublyTransitive?| |quotientByP| |mkcomm|
+ |showFortranOutputStack| |OMgetVariable| |univariatePolynomial|
+ |integerIfCan| |anticoord| |polyRDE| |possiblyInfinite?|
+ |safetyMargin| |Or| |iisqrt3| |semiLastSubResultantEuclidean|
+ |computeCycleEntry| |wreath| |bandedJacobian| ^
+ |stiffnessAndStabilityFactor| |pmComplexintegrate| |e04mbf|
+ |var1StepsDefault| |genericLeftDiscriminant| |Not| |copyInto!|
+ |youngGroup| |char| |genericRightNorm| |sinhcosh| |untab|
+ |problemPoints| |high| |swapRows!| |f07fdf| |scan| |sum| |universe|
+ |fortranTypeOf| |squareFreeLexTriangular| |degreePartition| |OMgetApp|
+ |constantOpIfCan| |ref| |rowEchLocal| |removeCosSq| |eyeDistance|
+ |satisfy?| |roman| |elRow1!| |removeRedundantFactorsInPols| |head|
+ |prolateSpheroidal| |linearAssociatedOrder| |conjug| |conjugates|
+ |bivariatePolynomials| |cyclotomicFactorization| |unitsColorDefault|
+ |term?| |integralBasisAtInfinity| |subResultantGcdEuclidean| |s17aff|
+ |OMgetString| |rewriteIdealWithHeadRemainder|
+ |removeRoughlyRedundantFactorsInPols| |extractPoint| |s18aef| |pole?|
+ |addmod| |univariatePolynomials| |OMconnOutDevice| |rightNorm| |ksec|
+ |dflist| |selectsecond| |cAsinh| |hdmpToDmp| |f04asf| |cycles|
+ |precision| |stosePrepareSubResAlgo| |getBadValues| |linear|
+ |readIfCan!| |dmpToP| |structuralConstants| |cAcoth| |setTopPredicate|
+ |numberOfCycles| |clikeUniv| |minimize| |beauzamyBound| |Zero|
+ |tan2cot| |duplicates| |retractIfCan| |countRealRoots| |lieAlgebra?|
+ |generalTwoFactor| |listexp| |semiDiscriminantEuclidean|
+ |flexibleArray| |ddFact| |numberOfChildren| |One| |polynomial|
+ |realZeros| |clearFortranOutputStack| |comp| |hessian| |OMputString|
+ |expressIdealMember| |lhs| |pointColorDefault| |changeBase| |s21bbf|
+ |minordet| |mathieu22| |linearAssociatedLog| |abelianGroup|
+ |identitySquareMatrix| |explicitEntries?| |xCoord| |rhs| |digit?|
+ |symmetricProduct| |rootBound| |e01bff| |constructorName|
+ |removeZeroes| |depth| |orthonormalBasis| |errorInfo| |patternMatch|
+ |selectIntegrationRoutines| |negative?| |elements|
+ |genericRightMinimalPolynomial| |legendreP| |bfEntry| |next|
+ |complexIntegrate| |dn| |points| |mkAnswer| |invertIfCan|
+ |useSingleFactorBound| |setScreenResolution3D| |ranges| |c06gqf|
+ |leftRemainder| |multiset| |convergents| |Si| |hermiteH| |deriv|
+ |cCsc| |lyndon?| |root| |endOfFile?| |nextIrreduciblePoly|
+ |firstUncouplingMatrix| |rightCharacteristicPolynomial|
+ |normalElement| |complexRoots| |minimumExponent| |complexSolve|
+ |unexpand| |s18acf| |Is| |minGbasis| |systemCommand| |c06fqf| |bfKeys|
+ |toroidal| |OMputError| |semiSubResultantGcdEuclidean2| |prinshINFO|
+ |extractIndex| |gcdcofact| |palgint0| |primintfldpoly| |lazyPquo|
+ |copies| |lazy?| |e02baf| |screenResolution| |pomopo!| |inconsistent?|
+ |OMputEndBVar| |outputFixed| |symmetricTensors| |cAcosh| |normal|
+ |airyBi| |number?| |blankSeparate| |orOperands|
+ |semiResultantEuclidean1| |palglimint| |c05adf| |quote| |coleman|
+ |scale| |setAttributeButtonStep| |map| |box|
+ |createPrimitiveNormalPoly| |reopen!| |mainCoefficients| |compdegd|
+ |lazyResidueClass| |lfintegrate| |append| |startStats!| |triangulate|
+ |fortranLinkerArgs| |rightFactorCandidate| |jordanAlgebra?| |leftRank|
+ |basisOfCentroid| |mainVariable?| |algSplitSimple| |point?|
+ |zeroSetSplitIntoTriangularSystems| |laurentIfCan| |any| NOT
+ |tableForDiscreteLogarithm| |nextPrimitivePoly| |delete| |singRicDE|
+ |cSec| |removeSinSq| |binaryTree| |supDimElseRittWu?| |iisech|
+ |infieldIntegrate| |bipolar| OR |zeroSquareMatrix| |htrigs|
+ |numberOfComputedEntries| |midpoint| |assign| |s14abf| |partitions|
+ |errorKind| |Lazard2| |uniform01| |rootOfIrreduciblePoly| AND
+ |nextPrimitiveNormalPoly| |exponent| |powmod| |changeWeightLevel|
+ |setMaxPoints3D| |internalZeroSetSplit| |BasicMethod|
+ |initiallyReduced?| |monicRightDivide| |compound?| |nary?|
+ |lieAdmissible?| |mathieu11| |e04fdf| |integer?| |order| |convert|
+ |sylvesterMatrix| |bitTruth| |substring?| |atanhIfCan| |baseRDEsys|
+ |stripCommentsAndBlanks| |derivative| |univariateSolve| |branchIfCan|
+ |swap!| |composite| |showTypeInOutput| |frobenius| |iipow|
+ |irreducibleFactors| |coerceP| |complexLimit| |startPolynomial|
+ |seriesToOutputForm| |replaceKthElement| |rubiksGroup| |numeric|
+ |headReduce| |repeatUntilLoop| |iiasin| |zerosOf| |suffix?| |aromberg|
+ |linearPolynomials| |factorSquareFree| |radical| |elRow2!|
+ |getOperator| |c06ekf| |d01bbf| |prime| |nextColeman| |quickSort|
+ |lfextlimint| |splitSquarefree| |open?| |generators|
+ |factorByRecursion| |ParCondList| |resultantEuclideannaif|
+ |interReduce| |recip| |UpTriBddDenomInv| |fintegrate| |double?| |heap|
+ |nthFractionalTerm| |lintgcd| |infinite?| |prefix?| |froot|
+ |meshFun2Var| |contractSolve| |overbar| |showRegion| |extend|
+ |equality| |perfectSqrt| |init| |UP2ifCan| |crushedSet|
+ |resetBadValues| |graeffe| |completeSmith| |leftRankPolynomial|
+ |LyndonCoordinates| |e01bgf| |iteratedInitials| |zeroDimPrimary?|
+ |meshPar2Var| |ode| |oblateSpheroidal| |d01ajf| |readable?|
+ |primaryDecomp| |patternVariable| |midpoints| |SturmHabichtSequence|
+ |overset?| |bitCoef| |generalizedEigenvectors| |partialDenominators|
+ |tail| |difference| |explicitlyEmpty?| |f01qef| * |elem?|
+ |OMsetEncoding| |lazyPrem| |e04jaf| |sec2cos| |chainSubResultants|
+ |zeroVector| |internal?| |zeroOf| |f01qdf| |OMgetSymbol| |scripted?|
+ |characteristicSerie| |OMread| |combineFeatureCompatibility|
+ |selectODEIVPRoutines| |flatten| |basisOfMiddleNucleus|
+ |matrixConcat3D| |mkIntegral| |cAtan| |squareFreeFactors| |d02raf|
+ |iiacsch| |commutative?| |diag| |coefChoose| |infix?| |symmetricGroup|
+ |cosSinInfo| |approximate| |reseed| |karatsubaOnce| |completeHermite|
+ |mask| |f07aef| |remainder| |approxNthRoot| |plotPolar| |complex|
+ |phiCoord| |simplifyExp| |bezoutDiscriminant| |gethi| |vedf2vef|
+ |search| |intChoose| |algebraicDecompose| |mr| |localReal?| |showAll?|
+ |complexZeros| |splitLinear| |fractRagits| |s01eaf| |dimensions|
+ |factorSquareFreePolynomial| |e01daf| |dot| |minus!| |secIfCan|
+ |bandedHessian| |randomR| |replace| |length| |euclideanSize| |reset|
+ |rotatey| |dioSolve| |rightDiscriminant| |prevPrime| |cschIfCan|
+ |lquo| |scripts| |testDim| |exponentialOrder| |minColIndex|
+ |outerProduct| |weights| |factors| |getlo| |antisymmetric?| |write|
+ |nullary| |unrankImproperPartitions0| |restorePrecision| |startTable!|
+ |currentEnv| |f2st| |failed?| |front| |wholeRagits| |stack| |save|
+ |setColumn!| |algDsolve| |power| |putGraph| |sayLength|
+ |extendedResultant| |bipolarCylindrical| |internalSubPolSet?|
+ |numberOfPrimitivePoly| |permutationRepresentation| |or|
+ |permutationGroup| |LowTriBddDenomInv| |flagFactor| |infLex?|
+ |matrixGcd| |setPoly| |hypergeometric0F1| |extendIfCan| |and|
+ |rightMinimalPolynomial| |addMatchRestricted| |belong?| |fractRadix|
+ |members| |rdregime| |c02agf| |se2rfi| |categoryFrame| |s13acf|
+ |prepareSubResAlgo| |endSubProgram| |iiasech| |lex| |isOp|
+ |composites| |arity| |currentSubProgram| |lp| |symmetricDifference|
+ |tanNa| |mapMatrixIfCan| F |medialSet| |safeCeiling| |OMreadFile|
+ |opeval| |prem| |processTemplate| |minPoints3D| |e01saf| |cot2tan|
+ |setProperties| |magnitude| |leadingExponent| |halfExtendedResultant2|
+ |maxPoints3D| |logIfCan| |isQuotient| |neglist| |extendedint|
+ |interpretString| |cCos| |arg1| |qroot| |getGraph| |abs| |varList|
+ |numericalOptimization| |printInfo!| |showScalarValues|
+ |innerEigenvectors| |kovacic| |f04maf| |primintegrate| |arg2|
+ |numberOfIrreduciblePoly| |wordsForStrongGenerators| |initials|
+ |exactQuotient!| |upperCase| |reducedContinuedFraction| |prinb|
+ |cosIfCan| |vark| |superscript| |OMsupportsCD?| |diagonalProduct|
+ |padicFraction| |int| |getOrder| |makeCrit| |numberOfFactors|
+ |critMonD1| |lyndonIfCan| |numberOfImproperPartitions| |c06ecf|
+ |conditions| |bezoutMatrix| |shrinkable| |pow| |clipSurface|
+ |showTheIFTable| |quasiMonicPolynomials| |divide| |iiacsc|
+ |factorList| |f02abf| |numFunEvals3D| |printHeader| |concat| |match|
+ |iroot| |shiftRoots| |hash| |removeRedundantFactorsInContents|
+ |member?| |squareMatrix| |makeSUP| |height| |multiEuclidean|
+ |mapBivariate| |d01aqf| |coercePreimagesImages| |resetNew| |minPoly|
+ |seriesSolve| |count| |outputGeneral| |qqq| |push| |splitConstant|
+ |prindINFO| |optional?| |fractionPart| |create3Space|
+ |explicitlyFinite?| |leftAlternative?| |critB| |minimalPolynomial|
+ |coerceImages| |groebnerIdeal| |OMgetEndObject| |integralMatrix|
+ |birth| |factorAndSplit| |charpol| |setLegalFortranSourceExtensions|
+ |nextItem| |rotate| |torsionIfCan| |addPoint2| |f01mcf| |nthExpon|
+ |mapUnivariateIfCan| |perfectNthRoot| |innerSolve| |coordinate|
+ |getVariableOrder| |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 82e18229..92bcfff0 100644
--- a/src/share/algebra/interp.daase
+++ b/src/share/algebra/interp.daase
@@ -1,4887 +1,4887 @@
-(3137825 . 3409939498)
-((-4187 (((-108) (-1 (-108) |#2| |#2|) $) 63) (((-108) $) NIL)) (-3537 (($ (-1 (-108) |#2| |#2|) $) 17) (($ $) NIL)) (-2379 ((|#2| $ (-522) |#2|) NIL) ((|#2| $ (-1133 (-522)) |#2|) 34)) (-3509 (($ $) 59)) (-3864 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 41) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 38) ((|#2| (-1 |#2| |#2| |#2|) $) 37)) (-3238 (((-522) (-1 (-108) |#2|) $) 22) (((-522) |#2| $) NIL) (((-522) |#2| $ (-522)) 71)) (-3837 (((-588 |#2|) $) 13)) (-2160 (($ (-1 (-108) |#2| |#2|) $ $) 48) (($ $ $) NIL)) (-3838 (($ (-1 |#2| |#2|) $) 29)) (-1391 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 45)) (-1661 (($ |#2| $ (-522)) NIL) (($ $ $ (-522)) 50)) (-1414 (((-3 |#2| "failed") (-1 (-108) |#2|) $) 24)) (-3053 (((-108) (-1 (-108) |#2|) $) 21)) (-2545 ((|#2| $ (-522) |#2|) NIL) ((|#2| $ (-522)) NIL) (($ $ (-1133 (-522))) 49)) (-3696 (($ $ (-522)) 56) (($ $ (-1133 (-522))) 55)) (-4168 (((-708) (-1 (-108) |#2|) $) 26) (((-708) |#2| $) NIL)) (-1577 (($ $ $ (-522)) 52)) (-2404 (($ $) 51)) (-2201 (($ (-588 |#2|)) 53)) (-4165 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 64) (($ (-588 $)) 62)) (-2190 (((-792) $) 69)) (-3648 (((-108) (-1 (-108) |#2|) $) 20)) (-1531 (((-108) $ $) 70)) (-1549 (((-108) $ $) 73)))
-(((-18 |#1| |#2|) (-10 -8 (-15 -1531 ((-108) |#1| |#1|)) (-15 -2190 ((-792) |#1|)) (-15 -1549 ((-108) |#1| |#1|)) (-15 -3537 (|#1| |#1|)) (-15 -3537 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -3509 (|#1| |#1|)) (-15 -1577 (|#1| |#1| |#1| (-522))) (-15 -4187 ((-108) |#1|)) (-15 -2160 (|#1| |#1| |#1|)) (-15 -3238 ((-522) |#2| |#1| (-522))) (-15 -3238 ((-522) |#2| |#1|)) (-15 -3238 ((-522) (-1 (-108) |#2|) |#1|)) (-15 -4187 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -2160 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -2379 (|#2| |#1| (-1133 (-522)) |#2|)) (-15 -1661 (|#1| |#1| |#1| (-522))) (-15 -1661 (|#1| |#2| |#1| (-522))) (-15 -3696 (|#1| |#1| (-1133 (-522)))) (-15 -3696 (|#1| |#1| (-522))) (-15 -2545 (|#1| |#1| (-1133 (-522)))) (-15 -1391 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4165 (|#1| (-588 |#1|))) (-15 -4165 (|#1| |#1| |#1|)) (-15 -4165 (|#1| |#2| |#1|)) (-15 -4165 (|#1| |#1| |#2|)) (-15 -2201 (|#1| (-588 |#2|))) (-15 -1414 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2545 (|#2| |#1| (-522))) (-15 -2545 (|#2| |#1| (-522) |#2|)) (-15 -2379 (|#2| |#1| (-522) |#2|)) (-15 -4168 ((-708) |#2| |#1|)) (-15 -3837 ((-588 |#2|) |#1|)) (-15 -4168 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3053 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3648 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3838 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2404 (|#1| |#1|))) (-19 |#2|) (-1120)) (T -18))
+(3137825 . 3410359557)
+((-1866 (((-108) (-1 (-108) |#2| |#2|) $) 63) (((-108) $) NIL)) (-2806 (($ (-1 (-108) |#2| |#2|) $) 17) (($ $) NIL)) (-2437 ((|#2| $ (-522) |#2|) NIL) ((|#2| $ (-1133 (-522)) |#2|) 34)) (-2465 (($ $) 59)) (-2153 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 41) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 38) ((|#2| (-1 |#2| |#2| |#2|) $) 37)) (-3314 (((-522) (-1 (-108) |#2|) $) 22) (((-522) |#2| $) NIL) (((-522) |#2| $ (-522)) 71)) (-2395 (((-588 |#2|) $) 13)) (-3164 (($ (-1 (-108) |#2| |#2|) $ $) 48) (($ $ $) NIL)) (-2397 (($ (-1 |#2| |#2|) $) 29)) (-3810 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 45)) (-1731 (($ |#2| $ (-522)) NIL) (($ $ $ (-522)) 50)) (-2187 (((-3 |#2| "failed") (-1 (-108) |#2|) $) 24)) (-3487 (((-108) (-1 (-108) |#2|) $) 21)) (-2683 ((|#2| $ (-522) |#2|) NIL) ((|#2| $ (-522)) NIL) (($ $ (-1133 (-522))) 49)) (-3835 (($ $ (-522)) 56) (($ $ (-1133 (-522))) 55)) (-4187 (((-708) (-1 (-108) |#2|) $) 26) (((-708) |#2| $) NIL)) (-3629 (($ $ $ (-522)) 52)) (-2463 (($ $) 51)) (-2227 (($ (-588 |#2|)) 53)) (-4170 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 64) (($ (-588 $)) 62)) (-2217 (((-792) $) 69)) (-1381 (((-108) (-1 (-108) |#2|) $) 20)) (-1562 (((-108) $ $) 70)) (-1587 (((-108) $ $) 73)))
+(((-18 |#1| |#2|) (-10 -8 (-15 -1562 ((-108) |#1| |#1|)) (-15 -2217 ((-792) |#1|)) (-15 -1587 ((-108) |#1| |#1|)) (-15 -2806 (|#1| |#1|)) (-15 -2806 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -2465 (|#1| |#1|)) (-15 -3629 (|#1| |#1| |#1| (-522))) (-15 -1866 ((-108) |#1|)) (-15 -3164 (|#1| |#1| |#1|)) (-15 -3314 ((-522) |#2| |#1| (-522))) (-15 -3314 ((-522) |#2| |#1|)) (-15 -3314 ((-522) (-1 (-108) |#2|) |#1|)) (-15 -1866 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3164 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -2437 (|#2| |#1| (-1133 (-522)) |#2|)) (-15 -1731 (|#1| |#1| |#1| (-522))) (-15 -1731 (|#1| |#2| |#1| (-522))) (-15 -3835 (|#1| |#1| (-1133 (-522)))) (-15 -3835 (|#1| |#1| (-522))) (-15 -2683 (|#1| |#1| (-1133 (-522)))) (-15 -3810 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4170 (|#1| (-588 |#1|))) (-15 -4170 (|#1| |#1| |#1|)) (-15 -4170 (|#1| |#2| |#1|)) (-15 -4170 (|#1| |#1| |#2|)) (-15 -2227 (|#1| (-588 |#2|))) (-15 -2187 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2683 (|#2| |#1| (-522))) (-15 -2683 (|#2| |#1| (-522) |#2|)) (-15 -2437 (|#2| |#1| (-522) |#2|)) (-15 -4187 ((-708) |#2| |#1|)) (-15 -2395 ((-588 |#2|) |#1|)) (-15 -4187 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3487 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1381 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -2397 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2463 (|#1| |#1|))) (-19 |#2|) (-1120)) (T -18))
NIL
-(-10 -8 (-15 -1531 ((-108) |#1| |#1|)) (-15 -2190 ((-792) |#1|)) (-15 -1549 ((-108) |#1| |#1|)) (-15 -3537 (|#1| |#1|)) (-15 -3537 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -3509 (|#1| |#1|)) (-15 -1577 (|#1| |#1| |#1| (-522))) (-15 -4187 ((-108) |#1|)) (-15 -2160 (|#1| |#1| |#1|)) (-15 -3238 ((-522) |#2| |#1| (-522))) (-15 -3238 ((-522) |#2| |#1|)) (-15 -3238 ((-522) (-1 (-108) |#2|) |#1|)) (-15 -4187 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -2160 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -2379 (|#2| |#1| (-1133 (-522)) |#2|)) (-15 -1661 (|#1| |#1| |#1| (-522))) (-15 -1661 (|#1| |#2| |#1| (-522))) (-15 -3696 (|#1| |#1| (-1133 (-522)))) (-15 -3696 (|#1| |#1| (-522))) (-15 -2545 (|#1| |#1| (-1133 (-522)))) (-15 -1391 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4165 (|#1| (-588 |#1|))) (-15 -4165 (|#1| |#1| |#1|)) (-15 -4165 (|#1| |#2| |#1|)) (-15 -4165 (|#1| |#1| |#2|)) (-15 -2201 (|#1| (-588 |#2|))) (-15 -1414 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2545 (|#2| |#1| (-522))) (-15 -2545 (|#2| |#1| (-522) |#2|)) (-15 -2379 (|#2| |#1| (-522) |#2|)) (-15 -4168 ((-708) |#2| |#1|)) (-15 -3837 ((-588 |#2|) |#1|)) (-15 -4168 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3053 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3648 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3838 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2404 (|#1| |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2679 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-784)))) (-3537 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4239))) (($ $) 88 (-12 (|has| |#1| (-784)) (|has| $ (-6 -4239))))) (-3216 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-784)))) (-4141 (((-108) $ (-708)) 8)) (-2379 ((|#1| $ (-522) |#1|) 52 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 58 (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-3509 (($ $) 90 (|has| $ (-6 -4239)))) (-1862 (($ $) 100)) (-2333 (($ $) 78 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#1| $) 77 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) 51)) (-3238 (((-522) (-1 (-108) |#1|) $) 97) (((-522) |#1| $) 96 (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) 95 (|has| |#1| (-1014)))) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1811 (($ (-708) |#1|) 69)) (-3352 (((-108) $ (-708)) 9)) (-1359 (((-522) $) 43 (|has| (-522) (-784)))) (-2814 (($ $ $) 87 (|has| |#1| (-784)))) (-2160 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 44 (|has| (-522) (-784)))) (-2446 (($ $ $) 86 (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1661 (($ |#1| $ (-522)) 60) (($ $ $ (-522)) 59)) (-3604 (((-588 (-522)) $) 46)) (-1405 (((-108) (-522) $) 47)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2294 ((|#1| $) 42 (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-2602 (($ $ |#1|) 41 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) 48)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ (-522) |#1|) 50) ((|#1| $ (-522)) 49) (($ $ (-1133 (-522))) 63)) (-3696 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1577 (($ $ $ (-522)) 91 (|has| $ (-6 -4239)))) (-2404 (($ $) 13)) (-1431 (((-498) $) 79 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 70)) (-4165 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) 84 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 83 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-1566 (((-108) $ $) 85 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 82 (|has| |#1| (-784)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+(-10 -8 (-15 -1562 ((-108) |#1| |#1|)) (-15 -2217 ((-792) |#1|)) (-15 -1587 ((-108) |#1| |#1|)) (-15 -2806 (|#1| |#1|)) (-15 -2806 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -2465 (|#1| |#1|)) (-15 -3629 (|#1| |#1| |#1| (-522))) (-15 -1866 ((-108) |#1|)) (-15 -3164 (|#1| |#1| |#1|)) (-15 -3314 ((-522) |#2| |#1| (-522))) (-15 -3314 ((-522) |#2| |#1|)) (-15 -3314 ((-522) (-1 (-108) |#2|) |#1|)) (-15 -1866 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3164 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -2437 (|#2| |#1| (-1133 (-522)) |#2|)) (-15 -1731 (|#1| |#1| |#1| (-522))) (-15 -1731 (|#1| |#2| |#1| (-522))) (-15 -3835 (|#1| |#1| (-1133 (-522)))) (-15 -3835 (|#1| |#1| (-522))) (-15 -2683 (|#1| |#1| (-1133 (-522)))) (-15 -3810 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4170 (|#1| (-588 |#1|))) (-15 -4170 (|#1| |#1| |#1|)) (-15 -4170 (|#1| |#2| |#1|)) (-15 -4170 (|#1| |#1| |#2|)) (-15 -2227 (|#1| (-588 |#2|))) (-15 -2187 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2683 (|#2| |#1| (-522))) (-15 -2683 (|#2| |#1| (-522) |#2|)) (-15 -2437 (|#2| |#1| (-522) |#2|)) (-15 -4187 ((-708) |#2| |#1|)) (-15 -2395 ((-588 |#2|) |#1|)) (-15 -4187 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3487 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1381 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -2397 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2463 (|#1| |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3883 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-784)))) (-2806 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4239))) (($ $) 88 (-12 (|has| |#1| (-784)) (|has| $ (-6 -4239))))) (-3296 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-784)))) (-2717 (((-108) $ (-708)) 8)) (-2437 ((|#1| $ (-522) |#1|) 52 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 58 (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-2465 (($ $) 90 (|has| $ (-6 -4239)))) (-1939 (($ $) 100)) (-2379 (($ $) 78 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#1| $) 77 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) 51)) (-3314 (((-522) (-1 (-108) |#1|) $) 97) (((-522) |#1| $) 96 (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) 95 (|has| |#1| (-1014)))) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1893 (($ (-708) |#1|) 69)) (-1480 (((-108) $ (-708)) 9)) (-3496 (((-522) $) 43 (|has| (-522) (-784)))) (-1308 (($ $ $) 87 (|has| |#1| (-784)))) (-3164 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 44 (|has| (-522) (-784)))) (-2524 (($ $ $) 86 (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1731 (($ |#1| $ (-522)) 60) (($ $ $ (-522)) 59)) (-2130 (((-588 (-522)) $) 46)) (-2103 (((-108) (-522) $) 47)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2337 ((|#1| $) 42 (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-1972 (($ $ |#1|) 41 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) 48)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ (-522) |#1|) 50) ((|#1| $ (-522)) 49) (($ $ (-1133 (-522))) 63)) (-3835 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3629 (($ $ $ (-522)) 91 (|has| $ (-6 -4239)))) (-2463 (($ $) 13)) (-3873 (((-498) $) 79 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 70)) (-4170 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) 84 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 83 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-1609 (((-108) $ $) 85 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 82 (|has| |#1| (-784)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-19 |#1|) (-1197) (-1120)) (T -19))
NIL
(-13 (-348 |t#1|) (-10 -7 (-6 -4239)))
-(((-33) . T) ((-97) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-348 |#1|) . T) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-784) |has| |#1| (-784)) ((-1014) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-1120) . T))
-((-1233 (((-3 $ "failed") $ $) 12)) (-1612 (($ $) NIL) (($ $ $) 9)) (* (($ (-850) $) NIL) (($ (-708) $) 16) (($ (-522) $) 21)))
-(((-20 |#1|) (-10 -8 (-15 * (|#1| (-522) |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 -1233 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|))) (-21)) (T -20))
+(((-33) . T) ((-97) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-348 |#1|) . T) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-784) |has| |#1| (-784)) ((-1014) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-1120) . T))
+((-2265 (((-3 $ "failed") $ $) 12)) (-1672 (($ $) NIL) (($ $ $) 9)) (* (($ (-850) $) NIL) (($ (-708) $) 16) (($ (-522) $) 21)))
+(((-20 |#1|) (-10 -8 (-15 * (|#1| (-522) |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 -2265 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|))) (-21)) (T -20))
NIL
-(-10 -8 (-15 * (|#1| (-522) |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 -1233 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20)))
+(-10 -8 (-15 * (|#1| (-522) |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 -2265 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20)))
(((-21) (-1197)) (T -21))
-((-1612 (*1 *1 *1) (-4 *1 (-21))) (-1612 (*1 *1 *1 *1) (-4 *1 (-21))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-522)))))
-(-13 (-124) (-10 -8 (-15 -1612 ($ $)) (-15 -1612 ($ $ $)) (-15 * ($ (-522) $))))
+((-1672 (*1 *1 *1) (-4 *1 (-21))) (-1672 (*1 *1 *1 *1) (-4 *1 (-21))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-522)))))
+(-13 (-124) (-10 -8 (-15 -1672 ($ $)) (-15 -1672 ($ $ $)) (-15 * ($ (-522) $))))
(((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-2250 (((-108) $) 10)) (-3175 (($) 15)) (* (($ (-850) $) 14) (($ (-708) $) 18)))
-(((-22 |#1|) (-10 -8 (-15 * (|#1| (-708) |#1|)) (-15 -2250 ((-108) |#1|)) (-15 -3175 (|#1|)) (-15 * (|#1| (-850) |#1|))) (-23)) (T -22))
+((-2944 (((-108) $) 10)) (-3367 (($) 15)) (* (($ (-850) $) 14) (($ (-708) $) 18)))
+(((-22 |#1|) (-10 -8 (-15 * (|#1| (-708) |#1|)) (-15 -2944 ((-108) |#1|)) (-15 -3367 (|#1|)) (-15 * (|#1| (-850) |#1|))) (-23)) (T -22))
NIL
-(-10 -8 (-15 * (|#1| (-708) |#1|)) (-15 -2250 ((-108) |#1|)) (-15 -3175 (|#1|)) (-15 * (|#1| (-850) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-3175 (($) 17 T CONST)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15)))
+(-10 -8 (-15 * (|#1| (-708) |#1|)) (-15 -2944 ((-108) |#1|)) (-15 -3367 (|#1|)) (-15 * (|#1| (-850) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3367 (($) 17 T CONST)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15)))
(((-23) (-1197)) (T -23))
-((-3566 (*1 *1) (-4 *1 (-23))) (-3175 (*1 *1) (-4 *1 (-23))) (-2250 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-108)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-708)))))
-(-13 (-25) (-10 -8 (-15 (-3566) ($) -2677) (-15 -3175 ($) -2677) (-15 -2250 ((-108) $)) (-15 * ($ (-708) $))))
+((-3697 (*1 *1) (-4 *1 (-23))) (-3367 (*1 *1) (-4 *1 (-23))) (-2944 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-108)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-708)))))
+(-13 (-25) (-10 -8 (-15 (-3697) ($) -2855) (-15 -3367 ($) -2855) (-15 -2944 ((-108) $)) (-15 * ($ (-708) $))))
(((-25) . T) ((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
((* (($ (-850) $) 10)))
(((-24 |#1|) (-10 -8 (-15 * (|#1| (-850) |#1|))) (-25)) (T -24))
NIL
(-10 -8 (-15 * (|#1| (-850) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-1531 (((-108) $ $) 6)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13)))
+((-1419 (((-108) $ $) 7)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-1562 (((-108) $ $) 6)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13)))
(((-25) (-1197)) (T -25))
-((-1602 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-850)))))
-(-13 (-1014) (-10 -8 (-15 -1602 ($ $ $)) (-15 * ($ (-850) $))))
+((-1661 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-850)))))
+(-13 (-1014) (-10 -8 (-15 -1661 ($ $ $)) (-15 * ($ (-850) $))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1617 (((-588 $) (-881 $)) 29) (((-588 $) (-1081 $)) 16) (((-588 $) (-1081 $) (-1085)) 20)) (-4032 (($ (-881 $)) 27) (($ (-1081 $)) 11) (($ (-1081 $) (-1085)) 54)) (-1221 (((-588 $) (-881 $)) 30) (((-588 $) (-1081 $)) 18) (((-588 $) (-1081 $) (-1085)) 19)) (-3944 (($ (-881 $)) 28) (($ (-1081 $)) 13) (($ (-1081 $) (-1085)) NIL)))
-(((-26 |#1|) (-10 -8 (-15 -1617 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -1617 ((-588 |#1|) (-1081 |#1|))) (-15 -1617 ((-588 |#1|) (-881 |#1|))) (-15 -4032 (|#1| (-1081 |#1|) (-1085))) (-15 -4032 (|#1| (-1081 |#1|))) (-15 -4032 (|#1| (-881 |#1|))) (-15 -1221 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -1221 ((-588 |#1|) (-1081 |#1|))) (-15 -1221 ((-588 |#1|) (-881 |#1|))) (-15 -3944 (|#1| (-1081 |#1|) (-1085))) (-15 -3944 (|#1| (-1081 |#1|))) (-15 -3944 (|#1| (-881 |#1|)))) (-27)) (T -26))
+((-3899 (((-588 $) (-881 $)) 29) (((-588 $) (-1081 $)) 16) (((-588 $) (-1081 $) (-1085)) 20)) (-3974 (($ (-881 $)) 27) (($ (-1081 $)) 11) (($ (-1081 $) (-1085)) 54)) (-2136 (((-588 $) (-881 $)) 30) (((-588 $) (-1081 $)) 18) (((-588 $) (-1081 $) (-1085)) 19)) (-1275 (($ (-881 $)) 28) (($ (-1081 $)) 13) (($ (-1081 $) (-1085)) NIL)))
+(((-26 |#1|) (-10 -8 (-15 -3899 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -3899 ((-588 |#1|) (-1081 |#1|))) (-15 -3899 ((-588 |#1|) (-881 |#1|))) (-15 -3974 (|#1| (-1081 |#1|) (-1085))) (-15 -3974 (|#1| (-1081 |#1|))) (-15 -3974 (|#1| (-881 |#1|))) (-15 -2136 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -2136 ((-588 |#1|) (-1081 |#1|))) (-15 -2136 ((-588 |#1|) (-881 |#1|))) (-15 -1275 (|#1| (-1081 |#1|) (-1085))) (-15 -1275 (|#1| (-1081 |#1|))) (-15 -1275 (|#1| (-881 |#1|)))) (-27)) (T -26))
NIL
-(-10 -8 (-15 -1617 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -1617 ((-588 |#1|) (-1081 |#1|))) (-15 -1617 ((-588 |#1|) (-881 |#1|))) (-15 -4032 (|#1| (-1081 |#1|) (-1085))) (-15 -4032 (|#1| (-1081 |#1|))) (-15 -4032 (|#1| (-881 |#1|))) (-15 -1221 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -1221 ((-588 |#1|) (-1081 |#1|))) (-15 -1221 ((-588 |#1|) (-881 |#1|))) (-15 -3944 (|#1| (-1081 |#1|) (-1085))) (-15 -3944 (|#1| (-1081 |#1|))) (-15 -3944 (|#1| (-881 |#1|))))
-((-1416 (((-108) $ $) 7)) (-1617 (((-588 $) (-881 $)) 80) (((-588 $) (-1081 $)) 79) (((-588 $) (-1081 $) (-1085)) 78)) (-4032 (($ (-881 $)) 83) (($ (-1081 $)) 82) (($ (-1081 $) (-1085)) 81)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 73)) (-3450 (((-393 $) $) 72)) (-1929 (($ $) 92)) (-1687 (((-108) $ $) 59)) (-3175 (($) 17 T CONST)) (-1221 (((-588 $) (-881 $)) 86) (((-588 $) (-1081 $)) 85) (((-588 $) (-1081 $) (-1085)) 84)) (-3944 (($ (-881 $)) 89) (($ (-1081 $)) 88) (($ (-1081 $) (-1085)) 87)) (-2277 (($ $ $) 55)) (-2682 (((-3 $ "failed") $) 34)) (-2254 (($ $ $) 56)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-2813 (((-108) $) 71)) (-2782 (((-108) $) 31)) (-1504 (($ $ (-522)) 91)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 70)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-1916 (((-393 $) $) 74)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-3730 (((-708) $) 58)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ $) 64)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68) (($ $ (-382 (-522))) 90)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66)))
+(-10 -8 (-15 -3899 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -3899 ((-588 |#1|) (-1081 |#1|))) (-15 -3899 ((-588 |#1|) (-881 |#1|))) (-15 -3974 (|#1| (-1081 |#1|) (-1085))) (-15 -3974 (|#1| (-1081 |#1|))) (-15 -3974 (|#1| (-881 |#1|))) (-15 -2136 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -2136 ((-588 |#1|) (-1081 |#1|))) (-15 -2136 ((-588 |#1|) (-881 |#1|))) (-15 -1275 (|#1| (-1081 |#1|) (-1085))) (-15 -1275 (|#1| (-1081 |#1|))) (-15 -1275 (|#1| (-881 |#1|))))
+((-1419 (((-108) $ $) 7)) (-3899 (((-588 $) (-881 $)) 80) (((-588 $) (-1081 $)) 79) (((-588 $) (-1081 $) (-1085)) 78)) (-3974 (($ (-881 $)) 83) (($ (-1081 $)) 82) (($ (-1081 $) (-1085)) 81)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 73)) (-3133 (((-393 $) $) 72)) (-2016 (($ $) 92)) (-2805 (((-108) $ $) 59)) (-3367 (($) 17 T CONST)) (-2136 (((-588 $) (-881 $)) 86) (((-588 $) (-1081 $)) 85) (((-588 $) (-1081 $) (-1085)) 84)) (-1275 (($ (-881 $)) 89) (($ (-1081 $)) 88) (($ (-1081 $) (-1085)) 87)) (-2333 (($ $ $) 55)) (-3920 (((-3 $ "failed") $) 34)) (-2303 (($ $ $) 56)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-2725 (((-108) $) 71)) (-2859 (((-108) $) 31)) (-1811 (($ $ (-522)) 91)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 70)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-2006 (((-393 $) $) 74)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-4031 (((-708) $) 58)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ $) 64)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68) (($ $ (-382 (-522))) 90)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66)))
(((-27) (-1197)) (T -27))
-((-3944 (*1 *1 *2) (-12 (-5 *2 (-881 *1)) (-4 *1 (-27)))) (-3944 (*1 *1 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-27)))) (-3944 (*1 *1 *2 *3) (-12 (-5 *2 (-1081 *1)) (-5 *3 (-1085)) (-4 *1 (-27)))) (-1221 (*1 *2 *3) (-12 (-5 *3 (-881 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1)))) (-1221 (*1 *2 *3) (-12 (-5 *3 (-1081 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1)))) (-1221 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *1)) (-5 *4 (-1085)) (-4 *1 (-27)) (-5 *2 (-588 *1)))) (-4032 (*1 *1 *2) (-12 (-5 *2 (-881 *1)) (-4 *1 (-27)))) (-4032 (*1 *1 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-27)))) (-4032 (*1 *1 *2 *3) (-12 (-5 *2 (-1081 *1)) (-5 *3 (-1085)) (-4 *1 (-27)))) (-1617 (*1 *2 *3) (-12 (-5 *3 (-881 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1)))) (-1617 (*1 *2 *3) (-12 (-5 *3 (-1081 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1)))) (-1617 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *1)) (-5 *4 (-1085)) (-4 *1 (-27)) (-5 *2 (-588 *1)))))
-(-13 (-338) (-928) (-10 -8 (-15 -3944 ($ (-881 $))) (-15 -3944 ($ (-1081 $))) (-15 -3944 ($ (-1081 $) (-1085))) (-15 -1221 ((-588 $) (-881 $))) (-15 -1221 ((-588 $) (-1081 $))) (-15 -1221 ((-588 $) (-1081 $) (-1085))) (-15 -4032 ($ (-881 $))) (-15 -4032 ($ (-1081 $))) (-15 -4032 ($ (-1081 $) (-1085))) (-15 -1617 ((-588 $) (-881 $))) (-15 -1617 ((-588 $) (-1081 $))) (-15 -1617 ((-588 $) (-1081 $) (-1085)))))
+((-1275 (*1 *1 *2) (-12 (-5 *2 (-881 *1)) (-4 *1 (-27)))) (-1275 (*1 *1 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-27)))) (-1275 (*1 *1 *2 *3) (-12 (-5 *2 (-1081 *1)) (-5 *3 (-1085)) (-4 *1 (-27)))) (-2136 (*1 *2 *3) (-12 (-5 *3 (-881 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1)))) (-2136 (*1 *2 *3) (-12 (-5 *3 (-1081 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1)))) (-2136 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *1)) (-5 *4 (-1085)) (-4 *1 (-27)) (-5 *2 (-588 *1)))) (-3974 (*1 *1 *2) (-12 (-5 *2 (-881 *1)) (-4 *1 (-27)))) (-3974 (*1 *1 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-27)))) (-3974 (*1 *1 *2 *3) (-12 (-5 *2 (-1081 *1)) (-5 *3 (-1085)) (-4 *1 (-27)))) (-3899 (*1 *2 *3) (-12 (-5 *3 (-881 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1)))) (-3899 (*1 *2 *3) (-12 (-5 *3 (-1081 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1)))) (-3899 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *1)) (-5 *4 (-1085)) (-4 *1 (-27)) (-5 *2 (-588 *1)))))
+(-13 (-338) (-928) (-10 -8 (-15 -1275 ($ (-881 $))) (-15 -1275 ($ (-1081 $))) (-15 -1275 ($ (-1081 $) (-1085))) (-15 -2136 ((-588 $) (-881 $))) (-15 -2136 ((-588 $) (-1081 $))) (-15 -2136 ((-588 $) (-1081 $) (-1085))) (-15 -3974 ($ (-881 $))) (-15 -3974 ($ (-1081 $))) (-15 -3974 ($ (-1081 $) (-1085))) (-15 -3899 ((-588 $) (-881 $))) (-15 -3899 ((-588 $) (-1081 $))) (-15 -3899 ((-588 $) (-1081 $) (-1085)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-157) . T) ((-220) . T) ((-266) . T) ((-283) . T) ((-338) . T) ((-426) . T) ((-514) . T) ((-590 #0#) . T) ((-590 $) . T) ((-655 #0#) . T) ((-655 $) . T) ((-664) . T) ((-849) . T) ((-928) . T) ((-977 #0#) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) . T))
-((-1617 (((-588 $) (-881 $)) NIL) (((-588 $) (-1081 $)) NIL) (((-588 $) (-1081 $) (-1085)) 50) (((-588 $) $) 19) (((-588 $) $ (-1085)) 41)) (-4032 (($ (-881 $)) NIL) (($ (-1081 $)) NIL) (($ (-1081 $) (-1085)) 52) (($ $) 17) (($ $ (-1085)) 37)) (-1221 (((-588 $) (-881 $)) NIL) (((-588 $) (-1081 $)) NIL) (((-588 $) (-1081 $) (-1085)) 48) (((-588 $) $) 15) (((-588 $) $ (-1085)) 43)) (-3944 (($ (-881 $)) NIL) (($ (-1081 $)) NIL) (($ (-1081 $) (-1085)) NIL) (($ $) 12) (($ $ (-1085)) 39)))
-(((-28 |#1| |#2|) (-10 -8 (-15 -1617 ((-588 |#1|) |#1| (-1085))) (-15 -4032 (|#1| |#1| (-1085))) (-15 -1617 ((-588 |#1|) |#1|)) (-15 -4032 (|#1| |#1|)) (-15 -1221 ((-588 |#1|) |#1| (-1085))) (-15 -3944 (|#1| |#1| (-1085))) (-15 -1221 ((-588 |#1|) |#1|)) (-15 -3944 (|#1| |#1|)) (-15 -1617 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -1617 ((-588 |#1|) (-1081 |#1|))) (-15 -1617 ((-588 |#1|) (-881 |#1|))) (-15 -4032 (|#1| (-1081 |#1|) (-1085))) (-15 -4032 (|#1| (-1081 |#1|))) (-15 -4032 (|#1| (-881 |#1|))) (-15 -1221 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -1221 ((-588 |#1|) (-1081 |#1|))) (-15 -1221 ((-588 |#1|) (-881 |#1|))) (-15 -3944 (|#1| (-1081 |#1|) (-1085))) (-15 -3944 (|#1| (-1081 |#1|))) (-15 -3944 (|#1| (-881 |#1|)))) (-29 |#2|) (-13 (-784) (-514))) (T -28))
+((-3899 (((-588 $) (-881 $)) NIL) (((-588 $) (-1081 $)) NIL) (((-588 $) (-1081 $) (-1085)) 50) (((-588 $) $) 19) (((-588 $) $ (-1085)) 41)) (-3974 (($ (-881 $)) NIL) (($ (-1081 $)) NIL) (($ (-1081 $) (-1085)) 52) (($ $) 17) (($ $ (-1085)) 37)) (-2136 (((-588 $) (-881 $)) NIL) (((-588 $) (-1081 $)) NIL) (((-588 $) (-1081 $) (-1085)) 48) (((-588 $) $) 15) (((-588 $) $ (-1085)) 43)) (-1275 (($ (-881 $)) NIL) (($ (-1081 $)) NIL) (($ (-1081 $) (-1085)) NIL) (($ $) 12) (($ $ (-1085)) 39)))
+(((-28 |#1| |#2|) (-10 -8 (-15 -3899 ((-588 |#1|) |#1| (-1085))) (-15 -3974 (|#1| |#1| (-1085))) (-15 -3899 ((-588 |#1|) |#1|)) (-15 -3974 (|#1| |#1|)) (-15 -2136 ((-588 |#1|) |#1| (-1085))) (-15 -1275 (|#1| |#1| (-1085))) (-15 -2136 ((-588 |#1|) |#1|)) (-15 -1275 (|#1| |#1|)) (-15 -3899 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -3899 ((-588 |#1|) (-1081 |#1|))) (-15 -3899 ((-588 |#1|) (-881 |#1|))) (-15 -3974 (|#1| (-1081 |#1|) (-1085))) (-15 -3974 (|#1| (-1081 |#1|))) (-15 -3974 (|#1| (-881 |#1|))) (-15 -2136 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -2136 ((-588 |#1|) (-1081 |#1|))) (-15 -2136 ((-588 |#1|) (-881 |#1|))) (-15 -1275 (|#1| (-1081 |#1|) (-1085))) (-15 -1275 (|#1| (-1081 |#1|))) (-15 -1275 (|#1| (-881 |#1|)))) (-29 |#2|) (-13 (-784) (-514))) (T -28))
NIL
-(-10 -8 (-15 -1617 ((-588 |#1|) |#1| (-1085))) (-15 -4032 (|#1| |#1| (-1085))) (-15 -1617 ((-588 |#1|) |#1|)) (-15 -4032 (|#1| |#1|)) (-15 -1221 ((-588 |#1|) |#1| (-1085))) (-15 -3944 (|#1| |#1| (-1085))) (-15 -1221 ((-588 |#1|) |#1|)) (-15 -3944 (|#1| |#1|)) (-15 -1617 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -1617 ((-588 |#1|) (-1081 |#1|))) (-15 -1617 ((-588 |#1|) (-881 |#1|))) (-15 -4032 (|#1| (-1081 |#1|) (-1085))) (-15 -4032 (|#1| (-1081 |#1|))) (-15 -4032 (|#1| (-881 |#1|))) (-15 -1221 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -1221 ((-588 |#1|) (-1081 |#1|))) (-15 -1221 ((-588 |#1|) (-881 |#1|))) (-15 -3944 (|#1| (-1081 |#1|) (-1085))) (-15 -3944 (|#1| (-1081 |#1|))) (-15 -3944 (|#1| (-881 |#1|))))
-((-1416 (((-108) $ $) 7)) (-1617 (((-588 $) (-881 $)) 80) (((-588 $) (-1081 $)) 79) (((-588 $) (-1081 $) (-1085)) 78) (((-588 $) $) 126) (((-588 $) $ (-1085)) 124)) (-4032 (($ (-881 $)) 83) (($ (-1081 $)) 82) (($ (-1081 $) (-1085)) 81) (($ $) 127) (($ $ (-1085)) 125)) (-2250 (((-108) $) 16)) (-4090 (((-588 (-1085)) $) 201)) (-1282 (((-382 (-1081 $)) $ (-561 $)) 233 (|has| |#1| (-514)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1886 (((-588 (-561 $)) $) 164)) (-1233 (((-3 $ "failed") $ $) 19)) (-3305 (($ $ (-588 (-561 $)) (-588 $)) 154) (($ $ (-588 (-270 $))) 153) (($ $ (-270 $)) 152)) (-3119 (($ $) 73)) (-3450 (((-393 $) $) 72)) (-1929 (($ $) 92)) (-1687 (((-108) $ $) 59)) (-3175 (($) 17 T CONST)) (-1221 (((-588 $) (-881 $)) 86) (((-588 $) (-1081 $)) 85) (((-588 $) (-1081 $) (-1085)) 84) (((-588 $) $) 130) (((-588 $) $ (-1085)) 128)) (-3944 (($ (-881 $)) 89) (($ (-1081 $)) 88) (($ (-1081 $) (-1085)) 87) (($ $) 131) (($ $ (-1085)) 129)) (-1297 (((-3 (-881 |#1|) "failed") $) 251 (|has| |#1| (-971))) (((-3 (-382 (-881 |#1|)) "failed") $) 235 (|has| |#1| (-514))) (((-3 |#1| "failed") $) 197) (((-3 (-522) "failed") $) 195 (|has| |#1| (-962 (-522)))) (((-3 (-1085) "failed") $) 188) (((-3 (-561 $) "failed") $) 139) (((-3 (-382 (-522)) "failed") $) 123 (-3708 (-12 (|has| |#1| (-962 (-522))) (|has| |#1| (-514))) (|has| |#1| (-962 (-382 (-522))))))) (-1484 (((-881 |#1|) $) 252 (|has| |#1| (-971))) (((-382 (-881 |#1|)) $) 236 (|has| |#1| (-514))) ((|#1| $) 198) (((-522) $) 194 (|has| |#1| (-962 (-522)))) (((-1085) $) 189) (((-561 $) $) 140) (((-382 (-522)) $) 122 (-3708 (-12 (|has| |#1| (-962 (-522))) (|has| |#1| (-514))) (|has| |#1| (-962 (-382 (-522))))))) (-2277 (($ $ $) 55)) (-2096 (((-628 |#1|) (-628 $)) 241 (|has| |#1| (-971))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 240 (|has| |#1| (-971))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 121 (-3708 (-4015 (|has| |#1| (-971)) (|has| |#1| (-584 (-522)))) (-4015 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))))) (((-628 (-522)) (-628 $)) 120 (-3708 (-4015 (|has| |#1| (-971)) (|has| |#1| (-584 (-522)))) (-4015 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))))) (-2682 (((-3 $ "failed") $) 34)) (-2254 (($ $ $) 56)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-2813 (((-108) $) 71)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 193 (|has| |#1| (-815 (-354)))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 192 (|has| |#1| (-815 (-522))))) (-1953 (($ (-588 $)) 158) (($ $) 157)) (-4161 (((-588 (-110)) $) 165)) (-2626 (((-110) (-110)) 166)) (-2782 (((-108) $) 31)) (-2591 (((-108) $) 186 (|has| $ (-962 (-522))))) (-2902 (($ $) 218 (|has| |#1| (-971)))) (-2805 (((-1037 |#1| (-561 $)) $) 217 (|has| |#1| (-971)))) (-1504 (($ $ (-522)) 91)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-1711 (((-1081 $) (-561 $)) 183 (|has| $ (-971)))) (-2814 (($ $ $) 137)) (-2446 (($ $ $) 136)) (-1391 (($ (-1 $ $) (-561 $)) 172)) (-3993 (((-3 (-561 $) "failed") $) 162)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-1267 (((-588 (-561 $)) $) 163)) (-2909 (($ (-110) (-588 $)) 171) (($ (-110) $) 170)) (-2462 (((-3 (-588 $) "failed") $) 212 (|has| |#1| (-1026)))) (-2170 (((-3 (-2 (|:| |val| $) (|:| -1400 (-522))) "failed") $) 221 (|has| |#1| (-971)))) (-4193 (((-3 (-588 $) "failed") $) 214 (|has| |#1| (-25)))) (-1241 (((-3 (-2 (|:| -2977 (-522)) (|:| |var| (-561 $))) "failed") $) 215 (|has| |#1| (-25)))) (-3285 (((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $ (-1085)) 220 (|has| |#1| (-971))) (((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $ (-110)) 219 (|has| |#1| (-971))) (((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $) 213 (|has| |#1| (-1026)))) (-2249 (((-108) $ (-1085)) 169) (((-108) $ (-110)) 168)) (-3098 (($ $) 70)) (-4155 (((-708) $) 161)) (-4151 (((-1032) $) 10)) (-3108 (((-108) $) 199)) (-3118 ((|#1| $) 200)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-1648 (((-108) $ (-1085)) 174) (((-108) $ $) 173)) (-1916 (((-393 $) $) 74)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-1263 (((-108) $) 185 (|has| $ (-962 (-522))))) (-2289 (($ $ (-1085) (-708) (-1 $ $)) 225 (|has| |#1| (-971))) (($ $ (-1085) (-708) (-1 $ (-588 $))) 224 (|has| |#1| (-971))) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ (-588 $)))) 223 (|has| |#1| (-971))) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ $))) 222 (|has| |#1| (-971))) (($ $ (-588 (-110)) (-588 $) (-1085)) 211 (|has| |#1| (-563 (-498)))) (($ $ (-110) $ (-1085)) 210 (|has| |#1| (-563 (-498)))) (($ $) 209 (|has| |#1| (-563 (-498)))) (($ $ (-588 (-1085))) 208 (|has| |#1| (-563 (-498)))) (($ $ (-1085)) 207 (|has| |#1| (-563 (-498)))) (($ $ (-110) (-1 $ $)) 182) (($ $ (-110) (-1 $ (-588 $))) 181) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) 180) (($ $ (-588 (-110)) (-588 (-1 $ $))) 179) (($ $ (-1085) (-1 $ $)) 178) (($ $ (-1085) (-1 $ (-588 $))) 177) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) 176) (($ $ (-588 (-1085)) (-588 (-1 $ $))) 175) (($ $ (-588 $) (-588 $)) 146) (($ $ $ $) 145) (($ $ (-270 $)) 144) (($ $ (-588 (-270 $))) 143) (($ $ (-588 (-561 $)) (-588 $)) 142) (($ $ (-561 $) $) 141)) (-3730 (((-708) $) 58)) (-2545 (($ (-110) (-588 $)) 151) (($ (-110) $ $ $ $) 150) (($ (-110) $ $ $) 149) (($ (-110) $ $) 148) (($ (-110) $) 147)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57)) (-3043 (($ $ $) 160) (($ $) 159)) (-2157 (($ $ (-1085)) 249 (|has| |#1| (-971))) (($ $ (-588 (-1085))) 248 (|has| |#1| (-971))) (($ $ (-1085) (-708)) 247 (|has| |#1| (-971))) (($ $ (-588 (-1085)) (-588 (-708))) 246 (|has| |#1| (-971)))) (-3533 (($ $) 228 (|has| |#1| (-514)))) (-2816 (((-1037 |#1| (-561 $)) $) 227 (|has| |#1| (-514)))) (-1479 (($ $) 184 (|has| $ (-971)))) (-1431 (((-498) $) 255 (|has| |#1| (-563 (-498)))) (($ (-393 $)) 226 (|has| |#1| (-514))) (((-821 (-354)) $) 191 (|has| |#1| (-563 (-821 (-354))))) (((-821 (-522)) $) 190 (|has| |#1| (-563 (-821 (-522)))))) (-3122 (($ $ $) 254 (|has| |#1| (-447)))) (-1288 (($ $ $) 253 (|has| |#1| (-447)))) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65) (($ (-881 |#1|)) 250 (|has| |#1| (-971))) (($ (-382 (-881 |#1|))) 234 (|has| |#1| (-514))) (($ (-382 (-881 (-382 |#1|)))) 232 (|has| |#1| (-514))) (($ (-881 (-382 |#1|))) 231 (|has| |#1| (-514))) (($ (-382 |#1|)) 230 (|has| |#1| (-514))) (($ (-1037 |#1| (-561 $))) 216 (|has| |#1| (-971))) (($ |#1|) 196) (($ (-1085)) 187) (($ (-561 $)) 138)) (-2143 (((-3 $ "failed") $) 239 (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-2308 (($ (-588 $)) 156) (($ $) 155)) (-3614 (((-108) (-110)) 167)) (-3958 (((-108) $ $) 39)) (-1805 (($ (-1085) (-588 $)) 206) (($ (-1085) $ $ $ $) 205) (($ (-1085) $ $ $) 204) (($ (-1085) $ $) 203) (($ (-1085) $) 202)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-1085)) 245 (|has| |#1| (-971))) (($ $ (-588 (-1085))) 244 (|has| |#1| (-971))) (($ $ (-1085) (-708)) 243 (|has| |#1| (-971))) (($ $ (-588 (-1085)) (-588 (-708))) 242 (|has| |#1| (-971)))) (-1574 (((-108) $ $) 134)) (-1558 (((-108) $ $) 133)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 135)) (-1549 (((-108) $ $) 132)) (-1620 (($ $ $) 64) (($ (-1037 |#1| (-561 $)) (-1037 |#1| (-561 $))) 229 (|has| |#1| (-514)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68) (($ $ (-382 (-522))) 90)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66) (($ $ |#1|) 238 (|has| |#1| (-157))) (($ |#1| $) 237 (|has| |#1| (-157)))))
+(-10 -8 (-15 -3899 ((-588 |#1|) |#1| (-1085))) (-15 -3974 (|#1| |#1| (-1085))) (-15 -3899 ((-588 |#1|) |#1|)) (-15 -3974 (|#1| |#1|)) (-15 -2136 ((-588 |#1|) |#1| (-1085))) (-15 -1275 (|#1| |#1| (-1085))) (-15 -2136 ((-588 |#1|) |#1|)) (-15 -1275 (|#1| |#1|)) (-15 -3899 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -3899 ((-588 |#1|) (-1081 |#1|))) (-15 -3899 ((-588 |#1|) (-881 |#1|))) (-15 -3974 (|#1| (-1081 |#1|) (-1085))) (-15 -3974 (|#1| (-1081 |#1|))) (-15 -3974 (|#1| (-881 |#1|))) (-15 -2136 ((-588 |#1|) (-1081 |#1|) (-1085))) (-15 -2136 ((-588 |#1|) (-1081 |#1|))) (-15 -2136 ((-588 |#1|) (-881 |#1|))) (-15 -1275 (|#1| (-1081 |#1|) (-1085))) (-15 -1275 (|#1| (-1081 |#1|))) (-15 -1275 (|#1| (-881 |#1|))))
+((-1419 (((-108) $ $) 7)) (-3899 (((-588 $) (-881 $)) 80) (((-588 $) (-1081 $)) 79) (((-588 $) (-1081 $) (-1085)) 78) (((-588 $) $) 126) (((-588 $) $ (-1085)) 124)) (-3974 (($ (-881 $)) 83) (($ (-1081 $)) 82) (($ (-1081 $) (-1085)) 81) (($ $) 127) (($ $ (-1085)) 125)) (-2944 (((-108) $) 16)) (-3533 (((-588 (-1085)) $) 201)) (-1264 (((-382 (-1081 $)) $ (-561 $)) 233 (|has| |#1| (-514)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-1974 (((-588 (-561 $)) $) 164)) (-2265 (((-3 $ "failed") $ $) 19)) (-1847 (($ $ (-588 (-561 $)) (-588 $)) 154) (($ $ (-588 (-270 $))) 153) (($ $ (-270 $)) 152)) (-2961 (($ $) 73)) (-3133 (((-393 $) $) 72)) (-2016 (($ $) 92)) (-2805 (((-108) $ $) 59)) (-3367 (($) 17 T CONST)) (-2136 (((-588 $) (-881 $)) 86) (((-588 $) (-1081 $)) 85) (((-588 $) (-1081 $) (-1085)) 84) (((-588 $) $) 130) (((-588 $) $ (-1085)) 128)) (-1275 (($ (-881 $)) 89) (($ (-1081 $)) 88) (($ (-1081 $) (-1085)) 87) (($ $) 131) (($ $ (-1085)) 129)) (-3700 (((-3 (-881 |#1|) "failed") $) 251 (|has| |#1| (-971))) (((-3 (-382 (-881 |#1|)) "failed") $) 235 (|has| |#1| (-514))) (((-3 |#1| "failed") $) 197) (((-3 (-522) "failed") $) 195 (|has| |#1| (-962 (-522)))) (((-3 (-1085) "failed") $) 188) (((-3 (-561 $) "failed") $) 139) (((-3 (-382 (-522)) "failed") $) 123 (-3844 (-12 (|has| |#1| (-962 (-522))) (|has| |#1| (-514))) (|has| |#1| (-962 (-382 (-522))))))) (-1478 (((-881 |#1|) $) 252 (|has| |#1| (-971))) (((-382 (-881 |#1|)) $) 236 (|has| |#1| (-514))) ((|#1| $) 198) (((-522) $) 194 (|has| |#1| (-962 (-522)))) (((-1085) $) 189) (((-561 $) $) 140) (((-382 (-522)) $) 122 (-3844 (-12 (|has| |#1| (-962 (-522))) (|has| |#1| (-514))) (|has| |#1| (-962 (-382 (-522))))))) (-2333 (($ $ $) 55)) (-1226 (((-628 |#1|) (-628 $)) 241 (|has| |#1| (-971))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 240 (|has| |#1| (-971))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 121 (-3844 (-4079 (|has| |#1| (-971)) (|has| |#1| (-584 (-522)))) (-4079 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))))) (((-628 (-522)) (-628 $)) 120 (-3844 (-4079 (|has| |#1| (-971)) (|has| |#1| (-584 (-522)))) (-4079 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))))) (-3920 (((-3 $ "failed") $) 34)) (-2303 (($ $ $) 56)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-2725 (((-108) $) 71)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 193 (|has| |#1| (-815 (-354)))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 192 (|has| |#1| (-815 (-522))))) (-2930 (($ (-588 $)) 158) (($ $) 157)) (-2896 (((-588 (-110)) $) 165)) (-1771 (((-110) (-110)) 166)) (-2859 (((-108) $) 31)) (-3077 (((-108) $) 186 (|has| $ (-962 (-522))))) (-1558 (($ $) 218 (|has| |#1| (-971)))) (-2947 (((-1037 |#1| (-561 $)) $) 217 (|has| |#1| (-971)))) (-1811 (($ $ (-522)) 91)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-4185 (((-1081 $) (-561 $)) 183 (|has| $ (-971)))) (-1308 (($ $ $) 137)) (-2524 (($ $ $) 136)) (-3810 (($ (-1 $ $) (-561 $)) 172)) (-3562 (((-3 (-561 $) "failed") $) 162)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-1249 (((-588 (-561 $)) $) 163)) (-3043 (($ (-110) (-588 $)) 171) (($ (-110) $) 170)) (-2760 (((-3 (-588 $) "failed") $) 212 (|has| |#1| (-1026)))) (-3242 (((-3 (-2 (|:| |val| $) (|:| -3858 (-522))) "failed") $) 221 (|has| |#1| (-971)))) (-1919 (((-3 (-588 $) "failed") $) 214 (|has| |#1| (-25)))) (-2367 (((-3 (-2 (|:| -3112 (-522)) (|:| |var| (-561 $))) "failed") $) 215 (|has| |#1| (-25)))) (-2024 (((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $ (-1085)) 220 (|has| |#1| (-971))) (((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $ (-110)) 219 (|has| |#1| (-971))) (((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $) 213 (|has| |#1| (-1026)))) (-2935 (((-108) $ (-1085)) 169) (((-108) $ (-110)) 168)) (-3193 (($ $) 70)) (-4179 (((-708) $) 161)) (-4174 (((-1032) $) 10)) (-3199 (((-108) $) 199)) (-3207 ((|#1| $) 200)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-2368 (((-108) $ (-1085)) 174) (((-108) $ $) 173)) (-2006 (((-393 $) $) 74)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-2626 (((-108) $) 185 (|has| $ (-962 (-522))))) (-2330 (($ $ (-1085) (-708) (-1 $ $)) 225 (|has| |#1| (-971))) (($ $ (-1085) (-708) (-1 $ (-588 $))) 224 (|has| |#1| (-971))) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ (-588 $)))) 223 (|has| |#1| (-971))) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ $))) 222 (|has| |#1| (-971))) (($ $ (-588 (-110)) (-588 $) (-1085)) 211 (|has| |#1| (-563 (-498)))) (($ $ (-110) $ (-1085)) 210 (|has| |#1| (-563 (-498)))) (($ $) 209 (|has| |#1| (-563 (-498)))) (($ $ (-588 (-1085))) 208 (|has| |#1| (-563 (-498)))) (($ $ (-1085)) 207 (|has| |#1| (-563 (-498)))) (($ $ (-110) (-1 $ $)) 182) (($ $ (-110) (-1 $ (-588 $))) 181) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) 180) (($ $ (-588 (-110)) (-588 (-1 $ $))) 179) (($ $ (-1085) (-1 $ $)) 178) (($ $ (-1085) (-1 $ (-588 $))) 177) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) 176) (($ $ (-588 (-1085)) (-588 (-1 $ $))) 175) (($ $ (-588 $) (-588 $)) 146) (($ $ $ $) 145) (($ $ (-270 $)) 144) (($ $ (-588 (-270 $))) 143) (($ $ (-588 (-561 $)) (-588 $)) 142) (($ $ (-561 $) $) 141)) (-4031 (((-708) $) 58)) (-2683 (($ (-110) (-588 $)) 151) (($ (-110) $ $ $ $) 150) (($ (-110) $ $ $) 149) (($ (-110) $ $) 148) (($ (-110) $) 147)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57)) (-3406 (($ $ $) 160) (($ $) 159)) (-2731 (($ $ (-1085)) 249 (|has| |#1| (-971))) (($ $ (-588 (-1085))) 248 (|has| |#1| (-971))) (($ $ (-1085) (-708)) 247 (|has| |#1| (-971))) (($ $ (-588 (-1085)) (-588 (-708))) 246 (|has| |#1| (-971)))) (-2762 (($ $) 228 (|has| |#1| (-514)))) (-2959 (((-1037 |#1| (-561 $)) $) 227 (|has| |#1| (-514)))) (-1579 (($ $) 184 (|has| $ (-971)))) (-3873 (((-498) $) 255 (|has| |#1| (-563 (-498)))) (($ (-393 $)) 226 (|has| |#1| (-514))) (((-821 (-354)) $) 191 (|has| |#1| (-563 (-821 (-354))))) (((-821 (-522)) $) 190 (|has| |#1| (-563 (-821 (-522)))))) (-2983 (($ $ $) 254 (|has| |#1| (-447)))) (-1596 (($ $ $) 253 (|has| |#1| (-447)))) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65) (($ (-881 |#1|)) 250 (|has| |#1| (-971))) (($ (-382 (-881 |#1|))) 234 (|has| |#1| (-514))) (($ (-382 (-881 (-382 |#1|)))) 232 (|has| |#1| (-514))) (($ (-881 (-382 |#1|))) 231 (|has| |#1| (-514))) (($ (-382 |#1|)) 230 (|has| |#1| (-514))) (($ (-1037 |#1| (-561 $))) 216 (|has| |#1| (-971))) (($ |#1|) 196) (($ (-1085)) 187) (($ (-561 $)) 138)) (-3040 (((-3 $ "failed") $) 239 (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-3811 (($ (-588 $)) 156) (($ $) 155)) (-4082 (((-108) (-110)) 167)) (-1407 (((-108) $ $) 39)) (-1899 (($ (-1085) (-588 $)) 206) (($ (-1085) $ $ $ $) 205) (($ (-1085) $ $ $) 204) (($ (-1085) $ $) 203) (($ (-1085) $) 202)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-1085)) 245 (|has| |#1| (-971))) (($ $ (-588 (-1085))) 244 (|has| |#1| (-971))) (($ $ (-1085) (-708)) 243 (|has| |#1| (-971))) (($ $ (-588 (-1085)) (-588 (-708))) 242 (|has| |#1| (-971)))) (-1623 (((-108) $ $) 134)) (-1597 (((-108) $ $) 133)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 135)) (-1587 (((-108) $ $) 132)) (-1682 (($ $ $) 64) (($ (-1037 |#1| (-561 $)) (-1037 |#1| (-561 $))) 229 (|has| |#1| (-514)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68) (($ $ (-382 (-522))) 90)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66) (($ $ |#1|) 238 (|has| |#1| (-157))) (($ |#1| $) 237 (|has| |#1| (-157)))))
(((-29 |#1|) (-1197) (-13 (-784) (-514))) (T -29))
-((-3944 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-784) (-514))))) (-1221 (*1 *2 *1) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *2 (-588 *1)) (-4 *1 (-29 *3)))) (-3944 (*1 *1 *1 *2) (-12 (-5 *2 (-1085)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-784) (-514))))) (-1221 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-588 *1)) (-4 *1 (-29 *4)))) (-4032 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-784) (-514))))) (-1617 (*1 *2 *1) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *2 (-588 *1)) (-4 *1 (-29 *3)))) (-4032 (*1 *1 *1 *2) (-12 (-5 *2 (-1085)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-784) (-514))))) (-1617 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-588 *1)) (-4 *1 (-29 *4)))))
-(-13 (-27) (-405 |t#1|) (-10 -8 (-15 -3944 ($ $)) (-15 -1221 ((-588 $) $)) (-15 -3944 ($ $ (-1085))) (-15 -1221 ((-588 $) $ (-1085))) (-15 -4032 ($ $)) (-15 -1617 ((-588 $) $)) (-15 -4032 ($ $ (-1085))) (-15 -1617 ((-588 $) $ (-1085)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) . T) ((-27) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) |has| |#1| (-157)) ((-107 $ $) . T) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-563 (-821 (-354))) |has| |#1| (-563 (-821 (-354)))) ((-563 (-821 (-522))) |has| |#1| (-563 (-821 (-522)))) ((-220) . T) ((-266) . T) ((-283) . T) ((-285 $) . T) ((-278) . T) ((-338) . T) ((-352 |#1|) |has| |#1| (-971)) ((-375 |#1|) . T) ((-386 |#1|) . T) ((-405 |#1|) . T) ((-426) . T) ((-447) |has| |#1| (-447)) ((-483 (-561 $) $) . T) ((-483 $ $) . T) ((-514) . T) ((-590 #0#) . T) ((-590 |#1|) |has| |#1| (-157)) ((-590 $) . T) ((-584 (-522)) -12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) ((-584 |#1|) |has| |#1| (-971)) ((-655 #0#) . T) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) . T) ((-664) . T) ((-784) . T) ((-829 (-1085)) |has| |#1| (-971)) ((-815 (-354)) |has| |#1| (-815 (-354))) ((-815 (-522)) |has| |#1| (-815 (-522))) ((-813 |#1|) . T) ((-849) . T) ((-928) . T) ((-962 (-382 (-522))) -3708 (|has| |#1| (-962 (-382 (-522)))) (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522))))) ((-962 (-382 (-881 |#1|))) |has| |#1| (-514)) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 (-561 $)) . T) ((-962 (-881 |#1|)) |has| |#1| (-971)) ((-962 (-1085)) . T) ((-962 |#1|) . T) ((-977 #0#) . T) ((-977 |#1|) |has| |#1| (-157)) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1120) . T) ((-1124) . T))
-((-3808 (((-1009 (-202)) $) NIL)) (-3794 (((-1009 (-202)) $) NIL)) (-1499 (($ $ (-202)) 123)) (-1356 (($ (-881 (-522)) (-1085) (-1085) (-1009 (-382 (-522))) (-1009 (-382 (-522)))) 85)) (-2745 (((-588 (-588 (-872 (-202)))) $) 135)) (-2190 (((-792) $) 147)))
-(((-30) (-13 (-883) (-10 -8 (-15 -1356 ($ (-881 (-522)) (-1085) (-1085) (-1009 (-382 (-522))) (-1009 (-382 (-522))))) (-15 -1499 ($ $ (-202)))))) (T -30))
-((-1356 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-881 (-522))) (-5 *3 (-1085)) (-5 *4 (-1009 (-382 (-522)))) (-5 *1 (-30)))) (-1499 (*1 *1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-30)))))
-(-13 (-883) (-10 -8 (-15 -1356 ($ (-881 (-522)) (-1085) (-1085) (-1009 (-382 (-522))) (-1009 (-382 (-522))))) (-15 -1499 ($ $ (-202)))))
-((-3944 ((|#2| (-1081 |#2|) (-1085)) 42)) (-2626 (((-110) (-110)) 55)) (-1711 (((-1081 |#2|) (-561 |#2|)) 131 (|has| |#1| (-962 (-522))))) (-1710 ((|#2| |#1| (-522)) 110 (|has| |#1| (-962 (-522))))) (-1777 ((|#2| (-1081 |#2|) |#2|) 30)) (-4080 (((-792) (-588 |#2|)) 86)) (-1479 ((|#2| |#2|) 127 (|has| |#1| (-962 (-522))))) (-3614 (((-108) (-110)) 18)) (** ((|#2| |#2| (-382 (-522))) 91 (|has| |#1| (-962 (-522))))))
-(((-31 |#1| |#2|) (-10 -7 (-15 -3944 (|#2| (-1081 |#2|) (-1085))) (-15 -2626 ((-110) (-110))) (-15 -3614 ((-108) (-110))) (-15 -1777 (|#2| (-1081 |#2|) |#2|)) (-15 -4080 ((-792) (-588 |#2|))) (IF (|has| |#1| (-962 (-522))) (PROGN (-15 ** (|#2| |#2| (-382 (-522)))) (-15 -1711 ((-1081 |#2|) (-561 |#2|))) (-15 -1479 (|#2| |#2|)) (-15 -1710 (|#2| |#1| (-522)))) |%noBranch|)) (-13 (-784) (-514)) (-405 |#1|)) (T -31))
-((-1710 (*1 *2 *3 *4) (-12 (-5 *4 (-522)) (-4 *2 (-405 *3)) (-5 *1 (-31 *3 *2)) (-4 *3 (-962 *4)) (-4 *3 (-13 (-784) (-514))))) (-1479 (*1 *2 *2) (-12 (-4 *3 (-962 (-522))) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-31 *3 *2)) (-4 *2 (-405 *3)))) (-1711 (*1 *2 *3) (-12 (-5 *3 (-561 *5)) (-4 *5 (-405 *4)) (-4 *4 (-962 (-522))) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-1081 *5)) (-5 *1 (-31 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-382 (-522))) (-4 *4 (-962 (-522))) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-31 *4 *2)) (-4 *2 (-405 *4)))) (-4080 (*1 *2 *3) (-12 (-5 *3 (-588 *5)) (-4 *5 (-405 *4)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-792)) (-5 *1 (-31 *4 *5)))) (-1777 (*1 *2 *3 *2) (-12 (-5 *3 (-1081 *2)) (-4 *2 (-405 *4)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-31 *4 *2)))) (-3614 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-31 *4 *5)) (-4 *5 (-405 *4)))) (-2626 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-31 *3 *4)) (-4 *4 (-405 *3)))) (-3944 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *2)) (-5 *4 (-1085)) (-4 *2 (-405 *5)) (-5 *1 (-31 *5 *2)) (-4 *5 (-13 (-784) (-514))))))
-(-10 -7 (-15 -3944 (|#2| (-1081 |#2|) (-1085))) (-15 -2626 ((-110) (-110))) (-15 -3614 ((-108) (-110))) (-15 -1777 (|#2| (-1081 |#2|) |#2|)) (-15 -4080 ((-792) (-588 |#2|))) (IF (|has| |#1| (-962 (-522))) (PROGN (-15 ** (|#2| |#2| (-382 (-522)))) (-15 -1711 ((-1081 |#2|) (-561 |#2|))) (-15 -1479 (|#2| |#2|)) (-15 -1710 (|#2| |#1| (-522)))) |%noBranch|))
-((-4141 (((-108) $ (-708)) 16)) (-3175 (($) 10)) (-3352 (((-108) $ (-708)) 15)) (-2720 (((-108) $ (-708)) 14)) (-1536 (((-108) $ $) 8)) (-3985 (((-108) $) 13)))
-(((-32 |#1|) (-10 -8 (-15 -3175 (|#1|)) (-15 -4141 ((-108) |#1| (-708))) (-15 -3352 ((-108) |#1| (-708))) (-15 -2720 ((-108) |#1| (-708))) (-15 -3985 ((-108) |#1|)) (-15 -1536 ((-108) |#1| |#1|))) (-33)) (T -32))
-NIL
-(-10 -8 (-15 -3175 (|#1|)) (-15 -4141 ((-108) |#1| (-708))) (-15 -3352 ((-108) |#1| (-708))) (-15 -2720 ((-108) |#1| (-708))) (-15 -3985 ((-108) |#1|)) (-15 -1536 ((-108) |#1| |#1|)))
-((-4141 (((-108) $ (-708)) 8)) (-3175 (($) 7 T CONST)) (-3352 (((-108) $ (-708)) 9)) (-2720 (((-108) $ (-708)) 10)) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2404 (($ $) 13)) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1275 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-784) (-514))))) (-2136 (*1 *2 *1) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *2 (-588 *1)) (-4 *1 (-29 *3)))) (-1275 (*1 *1 *1 *2) (-12 (-5 *2 (-1085)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-784) (-514))))) (-2136 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-588 *1)) (-4 *1 (-29 *4)))) (-3974 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-784) (-514))))) (-3899 (*1 *2 *1) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *2 (-588 *1)) (-4 *1 (-29 *3)))) (-3974 (*1 *1 *1 *2) (-12 (-5 *2 (-1085)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-784) (-514))))) (-3899 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-588 *1)) (-4 *1 (-29 *4)))))
+(-13 (-27) (-405 |t#1|) (-10 -8 (-15 -1275 ($ $)) (-15 -2136 ((-588 $) $)) (-15 -1275 ($ $ (-1085))) (-15 -2136 ((-588 $) $ (-1085))) (-15 -3974 ($ $)) (-15 -3899 ((-588 $) $)) (-15 -3974 ($ $ (-1085))) (-15 -3899 ((-588 $) $ (-1085)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) . T) ((-27) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) |has| |#1| (-157)) ((-107 $ $) . T) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-563 (-821 (-354))) |has| |#1| (-563 (-821 (-354)))) ((-563 (-821 (-522))) |has| |#1| (-563 (-821 (-522)))) ((-220) . T) ((-266) . T) ((-283) . T) ((-285 $) . T) ((-278) . T) ((-338) . T) ((-352 |#1|) |has| |#1| (-971)) ((-375 |#1|) . T) ((-386 |#1|) . T) ((-405 |#1|) . T) ((-426) . T) ((-447) |has| |#1| (-447)) ((-483 (-561 $) $) . T) ((-483 $ $) . T) ((-514) . T) ((-590 #0#) . T) ((-590 |#1|) |has| |#1| (-157)) ((-590 $) . T) ((-584 (-522)) -12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) ((-584 |#1|) |has| |#1| (-971)) ((-655 #0#) . T) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) . T) ((-664) . T) ((-784) . T) ((-829 (-1085)) |has| |#1| (-971)) ((-815 (-354)) |has| |#1| (-815 (-354))) ((-815 (-522)) |has| |#1| (-815 (-522))) ((-813 |#1|) . T) ((-849) . T) ((-928) . T) ((-962 (-382 (-522))) -3844 (|has| |#1| (-962 (-382 (-522)))) (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522))))) ((-962 (-382 (-881 |#1|))) |has| |#1| (-514)) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 (-561 $)) . T) ((-962 (-881 |#1|)) |has| |#1| (-971)) ((-962 (-1085)) . T) ((-962 |#1|) . T) ((-977 #0#) . T) ((-977 |#1|) |has| |#1| (-157)) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1120) . T) ((-1124) . T))
+((-2366 (((-1009 (-202)) $) NIL)) (-2351 (((-1009 (-202)) $) NIL)) (-1776 (($ $ (-202)) 123)) (-3467 (($ (-881 (-522)) (-1085) (-1085) (-1009 (-382 (-522))) (-1009 (-382 (-522)))) 85)) (-1414 (((-588 (-588 (-872 (-202)))) $) 135)) (-2217 (((-792) $) 147)))
+(((-30) (-13 (-883) (-10 -8 (-15 -3467 ($ (-881 (-522)) (-1085) (-1085) (-1009 (-382 (-522))) (-1009 (-382 (-522))))) (-15 -1776 ($ $ (-202)))))) (T -30))
+((-3467 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-881 (-522))) (-5 *3 (-1085)) (-5 *4 (-1009 (-382 (-522)))) (-5 *1 (-30)))) (-1776 (*1 *1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-30)))))
+(-13 (-883) (-10 -8 (-15 -3467 ($ (-881 (-522)) (-1085) (-1085) (-1009 (-382 (-522))) (-1009 (-382 (-522))))) (-15 -1776 ($ $ (-202)))))
+((-1275 ((|#2| (-1081 |#2|) (-1085)) 42)) (-1771 (((-110) (-110)) 55)) (-4185 (((-1081 |#2|) (-561 |#2|)) 131 (|has| |#1| (-962 (-522))))) (-4172 ((|#2| |#1| (-522)) 110 (|has| |#1| (-962 (-522))))) (-3576 ((|#2| (-1081 |#2|) |#2|) 30)) (-3239 (((-792) (-588 |#2|)) 86)) (-1579 ((|#2| |#2|) 127 (|has| |#1| (-962 (-522))))) (-4082 (((-108) (-110)) 18)) (** ((|#2| |#2| (-382 (-522))) 91 (|has| |#1| (-962 (-522))))))
+(((-31 |#1| |#2|) (-10 -7 (-15 -1275 (|#2| (-1081 |#2|) (-1085))) (-15 -1771 ((-110) (-110))) (-15 -4082 ((-108) (-110))) (-15 -3576 (|#2| (-1081 |#2|) |#2|)) (-15 -3239 ((-792) (-588 |#2|))) (IF (|has| |#1| (-962 (-522))) (PROGN (-15 ** (|#2| |#2| (-382 (-522)))) (-15 -4185 ((-1081 |#2|) (-561 |#2|))) (-15 -1579 (|#2| |#2|)) (-15 -4172 (|#2| |#1| (-522)))) |%noBranch|)) (-13 (-784) (-514)) (-405 |#1|)) (T -31))
+((-4172 (*1 *2 *3 *4) (-12 (-5 *4 (-522)) (-4 *2 (-405 *3)) (-5 *1 (-31 *3 *2)) (-4 *3 (-962 *4)) (-4 *3 (-13 (-784) (-514))))) (-1579 (*1 *2 *2) (-12 (-4 *3 (-962 (-522))) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-31 *3 *2)) (-4 *2 (-405 *3)))) (-4185 (*1 *2 *3) (-12 (-5 *3 (-561 *5)) (-4 *5 (-405 *4)) (-4 *4 (-962 (-522))) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-1081 *5)) (-5 *1 (-31 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-382 (-522))) (-4 *4 (-962 (-522))) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-31 *4 *2)) (-4 *2 (-405 *4)))) (-3239 (*1 *2 *3) (-12 (-5 *3 (-588 *5)) (-4 *5 (-405 *4)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-792)) (-5 *1 (-31 *4 *5)))) (-3576 (*1 *2 *3 *2) (-12 (-5 *3 (-1081 *2)) (-4 *2 (-405 *4)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-31 *4 *2)))) (-4082 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-31 *4 *5)) (-4 *5 (-405 *4)))) (-1771 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-31 *3 *4)) (-4 *4 (-405 *3)))) (-1275 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *2)) (-5 *4 (-1085)) (-4 *2 (-405 *5)) (-5 *1 (-31 *5 *2)) (-4 *5 (-13 (-784) (-514))))))
+(-10 -7 (-15 -1275 (|#2| (-1081 |#2|) (-1085))) (-15 -1771 ((-110) (-110))) (-15 -4082 ((-108) (-110))) (-15 -3576 (|#2| (-1081 |#2|) |#2|)) (-15 -3239 ((-792) (-588 |#2|))) (IF (|has| |#1| (-962 (-522))) (PROGN (-15 ** (|#2| |#2| (-382 (-522)))) (-15 -4185 ((-1081 |#2|) (-561 |#2|))) (-15 -1579 (|#2| |#2|)) (-15 -4172 (|#2| |#1| (-522)))) |%noBranch|))
+((-2717 (((-108) $ (-708)) 16)) (-3367 (($) 10)) (-1480 (((-108) $ (-708)) 15)) (-3309 (((-108) $ (-708)) 14)) (-2065 (((-108) $ $) 8)) (-3494 (((-108) $) 13)))
+(((-32 |#1|) (-10 -8 (-15 -3367 (|#1|)) (-15 -2717 ((-108) |#1| (-708))) (-15 -1480 ((-108) |#1| (-708))) (-15 -3309 ((-108) |#1| (-708))) (-15 -3494 ((-108) |#1|)) (-15 -2065 ((-108) |#1| |#1|))) (-33)) (T -32))
+NIL
+(-10 -8 (-15 -3367 (|#1|)) (-15 -2717 ((-108) |#1| (-708))) (-15 -1480 ((-108) |#1| (-708))) (-15 -3309 ((-108) |#1| (-708))) (-15 -3494 ((-108) |#1|)) (-15 -2065 ((-108) |#1| |#1|)))
+((-2717 (((-108) $ (-708)) 8)) (-3367 (($) 7 T CONST)) (-1480 (((-108) $ (-708)) 9)) (-3309 (((-108) $ (-708)) 10)) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2463 (($ $) 13)) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-33) (-1197)) (T -33))
-((-1536 (*1 *2 *1 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108)))) (-2404 (*1 *1 *1) (-4 *1 (-33))) (-3775 (*1 *1) (-4 *1 (-33))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108)))) (-2720 (*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-708)) (-5 *2 (-108)))) (-3352 (*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-708)) (-5 *2 (-108)))) (-4141 (*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-708)) (-5 *2 (-108)))) (-3175 (*1 *1) (-4 *1 (-33))) (-3480 (*1 *2 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-33)) (-5 *2 (-708)))))
-(-13 (-1120) (-10 -8 (-15 -1536 ((-108) $ $)) (-15 -2404 ($ $)) (-15 -3775 ($)) (-15 -3985 ((-108) $)) (-15 -2720 ((-108) $ (-708))) (-15 -3352 ((-108) $ (-708))) (-15 -4141 ((-108) $ (-708))) (-15 -3175 ($) -2677) (IF (|has| $ (-6 -4238)) (-15 -3480 ((-708) $)) |%noBranch|)))
+((-2065 (*1 *2 *1 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108)))) (-2463 (*1 *1 *1) (-4 *1 (-33))) (-3298 (*1 *1) (-4 *1 (-33))) (-3494 (*1 *2 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108)))) (-3309 (*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-708)) (-5 *2 (-108)))) (-1480 (*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-708)) (-5 *2 (-108)))) (-2717 (*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-708)) (-5 *2 (-108)))) (-3367 (*1 *1) (-4 *1 (-33))) (-3591 (*1 *2 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-33)) (-5 *2 (-708)))))
+(-13 (-1120) (-10 -8 (-15 -2065 ((-108) $ $)) (-15 -2463 ($ $)) (-15 -3298 ($)) (-15 -3494 ((-108) $)) (-15 -3309 ((-108) $ (-708))) (-15 -1480 ((-108) $ (-708))) (-15 -2717 ((-108) $ (-708))) (-15 -3367 ($) -2855) (IF (|has| $ (-6 -4238)) (-15 -3591 ((-708) $)) |%noBranch|)))
(((-1120) . T))
-((-1759 (($ $) 11)) (-1745 (($ $) 10)) (-1776 (($ $) 9)) (-3924 (($ $) 8)) (-1768 (($ $) 7)) (-1752 (($ $) 6)))
+((-1856 (($ $) 11)) (-1839 (($ $) 10)) (-1873 (($ $) 9)) (-2476 (($ $) 8)) (-1864 (($ $) 7)) (-1849 (($ $) 6)))
(((-34) (-1197)) (T -34))
-((-1759 (*1 *1 *1) (-4 *1 (-34))) (-1745 (*1 *1 *1) (-4 *1 (-34))) (-1776 (*1 *1 *1) (-4 *1 (-34))) (-3924 (*1 *1 *1) (-4 *1 (-34))) (-1768 (*1 *1 *1) (-4 *1 (-34))) (-1752 (*1 *1 *1) (-4 *1 (-34))))
-(-13 (-10 -8 (-15 -1752 ($ $)) (-15 -1768 ($ $)) (-15 -3924 ($ $)) (-15 -1776 ($ $)) (-15 -1745 ($ $)) (-15 -1759 ($ $))))
-((-1416 (((-108) $ $) 19 (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-3435 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 125)) (-2093 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 148)) (-3835 (($ $) 146)) (-1800 (($) 72) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 71)) (-2679 (((-1171) $ |#1| |#1|) 99 (|has| $ (-6 -4239))) (((-1171) $ (-522) (-522)) 178 (|has| $ (-6 -4239)))) (-3487 (($ $ (-522)) 159 (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 209) (((-108) $) 203 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-3537 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 200 (|has| $ (-6 -4239))) (($ $) 199 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)) (|has| $ (-6 -4239))))) (-3216 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 210) (($ $) 204 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-4141 (((-108) $ (-708)) 8)) (-3628 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 134 (|has| $ (-6 -4239)))) (-1243 (($ $ $) 155 (|has| $ (-6 -4239)))) (-2049 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 157 (|has| $ (-6 -4239)))) (-1346 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 153 (|has| $ (-6 -4239)))) (-2379 ((|#2| $ |#1| |#2|) 73) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 189 (|has| $ (-6 -4239))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-1133 (-522)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 160 (|has| $ (-6 -4239))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ "last" (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 158 (|has| $ (-6 -4239))) (($ $ "rest" $) 156 (|has| $ (-6 -4239))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ "first" (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 154 (|has| $ (-6 -4239))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ "value" (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 133 (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) 132 (|has| $ (-6 -4239)))) (-2790 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 45 (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 216)) (-1628 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 55 (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 175 (|has| $ (-6 -4238)))) (-2081 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 147)) (-2750 (((-3 |#2| "failed") |#1| $) 61)) (-3175 (($) 7 T CONST)) (-3509 (($ $) 201 (|has| $ (-6 -4239)))) (-1862 (($ $) 211)) (-2306 (($ $ (-708)) 142) (($ $) 140)) (-3362 (($ $) 214 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-2333 (($ $) 58 (-3708 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238))) (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))))) (-3859 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 46 (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) 62) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 220) (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 215 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-1423 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 54 (|has| $ (-6 -4238))) (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 177 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 174 (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 56 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 53 (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 52 (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 176 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 173 (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 172 (|has| $ (-6 -4238)))) (-3854 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4239))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 190 (|has| $ (-6 -4239)))) (-3631 ((|#2| $ |#1|) 88) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522)) 188)) (-3069 (((-108) $) 192)) (-3238 (((-522) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 208) (((-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 207 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))) (((-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522)) 206 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-3837 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 30 (|has| $ (-6 -4238))) (((-588 |#2|) $) 79 (|has| $ (-6 -4238))) (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 114 (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) 123)) (-2030 (((-108) $ $) 131 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-1811 (($ (-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 169)) (-3352 (((-108) $ (-708)) 9)) (-1359 ((|#1| $) 96 (|has| |#1| (-784))) (((-522) $) 180 (|has| (-522) (-784)))) (-2814 (($ $ $) 198 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-1369 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ $) 217) (($ $ $) 213 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-2160 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ $) 212) (($ $ $) 205 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-3308 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 29 (|has| $ (-6 -4238))) (((-588 |#2|) $) 80 (|has| $ (-6 -4238))) (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 115 (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-108) |#2| $) 82 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238)))) (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238))))) (-2014 ((|#1| $) 95 (|has| |#1| (-784))) (((-522) $) 181 (|has| (-522) (-784)))) (-2446 (($ $ $) 197 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 34 (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4239))) (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 110 (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70) (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ $) 166) (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 109)) (-1580 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 225)) (-2720 (((-108) $ (-708)) 10)) (-1279 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 128)) (-1754 (((-108) $) 124)) (-2385 (((-1068) $) 22 (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-1442 (($ $ (-708)) 145) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 143)) (-2966 (((-588 |#1|) $) 63)) (-1231 (((-108) |#1| $) 64)) (-2116 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 39)) (-4095 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 40) (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522)) 219) (($ $ $ (-522)) 218)) (-1661 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522)) 162) (($ $ $ (-522)) 161)) (-3604 (((-588 |#1|) $) 93) (((-588 (-522)) $) 183)) (-1405 (((-108) |#1| $) 92) (((-108) (-522) $) 184)) (-4151 (((-1032) $) 21 (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-2294 ((|#2| $) 97 (|has| |#1| (-784))) (($ $ (-708)) 139) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 137)) (-1414 (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 51) (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 171)) (-2602 (($ $ |#2|) 98 (|has| $ (-6 -4239))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 179 (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 41)) (-2855 (((-108) $) 191)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 32 (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) 77 (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 112 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))))) 26 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 25 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 24 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 23 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) 86 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) 84 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) 83 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 121 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 120 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 119 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))))) 118 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#2| $) 94 (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 182 (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-1525 (((-588 |#2|) $) 91) (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 185)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 187) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522)) 186) (($ $ (-1133 (-522))) 165) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ "last") 144) (($ $ "rest") 141) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ "first") 138) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ "value") 126)) (-2011 (((-522) $ $) 129)) (-3990 (($) 49) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 48)) (-3681 (($ $ (-522)) 222) (($ $ (-1133 (-522))) 221)) (-3696 (($ $ (-522)) 164) (($ $ (-1133 (-522))) 163)) (-3042 (((-108) $) 127)) (-3107 (($ $) 151)) (-2646 (($ $) 152 (|has| $ (-6 -4239)))) (-2393 (((-708) $) 150)) (-2122 (($ $) 149)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 31 (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-708) |#2| $) 81 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#2|) $) 78 (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 116 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 113 (|has| $ (-6 -4238)))) (-1577 (($ $ $ (-522)) 202 (|has| $ (-6 -4239)))) (-2404 (($ $) 13)) (-1431 (((-498) $) 59 (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498)))))) (-2201 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 50) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 170)) (-2630 (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 224) (($ $ $) 223)) (-4165 (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 168) (($ (-588 $)) 167) (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 136) (($ $ $) 135)) (-2190 (((-792) $) 18 (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792)))))) (-1749 (((-588 $) $) 122)) (-2425 (((-108) $ $) 130 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-2795 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 42)) (-1446 (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") |#1| $) 108)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 33 (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) 76 (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 111 (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) 195 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-1558 (((-108) $ $) 194 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-1531 (((-108) $ $) 20 (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-1566 (((-108) $ $) 196 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-1549 (((-108) $ $) 193 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1856 (*1 *1 *1) (-4 *1 (-34))) (-1839 (*1 *1 *1) (-4 *1 (-34))) (-1873 (*1 *1 *1) (-4 *1 (-34))) (-2476 (*1 *1 *1) (-4 *1 (-34))) (-1864 (*1 *1 *1) (-4 *1 (-34))) (-1849 (*1 *1 *1) (-4 *1 (-34))))
+(-13 (-10 -8 (-15 -1849 ($ $)) (-15 -1864 ($ $)) (-15 -2476 ($ $)) (-15 -1873 ($ $)) (-15 -1839 ($ $)) (-15 -1856 ($ $))))
+((-1419 (((-108) $ $) 19 (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-3526 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 125)) (-2126 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 148)) (-3961 (($ $) 146)) (-1883 (($) 72) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 71)) (-3883 (((-1171) $ |#1| |#1|) 99 (|has| $ (-6 -4239))) (((-1171) $ (-522) (-522)) 178 (|has| $ (-6 -4239)))) (-2211 (($ $ (-522)) 159 (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 209) (((-108) $) 203 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-2806 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 200 (|has| $ (-6 -4239))) (($ $) 199 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)) (|has| $ (-6 -4239))))) (-3296 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 210) (($ $) 204 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-2717 (((-108) $ (-708)) 8)) (-1198 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 134 (|has| $ (-6 -4239)))) (-2398 (($ $ $) 155 (|has| $ (-6 -4239)))) (-2631 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 157 (|has| $ (-6 -4239)))) (-3393 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 153 (|has| $ (-6 -4239)))) (-2437 ((|#2| $ |#1| |#2|) 73) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 189 (|has| $ (-6 -4239))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-1133 (-522)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 160 (|has| $ (-6 -4239))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ "last" (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 158 (|has| $ (-6 -4239))) (($ $ "rest" $) 156 (|has| $ (-6 -4239))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ "first" (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 154 (|has| $ (-6 -4239))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ "value" (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 133 (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) 132 (|has| $ (-6 -4239)))) (-1213 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 45 (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 216)) (-1696 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 55 (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 175 (|has| $ (-6 -4238)))) (-2116 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 147)) (-4011 (((-3 |#2| "failed") |#1| $) 61)) (-3367 (($) 7 T CONST)) (-2465 (($ $) 201 (|has| $ (-6 -4239)))) (-1939 (($ $) 211)) (-2352 (($ $ (-708)) 142) (($ $) 140)) (-1581 (($ $) 214 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-2379 (($ $) 58 (-3844 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238))) (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))))) (-1700 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 46 (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) 62) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 220) (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 215 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-1424 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 54 (|has| $ (-6 -4238))) (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 177 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 174 (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 56 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 53 (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 52 (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 176 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 173 (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 172 (|has| $ (-6 -4238)))) (-2411 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4239))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 190 (|has| $ (-6 -4239)))) (-2186 ((|#2| $ |#1|) 88) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522)) 188)) (-3614 (((-108) $) 192)) (-3314 (((-522) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 208) (((-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 207 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))) (((-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522)) 206 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-2395 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 30 (|has| $ (-6 -4238))) (((-588 |#2|) $) 79 (|has| $ (-6 -4238))) (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 114 (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) 123)) (-2402 (((-108) $ $) 131 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-1893 (($ (-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 169)) (-1480 (((-108) $ (-708)) 9)) (-3496 ((|#1| $) 96 (|has| |#1| (-784))) (((-522) $) 180 (|has| (-522) (-784)))) (-1308 (($ $ $) 198 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-3557 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ $) 217) (($ $ $) 213 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-3164 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ $) 212) (($ $ $) 205 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-4084 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 29 (|has| $ (-6 -4238))) (((-588 |#2|) $) 80 (|has| $ (-6 -4238))) (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 115 (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-108) |#2| $) 82 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238)))) (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238))))) (-2201 ((|#1| $) 95 (|has| |#1| (-784))) (((-522) $) 181 (|has| (-522) (-784)))) (-2524 (($ $ $) 197 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 34 (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4239))) (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 110 (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70) (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ $) 166) (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 109)) (-1614 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 225)) (-3309 (((-108) $ (-708)) 10)) (-2548 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 128)) (-3394 (((-108) $) 124)) (-2311 (((-1068) $) 22 (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-1442 (($ $ (-708)) 145) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 143)) (-2562 (((-588 |#1|) $) 63)) (-2241 (((-108) |#1| $) 64)) (-1431 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 39)) (-3365 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 40) (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522)) 219) (($ $ $ (-522)) 218)) (-1731 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522)) 162) (($ $ $ (-522)) 161)) (-2130 (((-588 |#1|) $) 93) (((-588 (-522)) $) 183)) (-2103 (((-108) |#1| $) 92) (((-108) (-522) $) 184)) (-4174 (((-1032) $) 21 (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-2337 ((|#2| $) 97 (|has| |#1| (-784))) (($ $ (-708)) 139) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 137)) (-2187 (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 51) (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 171)) (-1972 (($ $ |#2|) 98 (|has| $ (-6 -4239))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 179 (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 41)) (-4196 (((-108) $) 191)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 32 (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) 77 (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 112 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))))) 26 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 25 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 24 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 23 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) 86 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) 84 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) 83 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 121 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 120 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 119 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))))) 118 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#2| $) 94 (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 182 (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-1973 (((-588 |#2|) $) 91) (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 185)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 187) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522)) 186) (($ $ (-1133 (-522))) 165) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ "last") 144) (($ $ "rest") 141) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ "first") 138) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ "value") 126)) (-3381 (((-522) $ $) 129)) (-3546 (($) 49) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 48)) (-3551 (($ $ (-522)) 222) (($ $ (-1133 (-522))) 221)) (-3835 (($ $ (-522)) 164) (($ $ (-1133 (-522))) 163)) (-3395 (((-108) $) 127)) (-2885 (($ $) 151)) (-1668 (($ $) 152 (|has| $ (-6 -4239)))) (-1321 (((-708) $) 150)) (-1502 (($ $) 149)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 31 (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-708) |#2| $) 81 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#2|) $) 78 (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 116 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 113 (|has| $ (-6 -4238)))) (-3629 (($ $ $ (-522)) 202 (|has| $ (-6 -4239)))) (-2463 (($ $) 13)) (-3873 (((-498) $) 59 (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498)))))) (-2227 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 50) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 170)) (-2335 (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 224) (($ $ $) 223)) (-4170 (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 168) (($ (-588 $)) 167) (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 136) (($ $ $) 135)) (-2217 (((-792) $) 18 (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792)))))) (-1515 (((-588 $) $) 122)) (-3294 (((-108) $ $) 130 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-2501 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 42)) (-1453 (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") |#1| $) 108)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 33 (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) 76 (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 111 (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) 195 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-1597 (((-108) $ $) 194 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-1562 (((-108) $ $) 20 (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-1609 (((-108) $ $) 196 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-1587 (((-108) $ $) 193 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-35 |#1| |#2|) (-1197) (-1014) (-1014)) (T -35))
-((-1446 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-35 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-5 *2 (-2 (|:| -2530 *3) (|:| -3048 *4))))))
-(-13 (-1097 |t#1| |t#2|) (-608 (-2 (|:| -2530 |t#1|) (|:| -3048 |t#2|))) (-10 -8 (-15 -1446 ((-3 (-2 (|:| -2530 |t#1|) (|:| -3048 |t#2|)) "failed") |t#1| $))))
-(((-33) . T) ((-102 #0=(-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T) ((-97) -3708 (|has| |#2| (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784))) ((-562 (-792)) -3708 (|has| |#2| (-1014)) (|has| |#2| (-562 (-792))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792)))) ((-139 #1=(-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T) ((-563 (-498)) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))) ((-206 #0#) . T) ((-212 #0#) . T) ((-262 #2=(-522) #1#) . T) ((-262 |#1| |#2|) . T) ((-264 #2# #1#) . T) ((-264 |#1| |#2|) . T) ((-285 #1#) -12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))) ((-285 |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-258 #1#) . T) ((-348 #1#) . T) ((-461 #1#) . T) ((-461 |#2|) . T) ((-555 #2# #1#) . T) ((-555 |#1| |#2|) . T) ((-483 #1# #1#) -12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))) ((-483 |#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-559 |#1| |#2|) . T) ((-593 #1#) . T) ((-608 #1#) . T) ((-784) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)) ((-936 #1#) . T) ((-1014) -3708 (|has| |#2| (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784))) ((-1059 #1#) . T) ((-1097 |#1| |#2|) . T) ((-1120) . T) ((-1154 #1#) . T))
-((-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) 10)))
-(((-36 |#1| |#2|) (-10 -8 (-15 -2190 (|#1| |#2|)) (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|))) (-37 |#2|) (-157)) (T -36))
-NIL
-(-10 -8 (-15 -2190 (|#1| |#2|)) (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
+((-1453 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-35 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-5 *2 (-2 (|:| -2644 *3) (|:| -3149 *4))))))
+(-13 (-1097 |t#1| |t#2|) (-608 (-2 (|:| -2644 |t#1|) (|:| -3149 |t#2|))) (-10 -8 (-15 -1453 ((-3 (-2 (|:| -2644 |t#1|) (|:| -3149 |t#2|)) "failed") |t#1| $))))
+(((-33) . T) ((-102 #0=(-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T) ((-97) -3844 (|has| |#2| (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784))) ((-562 (-792)) -3844 (|has| |#2| (-1014)) (|has| |#2| (-562 (-792))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792)))) ((-139 #1=(-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T) ((-563 (-498)) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))) ((-206 #0#) . T) ((-212 #0#) . T) ((-262 #2=(-522) #1#) . T) ((-262 |#1| |#2|) . T) ((-264 #2# #1#) . T) ((-264 |#1| |#2|) . T) ((-285 #1#) -12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))) ((-285 |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-258 #1#) . T) ((-348 #1#) . T) ((-461 #1#) . T) ((-461 |#2|) . T) ((-555 #2# #1#) . T) ((-555 |#1| |#2|) . T) ((-483 #1# #1#) -12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))) ((-483 |#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-559 |#1| |#2|) . T) ((-593 #1#) . T) ((-608 #1#) . T) ((-784) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)) ((-936 #1#) . T) ((-1014) -3844 (|has| |#2| (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784))) ((-1059 #1#) . T) ((-1097 |#1| |#2|) . T) ((-1120) . T) ((-1154 #1#) . T))
+((-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) 10)))
+(((-36 |#1| |#2|) (-10 -8 (-15 -2217 (|#1| |#2|)) (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|))) (-37 |#2|) (-157)) (T -36))
+NIL
+(-10 -8 (-15 -2217 (|#1| |#2|)) (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
(((-37 |#1|) (-1197) (-157)) (T -37))
-((-2190 (*1 *1 *2) (-12 (-4 *1 (-37 *2)) (-4 *2 (-157)))))
-(-13 (-971) (-655 |t#1|) (-10 -8 (-15 -2190 ($ |t#1|))))
+((-2217 (*1 *1 *2) (-12 (-4 *1 (-37 *2)) (-4 *2 (-157)))))
+(-13 (-971) (-655 |t#1|) (-10 -8 (-15 -2217 ($ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-655 |#1|) . T) ((-664) . T) ((-977 |#1|) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-2724 (((-393 |#1|) |#1|) 38)) (-1916 (((-393 |#1|) |#1|) 27) (((-393 |#1|) |#1| (-588 (-47))) 30)) (-2695 (((-108) |#1|) 54)))
-(((-38 |#1|) (-10 -7 (-15 -1916 ((-393 |#1|) |#1| (-588 (-47)))) (-15 -1916 ((-393 |#1|) |#1|)) (-15 -2724 ((-393 |#1|) |#1|)) (-15 -2695 ((-108) |#1|))) (-1142 (-47))) (T -38))
-((-2695 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-38 *3)) (-4 *3 (-1142 (-47))))) (-2724 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1142 (-47))))) (-1916 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1142 (-47))))) (-1916 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-47))) (-5 *2 (-393 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1142 (-47))))))
-(-10 -7 (-15 -1916 ((-393 |#1|) |#1| (-588 (-47)))) (-15 -1916 ((-393 |#1|) |#1|)) (-15 -2724 ((-393 |#1|) |#1|)) (-15 -2695 ((-108) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2375 (((-2 (|:| |num| (-1166 |#2|)) (|:| |den| |#2|)) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| (-382 |#2|) (-338)))) (-2022 (($ $) NIL (|has| (-382 |#2|) (-338)))) (-3739 (((-108) $) NIL (|has| (-382 |#2|) (-338)))) (-3174 (((-628 (-382 |#2|)) (-1166 $)) NIL) (((-628 (-382 |#2|))) NIL)) (-1865 (((-382 |#2|) $) NIL)) (-1398 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-382 |#2|) (-324)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL (|has| (-382 |#2|) (-338)))) (-3450 (((-393 $) $) NIL (|has| (-382 |#2|) (-338)))) (-1687 (((-108) $ $) NIL (|has| (-382 |#2|) (-338)))) (-1629 (((-708)) NIL (|has| (-382 |#2|) (-343)))) (-2472 (((-108)) NIL)) (-2898 (((-108) |#1|) NIL) (((-108) |#2|) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (|has| (-382 |#2|) (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-382 |#2|) (-962 (-382 (-522))))) (((-3 (-382 |#2|) "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| (-382 |#2|) (-962 (-522)))) (((-382 (-522)) $) NIL (|has| (-382 |#2|) (-962 (-382 (-522))))) (((-382 |#2|) $) NIL)) (-3766 (($ (-1166 (-382 |#2|)) (-1166 $)) NIL) (($ (-1166 (-382 |#2|))) 57) (($ (-1166 |#2|) |#2|) 124)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-382 |#2|) (-324)))) (-2277 (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-2109 (((-628 (-382 |#2|)) $ (-1166 $)) NIL) (((-628 (-382 |#2|)) $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| (-382 |#2|) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-382 |#2|) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-382 |#2|))) (|:| |vec| (-1166 (-382 |#2|)))) (-628 $) (-1166 $)) NIL) (((-628 (-382 |#2|)) (-628 $)) NIL)) (-3642 (((-1166 $) (-1166 $)) NIL)) (-3864 (($ |#3|) NIL) (((-3 $ "failed") (-382 |#3|)) NIL (|has| (-382 |#2|) (-338)))) (-2682 (((-3 $ "failed") $) NIL)) (-2017 (((-588 (-588 |#1|))) NIL (|has| |#1| (-343)))) (-1250 (((-108) |#1| |#1|) NIL)) (-3166 (((-850)) NIL)) (-3255 (($) NIL (|has| (-382 |#2|) (-343)))) (-3144 (((-108)) NIL)) (-1228 (((-108) |#1|) NIL) (((-108) |#2|) NIL)) (-2254 (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| (-382 |#2|) (-338)))) (-2071 (($ $) NIL)) (-1223 (($) NIL (|has| (-382 |#2|) (-324)))) (-2511 (((-108) $) NIL (|has| (-382 |#2|) (-324)))) (-2111 (($ $ (-708)) NIL (|has| (-382 |#2|) (-324))) (($ $) NIL (|has| (-382 |#2|) (-324)))) (-2813 (((-108) $) NIL (|has| (-382 |#2|) (-338)))) (-3714 (((-850) $) NIL (|has| (-382 |#2|) (-324))) (((-770 (-850)) $) NIL (|has| (-382 |#2|) (-324)))) (-2782 (((-108) $) NIL)) (-2397 (((-708)) NIL)) (-1538 (((-1166 $) (-1166 $)) 100)) (-2100 (((-382 |#2|) $) NIL)) (-2653 (((-588 (-881 |#1|)) (-1085)) NIL (|has| |#1| (-338)))) (-3004 (((-3 $ "failed") $) NIL (|has| (-382 |#2|) (-324)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| (-382 |#2|) (-338)))) (-1712 ((|#3| $) NIL (|has| (-382 |#2|) (-338)))) (-2120 (((-850) $) NIL (|has| (-382 |#2|) (-343)))) (-3849 ((|#3| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| (-382 |#2|) (-338))) (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-2385 (((-1068) $) NIL)) (-2660 (((-1171) (-708)) 78)) (-3293 (((-628 (-382 |#2|))) 51)) (-4178 (((-628 (-382 |#2|))) 44)) (-3098 (($ $) NIL (|has| (-382 |#2|) (-338)))) (-1249 (($ (-1166 |#2|) |#2|) 125)) (-3189 (((-628 (-382 |#2|))) 45)) (-3319 (((-628 (-382 |#2|))) 43)) (-3041 (((-2 (|:| |num| (-628 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 122)) (-4066 (((-2 (|:| |num| (-1166 |#2|)) (|:| |den| |#2|)) $) 63)) (-4003 (((-1166 $)) 42)) (-3882 (((-1166 $)) 41)) (-2156 (((-108) $) NIL)) (-1332 (((-108) $) NIL) (((-108) $ |#1|) NIL) (((-108) $ |#2|) NIL)) (-3802 (($) NIL (|has| (-382 |#2|) (-324)) CONST)) (-2717 (($ (-850)) NIL (|has| (-382 |#2|) (-343)))) (-3117 (((-3 |#2| "failed")) NIL)) (-4151 (((-1032) $) NIL)) (-3940 (((-708)) NIL)) (-1383 (($) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| (-382 |#2|) (-338)))) (-2259 (($ (-588 $)) NIL (|has| (-382 |#2|) (-338))) (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL (|has| (-382 |#2|) (-324)))) (-1916 (((-393 $) $) NIL (|has| (-382 |#2|) (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-382 |#2|) (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| (-382 |#2|) (-338)))) (-2232 (((-3 $ "failed") $ $) NIL (|has| (-382 |#2|) (-338)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| (-382 |#2|) (-338)))) (-3730 (((-708) $) NIL (|has| (-382 |#2|) (-338)))) (-2545 ((|#1| $ |#1| |#1|) NIL)) (-3157 (((-3 |#2| "failed")) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| (-382 |#2|) (-338)))) (-2769 (((-382 |#2|) (-1166 $)) NIL) (((-382 |#2|)) 39)) (-3018 (((-708) $) NIL (|has| (-382 |#2|) (-324))) (((-3 (-708) "failed") $ $) NIL (|has| (-382 |#2|) (-324)))) (-2157 (($ $ (-1 (-382 |#2|) (-382 |#2|)) (-708)) NIL (|has| (-382 |#2|) (-338))) (($ $ (-1 (-382 |#2|) (-382 |#2|))) NIL (|has| (-382 |#2|) (-338))) (($ $ (-1 |#2| |#2|)) 118) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-708)) NIL (-3708 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324)))) (($ $) NIL (-3708 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324))))) (-1859 (((-628 (-382 |#2|)) (-1166 $) (-1 (-382 |#2|) (-382 |#2|))) NIL (|has| (-382 |#2|) (-338)))) (-1479 ((|#3|) 50)) (-2581 (($) NIL (|has| (-382 |#2|) (-324)))) (-3677 (((-1166 (-382 |#2|)) $ (-1166 $)) NIL) (((-628 (-382 |#2|)) (-1166 $) (-1166 $)) NIL) (((-1166 (-382 |#2|)) $) 58) (((-628 (-382 |#2|)) (-1166 $)) 101)) (-1431 (((-1166 (-382 |#2|)) $) NIL) (($ (-1166 (-382 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| (-382 |#2|) (-324)))) (-1634 (((-1166 $) (-1166 $)) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 |#2|)) NIL) (($ (-382 (-522))) NIL (-3708 (|has| (-382 |#2|) (-962 (-382 (-522)))) (|has| (-382 |#2|) (-338)))) (($ $) NIL (|has| (-382 |#2|) (-338)))) (-2143 (($ $) NIL (|has| (-382 |#2|) (-324))) (((-3 $ "failed") $) NIL (|has| (-382 |#2|) (-133)))) (-2051 ((|#3| $) NIL)) (-2323 (((-708)) NIL)) (-3532 (((-108)) 37)) (-4170 (((-108) |#1|) 49) (((-108) |#2|) 131)) (-3855 (((-1166 $)) 91)) (-3958 (((-108) $ $) NIL (|has| (-382 |#2|) (-338)))) (-3406 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2058 (((-108)) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| (-382 |#2|) (-338)))) (-3566 (($) 16 T CONST)) (-3577 (($) 26 T CONST)) (-2213 (($ $ (-1 (-382 |#2|) (-382 |#2|)) (-708)) NIL (|has| (-382 |#2|) (-338))) (($ $ (-1 (-382 |#2|) (-382 |#2|))) NIL (|has| (-382 |#2|) (-338))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-708)) NIL (-3708 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324)))) (($ $) NIL (-3708 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324))))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| (-382 |#2|) (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 |#2|)) NIL) (($ (-382 |#2|) $) NIL) (($ (-382 (-522)) $) NIL (|has| (-382 |#2|) (-338))) (($ $ (-382 (-522))) NIL (|has| (-382 |#2|) (-338)))))
-(((-39 |#1| |#2| |#3| |#4|) (-13 (-317 |#1| |#2| |#3|) (-10 -7 (-15 -2660 ((-1171) (-708))))) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) |#3|) (T -39))
-((-2660 (*1 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-338)) (-4 *5 (-1142 *4)) (-5 *2 (-1171)) (-5 *1 (-39 *4 *5 *6 *7)) (-4 *6 (-1142 (-382 *5))) (-14 *7 *6))))
-(-13 (-317 |#1| |#2| |#3|) (-10 -7 (-15 -2660 ((-1171) (-708)))))
-((-4160 ((|#2| |#2|) 47)) (-1955 ((|#2| |#2|) 117 (-12 (|has| |#2| (-405 |#1|)) (|has| |#1| (-426)) (|has| |#1| (-784)) (|has| |#1| (-962 (-522)))))) (-1640 ((|#2| |#2|) 86 (-12 (|has| |#2| (-405 |#1|)) (|has| |#1| (-426)) (|has| |#1| (-784)) (|has| |#1| (-962 (-522)))))) (-1982 ((|#2| |#2|) 87 (-12 (|has| |#2| (-405 |#1|)) (|has| |#1| (-426)) (|has| |#1| (-784)) (|has| |#1| (-962 (-522)))))) (-4174 ((|#2| (-110) |#2| (-708)) 74 (-12 (|has| |#2| (-405 |#1|)) (|has| |#1| (-426)) (|has| |#1| (-784)) (|has| |#1| (-962 (-522)))))) (-3867 (((-1081 |#2|) |#2|) 44)) (-1311 ((|#2| |#2| (-588 (-561 |#2|))) 17) ((|#2| |#2| (-588 |#2|)) 19) ((|#2| |#2| |#2|) 20) ((|#2| |#2|) 15)))
-(((-40 |#1| |#2|) (-10 -7 (-15 -4160 (|#2| |#2|)) (-15 -1311 (|#2| |#2|)) (-15 -1311 (|#2| |#2| |#2|)) (-15 -1311 (|#2| |#2| (-588 |#2|))) (-15 -1311 (|#2| |#2| (-588 (-561 |#2|)))) (-15 -3867 ((-1081 |#2|) |#2|)) (IF (|has| |#1| (-784)) (IF (|has| |#1| (-426)) (IF (|has| |#1| (-962 (-522))) (IF (|has| |#2| (-405 |#1|)) (PROGN (-15 -1982 (|#2| |#2|)) (-15 -1640 (|#2| |#2|)) (-15 -1955 (|#2| |#2|)) (-15 -4174 (|#2| (-110) |#2| (-708)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-514) (-13 (-338) (-278) (-10 -8 (-15 -2805 ((-1037 |#1| (-561 $)) $)) (-15 -2816 ((-1037 |#1| (-561 $)) $)) (-15 -2190 ($ (-1037 |#1| (-561 $))))))) (T -40))
-((-4174 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-110)) (-5 *4 (-708)) (-4 *5 (-426)) (-4 *5 (-784)) (-4 *5 (-962 (-522))) (-4 *5 (-514)) (-5 *1 (-40 *5 *2)) (-4 *2 (-405 *5)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2805 ((-1037 *5 (-561 $)) $)) (-15 -2816 ((-1037 *5 (-561 $)) $)) (-15 -2190 ($ (-1037 *5 (-561 $))))))))) (-1955 (*1 *2 *2) (-12 (-4 *3 (-426)) (-4 *3 (-784)) (-4 *3 (-962 (-522))) (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-405 *3)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2805 ((-1037 *3 (-561 $)) $)) (-15 -2816 ((-1037 *3 (-561 $)) $)) (-15 -2190 ($ (-1037 *3 (-561 $))))))))) (-1640 (*1 *2 *2) (-12 (-4 *3 (-426)) (-4 *3 (-784)) (-4 *3 (-962 (-522))) (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-405 *3)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2805 ((-1037 *3 (-561 $)) $)) (-15 -2816 ((-1037 *3 (-561 $)) $)) (-15 -2190 ($ (-1037 *3 (-561 $))))))))) (-1982 (*1 *2 *2) (-12 (-4 *3 (-426)) (-4 *3 (-784)) (-4 *3 (-962 (-522))) (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-405 *3)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2805 ((-1037 *3 (-561 $)) $)) (-15 -2816 ((-1037 *3 (-561 $)) $)) (-15 -2190 ($ (-1037 *3 (-561 $))))))))) (-3867 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-1081 *3)) (-5 *1 (-40 *4 *3)) (-4 *3 (-13 (-338) (-278) (-10 -8 (-15 -2805 ((-1037 *4 (-561 $)) $)) (-15 -2816 ((-1037 *4 (-561 $)) $)) (-15 -2190 ($ (-1037 *4 (-561 $))))))))) (-1311 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-561 *2))) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2805 ((-1037 *4 (-561 $)) $)) (-15 -2816 ((-1037 *4 (-561 $)) $)) (-15 -2190 ($ (-1037 *4 (-561 $))))))) (-4 *4 (-514)) (-5 *1 (-40 *4 *2)))) (-1311 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2805 ((-1037 *4 (-561 $)) $)) (-15 -2816 ((-1037 *4 (-561 $)) $)) (-15 -2190 ($ (-1037 *4 (-561 $))))))) (-4 *4 (-514)) (-5 *1 (-40 *4 *2)))) (-1311 (*1 *2 *2 *2) (-12 (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2805 ((-1037 *3 (-561 $)) $)) (-15 -2816 ((-1037 *3 (-561 $)) $)) (-15 -2190 ($ (-1037 *3 (-561 $))))))))) (-1311 (*1 *2 *2) (-12 (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2805 ((-1037 *3 (-561 $)) $)) (-15 -2816 ((-1037 *3 (-561 $)) $)) (-15 -2190 ($ (-1037 *3 (-561 $))))))))) (-4160 (*1 *2 *2) (-12 (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2805 ((-1037 *3 (-561 $)) $)) (-15 -2816 ((-1037 *3 (-561 $)) $)) (-15 -2190 ($ (-1037 *3 (-561 $))))))))))
-(-10 -7 (-15 -4160 (|#2| |#2|)) (-15 -1311 (|#2| |#2|)) (-15 -1311 (|#2| |#2| |#2|)) (-15 -1311 (|#2| |#2| (-588 |#2|))) (-15 -1311 (|#2| |#2| (-588 (-561 |#2|)))) (-15 -3867 ((-1081 |#2|) |#2|)) (IF (|has| |#1| (-784)) (IF (|has| |#1| (-426)) (IF (|has| |#1| (-962 (-522))) (IF (|has| |#2| (-405 |#1|)) (PROGN (-15 -1982 (|#2| |#2|)) (-15 -1640 (|#2| |#2|)) (-15 -1955 (|#2| |#2|)) (-15 -4174 (|#2| (-110) |#2| (-708)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
-((-1916 (((-393 (-1081 |#3|)) (-1081 |#3|) (-588 (-47))) 22) (((-393 |#3|) |#3| (-588 (-47))) 18)))
-(((-41 |#1| |#2| |#3|) (-10 -7 (-15 -1916 ((-393 |#3|) |#3| (-588 (-47)))) (-15 -1916 ((-393 (-1081 |#3|)) (-1081 |#3|) (-588 (-47))))) (-784) (-730) (-878 (-47) |#2| |#1|)) (T -41))
-((-1916 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-47))) (-4 *5 (-784)) (-4 *6 (-730)) (-4 *7 (-878 (-47) *6 *5)) (-5 *2 (-393 (-1081 *7))) (-5 *1 (-41 *5 *6 *7)) (-5 *3 (-1081 *7)))) (-1916 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-47))) (-4 *5 (-784)) (-4 *6 (-730)) (-5 *2 (-393 *3)) (-5 *1 (-41 *5 *6 *3)) (-4 *3 (-878 (-47) *6 *5)))))
-(-10 -7 (-15 -1916 ((-393 |#3|) |#3| (-588 (-47)))) (-15 -1916 ((-393 (-1081 |#3|)) (-1081 |#3|) (-588 (-47)))))
-((-1475 (((-708) |#2|) 65)) (-2256 (((-708) |#2|) 68)) (-3603 (((-588 |#2|)) 33)) (-1807 (((-708) |#2|) 67)) (-3353 (((-708) |#2|) 64)) (-3215 (((-708) |#2|) 66)) (-2121 (((-588 (-628 |#1|))) 60)) (-2704 (((-588 |#2|)) 55)) (-2321 (((-588 |#2|) |#2|) 43)) (-3804 (((-588 |#2|)) 57)) (-3419 (((-588 |#2|)) 56)) (-1488 (((-588 (-628 |#1|))) 48)) (-2417 (((-588 |#2|)) 54)) (-2633 (((-588 |#2|) |#2|) 42)) (-3562 (((-588 |#2|)) 50)) (-3093 (((-588 (-628 |#1|))) 61)) (-3783 (((-588 |#2|)) 59)) (-3855 (((-1166 |#2|) (-1166 |#2|)) 84 (|has| |#1| (-283)))))
-(((-42 |#1| |#2|) (-10 -7 (-15 -1807 ((-708) |#2|)) (-15 -2256 ((-708) |#2|)) (-15 -3353 ((-708) |#2|)) (-15 -1475 ((-708) |#2|)) (-15 -3215 ((-708) |#2|)) (-15 -3562 ((-588 |#2|))) (-15 -2633 ((-588 |#2|) |#2|)) (-15 -2321 ((-588 |#2|) |#2|)) (-15 -2417 ((-588 |#2|))) (-15 -2704 ((-588 |#2|))) (-15 -3419 ((-588 |#2|))) (-15 -3804 ((-588 |#2|))) (-15 -3783 ((-588 |#2|))) (-15 -1488 ((-588 (-628 |#1|)))) (-15 -2121 ((-588 (-628 |#1|)))) (-15 -3093 ((-588 (-628 |#1|)))) (-15 -3603 ((-588 |#2|))) (IF (|has| |#1| (-283)) (-15 -3855 ((-1166 |#2|) (-1166 |#2|))) |%noBranch|)) (-514) (-392 |#1|)) (T -42))
-((-3855 (*1 *2 *2) (-12 (-5 *2 (-1166 *4)) (-4 *4 (-392 *3)) (-4 *3 (-283)) (-4 *3 (-514)) (-5 *1 (-42 *3 *4)))) (-3603 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-3093 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 (-628 *3))) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-2121 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 (-628 *3))) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-1488 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 (-628 *3))) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-3783 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-3804 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-3419 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-2704 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-2417 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-2321 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 *3)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))) (-2633 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 *3)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))) (-3562 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-3215 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))) (-1475 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))) (-3353 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))) (-2256 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))) (-1807 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))))
-(-10 -7 (-15 -1807 ((-708) |#2|)) (-15 -2256 ((-708) |#2|)) (-15 -3353 ((-708) |#2|)) (-15 -1475 ((-708) |#2|)) (-15 -3215 ((-708) |#2|)) (-15 -3562 ((-588 |#2|))) (-15 -2633 ((-588 |#2|) |#2|)) (-15 -2321 ((-588 |#2|) |#2|)) (-15 -2417 ((-588 |#2|))) (-15 -2704 ((-588 |#2|))) (-15 -3419 ((-588 |#2|))) (-15 -3804 ((-588 |#2|))) (-15 -3783 ((-588 |#2|))) (-15 -1488 ((-588 (-628 |#1|)))) (-15 -2121 ((-588 (-628 |#1|)))) (-15 -3093 ((-588 (-628 |#1|)))) (-15 -3603 ((-588 |#2|))) (IF (|has| |#1| (-283)) (-15 -3855 ((-1166 |#2|) (-1166 |#2|))) |%noBranch|))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-3210 (((-3 $ "failed")) NIL (|has| |#1| (-514)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1588 (((-1166 (-628 |#1|)) (-1166 $)) NIL) (((-1166 (-628 |#1|))) 24)) (-1681 (((-1166 $)) 50)) (-3175 (($) NIL T CONST)) (-1868 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) NIL (|has| |#1| (-514)))) (-3130 (((-3 $ "failed")) NIL (|has| |#1| (-514)))) (-1771 (((-628 |#1|) (-1166 $)) NIL) (((-628 |#1|)) NIL)) (-3594 ((|#1| $) NIL)) (-2828 (((-628 |#1|) $ (-1166 $)) NIL) (((-628 |#1|) $) NIL)) (-3637 (((-3 $ "failed") $) NIL (|has| |#1| (-514)))) (-3549 (((-1081 (-881 |#1|))) NIL (|has| |#1| (-338)))) (-1679 (($ $ (-850)) NIL)) (-3076 ((|#1| $) NIL)) (-2992 (((-1081 |#1|) $) NIL (|has| |#1| (-514)))) (-2975 ((|#1| (-1166 $)) NIL) ((|#1|) NIL)) (-4014 (((-1081 |#1|) $) NIL)) (-2878 (((-108)) 86)) (-3766 (($ (-1166 |#1|) (-1166 $)) NIL) (($ (-1166 |#1|)) NIL)) (-2682 (((-3 $ "failed") $) 14 (|has| |#1| (-514)))) (-3166 (((-850)) 51)) (-2666 (((-108)) NIL)) (-1882 (($ $ (-850)) NIL)) (-1427 (((-108)) NIL)) (-2552 (((-108)) NIL)) (-2678 (((-108)) 88)) (-3505 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) NIL (|has| |#1| (-514)))) (-2007 (((-3 $ "failed")) NIL (|has| |#1| (-514)))) (-1943 (((-628 |#1|) (-1166 $)) NIL) (((-628 |#1|)) NIL)) (-1546 ((|#1| $) NIL)) (-4142 (((-628 |#1|) $ (-1166 $)) NIL) (((-628 |#1|) $) NIL)) (-2231 (((-3 $ "failed") $) NIL (|has| |#1| (-514)))) (-2497 (((-1081 (-881 |#1|))) NIL (|has| |#1| (-338)))) (-3277 (($ $ (-850)) NIL)) (-1505 ((|#1| $) NIL)) (-3630 (((-1081 |#1|) $) NIL (|has| |#1| (-514)))) (-2475 ((|#1| (-1166 $)) NIL) ((|#1|) NIL)) (-2302 (((-1081 |#1|) $) NIL)) (-3003 (((-108)) 85)) (-2385 (((-1068) $) NIL)) (-3710 (((-108)) 92)) (-3026 (((-108)) 91)) (-3055 (((-108)) 93)) (-4151 (((-1032) $) NIL)) (-2889 (((-108)) 87)) (-2545 ((|#1| $ (-522)) 53)) (-3677 (((-1166 |#1|) $ (-1166 $)) 47) (((-628 |#1|) (-1166 $) (-1166 $)) NIL) (((-1166 |#1|) $) 28) (((-628 |#1|) (-1166 $)) NIL)) (-1431 (((-1166 |#1|) $) NIL) (($ (-1166 |#1|)) NIL)) (-2656 (((-588 (-881 |#1|)) (-1166 $)) NIL) (((-588 (-881 |#1|))) NIL)) (-1288 (($ $ $) NIL)) (-4034 (((-108)) 83)) (-2190 (((-792) $) 68) (($ (-1166 |#1|)) 22)) (-3855 (((-1166 $)) 44)) (-2901 (((-588 (-1166 |#1|))) NIL (|has| |#1| (-514)))) (-3610 (($ $ $ $) NIL)) (-2928 (((-108)) 81)) (-1616 (($ (-628 |#1|) $) 18)) (-3024 (($ $ $) NIL)) (-3065 (((-108)) 84)) (-3856 (((-108)) 82)) (-3877 (((-108)) 80)) (-3566 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 75) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1052 |#2| |#1|) $) 19)))
-(((-43 |#1| |#2| |#3| |#4|) (-13 (-392 |#1|) (-590 (-1052 |#2| |#1|)) (-10 -8 (-15 -2190 ($ (-1166 |#1|))))) (-338) (-850) (-588 (-1085)) (-1166 (-628 |#1|))) (T -43))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-338)) (-14 *6 (-1166 (-628 *3))) (-5 *1 (-43 *3 *4 *5 *6)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))))))
-(-13 (-392 |#1|) (-590 (-1052 |#2| |#1|)) (-10 -8 (-15 -2190 ($ (-1166 |#1|)))))
-((-1416 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3435 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-2093 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3835 (($ $) NIL)) (-1800 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2679 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239))) (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-3487 (($ $ (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL) (((-108) $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-3537 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784))))) (-3216 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-4141 (((-108) $ (-708)) NIL)) (-3628 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4239)))) (-1243 (($ $ $) 27 (|has| $ (-6 -4239)))) (-2049 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4239)))) (-1346 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 29 (|has| $ (-6 -4239)))) (-2379 ((|#2| $ |#1| |#2|) 46) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4239))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-1133 (-522)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4239))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ "last" (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4239))) (($ $ "rest" $) NIL (|has| $ (-6 -4239))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ "first" (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4239))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ "value" (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-2790 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL)) (-1628 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2081 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-2750 (((-3 |#2| "failed") |#1| $) 37)) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2306 (($ $ (-708)) NIL) (($ $) 24)) (-3362 (($ $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-3859 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) 47) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL) (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-1423 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4239)))) (-3631 ((|#2| $ |#1|) NIL) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522)) NIL)) (-3069 (((-108) $) NIL)) (-3238 (((-522) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL) (((-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))) (((-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522)) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-3837 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 18 (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238))) (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 18 (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) NIL)) (-2030 (((-108) $ $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-1811 (($ (-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-1359 ((|#1| $) NIL (|has| |#1| (-784))) (((-522) $) 32 (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-1369 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-2160 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-3308 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238))) (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-2014 ((|#1| $) NIL (|has| |#1| (-784))) (((-522) $) 34 (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239))) (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL)) (-1580 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-1279 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL)) (-1754 (((-108) $) NIL)) (-2385 (((-1068) $) 42 (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1442 (($ $ (-708)) NIL) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-2966 (((-588 |#1|) $) 20)) (-1231 (((-108) |#1| $) NIL)) (-2116 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-4095 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL) (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-1661 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-3604 (((-588 |#1|) $) NIL) (((-588 (-522)) $) NIL)) (-1405 (((-108) |#1| $) NIL) (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2294 ((|#2| $) NIL (|has| |#1| (-784))) (($ $ (-708)) NIL) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 23)) (-1414 (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL) (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL)) (-2602 (($ $ |#2|) NIL (|has| $ (-6 -4239))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-2855 (((-108) $) NIL)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-1525 (((-588 |#2|) $) NIL) (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 17)) (-3985 (((-108) $) 16)) (-3775 (($) 13)) (-2545 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ (-522)) NIL) (($ $ (-1133 (-522))) NIL) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ "first") NIL) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $ "value") NIL)) (-2011 (((-522) $ $) NIL)) (-3990 (($) 12) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-3681 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-3696 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-3042 (((-108) $) NIL)) (-3107 (($ $) NIL)) (-2646 (($ $) NIL (|has| $ (-6 -4239)))) (-2393 (((-708) $) NIL)) (-2122 (($ $) NIL)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-708) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2630 (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL) (($ $ $) NIL)) (-4165 (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL) (($ (-588 $)) NIL) (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 25) (($ $ $) NIL)) (-2190 (((-792) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-1749 (((-588 $) $) NIL)) (-2425 (((-108) $ $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-2795 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-1446 (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") |#1| $) 44)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-1558 (((-108) $ $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-1531 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1566 (((-108) $ $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-1549 (((-108) $ $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-784)))) (-3480 (((-708) $) 22 (|has| $ (-6 -4238)))))
+((-3428 (((-393 |#1|) |#1|) 38)) (-2006 (((-393 |#1|) |#1|) 27) (((-393 |#1|) |#1| (-588 (-47))) 30)) (-3605 (((-108) |#1|) 54)))
+(((-38 |#1|) (-10 -7 (-15 -2006 ((-393 |#1|) |#1| (-588 (-47)))) (-15 -2006 ((-393 |#1|) |#1|)) (-15 -3428 ((-393 |#1|) |#1|)) (-15 -3605 ((-108) |#1|))) (-1142 (-47))) (T -38))
+((-3605 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-38 *3)) (-4 *3 (-1142 (-47))))) (-3428 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1142 (-47))))) (-2006 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1142 (-47))))) (-2006 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-47))) (-5 *2 (-393 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1142 (-47))))))
+(-10 -7 (-15 -2006 ((-393 |#1|) |#1| (-588 (-47)))) (-15 -2006 ((-393 |#1|) |#1|)) (-15 -3428 ((-393 |#1|) |#1|)) (-15 -3605 ((-108) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-1228 (((-2 (|:| |num| (-1166 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| (-382 |#2|) (-338)))) (-2298 (($ $) NIL (|has| (-382 |#2|) (-338)))) (-3007 (((-108) $) NIL (|has| (-382 |#2|) (-338)))) (-3356 (((-628 (-382 |#2|)) (-1166 $)) NIL) (((-628 (-382 |#2|))) NIL)) (-1945 (((-382 |#2|) $) NIL)) (-3833 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-382 |#2|) (-324)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL (|has| (-382 |#2|) (-338)))) (-3133 (((-393 $) $) NIL (|has| (-382 |#2|) (-338)))) (-2805 (((-108) $ $) NIL (|has| (-382 |#2|) (-338)))) (-1685 (((-708)) NIL (|has| (-382 |#2|) (-343)))) (-2856 (((-108)) NIL)) (-1508 (((-108) |#1|) NIL) (((-108) |#2|) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (|has| (-382 |#2|) (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-382 |#2|) (-962 (-382 (-522))))) (((-3 (-382 |#2|) "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| (-382 |#2|) (-962 (-522)))) (((-382 (-522)) $) NIL (|has| (-382 |#2|) (-962 (-382 (-522))))) (((-382 |#2|) $) NIL)) (-3225 (($ (-1166 (-382 |#2|)) (-1166 $)) NIL) (($ (-1166 (-382 |#2|))) 57) (($ (-1166 |#2|) |#2|) 124)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-382 |#2|) (-324)))) (-2333 (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-1359 (((-628 (-382 |#2|)) $ (-1166 $)) NIL) (((-628 (-382 |#2|)) $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| (-382 |#2|) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-382 |#2|) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-382 |#2|))) (|:| |vec| (-1166 (-382 |#2|)))) (-628 $) (-1166 $)) NIL) (((-628 (-382 |#2|)) (-628 $)) NIL)) (-1315 (((-1166 $) (-1166 $)) NIL)) (-2153 (($ |#3|) NIL) (((-3 $ "failed") (-382 |#3|)) NIL (|has| (-382 |#2|) (-338)))) (-3920 (((-3 $ "failed") $) NIL)) (-2230 (((-588 (-588 |#1|))) NIL (|has| |#1| (-343)))) (-2477 (((-108) |#1| |#1|) NIL)) (-1692 (((-850)) NIL)) (-3344 (($) NIL (|has| (-382 |#2|) (-343)))) (-3148 (((-108)) NIL)) (-2207 (((-108) |#1|) NIL) (((-108) |#2|) NIL)) (-2303 (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| (-382 |#2|) (-338)))) (-2883 (($ $) NIL)) (-2160 (($) NIL (|has| (-382 |#2|) (-324)))) (-2087 (((-108) $) NIL (|has| (-382 |#2|) (-324)))) (-1380 (($ $ (-708)) NIL (|has| (-382 |#2|) (-324))) (($ $) NIL (|has| (-382 |#2|) (-324)))) (-2725 (((-108) $) NIL (|has| (-382 |#2|) (-338)))) (-3872 (((-850) $) NIL (|has| (-382 |#2|) (-324))) (((-770 (-850)) $) NIL (|has| (-382 |#2|) (-324)))) (-2859 (((-108) $) NIL)) (-1366 (((-708)) NIL)) (-3349 (((-1166 $) (-1166 $)) 100)) (-1269 (((-382 |#2|) $) NIL)) (-1742 (((-588 (-881 |#1|)) (-1085)) NIL (|has| |#1| (-338)))) (-4208 (((-3 $ "failed") $) NIL (|has| (-382 |#2|) (-324)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| (-382 |#2|) (-338)))) (-4199 ((|#3| $) NIL (|has| (-382 |#2|) (-338)))) (-1475 (((-850) $) NIL (|has| (-382 |#2|) (-343)))) (-2142 ((|#3| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| (-382 |#2|) (-338))) (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-2311 (((-1068) $) NIL)) (-1809 (((-1171) (-708)) 78)) (-2094 (((-628 (-382 |#2|))) 51)) (-1791 (((-628 (-382 |#2|))) 44)) (-3193 (($ $) NIL (|has| (-382 |#2|) (-338)))) (-2464 (($ (-1166 |#2|) |#2|) 125)) (-2286 (((-628 (-382 |#2|))) 45)) (-4203 (((-628 (-382 |#2|))) 43)) (-3385 (((-2 (|:| |num| (-628 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 122)) (-3146 (((-2 (|:| |num| (-1166 |#2|)) (|:| |den| |#2|)) $) 63)) (-3664 (((-1166 $)) 42)) (-1886 (((-1166 $)) 41)) (-3142 (((-108) $) NIL)) (-2010 (((-108) $) NIL) (((-108) $ |#1|) NIL) (((-108) $ |#2|) NIL)) (-3937 (($) NIL (|has| (-382 |#2|) (-324)) CONST)) (-2882 (($ (-850)) NIL (|has| (-382 |#2|) (-343)))) (-2951 (((-3 |#2| "failed")) NIL)) (-4174 (((-1032) $) NIL)) (-1243 (((-708)) NIL)) (-1368 (($) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| (-382 |#2|) (-338)))) (-2308 (($ (-588 $)) NIL (|has| (-382 |#2|) (-338))) (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL (|has| (-382 |#2|) (-324)))) (-2006 (((-393 $) $) NIL (|has| (-382 |#2|) (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-382 |#2|) (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| (-382 |#2|) (-338)))) (-2276 (((-3 $ "failed") $ $) NIL (|has| (-382 |#2|) (-338)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| (-382 |#2|) (-338)))) (-4031 (((-708) $) NIL (|has| (-382 |#2|) (-338)))) (-2683 ((|#1| $ |#1| |#1|) NIL)) (-3223 (((-3 |#2| "failed")) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| (-382 |#2|) (-338)))) (-1615 (((-382 |#2|) (-1166 $)) NIL) (((-382 |#2|)) 39)) (-1304 (((-708) $) NIL (|has| (-382 |#2|) (-324))) (((-3 (-708) "failed") $ $) NIL (|has| (-382 |#2|) (-324)))) (-2731 (($ $ (-1 (-382 |#2|) (-382 |#2|)) (-708)) NIL (|has| (-382 |#2|) (-338))) (($ $ (-1 (-382 |#2|) (-382 |#2|))) NIL (|has| (-382 |#2|) (-338))) (($ $ (-1 |#2| |#2|)) 118) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-708)) NIL (-3844 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324)))) (($ $) NIL (-3844 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324))))) (-2620 (((-628 (-382 |#2|)) (-1166 $) (-1 (-382 |#2|) (-382 |#2|))) NIL (|has| (-382 |#2|) (-338)))) (-1579 ((|#3|) 50)) (-2670 (($) NIL (|has| (-382 |#2|) (-324)))) (-3510 (((-1166 (-382 |#2|)) $ (-1166 $)) NIL) (((-628 (-382 |#2|)) (-1166 $) (-1166 $)) NIL) (((-1166 (-382 |#2|)) $) 58) (((-628 (-382 |#2|)) (-1166 $)) 101)) (-3873 (((-1166 (-382 |#2|)) $) NIL) (($ (-1166 (-382 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| (-382 |#2|) (-324)))) (-2200 (((-1166 $) (-1166 $)) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 |#2|)) NIL) (($ (-382 (-522))) NIL (-3844 (|has| (-382 |#2|) (-962 (-382 (-522)))) (|has| (-382 |#2|) (-338)))) (($ $) NIL (|has| (-382 |#2|) (-338)))) (-3040 (($ $) NIL (|has| (-382 |#2|) (-324))) (((-3 $ "failed") $) NIL (|has| (-382 |#2|) (-133)))) (-2645 ((|#3| $) NIL)) (-2742 (((-708)) NIL)) (-2745 (((-108)) 37)) (-2950 (((-108) |#1|) 49) (((-108) |#2|) 131)) (-2905 (((-1166 $)) 91)) (-1407 (((-108) $ $) NIL (|has| (-382 |#2|) (-338)))) (-3827 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2747 (((-108)) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| (-382 |#2|) (-338)))) (-3697 (($) 16 T CONST)) (-3709 (($) 26 T CONST)) (-2252 (($ $ (-1 (-382 |#2|) (-382 |#2|)) (-708)) NIL (|has| (-382 |#2|) (-338))) (($ $ (-1 (-382 |#2|) (-382 |#2|))) NIL (|has| (-382 |#2|) (-338))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-708)) NIL (-3844 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324)))) (($ $) NIL (-3844 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324))))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| (-382 |#2|) (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 |#2|)) NIL) (($ (-382 |#2|) $) NIL) (($ (-382 (-522)) $) NIL (|has| (-382 |#2|) (-338))) (($ $ (-382 (-522))) NIL (|has| (-382 |#2|) (-338)))))
+(((-39 |#1| |#2| |#3| |#4|) (-13 (-317 |#1| |#2| |#3|) (-10 -7 (-15 -1809 ((-1171) (-708))))) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) |#3|) (T -39))
+((-1809 (*1 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-338)) (-4 *5 (-1142 *4)) (-5 *2 (-1171)) (-5 *1 (-39 *4 *5 *6 *7)) (-4 *6 (-1142 (-382 *5))) (-14 *7 *6))))
+(-13 (-317 |#1| |#2| |#3|) (-10 -7 (-15 -1809 ((-1171) (-708)))))
+((-2890 ((|#2| |#2|) 47)) (-2937 ((|#2| |#2|) 117 (-12 (|has| |#2| (-405 |#1|)) (|has| |#1| (-426)) (|has| |#1| (-784)) (|has| |#1| (-962 (-522)))))) (-2255 ((|#2| |#2|) 86 (-12 (|has| |#2| (-405 |#1|)) (|has| |#1| (-426)) (|has| |#1| (-784)) (|has| |#1| (-962 (-522)))))) (-3158 ((|#2| |#2|) 87 (-12 (|has| |#2| (-405 |#1|)) (|has| |#1| (-426)) (|has| |#1| (-784)) (|has| |#1| (-962 (-522)))))) (-1764 ((|#2| (-110) |#2| (-708)) 74 (-12 (|has| |#2| (-405 |#1|)) (|has| |#1| (-426)) (|has| |#1| (-784)) (|has| |#1| (-962 (-522)))))) (-1770 (((-1081 |#2|) |#2|) 44)) (-1823 ((|#2| |#2| (-588 (-561 |#2|))) 17) ((|#2| |#2| (-588 |#2|)) 19) ((|#2| |#2| |#2|) 20) ((|#2| |#2|) 15)))
+(((-40 |#1| |#2|) (-10 -7 (-15 -2890 (|#2| |#2|)) (-15 -1823 (|#2| |#2|)) (-15 -1823 (|#2| |#2| |#2|)) (-15 -1823 (|#2| |#2| (-588 |#2|))) (-15 -1823 (|#2| |#2| (-588 (-561 |#2|)))) (-15 -1770 ((-1081 |#2|) |#2|)) (IF (|has| |#1| (-784)) (IF (|has| |#1| (-426)) (IF (|has| |#1| (-962 (-522))) (IF (|has| |#2| (-405 |#1|)) (PROGN (-15 -3158 (|#2| |#2|)) (-15 -2255 (|#2| |#2|)) (-15 -2937 (|#2| |#2|)) (-15 -1764 (|#2| (-110) |#2| (-708)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-514) (-13 (-338) (-278) (-10 -8 (-15 -2947 ((-1037 |#1| (-561 $)) $)) (-15 -2959 ((-1037 |#1| (-561 $)) $)) (-15 -2217 ($ (-1037 |#1| (-561 $))))))) (T -40))
+((-1764 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-110)) (-5 *4 (-708)) (-4 *5 (-426)) (-4 *5 (-784)) (-4 *5 (-962 (-522))) (-4 *5 (-514)) (-5 *1 (-40 *5 *2)) (-4 *2 (-405 *5)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2947 ((-1037 *5 (-561 $)) $)) (-15 -2959 ((-1037 *5 (-561 $)) $)) (-15 -2217 ($ (-1037 *5 (-561 $))))))))) (-2937 (*1 *2 *2) (-12 (-4 *3 (-426)) (-4 *3 (-784)) (-4 *3 (-962 (-522))) (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-405 *3)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2947 ((-1037 *3 (-561 $)) $)) (-15 -2959 ((-1037 *3 (-561 $)) $)) (-15 -2217 ($ (-1037 *3 (-561 $))))))))) (-2255 (*1 *2 *2) (-12 (-4 *3 (-426)) (-4 *3 (-784)) (-4 *3 (-962 (-522))) (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-405 *3)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2947 ((-1037 *3 (-561 $)) $)) (-15 -2959 ((-1037 *3 (-561 $)) $)) (-15 -2217 ($ (-1037 *3 (-561 $))))))))) (-3158 (*1 *2 *2) (-12 (-4 *3 (-426)) (-4 *3 (-784)) (-4 *3 (-962 (-522))) (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-405 *3)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2947 ((-1037 *3 (-561 $)) $)) (-15 -2959 ((-1037 *3 (-561 $)) $)) (-15 -2217 ($ (-1037 *3 (-561 $))))))))) (-1770 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-1081 *3)) (-5 *1 (-40 *4 *3)) (-4 *3 (-13 (-338) (-278) (-10 -8 (-15 -2947 ((-1037 *4 (-561 $)) $)) (-15 -2959 ((-1037 *4 (-561 $)) $)) (-15 -2217 ($ (-1037 *4 (-561 $))))))))) (-1823 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-561 *2))) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2947 ((-1037 *4 (-561 $)) $)) (-15 -2959 ((-1037 *4 (-561 $)) $)) (-15 -2217 ($ (-1037 *4 (-561 $))))))) (-4 *4 (-514)) (-5 *1 (-40 *4 *2)))) (-1823 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2947 ((-1037 *4 (-561 $)) $)) (-15 -2959 ((-1037 *4 (-561 $)) $)) (-15 -2217 ($ (-1037 *4 (-561 $))))))) (-4 *4 (-514)) (-5 *1 (-40 *4 *2)))) (-1823 (*1 *2 *2 *2) (-12 (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2947 ((-1037 *3 (-561 $)) $)) (-15 -2959 ((-1037 *3 (-561 $)) $)) (-15 -2217 ($ (-1037 *3 (-561 $))))))))) (-1823 (*1 *2 *2) (-12 (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2947 ((-1037 *3 (-561 $)) $)) (-15 -2959 ((-1037 *3 (-561 $)) $)) (-15 -2217 ($ (-1037 *3 (-561 $))))))))) (-2890 (*1 *2 *2) (-12 (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-13 (-338) (-278) (-10 -8 (-15 -2947 ((-1037 *3 (-561 $)) $)) (-15 -2959 ((-1037 *3 (-561 $)) $)) (-15 -2217 ($ (-1037 *3 (-561 $))))))))))
+(-10 -7 (-15 -2890 (|#2| |#2|)) (-15 -1823 (|#2| |#2|)) (-15 -1823 (|#2| |#2| |#2|)) (-15 -1823 (|#2| |#2| (-588 |#2|))) (-15 -1823 (|#2| |#2| (-588 (-561 |#2|)))) (-15 -1770 ((-1081 |#2|) |#2|)) (IF (|has| |#1| (-784)) (IF (|has| |#1| (-426)) (IF (|has| |#1| (-962 (-522))) (IF (|has| |#2| (-405 |#1|)) (PROGN (-15 -3158 (|#2| |#2|)) (-15 -2255 (|#2| |#2|)) (-15 -2937 (|#2| |#2|)) (-15 -1764 (|#2| (-110) |#2| (-708)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-2006 (((-393 (-1081 |#3|)) (-1081 |#3|) (-588 (-47))) 22) (((-393 |#3|) |#3| (-588 (-47))) 18)))
+(((-41 |#1| |#2| |#3|) (-10 -7 (-15 -2006 ((-393 |#3|) |#3| (-588 (-47)))) (-15 -2006 ((-393 (-1081 |#3|)) (-1081 |#3|) (-588 (-47))))) (-784) (-730) (-878 (-47) |#2| |#1|)) (T -41))
+((-2006 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-47))) (-4 *5 (-784)) (-4 *6 (-730)) (-4 *7 (-878 (-47) *6 *5)) (-5 *2 (-393 (-1081 *7))) (-5 *1 (-41 *5 *6 *7)) (-5 *3 (-1081 *7)))) (-2006 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-47))) (-4 *5 (-784)) (-4 *6 (-730)) (-5 *2 (-393 *3)) (-5 *1 (-41 *5 *6 *3)) (-4 *3 (-878 (-47) *6 *5)))))
+(-10 -7 (-15 -2006 ((-393 |#3|) |#3| (-588 (-47)))) (-15 -2006 ((-393 (-1081 |#3|)) (-1081 |#3|) (-588 (-47)))))
+((-1532 (((-708) |#2|) 65)) (-2998 (((-708) |#2|) 68)) (-2119 (((-588 |#2|)) 33)) (-3824 (((-708) |#2|) 67)) (-1493 (((-708) |#2|) 64)) (-2598 (((-708) |#2|) 66)) (-1485 (((-588 (-628 |#1|))) 60)) (-1497 (((-588 |#2|)) 55)) (-2703 (((-588 |#2|) |#2|) 43)) (-2381 (((-588 |#2|)) 57)) (-3983 (((-588 |#2|)) 56)) (-1665 (((-588 (-628 |#1|))) 48)) (-3227 (((-588 |#2|)) 54)) (-2373 (((-588 |#2|) |#2|) 42)) (-1798 (((-588 |#2|)) 50)) (-3825 (((-588 (-628 |#1|))) 61)) (-3376 (((-588 |#2|)) 59)) (-2905 (((-1166 |#2|) (-1166 |#2|)) 84 (|has| |#1| (-283)))))
+(((-42 |#1| |#2|) (-10 -7 (-15 -3824 ((-708) |#2|)) (-15 -2998 ((-708) |#2|)) (-15 -1493 ((-708) |#2|)) (-15 -1532 ((-708) |#2|)) (-15 -2598 ((-708) |#2|)) (-15 -1798 ((-588 |#2|))) (-15 -2373 ((-588 |#2|) |#2|)) (-15 -2703 ((-588 |#2|) |#2|)) (-15 -3227 ((-588 |#2|))) (-15 -1497 ((-588 |#2|))) (-15 -3983 ((-588 |#2|))) (-15 -2381 ((-588 |#2|))) (-15 -3376 ((-588 |#2|))) (-15 -1665 ((-588 (-628 |#1|)))) (-15 -1485 ((-588 (-628 |#1|)))) (-15 -3825 ((-588 (-628 |#1|)))) (-15 -2119 ((-588 |#2|))) (IF (|has| |#1| (-283)) (-15 -2905 ((-1166 |#2|) (-1166 |#2|))) |%noBranch|)) (-514) (-392 |#1|)) (T -42))
+((-2905 (*1 *2 *2) (-12 (-5 *2 (-1166 *4)) (-4 *4 (-392 *3)) (-4 *3 (-283)) (-4 *3 (-514)) (-5 *1 (-42 *3 *4)))) (-2119 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-3825 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 (-628 *3))) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-1485 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 (-628 *3))) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-1665 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 (-628 *3))) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-3376 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-2381 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-3983 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-1497 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-3227 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-2703 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 *3)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))) (-2373 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 *3)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))) (-1798 (*1 *2) (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4)) (-4 *4 (-392 *3)))) (-2598 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))) (-1532 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))) (-1493 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))) (-2998 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))) (-3824 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3)) (-4 *3 (-392 *4)))))
+(-10 -7 (-15 -3824 ((-708) |#2|)) (-15 -2998 ((-708) |#2|)) (-15 -1493 ((-708) |#2|)) (-15 -1532 ((-708) |#2|)) (-15 -2598 ((-708) |#2|)) (-15 -1798 ((-588 |#2|))) (-15 -2373 ((-588 |#2|) |#2|)) (-15 -2703 ((-588 |#2|) |#2|)) (-15 -3227 ((-588 |#2|))) (-15 -1497 ((-588 |#2|))) (-15 -3983 ((-588 |#2|))) (-15 -2381 ((-588 |#2|))) (-15 -3376 ((-588 |#2|))) (-15 -1665 ((-588 (-628 |#1|)))) (-15 -1485 ((-588 (-628 |#1|)))) (-15 -3825 ((-588 (-628 |#1|)))) (-15 -2119 ((-588 |#2|))) (IF (|has| |#1| (-283)) (-15 -2905 ((-1166 |#2|) (-1166 |#2|))) |%noBranch|))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2541 (((-3 $ "failed")) NIL (|has| |#1| (-514)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3690 (((-1166 (-628 |#1|)) (-1166 $)) NIL) (((-1166 (-628 |#1|))) 24)) (-2726 (((-1166 $)) 50)) (-3367 (($) NIL T CONST)) (-2722 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) NIL (|has| |#1| (-514)))) (-3050 (((-3 $ "failed")) NIL (|has| |#1| (-514)))) (-3531 (((-628 |#1|) (-1166 $)) NIL) (((-628 |#1|)) NIL)) (-2046 ((|#1| $) NIL)) (-2853 (((-628 |#1|) $ (-1166 $)) NIL) (((-628 |#1|) $) NIL)) (-1279 (((-3 $ "failed") $) NIL (|has| |#1| (-514)))) (-1662 (((-1081 (-881 |#1|))) NIL (|has| |#1| (-338)))) (-2698 (($ $ (-850)) NIL)) (-3676 ((|#1| $) NIL)) (-4080 (((-1081 |#1|) $) NIL (|has| |#1| (-514)))) (-4035 ((|#1| (-1166 $)) NIL) ((|#1|) NIL)) (-3767 (((-1081 |#1|) $) NIL)) (-1340 (((-108)) 86)) (-3225 (($ (-1166 |#1|) (-1166 $)) NIL) (($ (-1166 |#1|)) NIL)) (-3920 (((-3 $ "failed") $) 14 (|has| |#1| (-514)))) (-1692 (((-850)) 51)) (-2134 (((-108)) NIL)) (-2870 (($ $ (-850)) NIL)) (-2287 (((-108)) NIL)) (-3702 (((-108)) NIL)) (-3868 (((-108)) 88)) (-2439 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) NIL (|has| |#1| (-514)))) (-3351 (((-3 $ "failed")) NIL (|has| |#1| (-514)))) (-1521 (((-628 |#1|) (-1166 $)) NIL) (((-628 |#1|)) NIL)) (-3411 ((|#1| $) NIL)) (-2734 (((-628 |#1|) $ (-1166 $)) NIL) (((-628 |#1|) $) NIL)) (-3070 (((-3 $ "failed") $) NIL (|has| |#1| (-514)))) (-3943 (((-1081 (-881 |#1|))) NIL (|has| |#1| (-338)))) (-1946 (($ $ (-850)) NIL)) (-1819 ((|#1| $) NIL)) (-1216 (((-1081 |#1|) $) NIL (|has| |#1| (-514)))) (-3020 ((|#1| (-1166 $)) NIL) ((|#1|) NIL)) (-2724 (((-1081 |#1|) $) NIL)) (-4197 (((-108)) 85)) (-2311 (((-1068) $) NIL)) (-3823 (((-108)) 92)) (-1388 (((-108)) 91)) (-3509 (((-108)) 93)) (-4174 (((-1032) $) NIL)) (-1427 (((-108)) 87)) (-2683 ((|#1| $ (-522)) 53)) (-3510 (((-1166 |#1|) $ (-1166 $)) 47) (((-628 |#1|) (-1166 $) (-1166 $)) NIL) (((-1166 |#1|) $) 28) (((-628 |#1|) (-1166 $)) NIL)) (-3873 (((-1166 |#1|) $) NIL) (($ (-1166 |#1|)) NIL)) (-1777 (((-588 (-881 |#1|)) (-1166 $)) NIL) (((-588 (-881 |#1|))) NIL)) (-1596 (($ $ $) NIL)) (-3990 (((-108)) 83)) (-2217 (((-792) $) 68) (($ (-1166 |#1|)) 22)) (-2905 (((-1166 $)) 44)) (-1548 (((-588 (-1166 |#1|))) NIL (|has| |#1| (-514)))) (-2185 (($ $ $ $) NIL)) (-3597 (((-108)) 81)) (-1664 (($ (-628 |#1|) $) 18)) (-1369 (($ $ $) NIL)) (-3578 (((-108)) 84)) (-2912 (((-108)) 82)) (-1855 (((-108)) 80)) (-3697 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 75) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1052 |#2| |#1|) $) 19)))
+(((-43 |#1| |#2| |#3| |#4|) (-13 (-392 |#1|) (-590 (-1052 |#2| |#1|)) (-10 -8 (-15 -2217 ($ (-1166 |#1|))))) (-338) (-850) (-588 (-1085)) (-1166 (-628 |#1|))) (T -43))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-338)) (-14 *6 (-1166 (-628 *3))) (-5 *1 (-43 *3 *4 *5 *6)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))))))
+(-13 (-392 |#1|) (-590 (-1052 |#2| |#1|)) (-10 -8 (-15 -2217 ($ (-1166 |#1|)))))
+((-1419 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3526 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-2126 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3961 (($ $) NIL)) (-1883 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-3883 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239))) (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-2211 (($ $ (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL) (((-108) $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-2806 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784))))) (-3296 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-2717 (((-108) $ (-708)) NIL)) (-1198 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4239)))) (-2398 (($ $ $) 27 (|has| $ (-6 -4239)))) (-2631 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4239)))) (-3393 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 29 (|has| $ (-6 -4239)))) (-2437 ((|#2| $ |#1| |#2|) 46) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4239))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-1133 (-522)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4239))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ "last" (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4239))) (($ $ "rest" $) NIL (|has| $ (-6 -4239))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ "first" (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4239))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ "value" (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-1213 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL)) (-1696 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2116 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-4011 (((-3 |#2| "failed") |#1| $) 37)) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-2352 (($ $ (-708)) NIL) (($ $) 24)) (-1581 (($ $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-1700 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) 47) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL) (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-1424 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4239)))) (-2186 ((|#2| $ |#1|) NIL) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522)) NIL)) (-3614 (((-108) $) NIL)) (-3314 (((-522) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL) (((-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))) (((-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522)) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-2395 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 18 (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238))) (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 18 (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) NIL)) (-2402 (((-108) $ $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-1893 (($ (-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3496 ((|#1| $) NIL (|has| |#1| (-784))) (((-522) $) 32 (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-3557 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-3164 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-4084 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238))) (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-2201 ((|#1| $) NIL (|has| |#1| (-784))) (((-522) $) 34 (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239))) (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL)) (-1614 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2548 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL)) (-3394 (((-108) $) NIL)) (-2311 (((-1068) $) 42 (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1442 (($ $ (-708)) NIL) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-2562 (((-588 |#1|) $) 20)) (-2241 (((-108) |#1| $) NIL)) (-1431 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3365 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL) (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-1731 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-2130 (((-588 |#1|) $) NIL) (((-588 (-522)) $) NIL)) (-2103 (((-108) |#1| $) NIL) (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2337 ((|#2| $) NIL (|has| |#1| (-784))) (($ $ (-708)) NIL) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 23)) (-2187 (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL) (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL)) (-1972 (($ $ |#2|) NIL (|has| $ (-6 -4239))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-4196 (((-108) $) NIL)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-1973 (((-588 |#2|) $) NIL) (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 17)) (-3494 (((-108) $) 16)) (-3298 (($) 13)) (-2683 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ (-522)) NIL) (($ $ (-1133 (-522))) NIL) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ "first") NIL) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $ "value") NIL)) (-3381 (((-522) $ $) NIL)) (-3546 (($) 12) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-3551 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-3835 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-3395 (((-108) $) NIL)) (-2885 (($ $) NIL)) (-1668 (($ $) NIL (|has| $ (-6 -4239)))) (-1321 (((-708) $) NIL)) (-1502 (($ $) NIL)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-708) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-2335 (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL) (($ $ $) NIL)) (-4170 (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL) (($ (-588 $)) NIL) (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 25) (($ $ $) NIL)) (-2217 (((-792) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-1515 (((-588 $) $) NIL)) (-3294 (((-108) $ $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-2501 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-1453 (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") |#1| $) 44)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-1597 (((-108) $ $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-1562 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1609 (((-108) $ $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-1587 (((-108) $ $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-784)))) (-3591 (((-708) $) 22 (|has| $ (-6 -4238)))))
(((-44 |#1| |#2|) (-35 |#1| |#2|) (-1014) (-1014)) (T -44))
NIL
(-35 |#1| |#2|)
-((-3340 (((-108) $) 12)) (-1391 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-382 (-522)) $) 24) (($ $ (-382 (-522))) NIL)))
-(((-45 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -3340 ((-108) |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|))) (-46 |#2| |#3|) (-971) (-729)) (T -45))
+((-1374 (((-108) $) 12)) (-3810 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-382 (-522)) $) 24) (($ $ (-382 (-522))) NIL)))
+(((-45 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -1374 ((-108) |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|))) (-46 |#2| |#3|) (-971) (-729)) (T -45))
NIL
-(-10 -8 (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -3340 ((-108) |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2022 (($ $) 52 (|has| |#1| (-514)))) (-3739 (((-108) $) 54 (|has| |#1| (-514)))) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-3156 (($ $) 60)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-3340 (((-108) $) 62)) (-4049 (($ |#1| |#2|) 61)) (-1391 (($ (-1 |#1| |#1|) $) 63)) (-3128 (($ $) 65)) (-3138 ((|#1| $) 66)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2232 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-2793 ((|#2| $) 64)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514))) (($ |#1|) 47 (|has| |#1| (-157)))) (-3243 ((|#1| $ |#2|) 59)) (-2143 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 53 (|has| |#1| (-514)))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#1|) 58 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
+(-10 -8 (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -1374 ((-108) |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2298 (($ $) 52 (|has| |#1| (-514)))) (-3007 (((-108) $) 54 (|has| |#1| (-514)))) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3241 (($ $) 60)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-1374 (((-108) $) 62)) (-3500 (($ |#1| |#2|) 61)) (-3810 (($ (-1 |#1| |#1|) $) 63)) (-3216 (($ $) 65)) (-3224 ((|#1| $) 66)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2276 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-2487 ((|#2| $) 64)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514))) (($ |#1|) 47 (|has| |#1| (-157)))) (-1643 ((|#1| $ |#2|) 59)) (-3040 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 53 (|has| |#1| (-514)))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#1|) 58 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
(((-46 |#1| |#2|) (-1197) (-971) (-729)) (T -46))
-((-3138 (*1 *2 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)))) (-3128 (*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)))) (-2793 (*1 *2 *1) (-12 (-4 *1 (-46 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-46 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)))) (-3340 (*1 *2 *1) (-12 (-4 *1 (-46 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-5 *2 (-108)))) (-4049 (*1 *1 *2 *3) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)))) (-3156 (*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)))) (-3243 (*1 *2 *1 *3) (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)))) (-1620 (*1 *1 *1 *2) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)) (-4 *2 (-338)))))
-(-13 (-971) (-107 |t#1| |t#1|) (-10 -8 (-15 -3138 (|t#1| $)) (-15 -3128 ($ $)) (-15 -2793 (|t#2| $)) (-15 -1391 ($ (-1 |t#1| |t#1|) $)) (-15 -3340 ((-108) $)) (-15 -4049 ($ |t#1| |t#2|)) (-15 -3156 ($ $)) (-15 -3243 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-338)) (-15 -1620 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-157)) (PROGN (-6 (-157)) (-6 (-37 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |t#1| (-514)) (-6 (-514)) |%noBranch|) (IF (|has| |t#1| (-37 (-382 (-522)))) (-6 (-37 (-382 (-522)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-266) |has| |#1| (-514)) ((-514) |has| |#1| (-514)) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-1617 (((-588 $) (-1081 $) (-1085)) NIL) (((-588 $) (-1081 $)) NIL) (((-588 $) (-881 $)) NIL)) (-4032 (($ (-1081 $) (-1085)) NIL) (($ (-1081 $)) NIL) (($ (-881 $)) NIL)) (-2250 (((-108) $) 11)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1886 (((-588 (-561 $)) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3305 (($ $ (-270 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1929 (($ $) NIL)) (-1687 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-1221 (((-588 $) (-1081 $) (-1085)) NIL) (((-588 $) (-1081 $)) NIL) (((-588 $) (-881 $)) NIL)) (-3944 (($ (-1081 $) (-1085)) NIL) (($ (-1081 $)) NIL) (($ (-881 $)) NIL)) (-1297 (((-3 (-561 $) "failed") $) NIL) (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL)) (-1484 (((-561 $) $) NIL) (((-522) $) NIL) (((-382 (-522)) $) NIL)) (-2277 (($ $ $) NIL)) (-2096 (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -1222 (-628 (-382 (-522)))) (|:| |vec| (-1166 (-382 (-522))))) (-628 $) (-1166 $)) NIL) (((-628 (-382 (-522))) (-628 $)) NIL)) (-3864 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-1953 (($ $) NIL) (($ (-588 $)) NIL)) (-4161 (((-588 (-110)) $) NIL)) (-2626 (((-110) (-110)) NIL)) (-2782 (((-108) $) 14)) (-2591 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2805 (((-1037 (-522) (-561 $)) $) NIL)) (-1504 (($ $ (-522)) NIL)) (-2100 (((-1081 $) (-1081 $) (-561 $)) NIL) (((-1081 $) (-1081 $) (-588 (-561 $))) NIL) (($ $ (-561 $)) NIL) (($ $ (-588 (-561 $))) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1711 (((-1081 $) (-561 $)) NIL (|has| $ (-971)))) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-1391 (($ (-1 $ $) (-561 $)) NIL)) (-3993 (((-3 (-561 $) "failed") $) NIL)) (-2224 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-1267 (((-588 (-561 $)) $) NIL)) (-2909 (($ (-110) $) NIL) (($ (-110) (-588 $)) NIL)) (-2249 (((-108) $ (-110)) NIL) (((-108) $ (-1085)) NIL)) (-3098 (($ $) NIL)) (-4155 (((-708) $) NIL)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ (-588 $)) NIL) (($ $ $) NIL)) (-1648 (((-108) $ $) NIL) (((-108) $ (-1085)) NIL)) (-1916 (((-393 $) $) NIL)) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1263 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2289 (($ $ (-561 $) $) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-1085) (-1 $ (-588 $))) NIL) (($ $ (-1085) (-1 $ $)) NIL) (($ $ (-588 (-110)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-110) (-1 $ (-588 $))) NIL) (($ $ (-110) (-1 $ $)) NIL)) (-3730 (((-708) $) NIL)) (-2545 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-588 $)) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3043 (($ $) NIL) (($ $ $) NIL)) (-2157 (($ $ (-708)) NIL) (($ $) NIL)) (-2816 (((-1037 (-522) (-561 $)) $) NIL)) (-1479 (($ $) NIL (|has| $ (-971)))) (-1431 (((-354) $) NIL) (((-202) $) NIL) (((-154 (-354)) $) NIL)) (-2190 (((-792) $) NIL) (($ (-561 $)) NIL) (($ (-382 (-522))) NIL) (($ $) NIL) (($ (-522)) NIL) (($ (-1037 (-522) (-561 $))) NIL)) (-2323 (((-708)) NIL)) (-2308 (($ $) NIL) (($ (-588 $)) NIL)) (-3614 (((-108) (-110)) NIL)) (-3958 (((-108) $ $) NIL)) (-3510 (($ $ (-522)) NIL) (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3566 (($) 7 T CONST)) (-3577 (($) 12 T CONST)) (-2213 (($ $ (-708)) NIL) (($ $) NIL)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 16)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL)) (-1612 (($ $ $) 15) (($ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-382 (-522))) NIL) (($ $ (-522)) NIL) (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (* (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL) (($ $ $) NIL) (($ (-522) $) NIL) (($ (-708) $) NIL) (($ (-850) $) NIL)))
-(((-47) (-13 (-278) (-27) (-962 (-522)) (-962 (-382 (-522))) (-584 (-522)) (-947) (-584 (-382 (-522))) (-135) (-563 (-154 (-354))) (-210) (-10 -8 (-15 -2190 ($ (-1037 (-522) (-561 $)))) (-15 -2805 ((-1037 (-522) (-561 $)) $)) (-15 -2816 ((-1037 (-522) (-561 $)) $)) (-15 -3864 ($ $)) (-15 -2100 ((-1081 $) (-1081 $) (-561 $))) (-15 -2100 ((-1081 $) (-1081 $) (-588 (-561 $)))) (-15 -2100 ($ $ (-561 $))) (-15 -2100 ($ $ (-588 (-561 $))))))) (T -47))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1037 (-522) (-561 (-47)))) (-5 *1 (-47)))) (-2805 (*1 *2 *1) (-12 (-5 *2 (-1037 (-522) (-561 (-47)))) (-5 *1 (-47)))) (-2816 (*1 *2 *1) (-12 (-5 *2 (-1037 (-522) (-561 (-47)))) (-5 *1 (-47)))) (-3864 (*1 *1 *1) (-5 *1 (-47))) (-2100 (*1 *2 *2 *3) (-12 (-5 *2 (-1081 (-47))) (-5 *3 (-561 (-47))) (-5 *1 (-47)))) (-2100 (*1 *2 *2 *3) (-12 (-5 *2 (-1081 (-47))) (-5 *3 (-588 (-561 (-47)))) (-5 *1 (-47)))) (-2100 (*1 *1 *1 *2) (-12 (-5 *2 (-561 (-47))) (-5 *1 (-47)))) (-2100 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-561 (-47)))) (-5 *1 (-47)))))
-(-13 (-278) (-27) (-962 (-522)) (-962 (-382 (-522))) (-584 (-522)) (-947) (-584 (-382 (-522))) (-135) (-563 (-154 (-354))) (-210) (-10 -8 (-15 -2190 ($ (-1037 (-522) (-561 $)))) (-15 -2805 ((-1037 (-522) (-561 $)) $)) (-15 -2816 ((-1037 (-522) (-561 $)) $)) (-15 -3864 ($ $)) (-15 -2100 ((-1081 $) (-1081 $) (-561 $))) (-15 -2100 ((-1081 $) (-1081 $) (-588 (-561 $)))) (-15 -2100 ($ $ (-561 $))) (-15 -2100 ($ $ (-588 (-561 $))))))
-((-1416 (((-108) $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 7)) (-1531 (((-108) $ $) NIL)))
+((-3224 (*1 *2 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)))) (-3216 (*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)))) (-2487 (*1 *2 *1) (-12 (-4 *1 (-46 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-46 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)))) (-1374 (*1 *2 *1) (-12 (-4 *1 (-46 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-5 *2 (-108)))) (-3500 (*1 *1 *2 *3) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)))) (-3241 (*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)))) (-1643 (*1 *2 *1 *3) (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)))) (-1682 (*1 *1 *1 *2) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)) (-4 *2 (-338)))))
+(-13 (-971) (-107 |t#1| |t#1|) (-10 -8 (-15 -3224 (|t#1| $)) (-15 -3216 ($ $)) (-15 -2487 (|t#2| $)) (-15 -3810 ($ (-1 |t#1| |t#1|) $)) (-15 -1374 ((-108) $)) (-15 -3500 ($ |t#1| |t#2|)) (-15 -3241 ($ $)) (-15 -1643 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-338)) (-15 -1682 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-157)) (PROGN (-6 (-157)) (-6 (-37 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |t#1| (-514)) (-6 (-514)) |%noBranch|) (IF (|has| |t#1| (-37 (-382 (-522)))) (-6 (-37 (-382 (-522)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-266) |has| |#1| (-514)) ((-514) |has| |#1| (-514)) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
+((-1419 (((-108) $ $) NIL)) (-3899 (((-588 $) (-1081 $) (-1085)) NIL) (((-588 $) (-1081 $)) NIL) (((-588 $) (-881 $)) NIL)) (-3974 (($ (-1081 $) (-1085)) NIL) (($ (-1081 $)) NIL) (($ (-881 $)) NIL)) (-2944 (((-108) $) 11)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-1974 (((-588 (-561 $)) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1847 (($ $ (-270 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2016 (($ $) NIL)) (-2805 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-2136 (((-588 $) (-1081 $) (-1085)) NIL) (((-588 $) (-1081 $)) NIL) (((-588 $) (-881 $)) NIL)) (-1275 (($ (-1081 $) (-1085)) NIL) (($ (-1081 $)) NIL) (($ (-881 $)) NIL)) (-3700 (((-3 (-561 $) "failed") $) NIL) (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL)) (-1478 (((-561 $) $) NIL) (((-522) $) NIL) (((-382 (-522)) $) NIL)) (-2333 (($ $ $) NIL)) (-1226 (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -2149 (-628 (-382 (-522)))) (|:| |vec| (-1166 (-382 (-522))))) (-628 $) (-1166 $)) NIL) (((-628 (-382 (-522))) (-628 $)) NIL)) (-2153 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-2930 (($ $) NIL) (($ (-588 $)) NIL)) (-2896 (((-588 (-110)) $) NIL)) (-1771 (((-110) (-110)) NIL)) (-2859 (((-108) $) 14)) (-3077 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2947 (((-1037 (-522) (-561 $)) $) NIL)) (-1811 (($ $ (-522)) NIL)) (-1269 (((-1081 $) (-1081 $) (-561 $)) NIL) (((-1081 $) (-1081 $) (-588 (-561 $))) NIL) (($ $ (-561 $)) NIL) (($ $ (-588 (-561 $))) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4185 (((-1081 $) (-561 $)) NIL (|has| $ (-971)))) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-3810 (($ (-1 $ $) (-561 $)) NIL)) (-3562 (((-3 (-561 $) "failed") $) NIL)) (-2267 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-1249 (((-588 (-561 $)) $) NIL)) (-3043 (($ (-110) $) NIL) (($ (-110) (-588 $)) NIL)) (-2935 (((-108) $ (-110)) NIL) (((-108) $ (-1085)) NIL)) (-3193 (($ $) NIL)) (-4179 (((-708) $) NIL)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2368 (((-108) $ $) NIL) (((-108) $ (-1085)) NIL)) (-2006 (((-393 $) $) NIL)) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2626 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2330 (($ $ (-561 $) $) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-1085) (-1 $ (-588 $))) NIL) (($ $ (-1085) (-1 $ $)) NIL) (($ $ (-588 (-110)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-110) (-1 $ (-588 $))) NIL) (($ $ (-110) (-1 $ $)) NIL)) (-4031 (((-708) $) NIL)) (-2683 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-588 $)) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-3406 (($ $) NIL) (($ $ $) NIL)) (-2731 (($ $ (-708)) NIL) (($ $) NIL)) (-2959 (((-1037 (-522) (-561 $)) $) NIL)) (-1579 (($ $) NIL (|has| $ (-971)))) (-3873 (((-354) $) NIL) (((-202) $) NIL) (((-154 (-354)) $) NIL)) (-2217 (((-792) $) NIL) (($ (-561 $)) NIL) (($ (-382 (-522))) NIL) (($ $) NIL) (($ (-522)) NIL) (($ (-1037 (-522) (-561 $))) NIL)) (-2742 (((-708)) NIL)) (-3811 (($ $) NIL) (($ (-588 $)) NIL)) (-4082 (((-108) (-110)) NIL)) (-1407 (((-108) $ $) NIL)) (-3622 (($ $ (-522)) NIL) (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3697 (($) 7 T CONST)) (-3709 (($) 12 T CONST)) (-2252 (($ $ (-708)) NIL) (($ $) NIL)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 16)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL)) (-1672 (($ $ $) 15) (($ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-382 (-522))) NIL) (($ $ (-522)) NIL) (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (* (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL) (($ $ $) NIL) (($ (-522) $) NIL) (($ (-708) $) NIL) (($ (-850) $) NIL)))
+(((-47) (-13 (-278) (-27) (-962 (-522)) (-962 (-382 (-522))) (-584 (-522)) (-947) (-584 (-382 (-522))) (-135) (-563 (-154 (-354))) (-210) (-10 -8 (-15 -2217 ($ (-1037 (-522) (-561 $)))) (-15 -2947 ((-1037 (-522) (-561 $)) $)) (-15 -2959 ((-1037 (-522) (-561 $)) $)) (-15 -2153 ($ $)) (-15 -1269 ((-1081 $) (-1081 $) (-561 $))) (-15 -1269 ((-1081 $) (-1081 $) (-588 (-561 $)))) (-15 -1269 ($ $ (-561 $))) (-15 -1269 ($ $ (-588 (-561 $))))))) (T -47))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1037 (-522) (-561 (-47)))) (-5 *1 (-47)))) (-2947 (*1 *2 *1) (-12 (-5 *2 (-1037 (-522) (-561 (-47)))) (-5 *1 (-47)))) (-2959 (*1 *2 *1) (-12 (-5 *2 (-1037 (-522) (-561 (-47)))) (-5 *1 (-47)))) (-2153 (*1 *1 *1) (-5 *1 (-47))) (-1269 (*1 *2 *2 *3) (-12 (-5 *2 (-1081 (-47))) (-5 *3 (-561 (-47))) (-5 *1 (-47)))) (-1269 (*1 *2 *2 *3) (-12 (-5 *2 (-1081 (-47))) (-5 *3 (-588 (-561 (-47)))) (-5 *1 (-47)))) (-1269 (*1 *1 *1 *2) (-12 (-5 *2 (-561 (-47))) (-5 *1 (-47)))) (-1269 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-561 (-47)))) (-5 *1 (-47)))))
+(-13 (-278) (-27) (-962 (-522)) (-962 (-382 (-522))) (-584 (-522)) (-947) (-584 (-382 (-522))) (-135) (-563 (-154 (-354))) (-210) (-10 -8 (-15 -2217 ($ (-1037 (-522) (-561 $)))) (-15 -2947 ((-1037 (-522) (-561 $)) $)) (-15 -2959 ((-1037 (-522) (-561 $)) $)) (-15 -2153 ($ $)) (-15 -1269 ((-1081 $) (-1081 $) (-561 $))) (-15 -1269 ((-1081 $) (-1081 $) (-588 (-561 $)))) (-15 -1269 ($ $ (-561 $))) (-15 -1269 ($ $ (-588 (-561 $))))))
+((-1419 (((-108) $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 7)) (-1562 (((-108) $ $) NIL)))
(((-48) (-1014)) (T -48))
NIL
(-1014)
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 60)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-1289 (((-108) $) 20)) (-1297 (((-3 |#1| "failed") $) 23)) (-1484 ((|#1| $) 24)) (-3156 (($ $) 27)) (-2682 (((-3 $ "failed") $) NIL)) (-2782 (((-108) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-3138 ((|#1| $) 21)) (-3229 (($ $) 49)) (-2385 (((-1068) $) NIL)) (-3679 (((-108) $) 28)) (-4151 (((-1032) $) NIL)) (-1383 (($ (-708)) 47)) (-3266 (($ (-588 (-522))) 48)) (-2793 (((-708) $) 29)) (-2190 (((-792) $) 63) (($ (-522)) 44) (($ |#1|) 42)) (-3243 ((|#1| $ $) 19)) (-2323 (((-708)) 46)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 30 T CONST)) (-3577 (($) 14 T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 40)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 41) (($ |#1| $) 35)))
-(((-49 |#1| |#2|) (-13 (-566 |#1|) (-962 |#1|) (-10 -8 (-15 -3138 (|#1| $)) (-15 -3229 ($ $)) (-15 -3156 ($ $)) (-15 -3243 (|#1| $ $)) (-15 -1383 ($ (-708))) (-15 -3266 ($ (-588 (-522)))) (-15 -3679 ((-108) $)) (-15 -1289 ((-108) $)) (-15 -2793 ((-708) $)) (-15 -1391 ($ (-1 |#1| |#1|) $)))) (-971) (-588 (-1085))) (T -49))
-((-3138 (*1 *2 *1) (-12 (-4 *2 (-971)) (-5 *1 (-49 *2 *3)) (-14 *3 (-588 (-1085))))) (-3229 (*1 *1 *1) (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-971)) (-14 *3 (-588 (-1085))))) (-3156 (*1 *1 *1) (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-971)) (-14 *3 (-588 (-1085))))) (-3243 (*1 *2 *1 *1) (-12 (-4 *2 (-971)) (-5 *1 (-49 *2 *3)) (-14 *3 (-588 (-1085))))) (-1383 (*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971)) (-14 *4 (-588 (-1085))))) (-3266 (*1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-49 *3 *4)) (-4 *3 (-971)) (-14 *4 (-588 (-1085))))) (-3679 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971)) (-14 *4 (-588 (-1085))))) (-1289 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971)) (-14 *4 (-588 (-1085))))) (-2793 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971)) (-14 *4 (-588 (-1085))))) (-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-49 *3 *4)) (-14 *4 (-588 (-1085))))))
-(-13 (-566 |#1|) (-962 |#1|) (-10 -8 (-15 -3138 (|#1| $)) (-15 -3229 ($ $)) (-15 -3156 ($ $)) (-15 -3243 (|#1| $ $)) (-15 -1383 ($ (-708))) (-15 -3266 ($ (-588 (-522)))) (-15 -3679 ((-108) $)) (-15 -1289 ((-108) $)) (-15 -2793 ((-708) $)) (-15 -1391 ($ (-1 |#1| |#1|) $))))
-((-1289 (((-108) (-51)) 13)) (-1297 (((-3 |#1| "failed") (-51)) 21)) (-1484 ((|#1| (-51)) 22)) (-2190 (((-51) |#1|) 18)))
-(((-50 |#1|) (-10 -7 (-15 -2190 ((-51) |#1|)) (-15 -1297 ((-3 |#1| "failed") (-51))) (-15 -1289 ((-108) (-51))) (-15 -1484 (|#1| (-51)))) (-1120)) (T -50))
-((-1484 (*1 *2 *3) (-12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1120)))) (-1289 (*1 *2 *3) (-12 (-5 *3 (-51)) (-5 *2 (-108)) (-5 *1 (-50 *4)) (-4 *4 (-1120)))) (-1297 (*1 *2 *3) (|partial| -12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1120)))) (-2190 (*1 *2 *3) (-12 (-5 *2 (-51)) (-5 *1 (-50 *3)) (-4 *3 (-1120)))))
-(-10 -7 (-15 -2190 ((-51) |#1|)) (-15 -1297 ((-3 |#1| "failed") (-51))) (-15 -1289 ((-108) (-51))) (-15 -1484 (|#1| (-51))))
-((-1416 (((-108) $ $) NIL)) (-3715 (((-1068) (-108)) 25)) (-2376 (((-792) $) 24)) (-2861 (((-711) $) 12)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-4199 (((-792) $) 16)) (-2897 (((-1018) $) 14)) (-2190 (((-792) $) 32)) (-2328 (($ (-1018) (-711)) 33)) (-1531 (((-108) $ $) 18)))
-(((-51) (-13 (-1014) (-10 -8 (-15 -2328 ($ (-1018) (-711))) (-15 -4199 ((-792) $)) (-15 -2376 ((-792) $)) (-15 -2897 ((-1018) $)) (-15 -2861 ((-711) $)) (-15 -3715 ((-1068) (-108)))))) (T -51))
-((-2328 (*1 *1 *2 *3) (-12 (-5 *2 (-1018)) (-5 *3 (-711)) (-5 *1 (-51)))) (-4199 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-51)))) (-2376 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-51)))) (-2897 (*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-51)))) (-2861 (*1 *2 *1) (-12 (-5 *2 (-711)) (-5 *1 (-51)))) (-3715 (*1 *2 *3) (-12 (-5 *3 (-108)) (-5 *2 (-1068)) (-5 *1 (-51)))))
-(-13 (-1014) (-10 -8 (-15 -2328 ($ (-1018) (-711))) (-15 -4199 ((-792) $)) (-15 -2376 ((-792) $)) (-15 -2897 ((-1018) $)) (-15 -2861 ((-711) $)) (-15 -3715 ((-1068) (-108)))))
-((-1616 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 16)))
-(((-52 |#1| |#2| |#3|) (-10 -7 (-15 -1616 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-971) (-590 |#1|) (-786 |#1|)) (T -52))
-((-1616 (*1 *2 *3 *4 *2) (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-590 *5)) (-4 *5 (-971)) (-5 *1 (-52 *5 *2 *3)) (-4 *3 (-786 *5)))))
-(-10 -7 (-15 -1616 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
-((-2418 ((|#3| |#3| (-588 (-1085))) 35)) (-2392 ((|#3| (-588 (-993 |#1| |#2| |#3|)) |#3| (-850)) 22) ((|#3| (-588 (-993 |#1| |#2| |#3|)) |#3|) 20)))
-(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -2392 (|#3| (-588 (-993 |#1| |#2| |#3|)) |#3|)) (-15 -2392 (|#3| (-588 (-993 |#1| |#2| |#3|)) |#3| (-850))) (-15 -2418 (|#3| |#3| (-588 (-1085))))) (-1014) (-13 (-971) (-815 |#1|) (-784) (-563 (-821 |#1|))) (-13 (-405 |#2|) (-815 |#1|) (-563 (-821 |#1|)))) (T -53))
-((-2418 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-1085))) (-4 *4 (-1014)) (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4)))) (-5 *1 (-53 *4 *5 *2)) (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))))) (-2392 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-588 (-993 *5 *6 *2))) (-5 *4 (-850)) (-4 *5 (-1014)) (-4 *6 (-13 (-971) (-815 *5) (-784) (-563 (-821 *5)))) (-4 *2 (-13 (-405 *6) (-815 *5) (-563 (-821 *5)))) (-5 *1 (-53 *5 *6 *2)))) (-2392 (*1 *2 *3 *2) (-12 (-5 *3 (-588 (-993 *4 *5 *2))) (-4 *4 (-1014)) (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4)))) (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))) (-5 *1 (-53 *4 *5 *2)))))
-(-10 -7 (-15 -2392 (|#3| (-588 (-993 |#1| |#2| |#3|)) |#3|)) (-15 -2392 (|#3| (-588 (-993 |#1| |#2| |#3|)) |#3| (-850))) (-15 -2418 (|#3| |#3| (-588 (-1085)))))
-((-4141 (((-108) $ (-708)) 23)) (-2480 (($ $ (-522) |#3|) 45)) (-1888 (($ $ (-522) |#4|) 49)) (-1860 ((|#3| $ (-522)) 58)) (-3837 (((-588 |#2|) $) 30)) (-3352 (((-108) $ (-708)) 25)) (-2246 (((-108) |#2| $) 53)) (-3838 (($ (-1 |#2| |#2|) $) 37)) (-1391 (($ (-1 |#2| |#2|) $) 36) (($ (-1 |#2| |#2| |#2|) $ $) 39) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 41)) (-2720 (((-108) $ (-708)) 24)) (-2602 (($ $ |#2|) 34)) (-3053 (((-108) (-1 (-108) |#2|) $) 19)) (-2545 ((|#2| $ (-522) (-522)) NIL) ((|#2| $ (-522) (-522) |#2|) 27)) (-4168 (((-708) (-1 (-108) |#2|) $) 28) (((-708) |#2| $) 55)) (-2404 (($ $) 33)) (-3488 ((|#4| $ (-522)) 61)) (-2190 (((-792) $) 66)) (-3648 (((-108) (-1 (-108) |#2|) $) 18)) (-1531 (((-108) $ $) 52)) (-3480 (((-708) $) 26)))
-(((-54 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2190 ((-792) |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -1391 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3838 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1888 (|#1| |#1| (-522) |#4|)) (-15 -2480 (|#1| |#1| (-522) |#3|)) (-15 -3837 ((-588 |#2|) |#1|)) (-15 -3488 (|#4| |#1| (-522))) (-15 -1860 (|#3| |#1| (-522))) (-15 -2545 (|#2| |#1| (-522) (-522) |#2|)) (-15 -2545 (|#2| |#1| (-522) (-522))) (-15 -2602 (|#1| |#1| |#2|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -2246 ((-108) |#2| |#1|)) (-15 -4168 ((-708) |#2| |#1|)) (-15 -4168 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3053 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3648 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3480 ((-708) |#1|)) (-15 -4141 ((-108) |#1| (-708))) (-15 -3352 ((-108) |#1| (-708))) (-15 -2720 ((-108) |#1| (-708))) (-15 -2404 (|#1| |#1|))) (-55 |#2| |#3| |#4|) (-1120) (-348 |#2|) (-348 |#2|)) (T -54))
-NIL
-(-10 -8 (-15 -2190 ((-792) |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -1391 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3838 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1888 (|#1| |#1| (-522) |#4|)) (-15 -2480 (|#1| |#1| (-522) |#3|)) (-15 -3837 ((-588 |#2|) |#1|)) (-15 -3488 (|#4| |#1| (-522))) (-15 -1860 (|#3| |#1| (-522))) (-15 -2545 (|#2| |#1| (-522) (-522) |#2|)) (-15 -2545 (|#2| |#1| (-522) (-522))) (-15 -2602 (|#1| |#1| |#2|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -2246 ((-108) |#2| |#1|)) (-15 -4168 ((-708) |#2| |#1|)) (-15 -4168 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3053 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3648 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3480 ((-708) |#1|)) (-15 -4141 ((-108) |#1| (-708))) (-15 -3352 ((-108) |#1| (-708))) (-15 -2720 ((-108) |#1| (-708))) (-15 -2404 (|#1| |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) 8)) (-2379 ((|#1| $ (-522) (-522) |#1|) 44)) (-2480 (($ $ (-522) |#2|) 42)) (-1888 (($ $ (-522) |#3|) 41)) (-3175 (($) 7 T CONST)) (-1860 ((|#2| $ (-522)) 46)) (-3854 ((|#1| $ (-522) (-522) |#1|) 43)) (-3631 ((|#1| $ (-522) (-522)) 48)) (-3837 (((-588 |#1|) $) 30)) (-1411 (((-708) $) 51)) (-1811 (($ (-708) (-708) |#1|) 57)) (-1422 (((-708) $) 50)) (-3352 (((-108) $ (-708)) 9)) (-2575 (((-522) $) 55)) (-1885 (((-522) $) 53)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3886 (((-522) $) 54)) (-4132 (((-522) $) 52)) (-3838 (($ (-1 |#1| |#1|) $) 34)) (-1391 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2602 (($ $ |#1|) 56)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ (-522) (-522)) 49) ((|#1| $ (-522) (-522) |#1|) 47)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-3488 ((|#3| $ (-522)) 45)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 60)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-1608 (((-108) $) 20)) (-3700 (((-3 |#1| "failed") $) 23)) (-1478 ((|#1| $) 24)) (-3241 (($ $) 27)) (-3920 (((-3 $ "failed") $) NIL)) (-2859 (((-108) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3224 ((|#1| $) 21)) (-2778 (($ $) 49)) (-2311 (((-1068) $) NIL)) (-3532 (((-108) $) 28)) (-4174 (((-1032) $) NIL)) (-1368 (($ (-708)) 47)) (-3357 (($ (-588 (-522))) 48)) (-2487 (((-708) $) 29)) (-2217 (((-792) $) 63) (($ (-522)) 44) (($ |#1|) 42)) (-1643 ((|#1| $ $) 19)) (-2742 (((-708)) 46)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 30 T CONST)) (-3709 (($) 14 T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 40)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 41) (($ |#1| $) 35)))
+(((-49 |#1| |#2|) (-13 (-566 |#1|) (-962 |#1|) (-10 -8 (-15 -3224 (|#1| $)) (-15 -2778 ($ $)) (-15 -3241 ($ $)) (-15 -1643 (|#1| $ $)) (-15 -1368 ($ (-708))) (-15 -3357 ($ (-588 (-522)))) (-15 -3532 ((-108) $)) (-15 -1608 ((-108) $)) (-15 -2487 ((-708) $)) (-15 -3810 ($ (-1 |#1| |#1|) $)))) (-971) (-588 (-1085))) (T -49))
+((-3224 (*1 *2 *1) (-12 (-4 *2 (-971)) (-5 *1 (-49 *2 *3)) (-14 *3 (-588 (-1085))))) (-2778 (*1 *1 *1) (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-971)) (-14 *3 (-588 (-1085))))) (-3241 (*1 *1 *1) (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-971)) (-14 *3 (-588 (-1085))))) (-1643 (*1 *2 *1 *1) (-12 (-4 *2 (-971)) (-5 *1 (-49 *2 *3)) (-14 *3 (-588 (-1085))))) (-1368 (*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971)) (-14 *4 (-588 (-1085))))) (-3357 (*1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-49 *3 *4)) (-4 *3 (-971)) (-14 *4 (-588 (-1085))))) (-3532 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971)) (-14 *4 (-588 (-1085))))) (-1608 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971)) (-14 *4 (-588 (-1085))))) (-2487 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971)) (-14 *4 (-588 (-1085))))) (-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-49 *3 *4)) (-14 *4 (-588 (-1085))))))
+(-13 (-566 |#1|) (-962 |#1|) (-10 -8 (-15 -3224 (|#1| $)) (-15 -2778 ($ $)) (-15 -3241 ($ $)) (-15 -1643 (|#1| $ $)) (-15 -1368 ($ (-708))) (-15 -3357 ($ (-588 (-522)))) (-15 -3532 ((-108) $)) (-15 -1608 ((-108) $)) (-15 -2487 ((-708) $)) (-15 -3810 ($ (-1 |#1| |#1|) $))))
+((-1608 (((-108) (-51)) 13)) (-3700 (((-3 |#1| "failed") (-51)) 21)) (-1478 ((|#1| (-51)) 22)) (-2217 (((-51) |#1|) 18)))
+(((-50 |#1|) (-10 -7 (-15 -2217 ((-51) |#1|)) (-15 -3700 ((-3 |#1| "failed") (-51))) (-15 -1608 ((-108) (-51))) (-15 -1478 (|#1| (-51)))) (-1120)) (T -50))
+((-1478 (*1 *2 *3) (-12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1120)))) (-1608 (*1 *2 *3) (-12 (-5 *3 (-51)) (-5 *2 (-108)) (-5 *1 (-50 *4)) (-4 *4 (-1120)))) (-3700 (*1 *2 *3) (|partial| -12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1120)))) (-2217 (*1 *2 *3) (-12 (-5 *2 (-51)) (-5 *1 (-50 *3)) (-4 *3 (-1120)))))
+(-10 -7 (-15 -2217 ((-51) |#1|)) (-15 -3700 ((-3 |#1| "failed") (-51))) (-15 -1608 ((-108) (-51))) (-15 -1478 (|#1| (-51))))
+((-1419 (((-108) $ $) NIL)) (-3885 (((-1068) (-108)) 25)) (-1240 (((-792) $) 24)) (-2986 (((-711) $) 12)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1981 (((-792) $) 16)) (-3028 (((-1018) $) 14)) (-2217 (((-792) $) 32)) (-3831 (($ (-1018) (-711)) 33)) (-1562 (((-108) $ $) 18)))
+(((-51) (-13 (-1014) (-10 -8 (-15 -3831 ($ (-1018) (-711))) (-15 -1981 ((-792) $)) (-15 -1240 ((-792) $)) (-15 -3028 ((-1018) $)) (-15 -2986 ((-711) $)) (-15 -3885 ((-1068) (-108)))))) (T -51))
+((-3831 (*1 *1 *2 *3) (-12 (-5 *2 (-1018)) (-5 *3 (-711)) (-5 *1 (-51)))) (-1981 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-51)))) (-1240 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-51)))) (-3028 (*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-51)))) (-2986 (*1 *2 *1) (-12 (-5 *2 (-711)) (-5 *1 (-51)))) (-3885 (*1 *2 *3) (-12 (-5 *3 (-108)) (-5 *2 (-1068)) (-5 *1 (-51)))))
+(-13 (-1014) (-10 -8 (-15 -3831 ($ (-1018) (-711))) (-15 -1981 ((-792) $)) (-15 -1240 ((-792) $)) (-15 -3028 ((-1018) $)) (-15 -2986 ((-711) $)) (-15 -3885 ((-1068) (-108)))))
+((-1664 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 16)))
+(((-52 |#1| |#2| |#3|) (-10 -7 (-15 -1664 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-971) (-590 |#1|) (-786 |#1|)) (T -52))
+((-1664 (*1 *2 *3 *4 *2) (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-590 *5)) (-4 *5 (-971)) (-5 *1 (-52 *5 *2 *3)) (-4 *3 (-786 *5)))))
+(-10 -7 (-15 -1664 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
+((-3236 ((|#3| |#3| (-588 (-1085))) 35)) (-2399 ((|#3| (-588 (-993 |#1| |#2| |#3|)) |#3| (-850)) 22) ((|#3| (-588 (-993 |#1| |#2| |#3|)) |#3|) 20)))
+(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -2399 (|#3| (-588 (-993 |#1| |#2| |#3|)) |#3|)) (-15 -2399 (|#3| (-588 (-993 |#1| |#2| |#3|)) |#3| (-850))) (-15 -3236 (|#3| |#3| (-588 (-1085))))) (-1014) (-13 (-971) (-815 |#1|) (-784) (-563 (-821 |#1|))) (-13 (-405 |#2|) (-815 |#1|) (-563 (-821 |#1|)))) (T -53))
+((-3236 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-1085))) (-4 *4 (-1014)) (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4)))) (-5 *1 (-53 *4 *5 *2)) (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))))) (-2399 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-588 (-993 *5 *6 *2))) (-5 *4 (-850)) (-4 *5 (-1014)) (-4 *6 (-13 (-971) (-815 *5) (-784) (-563 (-821 *5)))) (-4 *2 (-13 (-405 *6) (-815 *5) (-563 (-821 *5)))) (-5 *1 (-53 *5 *6 *2)))) (-2399 (*1 *2 *3 *2) (-12 (-5 *3 (-588 (-993 *4 *5 *2))) (-4 *4 (-1014)) (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4)))) (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))) (-5 *1 (-53 *4 *5 *2)))))
+(-10 -7 (-15 -2399 (|#3| (-588 (-993 |#1| |#2| |#3|)) |#3|)) (-15 -2399 (|#3| (-588 (-993 |#1| |#2| |#3|)) |#3| (-850))) (-15 -3236 (|#3| |#3| (-588 (-1085)))))
+((-2717 (((-108) $ (-708)) 23)) (-3074 (($ $ (-522) |#3|) 45)) (-4060 (($ $ (-522) |#4|) 49)) (-2635 ((|#3| $ (-522)) 58)) (-2395 (((-588 |#2|) $) 30)) (-1480 (((-108) $ (-708)) 25)) (-4176 (((-108) |#2| $) 53)) (-2397 (($ (-1 |#2| |#2|) $) 37)) (-3810 (($ (-1 |#2| |#2|) $) 36) (($ (-1 |#2| |#2| |#2|) $ $) 39) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 41)) (-3309 (((-108) $ (-708)) 24)) (-1972 (($ $ |#2|) 34)) (-3487 (((-108) (-1 (-108) |#2|) $) 19)) (-2683 ((|#2| $ (-522) (-522)) NIL) ((|#2| $ (-522) (-522) |#2|) 27)) (-4187 (((-708) (-1 (-108) |#2|) $) 28) (((-708) |#2| $) 55)) (-2463 (($ $) 33)) (-2223 ((|#4| $ (-522)) 61)) (-2217 (((-792) $) 66)) (-1381 (((-108) (-1 (-108) |#2|) $) 18)) (-1562 (((-108) $ $) 52)) (-3591 (((-708) $) 26)))
+(((-54 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2217 ((-792) |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -3810 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2397 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4060 (|#1| |#1| (-522) |#4|)) (-15 -3074 (|#1| |#1| (-522) |#3|)) (-15 -2395 ((-588 |#2|) |#1|)) (-15 -2223 (|#4| |#1| (-522))) (-15 -2635 (|#3| |#1| (-522))) (-15 -2683 (|#2| |#1| (-522) (-522) |#2|)) (-15 -2683 (|#2| |#1| (-522) (-522))) (-15 -1972 (|#1| |#1| |#2|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -4176 ((-108) |#2| |#1|)) (-15 -4187 ((-708) |#2| |#1|)) (-15 -4187 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3487 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1381 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3591 ((-708) |#1|)) (-15 -2717 ((-108) |#1| (-708))) (-15 -1480 ((-108) |#1| (-708))) (-15 -3309 ((-108) |#1| (-708))) (-15 -2463 (|#1| |#1|))) (-55 |#2| |#3| |#4|) (-1120) (-348 |#2|) (-348 |#2|)) (T -54))
+NIL
+(-10 -8 (-15 -2217 ((-792) |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -3810 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2397 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4060 (|#1| |#1| (-522) |#4|)) (-15 -3074 (|#1| |#1| (-522) |#3|)) (-15 -2395 ((-588 |#2|) |#1|)) (-15 -2223 (|#4| |#1| (-522))) (-15 -2635 (|#3| |#1| (-522))) (-15 -2683 (|#2| |#1| (-522) (-522) |#2|)) (-15 -2683 (|#2| |#1| (-522) (-522))) (-15 -1972 (|#1| |#1| |#2|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -4176 ((-108) |#2| |#1|)) (-15 -4187 ((-708) |#2| |#1|)) (-15 -4187 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3487 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1381 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3591 ((-708) |#1|)) (-15 -2717 ((-108) |#1| (-708))) (-15 -1480 ((-108) |#1| (-708))) (-15 -3309 ((-108) |#1| (-708))) (-15 -2463 (|#1| |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) 8)) (-2437 ((|#1| $ (-522) (-522) |#1|) 44)) (-3074 (($ $ (-522) |#2|) 42)) (-4060 (($ $ (-522) |#3|) 41)) (-3367 (($) 7 T CONST)) (-2635 ((|#2| $ (-522)) 46)) (-2411 ((|#1| $ (-522) (-522) |#1|) 43)) (-2186 ((|#1| $ (-522) (-522)) 48)) (-2395 (((-588 |#1|) $) 30)) (-2949 (((-708) $) 51)) (-1893 (($ (-708) (-708) |#1|) 57)) (-2960 (((-708) $) 50)) (-1480 (((-108) $ (-708)) 9)) (-2604 (((-522) $) 55)) (-4042 (((-522) $) 53)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1925 (((-522) $) 54)) (-2595 (((-522) $) 52)) (-2397 (($ (-1 |#1| |#1|) $) 34)) (-3810 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-1972 (($ $ |#1|) 56)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ (-522) (-522)) 49) ((|#1| $ (-522) (-522) |#1|) 47)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2223 ((|#3| $ (-522)) 45)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-55 |#1| |#2| |#3|) (-1197) (-1120) (-348 |t#1|) (-348 |t#1|)) (T -55))
-((-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1811 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-708)) (-4 *3 (-1120)) (-4 *1 (-55 *3 *4 *5)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-2602 (*1 *1 *1 *2) (-12 (-4 *1 (-55 *2 *3 *4)) (-4 *2 (-1120)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-2575 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-522)))) (-3886 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-522)))) (-1885 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-522)))) (-4132 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-522)))) (-1411 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-708)))) (-1422 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-708)))) (-2545 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-1120)))) (-3631 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-1120)))) (-2545 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1120)) (-4 *4 (-348 *2)) (-4 *5 (-348 *2)))) (-1860 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-55 *4 *2 *5)) (-4 *4 (-1120)) (-4 *5 (-348 *4)) (-4 *2 (-348 *4)))) (-3488 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-55 *4 *5 *2)) (-4 *4 (-1120)) (-4 *5 (-348 *4)) (-4 *2 (-348 *4)))) (-3837 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-588 *3)))) (-2379 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1120)) (-4 *4 (-348 *2)) (-4 *5 (-348 *2)))) (-3854 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1120)) (-4 *4 (-348 *2)) (-4 *5 (-348 *2)))) (-2480 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-522)) (-4 *1 (-55 *4 *3 *5)) (-4 *4 (-1120)) (-4 *3 (-348 *4)) (-4 *5 (-348 *4)))) (-1888 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-522)) (-4 *1 (-55 *4 *5 *3)) (-4 *4 (-1120)) (-4 *5 (-348 *4)) (-4 *3 (-348 *4)))) (-3838 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1391 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1391 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))))
-(-13 (-461 |t#1|) (-10 -8 (-6 -4239) (-6 -4238) (-15 -1811 ($ (-708) (-708) |t#1|)) (-15 -2602 ($ $ |t#1|)) (-15 -2575 ((-522) $)) (-15 -3886 ((-522) $)) (-15 -1885 ((-522) $)) (-15 -4132 ((-522) $)) (-15 -1411 ((-708) $)) (-15 -1422 ((-708) $)) (-15 -2545 (|t#1| $ (-522) (-522))) (-15 -3631 (|t#1| $ (-522) (-522))) (-15 -2545 (|t#1| $ (-522) (-522) |t#1|)) (-15 -1860 (|t#2| $ (-522))) (-15 -3488 (|t#3| $ (-522))) (-15 -3837 ((-588 |t#1|) $)) (-15 -2379 (|t#1| $ (-522) (-522) |t#1|)) (-15 -3854 (|t#1| $ (-522) (-522) |t#1|)) (-15 -2480 ($ $ (-522) |t#2|)) (-15 -1888 ($ $ (-522) |t#3|)) (-15 -1391 ($ (-1 |t#1| |t#1|) $)) (-15 -3838 ($ (-1 |t#1| |t#1|) $)) (-15 -1391 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -1391 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-3690 (((-57 |#2|) (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|) 16)) (-3864 ((|#2| (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|) 18)) (-1391 (((-57 |#2|) (-1 |#2| |#1|) (-57 |#1|)) 13)))
-(((-56 |#1| |#2|) (-10 -7 (-15 -3690 ((-57 |#2|) (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -3864 (|#2| (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -1391 ((-57 |#2|) (-1 |#2| |#1|) (-57 |#1|)))) (-1120) (-1120)) (T -56))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-57 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-57 *6)) (-5 *1 (-56 *5 *6)))) (-3864 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-57 *5)) (-4 *5 (-1120)) (-4 *2 (-1120)) (-5 *1 (-56 *5 *2)))) (-3690 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-57 *6)) (-4 *6 (-1120)) (-4 *5 (-1120)) (-5 *2 (-57 *5)) (-5 *1 (-56 *6 *5)))))
-(-10 -7 (-15 -3690 ((-57 |#2|) (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -3864 (|#2| (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -1391 ((-57 |#2|) (-1 |#2| |#1|) (-57 |#1|))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-3537 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3216 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#1| $ (-522) |#1|) 11 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1423 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) NIL)) (-3238 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2180 (($ (-588 |#1|)) 13) (($ (-708) |#1|) 14)) (-1811 (($ (-708) |#1|) 9)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2160 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1661 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2294 ((|#1| $) NIL (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2602 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) 7)) (-2545 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-3696 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) NIL)) (-4165 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-57 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -2180 ($ (-588 |#1|))) (-15 -2180 ($ (-708) |#1|)))) (-1120)) (T -57))
-((-2180 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-57 *3)))) (-2180 (*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *1 (-57 *3)) (-4 *3 (-1120)))))
-(-13 (-19 |#1|) (-10 -8 (-15 -2180 ($ (-588 |#1|))) (-15 -2180 ($ (-708) |#1|))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#1| $ (-522) (-522) |#1|) NIL)) (-2480 (($ $ (-522) (-57 |#1|)) NIL)) (-1888 (($ $ (-522) (-57 |#1|)) NIL)) (-3175 (($) NIL T CONST)) (-1860 (((-57 |#1|) $ (-522)) NIL)) (-3854 ((|#1| $ (-522) (-522) |#1|) NIL)) (-3631 ((|#1| $ (-522) (-522)) NIL)) (-3837 (((-588 |#1|) $) NIL)) (-1411 (((-708) $) NIL)) (-1811 (($ (-708) (-708) |#1|) NIL)) (-1422 (((-708) $) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-2575 (((-522) $) NIL)) (-1885 (((-522) $) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3886 (((-522) $) NIL)) (-4132 (((-522) $) NIL)) (-3838 (($ (-1 |#1| |#1|) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2602 (($ $ |#1|) NIL)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ (-522) (-522)) NIL) ((|#1| $ (-522) (-522) |#1|) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-3488 (((-57 |#1|) $ (-522)) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1893 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-708)) (-4 *3 (-1120)) (-4 *1 (-55 *3 *4 *5)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1972 (*1 *1 *1 *2) (-12 (-4 *1 (-55 *2 *3 *4)) (-4 *2 (-1120)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-2604 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-522)))) (-1925 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-522)))) (-4042 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-522)))) (-2595 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-522)))) (-2949 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-708)))) (-2960 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-708)))) (-2683 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-1120)))) (-2186 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-1120)))) (-2683 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1120)) (-4 *4 (-348 *2)) (-4 *5 (-348 *2)))) (-2635 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-55 *4 *2 *5)) (-4 *4 (-1120)) (-4 *5 (-348 *4)) (-4 *2 (-348 *4)))) (-2223 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-55 *4 *5 *2)) (-4 *4 (-1120)) (-4 *5 (-348 *4)) (-4 *2 (-348 *4)))) (-2395 (*1 *2 *1) (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-588 *3)))) (-2437 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1120)) (-4 *4 (-348 *2)) (-4 *5 (-348 *2)))) (-2411 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1120)) (-4 *4 (-348 *2)) (-4 *5 (-348 *2)))) (-3074 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-522)) (-4 *1 (-55 *4 *3 *5)) (-4 *4 (-1120)) (-4 *3 (-348 *4)) (-4 *5 (-348 *4)))) (-4060 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-522)) (-4 *1 (-55 *4 *5 *3)) (-4 *4 (-1120)) (-4 *5 (-348 *4)) (-4 *3 (-348 *4)))) (-2397 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-3810 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-3810 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))))
+(-13 (-461 |t#1|) (-10 -8 (-6 -4239) (-6 -4238) (-15 -1893 ($ (-708) (-708) |t#1|)) (-15 -1972 ($ $ |t#1|)) (-15 -2604 ((-522) $)) (-15 -1925 ((-522) $)) (-15 -4042 ((-522) $)) (-15 -2595 ((-522) $)) (-15 -2949 ((-708) $)) (-15 -2960 ((-708) $)) (-15 -2683 (|t#1| $ (-522) (-522))) (-15 -2186 (|t#1| $ (-522) (-522))) (-15 -2683 (|t#1| $ (-522) (-522) |t#1|)) (-15 -2635 (|t#2| $ (-522))) (-15 -2223 (|t#3| $ (-522))) (-15 -2395 ((-588 |t#1|) $)) (-15 -2437 (|t#1| $ (-522) (-522) |t#1|)) (-15 -2411 (|t#1| $ (-522) (-522) |t#1|)) (-15 -3074 ($ $ (-522) |t#2|)) (-15 -4060 ($ $ (-522) |t#3|)) (-15 -3810 ($ (-1 |t#1| |t#1|) $)) (-15 -2397 ($ (-1 |t#1| |t#1|) $)) (-15 -3810 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -3810 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-3639 (((-57 |#2|) (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|) 16)) (-2153 ((|#2| (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|) 18)) (-3810 (((-57 |#2|) (-1 |#2| |#1|) (-57 |#1|)) 13)))
+(((-56 |#1| |#2|) (-10 -7 (-15 -3639 ((-57 |#2|) (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -2153 (|#2| (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -3810 ((-57 |#2|) (-1 |#2| |#1|) (-57 |#1|)))) (-1120) (-1120)) (T -56))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-57 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-57 *6)) (-5 *1 (-56 *5 *6)))) (-2153 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-57 *5)) (-4 *5 (-1120)) (-4 *2 (-1120)) (-5 *1 (-56 *5 *2)))) (-3639 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-57 *6)) (-4 *6 (-1120)) (-4 *5 (-1120)) (-5 *2 (-57 *5)) (-5 *1 (-56 *6 *5)))))
+(-10 -7 (-15 -3639 ((-57 |#2|) (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -2153 (|#2| (-1 |#2| |#1| |#2|) (-57 |#1|) |#2|)) (-15 -3810 ((-57 |#2|) (-1 |#2| |#1|) (-57 |#1|))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-2806 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3296 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#1| $ (-522) |#1|) 11 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1424 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) NIL)) (-3314 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-3307 (($ (-588 |#1|)) 13) (($ (-708) |#1|) 14)) (-1893 (($ (-708) |#1|) 9)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-3164 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1731 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2337 ((|#1| $) NIL (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1972 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) 7)) (-2683 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-3835 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) NIL)) (-4170 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-57 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -3307 ($ (-588 |#1|))) (-15 -3307 ($ (-708) |#1|)))) (-1120)) (T -57))
+((-3307 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-57 *3)))) (-3307 (*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *1 (-57 *3)) (-4 *3 (-1120)))))
+(-13 (-19 |#1|) (-10 -8 (-15 -3307 ($ (-588 |#1|))) (-15 -3307 ($ (-708) |#1|))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#1| $ (-522) (-522) |#1|) NIL)) (-3074 (($ $ (-522) (-57 |#1|)) NIL)) (-4060 (($ $ (-522) (-57 |#1|)) NIL)) (-3367 (($) NIL T CONST)) (-2635 (((-57 |#1|) $ (-522)) NIL)) (-2411 ((|#1| $ (-522) (-522) |#1|) NIL)) (-2186 ((|#1| $ (-522) (-522)) NIL)) (-2395 (((-588 |#1|) $) NIL)) (-2949 (((-708) $) NIL)) (-1893 (($ (-708) (-708) |#1|) NIL)) (-2960 (((-708) $) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-2604 (((-522) $) NIL)) (-4042 (((-522) $) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1925 (((-522) $) NIL)) (-2595 (((-522) $) NIL)) (-2397 (($ (-1 |#1| |#1|) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1972 (($ $ |#1|) NIL)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ (-522) (-522)) NIL) ((|#1| $ (-522) (-522) |#1|) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2223 (((-57 |#1|) $ (-522)) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-58 |#1|) (-13 (-55 |#1| (-57 |#1|) (-57 |#1|)) (-10 -7 (-6 -4239))) (-1120)) (T -58))
NIL
(-13 (-55 |#1| (-57 |#1|) (-57 |#1|)) (-10 -7 (-6 -4239)))
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 69) (((-3 $ "failed") (-1166 (-291 (-522)))) 58) (((-3 $ "failed") (-1166 (-881 (-354)))) 91) (((-3 $ "failed") (-1166 (-881 (-522)))) 80) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 47) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 36)) (-1484 (($ (-1166 (-291 (-354)))) 65) (($ (-1166 (-291 (-522)))) 54) (($ (-1166 (-881 (-354)))) 87) (($ (-1166 (-881 (-522)))) 76) (($ (-1166 (-382 (-881 (-354))))) 43) (($ (-1166 (-382 (-881 (-522))))) 29)) (-2009 (((-1171) $) 118)) (-2190 (((-792) $) 111) (($ (-588 (-305))) 100) (($ (-305)) 94) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 97) (($ (-1166 (-314 (-2201 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-2201) (-637)))) 28)))
-(((-59 |#1|) (-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-2201) (-637))))))) (-1085)) (T -59))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2201 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-2201) (-637)))) (-5 *1 (-59 *3)) (-14 *3 (-1085)))))
-(-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-2201) (-637)))))))
-((-2009 (((-1171) $) 48) (((-1171)) 49)) (-2190 (((-792) $) 45)))
-(((-60 |#1|) (-13 (-370) (-10 -7 (-15 -2009 ((-1171))))) (-1085)) (T -60))
-((-2009 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-60 *3)) (-14 *3 (-1085)))))
-(-13 (-370) (-10 -7 (-15 -2009 ((-1171)))))
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 142) (((-3 $ "failed") (-1166 (-291 (-522)))) 132) (((-3 $ "failed") (-1166 (-881 (-354)))) 163) (((-3 $ "failed") (-1166 (-881 (-522)))) 152) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 121) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 110)) (-1484 (($ (-1166 (-291 (-354)))) 138) (($ (-1166 (-291 (-522)))) 128) (($ (-1166 (-881 (-354)))) 159) (($ (-1166 (-881 (-522)))) 148) (($ (-1166 (-382 (-881 (-354))))) 117) (($ (-1166 (-382 (-881 (-522))))) 103)) (-2009 (((-1171) $) 96)) (-2190 (((-792) $) 90) (($ (-588 (-305))) 28) (($ (-305)) 34) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 31) (($ (-1166 (-314 (-2201) (-2201 (QUOTE XC)) (-637)))) 88)))
-(((-61 |#1|) (-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201) (-2201 (QUOTE XC)) (-637))))))) (-1085)) (T -61))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2201) (-2201 (QUOTE XC)) (-637)))) (-5 *1 (-61 *3)) (-14 *3 (-1085)))))
-(-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201) (-2201 (QUOTE XC)) (-637)))))))
-((-1297 (((-3 $ "failed") (-291 (-354))) 36) (((-3 $ "failed") (-291 (-522))) 41) (((-3 $ "failed") (-881 (-354))) 46) (((-3 $ "failed") (-881 (-522))) 51) (((-3 $ "failed") (-382 (-881 (-354)))) 31) (((-3 $ "failed") (-382 (-881 (-522)))) 26)) (-1484 (($ (-291 (-354))) 34) (($ (-291 (-522))) 39) (($ (-881 (-354))) 44) (($ (-881 (-522))) 49) (($ (-382 (-881 (-354)))) 29) (($ (-382 (-881 (-522)))) 23)) (-2009 (((-1171) $) 73)) (-2190 (((-792) $) 66) (($ (-588 (-305))) 57) (($ (-305)) 63) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 60) (($ (-314 (-2201 (QUOTE X)) (-2201) (-637))) 22)))
-(((-62 |#1|) (-13 (-371) (-10 -8 (-15 -2190 ($ (-314 (-2201 (QUOTE X)) (-2201) (-637)))))) (-1085)) (T -62))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-314 (-2201 (QUOTE X)) (-2201) (-637))) (-5 *1 (-62 *3)) (-14 *3 (-1085)))))
-(-13 (-371) (-10 -8 (-15 -2190 ($ (-314 (-2201 (QUOTE X)) (-2201) (-637))))))
-((-1297 (((-3 $ "failed") (-628 (-291 (-354)))) 100) (((-3 $ "failed") (-628 (-291 (-522)))) 89) (((-3 $ "failed") (-628 (-881 (-354)))) 122) (((-3 $ "failed") (-628 (-881 (-522)))) 111) (((-3 $ "failed") (-628 (-382 (-881 (-354))))) 78) (((-3 $ "failed") (-628 (-382 (-881 (-522))))) 67)) (-1484 (($ (-628 (-291 (-354)))) 96) (($ (-628 (-291 (-522)))) 85) (($ (-628 (-881 (-354)))) 118) (($ (-628 (-881 (-522)))) 107) (($ (-628 (-382 (-881 (-354))))) 74) (($ (-628 (-382 (-881 (-522))))) 60)) (-2009 (((-1171) $) 130)) (-2190 (((-792) $) 124) (($ (-588 (-305))) 27) (($ (-305)) 33) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 30) (($ (-628 (-314 (-2201) (-2201 (QUOTE X) (QUOTE HESS)) (-637)))) 53)))
-(((-63 |#1|) (-13 (-359) (-10 -8 (-15 -2190 ($ (-628 (-314 (-2201) (-2201 (QUOTE X) (QUOTE HESS)) (-637))))))) (-1085)) (T -63))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-628 (-314 (-2201) (-2201 (QUOTE X) (QUOTE HESS)) (-637)))) (-5 *1 (-63 *3)) (-14 *3 (-1085)))))
-(-13 (-359) (-10 -8 (-15 -2190 ($ (-628 (-314 (-2201) (-2201 (QUOTE X) (QUOTE HESS)) (-637)))))))
-((-1297 (((-3 $ "failed") (-291 (-354))) 54) (((-3 $ "failed") (-291 (-522))) 59) (((-3 $ "failed") (-881 (-354))) 64) (((-3 $ "failed") (-881 (-522))) 69) (((-3 $ "failed") (-382 (-881 (-354)))) 49) (((-3 $ "failed") (-382 (-881 (-522)))) 44)) (-1484 (($ (-291 (-354))) 52) (($ (-291 (-522))) 57) (($ (-881 (-354))) 62) (($ (-881 (-522))) 67) (($ (-382 (-881 (-354)))) 47) (($ (-382 (-881 (-522)))) 41)) (-2009 (((-1171) $) 78)) (-2190 (((-792) $) 72) (($ (-588 (-305))) 27) (($ (-305)) 33) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 30) (($ (-314 (-2201) (-2201 (QUOTE XC)) (-637))) 38)))
-(((-64 |#1|) (-13 (-371) (-10 -8 (-15 -2190 ($ (-314 (-2201) (-2201 (QUOTE XC)) (-637)))))) (-1085)) (T -64))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-314 (-2201) (-2201 (QUOTE XC)) (-637))) (-5 *1 (-64 *3)) (-14 *3 (-1085)))))
-(-13 (-371) (-10 -8 (-15 -2190 ($ (-314 (-2201) (-2201 (QUOTE XC)) (-637))))))
-((-2009 (((-1171) $) 63)) (-2190 (((-792) $) 57) (($ (-628 (-637))) 49) (($ (-588 (-305))) 48) (($ (-305)) 55) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 53)))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 69) (((-3 $ "failed") (-1166 (-291 (-522)))) 58) (((-3 $ "failed") (-1166 (-881 (-354)))) 91) (((-3 $ "failed") (-1166 (-881 (-522)))) 80) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 47) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 36)) (-1478 (($ (-1166 (-291 (-354)))) 65) (($ (-1166 (-291 (-522)))) 54) (($ (-1166 (-881 (-354)))) 87) (($ (-1166 (-881 (-522)))) 76) (($ (-1166 (-382 (-881 (-354))))) 43) (($ (-1166 (-382 (-881 (-522))))) 29)) (-2550 (((-1171) $) 118)) (-2217 (((-792) $) 111) (($ (-588 (-305))) 100) (($ (-305)) 94) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 97) (($ (-1166 (-314 (-2227 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-2227) (-637)))) 28)))
+(((-59 |#1|) (-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-2227) (-637))))))) (-1085)) (T -59))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2227 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-2227) (-637)))) (-5 *1 (-59 *3)) (-14 *3 (-1085)))))
+(-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-2227) (-637)))))))
+((-2550 (((-1171) $) 48) (((-1171)) 49)) (-2217 (((-792) $) 45)))
+(((-60 |#1|) (-13 (-370) (-10 -7 (-15 -2550 ((-1171))))) (-1085)) (T -60))
+((-2550 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-60 *3)) (-14 *3 (-1085)))))
+(-13 (-370) (-10 -7 (-15 -2550 ((-1171)))))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 142) (((-3 $ "failed") (-1166 (-291 (-522)))) 132) (((-3 $ "failed") (-1166 (-881 (-354)))) 163) (((-3 $ "failed") (-1166 (-881 (-522)))) 152) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 121) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 110)) (-1478 (($ (-1166 (-291 (-354)))) 138) (($ (-1166 (-291 (-522)))) 128) (($ (-1166 (-881 (-354)))) 159) (($ (-1166 (-881 (-522)))) 148) (($ (-1166 (-382 (-881 (-354))))) 117) (($ (-1166 (-382 (-881 (-522))))) 103)) (-2550 (((-1171) $) 96)) (-2217 (((-792) $) 90) (($ (-588 (-305))) 28) (($ (-305)) 34) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 31) (($ (-1166 (-314 (-2227) (-2227 (QUOTE XC)) (-637)))) 88)))
+(((-61 |#1|) (-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227) (-2227 (QUOTE XC)) (-637))))))) (-1085)) (T -61))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2227) (-2227 (QUOTE XC)) (-637)))) (-5 *1 (-61 *3)) (-14 *3 (-1085)))))
+(-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227) (-2227 (QUOTE XC)) (-637)))))))
+((-3700 (((-3 $ "failed") (-291 (-354))) 36) (((-3 $ "failed") (-291 (-522))) 41) (((-3 $ "failed") (-881 (-354))) 46) (((-3 $ "failed") (-881 (-522))) 51) (((-3 $ "failed") (-382 (-881 (-354)))) 31) (((-3 $ "failed") (-382 (-881 (-522)))) 26)) (-1478 (($ (-291 (-354))) 34) (($ (-291 (-522))) 39) (($ (-881 (-354))) 44) (($ (-881 (-522))) 49) (($ (-382 (-881 (-354)))) 29) (($ (-382 (-881 (-522)))) 23)) (-2550 (((-1171) $) 73)) (-2217 (((-792) $) 66) (($ (-588 (-305))) 57) (($ (-305)) 63) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 60) (($ (-314 (-2227 (QUOTE X)) (-2227) (-637))) 22)))
+(((-62 |#1|) (-13 (-371) (-10 -8 (-15 -2217 ($ (-314 (-2227 (QUOTE X)) (-2227) (-637)))))) (-1085)) (T -62))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-314 (-2227 (QUOTE X)) (-2227) (-637))) (-5 *1 (-62 *3)) (-14 *3 (-1085)))))
+(-13 (-371) (-10 -8 (-15 -2217 ($ (-314 (-2227 (QUOTE X)) (-2227) (-637))))))
+((-3700 (((-3 $ "failed") (-628 (-291 (-354)))) 100) (((-3 $ "failed") (-628 (-291 (-522)))) 89) (((-3 $ "failed") (-628 (-881 (-354)))) 122) (((-3 $ "failed") (-628 (-881 (-522)))) 111) (((-3 $ "failed") (-628 (-382 (-881 (-354))))) 78) (((-3 $ "failed") (-628 (-382 (-881 (-522))))) 67)) (-1478 (($ (-628 (-291 (-354)))) 96) (($ (-628 (-291 (-522)))) 85) (($ (-628 (-881 (-354)))) 118) (($ (-628 (-881 (-522)))) 107) (($ (-628 (-382 (-881 (-354))))) 74) (($ (-628 (-382 (-881 (-522))))) 60)) (-2550 (((-1171) $) 130)) (-2217 (((-792) $) 124) (($ (-588 (-305))) 27) (($ (-305)) 33) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 30) (($ (-628 (-314 (-2227) (-2227 (QUOTE X) (QUOTE HESS)) (-637)))) 53)))
+(((-63 |#1|) (-13 (-359) (-10 -8 (-15 -2217 ($ (-628 (-314 (-2227) (-2227 (QUOTE X) (QUOTE HESS)) (-637))))))) (-1085)) (T -63))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-628 (-314 (-2227) (-2227 (QUOTE X) (QUOTE HESS)) (-637)))) (-5 *1 (-63 *3)) (-14 *3 (-1085)))))
+(-13 (-359) (-10 -8 (-15 -2217 ($ (-628 (-314 (-2227) (-2227 (QUOTE X) (QUOTE HESS)) (-637)))))))
+((-3700 (((-3 $ "failed") (-291 (-354))) 54) (((-3 $ "failed") (-291 (-522))) 59) (((-3 $ "failed") (-881 (-354))) 64) (((-3 $ "failed") (-881 (-522))) 69) (((-3 $ "failed") (-382 (-881 (-354)))) 49) (((-3 $ "failed") (-382 (-881 (-522)))) 44)) (-1478 (($ (-291 (-354))) 52) (($ (-291 (-522))) 57) (($ (-881 (-354))) 62) (($ (-881 (-522))) 67) (($ (-382 (-881 (-354)))) 47) (($ (-382 (-881 (-522)))) 41)) (-2550 (((-1171) $) 78)) (-2217 (((-792) $) 72) (($ (-588 (-305))) 27) (($ (-305)) 33) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 30) (($ (-314 (-2227) (-2227 (QUOTE XC)) (-637))) 38)))
+(((-64 |#1|) (-13 (-371) (-10 -8 (-15 -2217 ($ (-314 (-2227) (-2227 (QUOTE XC)) (-637)))))) (-1085)) (T -64))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-314 (-2227) (-2227 (QUOTE XC)) (-637))) (-5 *1 (-64 *3)) (-14 *3 (-1085)))))
+(-13 (-371) (-10 -8 (-15 -2217 ($ (-314 (-2227) (-2227 (QUOTE XC)) (-637))))))
+((-2550 (((-1171) $) 63)) (-2217 (((-792) $) 57) (($ (-628 (-637))) 49) (($ (-588 (-305))) 48) (($ (-305)) 55) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 53)))
(((-65 |#1|) (-358) (-1085)) (T -65))
NIL
(-358)
-((-2009 (((-1171) $) 64)) (-2190 (((-792) $) 58) (($ (-628 (-637))) 50) (($ (-588 (-305))) 49) (($ (-305)) 52) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 55)))
+((-2550 (((-1171) $) 64)) (-2217 (((-792) $) 58) (($ (-628 (-637))) 50) (($ (-588 (-305))) 49) (($ (-305)) 52) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 55)))
(((-66 |#1|) (-358) (-1085)) (T -66))
NIL
(-358)
-((-2009 (((-1171) $) NIL) (((-1171)) 32)) (-2190 (((-792) $) NIL)))
-(((-67 |#1|) (-13 (-370) (-10 -7 (-15 -2009 ((-1171))))) (-1085)) (T -67))
-((-2009 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-67 *3)) (-14 *3 (-1085)))))
-(-13 (-370) (-10 -7 (-15 -2009 ((-1171)))))
-((-2009 (((-1171) $) 68)) (-2190 (((-792) $) 62) (($ (-628 (-637))) 53) (($ (-588 (-305))) 56) (($ (-305)) 59) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 52)))
+((-2550 (((-1171) $) NIL) (((-1171)) 32)) (-2217 (((-792) $) NIL)))
+(((-67 |#1|) (-13 (-370) (-10 -7 (-15 -2550 ((-1171))))) (-1085)) (T -67))
+((-2550 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-67 *3)) (-14 *3 (-1085)))))
+(-13 (-370) (-10 -7 (-15 -2550 ((-1171)))))
+((-2550 (((-1171) $) 68)) (-2217 (((-792) $) 62) (($ (-628 (-637))) 53) (($ (-588 (-305))) 56) (($ (-305)) 59) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 52)))
(((-68 |#1|) (-358) (-1085)) (T -68))
NIL
(-358)
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 98) (((-3 $ "failed") (-1166 (-291 (-522)))) 87) (((-3 $ "failed") (-1166 (-881 (-354)))) 119) (((-3 $ "failed") (-1166 (-881 (-522)))) 108) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 76) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 65)) (-1484 (($ (-1166 (-291 (-354)))) 94) (($ (-1166 (-291 (-522)))) 83) (($ (-1166 (-881 (-354)))) 115) (($ (-1166 (-881 (-522)))) 104) (($ (-1166 (-382 (-881 (-354))))) 72) (($ (-1166 (-382 (-881 (-522))))) 58)) (-2009 (((-1171) $) 133)) (-2190 (((-792) $) 127) (($ (-588 (-305))) 122) (($ (-305)) 125) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 50) (($ (-1166 (-314 (-2201 (QUOTE X)) (-2201 (QUOTE -1352)) (-637)))) 51)))
-(((-69 |#1|) (-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE X)) (-2201 (QUOTE -1352)) (-637))))))) (-1085)) (T -69))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2201 (QUOTE X)) (-2201 (QUOTE -1352)) (-637)))) (-5 *1 (-69 *3)) (-14 *3 (-1085)))))
-(-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE X)) (-2201 (QUOTE -1352)) (-637)))))))
-((-2009 (((-1171) $) 32) (((-1171)) 31)) (-2190 (((-792) $) 35)))
-(((-70 |#1|) (-13 (-370) (-10 -7 (-15 -2009 ((-1171))))) (-1085)) (T -70))
-((-2009 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-70 *3)) (-14 *3 (-1085)))))
-(-13 (-370) (-10 -7 (-15 -2009 ((-1171)))))
-((-2009 (((-1171) $) 62)) (-2190 (((-792) $) 56) (($ (-628 (-637))) 47) (($ (-588 (-305))) 50) (($ (-305)) 53) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 46)))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 98) (((-3 $ "failed") (-1166 (-291 (-522)))) 87) (((-3 $ "failed") (-1166 (-881 (-354)))) 119) (((-3 $ "failed") (-1166 (-881 (-522)))) 108) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 76) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 65)) (-1478 (($ (-1166 (-291 (-354)))) 94) (($ (-1166 (-291 (-522)))) 83) (($ (-1166 (-881 (-354)))) 115) (($ (-1166 (-881 (-522)))) 104) (($ (-1166 (-382 (-881 (-354))))) 72) (($ (-1166 (-382 (-881 (-522))))) 58)) (-2550 (((-1171) $) 133)) (-2217 (((-792) $) 127) (($ (-588 (-305))) 122) (($ (-305)) 125) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 50) (($ (-1166 (-314 (-2227 (QUOTE X)) (-2227 (QUOTE -1330)) (-637)))) 51)))
+(((-69 |#1|) (-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE X)) (-2227 (QUOTE -1330)) (-637))))))) (-1085)) (T -69))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2227 (QUOTE X)) (-2227 (QUOTE -1330)) (-637)))) (-5 *1 (-69 *3)) (-14 *3 (-1085)))))
+(-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE X)) (-2227 (QUOTE -1330)) (-637)))))))
+((-2550 (((-1171) $) 32) (((-1171)) 31)) (-2217 (((-792) $) 35)))
+(((-70 |#1|) (-13 (-370) (-10 -7 (-15 -2550 ((-1171))))) (-1085)) (T -70))
+((-2550 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-70 *3)) (-14 *3 (-1085)))))
+(-13 (-370) (-10 -7 (-15 -2550 ((-1171)))))
+((-2550 (((-1171) $) 62)) (-2217 (((-792) $) 56) (($ (-628 (-637))) 47) (($ (-588 (-305))) 50) (($ (-305)) 53) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 46)))
(((-71 |#1|) (-358) (-1085)) (T -71))
NIL
(-358)
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 119) (((-3 $ "failed") (-1166 (-291 (-522)))) 108) (((-3 $ "failed") (-1166 (-881 (-354)))) 141) (((-3 $ "failed") (-1166 (-881 (-522)))) 130) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 98) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 87)) (-1484 (($ (-1166 (-291 (-354)))) 115) (($ (-1166 (-291 (-522)))) 104) (($ (-1166 (-881 (-354)))) 137) (($ (-1166 (-881 (-522)))) 126) (($ (-1166 (-382 (-881 (-354))))) 94) (($ (-1166 (-382 (-881 (-522))))) 80)) (-2009 (((-1171) $) 73)) (-2190 (((-792) $) 27) (($ (-588 (-305))) 63) (($ (-305)) 59) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 66) (($ (-1166 (-314 (-2201) (-2201 (QUOTE X)) (-637)))) 60)))
-(((-72 |#1|) (-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201) (-2201 (QUOTE X)) (-637))))))) (-1085)) (T -72))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2201) (-2201 (QUOTE X)) (-637)))) (-5 *1 (-72 *3)) (-14 *3 (-1085)))))
-(-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201) (-2201 (QUOTE X)) (-637)))))))
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 125) (((-3 $ "failed") (-1166 (-291 (-522)))) 114) (((-3 $ "failed") (-1166 (-881 (-354)))) 147) (((-3 $ "failed") (-1166 (-881 (-522)))) 136) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 103) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 92)) (-1484 (($ (-1166 (-291 (-354)))) 121) (($ (-1166 (-291 (-522)))) 110) (($ (-1166 (-881 (-354)))) 143) (($ (-1166 (-881 (-522)))) 132) (($ (-1166 (-382 (-881 (-354))))) 99) (($ (-1166 (-382 (-881 (-522))))) 85)) (-2009 (((-1171) $) 78)) (-2190 (((-792) $) 70) (($ (-588 (-305))) NIL) (($ (-305)) NIL) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) NIL) (($ (-1166 (-314 (-2201 (QUOTE X) (QUOTE EPS)) (-2201 (QUOTE -1352)) (-637)))) 65)))
-(((-73 |#1| |#2| |#3|) (-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE X) (QUOTE EPS)) (-2201 (QUOTE -1352)) (-637))))))) (-1085) (-1085) (-1085)) (T -73))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2201 (QUOTE X) (QUOTE EPS)) (-2201 (QUOTE -1352)) (-637)))) (-5 *1 (-73 *3 *4 *5)) (-14 *3 (-1085)) (-14 *4 (-1085)) (-14 *5 (-1085)))))
-(-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE X) (QUOTE EPS)) (-2201 (QUOTE -1352)) (-637)))))))
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 129) (((-3 $ "failed") (-1166 (-291 (-522)))) 118) (((-3 $ "failed") (-1166 (-881 (-354)))) 151) (((-3 $ "failed") (-1166 (-881 (-522)))) 140) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 107) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 96)) (-1484 (($ (-1166 (-291 (-354)))) 125) (($ (-1166 (-291 (-522)))) 114) (($ (-1166 (-881 (-354)))) 147) (($ (-1166 (-881 (-522)))) 136) (($ (-1166 (-382 (-881 (-354))))) 103) (($ (-1166 (-382 (-881 (-522))))) 89)) (-2009 (((-1171) $) 82)) (-2190 (((-792) $) 74) (($ (-588 (-305))) NIL) (($ (-305)) NIL) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) NIL) (($ (-1166 (-314 (-2201 (QUOTE EPS)) (-2201 (QUOTE YA) (QUOTE YB)) (-637)))) 69)))
-(((-74 |#1| |#2| |#3|) (-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE EPS)) (-2201 (QUOTE YA) (QUOTE YB)) (-637))))))) (-1085) (-1085) (-1085)) (T -74))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2201 (QUOTE EPS)) (-2201 (QUOTE YA) (QUOTE YB)) (-637)))) (-5 *1 (-74 *3 *4 *5)) (-14 *3 (-1085)) (-14 *4 (-1085)) (-14 *5 (-1085)))))
-(-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE EPS)) (-2201 (QUOTE YA) (QUOTE YB)) (-637)))))))
-((-1297 (((-3 $ "failed") (-291 (-354))) 77) (((-3 $ "failed") (-291 (-522))) 82) (((-3 $ "failed") (-881 (-354))) 87) (((-3 $ "failed") (-881 (-522))) 92) (((-3 $ "failed") (-382 (-881 (-354)))) 72) (((-3 $ "failed") (-382 (-881 (-522)))) 67)) (-1484 (($ (-291 (-354))) 75) (($ (-291 (-522))) 80) (($ (-881 (-354))) 85) (($ (-881 (-522))) 90) (($ (-382 (-881 (-354)))) 70) (($ (-382 (-881 (-522)))) 64)) (-2009 (((-1171) $) 61)) (-2190 (((-792) $) 49) (($ (-588 (-305))) 45) (($ (-305)) 55) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 53) (($ (-314 (-2201) (-2201 (QUOTE X)) (-637))) 46)))
-(((-75 |#1|) (-13 (-371) (-10 -8 (-15 -2190 ($ (-314 (-2201) (-2201 (QUOTE X)) (-637)))))) (-1085)) (T -75))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-314 (-2201) (-2201 (QUOTE X)) (-637))) (-5 *1 (-75 *3)) (-14 *3 (-1085)))))
-(-13 (-371) (-10 -8 (-15 -2190 ($ (-314 (-2201) (-2201 (QUOTE X)) (-637))))))
-((-1297 (((-3 $ "failed") (-291 (-354))) 41) (((-3 $ "failed") (-291 (-522))) 46) (((-3 $ "failed") (-881 (-354))) 51) (((-3 $ "failed") (-881 (-522))) 56) (((-3 $ "failed") (-382 (-881 (-354)))) 36) (((-3 $ "failed") (-382 (-881 (-522)))) 31)) (-1484 (($ (-291 (-354))) 39) (($ (-291 (-522))) 44) (($ (-881 (-354))) 49) (($ (-881 (-522))) 54) (($ (-382 (-881 (-354)))) 34) (($ (-382 (-881 (-522)))) 28)) (-2009 (((-1171) $) 77)) (-2190 (((-792) $) 71) (($ (-588 (-305))) 62) (($ (-305)) 68) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 65) (($ (-314 (-2201) (-2201 (QUOTE X)) (-637))) 27)))
-(((-76 |#1|) (-13 (-371) (-10 -8 (-15 -2190 ($ (-314 (-2201) (-2201 (QUOTE X)) (-637)))))) (-1085)) (T -76))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-314 (-2201) (-2201 (QUOTE X)) (-637))) (-5 *1 (-76 *3)) (-14 *3 (-1085)))))
-(-13 (-371) (-10 -8 (-15 -2190 ($ (-314 (-2201) (-2201 (QUOTE X)) (-637))))))
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 84) (((-3 $ "failed") (-1166 (-291 (-522)))) 73) (((-3 $ "failed") (-1166 (-881 (-354)))) 106) (((-3 $ "failed") (-1166 (-881 (-522)))) 95) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 62) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 51)) (-1484 (($ (-1166 (-291 (-354)))) 80) (($ (-1166 (-291 (-522)))) 69) (($ (-1166 (-881 (-354)))) 102) (($ (-1166 (-881 (-522)))) 91) (($ (-1166 (-382 (-881 (-354))))) 58) (($ (-1166 (-382 (-881 (-522))))) 44)) (-2009 (((-1171) $) 122)) (-2190 (((-792) $) 116) (($ (-588 (-305))) 109) (($ (-305)) 36) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 112) (($ (-1166 (-314 (-2201) (-2201 (QUOTE XC)) (-637)))) 37)))
-(((-77 |#1|) (-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201) (-2201 (QUOTE XC)) (-637))))))) (-1085)) (T -77))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2201) (-2201 (QUOTE XC)) (-637)))) (-5 *1 (-77 *3)) (-14 *3 (-1085)))))
-(-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201) (-2201 (QUOTE XC)) (-637)))))))
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 137) (((-3 $ "failed") (-1166 (-291 (-522)))) 126) (((-3 $ "failed") (-1166 (-881 (-354)))) 158) (((-3 $ "failed") (-1166 (-881 (-522)))) 147) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 116) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 105)) (-1484 (($ (-1166 (-291 (-354)))) 133) (($ (-1166 (-291 (-522)))) 122) (($ (-1166 (-881 (-354)))) 154) (($ (-1166 (-881 (-522)))) 143) (($ (-1166 (-382 (-881 (-354))))) 112) (($ (-1166 (-382 (-881 (-522))))) 98)) (-2009 (((-1171) $) 91)) (-2190 (((-792) $) 85) (($ (-588 (-305))) 76) (($ (-305)) 83) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 81) (($ (-1166 (-314 (-2201) (-2201 (QUOTE X)) (-637)))) 77)))
-(((-78 |#1|) (-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201) (-2201 (QUOTE X)) (-637))))))) (-1085)) (T -78))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2201) (-2201 (QUOTE X)) (-637)))) (-5 *1 (-78 *3)) (-14 *3 (-1085)))))
-(-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201) (-2201 (QUOTE X)) (-637)))))))
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 73) (((-3 $ "failed") (-1166 (-291 (-522)))) 62) (((-3 $ "failed") (-1166 (-881 (-354)))) 95) (((-3 $ "failed") (-1166 (-881 (-522)))) 84) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 51) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 40)) (-1484 (($ (-1166 (-291 (-354)))) 69) (($ (-1166 (-291 (-522)))) 58) (($ (-1166 (-881 (-354)))) 91) (($ (-1166 (-881 (-522)))) 80) (($ (-1166 (-382 (-881 (-354))))) 47) (($ (-1166 (-382 (-881 (-522))))) 33)) (-2009 (((-1171) $) 121)) (-2190 (((-792) $) 115) (($ (-588 (-305))) 106) (($ (-305)) 112) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 110) (($ (-1166 (-314 (-2201) (-2201 (QUOTE X)) (-637)))) 32)))
-(((-79 |#1|) (-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201) (-2201 (QUOTE X)) (-637))))))) (-1085)) (T -79))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2201) (-2201 (QUOTE X)) (-637)))) (-5 *1 (-79 *3)) (-14 *3 (-1085)))))
-(-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201) (-2201 (QUOTE X)) (-637)))))))
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 90) (((-3 $ "failed") (-1166 (-291 (-522)))) 79) (((-3 $ "failed") (-1166 (-881 (-354)))) 112) (((-3 $ "failed") (-1166 (-881 (-522)))) 101) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 68) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 57)) (-1484 (($ (-1166 (-291 (-354)))) 86) (($ (-1166 (-291 (-522)))) 75) (($ (-1166 (-881 (-354)))) 108) (($ (-1166 (-881 (-522)))) 97) (($ (-1166 (-382 (-881 (-354))))) 64) (($ (-1166 (-382 (-881 (-522))))) 50)) (-2009 (((-1171) $) 43)) (-2190 (((-792) $) 36) (($ (-588 (-305))) 26) (($ (-305)) 29) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 32) (($ (-1166 (-314 (-2201 (QUOTE X) (QUOTE -1352)) (-2201) (-637)))) 27)))
-(((-80 |#1|) (-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE X) (QUOTE -1352)) (-2201) (-637))))))) (-1085)) (T -80))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2201 (QUOTE X) (QUOTE -1352)) (-2201) (-637)))) (-5 *1 (-80 *3)) (-14 *3 (-1085)))))
-(-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE X) (QUOTE -1352)) (-2201) (-637)))))))
-((-1297 (((-3 $ "failed") (-628 (-291 (-354)))) 103) (((-3 $ "failed") (-628 (-291 (-522)))) 92) (((-3 $ "failed") (-628 (-881 (-354)))) 125) (((-3 $ "failed") (-628 (-881 (-522)))) 114) (((-3 $ "failed") (-628 (-382 (-881 (-354))))) 82) (((-3 $ "failed") (-628 (-382 (-881 (-522))))) 71)) (-1484 (($ (-628 (-291 (-354)))) 99) (($ (-628 (-291 (-522)))) 88) (($ (-628 (-881 (-354)))) 121) (($ (-628 (-881 (-522)))) 110) (($ (-628 (-382 (-881 (-354))))) 78) (($ (-628 (-382 (-881 (-522))))) 64)) (-2009 (((-1171) $) 57)) (-2190 (((-792) $) 43) (($ (-588 (-305))) 50) (($ (-305)) 39) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 47) (($ (-628 (-314 (-2201 (QUOTE X) (QUOTE -1352)) (-2201) (-637)))) 40)))
-(((-81 |#1|) (-13 (-359) (-10 -8 (-15 -2190 ($ (-628 (-314 (-2201 (QUOTE X) (QUOTE -1352)) (-2201) (-637))))))) (-1085)) (T -81))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-628 (-314 (-2201 (QUOTE X) (QUOTE -1352)) (-2201) (-637)))) (-5 *1 (-81 *3)) (-14 *3 (-1085)))))
-(-13 (-359) (-10 -8 (-15 -2190 ($ (-628 (-314 (-2201 (QUOTE X) (QUOTE -1352)) (-2201) (-637)))))))
-((-1297 (((-3 $ "failed") (-628 (-291 (-354)))) 103) (((-3 $ "failed") (-628 (-291 (-522)))) 92) (((-3 $ "failed") (-628 (-881 (-354)))) 124) (((-3 $ "failed") (-628 (-881 (-522)))) 113) (((-3 $ "failed") (-628 (-382 (-881 (-354))))) 81) (((-3 $ "failed") (-628 (-382 (-881 (-522))))) 70)) (-1484 (($ (-628 (-291 (-354)))) 99) (($ (-628 (-291 (-522)))) 88) (($ (-628 (-881 (-354)))) 120) (($ (-628 (-881 (-522)))) 109) (($ (-628 (-382 (-881 (-354))))) 77) (($ (-628 (-382 (-881 (-522))))) 63)) (-2009 (((-1171) $) 56)) (-2190 (((-792) $) 50) (($ (-588 (-305))) 44) (($ (-305)) 47) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 40) (($ (-628 (-314 (-2201 (QUOTE X)) (-2201) (-637)))) 41)))
-(((-82 |#1|) (-13 (-359) (-10 -8 (-15 -2190 ($ (-628 (-314 (-2201 (QUOTE X)) (-2201) (-637))))))) (-1085)) (T -82))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-628 (-314 (-2201 (QUOTE X)) (-2201) (-637)))) (-5 *1 (-82 *3)) (-14 *3 (-1085)))))
-(-13 (-359) (-10 -8 (-15 -2190 ($ (-628 (-314 (-2201 (QUOTE X)) (-2201) (-637)))))))
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 99) (((-3 $ "failed") (-1166 (-291 (-522)))) 88) (((-3 $ "failed") (-1166 (-881 (-354)))) 121) (((-3 $ "failed") (-1166 (-881 (-522)))) 110) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 77) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 66)) (-1484 (($ (-1166 (-291 (-354)))) 95) (($ (-1166 (-291 (-522)))) 84) (($ (-1166 (-881 (-354)))) 117) (($ (-1166 (-881 (-522)))) 106) (($ (-1166 (-382 (-881 (-354))))) 73) (($ (-1166 (-382 (-881 (-522))))) 59)) (-2009 (((-1171) $) 45)) (-2190 (((-792) $) 39) (($ (-588 (-305))) 48) (($ (-305)) 35) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 51) (($ (-1166 (-314 (-2201 (QUOTE X)) (-2201) (-637)))) 36)))
-(((-83 |#1|) (-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE X)) (-2201) (-637))))))) (-1085)) (T -83))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2201 (QUOTE X)) (-2201) (-637)))) (-5 *1 (-83 *3)) (-14 *3 (-1085)))))
-(-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE X)) (-2201) (-637)))))))
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 74) (((-3 $ "failed") (-1166 (-291 (-522)))) 63) (((-3 $ "failed") (-1166 (-881 (-354)))) 96) (((-3 $ "failed") (-1166 (-881 (-522)))) 85) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 52) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 41)) (-1484 (($ (-1166 (-291 (-354)))) 70) (($ (-1166 (-291 (-522)))) 59) (($ (-1166 (-881 (-354)))) 92) (($ (-1166 (-881 (-522)))) 81) (($ (-1166 (-382 (-881 (-354))))) 48) (($ (-1166 (-382 (-881 (-522))))) 34)) (-2009 (((-1171) $) 122)) (-2190 (((-792) $) 116) (($ (-588 (-305))) 107) (($ (-305)) 113) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 111) (($ (-1166 (-314 (-2201 (QUOTE X)) (-2201 (QUOTE -1352)) (-637)))) 33)))
-(((-84 |#1|) (-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE X)) (-2201 (QUOTE -1352)) (-637))))))) (-1085)) (T -84))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2201 (QUOTE X)) (-2201 (QUOTE -1352)) (-637)))) (-5 *1 (-84 *3)) (-14 *3 (-1085)))))
-(-13 (-415) (-10 -8 (-15 -2190 ($ (-1166 (-314 (-2201 (QUOTE X)) (-2201 (QUOTE -1352)) (-637)))))))
-((-1297 (((-3 $ "failed") (-628 (-291 (-354)))) 105) (((-3 $ "failed") (-628 (-291 (-522)))) 94) (((-3 $ "failed") (-628 (-881 (-354)))) 127) (((-3 $ "failed") (-628 (-881 (-522)))) 116) (((-3 $ "failed") (-628 (-382 (-881 (-354))))) 83) (((-3 $ "failed") (-628 (-382 (-881 (-522))))) 72)) (-1484 (($ (-628 (-291 (-354)))) 101) (($ (-628 (-291 (-522)))) 90) (($ (-628 (-881 (-354)))) 123) (($ (-628 (-881 (-522)))) 112) (($ (-628 (-382 (-881 (-354))))) 79) (($ (-628 (-382 (-881 (-522))))) 65)) (-2009 (((-1171) $) 58)) (-2190 (((-792) $) 52) (($ (-588 (-305))) 42) (($ (-305)) 49) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 47) (($ (-628 (-314 (-2201 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-2201) (-637)))) 43)))
-(((-85 |#1|) (-13 (-359) (-10 -8 (-15 -2190 ($ (-628 (-314 (-2201 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-2201) (-637))))))) (-1085)) (T -85))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-628 (-314 (-2201 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-2201) (-637)))) (-5 *1 (-85 *3)) (-14 *3 (-1085)))))
-(-13 (-359) (-10 -8 (-15 -2190 ($ (-628 (-314 (-2201 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-2201) (-637)))))))
-((-2009 (((-1171) $) 44)) (-2190 (((-792) $) 38) (($ (-1166 (-637))) 88) (($ (-588 (-305))) 29) (($ (-305)) 35) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 32)))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 119) (((-3 $ "failed") (-1166 (-291 (-522)))) 108) (((-3 $ "failed") (-1166 (-881 (-354)))) 141) (((-3 $ "failed") (-1166 (-881 (-522)))) 130) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 98) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 87)) (-1478 (($ (-1166 (-291 (-354)))) 115) (($ (-1166 (-291 (-522)))) 104) (($ (-1166 (-881 (-354)))) 137) (($ (-1166 (-881 (-522)))) 126) (($ (-1166 (-382 (-881 (-354))))) 94) (($ (-1166 (-382 (-881 (-522))))) 80)) (-2550 (((-1171) $) 73)) (-2217 (((-792) $) 27) (($ (-588 (-305))) 63) (($ (-305)) 59) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 66) (($ (-1166 (-314 (-2227) (-2227 (QUOTE X)) (-637)))) 60)))
+(((-72 |#1|) (-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227) (-2227 (QUOTE X)) (-637))))))) (-1085)) (T -72))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2227) (-2227 (QUOTE X)) (-637)))) (-5 *1 (-72 *3)) (-14 *3 (-1085)))))
+(-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227) (-2227 (QUOTE X)) (-637)))))))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 125) (((-3 $ "failed") (-1166 (-291 (-522)))) 114) (((-3 $ "failed") (-1166 (-881 (-354)))) 147) (((-3 $ "failed") (-1166 (-881 (-522)))) 136) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 103) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 92)) (-1478 (($ (-1166 (-291 (-354)))) 121) (($ (-1166 (-291 (-522)))) 110) (($ (-1166 (-881 (-354)))) 143) (($ (-1166 (-881 (-522)))) 132) (($ (-1166 (-382 (-881 (-354))))) 99) (($ (-1166 (-382 (-881 (-522))))) 85)) (-2550 (((-1171) $) 78)) (-2217 (((-792) $) 70) (($ (-588 (-305))) NIL) (($ (-305)) NIL) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) NIL) (($ (-1166 (-314 (-2227 (QUOTE X) (QUOTE EPS)) (-2227 (QUOTE -1330)) (-637)))) 65)))
+(((-73 |#1| |#2| |#3|) (-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE X) (QUOTE EPS)) (-2227 (QUOTE -1330)) (-637))))))) (-1085) (-1085) (-1085)) (T -73))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2227 (QUOTE X) (QUOTE EPS)) (-2227 (QUOTE -1330)) (-637)))) (-5 *1 (-73 *3 *4 *5)) (-14 *3 (-1085)) (-14 *4 (-1085)) (-14 *5 (-1085)))))
+(-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE X) (QUOTE EPS)) (-2227 (QUOTE -1330)) (-637)))))))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 129) (((-3 $ "failed") (-1166 (-291 (-522)))) 118) (((-3 $ "failed") (-1166 (-881 (-354)))) 151) (((-3 $ "failed") (-1166 (-881 (-522)))) 140) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 107) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 96)) (-1478 (($ (-1166 (-291 (-354)))) 125) (($ (-1166 (-291 (-522)))) 114) (($ (-1166 (-881 (-354)))) 147) (($ (-1166 (-881 (-522)))) 136) (($ (-1166 (-382 (-881 (-354))))) 103) (($ (-1166 (-382 (-881 (-522))))) 89)) (-2550 (((-1171) $) 82)) (-2217 (((-792) $) 74) (($ (-588 (-305))) NIL) (($ (-305)) NIL) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) NIL) (($ (-1166 (-314 (-2227 (QUOTE EPS)) (-2227 (QUOTE YA) (QUOTE YB)) (-637)))) 69)))
+(((-74 |#1| |#2| |#3|) (-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE EPS)) (-2227 (QUOTE YA) (QUOTE YB)) (-637))))))) (-1085) (-1085) (-1085)) (T -74))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2227 (QUOTE EPS)) (-2227 (QUOTE YA) (QUOTE YB)) (-637)))) (-5 *1 (-74 *3 *4 *5)) (-14 *3 (-1085)) (-14 *4 (-1085)) (-14 *5 (-1085)))))
+(-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE EPS)) (-2227 (QUOTE YA) (QUOTE YB)) (-637)))))))
+((-3700 (((-3 $ "failed") (-291 (-354))) 77) (((-3 $ "failed") (-291 (-522))) 82) (((-3 $ "failed") (-881 (-354))) 87) (((-3 $ "failed") (-881 (-522))) 92) (((-3 $ "failed") (-382 (-881 (-354)))) 72) (((-3 $ "failed") (-382 (-881 (-522)))) 67)) (-1478 (($ (-291 (-354))) 75) (($ (-291 (-522))) 80) (($ (-881 (-354))) 85) (($ (-881 (-522))) 90) (($ (-382 (-881 (-354)))) 70) (($ (-382 (-881 (-522)))) 64)) (-2550 (((-1171) $) 61)) (-2217 (((-792) $) 49) (($ (-588 (-305))) 45) (($ (-305)) 55) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 53) (($ (-314 (-2227) (-2227 (QUOTE X)) (-637))) 46)))
+(((-75 |#1|) (-13 (-371) (-10 -8 (-15 -2217 ($ (-314 (-2227) (-2227 (QUOTE X)) (-637)))))) (-1085)) (T -75))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-314 (-2227) (-2227 (QUOTE X)) (-637))) (-5 *1 (-75 *3)) (-14 *3 (-1085)))))
+(-13 (-371) (-10 -8 (-15 -2217 ($ (-314 (-2227) (-2227 (QUOTE X)) (-637))))))
+((-3700 (((-3 $ "failed") (-291 (-354))) 41) (((-3 $ "failed") (-291 (-522))) 46) (((-3 $ "failed") (-881 (-354))) 51) (((-3 $ "failed") (-881 (-522))) 56) (((-3 $ "failed") (-382 (-881 (-354)))) 36) (((-3 $ "failed") (-382 (-881 (-522)))) 31)) (-1478 (($ (-291 (-354))) 39) (($ (-291 (-522))) 44) (($ (-881 (-354))) 49) (($ (-881 (-522))) 54) (($ (-382 (-881 (-354)))) 34) (($ (-382 (-881 (-522)))) 28)) (-2550 (((-1171) $) 77)) (-2217 (((-792) $) 71) (($ (-588 (-305))) 62) (($ (-305)) 68) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 65) (($ (-314 (-2227) (-2227 (QUOTE X)) (-637))) 27)))
+(((-76 |#1|) (-13 (-371) (-10 -8 (-15 -2217 ($ (-314 (-2227) (-2227 (QUOTE X)) (-637)))))) (-1085)) (T -76))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-314 (-2227) (-2227 (QUOTE X)) (-637))) (-5 *1 (-76 *3)) (-14 *3 (-1085)))))
+(-13 (-371) (-10 -8 (-15 -2217 ($ (-314 (-2227) (-2227 (QUOTE X)) (-637))))))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 84) (((-3 $ "failed") (-1166 (-291 (-522)))) 73) (((-3 $ "failed") (-1166 (-881 (-354)))) 106) (((-3 $ "failed") (-1166 (-881 (-522)))) 95) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 62) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 51)) (-1478 (($ (-1166 (-291 (-354)))) 80) (($ (-1166 (-291 (-522)))) 69) (($ (-1166 (-881 (-354)))) 102) (($ (-1166 (-881 (-522)))) 91) (($ (-1166 (-382 (-881 (-354))))) 58) (($ (-1166 (-382 (-881 (-522))))) 44)) (-2550 (((-1171) $) 122)) (-2217 (((-792) $) 116) (($ (-588 (-305))) 109) (($ (-305)) 36) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 112) (($ (-1166 (-314 (-2227) (-2227 (QUOTE XC)) (-637)))) 37)))
+(((-77 |#1|) (-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227) (-2227 (QUOTE XC)) (-637))))))) (-1085)) (T -77))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2227) (-2227 (QUOTE XC)) (-637)))) (-5 *1 (-77 *3)) (-14 *3 (-1085)))))
+(-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227) (-2227 (QUOTE XC)) (-637)))))))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 137) (((-3 $ "failed") (-1166 (-291 (-522)))) 126) (((-3 $ "failed") (-1166 (-881 (-354)))) 158) (((-3 $ "failed") (-1166 (-881 (-522)))) 147) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 116) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 105)) (-1478 (($ (-1166 (-291 (-354)))) 133) (($ (-1166 (-291 (-522)))) 122) (($ (-1166 (-881 (-354)))) 154) (($ (-1166 (-881 (-522)))) 143) (($ (-1166 (-382 (-881 (-354))))) 112) (($ (-1166 (-382 (-881 (-522))))) 98)) (-2550 (((-1171) $) 91)) (-2217 (((-792) $) 85) (($ (-588 (-305))) 76) (($ (-305)) 83) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 81) (($ (-1166 (-314 (-2227) (-2227 (QUOTE X)) (-637)))) 77)))
+(((-78 |#1|) (-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227) (-2227 (QUOTE X)) (-637))))))) (-1085)) (T -78))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2227) (-2227 (QUOTE X)) (-637)))) (-5 *1 (-78 *3)) (-14 *3 (-1085)))))
+(-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227) (-2227 (QUOTE X)) (-637)))))))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 73) (((-3 $ "failed") (-1166 (-291 (-522)))) 62) (((-3 $ "failed") (-1166 (-881 (-354)))) 95) (((-3 $ "failed") (-1166 (-881 (-522)))) 84) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 51) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 40)) (-1478 (($ (-1166 (-291 (-354)))) 69) (($ (-1166 (-291 (-522)))) 58) (($ (-1166 (-881 (-354)))) 91) (($ (-1166 (-881 (-522)))) 80) (($ (-1166 (-382 (-881 (-354))))) 47) (($ (-1166 (-382 (-881 (-522))))) 33)) (-2550 (((-1171) $) 121)) (-2217 (((-792) $) 115) (($ (-588 (-305))) 106) (($ (-305)) 112) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 110) (($ (-1166 (-314 (-2227) (-2227 (QUOTE X)) (-637)))) 32)))
+(((-79 |#1|) (-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227) (-2227 (QUOTE X)) (-637))))))) (-1085)) (T -79))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2227) (-2227 (QUOTE X)) (-637)))) (-5 *1 (-79 *3)) (-14 *3 (-1085)))))
+(-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227) (-2227 (QUOTE X)) (-637)))))))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 90) (((-3 $ "failed") (-1166 (-291 (-522)))) 79) (((-3 $ "failed") (-1166 (-881 (-354)))) 112) (((-3 $ "failed") (-1166 (-881 (-522)))) 101) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 68) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 57)) (-1478 (($ (-1166 (-291 (-354)))) 86) (($ (-1166 (-291 (-522)))) 75) (($ (-1166 (-881 (-354)))) 108) (($ (-1166 (-881 (-522)))) 97) (($ (-1166 (-382 (-881 (-354))))) 64) (($ (-1166 (-382 (-881 (-522))))) 50)) (-2550 (((-1171) $) 43)) (-2217 (((-792) $) 36) (($ (-588 (-305))) 26) (($ (-305)) 29) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 32) (($ (-1166 (-314 (-2227 (QUOTE X) (QUOTE -1330)) (-2227) (-637)))) 27)))
+(((-80 |#1|) (-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE X) (QUOTE -1330)) (-2227) (-637))))))) (-1085)) (T -80))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2227 (QUOTE X) (QUOTE -1330)) (-2227) (-637)))) (-5 *1 (-80 *3)) (-14 *3 (-1085)))))
+(-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE X) (QUOTE -1330)) (-2227) (-637)))))))
+((-3700 (((-3 $ "failed") (-628 (-291 (-354)))) 103) (((-3 $ "failed") (-628 (-291 (-522)))) 92) (((-3 $ "failed") (-628 (-881 (-354)))) 125) (((-3 $ "failed") (-628 (-881 (-522)))) 114) (((-3 $ "failed") (-628 (-382 (-881 (-354))))) 82) (((-3 $ "failed") (-628 (-382 (-881 (-522))))) 71)) (-1478 (($ (-628 (-291 (-354)))) 99) (($ (-628 (-291 (-522)))) 88) (($ (-628 (-881 (-354)))) 121) (($ (-628 (-881 (-522)))) 110) (($ (-628 (-382 (-881 (-354))))) 78) (($ (-628 (-382 (-881 (-522))))) 64)) (-2550 (((-1171) $) 57)) (-2217 (((-792) $) 43) (($ (-588 (-305))) 50) (($ (-305)) 39) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 47) (($ (-628 (-314 (-2227 (QUOTE X) (QUOTE -1330)) (-2227) (-637)))) 40)))
+(((-81 |#1|) (-13 (-359) (-10 -8 (-15 -2217 ($ (-628 (-314 (-2227 (QUOTE X) (QUOTE -1330)) (-2227) (-637))))))) (-1085)) (T -81))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-628 (-314 (-2227 (QUOTE X) (QUOTE -1330)) (-2227) (-637)))) (-5 *1 (-81 *3)) (-14 *3 (-1085)))))
+(-13 (-359) (-10 -8 (-15 -2217 ($ (-628 (-314 (-2227 (QUOTE X) (QUOTE -1330)) (-2227) (-637)))))))
+((-3700 (((-3 $ "failed") (-628 (-291 (-354)))) 103) (((-3 $ "failed") (-628 (-291 (-522)))) 92) (((-3 $ "failed") (-628 (-881 (-354)))) 124) (((-3 $ "failed") (-628 (-881 (-522)))) 113) (((-3 $ "failed") (-628 (-382 (-881 (-354))))) 81) (((-3 $ "failed") (-628 (-382 (-881 (-522))))) 70)) (-1478 (($ (-628 (-291 (-354)))) 99) (($ (-628 (-291 (-522)))) 88) (($ (-628 (-881 (-354)))) 120) (($ (-628 (-881 (-522)))) 109) (($ (-628 (-382 (-881 (-354))))) 77) (($ (-628 (-382 (-881 (-522))))) 63)) (-2550 (((-1171) $) 56)) (-2217 (((-792) $) 50) (($ (-588 (-305))) 44) (($ (-305)) 47) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 40) (($ (-628 (-314 (-2227 (QUOTE X)) (-2227) (-637)))) 41)))
+(((-82 |#1|) (-13 (-359) (-10 -8 (-15 -2217 ($ (-628 (-314 (-2227 (QUOTE X)) (-2227) (-637))))))) (-1085)) (T -82))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-628 (-314 (-2227 (QUOTE X)) (-2227) (-637)))) (-5 *1 (-82 *3)) (-14 *3 (-1085)))))
+(-13 (-359) (-10 -8 (-15 -2217 ($ (-628 (-314 (-2227 (QUOTE X)) (-2227) (-637)))))))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 99) (((-3 $ "failed") (-1166 (-291 (-522)))) 88) (((-3 $ "failed") (-1166 (-881 (-354)))) 121) (((-3 $ "failed") (-1166 (-881 (-522)))) 110) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 77) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 66)) (-1478 (($ (-1166 (-291 (-354)))) 95) (($ (-1166 (-291 (-522)))) 84) (($ (-1166 (-881 (-354)))) 117) (($ (-1166 (-881 (-522)))) 106) (($ (-1166 (-382 (-881 (-354))))) 73) (($ (-1166 (-382 (-881 (-522))))) 59)) (-2550 (((-1171) $) 45)) (-2217 (((-792) $) 39) (($ (-588 (-305))) 48) (($ (-305)) 35) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 51) (($ (-1166 (-314 (-2227 (QUOTE X)) (-2227) (-637)))) 36)))
+(((-83 |#1|) (-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE X)) (-2227) (-637))))))) (-1085)) (T -83))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2227 (QUOTE X)) (-2227) (-637)))) (-5 *1 (-83 *3)) (-14 *3 (-1085)))))
+(-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE X)) (-2227) (-637)))))))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 74) (((-3 $ "failed") (-1166 (-291 (-522)))) 63) (((-3 $ "failed") (-1166 (-881 (-354)))) 96) (((-3 $ "failed") (-1166 (-881 (-522)))) 85) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 52) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 41)) (-1478 (($ (-1166 (-291 (-354)))) 70) (($ (-1166 (-291 (-522)))) 59) (($ (-1166 (-881 (-354)))) 92) (($ (-1166 (-881 (-522)))) 81) (($ (-1166 (-382 (-881 (-354))))) 48) (($ (-1166 (-382 (-881 (-522))))) 34)) (-2550 (((-1171) $) 122)) (-2217 (((-792) $) 116) (($ (-588 (-305))) 107) (($ (-305)) 113) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 111) (($ (-1166 (-314 (-2227 (QUOTE X)) (-2227 (QUOTE -1330)) (-637)))) 33)))
+(((-84 |#1|) (-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE X)) (-2227 (QUOTE -1330)) (-637))))))) (-1085)) (T -84))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-314 (-2227 (QUOTE X)) (-2227 (QUOTE -1330)) (-637)))) (-5 *1 (-84 *3)) (-14 *3 (-1085)))))
+(-13 (-415) (-10 -8 (-15 -2217 ($ (-1166 (-314 (-2227 (QUOTE X)) (-2227 (QUOTE -1330)) (-637)))))))
+((-3700 (((-3 $ "failed") (-628 (-291 (-354)))) 105) (((-3 $ "failed") (-628 (-291 (-522)))) 94) (((-3 $ "failed") (-628 (-881 (-354)))) 127) (((-3 $ "failed") (-628 (-881 (-522)))) 116) (((-3 $ "failed") (-628 (-382 (-881 (-354))))) 83) (((-3 $ "failed") (-628 (-382 (-881 (-522))))) 72)) (-1478 (($ (-628 (-291 (-354)))) 101) (($ (-628 (-291 (-522)))) 90) (($ (-628 (-881 (-354)))) 123) (($ (-628 (-881 (-522)))) 112) (($ (-628 (-382 (-881 (-354))))) 79) (($ (-628 (-382 (-881 (-522))))) 65)) (-2550 (((-1171) $) 58)) (-2217 (((-792) $) 52) (($ (-588 (-305))) 42) (($ (-305)) 49) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 47) (($ (-628 (-314 (-2227 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-2227) (-637)))) 43)))
+(((-85 |#1|) (-13 (-359) (-10 -8 (-15 -2217 ($ (-628 (-314 (-2227 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-2227) (-637))))))) (-1085)) (T -85))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-628 (-314 (-2227 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-2227) (-637)))) (-5 *1 (-85 *3)) (-14 *3 (-1085)))))
+(-13 (-359) (-10 -8 (-15 -2217 ($ (-628 (-314 (-2227 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-2227) (-637)))))))
+((-2550 (((-1171) $) 44)) (-2217 (((-792) $) 38) (($ (-1166 (-637))) 88) (($ (-588 (-305))) 29) (($ (-305)) 35) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 32)))
(((-86 |#1|) (-414) (-1085)) (T -86))
NIL
(-414)
-((-1297 (((-3 $ "failed") (-291 (-354))) 42) (((-3 $ "failed") (-291 (-522))) 47) (((-3 $ "failed") (-881 (-354))) 52) (((-3 $ "failed") (-881 (-522))) 57) (((-3 $ "failed") (-382 (-881 (-354)))) 37) (((-3 $ "failed") (-382 (-881 (-522)))) 32)) (-1484 (($ (-291 (-354))) 40) (($ (-291 (-522))) 45) (($ (-881 (-354))) 50) (($ (-881 (-522))) 55) (($ (-382 (-881 (-354)))) 35) (($ (-382 (-881 (-522)))) 29)) (-2009 (((-1171) $) 88)) (-2190 (((-792) $) 82) (($ (-588 (-305))) 76) (($ (-305)) 79) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 73) (($ (-314 (-2201 (QUOTE X)) (-2201 (QUOTE -1352)) (-637))) 28)))
-(((-87 |#1|) (-13 (-371) (-10 -8 (-15 -2190 ($ (-314 (-2201 (QUOTE X)) (-2201 (QUOTE -1352)) (-637)))))) (-1085)) (T -87))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-314 (-2201 (QUOTE X)) (-2201 (QUOTE -1352)) (-637))) (-5 *1 (-87 *3)) (-14 *3 (-1085)))))
-(-13 (-371) (-10 -8 (-15 -2190 ($ (-314 (-2201 (QUOTE X)) (-2201 (QUOTE -1352)) (-637))))))
-((-1275 (((-1166 (-628 |#1|)) (-628 |#1|)) 55)) (-2742 (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 (-588 (-850))))) |#2| (-850)) 45)) (-3348 (((-2 (|:| |minor| (-588 (-850))) (|:| -3197 |#2|) (|:| |minors| (-588 (-588 (-850)))) (|:| |ops| (-588 |#2|))) |#2| (-850)) 63 (|has| |#1| (-338)))))
-(((-88 |#1| |#2|) (-10 -7 (-15 -2742 ((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 (-588 (-850))))) |#2| (-850))) (-15 -1275 ((-1166 (-628 |#1|)) (-628 |#1|))) (IF (|has| |#1| (-338)) (-15 -3348 ((-2 (|:| |minor| (-588 (-850))) (|:| -3197 |#2|) (|:| |minors| (-588 (-588 (-850)))) (|:| |ops| (-588 |#2|))) |#2| (-850))) |%noBranch|)) (-514) (-598 |#1|)) (T -88))
-((-3348 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *5 (-514)) (-5 *2 (-2 (|:| |minor| (-588 (-850))) (|:| -3197 *3) (|:| |minors| (-588 (-588 (-850)))) (|:| |ops| (-588 *3)))) (-5 *1 (-88 *5 *3)) (-5 *4 (-850)) (-4 *3 (-598 *5)))) (-1275 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-1166 (-628 *4))) (-5 *1 (-88 *4 *5)) (-5 *3 (-628 *4)) (-4 *5 (-598 *4)))) (-2742 (*1 *2 *3 *4) (-12 (-4 *5 (-514)) (-5 *2 (-2 (|:| -1222 (-628 *5)) (|:| |vec| (-1166 (-588 (-850)))))) (-5 *1 (-88 *5 *3)) (-5 *4 (-850)) (-4 *3 (-598 *5)))))
-(-10 -7 (-15 -2742 ((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 (-588 (-850))))) |#2| (-850))) (-15 -1275 ((-1166 (-628 |#1|)) (-628 |#1|))) (IF (|has| |#1| (-338)) (-15 -3348 ((-2 (|:| |minor| (-588 (-850))) (|:| -3197 |#2|) (|:| |minors| (-588 (-588 (-850)))) (|:| |ops| (-588 |#2|))) |#2| (-850))) |%noBranch|))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1355 ((|#1| $) 35)) (-4141 (((-108) $ (-708)) NIL)) (-3175 (($) NIL T CONST)) (-3218 ((|#1| |#1| $) 30)) (-2327 ((|#1| $) 28)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-2116 ((|#1| $) NIL)) (-4095 (($ |#1| $) 31)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-4087 ((|#1| $) 29)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 16)) (-3775 (($) 39)) (-1253 (((-708) $) 26)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) 15)) (-2190 (((-792) $) 25 (|has| |#1| (-562 (-792))))) (-2795 (($ (-588 |#1|)) NIL)) (-3457 (($ (-588 |#1|)) 37)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 13 (|has| |#1| (-1014)))) (-3480 (((-708) $) 10 (|has| $ (-6 -4238)))))
-(((-89 |#1|) (-13 (-1033 |#1|) (-10 -8 (-15 -3457 ($ (-588 |#1|))))) (-1014)) (T -89))
-((-3457 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-89 *3)))))
-(-13 (-1033 |#1|) (-10 -8 (-15 -3457 ($ (-588 |#1|)))))
-((-2860 (($ $) 10)) (-2872 (($ $) 12)))
-(((-90 |#1|) (-10 -8 (-15 -2872 (|#1| |#1|)) (-15 -2860 (|#1| |#1|))) (-91)) (T -90))
-NIL
-(-10 -8 (-15 -2872 (|#1| |#1|)) (-15 -2860 (|#1| |#1|)))
-((-2836 (($ $) 11)) (-2815 (($ $) 10)) (-2860 (($ $) 9)) (-2872 (($ $) 8)) (-2848 (($ $) 7)) (-2825 (($ $) 6)))
+((-3700 (((-3 $ "failed") (-291 (-354))) 42) (((-3 $ "failed") (-291 (-522))) 47) (((-3 $ "failed") (-881 (-354))) 52) (((-3 $ "failed") (-881 (-522))) 57) (((-3 $ "failed") (-382 (-881 (-354)))) 37) (((-3 $ "failed") (-382 (-881 (-522)))) 32)) (-1478 (($ (-291 (-354))) 40) (($ (-291 (-522))) 45) (($ (-881 (-354))) 50) (($ (-881 (-522))) 55) (($ (-382 (-881 (-354)))) 35) (($ (-382 (-881 (-522)))) 29)) (-2550 (((-1171) $) 88)) (-2217 (((-792) $) 82) (($ (-588 (-305))) 76) (($ (-305)) 79) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 73) (($ (-314 (-2227 (QUOTE X)) (-2227 (QUOTE -1330)) (-637))) 28)))
+(((-87 |#1|) (-13 (-371) (-10 -8 (-15 -2217 ($ (-314 (-2227 (QUOTE X)) (-2227 (QUOTE -1330)) (-637)))))) (-1085)) (T -87))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-314 (-2227 (QUOTE X)) (-2227 (QUOTE -1330)) (-637))) (-5 *1 (-87 *3)) (-14 *3 (-1085)))))
+(-13 (-371) (-10 -8 (-15 -2217 ($ (-314 (-2227 (QUOTE X)) (-2227 (QUOTE -1330)) (-637))))))
+((-1470 (((-1166 (-628 |#1|)) (-628 |#1|)) 55)) (-1382 (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 (-588 (-850))))) |#2| (-850)) 45)) (-1443 (((-2 (|:| |minor| (-588 (-850))) (|:| -3277 |#2|) (|:| |minors| (-588 (-588 (-850)))) (|:| |ops| (-588 |#2|))) |#2| (-850)) 63 (|has| |#1| (-338)))))
+(((-88 |#1| |#2|) (-10 -7 (-15 -1382 ((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 (-588 (-850))))) |#2| (-850))) (-15 -1470 ((-1166 (-628 |#1|)) (-628 |#1|))) (IF (|has| |#1| (-338)) (-15 -1443 ((-2 (|:| |minor| (-588 (-850))) (|:| -3277 |#2|) (|:| |minors| (-588 (-588 (-850)))) (|:| |ops| (-588 |#2|))) |#2| (-850))) |%noBranch|)) (-514) (-598 |#1|)) (T -88))
+((-1443 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *5 (-514)) (-5 *2 (-2 (|:| |minor| (-588 (-850))) (|:| -3277 *3) (|:| |minors| (-588 (-588 (-850)))) (|:| |ops| (-588 *3)))) (-5 *1 (-88 *5 *3)) (-5 *4 (-850)) (-4 *3 (-598 *5)))) (-1470 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-1166 (-628 *4))) (-5 *1 (-88 *4 *5)) (-5 *3 (-628 *4)) (-4 *5 (-598 *4)))) (-1382 (*1 *2 *3 *4) (-12 (-4 *5 (-514)) (-5 *2 (-2 (|:| -2149 (-628 *5)) (|:| |vec| (-1166 (-588 (-850)))))) (-5 *1 (-88 *5 *3)) (-5 *4 (-850)) (-4 *3 (-598 *5)))))
+(-10 -7 (-15 -1382 ((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 (-588 (-850))))) |#2| (-850))) (-15 -1470 ((-1166 (-628 |#1|)) (-628 |#1|))) (IF (|has| |#1| (-338)) (-15 -1443 ((-2 (|:| |minor| (-588 (-850))) (|:| -3277 |#2|) (|:| |minors| (-588 (-588 (-850)))) (|:| |ops| (-588 |#2|))) |#2| (-850))) |%noBranch|))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1322 ((|#1| $) 35)) (-2717 (((-108) $ (-708)) NIL)) (-3367 (($) NIL T CONST)) (-2622 ((|#1| |#1| $) 30)) (-2956 ((|#1| $) 28)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1431 ((|#1| $) NIL)) (-3365 (($ |#1| $) 31)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3295 ((|#1| $) 29)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 16)) (-3298 (($) 39)) (-3735 (((-708) $) 26)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) 15)) (-2217 (((-792) $) 25 (|has| |#1| (-562 (-792))))) (-2501 (($ (-588 |#1|)) NIL)) (-3182 (($ (-588 |#1|)) 37)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 13 (|has| |#1| (-1014)))) (-3591 (((-708) $) 10 (|has| $ (-6 -4238)))))
+(((-89 |#1|) (-13 (-1033 |#1|) (-10 -8 (-15 -3182 ($ (-588 |#1|))))) (-1014)) (T -89))
+((-3182 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-89 *3)))))
+(-13 (-1033 |#1|) (-10 -8 (-15 -3182 ($ (-588 |#1|)))))
+((-3001 (($ $) 10)) (-3011 (($ $) 12)))
+(((-90 |#1|) (-10 -8 (-15 -3011 (|#1| |#1|)) (-15 -3001 (|#1| |#1|))) (-91)) (T -90))
+NIL
+(-10 -8 (-15 -3011 (|#1| |#1|)) (-15 -3001 (|#1| |#1|)))
+((-2976 (($ $) 11)) (-2957 (($ $) 10)) (-3001 (($ $) 9)) (-3011 (($ $) 8)) (-2989 (($ $) 7)) (-2966 (($ $) 6)))
(((-91) (-1197)) (T -91))
-((-2836 (*1 *1 *1) (-4 *1 (-91))) (-2815 (*1 *1 *1) (-4 *1 (-91))) (-2860 (*1 *1 *1) (-4 *1 (-91))) (-2872 (*1 *1 *1) (-4 *1 (-91))) (-2848 (*1 *1 *1) (-4 *1 (-91))) (-2825 (*1 *1 *1) (-4 *1 (-91))))
-(-13 (-10 -8 (-15 -2825 ($ $)) (-15 -2848 ($ $)) (-15 -2872 ($ $)) (-15 -2860 ($ $)) (-15 -2815 ($ $)) (-15 -2836 ($ $))))
-((-1416 (((-108) $ $) NIL)) (-3479 (((-354) (-1068) (-354)) 42) (((-354) (-1068) (-1068) (-354)) 41)) (-3709 (((-354) (-354)) 33)) (-3063 (((-1171)) 36)) (-2385 (((-1068) $) NIL)) (-2127 (((-354) (-1068) (-1068)) 46) (((-354) (-1068)) 48)) (-4151 (((-1032) $) NIL)) (-2524 (((-354) (-1068) (-1068)) 47)) (-1778 (((-354) (-1068) (-1068)) 49) (((-354) (-1068)) 50)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
-(((-92) (-13 (-1014) (-10 -7 (-15 -2127 ((-354) (-1068) (-1068))) (-15 -2127 ((-354) (-1068))) (-15 -1778 ((-354) (-1068) (-1068))) (-15 -1778 ((-354) (-1068))) (-15 -2524 ((-354) (-1068) (-1068))) (-15 -3063 ((-1171))) (-15 -3709 ((-354) (-354))) (-15 -3479 ((-354) (-1068) (-354))) (-15 -3479 ((-354) (-1068) (-1068) (-354))) (-6 -4238)))) (T -92))
-((-2127 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))) (-2127 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))) (-1778 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))) (-1778 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))) (-2524 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))) (-3063 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-92)))) (-3709 (*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-92)))) (-3479 (*1 *2 *3 *2) (-12 (-5 *2 (-354)) (-5 *3 (-1068)) (-5 *1 (-92)))) (-3479 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-354)) (-5 *3 (-1068)) (-5 *1 (-92)))))
-(-13 (-1014) (-10 -7 (-15 -2127 ((-354) (-1068) (-1068))) (-15 -2127 ((-354) (-1068))) (-15 -1778 ((-354) (-1068) (-1068))) (-15 -1778 ((-354) (-1068))) (-15 -2524 ((-354) (-1068) (-1068))) (-15 -3063 ((-1171))) (-15 -3709 ((-354) (-354))) (-15 -3479 ((-354) (-1068) (-354))) (-15 -3479 ((-354) (-1068) (-1068) (-354))) (-6 -4238)))
+((-2976 (*1 *1 *1) (-4 *1 (-91))) (-2957 (*1 *1 *1) (-4 *1 (-91))) (-3001 (*1 *1 *1) (-4 *1 (-91))) (-3011 (*1 *1 *1) (-4 *1 (-91))) (-2989 (*1 *1 *1) (-4 *1 (-91))) (-2966 (*1 *1 *1) (-4 *1 (-91))))
+(-13 (-10 -8 (-15 -2966 ($ $)) (-15 -2989 ($ $)) (-15 -3011 ($ $)) (-15 -3001 ($ $)) (-15 -2957 ($ $)) (-15 -2976 ($ $))))
+((-1419 (((-108) $ $) NIL)) (-3361 (((-354) (-1068) (-354)) 42) (((-354) (-1068) (-1068) (-354)) 41)) (-3809 (((-354) (-354)) 33)) (-3558 (((-1171)) 36)) (-2311 (((-1068) $) NIL)) (-1563 (((-354) (-1068) (-1068)) 46) (((-354) (-1068)) 48)) (-4174 (((-1032) $) NIL)) (-2191 (((-354) (-1068) (-1068)) 47)) (-3587 (((-354) (-1068) (-1068)) 49) (((-354) (-1068)) 50)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
+(((-92) (-13 (-1014) (-10 -7 (-15 -1563 ((-354) (-1068) (-1068))) (-15 -1563 ((-354) (-1068))) (-15 -3587 ((-354) (-1068) (-1068))) (-15 -3587 ((-354) (-1068))) (-15 -2191 ((-354) (-1068) (-1068))) (-15 -3558 ((-1171))) (-15 -3809 ((-354) (-354))) (-15 -3361 ((-354) (-1068) (-354))) (-15 -3361 ((-354) (-1068) (-1068) (-354))) (-6 -4238)))) (T -92))
+((-1563 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))) (-1563 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))) (-3587 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))) (-3587 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))) (-2191 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))) (-3558 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-92)))) (-3809 (*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-92)))) (-3361 (*1 *2 *3 *2) (-12 (-5 *2 (-354)) (-5 *3 (-1068)) (-5 *1 (-92)))) (-3361 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-354)) (-5 *3 (-1068)) (-5 *1 (-92)))))
+(-13 (-1014) (-10 -7 (-15 -1563 ((-354) (-1068) (-1068))) (-15 -1563 ((-354) (-1068))) (-15 -3587 ((-354) (-1068) (-1068))) (-15 -3587 ((-354) (-1068))) (-15 -2191 ((-354) (-1068) (-1068))) (-15 -3558 ((-1171))) (-15 -3809 ((-354) (-354))) (-15 -3361 ((-354) (-1068) (-354))) (-15 -3361 ((-354) (-1068) (-1068) (-354))) (-6 -4238)))
NIL
(((-93) (-1197)) (T -93))
NIL
(-13 (-10 -7 (-6 -4238) (-6 (-4240 "*")) (-6 -4239) (-6 -4235) (-6 -4233) (-6 -4232) (-6 -4231) (-6 -4236) (-6 -4230) (-6 -4229) (-6 -4228) (-6 -4227) (-6 -4226) (-6 -4234) (-6 -4237) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4225)))
-((-1416 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) NIL)) (-2782 (((-108) $) NIL)) (-4071 (($ (-1 |#1| |#1|)) 25) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 24) (($ (-1 |#1| |#1| (-522))) 22)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 14)) (-4151 (((-1032) $) NIL)) (-2545 ((|#1| $ |#1|) 11)) (-3122 (($ $ $) NIL)) (-1288 (($ $ $) NIL)) (-2190 (((-792) $) 20)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3577 (($) 8 T CONST)) (-1531 (((-108) $ $) 10)) (-1620 (($ $ $) NIL)) (** (($ $ (-850)) 28) (($ $ (-708)) NIL) (($ $ (-522)) 16)) (* (($ $ $) 29)))
-(((-94 |#1|) (-13 (-447) (-262 |#1| |#1|) (-10 -8 (-15 -4071 ($ (-1 |#1| |#1|))) (-15 -4071 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -4071 ($ (-1 |#1| |#1| (-522)))))) (-971)) (T -94))
-((-4071 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-94 *3)))) (-4071 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-94 *3)))) (-4071 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-522))) (-4 *3 (-971)) (-5 *1 (-94 *3)))))
-(-13 (-447) (-262 |#1| |#1|) (-10 -8 (-15 -4071 ($ (-1 |#1| |#1|))) (-15 -4071 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -4071 ($ (-1 |#1| |#1| (-522))))))
-((-2870 (((-393 |#2|) |#2| (-588 |#2|)) 10) (((-393 |#2|) |#2| |#2|) 11)))
-(((-95 |#1| |#2|) (-10 -7 (-15 -2870 ((-393 |#2|) |#2| |#2|)) (-15 -2870 ((-393 |#2|) |#2| (-588 |#2|)))) (-13 (-426) (-135)) (-1142 |#1|)) (T -95))
-((-2870 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-13 (-426) (-135))) (-5 *2 (-393 *3)) (-5 *1 (-95 *5 *3)))) (-2870 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-426) (-135))) (-5 *2 (-393 *3)) (-5 *1 (-95 *4 *3)) (-4 *3 (-1142 *4)))))
-(-10 -7 (-15 -2870 ((-393 |#2|) |#2| |#2|)) (-15 -2870 ((-393 |#2|) |#2| (-588 |#2|))))
-((-1416 (((-108) $ $) 10)))
-(((-96 |#1|) (-10 -8 (-15 -1416 ((-108) |#1| |#1|))) (-97)) (T -96))
-NIL
-(-10 -8 (-15 -1416 ((-108) |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-1531 (((-108) $ $) 6)))
+((-1419 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) NIL)) (-2859 (((-108) $) NIL)) (-3184 (($ (-1 |#1| |#1|)) 25) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 24) (($ (-1 |#1| |#1| (-522))) 22)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 14)) (-4174 (((-1032) $) NIL)) (-2683 ((|#1| $ |#1|) 11)) (-2983 (($ $ $) NIL)) (-1596 (($ $ $) NIL)) (-2217 (((-792) $) 20)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3709 (($) 8 T CONST)) (-1562 (((-108) $ $) 10)) (-1682 (($ $ $) NIL)) (** (($ $ (-850)) 28) (($ $ (-708)) NIL) (($ $ (-522)) 16)) (* (($ $ $) 29)))
+(((-94 |#1|) (-13 (-447) (-262 |#1| |#1|) (-10 -8 (-15 -3184 ($ (-1 |#1| |#1|))) (-15 -3184 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -3184 ($ (-1 |#1| |#1| (-522)))))) (-971)) (T -94))
+((-3184 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-94 *3)))) (-3184 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-94 *3)))) (-3184 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-522))) (-4 *3 (-971)) (-5 *1 (-94 *3)))))
+(-13 (-447) (-262 |#1| |#1|) (-10 -8 (-15 -3184 ($ (-1 |#1| |#1|))) (-15 -3184 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -3184 ($ (-1 |#1| |#1| (-522))))))
+((-1290 (((-393 |#2|) |#2| (-588 |#2|)) 10) (((-393 |#2|) |#2| |#2|) 11)))
+(((-95 |#1| |#2|) (-10 -7 (-15 -1290 ((-393 |#2|) |#2| |#2|)) (-15 -1290 ((-393 |#2|) |#2| (-588 |#2|)))) (-13 (-426) (-135)) (-1142 |#1|)) (T -95))
+((-1290 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-13 (-426) (-135))) (-5 *2 (-393 *3)) (-5 *1 (-95 *5 *3)))) (-1290 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-426) (-135))) (-5 *2 (-393 *3)) (-5 *1 (-95 *4 *3)) (-4 *3 (-1142 *4)))))
+(-10 -7 (-15 -1290 ((-393 |#2|) |#2| |#2|)) (-15 -1290 ((-393 |#2|) |#2| (-588 |#2|))))
+((-1419 (((-108) $ $) 10)))
+(((-96 |#1|) (-10 -8 (-15 -1419 ((-108) |#1| |#1|))) (-97)) (T -96))
+NIL
+(-10 -8 (-15 -1419 ((-108) |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-1562 (((-108) $ $) 6)))
(((-97) (-1197)) (T -97))
-((-1416 (*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108)))) (-1531 (*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108)))))
-(-13 (-10 -8 (-15 -1531 ((-108) $ $)) (-15 -1416 ((-108) $ $))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3435 ((|#1| $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-3628 ((|#1| $ |#1|) 13 (|has| $ (-6 -4239)))) (-1872 (($ $ $) NIL (|has| $ (-6 -4239)))) (-2173 (($ $ $) NIL (|has| $ (-6 -4239)))) (-1952 (($ $ (-588 |#1|)) 15)) (-2379 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "left" $) NIL (|has| $ (-6 -4239))) (($ $ "right" $) NIL (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-1924 (($ $) 11)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) NIL)) (-2030 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3037 (($ $ |#1| $) 17)) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2817 ((|#1| $ (-1 |#1| |#1| |#1|)) 25) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 30)) (-4209 (($ $ |#1| (-1 |#1| |#1| |#1|)) 31) (($ $ |#1| (-1 (-588 |#1|) |#1| |#1| |#1|)) 35)) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-1913 (($ $) 10)) (-1279 (((-588 |#1|) $) NIL)) (-1754 (((-108) $) 12)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 9)) (-3775 (($) 16)) (-2545 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2011 (((-522) $ $) NIL)) (-3042 (((-108) $) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) NIL)) (-2425 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3936 (($ (-708) |#1|) 19)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-98 |#1|) (-13 (-121 |#1|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -3936 ($ (-708) |#1|)) (-15 -1952 ($ $ (-588 |#1|))) (-15 -2817 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2817 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -4209 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -4209 ($ $ |#1| (-1 (-588 |#1|) |#1| |#1| |#1|))))) (-1014)) (T -98))
-((-3936 (*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *1 (-98 *3)) (-4 *3 (-1014)))) (-1952 (*1 *1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-98 *3)))) (-2817 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-98 *2)) (-4 *2 (-1014)))) (-2817 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-98 *3)))) (-4209 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1014)) (-5 *1 (-98 *2)))) (-4209 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-588 *2) *2 *2 *2)) (-4 *2 (-1014)) (-5 *1 (-98 *2)))))
-(-13 (-121 |#1|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -3936 ($ (-708) |#1|)) (-15 -1952 ($ $ (-588 |#1|))) (-15 -2817 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2817 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -4209 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -4209 ($ $ |#1| (-1 (-588 |#1|) |#1| |#1| |#1|)))))
-((-1613 ((|#3| |#2| |#2|) 29)) (-1666 ((|#1| |#2| |#2|) 37 (|has| |#1| (-6 (-4240 "*"))))) (-3000 ((|#3| |#2| |#2|) 30)) (-3727 ((|#1| |#2|) 41 (|has| |#1| (-6 (-4240 "*"))))))
-(((-99 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1613 (|#3| |#2| |#2|)) (-15 -3000 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4240 "*"))) (PROGN (-15 -1666 (|#1| |#2| |#2|)) (-15 -3727 (|#1| |#2|))) |%noBranch|)) (-971) (-1142 |#1|) (-626 |#1| |#4| |#5|) (-348 |#1|) (-348 |#1|)) (T -99))
-((-3727 (*1 *2 *3) (-12 (|has| *2 (-6 (-4240 "*"))) (-4 *5 (-348 *2)) (-4 *6 (-348 *2)) (-4 *2 (-971)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1142 *2)) (-4 *4 (-626 *2 *5 *6)))) (-1666 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4240 "*"))) (-4 *5 (-348 *2)) (-4 *6 (-348 *2)) (-4 *2 (-971)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1142 *2)) (-4 *4 (-626 *2 *5 *6)))) (-3000 (*1 *2 *3 *3) (-12 (-4 *4 (-971)) (-4 *2 (-626 *4 *5 *6)) (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1142 *4)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)))) (-1613 (*1 *2 *3 *3) (-12 (-4 *4 (-971)) (-4 *2 (-626 *4 *5 *6)) (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1142 *4)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)))))
-(-10 -7 (-15 -1613 (|#3| |#2| |#2|)) (-15 -3000 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4240 "*"))) (PROGN (-15 -1666 (|#1| |#2| |#2|)) (-15 -3727 (|#1| |#2|))) |%noBranch|))
-((-1416 (((-108) $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-3401 (((-588 (-1085))) 32)) (-3702 (((-2 (|:| |zeros| (-1066 (-202))) (|:| |ones| (-1066 (-202))) (|:| |singularities| (-1066 (-202)))) (-1085)) 35)) (-1531 (((-108) $ $) NIL)))
-(((-100) (-13 (-1014) (-10 -7 (-15 -3401 ((-588 (-1085)))) (-15 -3702 ((-2 (|:| |zeros| (-1066 (-202))) (|:| |ones| (-1066 (-202))) (|:| |singularities| (-1066 (-202)))) (-1085))) (-6 -4238)))) (T -100))
-((-3401 (*1 *2) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-100)))) (-3702 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-2 (|:| |zeros| (-1066 (-202))) (|:| |ones| (-1066 (-202))) (|:| |singularities| (-1066 (-202))))) (-5 *1 (-100)))))
-(-13 (-1014) (-10 -7 (-15 -3401 ((-588 (-1085)))) (-15 -3702 ((-2 (|:| |zeros| (-1066 (-202))) (|:| |ones| (-1066 (-202))) (|:| |singularities| (-1066 (-202)))) (-1085))) (-6 -4238)))
-((-2795 (($ (-588 |#2|)) 11)))
-(((-101 |#1| |#2|) (-10 -8 (-15 -2795 (|#1| (-588 |#2|)))) (-102 |#2|) (-1120)) (T -101))
-NIL
-(-10 -8 (-15 -2795 (|#1| (-588 |#2|))))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) 8)) (-3175 (($) 7 T CONST)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-2116 ((|#1| $) 39)) (-4095 (($ |#1| $) 40)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-4087 ((|#1| $) 41)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2795 (($ (-588 |#1|)) 42)) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1419 (*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108)))) (-1562 (*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108)))))
+(-13 (-10 -8 (-15 -1562 ((-108) $ $)) (-15 -1419 ((-108) $ $))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3526 ((|#1| $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1198 ((|#1| $ |#1|) 13 (|has| $ (-6 -4239)))) (-2766 (($ $ $) NIL (|has| $ (-6 -4239)))) (-3268 (($ $ $) NIL (|has| $ (-6 -4239)))) (-2924 (($ $ (-588 |#1|)) 15)) (-2437 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "left" $) NIL (|has| $ (-6 -4239))) (($ $ "right" $) NIL (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-2002 (($ $) 11)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) NIL)) (-2402 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3147 (($ $ |#1| $) 17)) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2735 ((|#1| $ (-1 |#1| |#1| |#1|)) 25) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 30)) (-2072 (($ $ |#1| (-1 |#1| |#1| |#1|)) 31) (($ $ |#1| (-1 (-588 |#1|) |#1| |#1| |#1|)) 35)) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-1993 (($ $) 10)) (-2548 (((-588 |#1|) $) NIL)) (-3394 (((-108) $) 12)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 9)) (-3298 (($) 16)) (-2683 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3381 (((-522) $ $) NIL)) (-3395 (((-108) $) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) NIL)) (-3294 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1202 (($ (-708) |#1|) 19)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-98 |#1|) (-13 (-121 |#1|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -1202 ($ (-708) |#1|)) (-15 -2924 ($ $ (-588 |#1|))) (-15 -2735 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2735 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -2072 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -2072 ($ $ |#1| (-1 (-588 |#1|) |#1| |#1| |#1|))))) (-1014)) (T -98))
+((-1202 (*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *1 (-98 *3)) (-4 *3 (-1014)))) (-2924 (*1 *1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-98 *3)))) (-2735 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-98 *2)) (-4 *2 (-1014)))) (-2735 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-98 *3)))) (-2072 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1014)) (-5 *1 (-98 *2)))) (-2072 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-588 *2) *2 *2 *2)) (-4 *2 (-1014)) (-5 *1 (-98 *2)))))
+(-13 (-121 |#1|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -1202 ($ (-708) |#1|)) (-15 -2924 ($ $ (-588 |#1|))) (-15 -2735 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2735 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -2072 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -2072 ($ $ |#1| (-1 (-588 |#1|) |#1| |#1| |#1|)))))
+((-3874 ((|#3| |#2| |#2|) 29)) (-2576 ((|#1| |#2| |#2|) 37 (|has| |#1| (-6 (-4240 "*"))))) (-4158 ((|#3| |#2| |#2|) 30)) (-4008 ((|#1| |#2|) 41 (|has| |#1| (-6 (-4240 "*"))))))
+(((-99 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3874 (|#3| |#2| |#2|)) (-15 -4158 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4240 "*"))) (PROGN (-15 -2576 (|#1| |#2| |#2|)) (-15 -4008 (|#1| |#2|))) |%noBranch|)) (-971) (-1142 |#1|) (-626 |#1| |#4| |#5|) (-348 |#1|) (-348 |#1|)) (T -99))
+((-4008 (*1 *2 *3) (-12 (|has| *2 (-6 (-4240 "*"))) (-4 *5 (-348 *2)) (-4 *6 (-348 *2)) (-4 *2 (-971)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1142 *2)) (-4 *4 (-626 *2 *5 *6)))) (-2576 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4240 "*"))) (-4 *5 (-348 *2)) (-4 *6 (-348 *2)) (-4 *2 (-971)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1142 *2)) (-4 *4 (-626 *2 *5 *6)))) (-4158 (*1 *2 *3 *3) (-12 (-4 *4 (-971)) (-4 *2 (-626 *4 *5 *6)) (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1142 *4)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)))) (-3874 (*1 *2 *3 *3) (-12 (-4 *4 (-971)) (-4 *2 (-626 *4 *5 *6)) (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1142 *4)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)))))
+(-10 -7 (-15 -3874 (|#3| |#2| |#2|)) (-15 -4158 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4240 "*"))) (PROGN (-15 -2576 (|#1| |#2| |#2|)) (-15 -4008 (|#1| |#2|))) |%noBranch|))
+((-1419 (((-108) $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-3778 (((-588 (-1085))) 32)) (-3744 (((-2 (|:| |zeros| (-1066 (-202))) (|:| |ones| (-1066 (-202))) (|:| |singularities| (-1066 (-202)))) (-1085)) 35)) (-1562 (((-108) $ $) NIL)))
+(((-100) (-13 (-1014) (-10 -7 (-15 -3778 ((-588 (-1085)))) (-15 -3744 ((-2 (|:| |zeros| (-1066 (-202))) (|:| |ones| (-1066 (-202))) (|:| |singularities| (-1066 (-202)))) (-1085))) (-6 -4238)))) (T -100))
+((-3778 (*1 *2) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-100)))) (-3744 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-2 (|:| |zeros| (-1066 (-202))) (|:| |ones| (-1066 (-202))) (|:| |singularities| (-1066 (-202))))) (-5 *1 (-100)))))
+(-13 (-1014) (-10 -7 (-15 -3778 ((-588 (-1085)))) (-15 -3744 ((-2 (|:| |zeros| (-1066 (-202))) (|:| |ones| (-1066 (-202))) (|:| |singularities| (-1066 (-202)))) (-1085))) (-6 -4238)))
+((-2501 (($ (-588 |#2|)) 11)))
+(((-101 |#1| |#2|) (-10 -8 (-15 -2501 (|#1| (-588 |#2|)))) (-102 |#2|) (-1120)) (T -101))
+NIL
+(-10 -8 (-15 -2501 (|#1| (-588 |#2|))))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) 8)) (-3367 (($) 7 T CONST)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1431 ((|#1| $) 39)) (-3365 (($ |#1| $) 40)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3295 ((|#1| $) 41)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2501 (($ (-588 |#1|)) 42)) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-102 |#1|) (-1197) (-1120)) (T -102))
-((-2795 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-4 *1 (-102 *3)))) (-4087 (*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1120)))) (-4095 (*1 *1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1120)))) (-2116 (*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1120)))))
-(-13 (-461 |t#1|) (-10 -8 (-6 -4239) (-15 -2795 ($ (-588 |t#1|))) (-15 -4087 (|t#1| $)) (-15 -4095 ($ |t#1| $)) (-15 -2116 (|t#1| $))))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2229 (((-522) $) NIL (|has| (-522) (-283)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL (|has| (-522) (-757)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| (-522) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-522) (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| (-522) (-962 (-522))))) (-1484 (((-522) $) NIL) (((-1085) $) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-522) (-962 (-522)))) (((-522) $) NIL (|has| (-522) (-962 (-522))))) (-2277 (($ $ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| (-522) (-507)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-3687 (((-108) $) NIL (|has| (-522) (-757)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-522) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-522) (-815 (-354))))) (-2782 (((-108) $) NIL)) (-2902 (($ $) NIL)) (-2805 (((-522) $) NIL)) (-3004 (((-3 $ "failed") $) NIL (|has| (-522) (-1061)))) (-2556 (((-108) $) NIL (|has| (-522) (-757)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2814 (($ $ $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| (-522) (-784)))) (-1391 (($ (-1 (-522) (-522)) $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| (-522) (-1061)) CONST)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3933 (($ $) NIL (|has| (-522) (-283))) (((-382 (-522)) $) NIL)) (-3686 (((-522) $) NIL (|has| (-522) (-507)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2289 (($ $ (-588 (-522)) (-588 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-522) (-522)) NIL (|has| (-522) (-285 (-522)))) (($ $ (-270 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-270 (-522)))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-1085)) (-588 (-522))) NIL (|has| (-522) (-483 (-1085) (-522)))) (($ $ (-1085) (-522)) NIL (|has| (-522) (-483 (-1085) (-522))))) (-3730 (((-708) $) NIL)) (-2545 (($ $ (-522)) NIL (|has| (-522) (-262 (-522) (-522))))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2157 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-3533 (($ $) NIL)) (-2816 (((-522) $) NIL)) (-1431 (((-821 (-522)) $) NIL (|has| (-522) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-522) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-522) (-563 (-498)))) (((-354) $) NIL (|has| (-522) (-947))) (((-202) $) NIL (|has| (-522) (-947)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-522) (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) 7) (($ (-522)) NIL) (($ (-1085)) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL) (((-930 2) $) 9)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| (-522) (-838))) (|has| (-522) (-133))))) (-2323 (((-708)) NIL)) (-3025 (((-522) $) NIL (|has| (-522) (-507)))) (-2271 (($ (-382 (-522))) 8)) (-3958 (((-108) $ $) NIL)) (-2241 (($ $) NIL (|has| (-522) (-757)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-1574 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1558 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1549 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1620 (($ $ $) NIL) (($ (-522) (-522)) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-522) $) NIL) (($ $ (-522)) NIL)))
-(((-103) (-13 (-919 (-522)) (-10 -8 (-15 -2190 ((-382 (-522)) $)) (-15 -2190 ((-930 2) $)) (-15 -3933 ((-382 (-522)) $)) (-15 -2271 ($ (-382 (-522))))))) (T -103))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-103)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-930 2)) (-5 *1 (-103)))) (-3933 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-103)))) (-2271 (*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-103)))))
-(-13 (-919 (-522)) (-10 -8 (-15 -2190 ((-382 (-522)) $)) (-15 -2190 ((-930 2) $)) (-15 -3933 ((-382 (-522)) $)) (-15 -2271 ($ (-382 (-522))))))
-((-2420 (((-588 (-893)) $) 13)) (-2888 (((-1085) $) 10)) (-2190 (((-792) $) 22)) (-2837 (($ (-1085) (-588 (-893))) 14)))
-(((-104) (-13 (-562 (-792)) (-10 -8 (-15 -2888 ((-1085) $)) (-15 -2420 ((-588 (-893)) $)) (-15 -2837 ($ (-1085) (-588 (-893))))))) (T -104))
-((-2888 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-104)))) (-2420 (*1 *2 *1) (-12 (-5 *2 (-588 (-893))) (-5 *1 (-104)))) (-2837 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-893))) (-5 *1 (-104)))))
-(-13 (-562 (-792)) (-10 -8 (-15 -2888 ((-1085) $)) (-15 -2420 ((-588 (-893)) $)) (-15 -2837 ($ (-1085) (-588 (-893))))))
-((-1416 (((-108) $ $) NIL)) (-1270 (((-1032) $ (-1032)) 23)) (-2563 (($ $ (-1068)) 17)) (-1789 (((-3 (-1032) "failed") $) 22)) (-4045 (((-1032) $) 20)) (-4117 (((-1032) $ (-1032)) 25)) (-3238 (((-1032) $) 24)) (-1544 (($ (-363)) NIL) (($ (-363) (-1068)) 16)) (-2888 (((-363) $) NIL)) (-2385 (((-1068) $) NIL)) (-3469 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-2152 (($ $) 18)) (-1531 (((-108) $ $) NIL)))
-(((-105) (-13 (-339 (-363) (-1032)) (-10 -8 (-15 -1789 ((-3 (-1032) "failed") $)) (-15 -3238 ((-1032) $)) (-15 -4117 ((-1032) $ (-1032)))))) (T -105))
-((-1789 (*1 *2 *1) (|partial| -12 (-5 *2 (-1032)) (-5 *1 (-105)))) (-3238 (*1 *2 *1) (-12 (-5 *2 (-1032)) (-5 *1 (-105)))) (-4117 (*1 *2 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-105)))))
-(-13 (-339 (-363) (-1032)) (-10 -8 (-15 -1789 ((-3 (-1032) "failed") $)) (-15 -3238 ((-1032) $)) (-15 -4117 ((-1032) $ (-1032)))))
-((-1416 (((-108) $ $) NIL)) (-1501 (($ $) NIL)) (-3349 (($ $ $) NIL)) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) $) NIL (|has| (-108) (-784))) (((-108) (-1 (-108) (-108) (-108)) $) NIL)) (-3537 (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| (-108) (-784)))) (($ (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4239)))) (-3216 (($ $) NIL (|has| (-108) (-784))) (($ (-1 (-108) (-108) (-108)) $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-2379 (((-108) $ (-1133 (-522)) (-108)) NIL (|has| $ (-6 -4239))) (((-108) $ (-522) (-108)) NIL (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-1423 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238))) (($ (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-3864 (((-108) (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-108) (-108)) $ (-108)) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-108) (-108)) $ (-108) (-108)) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-3854 (((-108) $ (-522) (-108)) NIL (|has| $ (-6 -4239)))) (-3631 (((-108) $ (-522)) NIL)) (-3238 (((-522) (-108) $ (-522)) NIL (|has| (-108) (-1014))) (((-522) (-108) $) NIL (|has| (-108) (-1014))) (((-522) (-1 (-108) (-108)) $) NIL)) (-3837 (((-588 (-108)) $) NIL (|has| $ (-6 -4238)))) (-3999 (($ $ $) NIL)) (-2401 (($ $) NIL)) (-2129 (($ $ $) NIL)) (-1811 (($ (-708) (-108)) 8)) (-1920 (($ $ $) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL)) (-2160 (($ $ $) NIL (|has| (-108) (-784))) (($ (-1 (-108) (-108) (-108)) $ $) NIL)) (-3308 (((-588 (-108)) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL)) (-3838 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-108) (-108) (-108)) $ $) NIL) (($ (-1 (-108) (-108)) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-1661 (($ $ $ (-522)) NIL) (($ (-108) $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL)) (-2294 (((-108) $) NIL (|has| (-522) (-784)))) (-1414 (((-3 (-108) "failed") (-1 (-108) (-108)) $) NIL)) (-2602 (($ $ (-108)) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-108)) (-588 (-108))) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-108) (-108)) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-270 (-108))) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-588 (-270 (-108)))) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-1525 (((-588 (-108)) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 (($ $ (-1133 (-522))) NIL) (((-108) $ (-522)) NIL) (((-108) $ (-522) (-108)) NIL)) (-3696 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-4168 (((-708) (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014)))) (((-708) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-108) (-563 (-498))))) (-2201 (($ (-588 (-108))) NIL)) (-4165 (($ (-588 $)) NIL) (($ $ $) NIL) (($ (-108) $) NIL) (($ $ (-108)) NIL)) (-2190 (((-792) $) NIL)) (-3836 (($ (-708) (-108)) 9)) (-3648 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-4015 (($ $ $) NIL)) (-3510 (($ $) NIL)) (-2767 (($ $ $) NIL)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) NIL)) (-2324 (($ $ $) NIL)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-106) (-13 (-119) (-10 -8 (-15 -3836 ($ (-708) (-108)))))) (T -106))
-((-3836 (*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *3 (-108)) (-5 *1 (-106)))))
-(-13 (-119) (-10 -8 (-15 -3836 ($ (-708) (-108)))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#1| $) 23) (($ $ |#2|) 26)))
+((-2501 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-4 *1 (-102 *3)))) (-3295 (*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1120)))) (-3365 (*1 *1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1120)))) (-1431 (*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1120)))))
+(-13 (-461 |t#1|) (-10 -8 (-6 -4239) (-15 -2501 ($ (-588 |t#1|))) (-15 -3295 (|t#1| $)) (-15 -3365 ($ |t#1| $)) (-15 -1431 (|t#1| $))))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3049 (((-522) $) NIL (|has| (-522) (-283)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL (|has| (-522) (-757)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| (-522) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-522) (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| (-522) (-962 (-522))))) (-1478 (((-522) $) NIL) (((-1085) $) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-522) (-962 (-522)))) (((-522) $) NIL (|has| (-522) (-962 (-522))))) (-2333 (($ $ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| (-522) (-507)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3603 (((-108) $) NIL (|has| (-522) (-757)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-522) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-522) (-815 (-354))))) (-2859 (((-108) $) NIL)) (-1558 (($ $) NIL)) (-2947 (((-522) $) NIL)) (-4208 (((-3 $ "failed") $) NIL (|has| (-522) (-1061)))) (-3740 (((-108) $) NIL (|has| (-522) (-757)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1308 (($ $ $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| (-522) (-784)))) (-3810 (($ (-1 (-522) (-522)) $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| (-522) (-1061)) CONST)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4194 (($ $) NIL (|has| (-522) (-283))) (((-382 (-522)) $) NIL)) (-3592 (((-522) $) NIL (|has| (-522) (-507)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2330 (($ $ (-588 (-522)) (-588 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-522) (-522)) NIL (|has| (-522) (-285 (-522)))) (($ $ (-270 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-270 (-522)))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-1085)) (-588 (-522))) NIL (|has| (-522) (-483 (-1085) (-522)))) (($ $ (-1085) (-522)) NIL (|has| (-522) (-483 (-1085) (-522))))) (-4031 (((-708) $) NIL)) (-2683 (($ $ (-522)) NIL (|has| (-522) (-262 (-522) (-522))))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2731 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-2762 (($ $) NIL)) (-2959 (((-522) $) NIL)) (-3873 (((-821 (-522)) $) NIL (|has| (-522) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-522) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-522) (-563 (-498)))) (((-354) $) NIL (|has| (-522) (-947))) (((-202) $) NIL (|has| (-522) (-947)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-522) (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) 7) (($ (-522)) NIL) (($ (-1085)) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL) (((-930 2) $) 9)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| (-522) (-838))) (|has| (-522) (-133))))) (-2742 (((-708)) NIL)) (-1379 (((-522) $) NIL (|has| (-522) (-507)))) (-2155 (($ (-382 (-522))) 8)) (-1407 (((-108) $ $) NIL)) (-4126 (($ $) NIL (|has| (-522) (-757)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-1623 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1597 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1587 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1682 (($ $ $) NIL) (($ (-522) (-522)) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-522) $) NIL) (($ $ (-522)) NIL)))
+(((-103) (-13 (-919 (-522)) (-10 -8 (-15 -2217 ((-382 (-522)) $)) (-15 -2217 ((-930 2) $)) (-15 -4194 ((-382 (-522)) $)) (-15 -2155 ($ (-382 (-522))))))) (T -103))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-103)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-930 2)) (-5 *1 (-103)))) (-4194 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-103)))) (-2155 (*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-103)))))
+(-13 (-919 (-522)) (-10 -8 (-15 -2217 ((-382 (-522)) $)) (-15 -2217 ((-930 2) $)) (-15 -4194 ((-382 (-522)) $)) (-15 -2155 ($ (-382 (-522))))))
+((-2497 (((-588 (-893)) $) 13)) (-3015 (((-1085) $) 10)) (-2217 (((-792) $) 22)) (-2904 (($ (-1085) (-588 (-893))) 14)))
+(((-104) (-13 (-562 (-792)) (-10 -8 (-15 -3015 ((-1085) $)) (-15 -2497 ((-588 (-893)) $)) (-15 -2904 ($ (-1085) (-588 (-893))))))) (T -104))
+((-3015 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-104)))) (-2497 (*1 *2 *1) (-12 (-5 *2 (-588 (-893))) (-5 *1 (-104)))) (-2904 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-893))) (-5 *1 (-104)))))
+(-13 (-562 (-792)) (-10 -8 (-15 -3015 ((-1085) $)) (-15 -2497 ((-588 (-893)) $)) (-15 -2904 ($ (-1085) (-588 (-893))))))
+((-1419 (((-108) $ $) NIL)) (-2710 (((-1032) $ (-1032)) 23)) (-3813 (($ $ (-1068)) 17)) (-3688 (((-3 (-1032) "failed") $) 22)) (-2982 (((-1032) $) 20)) (-2403 (((-1032) $ (-1032)) 25)) (-3314 (((-1032) $) 24)) (-1566 (($ (-363)) NIL) (($ (-363) (-1068)) 16)) (-3015 (((-363) $) NIL)) (-2311 (((-1068) $) NIL)) (-3270 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-3116 (($ $) 18)) (-1562 (((-108) $ $) NIL)))
+(((-105) (-13 (-339 (-363) (-1032)) (-10 -8 (-15 -3688 ((-3 (-1032) "failed") $)) (-15 -3314 ((-1032) $)) (-15 -2403 ((-1032) $ (-1032)))))) (T -105))
+((-3688 (*1 *2 *1) (|partial| -12 (-5 *2 (-1032)) (-5 *1 (-105)))) (-3314 (*1 *2 *1) (-12 (-5 *2 (-1032)) (-5 *1 (-105)))) (-2403 (*1 *2 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-105)))))
+(-13 (-339 (-363) (-1032)) (-10 -8 (-15 -3688 ((-3 (-1032) "failed") $)) (-15 -3314 ((-1032) $)) (-15 -2403 ((-1032) $ (-1032)))))
+((-1419 (((-108) $ $) NIL)) (-1504 (($ $) NIL)) (-3454 (($ $ $) NIL)) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) $) NIL (|has| (-108) (-784))) (((-108) (-1 (-108) (-108) (-108)) $) NIL)) (-2806 (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| (-108) (-784)))) (($ (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4239)))) (-3296 (($ $) NIL (|has| (-108) (-784))) (($ (-1 (-108) (-108) (-108)) $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-2437 (((-108) $ (-1133 (-522)) (-108)) NIL (|has| $ (-6 -4239))) (((-108) $ (-522) (-108)) NIL (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-1424 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238))) (($ (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-2153 (((-108) (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-108) (-108)) $ (-108)) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-108) (-108)) $ (-108) (-108)) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-2411 (((-108) $ (-522) (-108)) NIL (|has| $ (-6 -4239)))) (-2186 (((-108) $ (-522)) NIL)) (-3314 (((-522) (-108) $ (-522)) NIL (|has| (-108) (-1014))) (((-522) (-108) $) NIL (|has| (-108) (-1014))) (((-522) (-1 (-108) (-108)) $) NIL)) (-2395 (((-588 (-108)) $) NIL (|has| $ (-6 -4238)))) (-4070 (($ $ $) NIL)) (-2473 (($ $) NIL)) (-1588 (($ $ $) NIL)) (-1893 (($ (-708) (-108)) 8)) (-1309 (($ $ $) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL)) (-3164 (($ $ $) NIL (|has| (-108) (-784))) (($ (-1 (-108) (-108) (-108)) $ $) NIL)) (-4084 (((-588 (-108)) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL)) (-2397 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-108) (-108) (-108)) $ $) NIL) (($ (-1 (-108) (-108)) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-1731 (($ $ $ (-522)) NIL) (($ (-108) $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL)) (-2337 (((-108) $) NIL (|has| (-522) (-784)))) (-2187 (((-3 (-108) "failed") (-1 (-108) (-108)) $) NIL)) (-1972 (($ $ (-108)) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-108)) (-588 (-108))) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-108) (-108)) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-270 (-108))) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-588 (-270 (-108)))) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-1973 (((-588 (-108)) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 (($ $ (-1133 (-522))) NIL) (((-108) $ (-522)) NIL) (((-108) $ (-522) (-108)) NIL)) (-3835 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-4187 (((-708) (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014)))) (((-708) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-108) (-563 (-498))))) (-2227 (($ (-588 (-108))) NIL)) (-4170 (($ (-588 $)) NIL) (($ $ $) NIL) (($ (-108) $) NIL) (($ $ (-108)) NIL)) (-2217 (((-792) $) NIL)) (-2780 (($ (-708) (-108)) 9)) (-1381 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-4079 (($ $ $) NIL)) (-3622 (($ $) NIL)) (-2920 (($ $ $) NIL)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) NIL)) (-2388 (($ $ $) NIL)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-106) (-13 (-119) (-10 -8 (-15 -2780 ($ (-708) (-108)))))) (T -106))
+((-2780 (*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *3 (-108)) (-5 *1 (-106)))))
+(-13 (-119) (-10 -8 (-15 -2780 ($ (-708) (-108)))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#1| $) 23) (($ $ |#2|) 26)))
(((-107 |#1| |#2|) (-1197) (-971) (-971)) (T -107))
NIL
(-13 (-590 |t#1|) (-977 |t#2|) (-10 -7 (-6 -4233) (-6 -4232)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#1|) . T) ((-977 |#2|) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-1501 (($ $) 12)) (-3349 (($ $ $) 17)) (-1433 (($) 8 T CONST)) (-3402 (((-108) $) 7)) (-1629 (((-708)) 26)) (-3255 (($) 32)) (-3999 (($ $ $) 15)) (-2401 (($ $) 10)) (-2129 (($ $ $) 18)) (-1920 (($ $ $) 19)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2120 (((-850) $) 31)) (-2385 (((-1068) $) NIL)) (-2717 (($ (-850)) 30)) (-3338 (($ $ $) 21)) (-4151 (((-1032) $) NIL)) (-2282 (($) 9 T CONST)) (-4150 (($ $ $) 22)) (-1431 (((-498) $) 38)) (-2190 (((-792) $) 41)) (-4015 (($ $ $) 13)) (-3510 (($ $) 11)) (-2767 (($ $ $) 16)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 20)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 24)) (-2324 (($ $ $) 14)))
-(((-108) (-13 (-784) (-343) (-603) (-895) (-563 (-498)) (-10 -8 (-15 -1433 ($) -2677) (-15 -2282 ($) -2677) (-15 -3510 ($ $)) (-15 -3349 ($ $ $)) (-15 -1920 ($ $ $)) (-15 -2129 ($ $ $)) (-15 -3402 ((-108) $))))) (T -108))
-((-1433 (*1 *1) (-5 *1 (-108))) (-2282 (*1 *1) (-5 *1 (-108))) (-3510 (*1 *1 *1) (-5 *1 (-108))) (-3349 (*1 *1 *1 *1) (-5 *1 (-108))) (-1920 (*1 *1 *1 *1) (-5 *1 (-108))) (-2129 (*1 *1 *1 *1) (-5 *1 (-108))) (-3402 (*1 *1 *1) (-5 *1 (-108))))
-(-13 (-784) (-343) (-603) (-895) (-563 (-498)) (-10 -8 (-15 -1433 ($) -2677) (-15 -2282 ($) -2677) (-15 -3510 ($ $)) (-15 -3349 ($ $ $)) (-15 -1920 ($ $ $)) (-15 -2129 ($ $ $)) (-15 -3402 ((-108) $))))
-((-3250 (((-3 (-1 |#1| (-588 |#1|)) "failed") (-110)) 18) (((-110) (-110) (-1 |#1| |#1|)) 13) (((-110) (-110) (-1 |#1| (-588 |#1|))) 11) (((-3 |#1| "failed") (-110) (-588 |#1|)) 20)) (-1812 (((-3 (-588 (-1 |#1| (-588 |#1|))) "failed") (-110)) 24) (((-110) (-110) (-1 |#1| |#1|)) 30) (((-110) (-110) (-588 (-1 |#1| (-588 |#1|)))) 26)) (-3045 (((-110) |#1|) 54 (|has| |#1| (-784)))) (-3073 (((-3 |#1| "failed") (-110)) 49 (|has| |#1| (-784)))))
-(((-109 |#1|) (-10 -7 (-15 -3250 ((-3 |#1| "failed") (-110) (-588 |#1|))) (-15 -3250 ((-110) (-110) (-1 |#1| (-588 |#1|)))) (-15 -3250 ((-110) (-110) (-1 |#1| |#1|))) (-15 -3250 ((-3 (-1 |#1| (-588 |#1|)) "failed") (-110))) (-15 -1812 ((-110) (-110) (-588 (-1 |#1| (-588 |#1|))))) (-15 -1812 ((-110) (-110) (-1 |#1| |#1|))) (-15 -1812 ((-3 (-588 (-1 |#1| (-588 |#1|))) "failed") (-110))) (IF (|has| |#1| (-784)) (PROGN (-15 -3045 ((-110) |#1|)) (-15 -3073 ((-3 |#1| "failed") (-110)))) |%noBranch|)) (-1014)) (T -109))
-((-3073 (*1 *2 *3) (|partial| -12 (-5 *3 (-110)) (-4 *2 (-1014)) (-4 *2 (-784)) (-5 *1 (-109 *2)))) (-3045 (*1 *2 *3) (-12 (-5 *2 (-110)) (-5 *1 (-109 *3)) (-4 *3 (-784)) (-4 *3 (-1014)))) (-1812 (*1 *2 *3) (|partial| -12 (-5 *3 (-110)) (-5 *2 (-588 (-1 *4 (-588 *4)))) (-5 *1 (-109 *4)) (-4 *4 (-1014)))) (-1812 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1014)) (-5 *1 (-109 *4)))) (-1812 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-588 (-1 *4 (-588 *4)))) (-4 *4 (-1014)) (-5 *1 (-109 *4)))) (-3250 (*1 *2 *3) (|partial| -12 (-5 *3 (-110)) (-5 *2 (-1 *4 (-588 *4))) (-5 *1 (-109 *4)) (-4 *4 (-1014)))) (-3250 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1014)) (-5 *1 (-109 *4)))) (-3250 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 (-588 *4))) (-4 *4 (-1014)) (-5 *1 (-109 *4)))) (-3250 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-110)) (-5 *4 (-588 *2)) (-5 *1 (-109 *2)) (-4 *2 (-1014)))))
-(-10 -7 (-15 -3250 ((-3 |#1| "failed") (-110) (-588 |#1|))) (-15 -3250 ((-110) (-110) (-1 |#1| (-588 |#1|)))) (-15 -3250 ((-110) (-110) (-1 |#1| |#1|))) (-15 -3250 ((-3 (-1 |#1| (-588 |#1|)) "failed") (-110))) (-15 -1812 ((-110) (-110) (-588 (-1 |#1| (-588 |#1|))))) (-15 -1812 ((-110) (-110) (-1 |#1| |#1|))) (-15 -1812 ((-3 (-588 (-1 |#1| (-588 |#1|))) "failed") (-110))) (IF (|has| |#1| (-784)) (PROGN (-15 -3045 ((-110) |#1|)) (-15 -3073 ((-3 |#1| "failed") (-110)))) |%noBranch|))
-((-1416 (((-108) $ $) NIL)) (-3152 (((-708) $) 68) (($ $ (-708)) 30)) (-2054 (((-108) $) 32)) (-3507 (($ $ (-1068) (-711)) 26)) (-3926 (($ $ (-44 (-1068) (-711))) 13)) (-1931 (((-3 (-711) "failed") $ (-1068)) 24)) (-2420 (((-44 (-1068) (-711)) $) 12)) (-2626 (($ (-1085)) 15) (($ (-1085) (-708)) 20)) (-2191 (((-108) $) 31)) (-1401 (((-108) $) 33)) (-2888 (((-1085) $) 8)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-2249 (((-108) $ (-1085)) 10)) (-1718 (($ $ (-1 (-498) (-588 (-498)))) 50) (((-3 (-1 (-498) (-588 (-498))) "failed") $) 54)) (-4151 (((-1032) $) NIL)) (-2818 (((-108) $ (-1068)) 29)) (-2731 (($ $ (-1 (-108) $ $)) 35)) (-1678 (((-3 (-1 (-792) (-588 (-792))) "failed") $) 52) (($ $ (-1 (-792) (-588 (-792)))) 41) (($ $ (-1 (-792) (-792))) 43)) (-2010 (($ $ (-1068)) 45)) (-2404 (($ $) 61)) (-3788 (($ $ (-1 (-108) $ $)) 36)) (-2190 (((-792) $) 48)) (-2983 (($ $ (-1068)) 27)) (-1703 (((-3 (-708) "failed") $) 56)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 67)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 73)))
-(((-110) (-13 (-784) (-10 -8 (-15 -2888 ((-1085) $)) (-15 -2420 ((-44 (-1068) (-711)) $)) (-15 -2404 ($ $)) (-15 -2626 ($ (-1085))) (-15 -2626 ($ (-1085) (-708))) (-15 -1703 ((-3 (-708) "failed") $)) (-15 -2191 ((-108) $)) (-15 -2054 ((-108) $)) (-15 -1401 ((-108) $)) (-15 -3152 ((-708) $)) (-15 -3152 ($ $ (-708))) (-15 -2731 ($ $ (-1 (-108) $ $))) (-15 -3788 ($ $ (-1 (-108) $ $))) (-15 -1678 ((-3 (-1 (-792) (-588 (-792))) "failed") $)) (-15 -1678 ($ $ (-1 (-792) (-588 (-792))))) (-15 -1678 ($ $ (-1 (-792) (-792)))) (-15 -1718 ($ $ (-1 (-498) (-588 (-498))))) (-15 -1718 ((-3 (-1 (-498) (-588 (-498))) "failed") $)) (-15 -2249 ((-108) $ (-1085))) (-15 -2818 ((-108) $ (-1068))) (-15 -2983 ($ $ (-1068))) (-15 -2010 ($ $ (-1068))) (-15 -1931 ((-3 (-711) "failed") $ (-1068))) (-15 -3507 ($ $ (-1068) (-711))) (-15 -3926 ($ $ (-44 (-1068) (-711))))))) (T -110))
-((-2888 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-110)))) (-2420 (*1 *2 *1) (-12 (-5 *2 (-44 (-1068) (-711))) (-5 *1 (-110)))) (-2404 (*1 *1 *1) (-5 *1 (-110))) (-2626 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-110)))) (-2626 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-708)) (-5 *1 (-110)))) (-1703 (*1 *2 *1) (|partial| -12 (-5 *2 (-708)) (-5 *1 (-110)))) (-2191 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))) (-2054 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))) (-1401 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))) (-3152 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-110)))) (-3152 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-110)))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))) (-3788 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))) (-1678 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-792) (-588 (-792)))) (-5 *1 (-110)))) (-1678 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-792) (-588 (-792)))) (-5 *1 (-110)))) (-1678 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-792) (-792))) (-5 *1 (-110)))) (-1718 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-498) (-588 (-498)))) (-5 *1 (-110)))) (-1718 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-498) (-588 (-498)))) (-5 *1 (-110)))) (-2249 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-108)) (-5 *1 (-110)))) (-2818 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-108)) (-5 *1 (-110)))) (-2983 (*1 *1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-110)))) (-2010 (*1 *1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-110)))) (-1931 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1068)) (-5 *2 (-711)) (-5 *1 (-110)))) (-3507 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1068)) (-5 *3 (-711)) (-5 *1 (-110)))) (-3926 (*1 *1 *1 *2) (-12 (-5 *2 (-44 (-1068) (-711))) (-5 *1 (-110)))))
-(-13 (-784) (-10 -8 (-15 -2888 ((-1085) $)) (-15 -2420 ((-44 (-1068) (-711)) $)) (-15 -2404 ($ $)) (-15 -2626 ($ (-1085))) (-15 -2626 ($ (-1085) (-708))) (-15 -1703 ((-3 (-708) "failed") $)) (-15 -2191 ((-108) $)) (-15 -2054 ((-108) $)) (-15 -1401 ((-108) $)) (-15 -3152 ((-708) $)) (-15 -3152 ($ $ (-708))) (-15 -2731 ($ $ (-1 (-108) $ $))) (-15 -3788 ($ $ (-1 (-108) $ $))) (-15 -1678 ((-3 (-1 (-792) (-588 (-792))) "failed") $)) (-15 -1678 ($ $ (-1 (-792) (-588 (-792))))) (-15 -1678 ($ $ (-1 (-792) (-792)))) (-15 -1718 ($ $ (-1 (-498) (-588 (-498))))) (-15 -1718 ((-3 (-1 (-498) (-588 (-498))) "failed") $)) (-15 -2249 ((-108) $ (-1085))) (-15 -2818 ((-108) $ (-1068))) (-15 -2983 ($ $ (-1068))) (-15 -2010 ($ $ (-1068))) (-15 -1931 ((-3 (-711) "failed") $ (-1068))) (-15 -3507 ($ $ (-1068) (-711))) (-15 -3926 ($ $ (-44 (-1068) (-711))))))
-((-1983 (((-522) |#2|) 36)))
-(((-111 |#1| |#2|) (-10 -7 (-15 -1983 ((-522) |#2|))) (-13 (-338) (-962 (-382 (-522)))) (-1142 |#1|)) (T -111))
-((-1983 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-962 (-382 *2)))) (-5 *2 (-522)) (-5 *1 (-111 *4 *3)) (-4 *3 (-1142 *4)))))
-(-10 -7 (-15 -1983 ((-522) |#2|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1929 (($ $ (-522)) NIL)) (-1687 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-1799 (($ (-1081 (-522)) (-522)) NIL)) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-1573 (($ $) NIL)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-3714 (((-708) $) NIL)) (-2782 (((-108) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3010 (((-522)) NIL)) (-1337 (((-522) $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3719 (($ $ (-522)) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2615 (((-1066 (-522)) $) NIL)) (-1522 (($ $) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL)) (-2323 (((-708)) NIL)) (-3958 (((-108) $ $) NIL)) (-3898 (((-522) $ (-522)) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-1504 (($ $) 12)) (-3454 (($ $ $) 17)) (-1433 (($) 8 T CONST)) (-3501 (((-108) $) 7)) (-1685 (((-708)) 26)) (-3344 (($) 32)) (-4070 (($ $ $) 15)) (-2473 (($ $) 10)) (-1588 (($ $ $) 18)) (-1309 (($ $ $) 19)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-1475 (((-850) $) 31)) (-2311 (((-1068) $) NIL)) (-2882 (($ (-850)) 30)) (-3444 (($ $ $) 21)) (-4174 (((-1032) $) NIL)) (-2338 (($) 9 T CONST)) (-2820 (($ $ $) 22)) (-3873 (((-498) $) 38)) (-2217 (((-792) $) 41)) (-4079 (($ $ $) 13)) (-3622 (($ $) 11)) (-2920 (($ $ $) 16)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 20)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 24)) (-2388 (($ $ $) 14)))
+(((-108) (-13 (-784) (-343) (-603) (-895) (-563 (-498)) (-10 -8 (-15 -1433 ($) -2855) (-15 -2338 ($) -2855) (-15 -3622 ($ $)) (-15 -3454 ($ $ $)) (-15 -1309 ($ $ $)) (-15 -1588 ($ $ $)) (-15 -3501 ((-108) $))))) (T -108))
+((-1433 (*1 *1) (-5 *1 (-108))) (-2338 (*1 *1) (-5 *1 (-108))) (-3622 (*1 *1 *1) (-5 *1 (-108))) (-3454 (*1 *1 *1 *1) (-5 *1 (-108))) (-1309 (*1 *1 *1 *1) (-5 *1 (-108))) (-1588 (*1 *1 *1 *1) (-5 *1 (-108))) (-3501 (*1 *1 *1) (-5 *1 (-108))))
+(-13 (-784) (-343) (-603) (-895) (-563 (-498)) (-10 -8 (-15 -1433 ($) -2855) (-15 -2338 ($) -2855) (-15 -3622 ($ $)) (-15 -3454 ($ $ $)) (-15 -1309 ($ $ $)) (-15 -1588 ($ $ $)) (-15 -3501 ((-108) $))))
+((-1710 (((-3 (-1 |#1| (-588 |#1|)) "failed") (-110)) 18) (((-110) (-110) (-1 |#1| |#1|)) 13) (((-110) (-110) (-1 |#1| (-588 |#1|))) 11) (((-3 |#1| "failed") (-110) (-588 |#1|)) 20)) (-3880 (((-3 (-588 (-1 |#1| (-588 |#1|))) "failed") (-110)) 24) (((-110) (-110) (-1 |#1| |#1|)) 30) (((-110) (-110) (-588 (-1 |#1| (-588 |#1|)))) 26)) (-3424 (((-110) |#1|) 54 (|has| |#1| (-784)))) (-3646 (((-3 |#1| "failed") (-110)) 49 (|has| |#1| (-784)))))
+(((-109 |#1|) (-10 -7 (-15 -1710 ((-3 |#1| "failed") (-110) (-588 |#1|))) (-15 -1710 ((-110) (-110) (-1 |#1| (-588 |#1|)))) (-15 -1710 ((-110) (-110) (-1 |#1| |#1|))) (-15 -1710 ((-3 (-1 |#1| (-588 |#1|)) "failed") (-110))) (-15 -3880 ((-110) (-110) (-588 (-1 |#1| (-588 |#1|))))) (-15 -3880 ((-110) (-110) (-1 |#1| |#1|))) (-15 -3880 ((-3 (-588 (-1 |#1| (-588 |#1|))) "failed") (-110))) (IF (|has| |#1| (-784)) (PROGN (-15 -3424 ((-110) |#1|)) (-15 -3646 ((-3 |#1| "failed") (-110)))) |%noBranch|)) (-1014)) (T -109))
+((-3646 (*1 *2 *3) (|partial| -12 (-5 *3 (-110)) (-4 *2 (-1014)) (-4 *2 (-784)) (-5 *1 (-109 *2)))) (-3424 (*1 *2 *3) (-12 (-5 *2 (-110)) (-5 *1 (-109 *3)) (-4 *3 (-784)) (-4 *3 (-1014)))) (-3880 (*1 *2 *3) (|partial| -12 (-5 *3 (-110)) (-5 *2 (-588 (-1 *4 (-588 *4)))) (-5 *1 (-109 *4)) (-4 *4 (-1014)))) (-3880 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1014)) (-5 *1 (-109 *4)))) (-3880 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-588 (-1 *4 (-588 *4)))) (-4 *4 (-1014)) (-5 *1 (-109 *4)))) (-1710 (*1 *2 *3) (|partial| -12 (-5 *3 (-110)) (-5 *2 (-1 *4 (-588 *4))) (-5 *1 (-109 *4)) (-4 *4 (-1014)))) (-1710 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1014)) (-5 *1 (-109 *4)))) (-1710 (*1 *2 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 (-588 *4))) (-4 *4 (-1014)) (-5 *1 (-109 *4)))) (-1710 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-110)) (-5 *4 (-588 *2)) (-5 *1 (-109 *2)) (-4 *2 (-1014)))))
+(-10 -7 (-15 -1710 ((-3 |#1| "failed") (-110) (-588 |#1|))) (-15 -1710 ((-110) (-110) (-1 |#1| (-588 |#1|)))) (-15 -1710 ((-110) (-110) (-1 |#1| |#1|))) (-15 -1710 ((-3 (-1 |#1| (-588 |#1|)) "failed") (-110))) (-15 -3880 ((-110) (-110) (-588 (-1 |#1| (-588 |#1|))))) (-15 -3880 ((-110) (-110) (-1 |#1| |#1|))) (-15 -3880 ((-3 (-588 (-1 |#1| (-588 |#1|))) "failed") (-110))) (IF (|has| |#1| (-784)) (PROGN (-15 -3424 ((-110) |#1|)) (-15 -3646 ((-3 |#1| "failed") (-110)))) |%noBranch|))
+((-1419 (((-108) $ $) NIL)) (-3192 (((-708) $) 68) (($ $ (-708)) 30)) (-2675 (((-108) $) 32)) (-2451 (($ $ (-1068) (-711)) 26)) (-4112 (($ $ (-44 (-1068) (-711))) 13)) (-2008 (((-3 (-711) "failed") $ (-1068)) 24)) (-2497 (((-44 (-1068) (-711)) $) 12)) (-1771 (($ (-1085)) 15) (($ (-1085) (-708)) 20)) (-3408 (((-108) $) 31)) (-3867 (((-108) $) 33)) (-3015 (((-1085) $) 8)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-2935 (((-108) $ (-1085)) 10)) (-1800 (($ $ (-1 (-498) (-588 (-498)))) 50) (((-3 (-1 (-498) (-588 (-498))) "failed") $) 54)) (-4174 (((-1032) $) NIL)) (-2753 (((-108) $ (-1068)) 29)) (-3935 (($ $ (-1 (-108) $ $)) 35)) (-1757 (((-3 (-1 (-792) (-588 (-792))) "failed") $) 52) (($ $ (-1 (-792) (-588 (-792)))) 41) (($ $ (-1 (-792) (-792))) 43)) (-3371 (($ $ (-1068)) 45)) (-2463 (($ $) 61)) (-3426 (($ $ (-1 (-108) $ $)) 36)) (-2217 (((-792) $) 48)) (-3115 (($ $ (-1068)) 27)) (-4096 (((-3 (-708) "failed") $) 56)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 67)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 73)))
+(((-110) (-13 (-784) (-10 -8 (-15 -3015 ((-1085) $)) (-15 -2497 ((-44 (-1068) (-711)) $)) (-15 -2463 ($ $)) (-15 -1771 ($ (-1085))) (-15 -1771 ($ (-1085) (-708))) (-15 -4096 ((-3 (-708) "failed") $)) (-15 -3408 ((-108) $)) (-15 -2675 ((-108) $)) (-15 -3867 ((-108) $)) (-15 -3192 ((-708) $)) (-15 -3192 ($ $ (-708))) (-15 -3935 ($ $ (-1 (-108) $ $))) (-15 -3426 ($ $ (-1 (-108) $ $))) (-15 -1757 ((-3 (-1 (-792) (-588 (-792))) "failed") $)) (-15 -1757 ($ $ (-1 (-792) (-588 (-792))))) (-15 -1757 ($ $ (-1 (-792) (-792)))) (-15 -1800 ($ $ (-1 (-498) (-588 (-498))))) (-15 -1800 ((-3 (-1 (-498) (-588 (-498))) "failed") $)) (-15 -2935 ((-108) $ (-1085))) (-15 -2753 ((-108) $ (-1068))) (-15 -3115 ($ $ (-1068))) (-15 -3371 ($ $ (-1068))) (-15 -2008 ((-3 (-711) "failed") $ (-1068))) (-15 -2451 ($ $ (-1068) (-711))) (-15 -4112 ($ $ (-44 (-1068) (-711))))))) (T -110))
+((-3015 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-110)))) (-2497 (*1 *2 *1) (-12 (-5 *2 (-44 (-1068) (-711))) (-5 *1 (-110)))) (-2463 (*1 *1 *1) (-5 *1 (-110))) (-1771 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-110)))) (-1771 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-708)) (-5 *1 (-110)))) (-4096 (*1 *2 *1) (|partial| -12 (-5 *2 (-708)) (-5 *1 (-110)))) (-3408 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))) (-2675 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))) (-3867 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))) (-3192 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-110)))) (-3192 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-110)))) (-3935 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))) (-3426 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))) (-1757 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-792) (-588 (-792)))) (-5 *1 (-110)))) (-1757 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-792) (-588 (-792)))) (-5 *1 (-110)))) (-1757 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-792) (-792))) (-5 *1 (-110)))) (-1800 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-498) (-588 (-498)))) (-5 *1 (-110)))) (-1800 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-498) (-588 (-498)))) (-5 *1 (-110)))) (-2935 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-108)) (-5 *1 (-110)))) (-2753 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-108)) (-5 *1 (-110)))) (-3115 (*1 *1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-110)))) (-3371 (*1 *1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-110)))) (-2008 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1068)) (-5 *2 (-711)) (-5 *1 (-110)))) (-2451 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1068)) (-5 *3 (-711)) (-5 *1 (-110)))) (-4112 (*1 *1 *1 *2) (-12 (-5 *2 (-44 (-1068) (-711))) (-5 *1 (-110)))))
+(-13 (-784) (-10 -8 (-15 -3015 ((-1085) $)) (-15 -2497 ((-44 (-1068) (-711)) $)) (-15 -2463 ($ $)) (-15 -1771 ($ (-1085))) (-15 -1771 ($ (-1085) (-708))) (-15 -4096 ((-3 (-708) "failed") $)) (-15 -3408 ((-108) $)) (-15 -2675 ((-108) $)) (-15 -3867 ((-108) $)) (-15 -3192 ((-708) $)) (-15 -3192 ($ $ (-708))) (-15 -3935 ($ $ (-1 (-108) $ $))) (-15 -3426 ($ $ (-1 (-108) $ $))) (-15 -1757 ((-3 (-1 (-792) (-588 (-792))) "failed") $)) (-15 -1757 ($ $ (-1 (-792) (-588 (-792))))) (-15 -1757 ($ $ (-1 (-792) (-792)))) (-15 -1800 ($ $ (-1 (-498) (-588 (-498))))) (-15 -1800 ((-3 (-1 (-498) (-588 (-498))) "failed") $)) (-15 -2935 ((-108) $ (-1085))) (-15 -2753 ((-108) $ (-1068))) (-15 -3115 ($ $ (-1068))) (-15 -3371 ($ $ (-1068))) (-15 -2008 ((-3 (-711) "failed") $ (-1068))) (-15 -2451 ($ $ (-1068) (-711))) (-15 -4112 ($ $ (-44 (-1068) (-711))))))
+((-3166 (((-522) |#2|) 36)))
+(((-111 |#1| |#2|) (-10 -7 (-15 -3166 ((-522) |#2|))) (-13 (-338) (-962 (-382 (-522)))) (-1142 |#1|)) (T -111))
+((-3166 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-962 (-382 *2)))) (-5 *2 (-522)) (-5 *1 (-111 *4 *3)) (-4 *3 (-1142 *4)))))
+(-10 -7 (-15 -3166 ((-522) |#2|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2016 (($ $ (-522)) NIL)) (-2805 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-3763 (($ (-1081 (-522)) (-522)) NIL)) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3606 (($ $) NIL)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-3872 (((-708) $) NIL)) (-2859 (((-108) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1246 (((-522)) NIL)) (-3316 (((-522) $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3934 (($ $ (-522)) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-3353 (((-1066 (-522)) $) NIL)) (-1944 (($ $) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL)) (-2742 (((-708)) NIL)) (-1407 (((-108) $ $) NIL)) (-3996 (((-522) $ (-522)) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL)))
(((-112 |#1|) (-798 |#1|) (-522)) (T -112))
NIL
(-798 |#1|)
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2229 (((-112 |#1|) $) NIL (|has| (-112 |#1|) (-283)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-112 |#1|) (-838)))) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-112 |#1|) (-838)))) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL (|has| (-112 |#1|) (-757)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-112 |#1|) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| (-112 |#1|) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-112 |#1|) (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| (-112 |#1|) (-962 (-522))))) (-1484 (((-112 |#1|) $) NIL) (((-1085) $) NIL (|has| (-112 |#1|) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-112 |#1|) (-962 (-522)))) (((-522) $) NIL (|has| (-112 |#1|) (-962 (-522))))) (-3701 (($ $) NIL) (($ (-522) $) NIL)) (-2277 (($ $ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| (-112 |#1|) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-112 |#1|) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-112 |#1|))) (|:| |vec| (-1166 (-112 |#1|)))) (-628 $) (-1166 $)) NIL) (((-628 (-112 |#1|)) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| (-112 |#1|) (-507)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-3687 (((-108) $) NIL (|has| (-112 |#1|) (-757)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-112 |#1|) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-112 |#1|) (-815 (-354))))) (-2782 (((-108) $) NIL)) (-2902 (($ $) NIL)) (-2805 (((-112 |#1|) $) NIL)) (-3004 (((-3 $ "failed") $) NIL (|has| (-112 |#1|) (-1061)))) (-2556 (((-108) $) NIL (|has| (-112 |#1|) (-757)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2814 (($ $ $) NIL (|has| (-112 |#1|) (-784)))) (-2446 (($ $ $) NIL (|has| (-112 |#1|) (-784)))) (-1391 (($ (-1 (-112 |#1|) (-112 |#1|)) $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| (-112 |#1|) (-1061)) CONST)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3933 (($ $) NIL (|has| (-112 |#1|) (-283)))) (-3686 (((-112 |#1|) $) NIL (|has| (-112 |#1|) (-507)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-112 |#1|) (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-112 |#1|) (-838)))) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2289 (($ $ (-588 (-112 |#1|)) (-588 (-112 |#1|))) NIL (|has| (-112 |#1|) (-285 (-112 |#1|)))) (($ $ (-112 |#1|) (-112 |#1|)) NIL (|has| (-112 |#1|) (-285 (-112 |#1|)))) (($ $ (-270 (-112 |#1|))) NIL (|has| (-112 |#1|) (-285 (-112 |#1|)))) (($ $ (-588 (-270 (-112 |#1|)))) NIL (|has| (-112 |#1|) (-285 (-112 |#1|)))) (($ $ (-588 (-1085)) (-588 (-112 |#1|))) NIL (|has| (-112 |#1|) (-483 (-1085) (-112 |#1|)))) (($ $ (-1085) (-112 |#1|)) NIL (|has| (-112 |#1|) (-483 (-1085) (-112 |#1|))))) (-3730 (((-708) $) NIL)) (-2545 (($ $ (-112 |#1|)) NIL (|has| (-112 |#1|) (-262 (-112 |#1|) (-112 |#1|))))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2157 (($ $) NIL (|has| (-112 |#1|) (-210))) (($ $ (-708)) NIL (|has| (-112 |#1|) (-210))) (($ $ (-1085)) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-1 (-112 |#1|) (-112 |#1|)) (-708)) NIL) (($ $ (-1 (-112 |#1|) (-112 |#1|))) NIL)) (-3533 (($ $) NIL)) (-2816 (((-112 |#1|) $) NIL)) (-1431 (((-821 (-522)) $) NIL (|has| (-112 |#1|) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-112 |#1|) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-112 |#1|) (-563 (-498)))) (((-354) $) NIL (|has| (-112 |#1|) (-947))) (((-202) $) NIL (|has| (-112 |#1|) (-947)))) (-2702 (((-158 (-382 (-522))) $) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-112 |#1|) (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-112 |#1|)) NIL) (($ (-1085)) NIL (|has| (-112 |#1|) (-962 (-1085))))) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| (-112 |#1|) (-838))) (|has| (-112 |#1|) (-133))))) (-2323 (((-708)) NIL)) (-3025 (((-112 |#1|) $) NIL (|has| (-112 |#1|) (-507)))) (-3958 (((-108) $ $) NIL)) (-3898 (((-382 (-522)) $ (-522)) NIL)) (-2241 (($ $) NIL (|has| (-112 |#1|) (-757)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $) NIL (|has| (-112 |#1|) (-210))) (($ $ (-708)) NIL (|has| (-112 |#1|) (-210))) (($ $ (-1085)) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-1 (-112 |#1|) (-112 |#1|)) (-708)) NIL) (($ $ (-1 (-112 |#1|) (-112 |#1|))) NIL)) (-1574 (((-108) $ $) NIL (|has| (-112 |#1|) (-784)))) (-1558 (((-108) $ $) NIL (|has| (-112 |#1|) (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| (-112 |#1|) (-784)))) (-1549 (((-108) $ $) NIL (|has| (-112 |#1|) (-784)))) (-1620 (($ $ $) NIL) (($ (-112 |#1|) (-112 |#1|)) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-112 |#1|) $) NIL) (($ $ (-112 |#1|)) NIL)))
-(((-113 |#1|) (-13 (-919 (-112 |#1|)) (-10 -8 (-15 -3898 ((-382 (-522)) $ (-522))) (-15 -2702 ((-158 (-382 (-522))) $)) (-15 -3701 ($ $)) (-15 -3701 ($ (-522) $)))) (-522)) (T -113))
-((-3898 (*1 *2 *1 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-113 *4)) (-14 *4 *3) (-5 *3 (-522)))) (-2702 (*1 *2 *1) (-12 (-5 *2 (-158 (-382 (-522)))) (-5 *1 (-113 *3)) (-14 *3 (-522)))) (-3701 (*1 *1 *1) (-12 (-5 *1 (-113 *2)) (-14 *2 (-522)))) (-3701 (*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-113 *3)) (-14 *3 *2))))
-(-13 (-919 (-112 |#1|)) (-10 -8 (-15 -3898 ((-382 (-522)) $ (-522))) (-15 -2702 ((-158 (-382 (-522))) $)) (-15 -3701 ($ $)) (-15 -3701 ($ (-522) $))))
-((-2379 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 49) (($ $ "right" $) 51)) (-4138 (((-588 $) $) 27)) (-2030 (((-108) $ $) 32)) (-2246 (((-108) |#2| $) 36)) (-1279 (((-588 |#2|) $) 22)) (-1754 (((-108) $) 16)) (-2545 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-3042 (((-108) $) 45)) (-2190 (((-792) $) 41)) (-1749 (((-588 $) $) 28)) (-1531 (((-108) $ $) 34)) (-3480 (((-708) $) 43)))
-(((-114 |#1| |#2|) (-10 -8 (-15 -2190 ((-792) |#1|)) (-15 -2379 (|#1| |#1| "right" |#1|)) (-15 -2379 (|#1| |#1| "left" |#1|)) (-15 -2545 (|#1| |#1| "right")) (-15 -2545 (|#1| |#1| "left")) (-15 -2379 (|#2| |#1| "value" |#2|)) (-15 -2030 ((-108) |#1| |#1|)) (-15 -1279 ((-588 |#2|) |#1|)) (-15 -3042 ((-108) |#1|)) (-15 -2545 (|#2| |#1| "value")) (-15 -1754 ((-108) |#1|)) (-15 -4138 ((-588 |#1|) |#1|)) (-15 -1749 ((-588 |#1|) |#1|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -2246 ((-108) |#2| |#1|)) (-15 -3480 ((-708) |#1|))) (-115 |#2|) (-1120)) (T -114))
-NIL
-(-10 -8 (-15 -2190 ((-792) |#1|)) (-15 -2379 (|#1| |#1| "right" |#1|)) (-15 -2379 (|#1| |#1| "left" |#1|)) (-15 -2545 (|#1| |#1| "right")) (-15 -2545 (|#1| |#1| "left")) (-15 -2379 (|#2| |#1| "value" |#2|)) (-15 -2030 ((-108) |#1| |#1|)) (-15 -1279 ((-588 |#2|) |#1|)) (-15 -3042 ((-108) |#1|)) (-15 -2545 (|#2| |#1| "value")) (-15 -1754 ((-108) |#1|)) (-15 -4138 ((-588 |#1|) |#1|)) (-15 -1749 ((-588 |#1|) |#1|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -2246 ((-108) |#2| |#1|)) (-15 -3480 ((-708) |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3435 ((|#1| $) 48)) (-4141 (((-108) $ (-708)) 8)) (-3628 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-1872 (($ $ $) 52 (|has| $ (-6 -4239)))) (-2173 (($ $ $) 54 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239))) (($ $ "left" $) 55 (|has| $ (-6 -4239))) (($ $ "right" $) 53 (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-3175 (($) 7 T CONST)) (-1924 (($ $) 57)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) 50)) (-2030 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-1913 (($ $) 59)) (-1279 (((-588 |#1|) $) 45)) (-1754 (((-108) $) 49)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-2011 (((-522) $ $) 44)) (-3042 (((-108) $) 46)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) 51)) (-2425 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3049 (((-112 |#1|) $) NIL (|has| (-112 |#1|) (-283)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-112 |#1|) (-838)))) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-112 |#1|) (-838)))) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL (|has| (-112 |#1|) (-757)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-112 |#1|) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| (-112 |#1|) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-112 |#1|) (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| (-112 |#1|) (-962 (-522))))) (-1478 (((-112 |#1|) $) NIL) (((-1085) $) NIL (|has| (-112 |#1|) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-112 |#1|) (-962 (-522)))) (((-522) $) NIL (|has| (-112 |#1|) (-962 (-522))))) (-3734 (($ $) NIL) (($ (-522) $) NIL)) (-2333 (($ $ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| (-112 |#1|) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-112 |#1|) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-112 |#1|))) (|:| |vec| (-1166 (-112 |#1|)))) (-628 $) (-1166 $)) NIL) (((-628 (-112 |#1|)) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| (-112 |#1|) (-507)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3603 (((-108) $) NIL (|has| (-112 |#1|) (-757)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-112 |#1|) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-112 |#1|) (-815 (-354))))) (-2859 (((-108) $) NIL)) (-1558 (($ $) NIL)) (-2947 (((-112 |#1|) $) NIL)) (-4208 (((-3 $ "failed") $) NIL (|has| (-112 |#1|) (-1061)))) (-3740 (((-108) $) NIL (|has| (-112 |#1|) (-757)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1308 (($ $ $) NIL (|has| (-112 |#1|) (-784)))) (-2524 (($ $ $) NIL (|has| (-112 |#1|) (-784)))) (-3810 (($ (-1 (-112 |#1|) (-112 |#1|)) $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| (-112 |#1|) (-1061)) CONST)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4194 (($ $) NIL (|has| (-112 |#1|) (-283)))) (-3592 (((-112 |#1|) $) NIL (|has| (-112 |#1|) (-507)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-112 |#1|) (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-112 |#1|) (-838)))) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2330 (($ $ (-588 (-112 |#1|)) (-588 (-112 |#1|))) NIL (|has| (-112 |#1|) (-285 (-112 |#1|)))) (($ $ (-112 |#1|) (-112 |#1|)) NIL (|has| (-112 |#1|) (-285 (-112 |#1|)))) (($ $ (-270 (-112 |#1|))) NIL (|has| (-112 |#1|) (-285 (-112 |#1|)))) (($ $ (-588 (-270 (-112 |#1|)))) NIL (|has| (-112 |#1|) (-285 (-112 |#1|)))) (($ $ (-588 (-1085)) (-588 (-112 |#1|))) NIL (|has| (-112 |#1|) (-483 (-1085) (-112 |#1|)))) (($ $ (-1085) (-112 |#1|)) NIL (|has| (-112 |#1|) (-483 (-1085) (-112 |#1|))))) (-4031 (((-708) $) NIL)) (-2683 (($ $ (-112 |#1|)) NIL (|has| (-112 |#1|) (-262 (-112 |#1|) (-112 |#1|))))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2731 (($ $) NIL (|has| (-112 |#1|) (-210))) (($ $ (-708)) NIL (|has| (-112 |#1|) (-210))) (($ $ (-1085)) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-1 (-112 |#1|) (-112 |#1|)) (-708)) NIL) (($ $ (-1 (-112 |#1|) (-112 |#1|))) NIL)) (-2762 (($ $) NIL)) (-2959 (((-112 |#1|) $) NIL)) (-3873 (((-821 (-522)) $) NIL (|has| (-112 |#1|) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-112 |#1|) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-112 |#1|) (-563 (-498)))) (((-354) $) NIL (|has| (-112 |#1|) (-947))) (((-202) $) NIL (|has| (-112 |#1|) (-947)))) (-1471 (((-158 (-382 (-522))) $) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-112 |#1|) (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-112 |#1|)) NIL) (($ (-1085)) NIL (|has| (-112 |#1|) (-962 (-1085))))) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| (-112 |#1|) (-838))) (|has| (-112 |#1|) (-133))))) (-2742 (((-708)) NIL)) (-1379 (((-112 |#1|) $) NIL (|has| (-112 |#1|) (-507)))) (-1407 (((-108) $ $) NIL)) (-3996 (((-382 (-522)) $ (-522)) NIL)) (-4126 (($ $) NIL (|has| (-112 |#1|) (-757)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $) NIL (|has| (-112 |#1|) (-210))) (($ $ (-708)) NIL (|has| (-112 |#1|) (-210))) (($ $ (-1085)) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-112 |#1|) (-829 (-1085)))) (($ $ (-1 (-112 |#1|) (-112 |#1|)) (-708)) NIL) (($ $ (-1 (-112 |#1|) (-112 |#1|))) NIL)) (-1623 (((-108) $ $) NIL (|has| (-112 |#1|) (-784)))) (-1597 (((-108) $ $) NIL (|has| (-112 |#1|) (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| (-112 |#1|) (-784)))) (-1587 (((-108) $ $) NIL (|has| (-112 |#1|) (-784)))) (-1682 (($ $ $) NIL) (($ (-112 |#1|) (-112 |#1|)) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-112 |#1|) $) NIL) (($ $ (-112 |#1|)) NIL)))
+(((-113 |#1|) (-13 (-919 (-112 |#1|)) (-10 -8 (-15 -3996 ((-382 (-522)) $ (-522))) (-15 -1471 ((-158 (-382 (-522))) $)) (-15 -3734 ($ $)) (-15 -3734 ($ (-522) $)))) (-522)) (T -113))
+((-3996 (*1 *2 *1 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-113 *4)) (-14 *4 *3) (-5 *3 (-522)))) (-1471 (*1 *2 *1) (-12 (-5 *2 (-158 (-382 (-522)))) (-5 *1 (-113 *3)) (-14 *3 (-522)))) (-3734 (*1 *1 *1) (-12 (-5 *1 (-113 *2)) (-14 *2 (-522)))) (-3734 (*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-113 *3)) (-14 *3 *2))))
+(-13 (-919 (-112 |#1|)) (-10 -8 (-15 -3996 ((-382 (-522)) $ (-522))) (-15 -1471 ((-158 (-382 (-522))) $)) (-15 -3734 ($ $)) (-15 -3734 ($ (-522) $))))
+((-2437 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 49) (($ $ "right" $) 51)) (-2674 (((-588 $) $) 27)) (-2402 (((-108) $ $) 32)) (-4176 (((-108) |#2| $) 36)) (-2548 (((-588 |#2|) $) 22)) (-3394 (((-108) $) 16)) (-2683 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-3395 (((-108) $) 45)) (-2217 (((-792) $) 41)) (-1515 (((-588 $) $) 28)) (-1562 (((-108) $ $) 34)) (-3591 (((-708) $) 43)))
+(((-114 |#1| |#2|) (-10 -8 (-15 -2217 ((-792) |#1|)) (-15 -2437 (|#1| |#1| "right" |#1|)) (-15 -2437 (|#1| |#1| "left" |#1|)) (-15 -2683 (|#1| |#1| "right")) (-15 -2683 (|#1| |#1| "left")) (-15 -2437 (|#2| |#1| "value" |#2|)) (-15 -2402 ((-108) |#1| |#1|)) (-15 -2548 ((-588 |#2|) |#1|)) (-15 -3395 ((-108) |#1|)) (-15 -2683 (|#2| |#1| "value")) (-15 -3394 ((-108) |#1|)) (-15 -2674 ((-588 |#1|) |#1|)) (-15 -1515 ((-588 |#1|) |#1|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -4176 ((-108) |#2| |#1|)) (-15 -3591 ((-708) |#1|))) (-115 |#2|) (-1120)) (T -114))
+NIL
+(-10 -8 (-15 -2217 ((-792) |#1|)) (-15 -2437 (|#1| |#1| "right" |#1|)) (-15 -2437 (|#1| |#1| "left" |#1|)) (-15 -2683 (|#1| |#1| "right")) (-15 -2683 (|#1| |#1| "left")) (-15 -2437 (|#2| |#1| "value" |#2|)) (-15 -2402 ((-108) |#1| |#1|)) (-15 -2548 ((-588 |#2|) |#1|)) (-15 -3395 ((-108) |#1|)) (-15 -2683 (|#2| |#1| "value")) (-15 -3394 ((-108) |#1|)) (-15 -2674 ((-588 |#1|) |#1|)) (-15 -1515 ((-588 |#1|) |#1|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -4176 ((-108) |#2| |#1|)) (-15 -3591 ((-708) |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3526 ((|#1| $) 48)) (-2717 (((-108) $ (-708)) 8)) (-1198 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-2766 (($ $ $) 52 (|has| $ (-6 -4239)))) (-3268 (($ $ $) 54 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239))) (($ $ "left" $) 55 (|has| $ (-6 -4239))) (($ $ "right" $) 53 (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-3367 (($) 7 T CONST)) (-2002 (($ $) 57)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) 50)) (-2402 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-1993 (($ $) 59)) (-2548 (((-588 |#1|) $) 45)) (-3394 (((-108) $) 49)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-3381 (((-522) $ $) 44)) (-3395 (((-108) $) 46)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) 51)) (-3294 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-115 |#1|) (-1197) (-1120)) (T -115))
-((-1913 (*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1120)))) (-2545 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-115 *3)) (-4 *3 (-1120)))) (-1924 (*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1120)))) (-2545 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-115 *3)) (-4 *3 (-1120)))) (-2379 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4239)) (-4 *1 (-115 *3)) (-4 *3 (-1120)))) (-2173 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-115 *2)) (-4 *2 (-1120)))) (-2379 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4239)) (-4 *1 (-115 *3)) (-4 *3 (-1120)))) (-1872 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-115 *2)) (-4 *2 (-1120)))))
-(-13 (-936 |t#1|) (-10 -8 (-15 -1913 ($ $)) (-15 -2545 ($ $ "left")) (-15 -1924 ($ $)) (-15 -2545 ($ $ "right")) (IF (|has| $ (-6 -4239)) (PROGN (-15 -2379 ($ $ "left" $)) (-15 -2173 ($ $ $)) (-15 -2379 ($ $ "right" $)) (-15 -1872 ($ $ $))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-936 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-4119 (((-108) |#1|) 24)) (-2357 (((-708) (-708)) 23) (((-708)) 22)) (-3787 (((-108) |#1| (-108)) 25) (((-108) |#1|) 26)))
-(((-116 |#1|) (-10 -7 (-15 -3787 ((-108) |#1|)) (-15 -3787 ((-108) |#1| (-108))) (-15 -2357 ((-708))) (-15 -2357 ((-708) (-708))) (-15 -4119 ((-108) |#1|))) (-1142 (-522))) (T -116))
-((-4119 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))) (-2357 (*1 *2 *2) (-12 (-5 *2 (-708)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))) (-2357 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))) (-3787 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))) (-3787 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))))
-(-10 -7 (-15 -3787 ((-108) |#1|)) (-15 -3787 ((-108) |#1| (-108))) (-15 -2357 ((-708))) (-15 -2357 ((-708) (-708))) (-15 -4119 ((-108) |#1|)))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3435 ((|#1| $) 15)) (-2724 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 22)) (-4141 (((-108) $ (-708)) NIL)) (-3628 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-1872 (($ $ $) 18 (|has| $ (-6 -4239)))) (-2173 (($ $ $) 20 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "left" $) NIL (|has| $ (-6 -4239))) (($ $ "right" $) NIL (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-1924 (($ $) 17)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) NIL)) (-2030 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3037 (($ $ |#1| $) 23)) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-1913 (($ $) 19)) (-1279 (((-588 |#1|) $) NIL)) (-1754 (((-108) $) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-3064 (($ |#1| $) 24)) (-4095 (($ |#1| $) 10)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 14)) (-3775 (($) 8)) (-2545 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2011 (((-522) $ $) NIL)) (-3042 (((-108) $) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) NIL)) (-2425 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2203 (($ (-588 |#1|)) 12)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-117 |#1|) (-13 (-121 |#1|) (-10 -8 (-6 -4239) (-6 -4238) (-15 -2203 ($ (-588 |#1|))) (-15 -4095 ($ |#1| $)) (-15 -3064 ($ |#1| $)) (-15 -2724 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-784)) (T -117))
-((-2203 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-117 *3)))) (-4095 (*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-784)))) (-3064 (*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-784)))) (-2724 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-117 *3)) (|:| |greater| (-117 *3)))) (-5 *1 (-117 *3)) (-4 *3 (-784)))))
-(-13 (-121 |#1|) (-10 -8 (-6 -4239) (-6 -4238) (-15 -2203 ($ (-588 |#1|))) (-15 -4095 ($ |#1| $)) (-15 -3064 ($ |#1| $)) (-15 -2724 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
-((-1501 (($ $) 14)) (-2401 (($ $) 11)) (-2129 (($ $ $) 24)) (-1920 (($ $ $) 22)) (-3510 (($ $) 12)) (-2767 (($ $ $) 20)) (-2324 (($ $ $) 18)))
-(((-118 |#1|) (-10 -8 (-15 -2129 (|#1| |#1| |#1|)) (-15 -1920 (|#1| |#1| |#1|)) (-15 -3510 (|#1| |#1|)) (-15 -2401 (|#1| |#1|)) (-15 -1501 (|#1| |#1|)) (-15 -2324 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#1| |#1|))) (-119)) (T -118))
-NIL
-(-10 -8 (-15 -2129 (|#1| |#1| |#1|)) (-15 -1920 (|#1| |#1| |#1|)) (-15 -3510 (|#1| |#1|)) (-15 -2401 (|#1| |#1|)) (-15 -1501 (|#1| |#1|)) (-15 -2324 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-1501 (($ $) 104)) (-3349 (($ $ $) 25)) (-2679 (((-1171) $ (-522) (-522)) 67 (|has| $ (-6 -4239)))) (-4187 (((-108) $) 99 (|has| (-108) (-784))) (((-108) (-1 (-108) (-108) (-108)) $) 93)) (-3537 (($ $) 103 (-12 (|has| (-108) (-784)) (|has| $ (-6 -4239)))) (($ (-1 (-108) (-108) (-108)) $) 102 (|has| $ (-6 -4239)))) (-3216 (($ $) 98 (|has| (-108) (-784))) (($ (-1 (-108) (-108) (-108)) $) 92)) (-4141 (((-108) $ (-708)) 38)) (-2379 (((-108) $ (-1133 (-522)) (-108)) 89 (|has| $ (-6 -4239))) (((-108) $ (-522) (-108)) 55 (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) (-108)) $) 72 (|has| $ (-6 -4238)))) (-3175 (($) 39 T CONST)) (-3509 (($ $) 101 (|has| $ (-6 -4239)))) (-1862 (($ $) 91)) (-2333 (($ $) 69 (-12 (|has| (-108) (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ (-1 (-108) (-108)) $) 73 (|has| $ (-6 -4238))) (($ (-108) $) 70 (-12 (|has| (-108) (-1014)) (|has| $ (-6 -4238))))) (-3864 (((-108) (-1 (-108) (-108) (-108)) $) 75 (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-108) (-108)) $ (-108)) 74 (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-108) (-108)) $ (-108) (-108)) 71 (-12 (|has| (-108) (-1014)) (|has| $ (-6 -4238))))) (-3854 (((-108) $ (-522) (-108)) 54 (|has| $ (-6 -4239)))) (-3631 (((-108) $ (-522)) 56)) (-3238 (((-522) (-108) $ (-522)) 96 (|has| (-108) (-1014))) (((-522) (-108) $) 95 (|has| (-108) (-1014))) (((-522) (-1 (-108) (-108)) $) 94)) (-3837 (((-588 (-108)) $) 46 (|has| $ (-6 -4238)))) (-3999 (($ $ $) 26)) (-2401 (($ $) 31)) (-2129 (($ $ $) 28)) (-1811 (($ (-708) (-108)) 78)) (-1920 (($ $ $) 29)) (-3352 (((-108) $ (-708)) 37)) (-1359 (((-522) $) 64 (|has| (-522) (-784)))) (-2814 (($ $ $) 13)) (-2160 (($ $ $) 97 (|has| (-108) (-784))) (($ (-1 (-108) (-108) (-108)) $ $) 90)) (-3308 (((-588 (-108)) $) 47 (|has| $ (-6 -4238)))) (-2246 (((-108) (-108) $) 49 (-12 (|has| (-108) (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 63 (|has| (-522) (-784)))) (-2446 (($ $ $) 14)) (-3838 (($ (-1 (-108) (-108)) $) 42 (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-108) (-108) (-108)) $ $) 83) (($ (-1 (-108) (-108)) $) 41)) (-2720 (((-108) $ (-708)) 36)) (-2385 (((-1068) $) 9)) (-1661 (($ $ $ (-522)) 88) (($ (-108) $ (-522)) 87)) (-3604 (((-588 (-522)) $) 61)) (-1405 (((-108) (-522) $) 60)) (-4151 (((-1032) $) 10)) (-2294 (((-108) $) 65 (|has| (-522) (-784)))) (-1414 (((-3 (-108) "failed") (-1 (-108) (-108)) $) 76)) (-2602 (($ $ (-108)) 66 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) (-108)) $) 44 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-108)) (-588 (-108))) 53 (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-108) (-108)) 52 (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-270 (-108))) 51 (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-588 (-270 (-108)))) 50 (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014))))) (-1536 (((-108) $ $) 32)) (-1758 (((-108) (-108) $) 62 (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-1525 (((-588 (-108)) $) 59)) (-3985 (((-108) $) 35)) (-3775 (($) 34)) (-2545 (($ $ (-1133 (-522))) 84) (((-108) $ (-522)) 58) (((-108) $ (-522) (-108)) 57)) (-3696 (($ $ (-1133 (-522))) 86) (($ $ (-522)) 85)) (-4168 (((-708) (-108) $) 48 (-12 (|has| (-108) (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) (-108)) $) 45 (|has| $ (-6 -4238)))) (-1577 (($ $ $ (-522)) 100 (|has| $ (-6 -4239)))) (-2404 (($ $) 33)) (-1431 (((-498) $) 68 (|has| (-108) (-563 (-498))))) (-2201 (($ (-588 (-108))) 77)) (-4165 (($ (-588 $)) 82) (($ $ $) 81) (($ (-108) $) 80) (($ $ (-108)) 79)) (-2190 (((-792) $) 11)) (-3648 (((-108) (-1 (-108) (-108)) $) 43 (|has| $ (-6 -4238)))) (-4015 (($ $ $) 27)) (-3510 (($ $) 30)) (-2767 (($ $ $) 106)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)) (-2324 (($ $ $) 105)) (-3480 (((-708) $) 40 (|has| $ (-6 -4238)))))
+((-1993 (*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1120)))) (-2683 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-115 *3)) (-4 *3 (-1120)))) (-2002 (*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1120)))) (-2683 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-115 *3)) (-4 *3 (-1120)))) (-2437 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4239)) (-4 *1 (-115 *3)) (-4 *3 (-1120)))) (-3268 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-115 *2)) (-4 *2 (-1120)))) (-2437 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4239)) (-4 *1 (-115 *3)) (-4 *3 (-1120)))) (-2766 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-115 *2)) (-4 *2 (-1120)))))
+(-13 (-936 |t#1|) (-10 -8 (-15 -1993 ($ $)) (-15 -2683 ($ $ "left")) (-15 -2002 ($ $)) (-15 -2683 ($ $ "right")) (IF (|has| $ (-6 -4239)) (PROGN (-15 -2437 ($ $ "left" $)) (-15 -3268 ($ $ $)) (-15 -2437 ($ $ "right" $)) (-15 -2766 ($ $ $))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-936 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-2429 (((-108) |#1|) 24)) (-1952 (((-708) (-708)) 23) (((-708)) 22)) (-3416 (((-108) |#1| (-108)) 25) (((-108) |#1|) 26)))
+(((-116 |#1|) (-10 -7 (-15 -3416 ((-108) |#1|)) (-15 -3416 ((-108) |#1| (-108))) (-15 -1952 ((-708))) (-15 -1952 ((-708) (-708))) (-15 -2429 ((-108) |#1|))) (-1142 (-522))) (T -116))
+((-2429 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))) (-1952 (*1 *2 *2) (-12 (-5 *2 (-708)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))) (-1952 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))) (-3416 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))) (-3416 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))))
+(-10 -7 (-15 -3416 ((-108) |#1|)) (-15 -3416 ((-108) |#1| (-108))) (-15 -1952 ((-708))) (-15 -1952 ((-708) (-708))) (-15 -2429 ((-108) |#1|)))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3526 ((|#1| $) 15)) (-3428 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 22)) (-2717 (((-108) $ (-708)) NIL)) (-1198 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-2766 (($ $ $) 18 (|has| $ (-6 -4239)))) (-3268 (($ $ $) 20 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "left" $) NIL (|has| $ (-6 -4239))) (($ $ "right" $) NIL (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-2002 (($ $) 17)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) NIL)) (-2402 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3147 (($ $ |#1| $) 23)) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-1993 (($ $) 19)) (-2548 (((-588 |#1|) $) NIL)) (-3394 (((-108) $) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-3567 (($ |#1| $) 24)) (-3365 (($ |#1| $) 10)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 14)) (-3298 (($) 8)) (-2683 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3381 (((-522) $ $) NIL)) (-3395 (((-108) $) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) NIL)) (-3294 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2315 (($ (-588 |#1|)) 12)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-117 |#1|) (-13 (-121 |#1|) (-10 -8 (-6 -4239) (-6 -4238) (-15 -2315 ($ (-588 |#1|))) (-15 -3365 ($ |#1| $)) (-15 -3567 ($ |#1| $)) (-15 -3428 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-784)) (T -117))
+((-2315 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-117 *3)))) (-3365 (*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-784)))) (-3567 (*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-784)))) (-3428 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-117 *3)) (|:| |greater| (-117 *3)))) (-5 *1 (-117 *3)) (-4 *3 (-784)))))
+(-13 (-121 |#1|) (-10 -8 (-6 -4239) (-6 -4238) (-15 -2315 ($ (-588 |#1|))) (-15 -3365 ($ |#1| $)) (-15 -3567 ($ |#1| $)) (-15 -3428 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
+((-1504 (($ $) 14)) (-2473 (($ $) 11)) (-1588 (($ $ $) 24)) (-1309 (($ $ $) 22)) (-3622 (($ $) 12)) (-2920 (($ $ $) 20)) (-2388 (($ $ $) 18)))
+(((-118 |#1|) (-10 -8 (-15 -1588 (|#1| |#1| |#1|)) (-15 -1309 (|#1| |#1| |#1|)) (-15 -3622 (|#1| |#1|)) (-15 -2473 (|#1| |#1|)) (-15 -1504 (|#1| |#1|)) (-15 -2388 (|#1| |#1| |#1|)) (-15 -2920 (|#1| |#1| |#1|))) (-119)) (T -118))
+NIL
+(-10 -8 (-15 -1588 (|#1| |#1| |#1|)) (-15 -1309 (|#1| |#1| |#1|)) (-15 -3622 (|#1| |#1|)) (-15 -2473 (|#1| |#1|)) (-15 -1504 (|#1| |#1|)) (-15 -2388 (|#1| |#1| |#1|)) (-15 -2920 (|#1| |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-1504 (($ $) 104)) (-3454 (($ $ $) 25)) (-3883 (((-1171) $ (-522) (-522)) 67 (|has| $ (-6 -4239)))) (-1866 (((-108) $) 99 (|has| (-108) (-784))) (((-108) (-1 (-108) (-108) (-108)) $) 93)) (-2806 (($ $) 103 (-12 (|has| (-108) (-784)) (|has| $ (-6 -4239)))) (($ (-1 (-108) (-108) (-108)) $) 102 (|has| $ (-6 -4239)))) (-3296 (($ $) 98 (|has| (-108) (-784))) (($ (-1 (-108) (-108) (-108)) $) 92)) (-2717 (((-108) $ (-708)) 38)) (-2437 (((-108) $ (-1133 (-522)) (-108)) 89 (|has| $ (-6 -4239))) (((-108) $ (-522) (-108)) 55 (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) (-108)) $) 72 (|has| $ (-6 -4238)))) (-3367 (($) 39 T CONST)) (-2465 (($ $) 101 (|has| $ (-6 -4239)))) (-1939 (($ $) 91)) (-2379 (($ $) 69 (-12 (|has| (-108) (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ (-1 (-108) (-108)) $) 73 (|has| $ (-6 -4238))) (($ (-108) $) 70 (-12 (|has| (-108) (-1014)) (|has| $ (-6 -4238))))) (-2153 (((-108) (-1 (-108) (-108) (-108)) $) 75 (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-108) (-108)) $ (-108)) 74 (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-108) (-108)) $ (-108) (-108)) 71 (-12 (|has| (-108) (-1014)) (|has| $ (-6 -4238))))) (-2411 (((-108) $ (-522) (-108)) 54 (|has| $ (-6 -4239)))) (-2186 (((-108) $ (-522)) 56)) (-3314 (((-522) (-108) $ (-522)) 96 (|has| (-108) (-1014))) (((-522) (-108) $) 95 (|has| (-108) (-1014))) (((-522) (-1 (-108) (-108)) $) 94)) (-2395 (((-588 (-108)) $) 46 (|has| $ (-6 -4238)))) (-4070 (($ $ $) 26)) (-2473 (($ $) 31)) (-1588 (($ $ $) 28)) (-1893 (($ (-708) (-108)) 78)) (-1309 (($ $ $) 29)) (-1480 (((-108) $ (-708)) 37)) (-3496 (((-522) $) 64 (|has| (-522) (-784)))) (-1308 (($ $ $) 13)) (-3164 (($ $ $) 97 (|has| (-108) (-784))) (($ (-1 (-108) (-108) (-108)) $ $) 90)) (-4084 (((-588 (-108)) $) 47 (|has| $ (-6 -4238)))) (-4176 (((-108) (-108) $) 49 (-12 (|has| (-108) (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 63 (|has| (-522) (-784)))) (-2524 (($ $ $) 14)) (-2397 (($ (-1 (-108) (-108)) $) 42 (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-108) (-108) (-108)) $ $) 83) (($ (-1 (-108) (-108)) $) 41)) (-3309 (((-108) $ (-708)) 36)) (-2311 (((-1068) $) 9)) (-1731 (($ $ $ (-522)) 88) (($ (-108) $ (-522)) 87)) (-2130 (((-588 (-522)) $) 61)) (-2103 (((-108) (-522) $) 60)) (-4174 (((-1032) $) 10)) (-2337 (((-108) $) 65 (|has| (-522) (-784)))) (-2187 (((-3 (-108) "failed") (-1 (-108) (-108)) $) 76)) (-1972 (($ $ (-108)) 66 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) (-108)) $) 44 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-108)) (-588 (-108))) 53 (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-108) (-108)) 52 (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-270 (-108))) 51 (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-588 (-270 (-108)))) 50 (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014))))) (-2065 (((-108) $ $) 32)) (-3434 (((-108) (-108) $) 62 (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-1973 (((-588 (-108)) $) 59)) (-3494 (((-108) $) 35)) (-3298 (($) 34)) (-2683 (($ $ (-1133 (-522))) 84) (((-108) $ (-522)) 58) (((-108) $ (-522) (-108)) 57)) (-3835 (($ $ (-1133 (-522))) 86) (($ $ (-522)) 85)) (-4187 (((-708) (-108) $) 48 (-12 (|has| (-108) (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) (-108)) $) 45 (|has| $ (-6 -4238)))) (-3629 (($ $ $ (-522)) 100 (|has| $ (-6 -4239)))) (-2463 (($ $) 33)) (-3873 (((-498) $) 68 (|has| (-108) (-563 (-498))))) (-2227 (($ (-588 (-108))) 77)) (-4170 (($ (-588 $)) 82) (($ $ $) 81) (($ (-108) $) 80) (($ $ (-108)) 79)) (-2217 (((-792) $) 11)) (-1381 (((-108) (-1 (-108) (-108)) $) 43 (|has| $ (-6 -4238)))) (-4079 (($ $ $) 27)) (-3622 (($ $) 30)) (-2920 (($ $ $) 106)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)) (-2388 (($ $ $) 105)) (-3591 (((-708) $) 40 (|has| $ (-6 -4238)))))
(((-119) (-1197)) (T -119))
-((-2401 (*1 *1 *1) (-4 *1 (-119))) (-3510 (*1 *1 *1) (-4 *1 (-119))) (-1920 (*1 *1 *1 *1) (-4 *1 (-119))) (-2129 (*1 *1 *1 *1) (-4 *1 (-119))) (-4015 (*1 *1 *1 *1) (-4 *1 (-119))) (-3999 (*1 *1 *1 *1) (-4 *1 (-119))) (-3349 (*1 *1 *1 *1) (-4 *1 (-119))))
-(-13 (-784) (-603) (-19 (-108)) (-10 -8 (-15 -2401 ($ $)) (-15 -3510 ($ $)) (-15 -1920 ($ $ $)) (-15 -2129 ($ $ $)) (-15 -4015 ($ $ $)) (-15 -3999 ($ $ $)) (-15 -3349 ($ $ $))))
+((-2473 (*1 *1 *1) (-4 *1 (-119))) (-3622 (*1 *1 *1) (-4 *1 (-119))) (-1309 (*1 *1 *1 *1) (-4 *1 (-119))) (-1588 (*1 *1 *1 *1) (-4 *1 (-119))) (-4079 (*1 *1 *1 *1) (-4 *1 (-119))) (-4070 (*1 *1 *1 *1) (-4 *1 (-119))) (-3454 (*1 *1 *1 *1) (-4 *1 (-119))))
+(-13 (-784) (-603) (-19 (-108)) (-10 -8 (-15 -2473 ($ $)) (-15 -3622 ($ $)) (-15 -1309 ($ $ $)) (-15 -1588 ($ $ $)) (-15 -4079 ($ $ $)) (-15 -4070 ($ $ $)) (-15 -3454 ($ $ $))))
(((-33) . T) ((-97) . T) ((-562 (-792)) . T) ((-139 #0=(-108)) . T) ((-563 (-498)) |has| (-108) (-563 (-498))) ((-262 #1=(-522) #0#) . T) ((-264 #1# #0#) . T) ((-285 #0#) -12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014))) ((-348 #0#) . T) ((-461 #0#) . T) ((-555 #1# #0#) . T) ((-483 #0# #0#) -12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014))) ((-593 #0#) . T) ((-603) . T) ((-19 #0#) . T) ((-784) . T) ((-1014) . T) ((-1120) . T))
-((-3838 (($ (-1 |#2| |#2|) $) 22)) (-2404 (($ $) 16)) (-3480 (((-708) $) 24)))
-(((-120 |#1| |#2|) (-10 -8 (-15 -3838 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3480 ((-708) |#1|)) (-15 -2404 (|#1| |#1|))) (-121 |#2|) (-1014)) (T -120))
+((-2397 (($ (-1 |#2| |#2|) $) 22)) (-2463 (($ $) 16)) (-3591 (((-708) $) 24)))
+(((-120 |#1| |#2|) (-10 -8 (-15 -2397 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3591 ((-708) |#1|)) (-15 -2463 (|#1| |#1|))) (-121 |#2|) (-1014)) (T -120))
NIL
-(-10 -8 (-15 -3838 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3480 ((-708) |#1|)) (-15 -2404 (|#1| |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3435 ((|#1| $) 48)) (-4141 (((-108) $ (-708)) 8)) (-3628 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-1872 (($ $ $) 52 (|has| $ (-6 -4239)))) (-2173 (($ $ $) 54 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239))) (($ $ "left" $) 55 (|has| $ (-6 -4239))) (($ $ "right" $) 53 (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-3175 (($) 7 T CONST)) (-1924 (($ $) 57)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) 50)) (-2030 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-3037 (($ $ |#1| $) 60)) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-1913 (($ $) 59)) (-1279 (((-588 |#1|) $) 45)) (-1754 (((-108) $) 49)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-2011 (((-522) $ $) 44)) (-3042 (((-108) $) 46)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) 51)) (-2425 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+(-10 -8 (-15 -2397 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3591 ((-708) |#1|)) (-15 -2463 (|#1| |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3526 ((|#1| $) 48)) (-2717 (((-108) $ (-708)) 8)) (-1198 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-2766 (($ $ $) 52 (|has| $ (-6 -4239)))) (-3268 (($ $ $) 54 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239))) (($ $ "left" $) 55 (|has| $ (-6 -4239))) (($ $ "right" $) 53 (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-3367 (($) 7 T CONST)) (-2002 (($ $) 57)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) 50)) (-2402 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-3147 (($ $ |#1| $) 60)) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-1993 (($ $) 59)) (-2548 (((-588 |#1|) $) 45)) (-3394 (((-108) $) 49)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-3381 (((-522) $ $) 44)) (-3395 (((-108) $) 46)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) 51)) (-3294 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-121 |#1|) (-1197) (-1014)) (T -121))
-((-3037 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-121 *2)) (-4 *2 (-1014)))))
-(-13 (-115 |t#1|) (-10 -8 (-6 -4239) (-6 -4238) (-15 -3037 ($ $ |t#1| $))))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-115 |#1|) . T) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-936 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3435 ((|#1| $) 15)) (-4141 (((-108) $ (-708)) NIL)) (-3628 ((|#1| $ |#1|) 19 (|has| $ (-6 -4239)))) (-1872 (($ $ $) 20 (|has| $ (-6 -4239)))) (-2173 (($ $ $) 18 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "left" $) NIL (|has| $ (-6 -4239))) (($ $ "right" $) NIL (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-1924 (($ $) 21)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) NIL)) (-2030 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3037 (($ $ |#1| $) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-1913 (($ $) NIL)) (-1279 (((-588 |#1|) $) NIL)) (-1754 (((-108) $) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4095 (($ |#1| $) 10)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 14)) (-3775 (($) 8)) (-2545 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2011 (((-522) $ $) NIL)) (-3042 (((-108) $) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) 17)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) NIL)) (-2425 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1528 (($ (-588 |#1|)) 12)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-122 |#1|) (-13 (-121 |#1|) (-10 -8 (-6 -4239) (-15 -1528 ($ (-588 |#1|))) (-15 -4095 ($ |#1| $)))) (-784)) (T -122))
-((-1528 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-122 *3)))) (-4095 (*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-784)))))
-(-13 (-121 |#1|) (-10 -8 (-6 -4239) (-15 -1528 ($ (-588 |#1|))) (-15 -4095 ($ |#1| $))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3435 ((|#1| $) 24)) (-4141 (((-108) $ (-708)) NIL)) (-3628 ((|#1| $ |#1|) 26 (|has| $ (-6 -4239)))) (-1872 (($ $ $) 30 (|has| $ (-6 -4239)))) (-2173 (($ $ $) 28 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "left" $) NIL (|has| $ (-6 -4239))) (($ $ "right" $) NIL (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-1924 (($ $) 20)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) NIL)) (-2030 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3037 (($ $ |#1| $) 15)) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-1913 (($ $) 19)) (-1279 (((-588 |#1|) $) NIL)) (-1754 (((-108) $) 21)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 18)) (-3775 (($) 11)) (-2545 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2011 (((-522) $ $) NIL)) (-3042 (((-108) $) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) NIL)) (-2425 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-4021 (($ |#1|) 17) (($ $ |#1| $) 16)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 10 (|has| |#1| (-1014)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-123 |#1|) (-13 (-121 |#1|) (-10 -8 (-15 -4021 ($ |#1|)) (-15 -4021 ($ $ |#1| $)))) (-1014)) (T -123))
-((-4021 (*1 *1 *2) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1014)))) (-4021 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1014)))))
-(-13 (-121 |#1|) (-10 -8 (-15 -4021 ($ |#1|)) (-15 -4021 ($ $ |#1| $))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15)))
+((-3147 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-121 *2)) (-4 *2 (-1014)))))
+(-13 (-115 |t#1|) (-10 -8 (-6 -4239) (-6 -4238) (-15 -3147 ($ $ |t#1| $))))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-115 |#1|) . T) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-936 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3526 ((|#1| $) 15)) (-2717 (((-108) $ (-708)) NIL)) (-1198 ((|#1| $ |#1|) 19 (|has| $ (-6 -4239)))) (-2766 (($ $ $) 20 (|has| $ (-6 -4239)))) (-3268 (($ $ $) 18 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "left" $) NIL (|has| $ (-6 -4239))) (($ $ "right" $) NIL (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-2002 (($ $) 21)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) NIL)) (-2402 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3147 (($ $ |#1| $) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-1993 (($ $) NIL)) (-2548 (((-588 |#1|) $) NIL)) (-3394 (((-108) $) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-3365 (($ |#1| $) 10)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 14)) (-3298 (($) 8)) (-2683 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3381 (((-522) $ $) NIL)) (-3395 (((-108) $) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) 17)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) NIL)) (-3294 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2003 (($ (-588 |#1|)) 12)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-122 |#1|) (-13 (-121 |#1|) (-10 -8 (-6 -4239) (-15 -2003 ($ (-588 |#1|))) (-15 -3365 ($ |#1| $)))) (-784)) (T -122))
+((-2003 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-122 *3)))) (-3365 (*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-784)))))
+(-13 (-121 |#1|) (-10 -8 (-6 -4239) (-15 -2003 ($ (-588 |#1|))) (-15 -3365 ($ |#1| $))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3526 ((|#1| $) 24)) (-2717 (((-108) $ (-708)) NIL)) (-1198 ((|#1| $ |#1|) 26 (|has| $ (-6 -4239)))) (-2766 (($ $ $) 30 (|has| $ (-6 -4239)))) (-3268 (($ $ $) 28 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "left" $) NIL (|has| $ (-6 -4239))) (($ $ "right" $) NIL (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-2002 (($ $) 20)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) NIL)) (-2402 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3147 (($ $ |#1| $) 15)) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-1993 (($ $) 19)) (-2548 (((-588 |#1|) $) NIL)) (-3394 (((-108) $) 21)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 18)) (-3298 (($) 11)) (-2683 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3381 (((-522) $ $) NIL)) (-3395 (((-108) $) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) NIL)) (-3294 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3839 (($ |#1|) 17) (($ $ |#1| $) 16)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 10 (|has| |#1| (-1014)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-123 |#1|) (-13 (-121 |#1|) (-10 -8 (-15 -3839 ($ |#1|)) (-15 -3839 ($ $ |#1| $)))) (-1014)) (T -123))
+((-3839 (*1 *1 *2) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1014)))) (-3839 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1014)))))
+(-13 (-121 |#1|) (-10 -8 (-15 -3839 ($ |#1|)) (-15 -3839 ($ $ |#1| $))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15)))
(((-124) (-1197)) (T -124))
-((-1233 (*1 *1 *1 *1) (|partial| -4 *1 (-124))))
-(-13 (-23) (-10 -8 (-15 -1233 ((-3 $ "failed") $ $))))
+((-2265 (*1 *1 *1 *1) (|partial| -4 *1 (-124))))
+(-13 (-23) (-10 -8 (-15 -2265 ((-3 $ "failed") $ $))))
(((-23) . T) ((-25) . T) ((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1416 (((-108) $ $) 7)) (-3220 (((-1171) $ (-708)) 19)) (-3238 (((-708) $) 20)) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)))
+((-1419 (((-108) $ $) 7)) (-2648 (((-1171) $ (-708)) 19)) (-3314 (((-708) $) 20)) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)))
(((-125) (-1197)) (T -125))
-((-3238 (*1 *2 *1) (-12 (-4 *1 (-125)) (-5 *2 (-708)))) (-3220 (*1 *2 *1 *3) (-12 (-4 *1 (-125)) (-5 *3 (-708)) (-5 *2 (-1171)))))
-(-13 (-784) (-10 -8 (-15 -3238 ((-708) $)) (-15 -3220 ((-1171) $ (-708)))))
+((-3314 (*1 *2 *1) (-12 (-4 *1 (-125)) (-5 *2 (-708)))) (-2648 (*1 *2 *1 *3) (-12 (-4 *1 (-125)) (-5 *3 (-708)) (-5 *2 (-1171)))))
+(-13 (-784) (-10 -8 (-15 -3314 ((-708) $)) (-15 -2648 ((-1171) $ (-708)))))
(((-97) . T) ((-562 (-792)) . T) ((-784) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-708) "failed") $) 38)) (-1484 (((-708) $) 36)) (-2682 (((-3 $ "failed") $) NIL)) (-2782 (((-108) $) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) 26)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-4133 (((-108)) 39)) (-3544 (((-108) (-108)) 41)) (-3827 (((-108) $) 23)) (-3883 (((-108) $) 35)) (-2190 (((-792) $) 22) (($ (-708)) 14)) (-3510 (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3566 (($) 12 T CONST)) (-3577 (($) 11 T CONST)) (-3570 (($ (-708)) 15)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 24)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 25)) (-1612 (((-3 $ "failed") $ $) 29)) (-1602 (($ $ $) 27)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL) (($ $ $) 34)) (* (($ (-708) $) 32) (($ (-850) $) NIL) (($ $ $) 30)))
-(((-126) (-13 (-784) (-23) (-664) (-962 (-708)) (-10 -8 (-6 (-4240 "*")) (-15 -1612 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -3570 ($ (-708))) (-15 -3827 ((-108) $)) (-15 -3883 ((-108) $)) (-15 -4133 ((-108))) (-15 -3544 ((-108) (-108)))))) (T -126))
-((-1612 (*1 *1 *1 *1) (|partial| -5 *1 (-126))) (** (*1 *1 *1 *1) (-5 *1 (-126))) (-3570 (*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-126)))) (-3827 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-126)))) (-3883 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-126)))) (-4133 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-126)))) (-3544 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-126)))))
-(-13 (-784) (-23) (-664) (-962 (-708)) (-10 -8 (-6 (-4240 "*")) (-15 -1612 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -3570 ($ (-708))) (-15 -3827 ((-108) $)) (-15 -3883 ((-108) $)) (-15 -4133 ((-108))) (-15 -3544 ((-108) (-108)))))
-((-3133 (((-128 |#1| |#2| |#4|) (-588 |#4|) (-128 |#1| |#2| |#3|)) 14)) (-1391 (((-128 |#1| |#2| |#4|) (-1 |#4| |#3|) (-128 |#1| |#2| |#3|)) 18)))
-(((-127 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3133 ((-128 |#1| |#2| |#4|) (-588 |#4|) (-128 |#1| |#2| |#3|))) (-15 -1391 ((-128 |#1| |#2| |#4|) (-1 |#4| |#3|) (-128 |#1| |#2| |#3|)))) (-522) (-708) (-157) (-157)) (T -127))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-128 *5 *6 *7)) (-14 *5 (-522)) (-14 *6 (-708)) (-4 *7 (-157)) (-4 *8 (-157)) (-5 *2 (-128 *5 *6 *8)) (-5 *1 (-127 *5 *6 *7 *8)))) (-3133 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-128 *5 *6 *7)) (-14 *5 (-522)) (-14 *6 (-708)) (-4 *7 (-157)) (-4 *8 (-157)) (-5 *2 (-128 *5 *6 *8)) (-5 *1 (-127 *5 *6 *7 *8)))))
-(-10 -7 (-15 -3133 ((-128 |#1| |#2| |#4|) (-588 |#4|) (-128 |#1| |#2| |#3|))) (-15 -1391 ((-128 |#1| |#2| |#4|) (-1 |#4| |#3|) (-128 |#1| |#2| |#3|))))
-((-1416 (((-108) $ $) NIL)) (-2800 (($ (-588 |#3|)) 39)) (-2318 (($ $) 98) (($ $ (-522) (-522)) 97)) (-3175 (($) 17)) (-1297 (((-3 |#3| "failed") $) 59)) (-1484 ((|#3| $) NIL)) (-3780 (($ $ (-588 (-522))) 99)) (-3120 (((-588 |#3|) $) 35)) (-3166 (((-708) $) 43)) (-1372 (($ $ $) 92)) (-1826 (($) 42)) (-2385 (((-1068) $) NIL)) (-1537 (($) 16)) (-4151 (((-1032) $) NIL)) (-2545 ((|#3| $) 45) ((|#3| $ (-522)) 46) ((|#3| $ (-522) (-522)) 47) ((|#3| $ (-522) (-522) (-522)) 48) ((|#3| $ (-522) (-522) (-522) (-522)) 49) ((|#3| $ (-588 (-522))) 51)) (-2793 (((-708) $) 44)) (-3322 (($ $ (-522) $ (-522)) 93) (($ $ (-522) (-522)) 95)) (-2190 (((-792) $) 66) (($ |#3|) 67) (($ (-217 |#2| |#3|)) 74) (($ (-1052 |#2| |#3|)) 77) (($ (-588 |#3|)) 52) (($ (-588 $)) 57)) (-3566 (($) 68 T CONST)) (-3577 (($) 69 T CONST)) (-1531 (((-108) $ $) 79)) (-1612 (($ $) 85) (($ $ $) 83)) (-1602 (($ $ $) 81)) (* (($ |#3| $) 90) (($ $ |#3|) 91) (($ $ (-522)) 88) (($ (-522) $) 87) (($ $ $) 94)))
-(((-128 |#1| |#2| |#3|) (-13 (-439 |#3| (-708)) (-444 (-522) (-708)) (-10 -8 (-15 -2190 ($ (-217 |#2| |#3|))) (-15 -2190 ($ (-1052 |#2| |#3|))) (-15 -2190 ($ (-588 |#3|))) (-15 -2190 ($ (-588 $))) (-15 -3166 ((-708) $)) (-15 -2545 (|#3| $)) (-15 -2545 (|#3| $ (-522))) (-15 -2545 (|#3| $ (-522) (-522))) (-15 -2545 (|#3| $ (-522) (-522) (-522))) (-15 -2545 (|#3| $ (-522) (-522) (-522) (-522))) (-15 -2545 (|#3| $ (-588 (-522)))) (-15 -1372 ($ $ $)) (-15 * ($ $ $)) (-15 -3322 ($ $ (-522) $ (-522))) (-15 -3322 ($ $ (-522) (-522))) (-15 -2318 ($ $)) (-15 -2318 ($ $ (-522) (-522))) (-15 -3780 ($ $ (-588 (-522)))) (-15 -1537 ($)) (-15 -1826 ($)) (-15 -3120 ((-588 |#3|) $)) (-15 -2800 ($ (-588 |#3|))) (-15 -3175 ($)))) (-522) (-708) (-157)) (T -128))
-((-1372 (*1 *1 *1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708)) (-4 *4 (-157)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-217 *4 *5)) (-14 *4 (-708)) (-4 *5 (-157)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1052 *4 *5)) (-14 *4 (-708)) (-4 *5 (-157)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-588 *5)) (-4 *5 (-157)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)) (-14 *4 (-708)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-588 (-128 *3 *4 *5))) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)) (-14 *4 (-708)) (-4 *5 (-157)))) (-3166 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)) (-14 *4 *2) (-4 *5 (-157)))) (-2545 (*1 *2 *1) (-12 (-4 *2 (-157)) (-5 *1 (-128 *3 *4 *2)) (-14 *3 (-522)) (-14 *4 (-708)))) (-2545 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *2 (-157)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-708)))) (-2545 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-4 *2 (-157)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-708)))) (-2545 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-522)) (-4 *2 (-157)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-708)))) (-2545 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-522)) (-4 *2 (-157)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-708)))) (-2545 (*1 *2 *1 *3) (-12 (-5 *3 (-588 (-522))) (-4 *2 (-157)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 (-522)) (-14 *5 (-708)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708)) (-4 *4 (-157)))) (-3322 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-708)) (-4 *5 (-157)))) (-3322 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-708)) (-4 *5 (-157)))) (-2318 (*1 *1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708)) (-4 *4 (-157)))) (-2318 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-708)) (-4 *5 (-157)))) (-3780 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)) (-14 *4 (-708)) (-4 *5 (-157)))) (-1537 (*1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708)) (-4 *4 (-157)))) (-1826 (*1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708)) (-4 *4 (-157)))) (-3120 (*1 *2 *1) (-12 (-5 *2 (-588 *5)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)) (-14 *4 (-708)) (-4 *5 (-157)))) (-2800 (*1 *1 *2) (-12 (-5 *2 (-588 *5)) (-4 *5 (-157)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)) (-14 *4 (-708)))) (-3175 (*1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708)) (-4 *4 (-157)))))
-(-13 (-439 |#3| (-708)) (-444 (-522) (-708)) (-10 -8 (-15 -2190 ($ (-217 |#2| |#3|))) (-15 -2190 ($ (-1052 |#2| |#3|))) (-15 -2190 ($ (-588 |#3|))) (-15 -2190 ($ (-588 $))) (-15 -3166 ((-708) $)) (-15 -2545 (|#3| $)) (-15 -2545 (|#3| $ (-522))) (-15 -2545 (|#3| $ (-522) (-522))) (-15 -2545 (|#3| $ (-522) (-522) (-522))) (-15 -2545 (|#3| $ (-522) (-522) (-522) (-522))) (-15 -2545 (|#3| $ (-588 (-522)))) (-15 -1372 ($ $ $)) (-15 * ($ $ $)) (-15 -3322 ($ $ (-522) $ (-522))) (-15 -3322 ($ $ (-522) (-522))) (-15 -2318 ($ $)) (-15 -2318 ($ $ (-522) (-522))) (-15 -3780 ($ $ (-588 (-522)))) (-15 -1537 ($)) (-15 -1826 ($)) (-15 -3120 ((-588 |#3|) $)) (-15 -2800 ($ (-588 |#3|))) (-15 -3175 ($))))
-((-1416 (((-108) $ $) NIL)) (-2084 (($) 15 T CONST)) (-1579 (($) NIL (|has| (-132) (-343)))) (-2270 (($ $ $) 17) (($ $ (-132)) NIL) (($ (-132) $) NIL)) (-2079 (($ $ $) NIL)) (-3557 (((-108) $ $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-1629 (((-708)) NIL (|has| (-132) (-343)))) (-1764 (($) NIL) (($ (-588 (-132))) NIL)) (-2790 (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-3859 (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238))) (($ (-132) $) 51 (|has| $ (-6 -4238)))) (-1423 (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238))) (($ (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-3864 (((-132) (-1 (-132) (-132) (-132)) $) NIL (|has| $ (-6 -4238))) (((-132) (-1 (-132) (-132) (-132)) $ (-132)) NIL (|has| $ (-6 -4238))) (((-132) (-1 (-132) (-132) (-132)) $ (-132) (-132)) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-3255 (($) NIL (|has| (-132) (-343)))) (-3837 (((-588 (-132)) $) 60 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-2814 (((-132) $) NIL (|has| (-132) (-784)))) (-3308 (((-588 (-132)) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-132) $) 26 (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-2446 (((-132) $) NIL (|has| (-132) (-784)))) (-3838 (($ (-1 (-132) (-132)) $) 59 (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-132) (-132)) $) 55)) (-2390 (($) 16 T CONST)) (-2120 (((-850) $) NIL (|has| (-132) (-343)))) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-2416 (($ $ $) 29)) (-2116 (((-132) $) 52)) (-4095 (($ (-132) $) 50)) (-2717 (($ (-850)) NIL (|has| (-132) (-343)))) (-1720 (($) 14 T CONST)) (-4151 (((-1032) $) NIL)) (-1414 (((-3 (-132) "failed") (-1 (-108) (-132)) $) NIL)) (-4087 (((-132) $) 53)) (-3053 (((-108) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-132)) (-588 (-132))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-132) (-132)) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-270 (-132))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-588 (-270 (-132)))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) 48)) (-1921 (($) 13 T CONST)) (-3417 (($ $ $) 31) (($ $ (-132)) NIL)) (-3990 (($ (-588 (-132))) NIL) (($) NIL)) (-4168 (((-708) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014)))) (((-708) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-1068) $) 36) (((-498) $) NIL (|has| (-132) (-563 (-498)))) (((-588 (-132)) $) 34)) (-2201 (($ (-588 (-132))) NIL)) (-3763 (($ $) 32 (|has| (-132) (-343)))) (-2190 (((-792) $) 46)) (-1204 (($ (-1068)) 12) (($ (-588 (-132))) 43)) (-2067 (((-708) $) NIL)) (-3392 (($) 49) (($ (-588 (-132))) NIL)) (-2795 (($ (-588 (-132))) NIL)) (-3648 (((-108) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2756 (($) 19 T CONST)) (-2414 (($) 18 T CONST)) (-1531 (((-108) $ $) 22)) (-1549 (((-108) $ $) NIL)) (-3480 (((-708) $) 47 (|has| $ (-6 -4238)))))
-(((-129) (-13 (-1014) (-563 (-1068)) (-400 (-132)) (-563 (-588 (-132))) (-10 -8 (-15 -1204 ($ (-1068))) (-15 -1204 ($ (-588 (-132)))) (-15 -1921 ($) -2677) (-15 -1720 ($) -2677) (-15 -2084 ($) -2677) (-15 -2390 ($) -2677) (-15 -2414 ($) -2677) (-15 -2756 ($) -2677)))) (T -129))
-((-1204 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-129)))) (-1204 (*1 *1 *2) (-12 (-5 *2 (-588 (-132))) (-5 *1 (-129)))) (-1921 (*1 *1) (-5 *1 (-129))) (-1720 (*1 *1) (-5 *1 (-129))) (-2084 (*1 *1) (-5 *1 (-129))) (-2390 (*1 *1) (-5 *1 (-129))) (-2414 (*1 *1) (-5 *1 (-129))) (-2756 (*1 *1) (-5 *1 (-129))))
-(-13 (-1014) (-563 (-1068)) (-400 (-132)) (-563 (-588 (-132))) (-10 -8 (-15 -1204 ($ (-1068))) (-15 -1204 ($ (-588 (-132)))) (-15 -1921 ($) -2677) (-15 -1720 ($) -2677) (-15 -2084 ($) -2677) (-15 -2390 ($) -2677) (-15 -2414 ($) -2677) (-15 -2756 ($) -2677)))
-((-2297 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-1847 ((|#1| |#3|) 9)) (-3513 ((|#3| |#3|) 15)))
-(((-130 |#1| |#2| |#3|) (-10 -7 (-15 -1847 (|#1| |#3|)) (-15 -3513 (|#3| |#3|)) (-15 -2297 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-514) (-919 |#1|) (-348 |#2|)) (T -130))
-((-2297 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-919 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-130 *4 *5 *3)) (-4 *3 (-348 *5)))) (-3513 (*1 *2 *2) (-12 (-4 *3 (-514)) (-4 *4 (-919 *3)) (-5 *1 (-130 *3 *4 *2)) (-4 *2 (-348 *4)))) (-1847 (*1 *2 *3) (-12 (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-130 *2 *4 *3)) (-4 *3 (-348 *4)))))
-(-10 -7 (-15 -1847 (|#1| |#3|)) (-15 -3513 (|#3| |#3|)) (-15 -2297 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-3219 (($ $ $) 8)) (-2868 (($ $) 7)) (-1480 (($ $ $) 6)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-708) "failed") $) 38)) (-1478 (((-708) $) 36)) (-3920 (((-3 $ "failed") $) NIL)) (-2859 (((-108) $) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) 26)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2607 (((-108)) 39)) (-2875 (((-108) (-108)) 41)) (-2680 (((-108) $) 23)) (-1896 (((-108) $) 35)) (-2217 (((-792) $) 22) (($ (-708)) 14)) (-3622 (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3697 (($) 12 T CONST)) (-3709 (($) 11 T CONST)) (-1858 (($ (-708)) 15)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 24)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 25)) (-1672 (((-3 $ "failed") $ $) 29)) (-1661 (($ $ $) 27)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL) (($ $ $) 34)) (* (($ (-708) $) 32) (($ (-850) $) NIL) (($ $ $) 30)))
+(((-126) (-13 (-784) (-23) (-664) (-962 (-708)) (-10 -8 (-6 (-4240 "*")) (-15 -1672 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1858 ($ (-708))) (-15 -2680 ((-108) $)) (-15 -1896 ((-108) $)) (-15 -2607 ((-108))) (-15 -2875 ((-108) (-108)))))) (T -126))
+((-1672 (*1 *1 *1 *1) (|partial| -5 *1 (-126))) (** (*1 *1 *1 *1) (-5 *1 (-126))) (-1858 (*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-126)))) (-2680 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-126)))) (-1896 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-126)))) (-2607 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-126)))) (-2875 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-126)))))
+(-13 (-784) (-23) (-664) (-962 (-708)) (-10 -8 (-6 (-4240 "*")) (-15 -1672 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1858 ($ (-708))) (-15 -2680 ((-108) $)) (-15 -1896 ((-108) $)) (-15 -2607 ((-108))) (-15 -2875 ((-108) (-108)))))
+((-3213 (((-128 |#1| |#2| |#4|) (-588 |#4|) (-128 |#1| |#2| |#3|)) 14)) (-3810 (((-128 |#1| |#2| |#4|) (-1 |#4| |#3|) (-128 |#1| |#2| |#3|)) 18)))
+(((-127 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3213 ((-128 |#1| |#2| |#4|) (-588 |#4|) (-128 |#1| |#2| |#3|))) (-15 -3810 ((-128 |#1| |#2| |#4|) (-1 |#4| |#3|) (-128 |#1| |#2| |#3|)))) (-522) (-708) (-157) (-157)) (T -127))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-128 *5 *6 *7)) (-14 *5 (-522)) (-14 *6 (-708)) (-4 *7 (-157)) (-4 *8 (-157)) (-5 *2 (-128 *5 *6 *8)) (-5 *1 (-127 *5 *6 *7 *8)))) (-3213 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-128 *5 *6 *7)) (-14 *5 (-522)) (-14 *6 (-708)) (-4 *7 (-157)) (-4 *8 (-157)) (-5 *2 (-128 *5 *6 *8)) (-5 *1 (-127 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3213 ((-128 |#1| |#2| |#4|) (-588 |#4|) (-128 |#1| |#2| |#3|))) (-15 -3810 ((-128 |#1| |#2| |#4|) (-1 |#4| |#3|) (-128 |#1| |#2| |#3|))))
+((-1419 (((-108) $ $) NIL)) (-2574 (($ (-588 |#3|)) 39)) (-2682 (($ $) 98) (($ $ (-522) (-522)) 97)) (-3367 (($) 17)) (-3700 (((-3 |#3| "failed") $) 59)) (-1478 ((|#3| $) NIL)) (-3347 (($ $ (-588 (-522))) 99)) (-3203 (((-588 |#3|) $) 35)) (-1692 (((-708) $) 43)) (-3589 (($ $ $) 92)) (-2212 (($) 42)) (-2311 (((-1068) $) NIL)) (-2074 (($) 16)) (-4174 (((-1032) $) NIL)) (-2683 ((|#3| $) 45) ((|#3| $ (-522)) 46) ((|#3| $ (-522) (-522)) 47) ((|#3| $ (-522) (-522) (-522)) 48) ((|#3| $ (-522) (-522) (-522) (-522)) 49) ((|#3| $ (-588 (-522))) 51)) (-2487 (((-708) $) 44)) (-1208 (($ $ (-522) $ (-522)) 93) (($ $ (-522) (-522)) 95)) (-2217 (((-792) $) 66) (($ |#3|) 67) (($ (-217 |#2| |#3|)) 74) (($ (-1052 |#2| |#3|)) 77) (($ (-588 |#3|)) 52) (($ (-588 $)) 57)) (-3697 (($) 68 T CONST)) (-3709 (($) 69 T CONST)) (-1562 (((-108) $ $) 79)) (-1672 (($ $) 85) (($ $ $) 83)) (-1661 (($ $ $) 81)) (* (($ |#3| $) 90) (($ $ |#3|) 91) (($ $ (-522)) 88) (($ (-522) $) 87) (($ $ $) 94)))
+(((-128 |#1| |#2| |#3|) (-13 (-439 |#3| (-708)) (-444 (-522) (-708)) (-10 -8 (-15 -2217 ($ (-217 |#2| |#3|))) (-15 -2217 ($ (-1052 |#2| |#3|))) (-15 -2217 ($ (-588 |#3|))) (-15 -2217 ($ (-588 $))) (-15 -1692 ((-708) $)) (-15 -2683 (|#3| $)) (-15 -2683 (|#3| $ (-522))) (-15 -2683 (|#3| $ (-522) (-522))) (-15 -2683 (|#3| $ (-522) (-522) (-522))) (-15 -2683 (|#3| $ (-522) (-522) (-522) (-522))) (-15 -2683 (|#3| $ (-588 (-522)))) (-15 -3589 ($ $ $)) (-15 * ($ $ $)) (-15 -1208 ($ $ (-522) $ (-522))) (-15 -1208 ($ $ (-522) (-522))) (-15 -2682 ($ $)) (-15 -2682 ($ $ (-522) (-522))) (-15 -3347 ($ $ (-588 (-522)))) (-15 -2074 ($)) (-15 -2212 ($)) (-15 -3203 ((-588 |#3|) $)) (-15 -2574 ($ (-588 |#3|))) (-15 -3367 ($)))) (-522) (-708) (-157)) (T -128))
+((-3589 (*1 *1 *1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708)) (-4 *4 (-157)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-217 *4 *5)) (-14 *4 (-708)) (-4 *5 (-157)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1052 *4 *5)) (-14 *4 (-708)) (-4 *5 (-157)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-588 *5)) (-4 *5 (-157)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)) (-14 *4 (-708)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-588 (-128 *3 *4 *5))) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)) (-14 *4 (-708)) (-4 *5 (-157)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)) (-14 *4 *2) (-4 *5 (-157)))) (-2683 (*1 *2 *1) (-12 (-4 *2 (-157)) (-5 *1 (-128 *3 *4 *2)) (-14 *3 (-522)) (-14 *4 (-708)))) (-2683 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *2 (-157)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-708)))) (-2683 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-4 *2 (-157)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-708)))) (-2683 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-522)) (-4 *2 (-157)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-708)))) (-2683 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-522)) (-4 *2 (-157)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-708)))) (-2683 (*1 *2 *1 *3) (-12 (-5 *3 (-588 (-522))) (-4 *2 (-157)) (-5 *1 (-128 *4 *5 *2)) (-14 *4 (-522)) (-14 *5 (-708)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708)) (-4 *4 (-157)))) (-1208 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-708)) (-4 *5 (-157)))) (-1208 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-708)) (-4 *5 (-157)))) (-2682 (*1 *1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708)) (-4 *4 (-157)))) (-2682 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-708)) (-4 *5 (-157)))) (-3347 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)) (-14 *4 (-708)) (-4 *5 (-157)))) (-2074 (*1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708)) (-4 *4 (-157)))) (-2212 (*1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708)) (-4 *4 (-157)))) (-3203 (*1 *2 *1) (-12 (-5 *2 (-588 *5)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)) (-14 *4 (-708)) (-4 *5 (-157)))) (-2574 (*1 *1 *2) (-12 (-5 *2 (-588 *5)) (-4 *5 (-157)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522)) (-14 *4 (-708)))) (-3367 (*1 *1) (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708)) (-4 *4 (-157)))))
+(-13 (-439 |#3| (-708)) (-444 (-522) (-708)) (-10 -8 (-15 -2217 ($ (-217 |#2| |#3|))) (-15 -2217 ($ (-1052 |#2| |#3|))) (-15 -2217 ($ (-588 |#3|))) (-15 -2217 ($ (-588 $))) (-15 -1692 ((-708) $)) (-15 -2683 (|#3| $)) (-15 -2683 (|#3| $ (-522))) (-15 -2683 (|#3| $ (-522) (-522))) (-15 -2683 (|#3| $ (-522) (-522) (-522))) (-15 -2683 (|#3| $ (-522) (-522) (-522) (-522))) (-15 -2683 (|#3| $ (-588 (-522)))) (-15 -3589 ($ $ $)) (-15 * ($ $ $)) (-15 -1208 ($ $ (-522) $ (-522))) (-15 -1208 ($ $ (-522) (-522))) (-15 -2682 ($ $)) (-15 -2682 ($ $ (-522) (-522))) (-15 -3347 ($ $ (-588 (-522)))) (-15 -2074 ($)) (-15 -2212 ($)) (-15 -3203 ((-588 |#3|) $)) (-15 -2574 ($ (-588 |#3|))) (-15 -3367 ($))))
+((-1419 (((-108) $ $) NIL)) (-4140 (($) 15 T CONST)) (-3641 (($) NIL (|has| (-132) (-343)))) (-2323 (($ $ $) 17) (($ $ (-132)) NIL) (($ (-132) $) NIL)) (-4099 (($ $ $) NIL)) (-1751 (((-108) $ $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1685 (((-708)) NIL (|has| (-132) (-343)))) (-1852 (($) NIL) (($ (-588 (-132))) NIL)) (-1213 (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1700 (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238))) (($ (-132) $) 51 (|has| $ (-6 -4238)))) (-1424 (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238))) (($ (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-2153 (((-132) (-1 (-132) (-132) (-132)) $) NIL (|has| $ (-6 -4238))) (((-132) (-1 (-132) (-132) (-132)) $ (-132)) NIL (|has| $ (-6 -4238))) (((-132) (-1 (-132) (-132) (-132)) $ (-132) (-132)) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-3344 (($) NIL (|has| (-132) (-343)))) (-2395 (((-588 (-132)) $) 60 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-1308 (((-132) $) NIL (|has| (-132) (-784)))) (-4084 (((-588 (-132)) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-132) $) 26 (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-2524 (((-132) $) NIL (|has| (-132) (-784)))) (-2397 (($ (-1 (-132) (-132)) $) 59 (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-132) (-132)) $) 55)) (-2369 (($) 16 T CONST)) (-1475 (((-850) $) NIL (|has| (-132) (-343)))) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-2251 (($ $ $) 29)) (-1431 (((-132) $) 52)) (-3365 (($ (-132) $) 50)) (-2882 (($ (-850)) NIL (|has| (-132) (-343)))) (-1245 (($) 14 T CONST)) (-4174 (((-1032) $) NIL)) (-2187 (((-3 (-132) "failed") (-1 (-108) (-132)) $) NIL)) (-3295 (((-132) $) 53)) (-3487 (((-108) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-132)) (-588 (-132))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-132) (-132)) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-270 (-132))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-588 (-270 (-132)))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) 48)) (-1317 (($) 13 T CONST)) (-3962 (($ $ $) 31) (($ $ (-132)) NIL)) (-3546 (($ (-588 (-132))) NIL) (($) NIL)) (-4187 (((-708) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014)))) (((-708) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-1068) $) 36) (((-498) $) NIL (|has| (-132) (-563 (-498)))) (((-588 (-132)) $) 34)) (-2227 (($ (-588 (-132))) NIL)) (-3201 (($ $) 32 (|has| (-132) (-343)))) (-2217 (((-792) $) 46)) (-1775 (($ (-1068)) 12) (($ (-588 (-132))) 43)) (-2847 (((-708) $) NIL)) (-3482 (($) 49) (($ (-588 (-132))) NIL)) (-2501 (($ (-588 (-132))) NIL)) (-1381 (((-108) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-1477 (($) 19 T CONST)) (-2608 (($) 18 T CONST)) (-1562 (((-108) $ $) 22)) (-1587 (((-108) $ $) NIL)) (-3591 (((-708) $) 47 (|has| $ (-6 -4238)))))
+(((-129) (-13 (-1014) (-563 (-1068)) (-400 (-132)) (-563 (-588 (-132))) (-10 -8 (-15 -1775 ($ (-1068))) (-15 -1775 ($ (-588 (-132)))) (-15 -1317 ($) -2855) (-15 -1245 ($) -2855) (-15 -4140 ($) -2855) (-15 -2369 ($) -2855) (-15 -2608 ($) -2855) (-15 -1477 ($) -2855)))) (T -129))
+((-1775 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-129)))) (-1775 (*1 *1 *2) (-12 (-5 *2 (-588 (-132))) (-5 *1 (-129)))) (-1317 (*1 *1) (-5 *1 (-129))) (-1245 (*1 *1) (-5 *1 (-129))) (-4140 (*1 *1) (-5 *1 (-129))) (-2369 (*1 *1) (-5 *1 (-129))) (-2608 (*1 *1) (-5 *1 (-129))) (-1477 (*1 *1) (-5 *1 (-129))))
+(-13 (-1014) (-563 (-1068)) (-400 (-132)) (-563 (-588 (-132))) (-10 -8 (-15 -1775 ($ (-1068))) (-15 -1775 ($ (-588 (-132)))) (-15 -1317 ($) -2855) (-15 -1245 ($) -2855) (-15 -4140 ($) -2855) (-15 -2369 ($) -2855) (-15 -2608 ($) -2855) (-15 -1477 ($) -2855)))
+((-2567 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-2460 ((|#1| |#3|) 9)) (-2508 ((|#3| |#3|) 15)))
+(((-130 |#1| |#2| |#3|) (-10 -7 (-15 -2460 (|#1| |#3|)) (-15 -2508 (|#3| |#3|)) (-15 -2567 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-514) (-919 |#1|) (-348 |#2|)) (T -130))
+((-2567 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-919 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-130 *4 *5 *3)) (-4 *3 (-348 *5)))) (-2508 (*1 *2 *2) (-12 (-4 *3 (-514)) (-4 *4 (-919 *3)) (-5 *1 (-130 *3 *4 *2)) (-4 *2 (-348 *4)))) (-2460 (*1 *2 *3) (-12 (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-130 *2 *4 *3)) (-4 *3 (-348 *4)))))
+(-10 -7 (-15 -2460 (|#1| |#3|)) (-15 -2508 (|#3| |#3|)) (-15 -2567 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-2634 (($ $ $) 8)) (-1274 (($ $) 7)) (-1591 (($ $ $) 6)))
(((-131) (-1197)) (T -131))
-((-3219 (*1 *1 *1 *1) (-4 *1 (-131))) (-2868 (*1 *1 *1) (-4 *1 (-131))) (-1480 (*1 *1 *1 *1) (-4 *1 (-131))))
-(-13 (-10 -8 (-15 -1480 ($ $ $)) (-15 -2868 ($ $)) (-15 -3219 ($ $ $))))
-((-1416 (((-108) $ $) NIL)) (-1205 (((-108) $) 38)) (-2084 (($ $) 50)) (-2594 (($) 25)) (-1629 (((-708)) 16)) (-3255 (($) 24)) (-1396 (($) 26)) (-3459 (((-522) $) 21)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-3438 (((-108) $) 40)) (-2390 (($ $) 51)) (-2120 (((-850) $) 22)) (-2385 (((-1068) $) 46)) (-2717 (($ (-850)) 20)) (-2801 (((-108) $) 36)) (-4151 (((-1032) $) NIL)) (-1308 (($) 27)) (-3590 (((-108) $) 34)) (-2190 (((-792) $) 29)) (-3508 (($ (-522)) 18) (($ (-1068)) 49)) (-1822 (((-108) $) 44)) (-2592 (((-108) $) 42)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 13)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 14)))
-(((-132) (-13 (-778) (-10 -8 (-15 -3459 ((-522) $)) (-15 -3508 ($ (-522))) (-15 -3508 ($ (-1068))) (-15 -2594 ($)) (-15 -1396 ($)) (-15 -1308 ($)) (-15 -2084 ($ $)) (-15 -2390 ($ $)) (-15 -3590 ((-108) $)) (-15 -2801 ((-108) $)) (-15 -2592 ((-108) $)) (-15 -1205 ((-108) $)) (-15 -3438 ((-108) $)) (-15 -1822 ((-108) $))))) (T -132))
-((-3459 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-132)))) (-3508 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-132)))) (-3508 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-132)))) (-2594 (*1 *1) (-5 *1 (-132))) (-1396 (*1 *1) (-5 *1 (-132))) (-1308 (*1 *1) (-5 *1 (-132))) (-2084 (*1 *1 *1) (-5 *1 (-132))) (-2390 (*1 *1 *1) (-5 *1 (-132))) (-3590 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))) (-2801 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))) (-2592 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))) (-1205 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))) (-3438 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))) (-1822 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
-(-13 (-778) (-10 -8 (-15 -3459 ((-522) $)) (-15 -3508 ($ (-522))) (-15 -3508 ($ (-1068))) (-15 -2594 ($)) (-15 -1396 ($)) (-15 -1308 ($)) (-15 -2084 ($ $)) (-15 -2390 ($ $)) (-15 -3590 ((-108) $)) (-15 -2801 ((-108) $)) (-15 -2592 ((-108) $)) (-15 -1205 ((-108) $)) (-15 -3438 ((-108) $)) (-15 -1822 ((-108) $))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ (-522)) 28)) (-2143 (((-3 $ "failed") $) 35)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-2634 (*1 *1 *1 *1) (-4 *1 (-131))) (-1274 (*1 *1 *1) (-4 *1 (-131))) (-1591 (*1 *1 *1 *1) (-4 *1 (-131))))
+(-13 (-10 -8 (-15 -1591 ($ $ $)) (-15 -1274 ($ $)) (-15 -2634 ($ $ $))))
+((-1419 (((-108) $ $) NIL)) (-1783 (((-108) $) 38)) (-4140 (($ $) 50)) (-1903 (($) 25)) (-1685 (((-708)) 16)) (-3344 (($) 24)) (-3806 (($) 26)) (-3196 (((-522) $) 21)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-3033 (((-108) $) 40)) (-2369 (($ $) 51)) (-1475 (((-850) $) 22)) (-2311 (((-1068) $) 46)) (-2882 (($ (-850)) 20)) (-2587 (((-108) $) 36)) (-4174 (((-1032) $) NIL)) (-1797 (($) 27)) (-3729 (((-108) $) 34)) (-2217 (((-792) $) 29)) (-3631 (($ (-522)) 18) (($ (-1068)) 49)) (-2178 (((-108) $) 44)) (-3083 (((-108) $) 42)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 13)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 14)))
+(((-132) (-13 (-778) (-10 -8 (-15 -3196 ((-522) $)) (-15 -3631 ($ (-522))) (-15 -3631 ($ (-1068))) (-15 -1903 ($)) (-15 -3806 ($)) (-15 -1797 ($)) (-15 -4140 ($ $)) (-15 -2369 ($ $)) (-15 -3729 ((-108) $)) (-15 -2587 ((-108) $)) (-15 -3083 ((-108) $)) (-15 -1783 ((-108) $)) (-15 -3033 ((-108) $)) (-15 -2178 ((-108) $))))) (T -132))
+((-3196 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-132)))) (-3631 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-132)))) (-3631 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-132)))) (-1903 (*1 *1) (-5 *1 (-132))) (-3806 (*1 *1) (-5 *1 (-132))) (-1797 (*1 *1) (-5 *1 (-132))) (-4140 (*1 *1 *1) (-5 *1 (-132))) (-2369 (*1 *1 *1) (-5 *1 (-132))) (-3729 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))) (-2587 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))) (-3083 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))) (-1783 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))) (-3033 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))) (-2178 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
+(-13 (-778) (-10 -8 (-15 -3196 ((-522) $)) (-15 -3631 ($ (-522))) (-15 -3631 ($ (-1068))) (-15 -1903 ($)) (-15 -3806 ($)) (-15 -1797 ($)) (-15 -4140 ($ $)) (-15 -2369 ($ $)) (-15 -3729 ((-108) $)) (-15 -2587 ((-108) $)) (-15 -3083 ((-108) $)) (-15 -1783 ((-108) $)) (-15 -3033 ((-108) $)) (-15 -2178 ((-108) $))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ (-522)) 28)) (-3040 (((-3 $ "failed") $) 35)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-133) (-1197)) (T -133))
-((-2143 (*1 *1 *1) (|partial| -4 *1 (-133))))
-(-13 (-971) (-10 -8 (-15 -2143 ((-3 $ "failed") $))))
+((-3040 (*1 *1 *1) (|partial| -4 *1 (-133))))
+(-13 (-971) (-10 -8 (-15 -3040 ((-3 $ "failed") $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 $) . T) ((-664) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-2051 ((|#1| (-628 |#1|) |#1|) 17)))
-(((-134 |#1|) (-10 -7 (-15 -2051 (|#1| (-628 |#1|) |#1|))) (-157)) (T -134))
-((-2051 (*1 *2 *3 *2) (-12 (-5 *3 (-628 *2)) (-4 *2 (-157)) (-5 *1 (-134 *2)))))
-(-10 -7 (-15 -2051 (|#1| (-628 |#1|) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ (-522)) 28)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-2645 ((|#1| (-628 |#1|) |#1|) 17)))
+(((-134 |#1|) (-10 -7 (-15 -2645 (|#1| (-628 |#1|) |#1|))) (-157)) (T -134))
+((-2645 (*1 *2 *3 *2) (-12 (-5 *3 (-628 *2)) (-4 *2 (-157)) (-5 *1 (-134 *2)))))
+(-10 -7 (-15 -2645 (|#1| (-628 |#1|) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ (-522)) 28)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-135) (-1197)) (T -135))
NIL
(-13 (-971))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 $) . T) ((-664) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-2427 (((-2 (|:| -1400 (-708)) (|:| -2977 (-382 |#2|)) (|:| |radicand| |#2|)) (-382 |#2|) (-708)) 70)) (-2634 (((-3 (-2 (|:| |radicand| (-382 |#2|)) (|:| |deg| (-708))) "failed") |#3|) 52)) (-4033 (((-2 (|:| -2977 (-382 |#2|)) (|:| |poly| |#3|)) |#3|) 37)) (-4058 ((|#1| |#3| |#3|) 40)) (-2289 ((|#3| |#3| (-382 |#2|) (-382 |#2|)) 19)) (-2380 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-382 |#2|)) (|:| |c2| (-382 |#2|)) (|:| |deg| (-708))) |#3| |#3|) 49)))
-(((-136 |#1| |#2| |#3|) (-10 -7 (-15 -4033 ((-2 (|:| -2977 (-382 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2634 ((-3 (-2 (|:| |radicand| (-382 |#2|)) (|:| |deg| (-708))) "failed") |#3|)) (-15 -2427 ((-2 (|:| -1400 (-708)) (|:| -2977 (-382 |#2|)) (|:| |radicand| |#2|)) (-382 |#2|) (-708))) (-15 -4058 (|#1| |#3| |#3|)) (-15 -2289 (|#3| |#3| (-382 |#2|) (-382 |#2|))) (-15 -2380 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-382 |#2|)) (|:| |c2| (-382 |#2|)) (|:| |deg| (-708))) |#3| |#3|))) (-1124) (-1142 |#1|) (-1142 (-382 |#2|))) (T -136))
-((-2380 (*1 *2 *3 *3) (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-382 *5)) (|:| |c2| (-382 *5)) (|:| |deg| (-708)))) (-5 *1 (-136 *4 *5 *3)) (-4 *3 (-1142 (-382 *5))))) (-2289 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-382 *5)) (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-5 *1 (-136 *4 *5 *2)) (-4 *2 (-1142 *3)))) (-4058 (*1 *2 *3 *3) (-12 (-4 *4 (-1142 *2)) (-4 *2 (-1124)) (-5 *1 (-136 *2 *4 *3)) (-4 *3 (-1142 (-382 *4))))) (-2427 (*1 *2 *3 *4) (-12 (-5 *3 (-382 *6)) (-4 *5 (-1124)) (-4 *6 (-1142 *5)) (-5 *2 (-2 (|:| -1400 (-708)) (|:| -2977 *3) (|:| |radicand| *6))) (-5 *1 (-136 *5 *6 *7)) (-5 *4 (-708)) (-4 *7 (-1142 *3)))) (-2634 (*1 *2 *3) (|partial| -12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| |radicand| (-382 *5)) (|:| |deg| (-708)))) (-5 *1 (-136 *4 *5 *3)) (-4 *3 (-1142 (-382 *5))))) (-4033 (*1 *2 *3) (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| -2977 (-382 *5)) (|:| |poly| *3))) (-5 *1 (-136 *4 *5 *3)) (-4 *3 (-1142 (-382 *5))))))
-(-10 -7 (-15 -4033 ((-2 (|:| -2977 (-382 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2634 ((-3 (-2 (|:| |radicand| (-382 |#2|)) (|:| |deg| (-708))) "failed") |#3|)) (-15 -2427 ((-2 (|:| -1400 (-708)) (|:| -2977 (-382 |#2|)) (|:| |radicand| |#2|)) (-382 |#2|) (-708))) (-15 -4058 (|#1| |#3| |#3|)) (-15 -2289 (|#3| |#3| (-382 |#2|) (-382 |#2|))) (-15 -2380 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-382 |#2|)) (|:| |c2| (-382 |#2|)) (|:| |deg| (-708))) |#3| |#3|)))
-((-1473 (((-3 (-588 (-1081 |#2|)) "failed") (-588 (-1081 |#2|)) (-1081 |#2|)) 32)))
-(((-137 |#1| |#2|) (-10 -7 (-15 -1473 ((-3 (-588 (-1081 |#2|)) "failed") (-588 (-1081 |#2|)) (-1081 |#2|)))) (-507) (-151 |#1|)) (T -137))
-((-1473 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-1081 *5))) (-5 *3 (-1081 *5)) (-4 *5 (-151 *4)) (-4 *4 (-507)) (-5 *1 (-137 *4 *5)))))
-(-10 -7 (-15 -1473 ((-3 (-588 (-1081 |#2|)) "failed") (-588 (-1081 |#2|)) (-1081 |#2|))))
-((-1628 (($ (-1 (-108) |#2|) $) 29)) (-2333 (($ $) 36)) (-1423 (($ (-1 (-108) |#2|) $) 27) (($ |#2| $) 32)) (-3864 ((|#2| (-1 |#2| |#2| |#2|) $) 22) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 24) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 34)) (-1414 (((-3 |#2| "failed") (-1 (-108) |#2|) $) 19)) (-3053 (((-108) (-1 (-108) |#2|) $) 16)) (-4168 (((-708) (-1 (-108) |#2|) $) 13) (((-708) |#2| $) NIL)) (-3648 (((-108) (-1 (-108) |#2|) $) 15)) (-3480 (((-708) $) 11)))
-(((-138 |#1| |#2|) (-10 -8 (-15 -2333 (|#1| |#1|)) (-15 -1423 (|#1| |#2| |#1|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1628 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1423 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1414 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -4168 ((-708) |#2| |#1|)) (-15 -4168 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3053 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3648 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3480 ((-708) |#1|))) (-139 |#2|) (-1120)) (T -138))
-NIL
-(-10 -8 (-15 -2333 (|#1| |#1|)) (-15 -1423 (|#1| |#2| |#1|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1628 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1423 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1414 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -4168 ((-708) |#2| |#1|)) (-15 -4168 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3053 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3648 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3480 ((-708) |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) 8)) (-1628 (($ (-1 (-108) |#1|) $) 44 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-2333 (($ $) 41 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238))) (($ |#1| $) 42 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $) 47 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 46 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 48)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-1431 (((-498) $) 40 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 49)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-3310 (((-2 (|:| -3858 (-708)) (|:| -3112 (-382 |#2|)) (|:| |radicand| |#2|)) (-382 |#2|) (-708)) 70)) (-2391 (((-3 (-2 (|:| |radicand| (-382 |#2|)) (|:| |deg| (-708))) "failed") |#3|) 52)) (-3985 (((-2 (|:| -3112 (-382 |#2|)) (|:| |poly| |#3|)) |#3|) 37)) (-3087 ((|#1| |#3| |#3|) 40)) (-2330 ((|#3| |#3| (-382 |#2|) (-382 |#2|)) 19)) (-1271 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-382 |#2|)) (|:| |c2| (-382 |#2|)) (|:| |deg| (-708))) |#3| |#3|) 49)))
+(((-136 |#1| |#2| |#3|) (-10 -7 (-15 -3985 ((-2 (|:| -3112 (-382 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2391 ((-3 (-2 (|:| |radicand| (-382 |#2|)) (|:| |deg| (-708))) "failed") |#3|)) (-15 -3310 ((-2 (|:| -3858 (-708)) (|:| -3112 (-382 |#2|)) (|:| |radicand| |#2|)) (-382 |#2|) (-708))) (-15 -3087 (|#1| |#3| |#3|)) (-15 -2330 (|#3| |#3| (-382 |#2|) (-382 |#2|))) (-15 -1271 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-382 |#2|)) (|:| |c2| (-382 |#2|)) (|:| |deg| (-708))) |#3| |#3|))) (-1124) (-1142 |#1|) (-1142 (-382 |#2|))) (T -136))
+((-1271 (*1 *2 *3 *3) (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-382 *5)) (|:| |c2| (-382 *5)) (|:| |deg| (-708)))) (-5 *1 (-136 *4 *5 *3)) (-4 *3 (-1142 (-382 *5))))) (-2330 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-382 *5)) (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-5 *1 (-136 *4 *5 *2)) (-4 *2 (-1142 *3)))) (-3087 (*1 *2 *3 *3) (-12 (-4 *4 (-1142 *2)) (-4 *2 (-1124)) (-5 *1 (-136 *2 *4 *3)) (-4 *3 (-1142 (-382 *4))))) (-3310 (*1 *2 *3 *4) (-12 (-5 *3 (-382 *6)) (-4 *5 (-1124)) (-4 *6 (-1142 *5)) (-5 *2 (-2 (|:| -3858 (-708)) (|:| -3112 *3) (|:| |radicand| *6))) (-5 *1 (-136 *5 *6 *7)) (-5 *4 (-708)) (-4 *7 (-1142 *3)))) (-2391 (*1 *2 *3) (|partial| -12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| |radicand| (-382 *5)) (|:| |deg| (-708)))) (-5 *1 (-136 *4 *5 *3)) (-4 *3 (-1142 (-382 *5))))) (-3985 (*1 *2 *3) (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| -3112 (-382 *5)) (|:| |poly| *3))) (-5 *1 (-136 *4 *5 *3)) (-4 *3 (-1142 (-382 *5))))))
+(-10 -7 (-15 -3985 ((-2 (|:| -3112 (-382 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2391 ((-3 (-2 (|:| |radicand| (-382 |#2|)) (|:| |deg| (-708))) "failed") |#3|)) (-15 -3310 ((-2 (|:| -3858 (-708)) (|:| -3112 (-382 |#2|)) (|:| |radicand| |#2|)) (-382 |#2|) (-708))) (-15 -3087 (|#1| |#3| |#3|)) (-15 -2330 (|#3| |#3| (-382 |#2|) (-382 |#2|))) (-15 -1271 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-382 |#2|)) (|:| |c2| (-382 |#2|)) (|:| |deg| (-708))) |#3| |#3|)))
+((-2800 (((-3 (-588 (-1081 |#2|)) "failed") (-588 (-1081 |#2|)) (-1081 |#2|)) 32)))
+(((-137 |#1| |#2|) (-10 -7 (-15 -2800 ((-3 (-588 (-1081 |#2|)) "failed") (-588 (-1081 |#2|)) (-1081 |#2|)))) (-507) (-151 |#1|)) (T -137))
+((-2800 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-1081 *5))) (-5 *3 (-1081 *5)) (-4 *5 (-151 *4)) (-4 *4 (-507)) (-5 *1 (-137 *4 *5)))))
+(-10 -7 (-15 -2800 ((-3 (-588 (-1081 |#2|)) "failed") (-588 (-1081 |#2|)) (-1081 |#2|))))
+((-1696 (($ (-1 (-108) |#2|) $) 29)) (-2379 (($ $) 36)) (-1424 (($ (-1 (-108) |#2|) $) 27) (($ |#2| $) 32)) (-2153 ((|#2| (-1 |#2| |#2| |#2|) $) 22) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 24) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 34)) (-2187 (((-3 |#2| "failed") (-1 (-108) |#2|) $) 19)) (-3487 (((-108) (-1 (-108) |#2|) $) 16)) (-4187 (((-708) (-1 (-108) |#2|) $) 13) (((-708) |#2| $) NIL)) (-1381 (((-108) (-1 (-108) |#2|) $) 15)) (-3591 (((-708) $) 11)))
+(((-138 |#1| |#2|) (-10 -8 (-15 -2379 (|#1| |#1|)) (-15 -1424 (|#1| |#2| |#1|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1696 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1424 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2187 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -4187 ((-708) |#2| |#1|)) (-15 -4187 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3487 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1381 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3591 ((-708) |#1|))) (-139 |#2|) (-1120)) (T -138))
+NIL
+(-10 -8 (-15 -2379 (|#1| |#1|)) (-15 -1424 (|#1| |#2| |#1|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1696 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1424 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2187 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -4187 ((-708) |#2| |#1|)) (-15 -4187 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3487 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1381 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3591 ((-708) |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) 8)) (-1696 (($ (-1 (-108) |#1|) $) 44 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-2379 (($ $) 41 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238))) (($ |#1| $) 42 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $) 47 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 46 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 48)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-3873 (((-498) $) 40 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 49)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-139 |#1|) (-1197) (-1120)) (T -139))
-((-2201 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-4 *1 (-139 *3)))) (-1414 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-108) *2)) (-4 *1 (-139 *2)) (-4 *2 (-1120)))) (-3864 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120)))) (-3864 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120)))) (-1423 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *3)) (-4 *3 (-1120)))) (-1628 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *3)) (-4 *3 (-1120)))) (-3864 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1014)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120)))) (-1423 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120)) (-4 *2 (-1014)))) (-2333 (*1 *1 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120)) (-4 *2 (-1014)))))
-(-13 (-461 |t#1|) (-10 -8 (-15 -2201 ($ (-588 |t#1|))) (-15 -1414 ((-3 |t#1| "failed") (-1 (-108) |t#1|) $)) (IF (|has| $ (-6 -4238)) (PROGN (-15 -3864 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -3864 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -1423 ($ (-1 (-108) |t#1|) $)) (-15 -1628 ($ (-1 (-108) |t#1|) $)) (IF (|has| |t#1| (-1014)) (PROGN (-15 -3864 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -1423 ($ |t#1| $)) (-15 -2333 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) 86)) (-2782 (((-108) $) NIL)) (-4049 (($ |#2| (-588 (-850))) 57)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2967 (($ (-850)) 48)) (-4078 (((-126)) 23)) (-2190 (((-792) $) 69) (($ (-522)) 46) (($ |#2|) 47)) (-3243 ((|#2| $ (-588 (-850))) 59)) (-2323 (((-708)) 20)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 40 T CONST)) (-3577 (($) 44 T CONST)) (-1531 (((-108) $ $) 26)) (-1620 (($ $ |#2|) NIL)) (-1612 (($ $) 34) (($ $ $) 32)) (-1602 (($ $ $) 30)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 37) (($ $ $) 52) (($ |#2| $) 39) (($ $ |#2|) NIL)))
-(((-140 |#1| |#2| |#3|) (-13 (-971) (-37 |#2|) (-1173 |#2|) (-10 -8 (-15 -2967 ($ (-850))) (-15 -4049 ($ |#2| (-588 (-850)))) (-15 -3243 (|#2| $ (-588 (-850)))) (-15 -2682 ((-3 $ "failed") $)))) (-850) (-338) (-920 |#1| |#2|)) (T -140))
-((-2682 (*1 *1 *1) (|partial| -12 (-5 *1 (-140 *2 *3 *4)) (-14 *2 (-850)) (-4 *3 (-338)) (-14 *4 (-920 *2 *3)))) (-2967 (*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-140 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-338)) (-14 *5 (-920 *3 *4)))) (-4049 (*1 *1 *2 *3) (-12 (-5 *3 (-588 (-850))) (-5 *1 (-140 *4 *2 *5)) (-14 *4 (-850)) (-4 *2 (-338)) (-14 *5 (-920 *4 *2)))) (-3243 (*1 *2 *1 *3) (-12 (-5 *3 (-588 (-850))) (-4 *2 (-338)) (-5 *1 (-140 *4 *2 *5)) (-14 *4 (-850)) (-14 *5 (-920 *4 *2)))))
-(-13 (-971) (-37 |#2|) (-1173 |#2|) (-10 -8 (-15 -2967 ($ (-850))) (-15 -4049 ($ |#2| (-588 (-850)))) (-15 -3243 (|#2| $ (-588 (-850)))) (-15 -2682 ((-3 $ "failed") $))))
-((-1242 (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-588 (-872 (-202)))) (-202) (-202) (-202) (-202)) 38)) (-2714 (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856) (-382 (-522)) (-382 (-522))) 63) (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856)) 64)) (-1273 (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-588 (-872 (-202))))) 67) (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-872 (-202)))) 66) (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856) (-382 (-522)) (-382 (-522))) 58) (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856)) 59)))
-(((-141) (-10 -7 (-15 -1273 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856))) (-15 -1273 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856) (-382 (-522)) (-382 (-522)))) (-15 -2714 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856))) (-15 -2714 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856) (-382 (-522)) (-382 (-522)))) (-15 -1242 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-588 (-872 (-202)))) (-202) (-202) (-202) (-202))) (-15 -1273 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-872 (-202))))) (-15 -1273 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-588 (-872 (-202)))))))) (T -141))
-((-1273 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202))))) (-5 *1 (-141)) (-5 *3 (-588 (-588 (-872 (-202))))))) (-1273 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202))))) (-5 *1 (-141)) (-5 *3 (-588 (-872 (-202)))))) (-1242 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-202)) (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 *4)))) (|:| |xValues| (-1009 *4)) (|:| |yValues| (-1009 *4)))) (-5 *1 (-141)) (-5 *3 (-588 (-588 (-872 *4)))))) (-2714 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-856)) (-5 *4 (-382 (-522))) (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202))))) (-5 *1 (-141)))) (-2714 (*1 *2 *3) (-12 (-5 *3 (-856)) (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202))))) (-5 *1 (-141)))) (-1273 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-856)) (-5 *4 (-382 (-522))) (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202))))) (-5 *1 (-141)))) (-1273 (*1 *2 *3) (-12 (-5 *3 (-856)) (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202))))) (-5 *1 (-141)))))
-(-10 -7 (-15 -1273 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856))) (-15 -1273 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856) (-382 (-522)) (-382 (-522)))) (-15 -2714 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856))) (-15 -2714 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856) (-382 (-522)) (-382 (-522)))) (-15 -1242 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-588 (-872 (-202)))) (-202) (-202) (-202) (-202))) (-15 -1273 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-872 (-202))))) (-15 -1273 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-588 (-872 (-202)))))))
-((-3728 (((-588 (-154 |#2|)) |#1| |#2|) 45)))
-(((-142 |#1| |#2|) (-10 -7 (-15 -3728 ((-588 (-154 |#2|)) |#1| |#2|))) (-1142 (-154 (-522))) (-13 (-338) (-782))) (T -142))
-((-3728 (*1 *2 *3 *4) (-12 (-5 *2 (-588 (-154 *4))) (-5 *1 (-142 *3 *4)) (-4 *3 (-1142 (-154 (-522)))) (-4 *4 (-13 (-338) (-782))))))
-(-10 -7 (-15 -3728 ((-588 (-154 |#2|)) |#1| |#2|)))
-((-1416 (((-108) $ $) NIL)) (-1518 (($) 16)) (-2159 (($) 15)) (-1524 (((-850)) 23)) (-2385 (((-1068) $) NIL)) (-3912 (((-522) $) 20)) (-4151 (((-1032) $) NIL)) (-3732 (($) 17)) (-2395 (($ (-522)) 24)) (-2190 (((-792) $) 30)) (-1961 (($) 18)) (-1531 (((-108) $ $) 14)) (-1602 (($ $ $) 13)) (* (($ (-850) $) 22) (($ (-202) $) 8)))
-(((-143) (-13 (-25) (-10 -8 (-15 * ($ (-850) $)) (-15 * ($ (-202) $)) (-15 -1602 ($ $ $)) (-15 -2159 ($)) (-15 -1518 ($)) (-15 -3732 ($)) (-15 -1961 ($)) (-15 -3912 ((-522) $)) (-15 -1524 ((-850))) (-15 -2395 ($ (-522)))))) (T -143))
-((-1602 (*1 *1 *1 *1) (-5 *1 (-143))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-850)) (-5 *1 (-143)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-202)) (-5 *1 (-143)))) (-2159 (*1 *1) (-5 *1 (-143))) (-1518 (*1 *1) (-5 *1 (-143))) (-3732 (*1 *1) (-5 *1 (-143))) (-1961 (*1 *1) (-5 *1 (-143))) (-3912 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-143)))) (-1524 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-143)))) (-2395 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-143)))))
-(-13 (-25) (-10 -8 (-15 * ($ (-850) $)) (-15 * ($ (-202) $)) (-15 -1602 ($ $ $)) (-15 -2159 ($)) (-15 -1518 ($)) (-15 -3732 ($)) (-15 -1961 ($)) (-15 -3912 ((-522) $)) (-15 -1524 ((-850))) (-15 -2395 ($ (-522)))))
-((-1280 ((|#2| |#2| (-1007 |#2|)) 87) ((|#2| |#2| (-1085)) 67)) (-1372 ((|#2| |#2| (-1007 |#2|)) 86) ((|#2| |#2| (-1085)) 66)) (-3219 ((|#2| |#2| |#2|) 27)) (-2626 (((-110) (-110)) 97)) (-1363 ((|#2| (-588 |#2|)) 116)) (-2569 ((|#2| (-588 |#2|)) 134)) (-1516 ((|#2| (-588 |#2|)) 124)) (-3884 ((|#2| |#2|) 122)) (-1851 ((|#2| (-588 |#2|)) 109)) (-3975 ((|#2| (-588 |#2|)) 110)) (-4056 ((|#2| (-588 |#2|)) 132)) (-2692 ((|#2| |#2| (-1085)) 54) ((|#2| |#2|) 53)) (-2868 ((|#2| |#2|) 23)) (-1480 ((|#2| |#2| |#2|) 26)) (-3614 (((-108) (-110)) 47)) (** ((|#2| |#2| |#2|) 38)))
-(((-144 |#1| |#2|) (-10 -7 (-15 -3614 ((-108) (-110))) (-15 -2626 ((-110) (-110))) (-15 ** (|#2| |#2| |#2|)) (-15 -1480 (|#2| |#2| |#2|)) (-15 -3219 (|#2| |#2| |#2|)) (-15 -2868 (|#2| |#2|)) (-15 -2692 (|#2| |#2|)) (-15 -2692 (|#2| |#2| (-1085))) (-15 -1280 (|#2| |#2| (-1085))) (-15 -1280 (|#2| |#2| (-1007 |#2|))) (-15 -1372 (|#2| |#2| (-1085))) (-15 -1372 (|#2| |#2| (-1007 |#2|))) (-15 -3884 (|#2| |#2|)) (-15 -4056 (|#2| (-588 |#2|))) (-15 -1516 (|#2| (-588 |#2|))) (-15 -2569 (|#2| (-588 |#2|))) (-15 -1851 (|#2| (-588 |#2|))) (-15 -3975 (|#2| (-588 |#2|))) (-15 -1363 (|#2| (-588 |#2|)))) (-13 (-784) (-514)) (-405 |#1|)) (T -144))
-((-1363 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2)) (-4 *4 (-13 (-784) (-514))))) (-3975 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2)) (-4 *4 (-13 (-784) (-514))))) (-1851 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2)) (-4 *4 (-13 (-784) (-514))))) (-2569 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2)) (-4 *4 (-13 (-784) (-514))))) (-1516 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2)) (-4 *4 (-13 (-784) (-514))))) (-4056 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2)) (-4 *4 (-13 (-784) (-514))))) (-3884 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2)) (-4 *2 (-405 *3)))) (-1372 (*1 *2 *2 *3) (-12 (-5 *3 (-1007 *2)) (-4 *2 (-405 *4)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2)))) (-1372 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2)) (-4 *2 (-405 *4)))) (-1280 (*1 *2 *2 *3) (-12 (-5 *3 (-1007 *2)) (-4 *2 (-405 *4)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2)))) (-1280 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2)) (-4 *2 (-405 *4)))) (-2692 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2)) (-4 *2 (-405 *4)))) (-2692 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2)) (-4 *2 (-405 *3)))) (-2868 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2)) (-4 *2 (-405 *3)))) (-3219 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2)) (-4 *2 (-405 *3)))) (-1480 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2)) (-4 *2 (-405 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2)) (-4 *2 (-405 *3)))) (-2626 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *4)) (-4 *4 (-405 *3)))) (-3614 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-144 *4 *5)) (-4 *5 (-405 *4)))))
-(-10 -7 (-15 -3614 ((-108) (-110))) (-15 -2626 ((-110) (-110))) (-15 ** (|#2| |#2| |#2|)) (-15 -1480 (|#2| |#2| |#2|)) (-15 -3219 (|#2| |#2| |#2|)) (-15 -2868 (|#2| |#2|)) (-15 -2692 (|#2| |#2|)) (-15 -2692 (|#2| |#2| (-1085))) (-15 -1280 (|#2| |#2| (-1085))) (-15 -1280 (|#2| |#2| (-1007 |#2|))) (-15 -1372 (|#2| |#2| (-1085))) (-15 -1372 (|#2| |#2| (-1007 |#2|))) (-15 -3884 (|#2| |#2|)) (-15 -4056 (|#2| (-588 |#2|))) (-15 -1516 (|#2| (-588 |#2|))) (-15 -2569 (|#2| (-588 |#2|))) (-15 -1851 (|#2| (-588 |#2|))) (-15 -3975 (|#2| (-588 |#2|))) (-15 -1363 (|#2| (-588 |#2|))))
-((-3331 ((|#1| |#1| |#1|) 52)) (-3038 ((|#1| |#1| |#1|) 49)) (-3219 ((|#1| |#1| |#1|) 43)) (-1918 ((|#1| |#1|) 34)) (-3910 ((|#1| |#1| (-588 |#1|)) 42)) (-2868 ((|#1| |#1|) 36)) (-1480 ((|#1| |#1| |#1|) 39)))
-(((-145 |#1|) (-10 -7 (-15 -1480 (|#1| |#1| |#1|)) (-15 -2868 (|#1| |#1|)) (-15 -3910 (|#1| |#1| (-588 |#1|))) (-15 -1918 (|#1| |#1|)) (-15 -3219 (|#1| |#1| |#1|)) (-15 -3038 (|#1| |#1| |#1|)) (-15 -3331 (|#1| |#1| |#1|))) (-507)) (T -145))
-((-3331 (*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))) (-3038 (*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))) (-3219 (*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))) (-1918 (*1 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))) (-3910 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-507)) (-5 *1 (-145 *2)))) (-2868 (*1 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))) (-1480 (*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))))
-(-10 -7 (-15 -1480 (|#1| |#1| |#1|)) (-15 -2868 (|#1| |#1|)) (-15 -3910 (|#1| |#1| (-588 |#1|))) (-15 -1918 (|#1| |#1|)) (-15 -3219 (|#1| |#1| |#1|)) (-15 -3038 (|#1| |#1| |#1|)) (-15 -3331 (|#1| |#1| |#1|)))
-((-1280 (($ $ (-1085)) 12) (($ $ (-1007 $)) 11)) (-1372 (($ $ (-1085)) 10) (($ $ (-1007 $)) 9)) (-3219 (($ $ $) 8)) (-2692 (($ $) 14) (($ $ (-1085)) 13)) (-2868 (($ $) 7)) (-1480 (($ $ $) 6)))
+((-2227 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-4 *1 (-139 *3)))) (-2187 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-108) *2)) (-4 *1 (-139 *2)) (-4 *2 (-1120)))) (-2153 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120)))) (-2153 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120)))) (-1424 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *3)) (-4 *3 (-1120)))) (-1696 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *3)) (-4 *3 (-1120)))) (-2153 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1014)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120)))) (-1424 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120)) (-4 *2 (-1014)))) (-2379 (*1 *1 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120)) (-4 *2 (-1014)))))
+(-13 (-461 |t#1|) (-10 -8 (-15 -2227 ($ (-588 |t#1|))) (-15 -2187 ((-3 |t#1| "failed") (-1 (-108) |t#1|) $)) (IF (|has| $ (-6 -4238)) (PROGN (-15 -2153 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -2153 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -1424 ($ (-1 (-108) |t#1|) $)) (-15 -1696 ($ (-1 (-108) |t#1|) $)) (IF (|has| |t#1| (-1014)) (PROGN (-15 -2153 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -1424 ($ |t#1| $)) (-15 -2379 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) 86)) (-2859 (((-108) $) NIL)) (-3500 (($ |#2| (-588 (-850))) 57)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3098 (($ (-850)) 48)) (-3222 (((-126)) 23)) (-2217 (((-792) $) 69) (($ (-522)) 46) (($ |#2|) 47)) (-1643 ((|#2| $ (-588 (-850))) 59)) (-2742 (((-708)) 20)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 40 T CONST)) (-3709 (($) 44 T CONST)) (-1562 (((-108) $ $) 26)) (-1682 (($ $ |#2|) NIL)) (-1672 (($ $) 34) (($ $ $) 32)) (-1661 (($ $ $) 30)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 37) (($ $ $) 52) (($ |#2| $) 39) (($ $ |#2|) NIL)))
+(((-140 |#1| |#2| |#3|) (-13 (-971) (-37 |#2|) (-1173 |#2|) (-10 -8 (-15 -3098 ($ (-850))) (-15 -3500 ($ |#2| (-588 (-850)))) (-15 -1643 (|#2| $ (-588 (-850)))) (-15 -3920 ((-3 $ "failed") $)))) (-850) (-338) (-920 |#1| |#2|)) (T -140))
+((-3920 (*1 *1 *1) (|partial| -12 (-5 *1 (-140 *2 *3 *4)) (-14 *2 (-850)) (-4 *3 (-338)) (-14 *4 (-920 *2 *3)))) (-3098 (*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-140 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-338)) (-14 *5 (-920 *3 *4)))) (-3500 (*1 *1 *2 *3) (-12 (-5 *3 (-588 (-850))) (-5 *1 (-140 *4 *2 *5)) (-14 *4 (-850)) (-4 *2 (-338)) (-14 *5 (-920 *4 *2)))) (-1643 (*1 *2 *1 *3) (-12 (-5 *3 (-588 (-850))) (-4 *2 (-338)) (-5 *1 (-140 *4 *2 *5)) (-14 *4 (-850)) (-14 *5 (-920 *4 *2)))))
+(-13 (-971) (-37 |#2|) (-1173 |#2|) (-10 -8 (-15 -3098 ($ (-850))) (-15 -3500 ($ |#2| (-588 (-850)))) (-15 -1643 (|#2| $ (-588 (-850)))) (-15 -3920 ((-3 $ "failed") $))))
+((-2382 (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-588 (-872 (-202)))) (-202) (-202) (-202) (-202)) 38)) (-2739 (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856) (-382 (-522)) (-382 (-522))) 63) (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856)) 64)) (-2741 (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-588 (-872 (-202))))) 67) (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-872 (-202)))) 66) (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856) (-382 (-522)) (-382 (-522))) 58) (((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856)) 59)))
+(((-141) (-10 -7 (-15 -2741 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856))) (-15 -2741 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856) (-382 (-522)) (-382 (-522)))) (-15 -2739 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856))) (-15 -2739 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856) (-382 (-522)) (-382 (-522)))) (-15 -2382 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-588 (-872 (-202)))) (-202) (-202) (-202) (-202))) (-15 -2741 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-872 (-202))))) (-15 -2741 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-588 (-872 (-202)))))))) (T -141))
+((-2741 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202))))) (-5 *1 (-141)) (-5 *3 (-588 (-588 (-872 (-202))))))) (-2741 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202))))) (-5 *1 (-141)) (-5 *3 (-588 (-872 (-202)))))) (-2382 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-202)) (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 *4)))) (|:| |xValues| (-1009 *4)) (|:| |yValues| (-1009 *4)))) (-5 *1 (-141)) (-5 *3 (-588 (-588 (-872 *4)))))) (-2739 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-856)) (-5 *4 (-382 (-522))) (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202))))) (-5 *1 (-141)))) (-2739 (*1 *2 *3) (-12 (-5 *3 (-856)) (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202))))) (-5 *1 (-141)))) (-2741 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-856)) (-5 *4 (-382 (-522))) (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202))))) (-5 *1 (-141)))) (-2741 (*1 *2 *3) (-12 (-5 *3 (-856)) (-5 *2 (-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202))))) (-5 *1 (-141)))))
+(-10 -7 (-15 -2741 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856))) (-15 -2741 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856) (-382 (-522)) (-382 (-522)))) (-15 -2739 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856))) (-15 -2739 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-856) (-382 (-522)) (-382 (-522)))) (-15 -2382 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-588 (-872 (-202)))) (-202) (-202) (-202) (-202))) (-15 -2741 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-872 (-202))))) (-15 -2741 ((-2 (|:| |brans| (-588 (-588 (-872 (-202))))) (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))) (-588 (-588 (-872 (-202)))))))
+((-4017 (((-588 (-154 |#2|)) |#1| |#2|) 45)))
+(((-142 |#1| |#2|) (-10 -7 (-15 -4017 ((-588 (-154 |#2|)) |#1| |#2|))) (-1142 (-154 (-522))) (-13 (-338) (-782))) (T -142))
+((-4017 (*1 *2 *3 *4) (-12 (-5 *2 (-588 (-154 *4))) (-5 *1 (-142 *3 *4)) (-4 *3 (-1142 (-154 (-522)))) (-4 *4 (-13 (-338) (-782))))))
+(-10 -7 (-15 -4017 ((-588 (-154 |#2|)) |#1| |#2|)))
+((-1419 (((-108) $ $) NIL)) (-1902 (($) 16)) (-3156 (($) 15)) (-1963 (((-850)) 23)) (-2311 (((-1068) $) NIL)) (-2137 (((-522) $) 20)) (-4174 (((-1032) $) NIL)) (-2933 (($) 17)) (-1344 (($ (-522)) 24)) (-2217 (((-792) $) 30)) (-2999 (($) 18)) (-1562 (((-108) $ $) 14)) (-1661 (($ $ $) 13)) (* (($ (-850) $) 22) (($ (-202) $) 8)))
+(((-143) (-13 (-25) (-10 -8 (-15 * ($ (-850) $)) (-15 * ($ (-202) $)) (-15 -1661 ($ $ $)) (-15 -3156 ($)) (-15 -1902 ($)) (-15 -2933 ($)) (-15 -2999 ($)) (-15 -2137 ((-522) $)) (-15 -1963 ((-850))) (-15 -1344 ($ (-522)))))) (T -143))
+((-1661 (*1 *1 *1 *1) (-5 *1 (-143))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-850)) (-5 *1 (-143)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-202)) (-5 *1 (-143)))) (-3156 (*1 *1) (-5 *1 (-143))) (-1902 (*1 *1) (-5 *1 (-143))) (-2933 (*1 *1) (-5 *1 (-143))) (-2999 (*1 *1) (-5 *1 (-143))) (-2137 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-143)))) (-1963 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-143)))) (-1344 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-143)))))
+(-13 (-25) (-10 -8 (-15 * ($ (-850) $)) (-15 * ($ (-202) $)) (-15 -1661 ($ $ $)) (-15 -3156 ($)) (-15 -1902 ($)) (-15 -2933 ($)) (-15 -2999 ($)) (-15 -2137 ((-522) $)) (-15 -1963 ((-850))) (-15 -1344 ($ (-522)))))
+((-1525 ((|#2| |#2| (-1007 |#2|)) 87) ((|#2| |#2| (-1085)) 67)) (-3589 ((|#2| |#2| (-1007 |#2|)) 86) ((|#2| |#2| (-1085)) 66)) (-2634 ((|#2| |#2| |#2|) 27)) (-1771 (((-110) (-110)) 97)) (-3529 ((|#2| (-588 |#2|)) 116)) (-3887 ((|#2| (-588 |#2|)) 134)) (-1884 ((|#2| (-588 |#2|)) 124)) (-1905 ((|#2| |#2|) 122)) (-2512 ((|#2| (-588 |#2|)) 109)) (-1594 ((|#2| (-588 |#2|)) 110)) (-3069 ((|#2| (-588 |#2|)) 132)) (-2183 ((|#2| |#2| (-1085)) 54) ((|#2| |#2|) 53)) (-1274 ((|#2| |#2|) 23)) (-1591 ((|#2| |#2| |#2|) 26)) (-4082 (((-108) (-110)) 47)) (** ((|#2| |#2| |#2|) 38)))
+(((-144 |#1| |#2|) (-10 -7 (-15 -4082 ((-108) (-110))) (-15 -1771 ((-110) (-110))) (-15 ** (|#2| |#2| |#2|)) (-15 -1591 (|#2| |#2| |#2|)) (-15 -2634 (|#2| |#2| |#2|)) (-15 -1274 (|#2| |#2|)) (-15 -2183 (|#2| |#2|)) (-15 -2183 (|#2| |#2| (-1085))) (-15 -1525 (|#2| |#2| (-1085))) (-15 -1525 (|#2| |#2| (-1007 |#2|))) (-15 -3589 (|#2| |#2| (-1085))) (-15 -3589 (|#2| |#2| (-1007 |#2|))) (-15 -1905 (|#2| |#2|)) (-15 -3069 (|#2| (-588 |#2|))) (-15 -1884 (|#2| (-588 |#2|))) (-15 -3887 (|#2| (-588 |#2|))) (-15 -2512 (|#2| (-588 |#2|))) (-15 -1594 (|#2| (-588 |#2|))) (-15 -3529 (|#2| (-588 |#2|)))) (-13 (-784) (-514)) (-405 |#1|)) (T -144))
+((-3529 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2)) (-4 *4 (-13 (-784) (-514))))) (-1594 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2)) (-4 *4 (-13 (-784) (-514))))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2)) (-4 *4 (-13 (-784) (-514))))) (-3887 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2)) (-4 *4 (-13 (-784) (-514))))) (-1884 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2)) (-4 *4 (-13 (-784) (-514))))) (-3069 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2)) (-4 *4 (-13 (-784) (-514))))) (-1905 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2)) (-4 *2 (-405 *3)))) (-3589 (*1 *2 *2 *3) (-12 (-5 *3 (-1007 *2)) (-4 *2 (-405 *4)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2)))) (-3589 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2)) (-4 *2 (-405 *4)))) (-1525 (*1 *2 *2 *3) (-12 (-5 *3 (-1007 *2)) (-4 *2 (-405 *4)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2)))) (-1525 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2)) (-4 *2 (-405 *4)))) (-2183 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2)) (-4 *2 (-405 *4)))) (-2183 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2)) (-4 *2 (-405 *3)))) (-1274 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2)) (-4 *2 (-405 *3)))) (-2634 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2)) (-4 *2 (-405 *3)))) (-1591 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2)) (-4 *2 (-405 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2)) (-4 *2 (-405 *3)))) (-1771 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *4)) (-4 *4 (-405 *3)))) (-4082 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-144 *4 *5)) (-4 *5 (-405 *4)))))
+(-10 -7 (-15 -4082 ((-108) (-110))) (-15 -1771 ((-110) (-110))) (-15 ** (|#2| |#2| |#2|)) (-15 -1591 (|#2| |#2| |#2|)) (-15 -2634 (|#2| |#2| |#2|)) (-15 -1274 (|#2| |#2|)) (-15 -2183 (|#2| |#2|)) (-15 -2183 (|#2| |#2| (-1085))) (-15 -1525 (|#2| |#2| (-1085))) (-15 -1525 (|#2| |#2| (-1007 |#2|))) (-15 -3589 (|#2| |#2| (-1085))) (-15 -3589 (|#2| |#2| (-1007 |#2|))) (-15 -1905 (|#2| |#2|)) (-15 -3069 (|#2| (-588 |#2|))) (-15 -1884 (|#2| (-588 |#2|))) (-15 -3887 (|#2| (-588 |#2|))) (-15 -2512 (|#2| (-588 |#2|))) (-15 -1594 (|#2| (-588 |#2|))) (-15 -3529 (|#2| (-588 |#2|))))
+((-1291 ((|#1| |#1| |#1|) 52)) (-1512 ((|#1| |#1| |#1|) 49)) (-2634 ((|#1| |#1| |#1|) 43)) (-1292 ((|#1| |#1|) 34)) (-2125 ((|#1| |#1| (-588 |#1|)) 42)) (-1274 ((|#1| |#1|) 36)) (-1591 ((|#1| |#1| |#1|) 39)))
+(((-145 |#1|) (-10 -7 (-15 -1591 (|#1| |#1| |#1|)) (-15 -1274 (|#1| |#1|)) (-15 -2125 (|#1| |#1| (-588 |#1|))) (-15 -1292 (|#1| |#1|)) (-15 -2634 (|#1| |#1| |#1|)) (-15 -1512 (|#1| |#1| |#1|)) (-15 -1291 (|#1| |#1| |#1|))) (-507)) (T -145))
+((-1291 (*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))) (-1512 (*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))) (-2634 (*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))) (-1292 (*1 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))) (-2125 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-507)) (-5 *1 (-145 *2)))) (-1274 (*1 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))) (-1591 (*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))))
+(-10 -7 (-15 -1591 (|#1| |#1| |#1|)) (-15 -1274 (|#1| |#1|)) (-15 -2125 (|#1| |#1| (-588 |#1|))) (-15 -1292 (|#1| |#1|)) (-15 -2634 (|#1| |#1| |#1|)) (-15 -1512 (|#1| |#1| |#1|)) (-15 -1291 (|#1| |#1| |#1|)))
+((-1525 (($ $ (-1085)) 12) (($ $ (-1007 $)) 11)) (-3589 (($ $ (-1085)) 10) (($ $ (-1007 $)) 9)) (-2634 (($ $ $) 8)) (-2183 (($ $) 14) (($ $ (-1085)) 13)) (-1274 (($ $) 7)) (-1591 (($ $ $) 6)))
(((-146) (-1197)) (T -146))
-((-2692 (*1 *1 *1) (-4 *1 (-146))) (-2692 (*1 *1 *1 *2) (-12 (-4 *1 (-146)) (-5 *2 (-1085)))) (-1280 (*1 *1 *1 *2) (-12 (-4 *1 (-146)) (-5 *2 (-1085)))) (-1280 (*1 *1 *1 *2) (-12 (-5 *2 (-1007 *1)) (-4 *1 (-146)))) (-1372 (*1 *1 *1 *2) (-12 (-4 *1 (-146)) (-5 *2 (-1085)))) (-1372 (*1 *1 *1 *2) (-12 (-5 *2 (-1007 *1)) (-4 *1 (-146)))))
-(-13 (-131) (-10 -8 (-15 -2692 ($ $)) (-15 -2692 ($ $ (-1085))) (-15 -1280 ($ $ (-1085))) (-15 -1280 ($ $ (-1007 $))) (-15 -1372 ($ $ (-1085))) (-15 -1372 ($ $ (-1007 $)))))
+((-2183 (*1 *1 *1) (-4 *1 (-146))) (-2183 (*1 *1 *1 *2) (-12 (-4 *1 (-146)) (-5 *2 (-1085)))) (-1525 (*1 *1 *1 *2) (-12 (-4 *1 (-146)) (-5 *2 (-1085)))) (-1525 (*1 *1 *1 *2) (-12 (-5 *2 (-1007 *1)) (-4 *1 (-146)))) (-3589 (*1 *1 *1 *2) (-12 (-4 *1 (-146)) (-5 *2 (-1085)))) (-3589 (*1 *1 *1 *2) (-12 (-5 *2 (-1007 *1)) (-4 *1 (-146)))))
+(-13 (-131) (-10 -8 (-15 -2183 ($ $)) (-15 -2183 ($ $ (-1085))) (-15 -1525 ($ $ (-1085))) (-15 -1525 ($ $ (-1007 $))) (-15 -3589 ($ $ (-1085))) (-15 -3589 ($ $ (-1007 $)))))
(((-131) . T))
-((-1416 (((-108) $ $) NIL)) (-3384 (($ (-522)) 13) (($ $ $) 14)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 17)) (-1531 (((-108) $ $) 9)))
-(((-147) (-13 (-1014) (-10 -8 (-15 -3384 ($ (-522))) (-15 -3384 ($ $ $))))) (T -147))
-((-3384 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-147)))) (-3384 (*1 *1 *1 *1) (-5 *1 (-147))))
-(-13 (-1014) (-10 -8 (-15 -3384 ($ (-522))) (-15 -3384 ($ $ $))))
-((-2626 (((-110) (-1085)) 97)))
-(((-148) (-10 -7 (-15 -2626 ((-110) (-1085))))) (T -148))
-((-2626 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-110)) (-5 *1 (-148)))))
-(-10 -7 (-15 -2626 ((-110) (-1085))))
-((-4201 ((|#3| |#3|) 20)))
-(((-149 |#1| |#2| |#3|) (-10 -7 (-15 -4201 (|#3| |#3|))) (-971) (-1142 |#1|) (-1142 |#2|)) (T -149))
-((-4201 (*1 *2 *2) (-12 (-4 *3 (-971)) (-4 *4 (-1142 *3)) (-5 *1 (-149 *3 *4 *2)) (-4 *2 (-1142 *4)))))
-(-10 -7 (-15 -4201 (|#3| |#3|)))
-((-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 216)) (-1865 ((|#2| $) 96)) (-2908 (($ $) 243)) (-2772 (($ $) 237)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 40)) (-2884 (($ $) 241)) (-2748 (($ $) 235)) (-1297 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#2| "failed") $) 140)) (-1484 (((-522) $) NIL) (((-382 (-522)) $) NIL) ((|#2| $) 138)) (-2277 (($ $ $) 221)) (-2096 (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) 154) (((-628 |#2|) (-628 $)) 148)) (-3864 (($ (-1081 |#2|)) 119) (((-3 $ "failed") (-382 (-1081 |#2|))) NIL)) (-2682 (((-3 $ "failed") $) 208)) (-1664 (((-3 (-382 (-522)) "failed") $) 198)) (-1770 (((-108) $) 193)) (-1492 (((-382 (-522)) $) 196)) (-3166 (((-850)) 89)) (-2254 (($ $ $) 223)) (-3329 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 259)) (-2838 (($) 232)) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 185) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 190)) (-2100 ((|#2| $) 94)) (-1712 (((-1081 |#2|) $) 121)) (-1391 (($ (-1 |#2| |#2|) $) 102)) (-1254 (($ $) 234)) (-3849 (((-1081 |#2|) $) 120)) (-3098 (($ $) 201)) (-2059 (($) 97)) (-3729 (((-393 (-1081 $)) (-1081 $)) 88)) (-3495 (((-393 (-1081 $)) (-1081 $)) 57)) (-2232 (((-3 $ "failed") $ |#2|) 203) (((-3 $ "failed") $ $) 206)) (-3266 (($ $) 233)) (-3730 (((-708) $) 218)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 227)) (-2769 ((|#2| (-1166 $)) NIL) ((|#2|) 91)) (-2157 (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) 113) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL) (($ $ (-708)) NIL) (($ $) NIL)) (-1479 (((-1081 |#2|)) 114)) (-2896 (($ $) 242)) (-2761 (($ $) 236)) (-3677 (((-1166 |#2|) $ (-1166 $)) 127) (((-628 |#2|) (-1166 $) (-1166 $)) NIL) (((-1166 |#2|) $) 110) (((-628 |#2|) (-1166 $)) NIL)) (-1431 (((-1166 |#2|) $) NIL) (($ (-1166 |#2|)) NIL) (((-1081 |#2|) $) NIL) (($ (-1081 |#2|)) NIL) (((-821 (-522)) $) 176) (((-821 (-354)) $) 180) (((-154 (-354)) $) 166) (((-154 (-202)) $) 161) (((-498) $) 172)) (-3122 (($ $) 98)) (-2190 (((-792) $) 137) (($ (-522)) NIL) (($ |#2|) NIL) (($ (-382 (-522))) NIL) (($ $) NIL)) (-2051 (((-1081 |#2|) $) 23)) (-2323 (((-708)) 100)) (-1759 (($ $) 246)) (-2836 (($ $) 240)) (-1745 (($ $) 244)) (-2815 (($ $) 238)) (-3824 ((|#2| $) 231)) (-1752 (($ $) 245)) (-2825 (($ $) 239)) (-2241 (($ $) 156)) (-1531 (((-108) $ $) 104)) (-1549 (((-108) $ $) 192)) (-1612 (($ $) 106) (($ $ $) NIL)) (-1602 (($ $ $) 105)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-382 (-522))) 265) (($ $ $) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 112) (($ $ $) 141) (($ $ |#2|) NIL) (($ |#2| $) 108) (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL)))
-(((-150 |#1| |#2|) (-10 -8 (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2190 (|#1| |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2013 ((-2 (|:| -3210 |#1|) (|:| -4225 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -3730 ((-708) |#1|)) (-15 -2752 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -2254 (|#1| |#1| |#1|)) (-15 -2277 (|#1| |#1| |#1|)) (-15 -3098 (|#1| |#1|)) (-15 ** (|#1| |#1| (-522))) (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -1549 ((-108) |#1| |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -1431 ((-154 (-202)) |#1|)) (-15 -1431 ((-154 (-354)) |#1|)) (-15 -2772 (|#1| |#1|)) (-15 -2748 (|#1| |#1|)) (-15 -2761 (|#1| |#1|)) (-15 -2825 (|#1| |#1|)) (-15 -2815 (|#1| |#1|)) (-15 -2836 (|#1| |#1|)) (-15 -2896 (|#1| |#1|)) (-15 -2884 (|#1| |#1|)) (-15 -2908 (|#1| |#1|)) (-15 -1752 (|#1| |#1|)) (-15 -1745 (|#1| |#1|)) (-15 -1759 (|#1| |#1|)) (-15 -1254 (|#1| |#1|)) (-15 -3266 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -2838 (|#1|)) (-15 ** (|#1| |#1| (-382 (-522)))) (-15 -3495 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -3729 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -1473 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -1664 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1492 ((-382 (-522)) |#1|)) (-15 -1770 ((-108) |#1|)) (-15 -3329 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -3824 (|#2| |#1|)) (-15 -2241 (|#1| |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3122 (|#1| |#1|)) (-15 -2059 (|#1|)) (-15 -1431 ((-821 (-354)) |#1|)) (-15 -1431 ((-821 (-522)) |#1|)) (-15 -4011 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -4011 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -3864 ((-3 |#1| "failed") (-382 (-1081 |#2|)))) (-15 -3849 ((-1081 |#2|) |#1|)) (-15 -1431 (|#1| (-1081 |#2|))) (-15 -3864 (|#1| (-1081 |#2|))) (-15 -1479 ((-1081 |#2|))) (-15 -2096 ((-628 |#2|) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-628 (-522)) (-628 |#1|))) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -1431 ((-1081 |#2|) |#1|)) (-15 -2769 (|#2|)) (-15 -1431 (|#1| (-1166 |#2|))) (-15 -1431 ((-1166 |#2|) |#1|)) (-15 -3677 ((-628 |#2|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1|)) (-15 -1712 ((-1081 |#2|) |#1|)) (-15 -2051 ((-1081 |#2|) |#1|)) (-15 -2769 (|#2| (-1166 |#1|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -2100 (|#2| |#1|)) (-15 -1865 (|#2| |#1|)) (-15 -3166 ((-850))) (-15 -2190 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2190 (|#1| (-522))) (-15 -2323 ((-708))) (-15 ** (|#1| |#1| (-708))) (-15 -2682 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-850))) (-15 * (|#1| (-522) |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -1602 (|#1| |#1| |#1|)) (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|))) (-151 |#2|) (-157)) (T -150))
-((-2323 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-708)) (-5 *1 (-150 *3 *4)) (-4 *3 (-151 *4)))) (-3166 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-850)) (-5 *1 (-150 *3 *4)) (-4 *3 (-151 *4)))) (-2769 (*1 *2) (-12 (-4 *2 (-157)) (-5 *1 (-150 *3 *2)) (-4 *3 (-151 *2)))) (-1479 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-1081 *4)) (-5 *1 (-150 *3 *4)) (-4 *3 (-151 *4)))))
-(-10 -8 (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2190 (|#1| |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2013 ((-2 (|:| -3210 |#1|) (|:| -4225 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -3730 ((-708) |#1|)) (-15 -2752 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -2254 (|#1| |#1| |#1|)) (-15 -2277 (|#1| |#1| |#1|)) (-15 -3098 (|#1| |#1|)) (-15 ** (|#1| |#1| (-522))) (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -1549 ((-108) |#1| |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -1431 ((-154 (-202)) |#1|)) (-15 -1431 ((-154 (-354)) |#1|)) (-15 -2772 (|#1| |#1|)) (-15 -2748 (|#1| |#1|)) (-15 -2761 (|#1| |#1|)) (-15 -2825 (|#1| |#1|)) (-15 -2815 (|#1| |#1|)) (-15 -2836 (|#1| |#1|)) (-15 -2896 (|#1| |#1|)) (-15 -2884 (|#1| |#1|)) (-15 -2908 (|#1| |#1|)) (-15 -1752 (|#1| |#1|)) (-15 -1745 (|#1| |#1|)) (-15 -1759 (|#1| |#1|)) (-15 -1254 (|#1| |#1|)) (-15 -3266 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -2838 (|#1|)) (-15 ** (|#1| |#1| (-382 (-522)))) (-15 -3495 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -3729 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -1473 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -1664 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1492 ((-382 (-522)) |#1|)) (-15 -1770 ((-108) |#1|)) (-15 -3329 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -3824 (|#2| |#1|)) (-15 -2241 (|#1| |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3122 (|#1| |#1|)) (-15 -2059 (|#1|)) (-15 -1431 ((-821 (-354)) |#1|)) (-15 -1431 ((-821 (-522)) |#1|)) (-15 -4011 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -4011 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -3864 ((-3 |#1| "failed") (-382 (-1081 |#2|)))) (-15 -3849 ((-1081 |#2|) |#1|)) (-15 -1431 (|#1| (-1081 |#2|))) (-15 -3864 (|#1| (-1081 |#2|))) (-15 -1479 ((-1081 |#2|))) (-15 -2096 ((-628 |#2|) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-628 (-522)) (-628 |#1|))) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -1431 ((-1081 |#2|) |#1|)) (-15 -2769 (|#2|)) (-15 -1431 (|#1| (-1166 |#2|))) (-15 -1431 ((-1166 |#2|) |#1|)) (-15 -3677 ((-628 |#2|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1|)) (-15 -1712 ((-1081 |#2|) |#1|)) (-15 -2051 ((-1081 |#2|) |#1|)) (-15 -2769 (|#2| (-1166 |#1|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -2100 (|#2| |#1|)) (-15 -1865 (|#2| |#1|)) (-15 -3166 ((-850))) (-15 -2190 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2190 (|#1| (-522))) (-15 -2323 ((-708))) (-15 ** (|#1| |#1| (-708))) (-15 -2682 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-850))) (-15 * (|#1| (-522) |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -1602 (|#1| |#1| |#1|)) (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 93 (-3708 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-2022 (($ $) 94 (-3708 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-3739 (((-108) $) 96 (-3708 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-3174 (((-628 |#1|) (-1166 $)) 46) (((-628 |#1|)) 61)) (-1865 ((|#1| $) 52)) (-2908 (($ $) 228 (|has| |#1| (-1106)))) (-2772 (($ $) 211 (|has| |#1| (-1106)))) (-1398 (((-1094 (-850) (-708)) (-522)) 147 (|has| |#1| (-324)))) (-1233 (((-3 $ "failed") $ $) 19)) (-1565 (((-393 (-1081 $)) (-1081 $)) 242 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-3119 (($ $) 113 (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-3450 (((-393 $) $) 114 (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-1929 (($ $) 241 (-12 (|has| |#1| (-928)) (|has| |#1| (-1106))))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 245 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-1687 (((-108) $ $) 104 (|has| |#1| (-283)))) (-1629 (((-708)) 87 (|has| |#1| (-343)))) (-2884 (($ $) 227 (|has| |#1| (-1106)))) (-2748 (($ $) 212 (|has| |#1| (-1106)))) (-2930 (($ $) 226 (|has| |#1| (-1106)))) (-2794 (($ $) 213 (|has| |#1| (-1106)))) (-3175 (($) 17 T CONST)) (-1297 (((-3 (-522) "failed") $) 169 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 167 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 166)) (-1484 (((-522) $) 170 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 168 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 165)) (-3766 (($ (-1166 |#1|) (-1166 $)) 48) (($ (-1166 |#1|)) 64)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) 153 (|has| |#1| (-324)))) (-2277 (($ $ $) 108 (|has| |#1| (-283)))) (-2109 (((-628 |#1|) $ (-1166 $)) 53) (((-628 |#1|) $) 59)) (-2096 (((-628 (-522)) (-628 $)) 164 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 163 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 162) (((-628 |#1|) (-628 $)) 161)) (-3864 (($ (-1081 |#1|)) 158) (((-3 $ "failed") (-382 (-1081 |#1|))) 155 (|has| |#1| (-338)))) (-2682 (((-3 $ "failed") $) 34)) (-1937 ((|#1| $) 253)) (-1664 (((-3 (-382 (-522)) "failed") $) 246 (|has| |#1| (-507)))) (-1770 (((-108) $) 248 (|has| |#1| (-507)))) (-1492 (((-382 (-522)) $) 247 (|has| |#1| (-507)))) (-3166 (((-850)) 54)) (-3255 (($) 90 (|has| |#1| (-343)))) (-2254 (($ $ $) 107 (|has| |#1| (-283)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 102 (|has| |#1| (-283)))) (-1223 (($) 149 (|has| |#1| (-324)))) (-2511 (((-108) $) 150 (|has| |#1| (-324)))) (-2111 (($ $ (-708)) 141 (|has| |#1| (-324))) (($ $) 140 (|has| |#1| (-324)))) (-2813 (((-108) $) 115 (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-3329 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 249 (-12 (|has| |#1| (-980)) (|has| |#1| (-1106))))) (-2838 (($) 238 (|has| |#1| (-1106)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 261 (|has| |#1| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 260 (|has| |#1| (-815 (-354))))) (-3714 (((-850) $) 152 (|has| |#1| (-324))) (((-770 (-850)) $) 138 (|has| |#1| (-324)))) (-2782 (((-108) $) 31)) (-1504 (($ $ (-522)) 240 (-12 (|has| |#1| (-928)) (|has| |#1| (-1106))))) (-2100 ((|#1| $) 51)) (-3004 (((-3 $ "failed") $) 142 (|has| |#1| (-324)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 111 (|has| |#1| (-283)))) (-1712 (((-1081 |#1|) $) 44 (|has| |#1| (-338)))) (-2814 (($ $ $) 207 (|has| |#1| (-784)))) (-2446 (($ $ $) 206 (|has| |#1| (-784)))) (-1391 (($ (-1 |#1| |#1|) $) 262)) (-2120 (((-850) $) 89 (|has| |#1| (-343)))) (-1254 (($ $) 235 (|has| |#1| (-1106)))) (-3849 (((-1081 |#1|) $) 156)) (-2224 (($ (-588 $)) 100 (-3708 (|has| |#1| (-283)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (($ $ $) 99 (-3708 (|has| |#1| (-283)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-2385 (((-1068) $) 9)) (-3098 (($ $) 116 (|has| |#1| (-338)))) (-3802 (($) 143 (|has| |#1| (-324)) CONST)) (-2717 (($ (-850)) 88 (|has| |#1| (-343)))) (-2059 (($) 257)) (-1948 ((|#1| $) 254)) (-4151 (((-1032) $) 10)) (-1383 (($) 160)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 101 (-3708 (|has| |#1| (-283)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-2259 (($ (-588 $)) 98 (-3708 (|has| |#1| (-283)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (($ $ $) 97 (-3708 (|has| |#1| (-283)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) 146 (|has| |#1| (-324)))) (-3729 (((-393 (-1081 $)) (-1081 $)) 244 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-3495 (((-393 (-1081 $)) (-1081 $)) 243 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-1916 (((-393 $) $) 112 (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-283))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 109 (|has| |#1| (-283)))) (-2232 (((-3 $ "failed") $ |#1|) 252 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 92 (-3708 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 103 (|has| |#1| (-283)))) (-3266 (($ $) 236 (|has| |#1| (-1106)))) (-2289 (($ $ (-588 |#1|) (-588 |#1|)) 268 (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) 267 (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) 266 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) 265 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 264 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) 263 (|has| |#1| (-483 (-1085) |#1|)))) (-3730 (((-708) $) 105 (|has| |#1| (-283)))) (-2545 (($ $ |#1|) 269 (|has| |#1| (-262 |#1| |#1|)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 106 (|has| |#1| (-283)))) (-2769 ((|#1| (-1166 $)) 47) ((|#1|) 60)) (-3018 (((-708) $) 151 (|has| |#1| (-324))) (((-3 (-708) "failed") $ $) 139 (|has| |#1| (-324)))) (-2157 (($ $ (-1 |#1| |#1|) (-708)) 123) (($ $ (-1 |#1| |#1|)) 122) (($ $ (-588 (-1085)) (-588 (-708))) 130 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 131 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 132 (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) 133 (|has| |#1| (-829 (-1085)))) (($ $ (-708)) 135 (-3708 (-4015 (|has| |#1| (-338)) (|has| |#1| (-210))) (|has| |#1| (-210)) (-4015 (|has| |#1| (-210)) (|has| |#1| (-338))))) (($ $) 137 (-3708 (-4015 (|has| |#1| (-338)) (|has| |#1| (-210))) (|has| |#1| (-210)) (-4015 (|has| |#1| (-210)) (|has| |#1| (-338)))))) (-1859 (((-628 |#1|) (-1166 $) (-1 |#1| |#1|)) 154 (|has| |#1| (-338)))) (-1479 (((-1081 |#1|)) 159)) (-1738 (($ $) 225 (|has| |#1| (-1106)))) (-2804 (($ $) 214 (|has| |#1| (-1106)))) (-2581 (($) 148 (|has| |#1| (-324)))) (-2919 (($ $) 224 (|has| |#1| (-1106)))) (-2784 (($ $) 215 (|has| |#1| (-1106)))) (-2896 (($ $) 223 (|has| |#1| (-1106)))) (-2761 (($ $) 216 (|has| |#1| (-1106)))) (-3677 (((-1166 |#1|) $ (-1166 $)) 50) (((-628 |#1|) (-1166 $) (-1166 $)) 49) (((-1166 |#1|) $) 66) (((-628 |#1|) (-1166 $)) 65)) (-1431 (((-1166 |#1|) $) 63) (($ (-1166 |#1|)) 62) (((-1081 |#1|) $) 171) (($ (-1081 |#1|)) 157) (((-821 (-522)) $) 259 (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) 258 (|has| |#1| (-563 (-821 (-354))))) (((-154 (-354)) $) 210 (|has| |#1| (-947))) (((-154 (-202)) $) 209 (|has| |#1| (-947))) (((-498) $) 208 (|has| |#1| (-563 (-498))))) (-3122 (($ $) 256)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 145 (-3708 (-4015 (|has| $ (-133)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))) (|has| |#1| (-324))))) (-3911 (($ |#1| |#1|) 255)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37) (($ (-382 (-522))) 86 (-3708 (|has| |#1| (-338)) (|has| |#1| (-962 (-382 (-522)))))) (($ $) 91 (-3708 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-2143 (($ $) 144 (|has| |#1| (-324))) (((-3 $ "failed") $) 43 (-3708 (-4015 (|has| $ (-133)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))) (|has| |#1| (-133))))) (-2051 (((-1081 |#1|) $) 45)) (-2323 (((-708)) 29)) (-3855 (((-1166 $)) 67)) (-1759 (($ $) 234 (|has| |#1| (-1106)))) (-2836 (($ $) 222 (|has| |#1| (-1106)))) (-3958 (((-108) $ $) 95 (-3708 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-1745 (($ $) 233 (|has| |#1| (-1106)))) (-2815 (($ $) 221 (|has| |#1| (-1106)))) (-1776 (($ $) 232 (|has| |#1| (-1106)))) (-2860 (($ $) 220 (|has| |#1| (-1106)))) (-3824 ((|#1| $) 250 (|has| |#1| (-1106)))) (-3924 (($ $) 231 (|has| |#1| (-1106)))) (-2872 (($ $) 219 (|has| |#1| (-1106)))) (-1768 (($ $) 230 (|has| |#1| (-1106)))) (-2848 (($ $) 218 (|has| |#1| (-1106)))) (-1752 (($ $) 229 (|has| |#1| (-1106)))) (-2825 (($ $) 217 (|has| |#1| (-1106)))) (-2241 (($ $) 251 (|has| |#1| (-980)))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 117 (|has| |#1| (-338)))) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-1 |#1| |#1|) (-708)) 125) (($ $ (-1 |#1| |#1|)) 124) (($ $ (-588 (-1085)) (-588 (-708))) 126 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 127 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 128 (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) 129 (|has| |#1| (-829 (-1085)))) (($ $ (-708)) 134 (-3708 (-4015 (|has| |#1| (-338)) (|has| |#1| (-210))) (|has| |#1| (-210)) (-4015 (|has| |#1| (-210)) (|has| |#1| (-338))))) (($ $) 136 (-3708 (-4015 (|has| |#1| (-338)) (|has| |#1| (-210))) (|has| |#1| (-210)) (-4015 (|has| |#1| (-210)) (|has| |#1| (-338)))))) (-1574 (((-108) $ $) 204 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 203 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 205 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 202 (|has| |#1| (-784)))) (-1620 (($ $ $) 121 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-382 (-522))) 239 (-12 (|has| |#1| (-928)) (|has| |#1| (-1106)))) (($ $ $) 237 (|has| |#1| (-1106))) (($ $ (-522)) 118 (|has| |#1| (-338)))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38) (($ (-382 (-522)) $) 120 (|has| |#1| (-338))) (($ $ (-382 (-522))) 119 (|has| |#1| (-338)))))
+((-1419 (((-108) $ $) NIL)) (-3607 (($ (-522)) 13) (($ $ $) 14)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 17)) (-1562 (((-108) $ $) 9)))
+(((-147) (-13 (-1014) (-10 -8 (-15 -3607 ($ (-522))) (-15 -3607 ($ $ $))))) (T -147))
+((-3607 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-147)))) (-3607 (*1 *1 *1 *1) (-5 *1 (-147))))
+(-13 (-1014) (-10 -8 (-15 -3607 ($ (-522))) (-15 -3607 ($ $ $))))
+((-1771 (((-110) (-1085)) 97)))
+(((-148) (-10 -7 (-15 -1771 ((-110) (-1085))))) (T -148))
+((-1771 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-110)) (-5 *1 (-148)))))
+(-10 -7 (-15 -1771 ((-110) (-1085))))
+((-2000 ((|#3| |#3|) 20)))
+(((-149 |#1| |#2| |#3|) (-10 -7 (-15 -2000 (|#3| |#3|))) (-971) (-1142 |#1|) (-1142 |#2|)) (T -149))
+((-2000 (*1 *2 *2) (-12 (-4 *3 (-971)) (-4 *4 (-1142 *3)) (-5 *1 (-149 *3 *4 *2)) (-4 *2 (-1142 *4)))))
+(-10 -7 (-15 -2000 (|#3| |#3|)))
+((-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 216)) (-1945 ((|#2| $) 96)) (-3044 (($ $) 243)) (-2923 (($ $) 237)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 40)) (-3023 (($ $) 241)) (-2906 (($ $) 235)) (-3700 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#2| "failed") $) 140)) (-1478 (((-522) $) NIL) (((-382 (-522)) $) NIL) ((|#2| $) 138)) (-2333 (($ $ $) 221)) (-1226 (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) 154) (((-628 |#2|) (-628 $)) 148)) (-2153 (($ (-1081 |#2|)) 119) (((-3 $ "failed") (-382 (-1081 |#2|))) NIL)) (-3920 (((-3 $ "failed") $) 208)) (-2549 (((-3 (-382 (-522)) "failed") $) 198)) (-3519 (((-108) $) 193)) (-1699 (((-382 (-522)) $) 196)) (-1692 (((-850)) 89)) (-2303 (($ $ $) 223)) (-1272 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 259)) (-2980 (($) 232)) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 185) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 190)) (-1269 ((|#2| $) 94)) (-4199 (((-1081 |#2|) $) 121)) (-3810 (($ (-1 |#2| |#2|) $) 102)) (-1238 (($ $) 234)) (-2142 (((-1081 |#2|) $) 120)) (-3193 (($ $) 201)) (-2755 (($) 97)) (-4022 (((-393 (-1081 $)) (-1081 $)) 88)) (-2313 (((-393 (-1081 $)) (-1081 $)) 57)) (-2276 (((-3 $ "failed") $ |#2|) 203) (((-3 $ "failed") $ $) 206)) (-3357 (($ $) 233)) (-4031 (((-708) $) 218)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 227)) (-1615 ((|#2| (-1166 $)) NIL) ((|#2|) 91)) (-2731 (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) 113) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL) (($ $ (-708)) NIL) (($ $) NIL)) (-1579 (((-1081 |#2|)) 114)) (-3035 (($ $) 242)) (-2915 (($ $) 236)) (-3510 (((-1166 |#2|) $ (-1166 $)) 127) (((-628 |#2|) (-1166 $) (-1166 $)) NIL) (((-1166 |#2|) $) 110) (((-628 |#2|) (-1166 $)) NIL)) (-3873 (((-1166 |#2|) $) NIL) (($ (-1166 |#2|)) NIL) (((-1081 |#2|) $) NIL) (($ (-1081 |#2|)) NIL) (((-821 (-522)) $) 176) (((-821 (-354)) $) 180) (((-154 (-354)) $) 166) (((-154 (-202)) $) 161) (((-498) $) 172)) (-2983 (($ $) 98)) (-2217 (((-792) $) 137) (($ (-522)) NIL) (($ |#2|) NIL) (($ (-382 (-522))) NIL) (($ $) NIL)) (-2645 (((-1081 |#2|) $) 23)) (-2742 (((-708)) 100)) (-1856 (($ $) 246)) (-2976 (($ $) 240)) (-1839 (($ $) 244)) (-2957 (($ $) 238)) (-2636 ((|#2| $) 231)) (-1849 (($ $) 245)) (-2966 (($ $) 239)) (-4126 (($ $) 156)) (-1562 (((-108) $ $) 104)) (-1587 (((-108) $ $) 192)) (-1672 (($ $) 106) (($ $ $) NIL)) (-1661 (($ $ $) 105)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-382 (-522))) 265) (($ $ $) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 112) (($ $ $) 141) (($ $ |#2|) NIL) (($ |#2| $) 108) (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL)))
+(((-150 |#1| |#2|) (-10 -8 (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2217 (|#1| |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3401 ((-2 (|:| -2541 |#1|) (|:| -4225 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -4031 ((-708) |#1|)) (-15 -4164 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -2303 (|#1| |#1| |#1|)) (-15 -2333 (|#1| |#1| |#1|)) (-15 -3193 (|#1| |#1|)) (-15 ** (|#1| |#1| (-522))) (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -1587 ((-108) |#1| |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -3873 ((-154 (-202)) |#1|)) (-15 -3873 ((-154 (-354)) |#1|)) (-15 -2923 (|#1| |#1|)) (-15 -2906 (|#1| |#1|)) (-15 -2915 (|#1| |#1|)) (-15 -2966 (|#1| |#1|)) (-15 -2957 (|#1| |#1|)) (-15 -2976 (|#1| |#1|)) (-15 -3035 (|#1| |#1|)) (-15 -3023 (|#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -1849 (|#1| |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -1856 (|#1| |#1|)) (-15 -1238 (|#1| |#1|)) (-15 -3357 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -2980 (|#1|)) (-15 ** (|#1| |#1| (-382 (-522)))) (-15 -2313 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -4022 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -2800 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -2549 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1699 ((-382 (-522)) |#1|)) (-15 -3519 ((-108) |#1|)) (-15 -1272 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2636 (|#2| |#1|)) (-15 -4126 (|#1| |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2983 (|#1| |#1|)) (-15 -2755 (|#1|)) (-15 -3873 ((-821 (-354)) |#1|)) (-15 -3873 ((-821 (-522)) |#1|)) (-15 -3738 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -3738 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2153 ((-3 |#1| "failed") (-382 (-1081 |#2|)))) (-15 -2142 ((-1081 |#2|) |#1|)) (-15 -3873 (|#1| (-1081 |#2|))) (-15 -2153 (|#1| (-1081 |#2|))) (-15 -1579 ((-1081 |#2|))) (-15 -1226 ((-628 |#2|) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-628 (-522)) (-628 |#1|))) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -3873 ((-1081 |#2|) |#1|)) (-15 -1615 (|#2|)) (-15 -3873 (|#1| (-1166 |#2|))) (-15 -3873 ((-1166 |#2|) |#1|)) (-15 -3510 ((-628 |#2|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1|)) (-15 -4199 ((-1081 |#2|) |#1|)) (-15 -2645 ((-1081 |#2|) |#1|)) (-15 -1615 (|#2| (-1166 |#1|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -1269 (|#2| |#1|)) (-15 -1945 (|#2| |#1|)) (-15 -1692 ((-850))) (-15 -2217 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2217 (|#1| (-522))) (-15 -2742 ((-708))) (-15 ** (|#1| |#1| (-708))) (-15 -3920 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-850))) (-15 * (|#1| (-522) |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -1661 (|#1| |#1| |#1|)) (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|))) (-151 |#2|) (-157)) (T -150))
+((-2742 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-708)) (-5 *1 (-150 *3 *4)) (-4 *3 (-151 *4)))) (-1692 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-850)) (-5 *1 (-150 *3 *4)) (-4 *3 (-151 *4)))) (-1615 (*1 *2) (-12 (-4 *2 (-157)) (-5 *1 (-150 *3 *2)) (-4 *3 (-151 *2)))) (-1579 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-1081 *4)) (-5 *1 (-150 *3 *4)) (-4 *3 (-151 *4)))))
+(-10 -8 (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2217 (|#1| |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3401 ((-2 (|:| -2541 |#1|) (|:| -4225 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -4031 ((-708) |#1|)) (-15 -4164 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -2303 (|#1| |#1| |#1|)) (-15 -2333 (|#1| |#1| |#1|)) (-15 -3193 (|#1| |#1|)) (-15 ** (|#1| |#1| (-522))) (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -1587 ((-108) |#1| |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -3873 ((-154 (-202)) |#1|)) (-15 -3873 ((-154 (-354)) |#1|)) (-15 -2923 (|#1| |#1|)) (-15 -2906 (|#1| |#1|)) (-15 -2915 (|#1| |#1|)) (-15 -2966 (|#1| |#1|)) (-15 -2957 (|#1| |#1|)) (-15 -2976 (|#1| |#1|)) (-15 -3035 (|#1| |#1|)) (-15 -3023 (|#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -1849 (|#1| |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -1856 (|#1| |#1|)) (-15 -1238 (|#1| |#1|)) (-15 -3357 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -2980 (|#1|)) (-15 ** (|#1| |#1| (-382 (-522)))) (-15 -2313 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -4022 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -2800 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -2549 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1699 ((-382 (-522)) |#1|)) (-15 -3519 ((-108) |#1|)) (-15 -1272 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2636 (|#2| |#1|)) (-15 -4126 (|#1| |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2983 (|#1| |#1|)) (-15 -2755 (|#1|)) (-15 -3873 ((-821 (-354)) |#1|)) (-15 -3873 ((-821 (-522)) |#1|)) (-15 -3738 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -3738 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2153 ((-3 |#1| "failed") (-382 (-1081 |#2|)))) (-15 -2142 ((-1081 |#2|) |#1|)) (-15 -3873 (|#1| (-1081 |#2|))) (-15 -2153 (|#1| (-1081 |#2|))) (-15 -1579 ((-1081 |#2|))) (-15 -1226 ((-628 |#2|) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-628 (-522)) (-628 |#1|))) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -3873 ((-1081 |#2|) |#1|)) (-15 -1615 (|#2|)) (-15 -3873 (|#1| (-1166 |#2|))) (-15 -3873 ((-1166 |#2|) |#1|)) (-15 -3510 ((-628 |#2|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1|)) (-15 -4199 ((-1081 |#2|) |#1|)) (-15 -2645 ((-1081 |#2|) |#1|)) (-15 -1615 (|#2| (-1166 |#1|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -1269 (|#2| |#1|)) (-15 -1945 (|#2| |#1|)) (-15 -1692 ((-850))) (-15 -2217 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2217 (|#1| (-522))) (-15 -2742 ((-708))) (-15 ** (|#1| |#1| (-708))) (-15 -3920 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-850))) (-15 * (|#1| (-522) |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -1661 (|#1| |#1| |#1|)) (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 93 (-3844 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-2298 (($ $) 94 (-3844 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-3007 (((-108) $) 96 (-3844 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-3356 (((-628 |#1|) (-1166 $)) 46) (((-628 |#1|)) 61)) (-1945 ((|#1| $) 52)) (-3044 (($ $) 228 (|has| |#1| (-1106)))) (-2923 (($ $) 211 (|has| |#1| (-1106)))) (-3833 (((-1094 (-850) (-708)) (-522)) 147 (|has| |#1| (-324)))) (-2265 (((-3 $ "failed") $ $) 19)) (-3543 (((-393 (-1081 $)) (-1081 $)) 242 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-2961 (($ $) 113 (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-3133 (((-393 $) $) 114 (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-2016 (($ $) 241 (-12 (|has| |#1| (-928)) (|has| |#1| (-1106))))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 245 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-2805 (((-108) $ $) 104 (|has| |#1| (-283)))) (-1685 (((-708)) 87 (|has| |#1| (-343)))) (-3023 (($ $) 227 (|has| |#1| (-1106)))) (-2906 (($ $) 212 (|has| |#1| (-1106)))) (-3066 (($ $) 226 (|has| |#1| (-1106)))) (-2936 (($ $) 213 (|has| |#1| (-1106)))) (-3367 (($) 17 T CONST)) (-3700 (((-3 (-522) "failed") $) 169 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 167 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 166)) (-1478 (((-522) $) 170 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 168 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 165)) (-3225 (($ (-1166 |#1|) (-1166 $)) 48) (($ (-1166 |#1|)) 64)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) 153 (|has| |#1| (-324)))) (-2333 (($ $ $) 108 (|has| |#1| (-283)))) (-1359 (((-628 |#1|) $ (-1166 $)) 53) (((-628 |#1|) $) 59)) (-1226 (((-628 (-522)) (-628 $)) 164 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 163 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 162) (((-628 |#1|) (-628 $)) 161)) (-2153 (($ (-1081 |#1|)) 158) (((-3 $ "failed") (-382 (-1081 |#1|))) 155 (|has| |#1| (-338)))) (-3920 (((-3 $ "failed") $) 34)) (-2025 ((|#1| $) 253)) (-2549 (((-3 (-382 (-522)) "failed") $) 246 (|has| |#1| (-507)))) (-3519 (((-108) $) 248 (|has| |#1| (-507)))) (-1699 (((-382 (-522)) $) 247 (|has| |#1| (-507)))) (-1692 (((-850)) 54)) (-3344 (($) 90 (|has| |#1| (-343)))) (-2303 (($ $ $) 107 (|has| |#1| (-283)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 102 (|has| |#1| (-283)))) (-2160 (($) 149 (|has| |#1| (-324)))) (-2087 (((-108) $) 150 (|has| |#1| (-324)))) (-1380 (($ $ (-708)) 141 (|has| |#1| (-324))) (($ $) 140 (|has| |#1| (-324)))) (-2725 (((-108) $) 115 (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-1272 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 249 (-12 (|has| |#1| (-980)) (|has| |#1| (-1106))))) (-2980 (($) 238 (|has| |#1| (-1106)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 261 (|has| |#1| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 260 (|has| |#1| (-815 (-354))))) (-3872 (((-850) $) 152 (|has| |#1| (-324))) (((-770 (-850)) $) 138 (|has| |#1| (-324)))) (-2859 (((-108) $) 31)) (-1811 (($ $ (-522)) 240 (-12 (|has| |#1| (-928)) (|has| |#1| (-1106))))) (-1269 ((|#1| $) 51)) (-4208 (((-3 $ "failed") $) 142 (|has| |#1| (-324)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 111 (|has| |#1| (-283)))) (-4199 (((-1081 |#1|) $) 44 (|has| |#1| (-338)))) (-1308 (($ $ $) 207 (|has| |#1| (-784)))) (-2524 (($ $ $) 206 (|has| |#1| (-784)))) (-3810 (($ (-1 |#1| |#1|) $) 262)) (-1475 (((-850) $) 89 (|has| |#1| (-343)))) (-1238 (($ $) 235 (|has| |#1| (-1106)))) (-2142 (((-1081 |#1|) $) 156)) (-2267 (($ (-588 $)) 100 (-3844 (|has| |#1| (-283)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (($ $ $) 99 (-3844 (|has| |#1| (-283)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-2311 (((-1068) $) 9)) (-3193 (($ $) 116 (|has| |#1| (-338)))) (-3937 (($) 143 (|has| |#1| (-324)) CONST)) (-2882 (($ (-850)) 88 (|has| |#1| (-343)))) (-2755 (($) 257)) (-2033 ((|#1| $) 254)) (-4174 (((-1032) $) 10)) (-1368 (($) 160)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 101 (-3844 (|has| |#1| (-283)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-2308 (($ (-588 $)) 98 (-3844 (|has| |#1| (-283)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (($ $ $) 97 (-3844 (|has| |#1| (-283)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) 146 (|has| |#1| (-324)))) (-4022 (((-393 (-1081 $)) (-1081 $)) 244 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-2313 (((-393 (-1081 $)) (-1081 $)) 243 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-2006 (((-393 $) $) 112 (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-283))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 109 (|has| |#1| (-283)))) (-2276 (((-3 $ "failed") $ |#1|) 252 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 92 (-3844 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 103 (|has| |#1| (-283)))) (-3357 (($ $) 236 (|has| |#1| (-1106)))) (-2330 (($ $ (-588 |#1|) (-588 |#1|)) 268 (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) 267 (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) 266 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) 265 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 264 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) 263 (|has| |#1| (-483 (-1085) |#1|)))) (-4031 (((-708) $) 105 (|has| |#1| (-283)))) (-2683 (($ $ |#1|) 269 (|has| |#1| (-262 |#1| |#1|)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 106 (|has| |#1| (-283)))) (-1615 ((|#1| (-1166 $)) 47) ((|#1|) 60)) (-1304 (((-708) $) 151 (|has| |#1| (-324))) (((-3 (-708) "failed") $ $) 139 (|has| |#1| (-324)))) (-2731 (($ $ (-1 |#1| |#1|) (-708)) 123) (($ $ (-1 |#1| |#1|)) 122) (($ $ (-588 (-1085)) (-588 (-708))) 130 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 131 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 132 (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) 133 (|has| |#1| (-829 (-1085)))) (($ $ (-708)) 135 (-3844 (-4079 (|has| |#1| (-338)) (|has| |#1| (-210))) (|has| |#1| (-210)) (-4079 (|has| |#1| (-210)) (|has| |#1| (-338))))) (($ $) 137 (-3844 (-4079 (|has| |#1| (-338)) (|has| |#1| (-210))) (|has| |#1| (-210)) (-4079 (|has| |#1| (-210)) (|has| |#1| (-338)))))) (-2620 (((-628 |#1|) (-1166 $) (-1 |#1| |#1|)) 154 (|has| |#1| (-338)))) (-1579 (((-1081 |#1|)) 159)) (-1831 (($ $) 225 (|has| |#1| (-1106)))) (-2946 (($ $) 214 (|has| |#1| (-1106)))) (-2670 (($) 148 (|has| |#1| (-324)))) (-3054 (($ $) 224 (|has| |#1| (-1106)))) (-2928 (($ $) 215 (|has| |#1| (-1106)))) (-3035 (($ $) 223 (|has| |#1| (-1106)))) (-2915 (($ $) 216 (|has| |#1| (-1106)))) (-3510 (((-1166 |#1|) $ (-1166 $)) 50) (((-628 |#1|) (-1166 $) (-1166 $)) 49) (((-1166 |#1|) $) 66) (((-628 |#1|) (-1166 $)) 65)) (-3873 (((-1166 |#1|) $) 63) (($ (-1166 |#1|)) 62) (((-1081 |#1|) $) 171) (($ (-1081 |#1|)) 157) (((-821 (-522)) $) 259 (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) 258 (|has| |#1| (-563 (-821 (-354))))) (((-154 (-354)) $) 210 (|has| |#1| (-947))) (((-154 (-202)) $) 209 (|has| |#1| (-947))) (((-498) $) 208 (|has| |#1| (-563 (-498))))) (-2983 (($ $) 256)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 145 (-3844 (-4079 (|has| $ (-133)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))) (|has| |#1| (-324))))) (-4005 (($ |#1| |#1|) 255)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37) (($ (-382 (-522))) 86 (-3844 (|has| |#1| (-338)) (|has| |#1| (-962 (-382 (-522)))))) (($ $) 91 (-3844 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-3040 (($ $) 144 (|has| |#1| (-324))) (((-3 $ "failed") $) 43 (-3844 (-4079 (|has| $ (-133)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))) (|has| |#1| (-133))))) (-2645 (((-1081 |#1|) $) 45)) (-2742 (((-708)) 29)) (-2905 (((-1166 $)) 67)) (-1856 (($ $) 234 (|has| |#1| (-1106)))) (-2976 (($ $) 222 (|has| |#1| (-1106)))) (-1407 (((-108) $ $) 95 (-3844 (|has| |#1| (-514)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))) (-1839 (($ $) 233 (|has| |#1| (-1106)))) (-2957 (($ $) 221 (|has| |#1| (-1106)))) (-1873 (($ $) 232 (|has| |#1| (-1106)))) (-3001 (($ $) 220 (|has| |#1| (-1106)))) (-2636 ((|#1| $) 250 (|has| |#1| (-1106)))) (-2476 (($ $) 231 (|has| |#1| (-1106)))) (-3011 (($ $) 219 (|has| |#1| (-1106)))) (-1864 (($ $) 230 (|has| |#1| (-1106)))) (-2989 (($ $) 218 (|has| |#1| (-1106)))) (-1849 (($ $) 229 (|has| |#1| (-1106)))) (-2966 (($ $) 217 (|has| |#1| (-1106)))) (-4126 (($ $) 251 (|has| |#1| (-980)))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 117 (|has| |#1| (-338)))) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-1 |#1| |#1|) (-708)) 125) (($ $ (-1 |#1| |#1|)) 124) (($ $ (-588 (-1085)) (-588 (-708))) 126 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 127 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 128 (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) 129 (|has| |#1| (-829 (-1085)))) (($ $ (-708)) 134 (-3844 (-4079 (|has| |#1| (-338)) (|has| |#1| (-210))) (|has| |#1| (-210)) (-4079 (|has| |#1| (-210)) (|has| |#1| (-338))))) (($ $) 136 (-3844 (-4079 (|has| |#1| (-338)) (|has| |#1| (-210))) (|has| |#1| (-210)) (-4079 (|has| |#1| (-210)) (|has| |#1| (-338)))))) (-1623 (((-108) $ $) 204 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 203 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 205 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 202 (|has| |#1| (-784)))) (-1682 (($ $ $) 121 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-382 (-522))) 239 (-12 (|has| |#1| (-928)) (|has| |#1| (-1106)))) (($ $ $) 237 (|has| |#1| (-1106))) (($ $ (-522)) 118 (|has| |#1| (-338)))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38) (($ (-382 (-522)) $) 120 (|has| |#1| (-338))) (($ $ (-382 (-522))) 119 (|has| |#1| (-338)))))
(((-151 |#1|) (-1197) (-157)) (T -151))
-((-2100 (*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))) (-2059 (*1 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))) (-3122 (*1 *1 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))) (-3911 (*1 *1 *2 *2) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))) (-1948 (*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))) (-1937 (*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))) (-2232 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-151 *2)) (-4 *2 (-157)) (-4 *2 (-514)))) (-2241 (*1 *1 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)) (-4 *2 (-980)))) (-3824 (*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)) (-4 *2 (-1106)))) (-3329 (*1 *2 *1) (-12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-980)) (-4 *3 (-1106)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-1770 (*1 *2 *1) (-12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-108)))) (-1492 (*1 *2 *1) (-12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-382 (-522))))) (-1664 (*1 *2 *1) (|partial| -12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-382 (-522))))))
-(-13 (-662 |t#1| (-1081 |t#1|)) (-386 |t#1|) (-208 |t#1|) (-313 |t#1|) (-375 |t#1|) (-813 |t#1|) (-352 |t#1|) (-157) (-10 -8 (-6 -3911) (-15 -2059 ($)) (-15 -3122 ($ $)) (-15 -3911 ($ |t#1| |t#1|)) (-15 -1948 (|t#1| $)) (-15 -1937 (|t#1| $)) (-15 -2100 (|t#1| $)) (IF (|has| |t#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#1| (-514)) (PROGN (-6 (-514)) (-15 -2232 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-283)) (-6 (-283)) |%noBranch|) (IF (|has| |t#1| (-6 -4237)) (-6 -4237) |%noBranch|) (IF (|has| |t#1| (-6 -4234)) (-6 -4234) |%noBranch|) (IF (|has| |t#1| (-338)) (-6 (-338)) |%noBranch|) (IF (|has| |t#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |t#1| (-947)) (PROGN (-6 (-563 (-154 (-202)))) (-6 (-563 (-154 (-354))))) |%noBranch|) (IF (|has| |t#1| (-980)) (-15 -2241 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1106)) (PROGN (-6 (-1106)) (-15 -3824 (|t#1| $)) (IF (|has| |t#1| (-928)) (-6 (-928)) |%noBranch|) (IF (|has| |t#1| (-980)) (-15 -3329 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-507)) (PROGN (-15 -1770 ((-108) $)) (-15 -1492 ((-382 (-522)) $)) (-15 -1664 ((-3 (-382 (-522)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-838)) (IF (|has| |t#1| (-283)) (-6 (-838)) |%noBranch|) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-37 |#1|) . T) ((-37 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-34) |has| |#1| (-1106)) ((-91) |has| |#1| (-1106)) ((-97) . T) ((-107 #0# #0#) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-133) -3708 (|has| |#1| (-324)) (|has| |#1| (-133))) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) . T) ((-563 (-154 (-202))) |has| |#1| (-947)) ((-563 (-154 (-354))) |has| |#1| (-947)) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-563 (-821 (-354))) |has| |#1| (-563 (-821 (-354)))) ((-563 (-821 (-522))) |has| |#1| (-563 (-821 (-522)))) ((-563 #1=(-1081 |#1|)) . T) ((-208 |#1|) . T) ((-210) -3708 (|has| |#1| (-324)) (|has| |#1| (-210))) ((-220) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-260) |has| |#1| (-1106)) ((-262 |#1| $) |has| |#1| (-262 |#1| |#1|)) ((-266) -3708 (|has| |#1| (-514)) (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-283) -3708 (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-285 |#1|) |has| |#1| (-285 |#1|)) ((-338) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-377) |has| |#1| (-324)) ((-343) -3708 (|has| |#1| (-343)) (|has| |#1| (-324))) ((-324) |has| |#1| (-324)) ((-345 |#1| #1#) . T) ((-384 |#1| #1#) . T) ((-313 |#1|) . T) ((-352 |#1|) . T) ((-375 |#1|) . T) ((-386 |#1|) . T) ((-426) -3708 (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-463) |has| |#1| (-1106)) ((-483 (-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)) ((-483 |#1| |#1|) |has| |#1| (-285 |#1|)) ((-514) -3708 (|has| |#1| (-514)) (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-590 #0#) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-655 |#1|) . T) ((-655 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-662 |#1| #1#) . T) ((-664) . T) ((-784) |has| |#1| (-784)) ((-829 (-1085)) |has| |#1| (-829 (-1085))) ((-815 (-354)) |has| |#1| (-815 (-354))) ((-815 (-522)) |has| |#1| (-815 (-522))) ((-813 |#1|) . T) ((-838) -12 (|has| |#1| (-283)) (|has| |#1| (-838))) ((-849) -3708 (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-928) -12 (|has| |#1| (-928)) (|has| |#1| (-1106))) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-977 #0#) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-977 |#1|) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) |has| |#1| (-324)) ((-1106) |has| |#1| (-1106)) ((-1109) |has| |#1| (-1106)) ((-1120) . T) ((-1124) -3708 (|has| |#1| (-324)) (|has| |#1| (-338)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))
-((-1916 (((-393 |#2|) |#2|) 63)))
-(((-152 |#1| |#2|) (-10 -7 (-15 -1916 ((-393 |#2|) |#2|))) (-283) (-1142 (-154 |#1|))) (T -152))
-((-1916 (*1 *2 *3) (-12 (-4 *4 (-283)) (-5 *2 (-393 *3)) (-5 *1 (-152 *4 *3)) (-4 *3 (-1142 (-154 *4))))))
-(-10 -7 (-15 -1916 ((-393 |#2|) |#2|)))
-((-1391 (((-154 |#2|) (-1 |#2| |#1|) (-154 |#1|)) 14)))
-(((-153 |#1| |#2|) (-10 -7 (-15 -1391 ((-154 |#2|) (-1 |#2| |#1|) (-154 |#1|)))) (-157) (-157)) (T -153))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-154 *5)) (-4 *5 (-157)) (-4 *6 (-157)) (-5 *2 (-154 *6)) (-5 *1 (-153 *5 *6)))))
-(-10 -7 (-15 -1391 ((-154 |#2|) (-1 |#2| |#1|) (-154 |#1|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 33)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-514))))) (-2022 (($ $) NIL (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-514))))) (-3739 (((-108) $) NIL (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-514))))) (-3174 (((-628 |#1|) (-1166 $)) NIL) (((-628 |#1|)) NIL)) (-1865 ((|#1| $) NIL)) (-2908 (($ $) NIL (|has| |#1| (-1106)))) (-2772 (($ $) NIL (|has| |#1| (-1106)))) (-1398 (((-1094 (-850) (-708)) (-522)) NIL (|has| |#1| (-324)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-3119 (($ $) NIL (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-3450 (((-393 $) $) NIL (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-1929 (($ $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-1106))))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-1687 (((-108) $ $) NIL (|has| |#1| (-283)))) (-1629 (((-708)) NIL (|has| |#1| (-343)))) (-2884 (($ $) NIL (|has| |#1| (-1106)))) (-2748 (($ $) NIL (|has| |#1| (-1106)))) (-2930 (($ $) NIL (|has| |#1| (-1106)))) (-2794 (($ $) NIL (|has| |#1| (-1106)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3766 (($ (-1166 |#1|) (-1166 $)) NIL) (($ (-1166 |#1|)) NIL)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-324)))) (-2277 (($ $ $) NIL (|has| |#1| (-283)))) (-2109 (((-628 |#1|) $ (-1166 $)) NIL) (((-628 |#1|) $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-3864 (($ (-1081 |#1|)) NIL) (((-3 $ "failed") (-382 (-1081 |#1|))) NIL (|has| |#1| (-338)))) (-2682 (((-3 $ "failed") $) NIL)) (-1937 ((|#1| $) 13)) (-1664 (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-507)))) (-1770 (((-108) $) NIL (|has| |#1| (-507)))) (-1492 (((-382 (-522)) $) NIL (|has| |#1| (-507)))) (-3166 (((-850)) NIL)) (-3255 (($) NIL (|has| |#1| (-343)))) (-2254 (($ $ $) NIL (|has| |#1| (-283)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-283)))) (-1223 (($) NIL (|has| |#1| (-324)))) (-2511 (((-108) $) NIL (|has| |#1| (-324)))) (-2111 (($ $ (-708)) NIL (|has| |#1| (-324))) (($ $) NIL (|has| |#1| (-324)))) (-2813 (((-108) $) NIL (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-3329 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-980)) (|has| |#1| (-1106))))) (-2838 (($) NIL (|has| |#1| (-1106)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| |#1| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| |#1| (-815 (-354))))) (-3714 (((-850) $) NIL (|has| |#1| (-324))) (((-770 (-850)) $) NIL (|has| |#1| (-324)))) (-2782 (((-108) $) 35)) (-1504 (($ $ (-522)) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-1106))))) (-2100 ((|#1| $) 46)) (-3004 (((-3 $ "failed") $) NIL (|has| |#1| (-324)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-283)))) (-1712 (((-1081 |#1|) $) NIL (|has| |#1| (-338)))) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2120 (((-850) $) NIL (|has| |#1| (-343)))) (-1254 (($ $) NIL (|has| |#1| (-1106)))) (-3849 (((-1081 |#1|) $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-283))) (($ $ $) NIL (|has| |#1| (-283)))) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL (|has| |#1| (-338)))) (-3802 (($) NIL (|has| |#1| (-324)) CONST)) (-2717 (($ (-850)) NIL (|has| |#1| (-343)))) (-2059 (($) NIL)) (-1948 ((|#1| $) 15)) (-4151 (((-1032) $) NIL)) (-1383 (($) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-283)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-283))) (($ $ $) NIL (|has| |#1| (-283)))) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL (|has| |#1| (-324)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-1916 (((-393 $) $) NIL (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-283))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-283)))) (-2232 (((-3 $ "failed") $ |#1|) 44 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 47 (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-514))))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-283)))) (-3266 (($ $) NIL (|has| |#1| (-1106)))) (-2289 (($ $ (-588 |#1|) (-588 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) NIL (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-483 (-1085) |#1|)))) (-3730 (((-708) $) NIL (|has| |#1| (-283)))) (-2545 (($ $ |#1|) NIL (|has| |#1| (-262 |#1| |#1|)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-283)))) (-2769 ((|#1| (-1166 $)) NIL) ((|#1|) NIL)) (-3018 (((-708) $) NIL (|has| |#1| (-324))) (((-3 (-708) "failed") $ $) NIL (|has| |#1| (-324)))) (-2157 (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $) NIL (|has| |#1| (-210)))) (-1859 (((-628 |#1|) (-1166 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-338)))) (-1479 (((-1081 |#1|)) NIL)) (-1738 (($ $) NIL (|has| |#1| (-1106)))) (-2804 (($ $) NIL (|has| |#1| (-1106)))) (-2581 (($) NIL (|has| |#1| (-324)))) (-2919 (($ $) NIL (|has| |#1| (-1106)))) (-2784 (($ $) NIL (|has| |#1| (-1106)))) (-2896 (($ $) NIL (|has| |#1| (-1106)))) (-2761 (($ $) NIL (|has| |#1| (-1106)))) (-3677 (((-1166 |#1|) $ (-1166 $)) NIL) (((-628 |#1|) (-1166 $) (-1166 $)) NIL) (((-1166 |#1|) $) NIL) (((-628 |#1|) (-1166 $)) NIL)) (-1431 (((-1166 |#1|) $) NIL) (($ (-1166 |#1|)) NIL) (((-1081 |#1|) $) NIL) (($ (-1081 |#1|)) NIL) (((-821 (-522)) $) NIL (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| |#1| (-563 (-821 (-354))))) (((-154 (-354)) $) NIL (|has| |#1| (-947))) (((-154 (-202)) $) NIL (|has| |#1| (-947))) (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-3122 (($ $) 45)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-324))))) (-3911 (($ |#1| |#1|) 37)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) 36) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-338)) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-514))))) (-2143 (($ $) NIL (|has| |#1| (-324))) (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2051 (((-1081 |#1|) $) NIL)) (-2323 (((-708)) NIL)) (-3855 (((-1166 $)) NIL)) (-1759 (($ $) NIL (|has| |#1| (-1106)))) (-2836 (($ $) NIL (|has| |#1| (-1106)))) (-3958 (((-108) $ $) NIL (-3708 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-514))))) (-1745 (($ $) NIL (|has| |#1| (-1106)))) (-2815 (($ $) NIL (|has| |#1| (-1106)))) (-1776 (($ $) NIL (|has| |#1| (-1106)))) (-2860 (($ $) NIL (|has| |#1| (-1106)))) (-3824 ((|#1| $) NIL (|has| |#1| (-1106)))) (-3924 (($ $) NIL (|has| |#1| (-1106)))) (-2872 (($ $) NIL (|has| |#1| (-1106)))) (-1768 (($ $) NIL (|has| |#1| (-1106)))) (-2848 (($ $) NIL (|has| |#1| (-1106)))) (-1752 (($ $) NIL (|has| |#1| (-1106)))) (-2825 (($ $) NIL (|has| |#1| (-1106)))) (-2241 (($ $) NIL (|has| |#1| (-980)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3566 (($) 28 T CONST)) (-3577 (($) 30 T CONST)) (-4149 (((-1068) $) 23 (|has| |#1| (-765))) (((-1068) $ (-108)) 25 (|has| |#1| (-765))) (((-1171) (-759) $) 26 (|has| |#1| (-765))) (((-1171) (-759) $ (-108)) 27 (|has| |#1| (-765)))) (-2213 (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $) NIL (|has| |#1| (-210)))) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1620 (($ $ $) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 39)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-382 (-522))) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-1106)))) (($ $ $) NIL (|has| |#1| (-1106))) (($ $ (-522)) NIL (|has| |#1| (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 42) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-382 (-522)) $) NIL (|has| |#1| (-338))) (($ $ (-382 (-522))) NIL (|has| |#1| (-338)))))
+((-1269 (*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))) (-2755 (*1 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))) (-2983 (*1 *1 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))) (-4005 (*1 *1 *2 *2) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))) (-2033 (*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))) (-2025 (*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))) (-2276 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-151 *2)) (-4 *2 (-157)) (-4 *2 (-514)))) (-4126 (*1 *1 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)) (-4 *2 (-980)))) (-2636 (*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)) (-4 *2 (-1106)))) (-1272 (*1 *2 *1) (-12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-980)) (-4 *3 (-1106)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-3519 (*1 *2 *1) (-12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-108)))) (-1699 (*1 *2 *1) (-12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-382 (-522))))) (-2549 (*1 *2 *1) (|partial| -12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-382 (-522))))))
+(-13 (-662 |t#1| (-1081 |t#1|)) (-386 |t#1|) (-208 |t#1|) (-313 |t#1|) (-375 |t#1|) (-813 |t#1|) (-352 |t#1|) (-157) (-10 -8 (-6 -4005) (-15 -2755 ($)) (-15 -2983 ($ $)) (-15 -4005 ($ |t#1| |t#1|)) (-15 -2033 (|t#1| $)) (-15 -2025 (|t#1| $)) (-15 -1269 (|t#1| $)) (IF (|has| |t#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#1| (-514)) (PROGN (-6 (-514)) (-15 -2276 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-283)) (-6 (-283)) |%noBranch|) (IF (|has| |t#1| (-6 -4237)) (-6 -4237) |%noBranch|) (IF (|has| |t#1| (-6 -4234)) (-6 -4234) |%noBranch|) (IF (|has| |t#1| (-338)) (-6 (-338)) |%noBranch|) (IF (|has| |t#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |t#1| (-947)) (PROGN (-6 (-563 (-154 (-202)))) (-6 (-563 (-154 (-354))))) |%noBranch|) (IF (|has| |t#1| (-980)) (-15 -4126 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1106)) (PROGN (-6 (-1106)) (-15 -2636 (|t#1| $)) (IF (|has| |t#1| (-928)) (-6 (-928)) |%noBranch|) (IF (|has| |t#1| (-980)) (-15 -1272 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-507)) (PROGN (-15 -3519 ((-108) $)) (-15 -1699 ((-382 (-522)) $)) (-15 -2549 ((-3 (-382 (-522)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-838)) (IF (|has| |t#1| (-283)) (-6 (-838)) |%noBranch|) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-37 |#1|) . T) ((-37 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-34) |has| |#1| (-1106)) ((-91) |has| |#1| (-1106)) ((-97) . T) ((-107 #0# #0#) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-133) -3844 (|has| |#1| (-324)) (|has| |#1| (-133))) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) . T) ((-563 (-154 (-202))) |has| |#1| (-947)) ((-563 (-154 (-354))) |has| |#1| (-947)) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-563 (-821 (-354))) |has| |#1| (-563 (-821 (-354)))) ((-563 (-821 (-522))) |has| |#1| (-563 (-821 (-522)))) ((-563 #1=(-1081 |#1|)) . T) ((-208 |#1|) . T) ((-210) -3844 (|has| |#1| (-324)) (|has| |#1| (-210))) ((-220) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-260) |has| |#1| (-1106)) ((-262 |#1| $) |has| |#1| (-262 |#1| |#1|)) ((-266) -3844 (|has| |#1| (-514)) (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-283) -3844 (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-285 |#1|) |has| |#1| (-285 |#1|)) ((-338) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-377) |has| |#1| (-324)) ((-343) -3844 (|has| |#1| (-343)) (|has| |#1| (-324))) ((-324) |has| |#1| (-324)) ((-345 |#1| #1#) . T) ((-384 |#1| #1#) . T) ((-313 |#1|) . T) ((-352 |#1|) . T) ((-375 |#1|) . T) ((-386 |#1|) . T) ((-426) -3844 (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-463) |has| |#1| (-1106)) ((-483 (-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)) ((-483 |#1| |#1|) |has| |#1| (-285 |#1|)) ((-514) -3844 (|has| |#1| (-514)) (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-590 #0#) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-655 |#1|) . T) ((-655 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-662 |#1| #1#) . T) ((-664) . T) ((-784) |has| |#1| (-784)) ((-829 (-1085)) |has| |#1| (-829 (-1085))) ((-815 (-354)) |has| |#1| (-815 (-354))) ((-815 (-522)) |has| |#1| (-815 (-522))) ((-813 |#1|) . T) ((-838) -12 (|has| |#1| (-283)) (|has| |#1| (-838))) ((-849) -3844 (|has| |#1| (-324)) (|has| |#1| (-338)) (|has| |#1| (-283))) ((-928) -12 (|has| |#1| (-928)) (|has| |#1| (-1106))) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-977 #0#) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-977 |#1|) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) |has| |#1| (-324)) ((-1106) |has| |#1| (-1106)) ((-1109) |has| |#1| (-1106)) ((-1120) . T) ((-1124) -3844 (|has| |#1| (-324)) (|has| |#1| (-338)) (-12 (|has| |#1| (-283)) (|has| |#1| (-838)))))
+((-2006 (((-393 |#2|) |#2|) 63)))
+(((-152 |#1| |#2|) (-10 -7 (-15 -2006 ((-393 |#2|) |#2|))) (-283) (-1142 (-154 |#1|))) (T -152))
+((-2006 (*1 *2 *3) (-12 (-4 *4 (-283)) (-5 *2 (-393 *3)) (-5 *1 (-152 *4 *3)) (-4 *3 (-1142 (-154 *4))))))
+(-10 -7 (-15 -2006 ((-393 |#2|) |#2|)))
+((-3810 (((-154 |#2|) (-1 |#2| |#1|) (-154 |#1|)) 14)))
+(((-153 |#1| |#2|) (-10 -7 (-15 -3810 ((-154 |#2|) (-1 |#2| |#1|) (-154 |#1|)))) (-157) (-157)) (T -153))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-154 *5)) (-4 *5 (-157)) (-4 *6 (-157)) (-5 *2 (-154 *6)) (-5 *1 (-153 *5 *6)))))
+(-10 -7 (-15 -3810 ((-154 |#2|) (-1 |#2| |#1|) (-154 |#1|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 33)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-514))))) (-2298 (($ $) NIL (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-514))))) (-3007 (((-108) $) NIL (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-514))))) (-3356 (((-628 |#1|) (-1166 $)) NIL) (((-628 |#1|)) NIL)) (-1945 ((|#1| $) NIL)) (-3044 (($ $) NIL (|has| |#1| (-1106)))) (-2923 (($ $) NIL (|has| |#1| (-1106)))) (-3833 (((-1094 (-850) (-708)) (-522)) NIL (|has| |#1| (-324)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-2961 (($ $) NIL (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-3133 (((-393 $) $) NIL (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-2016 (($ $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-1106))))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-2805 (((-108) $ $) NIL (|has| |#1| (-283)))) (-1685 (((-708)) NIL (|has| |#1| (-343)))) (-3023 (($ $) NIL (|has| |#1| (-1106)))) (-2906 (($ $) NIL (|has| |#1| (-1106)))) (-3066 (($ $) NIL (|has| |#1| (-1106)))) (-2936 (($ $) NIL (|has| |#1| (-1106)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3225 (($ (-1166 |#1|) (-1166 $)) NIL) (($ (-1166 |#1|)) NIL)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-324)))) (-2333 (($ $ $) NIL (|has| |#1| (-283)))) (-1359 (((-628 |#1|) $ (-1166 $)) NIL) (((-628 |#1|) $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-2153 (($ (-1081 |#1|)) NIL) (((-3 $ "failed") (-382 (-1081 |#1|))) NIL (|has| |#1| (-338)))) (-3920 (((-3 $ "failed") $) NIL)) (-2025 ((|#1| $) 13)) (-2549 (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-507)))) (-3519 (((-108) $) NIL (|has| |#1| (-507)))) (-1699 (((-382 (-522)) $) NIL (|has| |#1| (-507)))) (-1692 (((-850)) NIL)) (-3344 (($) NIL (|has| |#1| (-343)))) (-2303 (($ $ $) NIL (|has| |#1| (-283)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-283)))) (-2160 (($) NIL (|has| |#1| (-324)))) (-2087 (((-108) $) NIL (|has| |#1| (-324)))) (-1380 (($ $ (-708)) NIL (|has| |#1| (-324))) (($ $) NIL (|has| |#1| (-324)))) (-2725 (((-108) $) NIL (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-1272 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-980)) (|has| |#1| (-1106))))) (-2980 (($) NIL (|has| |#1| (-1106)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| |#1| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| |#1| (-815 (-354))))) (-3872 (((-850) $) NIL (|has| |#1| (-324))) (((-770 (-850)) $) NIL (|has| |#1| (-324)))) (-2859 (((-108) $) 35)) (-1811 (($ $ (-522)) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-1106))))) (-1269 ((|#1| $) 46)) (-4208 (((-3 $ "failed") $) NIL (|has| |#1| (-324)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-283)))) (-4199 (((-1081 |#1|) $) NIL (|has| |#1| (-338)))) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1475 (((-850) $) NIL (|has| |#1| (-343)))) (-1238 (($ $) NIL (|has| |#1| (-1106)))) (-2142 (((-1081 |#1|) $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-283))) (($ $ $) NIL (|has| |#1| (-283)))) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL (|has| |#1| (-338)))) (-3937 (($) NIL (|has| |#1| (-324)) CONST)) (-2882 (($ (-850)) NIL (|has| |#1| (-343)))) (-2755 (($) NIL)) (-2033 ((|#1| $) 15)) (-4174 (((-1032) $) NIL)) (-1368 (($) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-283)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-283))) (($ $ $) NIL (|has| |#1| (-283)))) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL (|has| |#1| (-324)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#1| (-283)) (|has| |#1| (-838))))) (-2006 (((-393 $) $) NIL (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-338))))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-283))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-283)))) (-2276 (((-3 $ "failed") $ |#1|) 44 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 47 (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-514))))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-283)))) (-3357 (($ $) NIL (|has| |#1| (-1106)))) (-2330 (($ $ (-588 |#1|) (-588 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) NIL (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-483 (-1085) |#1|)))) (-4031 (((-708) $) NIL (|has| |#1| (-283)))) (-2683 (($ $ |#1|) NIL (|has| |#1| (-262 |#1| |#1|)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-283)))) (-1615 ((|#1| (-1166 $)) NIL) ((|#1|) NIL)) (-1304 (((-708) $) NIL (|has| |#1| (-324))) (((-3 (-708) "failed") $ $) NIL (|has| |#1| (-324)))) (-2731 (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $) NIL (|has| |#1| (-210)))) (-2620 (((-628 |#1|) (-1166 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-338)))) (-1579 (((-1081 |#1|)) NIL)) (-1831 (($ $) NIL (|has| |#1| (-1106)))) (-2946 (($ $) NIL (|has| |#1| (-1106)))) (-2670 (($) NIL (|has| |#1| (-324)))) (-3054 (($ $) NIL (|has| |#1| (-1106)))) (-2928 (($ $) NIL (|has| |#1| (-1106)))) (-3035 (($ $) NIL (|has| |#1| (-1106)))) (-2915 (($ $) NIL (|has| |#1| (-1106)))) (-3510 (((-1166 |#1|) $ (-1166 $)) NIL) (((-628 |#1|) (-1166 $) (-1166 $)) NIL) (((-1166 |#1|) $) NIL) (((-628 |#1|) (-1166 $)) NIL)) (-3873 (((-1166 |#1|) $) NIL) (($ (-1166 |#1|)) NIL) (((-1081 |#1|) $) NIL) (($ (-1081 |#1|)) NIL) (((-821 (-522)) $) NIL (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| |#1| (-563 (-821 (-354))))) (((-154 (-354)) $) NIL (|has| |#1| (-947))) (((-154 (-202)) $) NIL (|has| |#1| (-947))) (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2983 (($ $) 45)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-324))))) (-4005 (($ |#1| |#1|) 37)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) 36) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-338)) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-514))))) (-3040 (($ $) NIL (|has| |#1| (-324))) (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2645 (((-1081 |#1|) $) NIL)) (-2742 (((-708)) NIL)) (-2905 (((-1166 $)) NIL)) (-1856 (($ $) NIL (|has| |#1| (-1106)))) (-2976 (($ $) NIL (|has| |#1| (-1106)))) (-1407 (((-108) $ $) NIL (-3844 (-12 (|has| |#1| (-283)) (|has| |#1| (-838))) (|has| |#1| (-514))))) (-1839 (($ $) NIL (|has| |#1| (-1106)))) (-2957 (($ $) NIL (|has| |#1| (-1106)))) (-1873 (($ $) NIL (|has| |#1| (-1106)))) (-3001 (($ $) NIL (|has| |#1| (-1106)))) (-2636 ((|#1| $) NIL (|has| |#1| (-1106)))) (-2476 (($ $) NIL (|has| |#1| (-1106)))) (-3011 (($ $) NIL (|has| |#1| (-1106)))) (-1864 (($ $) NIL (|has| |#1| (-1106)))) (-2989 (($ $) NIL (|has| |#1| (-1106)))) (-1849 (($ $) NIL (|has| |#1| (-1106)))) (-2966 (($ $) NIL (|has| |#1| (-1106)))) (-4126 (($ $) NIL (|has| |#1| (-980)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3697 (($) 28 T CONST)) (-3709 (($) 30 T CONST)) (-2810 (((-1068) $) 23 (|has| |#1| (-765))) (((-1068) $ (-108)) 25 (|has| |#1| (-765))) (((-1171) (-759) $) 26 (|has| |#1| (-765))) (((-1171) (-759) $ (-108)) 27 (|has| |#1| (-765)))) (-2252 (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $) NIL (|has| |#1| (-210)))) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1682 (($ $ $) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 39)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-382 (-522))) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-1106)))) (($ $ $) NIL (|has| |#1| (-1106))) (($ $ (-522)) NIL (|has| |#1| (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 42) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-382 (-522)) $) NIL (|has| |#1| (-338))) (($ $ (-382 (-522))) NIL (|has| |#1| (-338)))))
(((-154 |#1|) (-13 (-151 |#1|) (-10 -7 (IF (|has| |#1| (-765)) (-6 (-765)) |%noBranch|))) (-157)) (T -154))
NIL
(-13 (-151 |#1|) (-10 -7 (IF (|has| |#1| (-765)) (-6 (-765)) |%noBranch|)))
-((-1431 (((-821 |#1|) |#3|) 22)))
-(((-155 |#1| |#2| |#3|) (-10 -7 (-15 -1431 ((-821 |#1|) |#3|))) (-1014) (-13 (-563 (-821 |#1|)) (-157)) (-151 |#2|)) (T -155))
-((-1431 (*1 *2 *3) (-12 (-4 *5 (-13 (-563 *2) (-157))) (-5 *2 (-821 *4)) (-5 *1 (-155 *4 *5 *3)) (-4 *4 (-1014)) (-4 *3 (-151 *5)))))
-(-10 -7 (-15 -1431 ((-821 |#1|) |#3|)))
-((-1416 (((-108) $ $) NIL)) (-1676 (((-108) $) 9)) (-2548 (((-108) $ (-108)) 11)) (-1811 (($) 12)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2404 (($ $) 13)) (-2190 (((-792) $) 17)) (-3888 (((-108) $) 8)) (-1650 (((-108) $ (-108)) 10)) (-1531 (((-108) $ $) NIL)))
-(((-156) (-13 (-1014) (-10 -8 (-15 -1811 ($)) (-15 -3888 ((-108) $)) (-15 -1676 ((-108) $)) (-15 -1650 ((-108) $ (-108))) (-15 -2548 ((-108) $ (-108))) (-15 -2404 ($ $))))) (T -156))
-((-1811 (*1 *1) (-5 *1 (-156))) (-3888 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-156)))) (-1676 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-156)))) (-1650 (*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-156)))) (-2548 (*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-156)))) (-2404 (*1 *1 *1) (-5 *1 (-156))))
-(-13 (-1014) (-10 -8 (-15 -1811 ($)) (-15 -3888 ((-108) $)) (-15 -1676 ((-108) $)) (-15 -1650 ((-108) $ (-108))) (-15 -2548 ((-108) $ (-108))) (-15 -2404 ($ $))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ (-522)) 28)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-3873 (((-821 |#1|) |#3|) 22)))
+(((-155 |#1| |#2| |#3|) (-10 -7 (-15 -3873 ((-821 |#1|) |#3|))) (-1014) (-13 (-563 (-821 |#1|)) (-157)) (-151 |#2|)) (T -155))
+((-3873 (*1 *2 *3) (-12 (-4 *5 (-13 (-563 *2) (-157))) (-5 *2 (-821 *4)) (-5 *1 (-155 *4 *5 *3)) (-4 *4 (-1014)) (-4 *3 (-151 *5)))))
+(-10 -7 (-15 -3873 ((-821 |#1|) |#3|)))
+((-1419 (((-108) $ $) NIL)) (-2668 (((-108) $) 9)) (-3595 (((-108) $ (-108)) 11)) (-1893 (($) 12)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2463 (($ $) 13)) (-2217 (((-792) $) 17)) (-1947 (((-108) $) 8)) (-1720 (((-108) $ (-108)) 10)) (-1562 (((-108) $ $) NIL)))
+(((-156) (-13 (-1014) (-10 -8 (-15 -1893 ($)) (-15 -1947 ((-108) $)) (-15 -2668 ((-108) $)) (-15 -1720 ((-108) $ (-108))) (-15 -3595 ((-108) $ (-108))) (-15 -2463 ($ $))))) (T -156))
+((-1893 (*1 *1) (-5 *1 (-156))) (-1947 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-156)))) (-2668 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-156)))) (-1720 (*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-156)))) (-3595 (*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-156)))) (-2463 (*1 *1 *1) (-5 *1 (-156))))
+(-13 (-1014) (-10 -8 (-15 -1893 ($)) (-15 -1947 ((-108) $)) (-15 -2668 ((-108) $)) (-15 -1720 ((-108) $ (-108))) (-15 -3595 ((-108) $ (-108))) (-15 -2463 ($ $))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ (-522)) 28)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-157) (-1197)) (T -157))
NIL
(-13 (-971) (-107 $ $) (-10 -7 (-6 (-4240 "*"))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 $) . T) ((-664) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2229 ((|#1| $) 75)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-2277 (($ $ $) NIL)) (-4184 (($ $) 19)) (-2747 (($ |#1| (-1066 |#1|)) 48)) (-2682 (((-3 $ "failed") $) 117)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-1717 (((-1066 |#1|) $) 82)) (-1835 (((-1066 |#1|) $) 79)) (-2368 (((-1066 |#1|) $) 80)) (-2782 (((-108) $) NIL)) (-3553 (((-1066 |#1|) $) 88)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2224 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ (-588 $)) NIL) (($ $ $) NIL)) (-1916 (((-393 $) $) NIL)) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL)) (-3719 (($ $ (-522)) 91)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-4207 (((-1066 |#1|) $) 89)) (-3399 (((-1066 (-382 |#1|)) $) 13)) (-2702 (($ (-382 |#1|)) 17) (($ |#1| (-1066 |#1|) (-1066 |#1|)) 38)) (-1522 (($ $) 93)) (-2190 (((-792) $) 127) (($ (-522)) 51) (($ |#1|) 52) (($ (-382 |#1|)) 36) (($ (-382 (-522))) NIL) (($ $) NIL)) (-2323 (((-708)) 64)) (-3958 (((-108) $ $) NIL)) (-3655 (((-1066 (-382 |#1|)) $) 18)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 25 T CONST)) (-3577 (($) 28 T CONST)) (-1531 (((-108) $ $) 35)) (-1620 (($ $ $) 115)) (-1612 (($ $) 106) (($ $ $) 103)) (-1602 (($ $ $) 101)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 113) (($ $ $) 108) (($ $ |#1|) NIL) (($ |#1| $) 110) (($ (-382 |#1|) $) 111) (($ $ (-382 |#1|)) NIL) (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL)))
-(((-158 |#1|) (-13 (-37 |#1|) (-37 (-382 |#1|)) (-338) (-10 -8 (-15 -2702 ($ (-382 |#1|))) (-15 -2702 ($ |#1| (-1066 |#1|) (-1066 |#1|))) (-15 -2747 ($ |#1| (-1066 |#1|))) (-15 -1835 ((-1066 |#1|) $)) (-15 -2368 ((-1066 |#1|) $)) (-15 -1717 ((-1066 |#1|) $)) (-15 -2229 (|#1| $)) (-15 -4184 ($ $)) (-15 -3655 ((-1066 (-382 |#1|)) $)) (-15 -3399 ((-1066 (-382 |#1|)) $)) (-15 -3553 ((-1066 |#1|) $)) (-15 -4207 ((-1066 |#1|) $)) (-15 -3719 ($ $ (-522))) (-15 -1522 ($ $)))) (-283)) (T -158))
-((-2702 (*1 *1 *2) (-12 (-5 *2 (-382 *3)) (-4 *3 (-283)) (-5 *1 (-158 *3)))) (-2702 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1066 *2)) (-4 *2 (-283)) (-5 *1 (-158 *2)))) (-2747 (*1 *1 *2 *3) (-12 (-5 *3 (-1066 *2)) (-4 *2 (-283)) (-5 *1 (-158 *2)))) (-1835 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-2368 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-1717 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-2229 (*1 *2 *1) (-12 (-5 *1 (-158 *2)) (-4 *2 (-283)))) (-4184 (*1 *1 *1) (-12 (-5 *1 (-158 *2)) (-4 *2 (-283)))) (-3655 (*1 *2 *1) (-12 (-5 *2 (-1066 (-382 *3))) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-3399 (*1 *2 *1) (-12 (-5 *2 (-1066 (-382 *3))) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-3553 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-4207 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-3719 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-1522 (*1 *1 *1) (-12 (-5 *1 (-158 *2)) (-4 *2 (-283)))))
-(-13 (-37 |#1|) (-37 (-382 |#1|)) (-338) (-10 -8 (-15 -2702 ($ (-382 |#1|))) (-15 -2702 ($ |#1| (-1066 |#1|) (-1066 |#1|))) (-15 -2747 ($ |#1| (-1066 |#1|))) (-15 -1835 ((-1066 |#1|) $)) (-15 -2368 ((-1066 |#1|) $)) (-15 -1717 ((-1066 |#1|) $)) (-15 -2229 (|#1| $)) (-15 -4184 ($ $)) (-15 -3655 ((-1066 (-382 |#1|)) $)) (-15 -3399 ((-1066 (-382 |#1|)) $)) (-15 -3553 ((-1066 |#1|) $)) (-15 -4207 ((-1066 |#1|) $)) (-15 -3719 ($ $ (-522))) (-15 -1522 ($ $))))
-((-3625 (($ (-104) $) 13)) (-1533 (((-3 (-104) "failed") (-1085) $) 12)) (-2190 (((-792) $) 16)) (-1631 (((-588 (-104)) $) 7)))
-(((-159) (-13 (-562 (-792)) (-10 -8 (-15 -1631 ((-588 (-104)) $)) (-15 -3625 ($ (-104) $)) (-15 -1533 ((-3 (-104) "failed") (-1085) $))))) (T -159))
-((-1631 (*1 *2 *1) (-12 (-5 *2 (-588 (-104))) (-5 *1 (-159)))) (-3625 (*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-159)))) (-1533 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-104)) (-5 *1 (-159)))))
-(-13 (-562 (-792)) (-10 -8 (-15 -1631 ((-588 (-104)) $)) (-15 -3625 ($ (-104) $)) (-15 -1533 ((-3 (-104) "failed") (-1085) $))))
-((-4016 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 40)) (-3586 (((-872 |#1|) (-872 |#1|)) 19)) (-1378 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 36)) (-3657 (((-872 |#1|) (-872 |#1|)) 17)) (-1935 (((-872 |#1|) (-872 |#1|)) 25)) (-4211 (((-872 |#1|) (-872 |#1|)) 24)) (-2361 (((-872 |#1|) (-872 |#1|)) 23)) (-2367 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 37)) (-4096 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 35)) (-3157 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 34)) (-2432 (((-872 |#1|) (-872 |#1|)) 18)) (-3609 (((-1 (-872 |#1|) (-872 |#1|)) |#1| |#1|) 43)) (-2346 (((-872 |#1|) (-872 |#1|)) 8)) (-3612 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 39)) (-2675 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 38)))
-(((-160 |#1|) (-10 -7 (-15 -2346 ((-872 |#1|) (-872 |#1|))) (-15 -3657 ((-872 |#1|) (-872 |#1|))) (-15 -2432 ((-872 |#1|) (-872 |#1|))) (-15 -3586 ((-872 |#1|) (-872 |#1|))) (-15 -2361 ((-872 |#1|) (-872 |#1|))) (-15 -4211 ((-872 |#1|) (-872 |#1|))) (-15 -1935 ((-872 |#1|) (-872 |#1|))) (-15 -3157 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -4096 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -1378 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -2367 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -2675 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3612 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -4016 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3609 ((-1 (-872 |#1|) (-872 |#1|)) |#1| |#1|))) (-13 (-338) (-1106) (-928))) (T -160))
-((-3609 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-4016 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-3612 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-2675 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-2367 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-1378 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-4096 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-3157 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-1935 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))) (-4211 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))) (-2361 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))) (-3586 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))) (-2432 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))) (-3657 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))) (-2346 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))))
-(-10 -7 (-15 -2346 ((-872 |#1|) (-872 |#1|))) (-15 -3657 ((-872 |#1|) (-872 |#1|))) (-15 -2432 ((-872 |#1|) (-872 |#1|))) (-15 -3586 ((-872 |#1|) (-872 |#1|))) (-15 -2361 ((-872 |#1|) (-872 |#1|))) (-15 -4211 ((-872 |#1|) (-872 |#1|))) (-15 -1935 ((-872 |#1|) (-872 |#1|))) (-15 -3157 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -4096 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -1378 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -2367 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -2675 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3612 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -4016 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3609 ((-1 (-872 |#1|) (-872 |#1|)) |#1| |#1|)))
-((-2051 ((|#2| |#3|) 27)))
-(((-161 |#1| |#2| |#3|) (-10 -7 (-15 -2051 (|#2| |#3|))) (-157) (-1142 |#1|) (-662 |#1| |#2|)) (T -161))
-((-2051 (*1 *2 *3) (-12 (-4 *4 (-157)) (-4 *2 (-1142 *4)) (-5 *1 (-161 *4 *2 *3)) (-4 *3 (-662 *4 *2)))))
-(-10 -7 (-15 -2051 (|#2| |#3|)))
-((-4011 (((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)) 47 (|has| (-881 |#2|) (-815 |#1|)))))
-(((-162 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-881 |#2|) (-815 |#1|)) (-15 -4011 ((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))) |%noBranch|)) (-1014) (-13 (-815 |#1|) (-157)) (-151 |#2|)) (T -162))
-((-4011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *3)) (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-4 *3 (-151 *6)) (-4 (-881 *6) (-815 *5)) (-4 *6 (-13 (-815 *5) (-157))) (-5 *1 (-162 *5 *6 *3)))))
-(-10 -7 (IF (|has| (-881 |#2|) (-815 |#1|)) (-15 -4011 ((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))) |%noBranch|))
-((-2726 (((-588 |#1|) (-588 |#1|) |#1|) 36)) (-4197 (((-588 |#1|) |#1| (-588 |#1|)) 19)) (-1257 (((-588 |#1|) (-588 (-588 |#1|)) (-588 |#1|)) 31) ((|#1| (-588 |#1|) (-588 |#1|)) 29)))
-(((-163 |#1|) (-10 -7 (-15 -4197 ((-588 |#1|) |#1| (-588 |#1|))) (-15 -1257 (|#1| (-588 |#1|) (-588 |#1|))) (-15 -1257 ((-588 |#1|) (-588 (-588 |#1|)) (-588 |#1|))) (-15 -2726 ((-588 |#1|) (-588 |#1|) |#1|))) (-283)) (T -163))
-((-2726 (*1 *2 *2 *3) (-12 (-5 *2 (-588 *3)) (-4 *3 (-283)) (-5 *1 (-163 *3)))) (-1257 (*1 *2 *3 *2) (-12 (-5 *3 (-588 (-588 *4))) (-5 *2 (-588 *4)) (-4 *4 (-283)) (-5 *1 (-163 *4)))) (-1257 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *2)) (-5 *1 (-163 *2)) (-4 *2 (-283)))) (-4197 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-283)) (-5 *1 (-163 *3)))))
-(-10 -7 (-15 -4197 ((-588 |#1|) |#1| (-588 |#1|))) (-15 -1257 (|#1| (-588 |#1|) (-588 |#1|))) (-15 -1257 ((-588 |#1|) (-588 (-588 |#1|)) (-588 |#1|))) (-15 -2726 ((-588 |#1|) (-588 |#1|) |#1|)))
-((-1813 (((-2 (|:| |start| |#2|) (|:| -2976 (-393 |#2|))) |#2|) 61)) (-2056 ((|#1| |#1|) 54)) (-3828 (((-154 |#1|) |#2|) 83)) (-2141 ((|#1| |#2|) 123) ((|#1| |#2| |#1|) 81)) (-1839 ((|#2| |#2|) 82)) (-3014 (((-393 |#2|) |#2| |#1|) 113) (((-393 |#2|) |#2| |#1| (-108)) 80)) (-2100 ((|#1| |#2|) 112)) (-2962 ((|#2| |#2|) 119)) (-1916 (((-393 |#2|) |#2|) 134) (((-393 |#2|) |#2| |#1|) 32) (((-393 |#2|) |#2| |#1| (-108)) 133)) (-2802 (((-588 (-2 (|:| -2976 (-588 |#2|)) (|:| -2972 |#1|))) |#2| |#2|) 132) (((-588 (-2 (|:| -2976 (-588 |#2|)) (|:| -2972 |#1|))) |#2| |#2| (-108)) 75)) (-3728 (((-588 (-154 |#1|)) |#2| |#1|) 40) (((-588 (-154 |#1|)) |#2|) 41)))
-(((-164 |#1| |#2|) (-10 -7 (-15 -3728 ((-588 (-154 |#1|)) |#2|)) (-15 -3728 ((-588 (-154 |#1|)) |#2| |#1|)) (-15 -2802 ((-588 (-2 (|:| -2976 (-588 |#2|)) (|:| -2972 |#1|))) |#2| |#2| (-108))) (-15 -2802 ((-588 (-2 (|:| -2976 (-588 |#2|)) (|:| -2972 |#1|))) |#2| |#2|)) (-15 -1916 ((-393 |#2|) |#2| |#1| (-108))) (-15 -1916 ((-393 |#2|) |#2| |#1|)) (-15 -1916 ((-393 |#2|) |#2|)) (-15 -2962 (|#2| |#2|)) (-15 -2100 (|#1| |#2|)) (-15 -3014 ((-393 |#2|) |#2| |#1| (-108))) (-15 -3014 ((-393 |#2|) |#2| |#1|)) (-15 -1839 (|#2| |#2|)) (-15 -2141 (|#1| |#2| |#1|)) (-15 -2141 (|#1| |#2|)) (-15 -3828 ((-154 |#1|) |#2|)) (-15 -2056 (|#1| |#1|)) (-15 -1813 ((-2 (|:| |start| |#2|) (|:| -2976 (-393 |#2|))) |#2|))) (-13 (-338) (-782)) (-1142 (-154 |#1|))) (T -164))
-((-1813 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-2 (|:| |start| *3) (|:| -2976 (-393 *3)))) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-2056 (*1 *2 *2) (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3)) (-4 *3 (-1142 (-154 *2))))) (-3828 (*1 *2 *3) (-12 (-5 *2 (-154 *4)) (-5 *1 (-164 *4 *3)) (-4 *4 (-13 (-338) (-782))) (-4 *3 (-1142 *2)))) (-2141 (*1 *2 *3) (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3)) (-4 *3 (-1142 (-154 *2))))) (-2141 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3)) (-4 *3 (-1142 (-154 *2))))) (-1839 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-782))) (-5 *1 (-164 *3 *2)) (-4 *2 (-1142 (-154 *3))))) (-3014 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3)) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-3014 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-108)) (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3)) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-2100 (*1 *2 *3) (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3)) (-4 *3 (-1142 (-154 *2))))) (-2962 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-782))) (-5 *1 (-164 *3 *2)) (-4 *2 (-1142 (-154 *3))))) (-1916 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3)) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-1916 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3)) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-1916 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-108)) (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3)) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-2802 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-588 (-2 (|:| -2976 (-588 *3)) (|:| -2972 *4)))) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-2802 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-338) (-782))) (-5 *2 (-588 (-2 (|:| -2976 (-588 *3)) (|:| -2972 *5)))) (-5 *1 (-164 *5 *3)) (-4 *3 (-1142 (-154 *5))))) (-3728 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-588 (-154 *4))) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-3728 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-588 (-154 *4))) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))))
-(-10 -7 (-15 -3728 ((-588 (-154 |#1|)) |#2|)) (-15 -3728 ((-588 (-154 |#1|)) |#2| |#1|)) (-15 -2802 ((-588 (-2 (|:| -2976 (-588 |#2|)) (|:| -2972 |#1|))) |#2| |#2| (-108))) (-15 -2802 ((-588 (-2 (|:| -2976 (-588 |#2|)) (|:| -2972 |#1|))) |#2| |#2|)) (-15 -1916 ((-393 |#2|) |#2| |#1| (-108))) (-15 -1916 ((-393 |#2|) |#2| |#1|)) (-15 -1916 ((-393 |#2|) |#2|)) (-15 -2962 (|#2| |#2|)) (-15 -2100 (|#1| |#2|)) (-15 -3014 ((-393 |#2|) |#2| |#1| (-108))) (-15 -3014 ((-393 |#2|) |#2| |#1|)) (-15 -1839 (|#2| |#2|)) (-15 -2141 (|#1| |#2| |#1|)) (-15 -2141 (|#1| |#2|)) (-15 -3828 ((-154 |#1|) |#2|)) (-15 -2056 (|#1| |#1|)) (-15 -1813 ((-2 (|:| |start| |#2|) (|:| -2976 (-393 |#2|))) |#2|)))
-((-2065 (((-3 |#2| "failed") |#2|) 14)) (-1318 (((-708) |#2|) 16)) (-2931 ((|#2| |#2| |#2|) 18)))
-(((-165 |#1| |#2|) (-10 -7 (-15 -2065 ((-3 |#2| "failed") |#2|)) (-15 -1318 ((-708) |#2|)) (-15 -2931 (|#2| |#2| |#2|))) (-1120) (-615 |#1|)) (T -165))
-((-2931 (*1 *2 *2 *2) (-12 (-4 *3 (-1120)) (-5 *1 (-165 *3 *2)) (-4 *2 (-615 *3)))) (-1318 (*1 *2 *3) (-12 (-4 *4 (-1120)) (-5 *2 (-708)) (-5 *1 (-165 *4 *3)) (-4 *3 (-615 *4)))) (-2065 (*1 *2 *2) (|partial| -12 (-4 *3 (-1120)) (-5 *1 (-165 *3 *2)) (-4 *2 (-615 *3)))))
-(-10 -7 (-15 -2065 ((-3 |#2| "failed") |#2|)) (-15 -1318 ((-708) |#2|)) (-15 -2931 (|#2| |#2| |#2|)))
-((-3608 (((-1085) $) 9)) (-2190 (((-792) $) 13)) (-3890 (((-588 (-1090)) $) 11)))
-(((-166) (-13 (-562 (-792)) (-10 -8 (-15 -3608 ((-1085) $)) (-15 -3890 ((-588 (-1090)) $))))) (T -166))
-((-3608 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-166)))) (-3890 (*1 *2 *1) (-12 (-5 *2 (-588 (-1090))) (-5 *1 (-166)))))
-(-13 (-562 (-792)) (-10 -8 (-15 -3608 ((-1085) $)) (-15 -3890 ((-588 (-1090)) $))))
-((-3874 ((|#2| |#2|) 28)) (-2405 (((-108) |#2|) 19)) (-1937 (((-291 |#1|) |#2|) 12)) (-1948 (((-291 |#1|) |#2|) 14)) (-3846 ((|#2| |#2| (-1085)) 68) ((|#2| |#2|) 69)) (-4162 (((-154 (-291 |#1|)) |#2|) 9)) (-2377 ((|#2| |#2| (-1085)) 65) ((|#2| |#2|) 58)))
-(((-167 |#1| |#2|) (-10 -7 (-15 -3846 (|#2| |#2|)) (-15 -3846 (|#2| |#2| (-1085))) (-15 -2377 (|#2| |#2|)) (-15 -2377 (|#2| |#2| (-1085))) (-15 -1937 ((-291 |#1|) |#2|)) (-15 -1948 ((-291 |#1|) |#2|)) (-15 -2405 ((-108) |#2|)) (-15 -3874 (|#2| |#2|)) (-15 -4162 ((-154 (-291 |#1|)) |#2|))) (-13 (-514) (-784) (-962 (-522))) (-13 (-27) (-1106) (-405 (-154 |#1|)))) (T -167))
-((-4162 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-154 (-291 *4))) (-5 *1 (-167 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 (-154 *4)))))) (-3874 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *3)))))) (-2405 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-108)) (-5 *1 (-167 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 (-154 *4)))))) (-1948 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-291 *4)) (-5 *1 (-167 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 (-154 *4)))))) (-1937 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-291 *4)) (-5 *1 (-167 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 (-154 *4)))))) (-2377 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *4)))))) (-2377 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *3)))))) (-3846 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *4)))))) (-3846 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *3)))))))
-(-10 -7 (-15 -3846 (|#2| |#2|)) (-15 -3846 (|#2| |#2| (-1085))) (-15 -2377 (|#2| |#2|)) (-15 -2377 (|#2| |#2| (-1085))) (-15 -1937 ((-291 |#1|) |#2|)) (-15 -1948 ((-291 |#1|) |#2|)) (-15 -2405 ((-108) |#2|)) (-15 -3874 (|#2| |#2|)) (-15 -4162 ((-154 (-291 |#1|)) |#2|)))
-((-4025 (((-1166 (-628 (-881 |#1|))) (-1166 (-628 |#1|))) 22)) (-2190 (((-1166 (-628 (-382 (-881 |#1|)))) (-1166 (-628 |#1|))) 30)))
-(((-168 |#1|) (-10 -7 (-15 -4025 ((-1166 (-628 (-881 |#1|))) (-1166 (-628 |#1|)))) (-15 -2190 ((-1166 (-628 (-382 (-881 |#1|)))) (-1166 (-628 |#1|))))) (-157)) (T -168))
-((-2190 (*1 *2 *3) (-12 (-5 *3 (-1166 (-628 *4))) (-4 *4 (-157)) (-5 *2 (-1166 (-628 (-382 (-881 *4))))) (-5 *1 (-168 *4)))) (-4025 (*1 *2 *3) (-12 (-5 *3 (-1166 (-628 *4))) (-4 *4 (-157)) (-5 *2 (-1166 (-628 (-881 *4)))) (-5 *1 (-168 *4)))))
-(-10 -7 (-15 -4025 ((-1166 (-628 (-881 |#1|))) (-1166 (-628 |#1|)))) (-15 -2190 ((-1166 (-628 (-382 (-881 |#1|)))) (-1166 (-628 |#1|)))))
-((-3385 (((-1087 (-382 (-522))) (-1087 (-382 (-522))) (-1087 (-382 (-522)))) 66)) (-2334 (((-1087 (-382 (-522))) (-588 (-522)) (-588 (-522))) 74)) (-2398 (((-1087 (-382 (-522))) (-522)) 40)) (-4210 (((-1087 (-382 (-522))) (-522)) 52)) (-2289 (((-382 (-522)) (-1087 (-382 (-522)))) 62)) (-3805 (((-1087 (-382 (-522))) (-522)) 32)) (-3476 (((-1087 (-382 (-522))) (-522)) 48)) (-2759 (((-1087 (-382 (-522))) (-522)) 46)) (-2743 (((-1087 (-382 (-522))) (-1087 (-382 (-522))) (-1087 (-382 (-522)))) 60)) (-1522 (((-1087 (-382 (-522))) (-522)) 25)) (-2655 (((-382 (-522)) (-1087 (-382 (-522))) (-1087 (-382 (-522)))) 64)) (-2628 (((-1087 (-382 (-522))) (-522)) 30)) (-2892 (((-1087 (-382 (-522))) (-588 (-522))) 71)))
-(((-169) (-10 -7 (-15 -1522 ((-1087 (-382 (-522))) (-522))) (-15 -2398 ((-1087 (-382 (-522))) (-522))) (-15 -3805 ((-1087 (-382 (-522))) (-522))) (-15 -2628 ((-1087 (-382 (-522))) (-522))) (-15 -2759 ((-1087 (-382 (-522))) (-522))) (-15 -3476 ((-1087 (-382 (-522))) (-522))) (-15 -4210 ((-1087 (-382 (-522))) (-522))) (-15 -2655 ((-382 (-522)) (-1087 (-382 (-522))) (-1087 (-382 (-522))))) (-15 -2743 ((-1087 (-382 (-522))) (-1087 (-382 (-522))) (-1087 (-382 (-522))))) (-15 -2289 ((-382 (-522)) (-1087 (-382 (-522))))) (-15 -3385 ((-1087 (-382 (-522))) (-1087 (-382 (-522))) (-1087 (-382 (-522))))) (-15 -2892 ((-1087 (-382 (-522))) (-588 (-522)))) (-15 -2334 ((-1087 (-382 (-522))) (-588 (-522)) (-588 (-522)))))) (T -169))
-((-2334 (*1 *2 *3 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)))) (-2892 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)))) (-3385 (*1 *2 *2 *2) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)))) (-2289 (*1 *2 *3) (-12 (-5 *3 (-1087 (-382 (-522)))) (-5 *2 (-382 (-522))) (-5 *1 (-169)))) (-2743 (*1 *2 *2 *2) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)))) (-2655 (*1 *2 *3 *3) (-12 (-5 *3 (-1087 (-382 (-522)))) (-5 *2 (-382 (-522))) (-5 *1 (-169)))) (-4210 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))) (-3476 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))) (-2759 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))) (-2628 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))) (-3805 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))) (-2398 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))) (-1522 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))))
-(-10 -7 (-15 -1522 ((-1087 (-382 (-522))) (-522))) (-15 -2398 ((-1087 (-382 (-522))) (-522))) (-15 -3805 ((-1087 (-382 (-522))) (-522))) (-15 -2628 ((-1087 (-382 (-522))) (-522))) (-15 -2759 ((-1087 (-382 (-522))) (-522))) (-15 -3476 ((-1087 (-382 (-522))) (-522))) (-15 -4210 ((-1087 (-382 (-522))) (-522))) (-15 -2655 ((-382 (-522)) (-1087 (-382 (-522))) (-1087 (-382 (-522))))) (-15 -2743 ((-1087 (-382 (-522))) (-1087 (-382 (-522))) (-1087 (-382 (-522))))) (-15 -2289 ((-382 (-522)) (-1087 (-382 (-522))))) (-15 -3385 ((-1087 (-382 (-522))) (-1087 (-382 (-522))) (-1087 (-382 (-522))))) (-15 -2892 ((-1087 (-382 (-522))) (-588 (-522)))) (-15 -2334 ((-1087 (-382 (-522))) (-588 (-522)) (-588 (-522)))))
-((-1583 (((-393 (-1081 (-522))) (-522)) 28)) (-2578 (((-588 (-1081 (-522))) (-522)) 23)) (-1437 (((-1081 (-522)) (-522)) 21)))
-(((-170) (-10 -7 (-15 -2578 ((-588 (-1081 (-522))) (-522))) (-15 -1437 ((-1081 (-522)) (-522))) (-15 -1583 ((-393 (-1081 (-522))) (-522))))) (T -170))
-((-1583 (*1 *2 *3) (-12 (-5 *2 (-393 (-1081 (-522)))) (-5 *1 (-170)) (-5 *3 (-522)))) (-1437 (*1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-170)) (-5 *3 (-522)))) (-2578 (*1 *2 *3) (-12 (-5 *2 (-588 (-1081 (-522)))) (-5 *1 (-170)) (-5 *3 (-522)))))
-(-10 -7 (-15 -2578 ((-588 (-1081 (-522))) (-522))) (-15 -1437 ((-1081 (-522)) (-522))) (-15 -1583 ((-393 (-1081 (-522))) (-522))))
-((-2510 (((-1066 (-202)) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 101)) (-3205 (((-588 (-1068)) (-1066 (-202))) NIL)) (-1986 (((-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 77)) (-3072 (((-588 (-202)) (-291 (-202)) (-1085) (-1009 (-777 (-202)))) NIL)) (-1644 (((-588 (-1068)) (-588 (-202))) NIL)) (-2988 (((-202) (-1009 (-777 (-202)))) 22)) (-2740 (((-202) (-1009 (-777 (-202)))) 23)) (-3359 (((-354) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 93)) (-2762 (((-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 40)) (-2461 (((-1068) (-202)) NIL)) (-3901 (((-1068) (-588 (-1068))) 19)) (-2926 (((-960) (-1085) (-1085) (-960)) 12)))
-(((-171) (-10 -7 (-15 -1986 ((-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2762 ((-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2988 ((-202) (-1009 (-777 (-202))))) (-15 -2740 ((-202) (-1009 (-777 (-202))))) (-15 -3359 ((-354) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3072 ((-588 (-202)) (-291 (-202)) (-1085) (-1009 (-777 (-202))))) (-15 -2510 ((-1066 (-202)) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2461 ((-1068) (-202))) (-15 -1644 ((-588 (-1068)) (-588 (-202)))) (-15 -3205 ((-588 (-1068)) (-1066 (-202)))) (-15 -3901 ((-1068) (-588 (-1068)))) (-15 -2926 ((-960) (-1085) (-1085) (-960))))) (T -171))
-((-2926 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-960)) (-5 *3 (-1085)) (-5 *1 (-171)))) (-3901 (*1 *2 *3) (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1068)) (-5 *1 (-171)))) (-3205 (*1 *2 *3) (-12 (-5 *3 (-1066 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-171)))) (-1644 (*1 *2 *3) (-12 (-5 *3 (-588 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-171)))) (-2461 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1068)) (-5 *1 (-171)))) (-2510 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-171)))) (-3072 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-291 (-202))) (-5 *4 (-1085)) (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-171)))) (-3359 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-354)) (-5 *1 (-171)))) (-2740 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-171)))) (-2988 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-171)))) (-2762 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-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 (-171)))) (-1986 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-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 (-171)))))
-(-10 -7 (-15 -1986 ((-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2762 ((-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2988 ((-202) (-1009 (-777 (-202))))) (-15 -2740 ((-202) (-1009 (-777 (-202))))) (-15 -3359 ((-354) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3072 ((-588 (-202)) (-291 (-202)) (-1085) (-1009 (-777 (-202))))) (-15 -2510 ((-1066 (-202)) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2461 ((-1068) (-202))) (-15 -1644 ((-588 (-1068)) (-588 (-202)))) (-15 -3205 ((-588 (-1068)) (-1066 (-202)))) (-15 -3901 ((-1068) (-588 (-1068)))) (-15 -2926 ((-960) (-1085) (-1085) (-960))))
-((-1416 (((-108) $ $) NIL)) (-1354 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 53) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 28) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3049 ((|#1| $) 75)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-2333 (($ $ $) NIL)) (-1842 (($ $) 19)) (-4141 (($ |#1| (-1066 |#1|)) 48)) (-3920 (((-3 $ "failed") $) 117)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-1223 (((-1066 |#1|) $) 82)) (-2317 (((-1066 |#1|) $) 79)) (-3960 (((-1066 |#1|) $) 80)) (-2859 (((-108) $) NIL)) (-1707 (((-1066 |#1|) $) 88)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2267 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2006 (((-393 $) $) NIL)) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL)) (-3934 (($ $ (-522)) 91)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2053 (((-1066 |#1|) $) 89)) (-3757 (((-1066 (-382 |#1|)) $) 13)) (-1471 (($ (-382 |#1|)) 17) (($ |#1| (-1066 |#1|) (-1066 |#1|)) 38)) (-1944 (($ $) 93)) (-2217 (((-792) $) 127) (($ (-522)) 51) (($ |#1|) 52) (($ (-382 |#1|)) 36) (($ (-382 (-522))) NIL) (($ $) NIL)) (-2742 (((-708)) 64)) (-1407 (((-108) $ $) NIL)) (-1448 (((-1066 (-382 |#1|)) $) 18)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 25 T CONST)) (-3709 (($) 28 T CONST)) (-1562 (((-108) $ $) 35)) (-1682 (($ $ $) 115)) (-1672 (($ $) 106) (($ $ $) 103)) (-1661 (($ $ $) 101)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 113) (($ $ $) 108) (($ $ |#1|) NIL) (($ |#1| $) 110) (($ (-382 |#1|) $) 111) (($ $ (-382 |#1|)) NIL) (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL)))
+(((-158 |#1|) (-13 (-37 |#1|) (-37 (-382 |#1|)) (-338) (-10 -8 (-15 -1471 ($ (-382 |#1|))) (-15 -1471 ($ |#1| (-1066 |#1|) (-1066 |#1|))) (-15 -4141 ($ |#1| (-1066 |#1|))) (-15 -2317 ((-1066 |#1|) $)) (-15 -3960 ((-1066 |#1|) $)) (-15 -1223 ((-1066 |#1|) $)) (-15 -3049 (|#1| $)) (-15 -1842 ($ $)) (-15 -1448 ((-1066 (-382 |#1|)) $)) (-15 -3757 ((-1066 (-382 |#1|)) $)) (-15 -1707 ((-1066 |#1|) $)) (-15 -2053 ((-1066 |#1|) $)) (-15 -3934 ($ $ (-522))) (-15 -1944 ($ $)))) (-283)) (T -158))
+((-1471 (*1 *1 *2) (-12 (-5 *2 (-382 *3)) (-4 *3 (-283)) (-5 *1 (-158 *3)))) (-1471 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1066 *2)) (-4 *2 (-283)) (-5 *1 (-158 *2)))) (-4141 (*1 *1 *2 *3) (-12 (-5 *3 (-1066 *2)) (-4 *2 (-283)) (-5 *1 (-158 *2)))) (-2317 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-3960 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-1223 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-3049 (*1 *2 *1) (-12 (-5 *1 (-158 *2)) (-4 *2 (-283)))) (-1842 (*1 *1 *1) (-12 (-5 *1 (-158 *2)) (-4 *2 (-283)))) (-1448 (*1 *2 *1) (-12 (-5 *2 (-1066 (-382 *3))) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-3757 (*1 *2 *1) (-12 (-5 *2 (-1066 (-382 *3))) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-1707 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-2053 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-3934 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-158 *3)) (-4 *3 (-283)))) (-1944 (*1 *1 *1) (-12 (-5 *1 (-158 *2)) (-4 *2 (-283)))))
+(-13 (-37 |#1|) (-37 (-382 |#1|)) (-338) (-10 -8 (-15 -1471 ($ (-382 |#1|))) (-15 -1471 ($ |#1| (-1066 |#1|) (-1066 |#1|))) (-15 -4141 ($ |#1| (-1066 |#1|))) (-15 -2317 ((-1066 |#1|) $)) (-15 -3960 ((-1066 |#1|) $)) (-15 -1223 ((-1066 |#1|) $)) (-15 -3049 (|#1| $)) (-15 -1842 ($ $)) (-15 -1448 ((-1066 (-382 |#1|)) $)) (-15 -3757 ((-1066 (-382 |#1|)) $)) (-15 -1707 ((-1066 |#1|) $)) (-15 -2053 ((-1066 |#1|) $)) (-15 -3934 ($ $ (-522))) (-15 -1944 ($ $))))
+((-4190 (($ (-104) $) 13)) (-2040 (((-3 (-104) "failed") (-1085) $) 12)) (-2217 (((-792) $) 16)) (-2066 (((-588 (-104)) $) 7)))
+(((-159) (-13 (-562 (-792)) (-10 -8 (-15 -2066 ((-588 (-104)) $)) (-15 -4190 ($ (-104) $)) (-15 -2040 ((-3 (-104) "failed") (-1085) $))))) (T -159))
+((-2066 (*1 *2 *1) (-12 (-5 *2 (-588 (-104))) (-5 *1 (-159)))) (-4190 (*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-159)))) (-2040 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-104)) (-5 *1 (-159)))))
+(-13 (-562 (-792)) (-10 -8 (-15 -2066 ((-588 (-104)) $)) (-15 -4190 ($ (-104) $)) (-15 -2040 ((-3 (-104) "failed") (-1085) $))))
+((-3779 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 40)) (-1999 (((-872 |#1|) (-872 |#1|)) 19)) (-3656 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 36)) (-1472 (((-872 |#1|) (-872 |#1|)) 17)) (-1434 (((-872 |#1|) (-872 |#1|)) 25)) (-2090 (((-872 |#1|) (-872 |#1|)) 24)) (-1990 (((-872 |#1|) (-872 |#1|)) 23)) (-3950 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 37)) (-3374 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 35)) (-3223 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 34)) (-3350 (((-872 |#1|) (-872 |#1|)) 18)) (-2175 (((-1 (-872 |#1|) (-872 |#1|)) |#1| |#1|) 43)) (-1651 (((-872 |#1|) (-872 |#1|)) 8)) (-4066 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 39)) (-3843 (((-1 (-872 |#1|) (-872 |#1|)) |#1|) 38)))
+(((-160 |#1|) (-10 -7 (-15 -1651 ((-872 |#1|) (-872 |#1|))) (-15 -1472 ((-872 |#1|) (-872 |#1|))) (-15 -3350 ((-872 |#1|) (-872 |#1|))) (-15 -1999 ((-872 |#1|) (-872 |#1|))) (-15 -1990 ((-872 |#1|) (-872 |#1|))) (-15 -2090 ((-872 |#1|) (-872 |#1|))) (-15 -1434 ((-872 |#1|) (-872 |#1|))) (-15 -3223 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3374 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3656 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3950 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3843 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -4066 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3779 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -2175 ((-1 (-872 |#1|) (-872 |#1|)) |#1| |#1|))) (-13 (-338) (-1106) (-928))) (T -160))
+((-2175 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-3779 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-4066 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-3843 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-3950 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-3656 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-3374 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-3223 (*1 *2 *3) (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3)) (-4 *3 (-13 (-338) (-1106) (-928))))) (-1434 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))) (-2090 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))) (-1990 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))) (-1999 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))) (-3350 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))) (-1472 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))) (-1651 (*1 *2 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928))) (-5 *1 (-160 *3)))))
+(-10 -7 (-15 -1651 ((-872 |#1|) (-872 |#1|))) (-15 -1472 ((-872 |#1|) (-872 |#1|))) (-15 -3350 ((-872 |#1|) (-872 |#1|))) (-15 -1999 ((-872 |#1|) (-872 |#1|))) (-15 -1990 ((-872 |#1|) (-872 |#1|))) (-15 -2090 ((-872 |#1|) (-872 |#1|))) (-15 -1434 ((-872 |#1|) (-872 |#1|))) (-15 -3223 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3374 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3656 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3950 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3843 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -4066 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -3779 ((-1 (-872 |#1|) (-872 |#1|)) |#1|)) (-15 -2175 ((-1 (-872 |#1|) (-872 |#1|)) |#1| |#1|)))
+((-2645 ((|#2| |#3|) 27)))
+(((-161 |#1| |#2| |#3|) (-10 -7 (-15 -2645 (|#2| |#3|))) (-157) (-1142 |#1|) (-662 |#1| |#2|)) (T -161))
+((-2645 (*1 *2 *3) (-12 (-4 *4 (-157)) (-4 *2 (-1142 *4)) (-5 *1 (-161 *4 *2 *3)) (-4 *3 (-662 *4 *2)))))
+(-10 -7 (-15 -2645 (|#2| |#3|)))
+((-3738 (((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)) 47 (|has| (-881 |#2|) (-815 |#1|)))))
+(((-162 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-881 |#2|) (-815 |#1|)) (-15 -3738 ((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))) |%noBranch|)) (-1014) (-13 (-815 |#1|) (-157)) (-151 |#2|)) (T -162))
+((-3738 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *3)) (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-4 *3 (-151 *6)) (-4 (-881 *6) (-815 *5)) (-4 *6 (-13 (-815 *5) (-157))) (-5 *1 (-162 *5 *6 *3)))))
+(-10 -7 (IF (|has| (-881 |#2|) (-815 |#1|)) (-15 -3738 ((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))) |%noBranch|))
+((-3445 (((-588 |#1|) (-588 |#1|) |#1|) 36)) (-1961 (((-588 |#1|) |#1| (-588 |#1|)) 19)) (-2546 (((-588 |#1|) (-588 (-588 |#1|)) (-588 |#1|)) 31) ((|#1| (-588 |#1|) (-588 |#1|)) 29)))
+(((-163 |#1|) (-10 -7 (-15 -1961 ((-588 |#1|) |#1| (-588 |#1|))) (-15 -2546 (|#1| (-588 |#1|) (-588 |#1|))) (-15 -2546 ((-588 |#1|) (-588 (-588 |#1|)) (-588 |#1|))) (-15 -3445 ((-588 |#1|) (-588 |#1|) |#1|))) (-283)) (T -163))
+((-3445 (*1 *2 *2 *3) (-12 (-5 *2 (-588 *3)) (-4 *3 (-283)) (-5 *1 (-163 *3)))) (-2546 (*1 *2 *3 *2) (-12 (-5 *3 (-588 (-588 *4))) (-5 *2 (-588 *4)) (-4 *4 (-283)) (-5 *1 (-163 *4)))) (-2546 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *2)) (-5 *1 (-163 *2)) (-4 *2 (-283)))) (-1961 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-283)) (-5 *1 (-163 *3)))))
+(-10 -7 (-15 -1961 ((-588 |#1|) |#1| (-588 |#1|))) (-15 -2546 (|#1| (-588 |#1|) (-588 |#1|))) (-15 -2546 ((-588 |#1|) (-588 (-588 |#1|)) (-588 |#1|))) (-15 -3445 ((-588 |#1|) (-588 |#1|) |#1|)))
+((-3891 (((-2 (|:| |start| |#2|) (|:| -4045 (-393 |#2|))) |#2|) 61)) (-2709 ((|#1| |#1|) 54)) (-2693 (((-154 |#1|) |#2|) 83)) (-3016 ((|#1| |#2|) 123) ((|#1| |#2| |#1|) 81)) (-2359 ((|#2| |#2|) 82)) (-1276 (((-393 |#2|) |#2| |#1|) 113) (((-393 |#2|) |#2| |#1| (-108)) 80)) (-1269 ((|#1| |#2|) 112)) (-3941 ((|#2| |#2|) 119)) (-2006 (((-393 |#2|) |#2|) 134) (((-393 |#2|) |#2| |#1|) 32) (((-393 |#2|) |#2| |#1| (-108)) 133)) (-2600 (((-588 (-2 (|:| -4045 (-588 |#2|)) (|:| -3106 |#1|))) |#2| |#2|) 132) (((-588 (-2 (|:| -4045 (-588 |#2|)) (|:| -3106 |#1|))) |#2| |#2| (-108)) 75)) (-4017 (((-588 (-154 |#1|)) |#2| |#1|) 40) (((-588 (-154 |#1|)) |#2|) 41)))
+(((-164 |#1| |#2|) (-10 -7 (-15 -4017 ((-588 (-154 |#1|)) |#2|)) (-15 -4017 ((-588 (-154 |#1|)) |#2| |#1|)) (-15 -2600 ((-588 (-2 (|:| -4045 (-588 |#2|)) (|:| -3106 |#1|))) |#2| |#2| (-108))) (-15 -2600 ((-588 (-2 (|:| -4045 (-588 |#2|)) (|:| -3106 |#1|))) |#2| |#2|)) (-15 -2006 ((-393 |#2|) |#2| |#1| (-108))) (-15 -2006 ((-393 |#2|) |#2| |#1|)) (-15 -2006 ((-393 |#2|) |#2|)) (-15 -3941 (|#2| |#2|)) (-15 -1269 (|#1| |#2|)) (-15 -1276 ((-393 |#2|) |#2| |#1| (-108))) (-15 -1276 ((-393 |#2|) |#2| |#1|)) (-15 -2359 (|#2| |#2|)) (-15 -3016 (|#1| |#2| |#1|)) (-15 -3016 (|#1| |#2|)) (-15 -2693 ((-154 |#1|) |#2|)) (-15 -2709 (|#1| |#1|)) (-15 -3891 ((-2 (|:| |start| |#2|) (|:| -4045 (-393 |#2|))) |#2|))) (-13 (-338) (-782)) (-1142 (-154 |#1|))) (T -164))
+((-3891 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-2 (|:| |start| *3) (|:| -4045 (-393 *3)))) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-2709 (*1 *2 *2) (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3)) (-4 *3 (-1142 (-154 *2))))) (-2693 (*1 *2 *3) (-12 (-5 *2 (-154 *4)) (-5 *1 (-164 *4 *3)) (-4 *4 (-13 (-338) (-782))) (-4 *3 (-1142 *2)))) (-3016 (*1 *2 *3) (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3)) (-4 *3 (-1142 (-154 *2))))) (-3016 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3)) (-4 *3 (-1142 (-154 *2))))) (-2359 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-782))) (-5 *1 (-164 *3 *2)) (-4 *2 (-1142 (-154 *3))))) (-1276 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3)) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-1276 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-108)) (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3)) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-1269 (*1 *2 *3) (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3)) (-4 *3 (-1142 (-154 *2))))) (-3941 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-782))) (-5 *1 (-164 *3 *2)) (-4 *2 (-1142 (-154 *3))))) (-2006 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3)) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-2006 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3)) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-2006 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-108)) (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3)) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-2600 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-588 (-2 (|:| -4045 (-588 *3)) (|:| -3106 *4)))) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-2600 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-338) (-782))) (-5 *2 (-588 (-2 (|:| -4045 (-588 *3)) (|:| -3106 *5)))) (-5 *1 (-164 *5 *3)) (-4 *3 (-1142 (-154 *5))))) (-4017 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-588 (-154 *4))) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))) (-4017 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-588 (-154 *4))) (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))))
+(-10 -7 (-15 -4017 ((-588 (-154 |#1|)) |#2|)) (-15 -4017 ((-588 (-154 |#1|)) |#2| |#1|)) (-15 -2600 ((-588 (-2 (|:| -4045 (-588 |#2|)) (|:| -3106 |#1|))) |#2| |#2| (-108))) (-15 -2600 ((-588 (-2 (|:| -4045 (-588 |#2|)) (|:| -3106 |#1|))) |#2| |#2|)) (-15 -2006 ((-393 |#2|) |#2| |#1| (-108))) (-15 -2006 ((-393 |#2|) |#2| |#1|)) (-15 -2006 ((-393 |#2|) |#2|)) (-15 -3941 (|#2| |#2|)) (-15 -1269 (|#1| |#2|)) (-15 -1276 ((-393 |#2|) |#2| |#1| (-108))) (-15 -1276 ((-393 |#2|) |#2| |#1|)) (-15 -2359 (|#2| |#2|)) (-15 -3016 (|#1| |#2| |#1|)) (-15 -3016 (|#1| |#2|)) (-15 -2693 ((-154 |#1|) |#2|)) (-15 -2709 (|#1| |#1|)) (-15 -3891 ((-2 (|:| |start| |#2|) (|:| -4045 (-393 |#2|))) |#2|)))
+((-2827 (((-3 |#2| "failed") |#2|) 14)) (-1880 (((-708) |#2|) 16)) (-3619 ((|#2| |#2| |#2|) 18)))
+(((-165 |#1| |#2|) (-10 -7 (-15 -2827 ((-3 |#2| "failed") |#2|)) (-15 -1880 ((-708) |#2|)) (-15 -3619 (|#2| |#2| |#2|))) (-1120) (-615 |#1|)) (T -165))
+((-3619 (*1 *2 *2 *2) (-12 (-4 *3 (-1120)) (-5 *1 (-165 *3 *2)) (-4 *2 (-615 *3)))) (-1880 (*1 *2 *3) (-12 (-4 *4 (-1120)) (-5 *2 (-708)) (-5 *1 (-165 *4 *3)) (-4 *3 (-615 *4)))) (-2827 (*1 *2 *2) (|partial| -12 (-4 *3 (-1120)) (-5 *1 (-165 *3 *2)) (-4 *2 (-615 *3)))))
+(-10 -7 (-15 -2827 ((-3 |#2| "failed") |#2|)) (-15 -1880 ((-708) |#2|)) (-15 -3619 (|#2| |#2| |#2|)))
+((-3733 (((-1085) $) 9)) (-2217 (((-792) $) 13)) (-2174 (((-588 (-1090)) $) 11)))
+(((-166) (-13 (-562 (-792)) (-10 -8 (-15 -3733 ((-1085) $)) (-15 -2174 ((-588 (-1090)) $))))) (T -166))
+((-3733 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-166)))) (-2174 (*1 *2 *1) (-12 (-5 *2 (-588 (-1090))) (-5 *1 (-166)))))
+(-13 (-562 (-792)) (-10 -8 (-15 -3733 ((-1085) $)) (-15 -2174 ((-588 (-1090)) $))))
+((-1829 ((|#2| |#2|) 28)) (-1408 (((-108) |#2|) 19)) (-2025 (((-291 |#1|) |#2|) 12)) (-2033 (((-291 |#1|) |#2|) 14)) (-2854 ((|#2| |#2| (-1085)) 68) ((|#2| |#2|) 69)) (-2902 (((-154 (-291 |#1|)) |#2|) 9)) (-1254 ((|#2| |#2| (-1085)) 65) ((|#2| |#2|) 58)))
+(((-167 |#1| |#2|) (-10 -7 (-15 -2854 (|#2| |#2|)) (-15 -2854 (|#2| |#2| (-1085))) (-15 -1254 (|#2| |#2|)) (-15 -1254 (|#2| |#2| (-1085))) (-15 -2025 ((-291 |#1|) |#2|)) (-15 -2033 ((-291 |#1|) |#2|)) (-15 -1408 ((-108) |#2|)) (-15 -1829 (|#2| |#2|)) (-15 -2902 ((-154 (-291 |#1|)) |#2|))) (-13 (-514) (-784) (-962 (-522))) (-13 (-27) (-1106) (-405 (-154 |#1|)))) (T -167))
+((-2902 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-154 (-291 *4))) (-5 *1 (-167 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 (-154 *4)))))) (-1829 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *3)))))) (-1408 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-108)) (-5 *1 (-167 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 (-154 *4)))))) (-2033 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-291 *4)) (-5 *1 (-167 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 (-154 *4)))))) (-2025 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-291 *4)) (-5 *1 (-167 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 (-154 *4)))))) (-1254 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *4)))))) (-1254 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *3)))))) (-2854 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *4)))))) (-2854 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *3)))))))
+(-10 -7 (-15 -2854 (|#2| |#2|)) (-15 -2854 (|#2| |#2| (-1085))) (-15 -1254 (|#2| |#2|)) (-15 -1254 (|#2| |#2| (-1085))) (-15 -2025 ((-291 |#1|) |#2|)) (-15 -2033 ((-291 |#1|) |#2|)) (-15 -1408 ((-108) |#2|)) (-15 -1829 (|#2| |#2|)) (-15 -2902 ((-154 (-291 |#1|)) |#2|)))
+((-3889 (((-1166 (-628 (-881 |#1|))) (-1166 (-628 |#1|))) 22)) (-2217 (((-1166 (-628 (-382 (-881 |#1|)))) (-1166 (-628 |#1|))) 30)))
+(((-168 |#1|) (-10 -7 (-15 -3889 ((-1166 (-628 (-881 |#1|))) (-1166 (-628 |#1|)))) (-15 -2217 ((-1166 (-628 (-382 (-881 |#1|)))) (-1166 (-628 |#1|))))) (-157)) (T -168))
+((-2217 (*1 *2 *3) (-12 (-5 *3 (-1166 (-628 *4))) (-4 *4 (-157)) (-5 *2 (-1166 (-628 (-382 (-881 *4))))) (-5 *1 (-168 *4)))) (-3889 (*1 *2 *3) (-12 (-5 *3 (-1166 (-628 *4))) (-4 *4 (-157)) (-5 *2 (-1166 (-628 (-881 *4)))) (-5 *1 (-168 *4)))))
+(-10 -7 (-15 -3889 ((-1166 (-628 (-881 |#1|))) (-1166 (-628 |#1|)))) (-15 -2217 ((-1166 (-628 (-382 (-881 |#1|)))) (-1166 (-628 |#1|)))))
+((-3620 (((-1087 (-382 (-522))) (-1087 (-382 (-522))) (-1087 (-382 (-522)))) 66)) (-1917 (((-1087 (-382 (-522))) (-588 (-522)) (-588 (-522))) 74)) (-1377 (((-1087 (-382 (-522))) (-522)) 40)) (-2083 (((-1087 (-382 (-522))) (-522)) 52)) (-2330 (((-382 (-522)) (-1087 (-382 (-522)))) 62)) (-2405 (((-1087 (-382 (-522))) (-522)) 32)) (-3329 (((-1087 (-382 (-522))) (-522)) 48)) (-1518 (((-1087 (-382 (-522))) (-522)) 46)) (-1393 (((-1087 (-382 (-522))) (-1087 (-382 (-522))) (-1087 (-382 (-522)))) 60)) (-1944 (((-1087 (-382 (-522))) (-522)) 25)) (-1766 (((-382 (-522)) (-1087 (-382 (-522))) (-1087 (-382 (-522)))) 64)) (-2300 (((-1087 (-382 (-522))) (-522)) 30)) (-1457 (((-1087 (-382 (-522))) (-588 (-522))) 71)))
+(((-169) (-10 -7 (-15 -1944 ((-1087 (-382 (-522))) (-522))) (-15 -1377 ((-1087 (-382 (-522))) (-522))) (-15 -2405 ((-1087 (-382 (-522))) (-522))) (-15 -2300 ((-1087 (-382 (-522))) (-522))) (-15 -1518 ((-1087 (-382 (-522))) (-522))) (-15 -3329 ((-1087 (-382 (-522))) (-522))) (-15 -2083 ((-1087 (-382 (-522))) (-522))) (-15 -1766 ((-382 (-522)) (-1087 (-382 (-522))) (-1087 (-382 (-522))))) (-15 -1393 ((-1087 (-382 (-522))) (-1087 (-382 (-522))) (-1087 (-382 (-522))))) (-15 -2330 ((-382 (-522)) (-1087 (-382 (-522))))) (-15 -3620 ((-1087 (-382 (-522))) (-1087 (-382 (-522))) (-1087 (-382 (-522))))) (-15 -1457 ((-1087 (-382 (-522))) (-588 (-522)))) (-15 -1917 ((-1087 (-382 (-522))) (-588 (-522)) (-588 (-522)))))) (T -169))
+((-1917 (*1 *2 *3 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)))) (-1457 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)))) (-3620 (*1 *2 *2 *2) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)))) (-2330 (*1 *2 *3) (-12 (-5 *3 (-1087 (-382 (-522)))) (-5 *2 (-382 (-522))) (-5 *1 (-169)))) (-1393 (*1 *2 *2 *2) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)))) (-1766 (*1 *2 *3 *3) (-12 (-5 *3 (-1087 (-382 (-522)))) (-5 *2 (-382 (-522))) (-5 *1 (-169)))) (-2083 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))) (-3329 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))) (-1518 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))) (-2300 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))) (-2405 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))) (-1377 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))) (-1944 (*1 *2 *3) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))))
+(-10 -7 (-15 -1944 ((-1087 (-382 (-522))) (-522))) (-15 -1377 ((-1087 (-382 (-522))) (-522))) (-15 -2405 ((-1087 (-382 (-522))) (-522))) (-15 -2300 ((-1087 (-382 (-522))) (-522))) (-15 -1518 ((-1087 (-382 (-522))) (-522))) (-15 -3329 ((-1087 (-382 (-522))) (-522))) (-15 -2083 ((-1087 (-382 (-522))) (-522))) (-15 -1766 ((-382 (-522)) (-1087 (-382 (-522))) (-1087 (-382 (-522))))) (-15 -1393 ((-1087 (-382 (-522))) (-1087 (-382 (-522))) (-1087 (-382 (-522))))) (-15 -2330 ((-382 (-522)) (-1087 (-382 (-522))))) (-15 -3620 ((-1087 (-382 (-522))) (-1087 (-382 (-522))) (-1087 (-382 (-522))))) (-15 -1457 ((-1087 (-382 (-522))) (-588 (-522)))) (-15 -1917 ((-1087 (-382 (-522))) (-588 (-522)) (-588 (-522)))))
+((-3661 (((-393 (-1081 (-522))) (-522)) 28)) (-2638 (((-588 (-1081 (-522))) (-522)) 23)) (-2406 (((-1081 (-522)) (-522)) 21)))
+(((-170) (-10 -7 (-15 -2638 ((-588 (-1081 (-522))) (-522))) (-15 -2406 ((-1081 (-522)) (-522))) (-15 -3661 ((-393 (-1081 (-522))) (-522))))) (T -170))
+((-3661 (*1 *2 *3) (-12 (-5 *2 (-393 (-1081 (-522)))) (-5 *1 (-170)) (-5 *3 (-522)))) (-2406 (*1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-170)) (-5 *3 (-522)))) (-2638 (*1 *2 *3) (-12 (-5 *2 (-588 (-1081 (-522)))) (-5 *1 (-170)) (-5 *3 (-522)))))
+(-10 -7 (-15 -2638 ((-588 (-1081 (-522))) (-522))) (-15 -2406 ((-1081 (-522)) (-522))) (-15 -3661 ((-393 (-1081 (-522))) (-522))))
+((-2079 (((-1066 (-202)) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 101)) (-2484 (((-588 (-1068)) (-1066 (-202))) NIL)) (-3189 (((-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 77)) (-3635 (((-588 (-202)) (-291 (-202)) (-1085) (-1009 (-777 (-202)))) NIL)) (-2310 (((-588 (-1068)) (-588 (-202))) NIL)) (-4046 (((-202) (-1009 (-777 (-202)))) 22)) (-4009 (((-202) (-1009 (-777 (-202)))) 23)) (-1546 (((-354) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 93)) (-1544 (((-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 40)) (-2743 (((-1068) (-202)) NIL)) (-2043 (((-1068) (-588 (-1068))) 19)) (-3572 (((-960) (-1085) (-1085) (-960)) 12)))
+(((-171) (-10 -7 (-15 -3189 ((-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1544 ((-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -4046 ((-202) (-1009 (-777 (-202))))) (-15 -4009 ((-202) (-1009 (-777 (-202))))) (-15 -1546 ((-354) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3635 ((-588 (-202)) (-291 (-202)) (-1085) (-1009 (-777 (-202))))) (-15 -2079 ((-1066 (-202)) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2743 ((-1068) (-202))) (-15 -2310 ((-588 (-1068)) (-588 (-202)))) (-15 -2484 ((-588 (-1068)) (-1066 (-202)))) (-15 -2043 ((-1068) (-588 (-1068)))) (-15 -3572 ((-960) (-1085) (-1085) (-960))))) (T -171))
+((-3572 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-960)) (-5 *3 (-1085)) (-5 *1 (-171)))) (-2043 (*1 *2 *3) (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1068)) (-5 *1 (-171)))) (-2484 (*1 *2 *3) (-12 (-5 *3 (-1066 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-171)))) (-2310 (*1 *2 *3) (-12 (-5 *3 (-588 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-171)))) (-2743 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1068)) (-5 *1 (-171)))) (-2079 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-171)))) (-3635 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-291 (-202))) (-5 *4 (-1085)) (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-171)))) (-1546 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-354)) (-5 *1 (-171)))) (-4009 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-171)))) (-4046 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-171)))) (-1544 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-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 (-171)))) (-3189 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-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 (-171)))))
+(-10 -7 (-15 -3189 ((-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1544 ((-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -4046 ((-202) (-1009 (-777 (-202))))) (-15 -4009 ((-202) (-1009 (-777 (-202))))) (-15 -1546 ((-354) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3635 ((-588 (-202)) (-291 (-202)) (-1085) (-1009 (-777 (-202))))) (-15 -2079 ((-1066 (-202)) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2743 ((-1068) (-202))) (-15 -2310 ((-588 (-1068)) (-588 (-202)))) (-15 -2484 ((-588 (-1068)) (-1066 (-202)))) (-15 -2043 ((-1068) (-588 (-1068)))) (-15 -3572 ((-960) (-1085) (-1085) (-960))))
+((-1419 (((-108) $ $) NIL)) (-3459 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 53) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 28) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-172) (-724)) (T -172))
NIL
(-724)
-((-1416 (((-108) $ $) NIL)) (-1354 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 58) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 37) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-3459 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 58) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 37) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-173) (-724)) (T -173))
NIL
(-724)
-((-1416 (((-108) $ $) NIL)) (-1354 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 67) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 36) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-3459 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 67) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 36) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-174) (-724)) (T -174))
NIL
(-724)
-((-1416 (((-108) $ $) NIL)) (-1354 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 54) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 30) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-3459 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 54) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 30) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-175) (-724)) (T -175))
NIL
(-724)
-((-1416 (((-108) $ $) NIL)) (-1354 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 65) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 35) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-3459 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 65) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 35) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-176) (-724)) (T -176))
NIL
(-724)
-((-1416 (((-108) $ $) NIL)) (-1354 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 71) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 33) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-3459 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 71) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 33) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-177) (-724)) (T -177))
NIL
(-724)
-((-1416 (((-108) $ $) NIL)) (-1354 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 78) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 43) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-3459 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 78) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 43) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-178) (-724)) (T -178))
NIL
(-724)
-((-1416 (((-108) $ $) NIL)) (-1354 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 68) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 37) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-3459 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 68) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 37) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-179) (-724)) (T -179))
NIL
(-724)
-((-1416 (((-108) $ $) NIL)) (-1354 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 62)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 29)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-3459 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 62)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 29)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-180) (-724)) (T -180))
NIL
(-724)
-((-1416 (((-108) $ $) NIL)) (-1354 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 60)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 32)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-3459 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 60)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 32)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-181) (-724)) (T -181))
NIL
(-724)
-((-1416 (((-108) $ $) NIL)) (-1354 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 89) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 77) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-3459 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 89) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 77) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-182) (-724)) (T -182))
NIL
(-724)
-((-1304 (((-3 (-2 (|:| -1420 (-110)) (|:| |w| (-202))) "failed") (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 81)) (-1715 (((-522) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 39)) (-1733 (((-3 (-588 (-202)) "failed") (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 69)))
-(((-183) (-10 -7 (-15 -1304 ((-3 (-2 (|:| -1420 (-110)) (|:| |w| (-202))) "failed") (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1733 ((-3 (-588 (-202)) "failed") (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1715 ((-522) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))) (T -183))
-((-1715 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-522)) (-5 *1 (-183)))) (-1733 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-183)))) (-1304 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-2 (|:| -1420 (-110)) (|:| |w| (-202)))) (-5 *1 (-183)))))
-(-10 -7 (-15 -1304 ((-3 (-2 (|:| -1420 (-110)) (|:| |w| (-202))) "failed") (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1733 ((-3 (-588 (-202)) "failed") (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1715 ((-522) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))
-((-1325 (((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 37)) (-3757 (((-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 128)) (-1375 (((-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))) (-628 (-291 (-202)))) 88)) (-1753 (((-354) (-628 (-291 (-202)))) 111)) (-3807 (((-628 (-291 (-202))) (-1166 (-291 (-202))) (-588 (-1085))) 108)) (-1216 (((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 26)) (-1234 (((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 42)) (-2289 (((-628 (-291 (-202))) (-628 (-291 (-202))) (-588 (-1085)) (-1166 (-291 (-202)))) 100)) (-2737 (((-354) (-354) (-588 (-354))) 105) (((-354) (-354) (-354)) 103)) (-3536 (((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 33)))
-(((-184) (-10 -7 (-15 -2737 ((-354) (-354) (-354))) (-15 -2737 ((-354) (-354) (-588 (-354)))) (-15 -1753 ((-354) (-628 (-291 (-202))))) (-15 -3807 ((-628 (-291 (-202))) (-1166 (-291 (-202))) (-588 (-1085)))) (-15 -2289 ((-628 (-291 (-202))) (-628 (-291 (-202))) (-588 (-1085)) (-1166 (-291 (-202))))) (-15 -1375 ((-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))) (-628 (-291 (-202))))) (-15 -3757 ((-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1325 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1234 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3536 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1216 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))) (T -184))
-((-1216 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-354)) (-5 *1 (-184)))) (-3536 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-354)) (-5 *1 (-184)))) (-1234 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-354)) (-5 *1 (-184)))) (-1325 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-354)) (-5 *1 (-184)))) (-3757 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354)))) (-5 *1 (-184)))) (-1375 (*1 *2 *3) (-12 (-5 *3 (-628 (-291 (-202)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354)))) (-5 *1 (-184)))) (-2289 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-628 (-291 (-202)))) (-5 *3 (-588 (-1085))) (-5 *4 (-1166 (-291 (-202)))) (-5 *1 (-184)))) (-3807 (*1 *2 *3 *4) (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *4 (-588 (-1085))) (-5 *2 (-628 (-291 (-202)))) (-5 *1 (-184)))) (-1753 (*1 *2 *3) (-12 (-5 *3 (-628 (-291 (-202)))) (-5 *2 (-354)) (-5 *1 (-184)))) (-2737 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-354))) (-5 *2 (-354)) (-5 *1 (-184)))) (-2737 (*1 *2 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-184)))))
-(-10 -7 (-15 -2737 ((-354) (-354) (-354))) (-15 -2737 ((-354) (-354) (-588 (-354)))) (-15 -1753 ((-354) (-628 (-291 (-202))))) (-15 -3807 ((-628 (-291 (-202))) (-1166 (-291 (-202))) (-588 (-1085)))) (-15 -2289 ((-628 (-291 (-202))) (-628 (-291 (-202))) (-588 (-1085)) (-1166 (-291 (-202))))) (-15 -1375 ((-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))) (-628 (-291 (-202))))) (-15 -3757 ((-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1325 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1234 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3536 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1216 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))
-((-1416 (((-108) $ $) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 37)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-3462 (((-960) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 60)) (-1531 (((-108) $ $) NIL)))
+((-1762 (((-3 (-2 (|:| -1410 (-110)) (|:| |w| (-202))) "failed") (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 81)) (-1204 (((-522) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 39)) (-1367 (((-3 (-588 (-202)) "failed") (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 69)))
+(((-183) (-10 -7 (-15 -1762 ((-3 (-2 (|:| -1410 (-110)) (|:| |w| (-202))) "failed") (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1367 ((-3 (-588 (-202)) "failed") (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1204 ((-522) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))) (T -183))
+((-1204 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-522)) (-5 *1 (-183)))) (-1367 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-183)))) (-1762 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-2 (|:| -1410 (-110)) (|:| |w| (-202)))) (-5 *1 (-183)))))
+(-10 -7 (-15 -1762 ((-3 (-2 (|:| -1410 (-110)) (|:| |w| (-202))) "failed") (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1367 ((-3 (-588 (-202)) "failed") (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1204 ((-522) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))
+((-1936 (((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 37)) (-3157 (((-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 128)) (-3623 (((-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))) (-628 (-291 (-202)))) 88)) (-3384 (((-354) (-628 (-291 (-202)))) 111)) (-2435 (((-628 (-291 (-202))) (-1166 (-291 (-202))) (-588 (-1085))) 108)) (-2086 (((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 26)) (-2279 (((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 42)) (-2330 (((-628 (-291 (-202))) (-628 (-291 (-202))) (-588 (-1085)) (-1166 (-291 (-202)))) 100)) (-3980 (((-354) (-354) (-588 (-354))) 105) (((-354) (-354) (-354)) 103)) (-2794 (((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 33)))
+(((-184) (-10 -7 (-15 -3980 ((-354) (-354) (-354))) (-15 -3980 ((-354) (-354) (-588 (-354)))) (-15 -3384 ((-354) (-628 (-291 (-202))))) (-15 -2435 ((-628 (-291 (-202))) (-1166 (-291 (-202))) (-588 (-1085)))) (-15 -2330 ((-628 (-291 (-202))) (-628 (-291 (-202))) (-588 (-1085)) (-1166 (-291 (-202))))) (-15 -3623 ((-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))) (-628 (-291 (-202))))) (-15 -3157 ((-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1936 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2279 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2794 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2086 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))) (T -184))
+((-2086 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-354)) (-5 *1 (-184)))) (-2794 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-354)) (-5 *1 (-184)))) (-2279 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-354)) (-5 *1 (-184)))) (-1936 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-354)) (-5 *1 (-184)))) (-3157 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354)))) (-5 *1 (-184)))) (-3623 (*1 *2 *3) (-12 (-5 *3 (-628 (-291 (-202)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354)))) (-5 *1 (-184)))) (-2330 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-628 (-291 (-202)))) (-5 *3 (-588 (-1085))) (-5 *4 (-1166 (-291 (-202)))) (-5 *1 (-184)))) (-2435 (*1 *2 *3 *4) (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *4 (-588 (-1085))) (-5 *2 (-628 (-291 (-202)))) (-5 *1 (-184)))) (-3384 (*1 *2 *3) (-12 (-5 *3 (-628 (-291 (-202)))) (-5 *2 (-354)) (-5 *1 (-184)))) (-3980 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-354))) (-5 *2 (-354)) (-5 *1 (-184)))) (-3980 (*1 *2 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-184)))))
+(-10 -7 (-15 -3980 ((-354) (-354) (-354))) (-15 -3980 ((-354) (-354) (-588 (-354)))) (-15 -3384 ((-354) (-628 (-291 (-202))))) (-15 -2435 ((-628 (-291 (-202))) (-1166 (-291 (-202))) (-588 (-1085)))) (-15 -2330 ((-628 (-291 (-202))) (-628 (-291 (-202))) (-588 (-1085)) (-1166 (-291 (-202))))) (-15 -3623 ((-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))) (-628 (-291 (-202))))) (-15 -3157 ((-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1936 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2279 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2794 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2086 ((-354) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))
+((-1419 (((-108) $ $) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 37)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-3221 (((-960) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 60)) (-1562 (((-108) $ $) NIL)))
(((-185) (-737)) (T -185))
NIL
(-737)
-((-1416 (((-108) $ $) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 37)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-3462 (((-960) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 60)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 37)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-3221 (((-960) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 60)) (-1562 (((-108) $ $) NIL)))
(((-186) (-737)) (T -186))
NIL
(-737)
-((-1416 (((-108) $ $) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 36)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-3462 (((-960) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 64)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 36)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-3221 (((-960) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 64)) (-1562 (((-108) $ $) NIL)))
(((-187) (-737)) (T -187))
NIL
(-737)
-((-1416 (((-108) $ $) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 42)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-3462 (((-960) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 73)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 42)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-3221 (((-960) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 73)) (-1562 (((-108) $ $) NIL)))
(((-188) (-737)) (T -188))
NIL
(-737)
-((-4106 (((-588 (-1085)) (-1085) (-708)) 22)) (-3160 (((-291 (-202)) (-291 (-202))) 29)) (-2016 (((-108) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 67)) (-3815 (((-108) (-202) (-202) (-588 (-291 (-202)))) 43)))
-(((-189) (-10 -7 (-15 -4106 ((-588 (-1085)) (-1085) (-708))) (-15 -3160 ((-291 (-202)) (-291 (-202)))) (-15 -3815 ((-108) (-202) (-202) (-588 (-291 (-202))))) (-15 -2016 ((-108) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))))))) (T -189))
-((-2016 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) (-5 *2 (-108)) (-5 *1 (-189)))) (-3815 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-588 (-291 (-202)))) (-5 *3 (-202)) (-5 *2 (-108)) (-5 *1 (-189)))) (-3160 (*1 *2 *2) (-12 (-5 *2 (-291 (-202))) (-5 *1 (-189)))) (-4106 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-5 *2 (-588 (-1085))) (-5 *1 (-189)) (-5 *3 (-1085)))))
-(-10 -7 (-15 -4106 ((-588 (-1085)) (-1085) (-708))) (-15 -3160 ((-291 (-202)) (-291 (-202)))) (-15 -3815 ((-108) (-202) (-202) (-588 (-291 (-202))))) (-15 -2016 ((-108) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))))))
-((-1416 (((-108) $ $) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 17)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-3377 (((-960) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 55)) (-1531 (((-108) $ $) NIL)))
+((-4127 (((-588 (-1085)) (-1085) (-708)) 22)) (-3240 (((-291 (-202)) (-291 (-202))) 29)) (-2220 (((-108) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 67)) (-2528 (((-108) (-202) (-202) (-588 (-291 (-202)))) 43)))
+(((-189) (-10 -7 (-15 -4127 ((-588 (-1085)) (-1085) (-708))) (-15 -3240 ((-291 (-202)) (-291 (-202)))) (-15 -2528 ((-108) (-202) (-202) (-588 (-291 (-202))))) (-15 -2220 ((-108) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))))))) (T -189))
+((-2220 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) (-5 *2 (-108)) (-5 *1 (-189)))) (-2528 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-588 (-291 (-202)))) (-5 *3 (-202)) (-5 *2 (-108)) (-5 *1 (-189)))) (-3240 (*1 *2 *2) (-12 (-5 *2 (-291 (-202))) (-5 *1 (-189)))) (-4127 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-5 *2 (-588 (-1085))) (-5 *1 (-189)) (-5 *3 (-1085)))))
+(-10 -7 (-15 -4127 ((-588 (-1085)) (-1085) (-708))) (-15 -3240 ((-291 (-202)) (-291 (-202)))) (-15 -2528 ((-108) (-202) (-202) (-588 (-291 (-202))))) (-15 -2220 ((-108) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))))))
+((-1419 (((-108) $ $) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 17)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-3536 (((-960) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 55)) (-1562 (((-108) $ $) NIL)))
(((-190) (-824)) (T -190))
NIL
(-824)
-((-1416 (((-108) $ $) NIL)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 12)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-3377 (((-960) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 12)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-3536 (((-960) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) NIL)) (-1562 (((-108) $ $) NIL)))
(((-191) (-824)) (T -191))
NIL
(-824)
-((-1416 (((-108) $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2664 (((-1171) $) 36) (((-1171) $ (-850) (-850)) 38)) (-2545 (($ $ (-916)) 19) (((-222 (-1068)) $ (-1085)) 15)) (-1678 (((-1171) $) 34)) (-2190 (((-792) $) 31) (($ (-588 |#1|)) 8)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $ $) 27)) (-1602 (($ $ $) 22)))
-(((-192 |#1|) (-13 (-1014) (-10 -8 (-15 -2545 ($ $ (-916))) (-15 -2545 ((-222 (-1068)) $ (-1085))) (-15 -1602 ($ $ $)) (-15 -1612 ($ $ $)) (-15 -2190 ($ (-588 |#1|))) (-15 -1678 ((-1171) $)) (-15 -2664 ((-1171) $)) (-15 -2664 ((-1171) $ (-850) (-850))))) (-13 (-784) (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 ((-1171) $)) (-15 -2664 ((-1171) $))))) (T -192))
-((-2545 (*1 *1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-192 *3)) (-4 *3 (-13 (-784) (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 ((-1171) $)) (-15 -2664 ((-1171) $))))))) (-2545 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-222 (-1068))) (-5 *1 (-192 *4)) (-4 *4 (-13 (-784) (-10 -8 (-15 -2545 ((-1068) $ *3)) (-15 -1678 ((-1171) $)) (-15 -2664 ((-1171) $))))))) (-1602 (*1 *1 *1 *1) (-12 (-5 *1 (-192 *2)) (-4 *2 (-13 (-784) (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 ((-1171) $)) (-15 -2664 ((-1171) $))))))) (-1612 (*1 *1 *1 *1) (-12 (-5 *1 (-192 *2)) (-4 *2 (-13 (-784) (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 ((-1171) $)) (-15 -2664 ((-1171) $))))))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-13 (-784) (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 ((-1171) $)) (-15 -2664 ((-1171) $))))) (-5 *1 (-192 *3)))) (-1678 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-192 *3)) (-4 *3 (-13 (-784) (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 (*2 $)) (-15 -2664 (*2 $))))))) (-2664 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-192 *3)) (-4 *3 (-13 (-784) (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 (*2 $)) (-15 -2664 (*2 $))))))) (-2664 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1171)) (-5 *1 (-192 *4)) (-4 *4 (-13 (-784) (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 (*2 $)) (-15 -2664 (*2 $))))))))
-(-13 (-1014) (-10 -8 (-15 -2545 ($ $ (-916))) (-15 -2545 ((-222 (-1068)) $ (-1085))) (-15 -1602 ($ $ $)) (-15 -1612 ($ $ $)) (-15 -2190 ($ (-588 |#1|))) (-15 -1678 ((-1171) $)) (-15 -2664 ((-1171) $)) (-15 -2664 ((-1171) $ (-850) (-850)))))
-((-3336 ((|#2| |#4| (-1 |#2| |#2|)) 46)))
-(((-193 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3336 (|#2| |#4| (-1 |#2| |#2|)))) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|)) (T -193))
-((-3336 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-338)) (-4 *6 (-1142 (-382 *2))) (-4 *2 (-1142 *5)) (-5 *1 (-193 *5 *2 *6 *3)) (-4 *3 (-317 *5 *2 *6)))))
-(-10 -7 (-15 -3336 (|#2| |#4| (-1 |#2| |#2|))))
-((-1452 ((|#2| |#2| (-708) |#2|) 41)) (-3869 ((|#2| |#2| (-708) |#2|) 37)) (-2809 (((-588 |#2|) (-588 (-2 (|:| |deg| (-708)) (|:| -2574 |#2|)))) 57)) (-3764 (((-588 (-2 (|:| |deg| (-708)) (|:| -2574 |#2|))) |#2|) 52)) (-1769 (((-108) |#2|) 49)) (-2571 (((-393 |#2|) |#2|) 76)) (-1916 (((-393 |#2|) |#2|) 75)) (-1844 ((|#2| |#2| (-708) |#2|) 35)) (-2798 (((-2 (|:| |cont| |#1|) (|:| -2976 (-588 (-2 (|:| |irr| |#2|) (|:| -2245 (-522)))))) |#2| (-108)) 68)))
-(((-194 |#1| |#2|) (-10 -7 (-15 -1916 ((-393 |#2|) |#2|)) (-15 -2571 ((-393 |#2|) |#2|)) (-15 -2798 ((-2 (|:| |cont| |#1|) (|:| -2976 (-588 (-2 (|:| |irr| |#2|) (|:| -2245 (-522)))))) |#2| (-108))) (-15 -3764 ((-588 (-2 (|:| |deg| (-708)) (|:| -2574 |#2|))) |#2|)) (-15 -2809 ((-588 |#2|) (-588 (-2 (|:| |deg| (-708)) (|:| -2574 |#2|))))) (-15 -1844 (|#2| |#2| (-708) |#2|)) (-15 -3869 (|#2| |#2| (-708) |#2|)) (-15 -1452 (|#2| |#2| (-708) |#2|)) (-15 -1769 ((-108) |#2|))) (-324) (-1142 |#1|)) (T -194))
-((-1769 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-108)) (-5 *1 (-194 *4 *3)) (-4 *3 (-1142 *4)))) (-1452 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-194 *4 *2)) (-4 *2 (-1142 *4)))) (-3869 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-194 *4 *2)) (-4 *2 (-1142 *4)))) (-1844 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-194 *4 *2)) (-4 *2 (-1142 *4)))) (-2809 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| |deg| (-708)) (|:| -2574 *5)))) (-4 *5 (-1142 *4)) (-4 *4 (-324)) (-5 *2 (-588 *5)) (-5 *1 (-194 *4 *5)))) (-3764 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-588 (-2 (|:| |deg| (-708)) (|:| -2574 *3)))) (-5 *1 (-194 *4 *3)) (-4 *3 (-1142 *4)))) (-2798 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-324)) (-5 *2 (-2 (|:| |cont| *5) (|:| -2976 (-588 (-2 (|:| |irr| *3) (|:| -2245 (-522))))))) (-5 *1 (-194 *5 *3)) (-4 *3 (-1142 *5)))) (-2571 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-393 *3)) (-5 *1 (-194 *4 *3)) (-4 *3 (-1142 *4)))) (-1916 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-393 *3)) (-5 *1 (-194 *4 *3)) (-4 *3 (-1142 *4)))))
-(-10 -7 (-15 -1916 ((-393 |#2|) |#2|)) (-15 -2571 ((-393 |#2|) |#2|)) (-15 -2798 ((-2 (|:| |cont| |#1|) (|:| -2976 (-588 (-2 (|:| |irr| |#2|) (|:| -2245 (-522)))))) |#2| (-108))) (-15 -3764 ((-588 (-2 (|:| |deg| (-708)) (|:| -2574 |#2|))) |#2|)) (-15 -2809 ((-588 |#2|) (-588 (-2 (|:| |deg| (-708)) (|:| -2574 |#2|))))) (-15 -1844 (|#2| |#2| (-708) |#2|)) (-15 -3869 (|#2| |#2| (-708) |#2|)) (-15 -1452 (|#2| |#2| (-708) |#2|)) (-15 -1769 ((-108) |#2|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2229 (((-522) $) NIL (|has| (-522) (-283)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL (|has| (-522) (-757)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| (-522) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-522) (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| (-522) (-962 (-522))))) (-1484 (((-522) $) NIL) (((-1085) $) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-522) (-962 (-522)))) (((-522) $) NIL (|has| (-522) (-962 (-522))))) (-2277 (($ $ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| (-522) (-507)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-3687 (((-108) $) NIL (|has| (-522) (-757)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-522) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-522) (-815 (-354))))) (-2782 (((-108) $) NIL)) (-2902 (($ $) NIL)) (-2805 (((-522) $) NIL)) (-3004 (((-3 $ "failed") $) NIL (|has| (-522) (-1061)))) (-2556 (((-108) $) NIL (|has| (-522) (-757)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2814 (($ $ $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| (-522) (-784)))) (-1391 (($ (-1 (-522) (-522)) $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| (-522) (-1061)) CONST)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3933 (($ $) NIL (|has| (-522) (-283))) (((-382 (-522)) $) NIL)) (-3686 (((-522) $) NIL (|has| (-522) (-507)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2289 (($ $ (-588 (-522)) (-588 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-522) (-522)) NIL (|has| (-522) (-285 (-522)))) (($ $ (-270 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-270 (-522)))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-1085)) (-588 (-522))) NIL (|has| (-522) (-483 (-1085) (-522)))) (($ $ (-1085) (-522)) NIL (|has| (-522) (-483 (-1085) (-522))))) (-3730 (((-708) $) NIL)) (-2545 (($ $ (-522)) NIL (|has| (-522) (-262 (-522) (-522))))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2157 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-3533 (($ $) NIL)) (-2816 (((-522) $) NIL)) (-1453 (($ (-382 (-522))) 8)) (-1431 (((-821 (-522)) $) NIL (|has| (-522) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-522) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-522) (-563 (-498)))) (((-354) $) NIL (|has| (-522) (-947))) (((-202) $) NIL (|has| (-522) (-947)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-522) (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) 7) (($ (-522)) NIL) (($ (-1085)) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL) (((-930 10) $) 9)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| (-522) (-838))) (|has| (-522) (-133))))) (-2323 (((-708)) NIL)) (-3025 (((-522) $) NIL (|has| (-522) (-507)))) (-3958 (((-108) $ $) NIL)) (-2241 (($ $) NIL (|has| (-522) (-757)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-1574 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1558 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1549 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1620 (($ $ $) NIL) (($ (-522) (-522)) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-522) $) NIL) (($ $ (-522)) NIL)))
-(((-195) (-13 (-919 (-522)) (-10 -8 (-15 -2190 ((-382 (-522)) $)) (-15 -2190 ((-930 10) $)) (-15 -3933 ((-382 (-522)) $)) (-15 -1453 ($ (-382 (-522))))))) (T -195))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-195)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-930 10)) (-5 *1 (-195)))) (-3933 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-195)))) (-1453 (*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-195)))))
-(-13 (-919 (-522)) (-10 -8 (-15 -2190 ((-382 (-522)) $)) (-15 -2190 ((-930 10) $)) (-15 -3933 ((-382 (-522)) $)) (-15 -1453 ($ (-382 (-522))))))
-((-1858 (((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1007 (-777 |#2|)) (-1068)) 27) (((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1007 (-777 |#2|))) 23)) (-2035 (((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085) (-777 |#2|) (-777 |#2|) (-108)) 16)))
-(((-196 |#1| |#2|) (-10 -7 (-15 -1858 ((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1007 (-777 |#2|)))) (-15 -1858 ((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1007 (-777 |#2|)) (-1068))) (-15 -2035 ((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085) (-777 |#2|) (-777 |#2|) (-108)))) (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-887) (-29 |#1|))) (T -196))
-((-2035 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1085)) (-5 *6 (-108)) (-4 *7 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-4 *3 (-13 (-1106) (-887) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-777 *3)) (|:| |f2| (-588 (-777 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-196 *7 *3)) (-5 *5 (-777 *3)))) (-1858 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1007 (-777 *3))) (-5 *5 (-1068)) (-4 *3 (-13 (-1106) (-887) (-29 *6))) (-4 *6 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |f1| (-777 *3)) (|:| |f2| (-588 (-777 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-196 *6 *3)))) (-1858 (*1 *2 *3 *4) (-12 (-5 *4 (-1007 (-777 *3))) (-4 *3 (-13 (-1106) (-887) (-29 *5))) (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |f1| (-777 *3)) (|:| |f2| (-588 (-777 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-196 *5 *3)))))
-(-10 -7 (-15 -1858 ((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1007 (-777 |#2|)))) (-15 -1858 ((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1007 (-777 |#2|)) (-1068))) (-15 -2035 ((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085) (-777 |#2|) (-777 |#2|) (-108))))
-((-1858 (((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-382 (-881 |#1|)))) (-1068)) 44) (((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-382 (-881 |#1|))))) 41) (((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-291 |#1|))) (-1068)) 45) (((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-291 |#1|)))) 17)))
-(((-197 |#1|) (-10 -7 (-15 -1858 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-291 |#1|))))) (-15 -1858 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-291 |#1|))) (-1068))) (-15 -1858 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-382 (-881 |#1|)))))) (-15 -1858 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-382 (-881 |#1|)))) (-1068)))) (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (T -197))
-((-1858 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1007 (-777 (-382 (-881 *6))))) (-5 *5 (-1068)) (-5 *3 (-382 (-881 *6))) (-4 *6 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |f1| (-777 (-291 *6))) (|:| |f2| (-588 (-777 (-291 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-197 *6)))) (-1858 (*1 *2 *3 *4) (-12 (-5 *4 (-1007 (-777 (-382 (-881 *5))))) (-5 *3 (-382 (-881 *5))) (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |f1| (-777 (-291 *5))) (|:| |f2| (-588 (-777 (-291 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-197 *5)))) (-1858 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-382 (-881 *6))) (-5 *4 (-1007 (-777 (-291 *6)))) (-5 *5 (-1068)) (-4 *6 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |f1| (-777 (-291 *6))) (|:| |f2| (-588 (-777 (-291 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-197 *6)))) (-1858 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1007 (-777 (-291 *5)))) (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |f1| (-777 (-291 *5))) (|:| |f2| (-588 (-777 (-291 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-197 *5)))))
-(-10 -7 (-15 -1858 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-291 |#1|))))) (-15 -1858 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-291 |#1|))) (-1068))) (-15 -1858 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-382 (-881 |#1|)))))) (-15 -1858 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-382 (-881 |#1|)))) (-1068))))
-((-3864 (((-2 (|:| -3892 (-1081 |#1|)) (|:| |deg| (-850))) (-1081 |#1|)) 21)) (-1604 (((-588 (-291 |#2|)) (-291 |#2|) (-850)) 43)))
-(((-198 |#1| |#2|) (-10 -7 (-15 -3864 ((-2 (|:| -3892 (-1081 |#1|)) (|:| |deg| (-850))) (-1081 |#1|))) (-15 -1604 ((-588 (-291 |#2|)) (-291 |#2|) (-850)))) (-971) (-13 (-514) (-784))) (T -198))
-((-1604 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-4 *6 (-13 (-514) (-784))) (-5 *2 (-588 (-291 *6))) (-5 *1 (-198 *5 *6)) (-5 *3 (-291 *6)) (-4 *5 (-971)))) (-3864 (*1 *2 *3) (-12 (-4 *4 (-971)) (-5 *2 (-2 (|:| -3892 (-1081 *4)) (|:| |deg| (-850)))) (-5 *1 (-198 *4 *5)) (-5 *3 (-1081 *4)) (-4 *5 (-13 (-514) (-784))))))
-(-10 -7 (-15 -3864 ((-2 (|:| -3892 (-1081 |#1|)) (|:| |deg| (-850))) (-1081 |#1|))) (-15 -1604 ((-588 (-291 |#2|)) (-291 |#2|) (-850))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3852 ((|#1| $) NIL)) (-1355 ((|#1| $) 25)) (-4141 (((-108) $ (-708)) NIL)) (-3175 (($) NIL T CONST)) (-2070 (($ $) NIL)) (-3509 (($ $) 31)) (-3218 ((|#1| |#1| $) NIL)) (-2327 ((|#1| $) NIL)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2517 (((-708) $) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-2116 ((|#1| $) NIL)) (-2885 ((|#1| |#1| $) 28)) (-4194 ((|#1| |#1| $) 30)) (-4095 (($ |#1| $) NIL)) (-4155 (((-708) $) 27)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1698 ((|#1| $) NIL)) (-3265 ((|#1| $) 26)) (-1969 ((|#1| $) 24)) (-4087 ((|#1| $) NIL)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1965 ((|#1| |#1| $) NIL)) (-3985 (((-108) $) 9)) (-3775 (($) NIL)) (-3650 ((|#1| $) NIL)) (-1555 (($) NIL) (($ (-588 |#1|)) 16)) (-1253 (((-708) $) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3288 ((|#1| $) 13)) (-2795 (($ (-588 |#1|)) NIL)) (-2316 ((|#1| $) NIL)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-199 |#1|) (-13 (-230 |#1|) (-10 -8 (-15 -1555 ($ (-588 |#1|))))) (-1014)) (T -199))
-((-1555 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-199 *3)))))
-(-13 (-230 |#1|) (-10 -8 (-15 -1555 ($ (-588 |#1|)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1316 (($ (-291 |#1|)) 23)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-1289 (((-108) $) NIL)) (-1297 (((-3 (-291 |#1|) "failed") $) NIL)) (-1484 (((-291 |#1|) $) NIL)) (-3156 (($ $) 31)) (-2682 (((-3 $ "failed") $) NIL)) (-2782 (((-108) $) NIL)) (-1391 (($ (-1 (-291 |#1|) (-291 |#1|)) $) NIL)) (-3138 (((-291 |#1|) $) NIL)) (-3229 (($ $) 30)) (-2385 (((-1068) $) NIL)) (-3679 (((-108) $) NIL)) (-4151 (((-1032) $) NIL)) (-1383 (($ (-708)) NIL)) (-1468 (($ $) 32)) (-2793 (((-522) $) NIL)) (-2190 (((-792) $) 57) (($ (-522)) NIL) (($ (-291 |#1|)) NIL)) (-3243 (((-291 |#1|) $ $) NIL)) (-2323 (((-708)) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 25 T CONST)) (-3577 (($) 50 T CONST)) (-1531 (((-108) $ $) 28)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 19)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 24) (($ (-291 |#1|) $) 18)))
-(((-200 |#1| |#2|) (-13 (-566 (-291 |#1|)) (-962 (-291 |#1|)) (-10 -8 (-15 -3138 ((-291 |#1|) $)) (-15 -3229 ($ $)) (-15 -3156 ($ $)) (-15 -3243 ((-291 |#1|) $ $)) (-15 -1383 ($ (-708))) (-15 -3679 ((-108) $)) (-15 -1289 ((-108) $)) (-15 -2793 ((-522) $)) (-15 -1391 ($ (-1 (-291 |#1|) (-291 |#1|)) $)) (-15 -1316 ($ (-291 |#1|))) (-15 -1468 ($ $)))) (-13 (-971) (-784)) (-588 (-1085))) (T -200))
-((-3138 (*1 *2 *1) (-12 (-5 *2 (-291 *3)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085))))) (-3229 (*1 *1 *1) (-12 (-5 *1 (-200 *2 *3)) (-4 *2 (-13 (-971) (-784))) (-14 *3 (-588 (-1085))))) (-3156 (*1 *1 *1) (-12 (-5 *1 (-200 *2 *3)) (-4 *2 (-13 (-971) (-784))) (-14 *3 (-588 (-1085))))) (-3243 (*1 *2 *1 *1) (-12 (-5 *2 (-291 *3)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085))))) (-1383 (*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085))))) (-3679 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085))))) (-1289 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085))))) (-2793 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085))))) (-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-291 *3) (-291 *3))) (-4 *3 (-13 (-971) (-784))) (-5 *1 (-200 *3 *4)) (-14 *4 (-588 (-1085))))) (-1316 (*1 *1 *2) (-12 (-5 *2 (-291 *3)) (-4 *3 (-13 (-971) (-784))) (-5 *1 (-200 *3 *4)) (-14 *4 (-588 (-1085))))) (-1468 (*1 *1 *1) (-12 (-5 *1 (-200 *2 *3)) (-4 *2 (-13 (-971) (-784))) (-14 *3 (-588 (-1085))))))
-(-13 (-566 (-291 |#1|)) (-962 (-291 |#1|)) (-10 -8 (-15 -3138 ((-291 |#1|) $)) (-15 -3229 ($ $)) (-15 -3156 ($ $)) (-15 -3243 ((-291 |#1|) $ $)) (-15 -1383 ($ (-708))) (-15 -3679 ((-108) $)) (-15 -1289 ((-108) $)) (-15 -2793 ((-522) $)) (-15 -1391 ($ (-1 (-291 |#1|) (-291 |#1|)) $)) (-15 -1316 ($ (-291 |#1|))) (-15 -1468 ($ $))))
-((-4111 (((-108) (-1068)) 22)) (-2826 (((-3 (-777 |#2|) "failed") (-561 |#2|) |#2| (-777 |#2|) (-777 |#2|) (-108)) 32)) (-1840 (((-3 (-108) "failed") (-1081 |#2|) (-777 |#2|) (-777 |#2|) (-108)) 73) (((-3 (-108) "failed") (-881 |#1|) (-1085) (-777 |#2|) (-777 |#2|) (-108)) 74)))
-(((-201 |#1| |#2|) (-10 -7 (-15 -4111 ((-108) (-1068))) (-15 -2826 ((-3 (-777 |#2|) "failed") (-561 |#2|) |#2| (-777 |#2|) (-777 |#2|) (-108))) (-15 -1840 ((-3 (-108) "failed") (-881 |#1|) (-1085) (-777 |#2|) (-777 |#2|) (-108))) (-15 -1840 ((-3 (-108) "failed") (-1081 |#2|) (-777 |#2|) (-777 |#2|) (-108)))) (-13 (-426) (-784) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-29 |#1|))) (T -201))
-((-1840 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-108)) (-5 *3 (-1081 *6)) (-5 *4 (-777 *6)) (-4 *6 (-13 (-1106) (-29 *5))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-201 *5 *6)))) (-1840 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-108)) (-5 *3 (-881 *6)) (-5 *4 (-1085)) (-5 *5 (-777 *7)) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-4 *7 (-13 (-1106) (-29 *6))) (-5 *1 (-201 *6 *7)))) (-2826 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-777 *4)) (-5 *3 (-561 *4)) (-5 *5 (-108)) (-4 *4 (-13 (-1106) (-29 *6))) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-201 *6 *4)))) (-4111 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-108)) (-5 *1 (-201 *4 *5)) (-4 *5 (-13 (-1106) (-29 *4))))))
-(-10 -7 (-15 -4111 ((-108) (-1068))) (-15 -2826 ((-3 (-777 |#2|) "failed") (-561 |#2|) |#2| (-777 |#2|) (-777 |#2|) (-108))) (-15 -1840 ((-3 (-108) "failed") (-881 |#1|) (-1085) (-777 |#2|) (-777 |#2|) (-108))) (-15 -1840 ((-3 (-108) "failed") (-1081 |#2|) (-777 |#2|) (-777 |#2|) (-108))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 89)) (-2229 (((-522) $) 99)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-2789 (($ $) NIL)) (-2908 (($ $) 77)) (-2772 (($ $) 65)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1929 (($ $) 56)) (-1687 (((-108) $ $) NIL)) (-2884 (($ $) 75)) (-2748 (($ $) 63)) (-1341 (((-522) $) 116)) (-2930 (($ $) 80)) (-2794 (($ $) 67)) (-3175 (($) NIL T CONST)) (-2599 (($ $) NIL)) (-1297 (((-3 (-522) "failed") $) 115) (((-3 (-382 (-522)) "failed") $) 112)) (-1484 (((-522) $) 113) (((-382 (-522)) $) 110)) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) 92)) (-4202 (((-382 (-522)) $ (-708)) 108) (((-382 (-522)) $ (-708) (-708)) 107)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-2175 (((-850)) 29) (((-850) (-850)) NIL (|has| $ (-6 -4229)))) (-3687 (((-108) $) NIL)) (-2838 (($) 39)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL)) (-3714 (((-522) $) 35)) (-2782 (((-108) $) NIL)) (-1504 (($ $ (-522)) NIL)) (-2100 (($ $) NIL)) (-2556 (((-108) $) 88)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2814 (($ $ $) 53) (($) 34 (-12 (-2401 (|has| $ (-6 -4221))) (-2401 (|has| $ (-6 -4229)))))) (-2446 (($ $ $) 52) (($) 33 (-12 (-2401 (|has| $ (-6 -4221))) (-2401 (|has| $ (-6 -4229)))))) (-3357 (((-522) $) 27)) (-3248 (($ $) 30)) (-3167 (($ $) 57)) (-1254 (($ $) 62)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-1941 (((-850) (-522)) NIL (|has| $ (-6 -4229)))) (-4151 (((-1032) $) NIL) (((-522) $) 90)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3933 (($ $) NIL)) (-3686 (($ $) NIL)) (-3071 (($ (-522) (-522)) NIL) (($ (-522) (-522) (-850)) 100)) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1400 (((-522) $) 28)) (-3131 (($) 38)) (-3266 (($ $) 61)) (-3730 (((-708) $) NIL)) (-3956 (((-1068) (-1068)) 8)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2615 (((-850)) NIL) (((-850) (-850)) NIL (|has| $ (-6 -4229)))) (-2157 (($ $ (-708)) NIL) (($ $) 93)) (-2349 (((-850) (-522)) NIL (|has| $ (-6 -4229)))) (-1738 (($ $) 78)) (-2804 (($ $) 68)) (-2919 (($ $) 79)) (-2784 (($ $) 66)) (-2896 (($ $) 76)) (-2761 (($ $) 64)) (-1431 (((-354) $) 104) (((-202) $) 101) (((-821 (-354)) $) NIL) (((-498) $) 45)) (-2190 (((-792) $) 42) (($ (-522)) 60) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-522)) 60) (($ (-382 (-522))) NIL)) (-2323 (((-708)) NIL)) (-3025 (($ $) NIL)) (-3836 (((-850)) 32) (((-850) (-850)) NIL (|has| $ (-6 -4229)))) (-3355 (((-850)) 25)) (-1759 (($ $) 83)) (-2836 (($ $) 71) (($ $ $) 109)) (-3958 (((-108) $ $) NIL)) (-1745 (($ $) 81)) (-2815 (($ $) 69)) (-1776 (($ $) 86)) (-2860 (($ $) 74)) (-3924 (($ $) 84)) (-2872 (($ $) 72)) (-1768 (($ $) 85)) (-2848 (($ $) 73)) (-1752 (($ $) 82)) (-2825 (($ $) 70)) (-2241 (($ $) 117)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 36 T CONST)) (-3577 (($) 37 T CONST)) (-4149 (((-1068) $) 19) (((-1068) $ (-108)) 21) (((-1171) (-759) $) 22) (((-1171) (-759) $ (-108)) 23)) (-2018 (($ $) 96)) (-2213 (($ $ (-708)) NIL) (($ $) NIL)) (-2627 (($ $ $) 98)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 54)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 46)) (-1620 (($ $ $) 87) (($ $ (-522)) 55)) (-1612 (($ $) 47) (($ $ $) 49)) (-1602 (($ $ $) 48)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 58) (($ $ (-382 (-522))) 128) (($ $ $) 59)) (* (($ (-850) $) 31) (($ (-708) $) NIL) (($ (-522) $) 51) (($ $ $) 50) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
-(((-202) (-13 (-379) (-210) (-765) (-1106) (-563 (-498)) (-10 -8 (-15 -1620 ($ $ (-522))) (-15 ** ($ $ $)) (-15 -3131 ($)) (-15 -4151 ((-522) $)) (-15 -3248 ($ $)) (-15 -3167 ($ $)) (-15 -2836 ($ $ $)) (-15 -2018 ($ $)) (-15 -2627 ($ $ $)) (-15 -3956 ((-1068) (-1068))) (-15 -4202 ((-382 (-522)) $ (-708))) (-15 -4202 ((-382 (-522)) $ (-708) (-708)))))) (T -202))
-((** (*1 *1 *1 *1) (-5 *1 (-202))) (-1620 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-202)))) (-3131 (*1 *1) (-5 *1 (-202))) (-4151 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-202)))) (-3248 (*1 *1 *1) (-5 *1 (-202))) (-3167 (*1 *1 *1) (-5 *1 (-202))) (-2836 (*1 *1 *1 *1) (-5 *1 (-202))) (-2018 (*1 *1 *1) (-5 *1 (-202))) (-2627 (*1 *1 *1 *1) (-5 *1 (-202))) (-3956 (*1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-202)))) (-4202 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-202)))) (-4202 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-202)))))
-(-13 (-379) (-210) (-765) (-1106) (-563 (-498)) (-10 -8 (-15 -1620 ($ $ (-522))) (-15 ** ($ $ $)) (-15 -3131 ($)) (-15 -4151 ((-522) $)) (-15 -3248 ($ $)) (-15 -3167 ($ $)) (-15 -2836 ($ $ $)) (-15 -2018 ($ $)) (-15 -2627 ($ $ $)) (-15 -3956 ((-1068) (-1068))) (-15 -4202 ((-382 (-522)) $ (-708))) (-15 -4202 ((-382 (-522)) $ (-708) (-708)))))
-((-1967 (((-154 (-202)) (-708) (-154 (-202))) 11) (((-202) (-708) (-202)) 12)) (-2150 (((-154 (-202)) (-154 (-202))) 13) (((-202) (-202)) 14)) (-1890 (((-154 (-202)) (-154 (-202)) (-154 (-202))) 19) (((-202) (-202) (-202)) 22)) (-3236 (((-154 (-202)) (-154 (-202))) 25) (((-202) (-202)) 24)) (-1829 (((-154 (-202)) (-154 (-202)) (-154 (-202))) 43) (((-202) (-202) (-202)) 35)) (-2709 (((-154 (-202)) (-154 (-202)) (-154 (-202))) 48) (((-202) (-202) (-202)) 45)) (-2477 (((-154 (-202)) (-154 (-202)) (-154 (-202))) 15) (((-202) (-202) (-202)) 16)) (-4205 (((-154 (-202)) (-154 (-202)) (-154 (-202))) 17) (((-202) (-202) (-202)) 18)) (-1601 (((-154 (-202)) (-154 (-202))) 60) (((-202) (-202)) 59)) (-2607 (((-202) (-202)) 54) (((-154 (-202)) (-154 (-202))) 58)) (-2018 (((-154 (-202)) (-154 (-202))) 7) (((-202) (-202)) 9)) (-2627 (((-154 (-202)) (-154 (-202)) (-154 (-202))) 30) (((-202) (-202) (-202)) 26)))
-(((-203) (-10 -7 (-15 -2018 ((-202) (-202))) (-15 -2018 ((-154 (-202)) (-154 (-202)))) (-15 -2627 ((-202) (-202) (-202))) (-15 -2627 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -2150 ((-202) (-202))) (-15 -2150 ((-154 (-202)) (-154 (-202)))) (-15 -3236 ((-202) (-202))) (-15 -3236 ((-154 (-202)) (-154 (-202)))) (-15 -1967 ((-202) (-708) (-202))) (-15 -1967 ((-154 (-202)) (-708) (-154 (-202)))) (-15 -2477 ((-202) (-202) (-202))) (-15 -2477 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -1829 ((-202) (-202) (-202))) (-15 -1829 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -4205 ((-202) (-202) (-202))) (-15 -4205 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -2709 ((-202) (-202) (-202))) (-15 -2709 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -2607 ((-154 (-202)) (-154 (-202)))) (-15 -2607 ((-202) (-202))) (-15 -1601 ((-202) (-202))) (-15 -1601 ((-154 (-202)) (-154 (-202)))) (-15 -1890 ((-202) (-202) (-202))) (-15 -1890 ((-154 (-202)) (-154 (-202)) (-154 (-202)))))) (T -203))
-((-1890 (*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-1890 (*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-1601 (*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-1601 (*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-2607 (*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-2607 (*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-2709 (*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-2709 (*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-4205 (*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-4205 (*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-1829 (*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-1829 (*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-2477 (*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-2477 (*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-1967 (*1 *2 *3 *2) (-12 (-5 *2 (-154 (-202))) (-5 *3 (-708)) (-5 *1 (-203)))) (-1967 (*1 *2 *3 *2) (-12 (-5 *2 (-202)) (-5 *3 (-708)) (-5 *1 (-203)))) (-3236 (*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-3236 (*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-2150 (*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-2150 (*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-2627 (*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-2627 (*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-2018 (*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-2018 (*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))))
-(-10 -7 (-15 -2018 ((-202) (-202))) (-15 -2018 ((-154 (-202)) (-154 (-202)))) (-15 -2627 ((-202) (-202) (-202))) (-15 -2627 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -2150 ((-202) (-202))) (-15 -2150 ((-154 (-202)) (-154 (-202)))) (-15 -3236 ((-202) (-202))) (-15 -3236 ((-154 (-202)) (-154 (-202)))) (-15 -1967 ((-202) (-708) (-202))) (-15 -1967 ((-154 (-202)) (-708) (-154 (-202)))) (-15 -2477 ((-202) (-202) (-202))) (-15 -2477 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -1829 ((-202) (-202) (-202))) (-15 -1829 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -4205 ((-202) (-202) (-202))) (-15 -4205 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -2709 ((-202) (-202) (-202))) (-15 -2709 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -2607 ((-154 (-202)) (-154 (-202)))) (-15 -2607 ((-202) (-202))) (-15 -1601 ((-202) (-202))) (-15 -1601 ((-154 (-202)) (-154 (-202)))) (-15 -1890 ((-202) (-202) (-202))) (-15 -1890 ((-154 (-202)) (-154 (-202)) (-154 (-202)))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3483 (($ (-708) (-708)) NIL)) (-3437 (($ $ $) NIL)) (-2318 (($ (-1166 |#1|)) NIL) (($ $) NIL)) (-2469 (($ |#1| |#1| |#1|) 32)) (-2727 (((-108) $) NIL)) (-2444 (($ $ (-522) (-522)) NIL)) (-1327 (($ $ (-522) (-522)) NIL)) (-4183 (($ $ (-522) (-522) (-522) (-522)) NIL)) (-2212 (($ $) NIL)) (-2527 (((-108) $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-3478 (($ $ (-522) (-522) $) NIL)) (-2379 ((|#1| $ (-522) (-522) |#1|) NIL) (($ $ (-588 (-522)) (-588 (-522)) $) NIL)) (-2480 (($ $ (-522) (-1166 |#1|)) NIL)) (-1888 (($ $ (-522) (-1166 |#1|)) NIL)) (-3091 (($ |#1| |#1| |#1|) 31)) (-3022 (($ (-708) |#1|) NIL)) (-3175 (($) NIL T CONST)) (-2264 (($ $) NIL (|has| |#1| (-283)))) (-1860 (((-1166 |#1|) $ (-522)) NIL)) (-2923 (($ |#1|) 30)) (-1884 (($ |#1|) 29)) (-1319 (($ |#1|) 28)) (-3166 (((-708) $) NIL (|has| |#1| (-514)))) (-3854 ((|#1| $ (-522) (-522) |#1|) NIL)) (-3631 ((|#1| $ (-522) (-522)) NIL)) (-3837 (((-588 |#1|) $) NIL)) (-3799 (((-708) $) NIL (|has| |#1| (-514)))) (-2064 (((-588 (-1166 |#1|)) $) NIL (|has| |#1| (-514)))) (-1411 (((-708) $) NIL)) (-1811 (($ (-708) (-708) |#1|) NIL)) (-1422 (((-708) $) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-3081 ((|#1| $) NIL (|has| |#1| (-6 (-4240 "*"))))) (-2575 (((-522) $) NIL)) (-1885 (((-522) $) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3886 (((-522) $) NIL)) (-4132 (((-522) $) NIL)) (-1366 (($ (-588 (-588 |#1|))) 10)) (-3838 (($ (-1 |#1| |#1|) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3237 (((-588 (-588 |#1|)) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-2147 (((-3 $ "failed") $) NIL (|has| |#1| (-338)))) (-1659 (($) 11)) (-1572 (($ $ $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2602 (($ $ |#1|) NIL)) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ (-522) (-522)) NIL) ((|#1| $ (-522) (-522) |#1|) NIL) (($ $ (-588 (-522)) (-588 (-522))) NIL)) (-4077 (($ (-588 |#1|)) NIL) (($ (-588 $)) NIL)) (-1767 (((-108) $) NIL)) (-3206 ((|#1| $) NIL (|has| |#1| (-6 (-4240 "*"))))) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-3488 (((-1166 |#1|) $ (-522)) NIL)) (-2190 (($ (-1166 |#1|)) NIL) (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1697 (((-108) $) NIL)) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $ $) NIL) (($ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-522) $) NIL) (((-1166 |#1|) $ (-1166 |#1|)) 14) (((-1166 |#1|) (-1166 |#1|) $) NIL) (((-872 |#1|) $ (-872 |#1|)) 20)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-204 |#1|) (-13 (-626 |#1| (-1166 |#1|) (-1166 |#1|)) (-10 -8 (-15 * ((-872 |#1|) $ (-872 |#1|))) (-15 -1659 ($)) (-15 -1319 ($ |#1|)) (-15 -1884 ($ |#1|)) (-15 -2923 ($ |#1|)) (-15 -3091 ($ |#1| |#1| |#1|)) (-15 -2469 ($ |#1| |#1| |#1|)))) (-13 (-338) (-1106))) (T -204))
-((* (*1 *2 *1 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106))) (-5 *1 (-204 *3)))) (-1659 (*1 *1) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))) (-1319 (*1 *1 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))) (-1884 (*1 *1 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))) (-2923 (*1 *1 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))) (-3091 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))) (-2469 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))))
-(-13 (-626 |#1| (-1166 |#1|) (-1166 |#1|)) (-10 -8 (-15 * ((-872 |#1|) $ (-872 |#1|))) (-15 -1659 ($)) (-15 -1319 ($ |#1|)) (-15 -1884 ($ |#1|)) (-15 -2923 ($ |#1|)) (-15 -3091 ($ |#1| |#1| |#1|)) (-15 -2469 ($ |#1| |#1| |#1|))))
-((-2790 (($ (-1 (-108) |#2|) $) 16)) (-3859 (($ |#2| $) NIL) (($ (-1 (-108) |#2|) $) 24)) (-3990 (($) NIL) (($ (-588 |#2|)) 11)) (-1531 (((-108) $ $) 22)))
-(((-205 |#1| |#2|) (-10 -8 (-15 -2790 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3859 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3859 (|#1| |#2| |#1|)) (-15 -3990 (|#1| (-588 |#2|))) (-15 -3990 (|#1|)) (-15 -1531 ((-108) |#1| |#1|))) (-206 |#2|) (-1014)) (T -205))
-NIL
-(-10 -8 (-15 -2790 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3859 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3859 (|#1| |#2| |#1|)) (-15 -3990 (|#1| (-588 |#2|))) (-15 -3990 (|#1|)) (-15 -1531 ((-108) |#1| |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) 8)) (-2790 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-2333 (($ $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3859 (($ |#1| $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4238)))) (-1423 (($ |#1| $) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4238)))) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-2116 ((|#1| $) 39)) (-4095 (($ |#1| $) 40)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-4087 ((|#1| $) 41)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-3990 (($) 49) (($ (-588 |#1|)) 48)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-1431 (((-498) $) 59 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 50)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2795 (($ (-588 |#1|)) 42)) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2113 (((-1171) $) 36) (((-1171) $ (-850) (-850)) 38)) (-2683 (($ $ (-916)) 19) (((-222 (-1068)) $ (-1085)) 15)) (-1757 (((-1171) $) 34)) (-2217 (((-792) $) 31) (($ (-588 |#1|)) 8)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $ $) 27)) (-1661 (($ $ $) 22)))
+(((-192 |#1|) (-13 (-1014) (-10 -8 (-15 -2683 ($ $ (-916))) (-15 -2683 ((-222 (-1068)) $ (-1085))) (-15 -1661 ($ $ $)) (-15 -1672 ($ $ $)) (-15 -2217 ($ (-588 |#1|))) (-15 -1757 ((-1171) $)) (-15 -2113 ((-1171) $)) (-15 -2113 ((-1171) $ (-850) (-850))))) (-13 (-784) (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 ((-1171) $)) (-15 -2113 ((-1171) $))))) (T -192))
+((-2683 (*1 *1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-192 *3)) (-4 *3 (-13 (-784) (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 ((-1171) $)) (-15 -2113 ((-1171) $))))))) (-2683 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-222 (-1068))) (-5 *1 (-192 *4)) (-4 *4 (-13 (-784) (-10 -8 (-15 -2683 ((-1068) $ *3)) (-15 -1757 ((-1171) $)) (-15 -2113 ((-1171) $))))))) (-1661 (*1 *1 *1 *1) (-12 (-5 *1 (-192 *2)) (-4 *2 (-13 (-784) (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 ((-1171) $)) (-15 -2113 ((-1171) $))))))) (-1672 (*1 *1 *1 *1) (-12 (-5 *1 (-192 *2)) (-4 *2 (-13 (-784) (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 ((-1171) $)) (-15 -2113 ((-1171) $))))))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-13 (-784) (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 ((-1171) $)) (-15 -2113 ((-1171) $))))) (-5 *1 (-192 *3)))) (-1757 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-192 *3)) (-4 *3 (-13 (-784) (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 (*2 $)) (-15 -2113 (*2 $))))))) (-2113 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-192 *3)) (-4 *3 (-13 (-784) (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 (*2 $)) (-15 -2113 (*2 $))))))) (-2113 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1171)) (-5 *1 (-192 *4)) (-4 *4 (-13 (-784) (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 (*2 $)) (-15 -2113 (*2 $))))))))
+(-13 (-1014) (-10 -8 (-15 -2683 ($ $ (-916))) (-15 -2683 ((-222 (-1068)) $ (-1085))) (-15 -1661 ($ $ $)) (-15 -1672 ($ $ $)) (-15 -2217 ($ (-588 |#1|))) (-15 -1757 ((-1171) $)) (-15 -2113 ((-1171) $)) (-15 -2113 ((-1171) $ (-850) (-850)))))
+((-1339 ((|#2| |#4| (-1 |#2| |#2|)) 46)))
+(((-193 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1339 (|#2| |#4| (-1 |#2| |#2|)))) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|)) (T -193))
+((-1339 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-338)) (-4 *6 (-1142 (-382 *2))) (-4 *2 (-1142 *5)) (-5 *1 (-193 *5 *2 *6 *3)) (-4 *3 (-317 *5 *2 *6)))))
+(-10 -7 (-15 -1339 (|#2| |#4| (-1 |#2| |#2|))))
+((-2570 ((|#2| |#2| (-708) |#2|) 41)) (-1788 ((|#2| |#2| (-708) |#2|) 37)) (-2665 (((-588 |#2|) (-588 (-2 (|:| |deg| (-708)) (|:| -2592 |#2|)))) 57)) (-3209 (((-588 (-2 (|:| |deg| (-708)) (|:| -2592 |#2|))) |#2|) 52)) (-3508 (((-108) |#2|) 49)) (-3903 (((-393 |#2|) |#2|) 76)) (-2006 (((-393 |#2|) |#2|) 75)) (-2433 ((|#2| |#2| (-708) |#2|) 35)) (-2543 (((-2 (|:| |cont| |#1|) (|:| -4045 (-588 (-2 (|:| |irr| |#2|) (|:| -4160 (-522)))))) |#2| (-108)) 68)))
+(((-194 |#1| |#2|) (-10 -7 (-15 -2006 ((-393 |#2|) |#2|)) (-15 -3903 ((-393 |#2|) |#2|)) (-15 -2543 ((-2 (|:| |cont| |#1|) (|:| -4045 (-588 (-2 (|:| |irr| |#2|) (|:| -4160 (-522)))))) |#2| (-108))) (-15 -3209 ((-588 (-2 (|:| |deg| (-708)) (|:| -2592 |#2|))) |#2|)) (-15 -2665 ((-588 |#2|) (-588 (-2 (|:| |deg| (-708)) (|:| -2592 |#2|))))) (-15 -2433 (|#2| |#2| (-708) |#2|)) (-15 -1788 (|#2| |#2| (-708) |#2|)) (-15 -2570 (|#2| |#2| (-708) |#2|)) (-15 -3508 ((-108) |#2|))) (-324) (-1142 |#1|)) (T -194))
+((-3508 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-108)) (-5 *1 (-194 *4 *3)) (-4 *3 (-1142 *4)))) (-2570 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-194 *4 *2)) (-4 *2 (-1142 *4)))) (-1788 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-194 *4 *2)) (-4 *2 (-1142 *4)))) (-2433 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-194 *4 *2)) (-4 *2 (-1142 *4)))) (-2665 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| |deg| (-708)) (|:| -2592 *5)))) (-4 *5 (-1142 *4)) (-4 *4 (-324)) (-5 *2 (-588 *5)) (-5 *1 (-194 *4 *5)))) (-3209 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-588 (-2 (|:| |deg| (-708)) (|:| -2592 *3)))) (-5 *1 (-194 *4 *3)) (-4 *3 (-1142 *4)))) (-2543 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-324)) (-5 *2 (-2 (|:| |cont| *5) (|:| -4045 (-588 (-2 (|:| |irr| *3) (|:| -4160 (-522))))))) (-5 *1 (-194 *5 *3)) (-4 *3 (-1142 *5)))) (-3903 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-393 *3)) (-5 *1 (-194 *4 *3)) (-4 *3 (-1142 *4)))) (-2006 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-393 *3)) (-5 *1 (-194 *4 *3)) (-4 *3 (-1142 *4)))))
+(-10 -7 (-15 -2006 ((-393 |#2|) |#2|)) (-15 -3903 ((-393 |#2|) |#2|)) (-15 -2543 ((-2 (|:| |cont| |#1|) (|:| -4045 (-588 (-2 (|:| |irr| |#2|) (|:| -4160 (-522)))))) |#2| (-108))) (-15 -3209 ((-588 (-2 (|:| |deg| (-708)) (|:| -2592 |#2|))) |#2|)) (-15 -2665 ((-588 |#2|) (-588 (-2 (|:| |deg| (-708)) (|:| -2592 |#2|))))) (-15 -2433 (|#2| |#2| (-708) |#2|)) (-15 -1788 (|#2| |#2| (-708) |#2|)) (-15 -2570 (|#2| |#2| (-708) |#2|)) (-15 -3508 ((-108) |#2|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3049 (((-522) $) NIL (|has| (-522) (-283)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL (|has| (-522) (-757)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| (-522) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-522) (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| (-522) (-962 (-522))))) (-1478 (((-522) $) NIL) (((-1085) $) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-522) (-962 (-522)))) (((-522) $) NIL (|has| (-522) (-962 (-522))))) (-2333 (($ $ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| (-522) (-507)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3603 (((-108) $) NIL (|has| (-522) (-757)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-522) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-522) (-815 (-354))))) (-2859 (((-108) $) NIL)) (-1558 (($ $) NIL)) (-2947 (((-522) $) NIL)) (-4208 (((-3 $ "failed") $) NIL (|has| (-522) (-1061)))) (-3740 (((-108) $) NIL (|has| (-522) (-757)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1308 (($ $ $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| (-522) (-784)))) (-3810 (($ (-1 (-522) (-522)) $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| (-522) (-1061)) CONST)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4194 (($ $) NIL (|has| (-522) (-283))) (((-382 (-522)) $) NIL)) (-3592 (((-522) $) NIL (|has| (-522) (-507)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2330 (($ $ (-588 (-522)) (-588 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-522) (-522)) NIL (|has| (-522) (-285 (-522)))) (($ $ (-270 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-270 (-522)))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-1085)) (-588 (-522))) NIL (|has| (-522) (-483 (-1085) (-522)))) (($ $ (-1085) (-522)) NIL (|has| (-522) (-483 (-1085) (-522))))) (-4031 (((-708) $) NIL)) (-2683 (($ $ (-522)) NIL (|has| (-522) (-262 (-522) (-522))))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2731 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-2762 (($ $) NIL)) (-2959 (((-522) $) NIL)) (-2584 (($ (-382 (-522))) 8)) (-3873 (((-821 (-522)) $) NIL (|has| (-522) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-522) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-522) (-563 (-498)))) (((-354) $) NIL (|has| (-522) (-947))) (((-202) $) NIL (|has| (-522) (-947)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-522) (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) 7) (($ (-522)) NIL) (($ (-1085)) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL) (((-930 10) $) 9)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| (-522) (-838))) (|has| (-522) (-133))))) (-2742 (((-708)) NIL)) (-1379 (((-522) $) NIL (|has| (-522) (-507)))) (-1407 (((-108) $ $) NIL)) (-4126 (($ $) NIL (|has| (-522) (-757)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-1623 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1597 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1587 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1682 (($ $ $) NIL) (($ (-522) (-522)) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-522) $) NIL) (($ $ (-522)) NIL)))
+(((-195) (-13 (-919 (-522)) (-10 -8 (-15 -2217 ((-382 (-522)) $)) (-15 -2217 ((-930 10) $)) (-15 -4194 ((-382 (-522)) $)) (-15 -2584 ($ (-382 (-522))))))) (T -195))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-195)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-930 10)) (-5 *1 (-195)))) (-4194 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-195)))) (-2584 (*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-195)))))
+(-13 (-919 (-522)) (-10 -8 (-15 -2217 ((-382 (-522)) $)) (-15 -2217 ((-930 10) $)) (-15 -4194 ((-382 (-522)) $)) (-15 -2584 ($ (-382 (-522))))))
+((-2611 (((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1007 (-777 |#2|)) (-1068)) 27) (((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1007 (-777 |#2|))) 23)) (-2453 (((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085) (-777 |#2|) (-777 |#2|) (-108)) 16)))
+(((-196 |#1| |#2|) (-10 -7 (-15 -2611 ((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1007 (-777 |#2|)))) (-15 -2611 ((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1007 (-777 |#2|)) (-1068))) (-15 -2453 ((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085) (-777 |#2|) (-777 |#2|) (-108)))) (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-887) (-29 |#1|))) (T -196))
+((-2453 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1085)) (-5 *6 (-108)) (-4 *7 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-4 *3 (-13 (-1106) (-887) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-777 *3)) (|:| |f2| (-588 (-777 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-196 *7 *3)) (-5 *5 (-777 *3)))) (-2611 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1007 (-777 *3))) (-5 *5 (-1068)) (-4 *3 (-13 (-1106) (-887) (-29 *6))) (-4 *6 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |f1| (-777 *3)) (|:| |f2| (-588 (-777 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-196 *6 *3)))) (-2611 (*1 *2 *3 *4) (-12 (-5 *4 (-1007 (-777 *3))) (-4 *3 (-13 (-1106) (-887) (-29 *5))) (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |f1| (-777 *3)) (|:| |f2| (-588 (-777 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-196 *5 *3)))))
+(-10 -7 (-15 -2611 ((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1007 (-777 |#2|)))) (-15 -2611 ((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1007 (-777 |#2|)) (-1068))) (-15 -2453 ((-3 (|:| |f1| (-777 |#2|)) (|:| |f2| (-588 (-777 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085) (-777 |#2|) (-777 |#2|) (-108))))
+((-2611 (((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-382 (-881 |#1|)))) (-1068)) 44) (((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-382 (-881 |#1|))))) 41) (((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-291 |#1|))) (-1068)) 45) (((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-291 |#1|)))) 17)))
+(((-197 |#1|) (-10 -7 (-15 -2611 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-291 |#1|))))) (-15 -2611 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-291 |#1|))) (-1068))) (-15 -2611 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-382 (-881 |#1|)))))) (-15 -2611 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-382 (-881 |#1|)))) (-1068)))) (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (T -197))
+((-2611 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1007 (-777 (-382 (-881 *6))))) (-5 *5 (-1068)) (-5 *3 (-382 (-881 *6))) (-4 *6 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |f1| (-777 (-291 *6))) (|:| |f2| (-588 (-777 (-291 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-197 *6)))) (-2611 (*1 *2 *3 *4) (-12 (-5 *4 (-1007 (-777 (-382 (-881 *5))))) (-5 *3 (-382 (-881 *5))) (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |f1| (-777 (-291 *5))) (|:| |f2| (-588 (-777 (-291 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-197 *5)))) (-2611 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-382 (-881 *6))) (-5 *4 (-1007 (-777 (-291 *6)))) (-5 *5 (-1068)) (-4 *6 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |f1| (-777 (-291 *6))) (|:| |f2| (-588 (-777 (-291 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-197 *6)))) (-2611 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1007 (-777 (-291 *5)))) (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |f1| (-777 (-291 *5))) (|:| |f2| (-588 (-777 (-291 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-197 *5)))))
+(-10 -7 (-15 -2611 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-291 |#1|))))) (-15 -2611 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-291 |#1|))) (-1068))) (-15 -2611 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-382 (-881 |#1|)))))) (-15 -2611 ((-3 (|:| |f1| (-777 (-291 |#1|))) (|:| |f2| (-588 (-777 (-291 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-382 (-881 |#1|)) (-1007 (-777 (-382 (-881 |#1|)))) (-1068))))
+((-2153 (((-2 (|:| -1976 (-1081 |#1|)) (|:| |deg| (-850))) (-1081 |#1|)) 21)) (-1663 (((-588 (-291 |#2|)) (-291 |#2|) (-850)) 43)))
+(((-198 |#1| |#2|) (-10 -7 (-15 -2153 ((-2 (|:| -1976 (-1081 |#1|)) (|:| |deg| (-850))) (-1081 |#1|))) (-15 -1663 ((-588 (-291 |#2|)) (-291 |#2|) (-850)))) (-971) (-13 (-514) (-784))) (T -198))
+((-1663 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-4 *6 (-13 (-514) (-784))) (-5 *2 (-588 (-291 *6))) (-5 *1 (-198 *5 *6)) (-5 *3 (-291 *6)) (-4 *5 (-971)))) (-2153 (*1 *2 *3) (-12 (-4 *4 (-971)) (-5 *2 (-2 (|:| -1976 (-1081 *4)) (|:| |deg| (-850)))) (-5 *1 (-198 *4 *5)) (-5 *3 (-1081 *4)) (-4 *5 (-13 (-514) (-784))))))
+(-10 -7 (-15 -2153 ((-2 (|:| -1976 (-1081 |#1|)) (|:| |deg| (-850))) (-1081 |#1|))) (-15 -1663 ((-588 (-291 |#2|)) (-291 |#2|) (-850))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2892 ((|#1| $) NIL)) (-1322 ((|#1| $) 25)) (-2717 (((-108) $ (-708)) NIL)) (-3367 (($) NIL T CONST)) (-2876 (($ $) NIL)) (-2465 (($ $) 31)) (-2622 ((|#1| |#1| $) NIL)) (-2956 ((|#1| $) NIL)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-4030 (((-708) $) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1431 ((|#1| $) NIL)) (-1406 ((|#1| |#1| $) 28)) (-1930 ((|#1| |#1| $) 30)) (-3365 (($ |#1| $) NIL)) (-4179 (((-708) $) 27)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-4056 ((|#1| $) NIL)) (-1844 ((|#1| $) 26)) (-3064 ((|#1| $) 24)) (-3295 ((|#1| $) NIL)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3036 ((|#1| |#1| $) NIL)) (-3494 (((-108) $) 9)) (-3298 (($) NIL)) (-1402 ((|#1| $) NIL)) (-3464 (($) NIL) (($ (-588 |#1|)) 16)) (-3735 (((-708) $) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-2049 ((|#1| $) 13)) (-2501 (($ (-588 |#1|)) NIL)) (-2653 ((|#1| $) NIL)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-199 |#1|) (-13 (-230 |#1|) (-10 -8 (-15 -3464 ($ (-588 |#1|))))) (-1014)) (T -199))
+((-3464 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-199 *3)))))
+(-13 (-230 |#1|) (-10 -8 (-15 -3464 ($ (-588 |#1|)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-1863 (($ (-291 |#1|)) 23)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-1608 (((-108) $) NIL)) (-3700 (((-3 (-291 |#1|) "failed") $) NIL)) (-1478 (((-291 |#1|) $) NIL)) (-3241 (($ $) 31)) (-3920 (((-3 $ "failed") $) NIL)) (-2859 (((-108) $) NIL)) (-3810 (($ (-1 (-291 |#1|) (-291 |#1|)) $) NIL)) (-3224 (((-291 |#1|) $) NIL)) (-2778 (($ $) 30)) (-2311 (((-1068) $) NIL)) (-3532 (((-108) $) NIL)) (-4174 (((-1032) $) NIL)) (-1368 (($ (-708)) NIL)) (-2750 (($ $) 32)) (-2487 (((-522) $) NIL)) (-2217 (((-792) $) 57) (($ (-522)) NIL) (($ (-291 |#1|)) NIL)) (-1643 (((-291 |#1|) $ $) NIL)) (-2742 (((-708)) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 25 T CONST)) (-3709 (($) 50 T CONST)) (-1562 (((-108) $ $) 28)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 19)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 24) (($ (-291 |#1|) $) 18)))
+(((-200 |#1| |#2|) (-13 (-566 (-291 |#1|)) (-962 (-291 |#1|)) (-10 -8 (-15 -3224 ((-291 |#1|) $)) (-15 -2778 ($ $)) (-15 -3241 ($ $)) (-15 -1643 ((-291 |#1|) $ $)) (-15 -1368 ($ (-708))) (-15 -3532 ((-108) $)) (-15 -1608 ((-108) $)) (-15 -2487 ((-522) $)) (-15 -3810 ($ (-1 (-291 |#1|) (-291 |#1|)) $)) (-15 -1863 ($ (-291 |#1|))) (-15 -2750 ($ $)))) (-13 (-971) (-784)) (-588 (-1085))) (T -200))
+((-3224 (*1 *2 *1) (-12 (-5 *2 (-291 *3)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085))))) (-2778 (*1 *1 *1) (-12 (-5 *1 (-200 *2 *3)) (-4 *2 (-13 (-971) (-784))) (-14 *3 (-588 (-1085))))) (-3241 (*1 *1 *1) (-12 (-5 *1 (-200 *2 *3)) (-4 *2 (-13 (-971) (-784))) (-14 *3 (-588 (-1085))))) (-1643 (*1 *2 *1 *1) (-12 (-5 *2 (-291 *3)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085))))) (-1368 (*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085))))) (-3532 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085))))) (-1608 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085))))) (-2487 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085))))) (-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-291 *3) (-291 *3))) (-4 *3 (-13 (-971) (-784))) (-5 *1 (-200 *3 *4)) (-14 *4 (-588 (-1085))))) (-1863 (*1 *1 *2) (-12 (-5 *2 (-291 *3)) (-4 *3 (-13 (-971) (-784))) (-5 *1 (-200 *3 *4)) (-14 *4 (-588 (-1085))))) (-2750 (*1 *1 *1) (-12 (-5 *1 (-200 *2 *3)) (-4 *2 (-13 (-971) (-784))) (-14 *3 (-588 (-1085))))))
+(-13 (-566 (-291 |#1|)) (-962 (-291 |#1|)) (-10 -8 (-15 -3224 ((-291 |#1|) $)) (-15 -2778 ($ $)) (-15 -3241 ($ $)) (-15 -1643 ((-291 |#1|) $ $)) (-15 -1368 ($ (-708))) (-15 -3532 ((-108) $)) (-15 -1608 ((-108) $)) (-15 -2487 ((-522) $)) (-15 -3810 ($ (-1 (-291 |#1|) (-291 |#1|)) $)) (-15 -1863 ($ (-291 |#1|))) (-15 -2750 ($ $))))
+((-2314 (((-108) (-1068)) 22)) (-2833 (((-3 (-777 |#2|) "failed") (-561 |#2|) |#2| (-777 |#2|) (-777 |#2|) (-108)) 32)) (-2375 (((-3 (-108) "failed") (-1081 |#2|) (-777 |#2|) (-777 |#2|) (-108)) 73) (((-3 (-108) "failed") (-881 |#1|) (-1085) (-777 |#2|) (-777 |#2|) (-108)) 74)))
+(((-201 |#1| |#2|) (-10 -7 (-15 -2314 ((-108) (-1068))) (-15 -2833 ((-3 (-777 |#2|) "failed") (-561 |#2|) |#2| (-777 |#2|) (-777 |#2|) (-108))) (-15 -2375 ((-3 (-108) "failed") (-881 |#1|) (-1085) (-777 |#2|) (-777 |#2|) (-108))) (-15 -2375 ((-3 (-108) "failed") (-1081 |#2|) (-777 |#2|) (-777 |#2|) (-108)))) (-13 (-426) (-784) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-29 |#1|))) (T -201))
+((-2375 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-108)) (-5 *3 (-1081 *6)) (-5 *4 (-777 *6)) (-4 *6 (-13 (-1106) (-29 *5))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-201 *5 *6)))) (-2375 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-108)) (-5 *3 (-881 *6)) (-5 *4 (-1085)) (-5 *5 (-777 *7)) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-4 *7 (-13 (-1106) (-29 *6))) (-5 *1 (-201 *6 *7)))) (-2833 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-777 *4)) (-5 *3 (-561 *4)) (-5 *5 (-108)) (-4 *4 (-13 (-1106) (-29 *6))) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-201 *6 *4)))) (-2314 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-108)) (-5 *1 (-201 *4 *5)) (-4 *5 (-13 (-1106) (-29 *4))))))
+(-10 -7 (-15 -2314 ((-108) (-1068))) (-15 -2833 ((-3 (-777 |#2|) "failed") (-561 |#2|) |#2| (-777 |#2|) (-777 |#2|) (-108))) (-15 -2375 ((-3 (-108) "failed") (-881 |#1|) (-1085) (-777 |#2|) (-777 |#2|) (-108))) (-15 -2375 ((-3 (-108) "failed") (-1081 |#2|) (-777 |#2|) (-777 |#2|) (-108))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 89)) (-3049 (((-522) $) 99)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-3495 (($ $) NIL)) (-3044 (($ $) 77)) (-2923 (($ $) 65)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2016 (($ $) 56)) (-2805 (((-108) $ $) NIL)) (-3023 (($ $) 75)) (-2906 (($ $) 63)) (-3355 (((-522) $) 116)) (-3066 (($ $) 80)) (-2936 (($ $) 67)) (-3367 (($) NIL T CONST)) (-1943 (($ $) NIL)) (-3700 (((-3 (-522) "failed") $) 115) (((-3 (-382 (-522)) "failed") $) 112)) (-1478 (((-522) $) 113) (((-382 (-522)) $) 110)) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) 92)) (-2012 (((-382 (-522)) $ (-708)) 108) (((-382 (-522)) $ (-708) (-708)) 107)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3684 (((-850)) 29) (((-850) (-850)) NIL (|has| $ (-6 -4229)))) (-3603 (((-108) $) NIL)) (-2980 (($) 39)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL)) (-3872 (((-522) $) 35)) (-2859 (((-108) $) NIL)) (-1811 (($ $ (-522)) NIL)) (-1269 (($ $) NIL)) (-3740 (((-108) $) 88)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1308 (($ $ $) 53) (($) 34 (-12 (-2473 (|has| $ (-6 -4221))) (-2473 (|has| $ (-6 -4229)))))) (-2524 (($ $ $) 52) (($) 33 (-12 (-2473 (|has| $ (-6 -4221))) (-2473 (|has| $ (-6 -4229)))))) (-3451 (((-522) $) 27)) (-1686 (($ $) 30)) (-3297 (($ $) 57)) (-1238 (($ $) 62)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-1494 (((-850) (-522)) NIL (|has| $ (-6 -4229)))) (-4174 (((-1032) $) NIL) (((-522) $) 90)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4194 (($ $) NIL)) (-3592 (($ $) NIL)) (-3173 (($ (-522) (-522)) NIL) (($ (-522) (-522) (-850)) 100)) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3858 (((-522) $) 28)) (-3061 (($) 38)) (-3357 (($ $) 61)) (-4031 (((-708) $) NIL)) (-1396 (((-1068) (-1068)) 8)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-3353 (((-850)) NIL) (((-850) (-850)) NIL (|has| $ (-6 -4229)))) (-2731 (($ $ (-708)) NIL) (($ $) 93)) (-1688 (((-850) (-522)) NIL (|has| $ (-6 -4229)))) (-1831 (($ $) 78)) (-2946 (($ $) 68)) (-3054 (($ $) 79)) (-2928 (($ $) 66)) (-3035 (($ $) 76)) (-2915 (($ $) 64)) (-3873 (((-354) $) 104) (((-202) $) 101) (((-821 (-354)) $) NIL) (((-498) $) 45)) (-2217 (((-792) $) 42) (($ (-522)) 60) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-522)) 60) (($ (-382 (-522))) NIL)) (-2742 (((-708)) NIL)) (-1379 (($ $) NIL)) (-2780 (((-850)) 32) (((-850) (-850)) NIL (|has| $ (-6 -4229)))) (-1897 (((-850)) 25)) (-1856 (($ $) 83)) (-2976 (($ $) 71) (($ $ $) 109)) (-1407 (((-108) $ $) NIL)) (-1839 (($ $) 81)) (-2957 (($ $) 69)) (-1873 (($ $) 86)) (-3001 (($ $) 74)) (-2476 (($ $) 84)) (-3011 (($ $) 72)) (-1864 (($ $) 85)) (-2989 (($ $) 73)) (-1849 (($ $) 82)) (-2966 (($ $) 70)) (-4126 (($ $) 117)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 36 T CONST)) (-3709 (($) 37 T CONST)) (-2810 (((-1068) $) 19) (((-1068) $ (-108)) 21) (((-1171) (-759) $) 22) (((-1171) (-759) $ (-108)) 23)) (-2245 (($ $) 96)) (-2252 (($ $ (-708)) NIL) (($ $) NIL)) (-2288 (($ $ $) 98)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 54)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 46)) (-1682 (($ $ $) 87) (($ $ (-522)) 55)) (-1672 (($ $) 47) (($ $ $) 49)) (-1661 (($ $ $) 48)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 58) (($ $ (-382 (-522))) 128) (($ $ $) 59)) (* (($ (-850) $) 31) (($ (-708) $) NIL) (($ (-522) $) 51) (($ $ $) 50) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
+(((-202) (-13 (-379) (-210) (-765) (-1106) (-563 (-498)) (-10 -8 (-15 -1682 ($ $ (-522))) (-15 ** ($ $ $)) (-15 -3061 ($)) (-15 -4174 ((-522) $)) (-15 -1686 ($ $)) (-15 -3297 ($ $)) (-15 -2976 ($ $ $)) (-15 -2245 ($ $)) (-15 -2288 ($ $ $)) (-15 -1396 ((-1068) (-1068))) (-15 -2012 ((-382 (-522)) $ (-708))) (-15 -2012 ((-382 (-522)) $ (-708) (-708)))))) (T -202))
+((** (*1 *1 *1 *1) (-5 *1 (-202))) (-1682 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-202)))) (-3061 (*1 *1) (-5 *1 (-202))) (-4174 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-202)))) (-1686 (*1 *1 *1) (-5 *1 (-202))) (-3297 (*1 *1 *1) (-5 *1 (-202))) (-2976 (*1 *1 *1 *1) (-5 *1 (-202))) (-2245 (*1 *1 *1) (-5 *1 (-202))) (-2288 (*1 *1 *1 *1) (-5 *1 (-202))) (-1396 (*1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-202)))) (-2012 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-202)))) (-2012 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-202)))))
+(-13 (-379) (-210) (-765) (-1106) (-563 (-498)) (-10 -8 (-15 -1682 ($ $ (-522))) (-15 ** ($ $ $)) (-15 -3061 ($)) (-15 -4174 ((-522) $)) (-15 -1686 ($ $)) (-15 -3297 ($ $)) (-15 -2976 ($ $ $)) (-15 -2245 ($ $)) (-15 -2288 ($ $ $)) (-15 -1396 ((-1068) (-1068))) (-15 -2012 ((-382 (-522)) $ (-708))) (-15 -2012 ((-382 (-522)) $ (-708) (-708)))))
+((-3056 (((-154 (-202)) (-708) (-154 (-202))) 11) (((-202) (-708) (-202)) 12)) (-3100 (((-154 (-202)) (-154 (-202))) 13) (((-202) (-202)) 14)) (-4077 (((-154 (-202)) (-154 (-202)) (-154 (-202))) 19) (((-202) (-202) (-202)) 22)) (-2852 (((-154 (-202)) (-154 (-202))) 25) (((-202) (-202)) 24)) (-2248 (((-154 (-202)) (-154 (-202)) (-154 (-202))) 43) (((-202) (-202) (-202)) 35)) (-1551 (((-154 (-202)) (-154 (-202)) (-154 (-202))) 48) (((-202) (-202) (-202)) 45)) (-3047 (((-154 (-202)) (-154 (-202)) (-154 (-202))) 15) (((-202) (-202) (-202)) 16)) (-2039 (((-154 (-202)) (-154 (-202)) (-154 (-202))) 17) (((-202) (-202) (-202)) 18)) (-3799 (((-154 (-202)) (-154 (-202))) 60) (((-202) (-202)) 59)) (-2022 (((-202) (-202)) 54) (((-154 (-202)) (-154 (-202))) 58)) (-2245 (((-154 (-202)) (-154 (-202))) 7) (((-202) (-202)) 9)) (-2288 (((-154 (-202)) (-154 (-202)) (-154 (-202))) 30) (((-202) (-202) (-202)) 26)))
+(((-203) (-10 -7 (-15 -2245 ((-202) (-202))) (-15 -2245 ((-154 (-202)) (-154 (-202)))) (-15 -2288 ((-202) (-202) (-202))) (-15 -2288 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -3100 ((-202) (-202))) (-15 -3100 ((-154 (-202)) (-154 (-202)))) (-15 -2852 ((-202) (-202))) (-15 -2852 ((-154 (-202)) (-154 (-202)))) (-15 -3056 ((-202) (-708) (-202))) (-15 -3056 ((-154 (-202)) (-708) (-154 (-202)))) (-15 -3047 ((-202) (-202) (-202))) (-15 -3047 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -2248 ((-202) (-202) (-202))) (-15 -2248 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -2039 ((-202) (-202) (-202))) (-15 -2039 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -1551 ((-202) (-202) (-202))) (-15 -1551 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -2022 ((-154 (-202)) (-154 (-202)))) (-15 -2022 ((-202) (-202))) (-15 -3799 ((-202) (-202))) (-15 -3799 ((-154 (-202)) (-154 (-202)))) (-15 -4077 ((-202) (-202) (-202))) (-15 -4077 ((-154 (-202)) (-154 (-202)) (-154 (-202)))))) (T -203))
+((-4077 (*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-4077 (*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-3799 (*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-3799 (*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-2022 (*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-2022 (*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-1551 (*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-1551 (*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-2039 (*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-2039 (*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-2248 (*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-2248 (*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-3047 (*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-3047 (*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-3056 (*1 *2 *3 *2) (-12 (-5 *2 (-154 (-202))) (-5 *3 (-708)) (-5 *1 (-203)))) (-3056 (*1 *2 *3 *2) (-12 (-5 *2 (-202)) (-5 *3 (-708)) (-5 *1 (-203)))) (-2852 (*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-2852 (*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-3100 (*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-3100 (*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-2288 (*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-2288 (*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))) (-2245 (*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))) (-2245 (*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203)))))
+(-10 -7 (-15 -2245 ((-202) (-202))) (-15 -2245 ((-154 (-202)) (-154 (-202)))) (-15 -2288 ((-202) (-202) (-202))) (-15 -2288 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -3100 ((-202) (-202))) (-15 -3100 ((-154 (-202)) (-154 (-202)))) (-15 -2852 ((-202) (-202))) (-15 -2852 ((-154 (-202)) (-154 (-202)))) (-15 -3056 ((-202) (-708) (-202))) (-15 -3056 ((-154 (-202)) (-708) (-154 (-202)))) (-15 -3047 ((-202) (-202) (-202))) (-15 -3047 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -2248 ((-202) (-202) (-202))) (-15 -2248 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -2039 ((-202) (-202) (-202))) (-15 -2039 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -1551 ((-202) (-202) (-202))) (-15 -1551 ((-154 (-202)) (-154 (-202)) (-154 (-202)))) (-15 -2022 ((-154 (-202)) (-154 (-202)))) (-15 -2022 ((-202) (-202))) (-15 -3799 ((-202) (-202))) (-15 -3799 ((-154 (-202)) (-154 (-202)))) (-15 -4077 ((-202) (-202) (-202))) (-15 -4077 ((-154 (-202)) (-154 (-202)) (-154 (-202)))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1785 (($ (-708) (-708)) NIL)) (-3021 (($ $ $) NIL)) (-2682 (($ (-1166 |#1|)) NIL) (($ $) NIL)) (-2555 (($ |#1| |#1| |#1|) 32)) (-3455 (((-108) $) NIL)) (-3637 (($ $ (-522) (-522)) NIL)) (-1957 (($ $ (-522) (-522)) NIL)) (-1834 (($ $ (-522) (-522) (-522) (-522)) NIL)) (-2449 (($ $) NIL)) (-2208 (((-108) $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-3352 (($ $ (-522) (-522) $) NIL)) (-2437 ((|#1| $ (-522) (-522) |#1|) NIL) (($ $ (-588 (-522)) (-588 (-522)) $) NIL)) (-3074 (($ $ (-522) (-1166 |#1|)) NIL)) (-4060 (($ $ (-522) (-1166 |#1|)) NIL)) (-3808 (($ |#1| |#1| |#1|) 31)) (-1348 (($ (-708) |#1|) NIL)) (-3367 (($) NIL T CONST)) (-2091 (($ $) NIL (|has| |#1| (-283)))) (-2635 (((-1166 |#1|) $ (-522)) NIL)) (-3544 (($ |#1|) 30)) (-4033 (($ |#1|) 29)) (-1888 (($ |#1|) 28)) (-1692 (((-708) $) NIL (|has| |#1| (-514)))) (-2411 ((|#1| $ (-522) (-522) |#1|) NIL)) (-2186 ((|#1| $ (-522) (-522)) NIL)) (-2395 (((-588 |#1|) $) NIL)) (-2336 (((-708) $) NIL (|has| |#1| (-514)))) (-2819 (((-588 (-1166 |#1|)) $) NIL (|has| |#1| (-514)))) (-2949 (((-708) $) NIL)) (-1893 (($ (-708) (-708) |#1|) NIL)) (-2960 (((-708) $) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3721 ((|#1| $) NIL (|has| |#1| (-6 (-4240 "*"))))) (-2604 (((-522) $) NIL)) (-4042 (((-522) $) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1925 (((-522) $) NIL)) (-2595 (((-522) $) NIL)) (-1347 (($ (-588 (-588 |#1|))) 10)) (-2397 (($ (-1 |#1| |#1|) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2862 (((-588 (-588 |#1|)) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-3073 (((-3 $ "failed") $) NIL (|has| |#1| (-338)))) (-2505 (($) 11)) (-3594 (($ $ $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1972 (($ $ |#1|) NIL)) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ (-522) (-522)) NIL) ((|#1| $ (-522) (-522) |#1|) NIL) (($ $ (-588 (-522)) (-588 (-522))) NIL)) (-3215 (($ (-588 |#1|)) NIL) (($ (-588 $)) NIL)) (-3498 (((-108) $) NIL)) (-2500 ((|#1| $) NIL (|has| |#1| (-6 (-4240 "*"))))) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2223 (((-1166 |#1|) $ (-522)) NIL)) (-2217 (($ (-1166 |#1|)) NIL) (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-4047 (((-108) $) NIL)) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $ $) NIL) (($ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-522) $) NIL) (((-1166 |#1|) $ (-1166 |#1|)) 14) (((-1166 |#1|) (-1166 |#1|) $) NIL) (((-872 |#1|) $ (-872 |#1|)) 20)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-204 |#1|) (-13 (-626 |#1| (-1166 |#1|) (-1166 |#1|)) (-10 -8 (-15 * ((-872 |#1|) $ (-872 |#1|))) (-15 -2505 ($)) (-15 -1888 ($ |#1|)) (-15 -4033 ($ |#1|)) (-15 -3544 ($ |#1|)) (-15 -3808 ($ |#1| |#1| |#1|)) (-15 -2555 ($ |#1| |#1| |#1|)))) (-13 (-338) (-1106))) (T -204))
+((* (*1 *2 *1 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106))) (-5 *1 (-204 *3)))) (-2505 (*1 *1) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))) (-1888 (*1 *1 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))) (-4033 (*1 *1 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))) (-3544 (*1 *1 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))) (-3808 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))) (-2555 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))))
+(-13 (-626 |#1| (-1166 |#1|) (-1166 |#1|)) (-10 -8 (-15 * ((-872 |#1|) $ (-872 |#1|))) (-15 -2505 ($)) (-15 -1888 ($ |#1|)) (-15 -4033 ($ |#1|)) (-15 -3544 ($ |#1|)) (-15 -3808 ($ |#1| |#1| |#1|)) (-15 -2555 ($ |#1| |#1| |#1|))))
+((-1213 (($ (-1 (-108) |#2|) $) 16)) (-1700 (($ |#2| $) NIL) (($ (-1 (-108) |#2|) $) 24)) (-3546 (($) NIL) (($ (-588 |#2|)) 11)) (-1562 (((-108) $ $) 22)))
+(((-205 |#1| |#2|) (-10 -8 (-15 -1213 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1700 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1700 (|#1| |#2| |#1|)) (-15 -3546 (|#1| (-588 |#2|))) (-15 -3546 (|#1|)) (-15 -1562 ((-108) |#1| |#1|))) (-206 |#2|) (-1014)) (T -205))
+NIL
+(-10 -8 (-15 -1213 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1700 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1700 (|#1| |#2| |#1|)) (-15 -3546 (|#1| (-588 |#2|))) (-15 -3546 (|#1|)) (-15 -1562 ((-108) |#1| |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) 8)) (-1213 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-2379 (($ $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1700 (($ |#1| $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4238)))) (-1424 (($ |#1| $) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4238)))) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1431 ((|#1| $) 39)) (-3365 (($ |#1| $) 40)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-3295 ((|#1| $) 41)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-3546 (($) 49) (($ (-588 |#1|)) 48)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-3873 (((-498) $) 59 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 50)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2501 (($ (-588 |#1|)) 42)) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-206 |#1|) (-1197) (-1014)) (T -206))
NIL
(-13 (-212 |t#1|))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-212 |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-2157 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-708)) 11) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) 19) (($ $ (-708)) NIL) (($ $) 16)) (-2213 (($ $ (-1 |#2| |#2|)) 12) (($ $ (-1 |#2| |#2|) (-708)) 14) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL) (($ $ (-708)) NIL) (($ $) NIL)))
-(((-207 |#1| |#2|) (-10 -8 (-15 -2157 (|#1| |#1|)) (-15 -2213 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2213 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2213 (|#1| |#1| (-1085))) (-15 -2213 (|#1| |#1| (-588 (-1085)))) (-15 -2213 (|#1| |#1| (-1085) (-708))) (-15 -2213 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2213 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2213 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|)))) (-208 |#2|) (-971)) (T -207))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-212 |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-2731 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-708)) 11) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) 19) (($ $ (-708)) NIL) (($ $) 16)) (-2252 (($ $ (-1 |#2| |#2|)) 12) (($ $ (-1 |#2| |#2|) (-708)) 14) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL) (($ $ (-708)) NIL) (($ $) NIL)))
+(((-207 |#1| |#2|) (-10 -8 (-15 -2731 (|#1| |#1|)) (-15 -2252 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2252 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2252 (|#1| |#1| (-1085))) (-15 -2252 (|#1| |#1| (-588 (-1085)))) (-15 -2252 (|#1| |#1| (-1085) (-708))) (-15 -2252 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2252 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2252 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|)))) (-208 |#2|) (-971)) (T -207))
NIL
-(-10 -8 (-15 -2157 (|#1| |#1|)) (-15 -2213 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2213 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2213 (|#1| |#1| (-1085))) (-15 -2213 (|#1| |#1| (-588 (-1085)))) (-15 -2213 (|#1| |#1| (-1085) (-708))) (-15 -2213 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2213 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2213 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2157 (($ $ (-1 |#1| |#1|)) 52) (($ $ (-1 |#1| |#1|) (-708)) 51) (($ $ (-588 (-1085)) (-588 (-708))) 44 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 43 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 42 (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) 41 (|has| |#1| (-829 (-1085)))) (($ $ (-708)) 39 (|has| |#1| (-210))) (($ $) 37 (|has| |#1| (-210)))) (-2190 (((-792) $) 11) (($ (-522)) 28)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-1 |#1| |#1|)) 50) (($ $ (-1 |#1| |#1|) (-708)) 49) (($ $ (-588 (-1085)) (-588 (-708))) 48 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 47 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 46 (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) 45 (|has| |#1| (-829 (-1085)))) (($ $ (-708)) 40 (|has| |#1| (-210))) (($ $) 38 (|has| |#1| (-210)))) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+(-10 -8 (-15 -2731 (|#1| |#1|)) (-15 -2252 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2252 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2252 (|#1| |#1| (-1085))) (-15 -2252 (|#1| |#1| (-588 (-1085)))) (-15 -2252 (|#1| |#1| (-1085) (-708))) (-15 -2252 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2252 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2252 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2731 (($ $ (-1 |#1| |#1|)) 52) (($ $ (-1 |#1| |#1|) (-708)) 51) (($ $ (-588 (-1085)) (-588 (-708))) 44 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 43 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 42 (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) 41 (|has| |#1| (-829 (-1085)))) (($ $ (-708)) 39 (|has| |#1| (-210))) (($ $) 37 (|has| |#1| (-210)))) (-2217 (((-792) $) 11) (($ (-522)) 28)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-1 |#1| |#1|)) 50) (($ $ (-1 |#1| |#1|) (-708)) 49) (($ $ (-588 (-1085)) (-588 (-708))) 48 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 47 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 46 (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) 45 (|has| |#1| (-829 (-1085)))) (($ $ (-708)) 40 (|has| |#1| (-210))) (($ $) 38 (|has| |#1| (-210)))) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-208 |#1|) (-1197) (-971)) (T -208))
-((-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-208 *3)) (-4 *3 (-971)))) (-2157 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-708)) (-4 *1 (-208 *4)) (-4 *4 (-971)))) (-2213 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-208 *3)) (-4 *3 (-971)))) (-2213 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-708)) (-4 *1 (-208 *4)) (-4 *4 (-971)))))
-(-13 (-971) (-10 -8 (-15 -2157 ($ $ (-1 |t#1| |t#1|))) (-15 -2157 ($ $ (-1 |t#1| |t#1|) (-708))) (-15 -2213 ($ $ (-1 |t#1| |t#1|))) (-15 -2213 ($ $ (-1 |t#1| |t#1|) (-708))) (IF (|has| |t#1| (-210)) (-6 (-210)) |%noBranch|) (IF (|has| |t#1| (-829 (-1085))) (-6 (-829 (-1085))) |%noBranch|)))
+((-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-208 *3)) (-4 *3 (-971)))) (-2731 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-708)) (-4 *1 (-208 *4)) (-4 *4 (-971)))) (-2252 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-208 *3)) (-4 *3 (-971)))) (-2252 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-708)) (-4 *1 (-208 *4)) (-4 *4 (-971)))))
+(-13 (-971) (-10 -8 (-15 -2731 ($ $ (-1 |t#1| |t#1|))) (-15 -2731 ($ $ (-1 |t#1| |t#1|) (-708))) (-15 -2252 ($ $ (-1 |t#1| |t#1|))) (-15 -2252 ($ $ (-1 |t#1| |t#1|) (-708))) (IF (|has| |t#1| (-210)) (-6 (-210)) |%noBranch|) (IF (|has| |t#1| (-829 (-1085))) (-6 (-829 (-1085))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-210) |has| |#1| (-210)) ((-590 $) . T) ((-664) . T) ((-829 (-1085)) |has| |#1| (-829 (-1085))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-2157 (($ $) NIL) (($ $ (-708)) 10)) (-2213 (($ $) 8) (($ $ (-708)) 12)))
-(((-209 |#1|) (-10 -8 (-15 -2213 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1| (-708))) (-15 -2213 (|#1| |#1|)) (-15 -2157 (|#1| |#1|))) (-210)) (T -209))
+((-2731 (($ $) NIL) (($ $ (-708)) 10)) (-2252 (($ $) 8) (($ $ (-708)) 12)))
+(((-209 |#1|) (-10 -8 (-15 -2252 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1| (-708))) (-15 -2252 (|#1| |#1|)) (-15 -2731 (|#1| |#1|))) (-210)) (T -209))
NIL
-(-10 -8 (-15 -2213 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1| (-708))) (-15 -2213 (|#1| |#1|)) (-15 -2157 (|#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2157 (($ $) 38) (($ $ (-708)) 36)) (-2190 (((-792) $) 11) (($ (-522)) 28)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $) 37) (($ $ (-708)) 35)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+(-10 -8 (-15 -2252 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1| (-708))) (-15 -2252 (|#1| |#1|)) (-15 -2731 (|#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2731 (($ $) 38) (($ $ (-708)) 36)) (-2217 (((-792) $) 11) (($ (-522)) 28)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $) 37) (($ $ (-708)) 35)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-210) (-1197)) (T -210))
-((-2157 (*1 *1 *1) (-4 *1 (-210))) (-2213 (*1 *1 *1) (-4 *1 (-210))) (-2157 (*1 *1 *1 *2) (-12 (-4 *1 (-210)) (-5 *2 (-708)))) (-2213 (*1 *1 *1 *2) (-12 (-4 *1 (-210)) (-5 *2 (-708)))))
-(-13 (-971) (-10 -8 (-15 -2157 ($ $)) (-15 -2213 ($ $)) (-15 -2157 ($ $ (-708))) (-15 -2213 ($ $ (-708)))))
+((-2731 (*1 *1 *1) (-4 *1 (-210))) (-2252 (*1 *1 *1) (-4 *1 (-210))) (-2731 (*1 *1 *1 *2) (-12 (-4 *1 (-210)) (-5 *2 (-708)))) (-2252 (*1 *1 *1 *2) (-12 (-4 *1 (-210)) (-5 *2 (-708)))))
+(-13 (-971) (-10 -8 (-15 -2731 ($ $)) (-15 -2252 ($ $)) (-15 -2731 ($ $ (-708))) (-15 -2252 ($ $ (-708)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 $) . T) ((-664) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-3990 (($) 12) (($ (-588 |#2|)) NIL)) (-2404 (($ $) 14)) (-2201 (($ (-588 |#2|)) 10)) (-2190 (((-792) $) 21)))
-(((-211 |#1| |#2|) (-10 -8 (-15 -2190 ((-792) |#1|)) (-15 -3990 (|#1| (-588 |#2|))) (-15 -3990 (|#1|)) (-15 -2201 (|#1| (-588 |#2|))) (-15 -2404 (|#1| |#1|))) (-212 |#2|) (-1014)) (T -211))
+((-3546 (($) 12) (($ (-588 |#2|)) NIL)) (-2463 (($ $) 14)) (-2227 (($ (-588 |#2|)) 10)) (-2217 (((-792) $) 21)))
+(((-211 |#1| |#2|) (-10 -8 (-15 -2217 ((-792) |#1|)) (-15 -3546 (|#1| (-588 |#2|))) (-15 -3546 (|#1|)) (-15 -2227 (|#1| (-588 |#2|))) (-15 -2463 (|#1| |#1|))) (-212 |#2|) (-1014)) (T -211))
NIL
-(-10 -8 (-15 -2190 ((-792) |#1|)) (-15 -3990 (|#1| (-588 |#2|))) (-15 -3990 (|#1|)) (-15 -2201 (|#1| (-588 |#2|))) (-15 -2404 (|#1| |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) 8)) (-2790 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-2333 (($ $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3859 (($ |#1| $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4238)))) (-1423 (($ |#1| $) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4238)))) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-2116 ((|#1| $) 39)) (-4095 (($ |#1| $) 40)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-4087 ((|#1| $) 41)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-3990 (($) 49) (($ (-588 |#1|)) 48)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-1431 (((-498) $) 59 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 50)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2795 (($ (-588 |#1|)) 42)) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+(-10 -8 (-15 -2217 ((-792) |#1|)) (-15 -3546 (|#1| (-588 |#2|))) (-15 -3546 (|#1|)) (-15 -2227 (|#1| (-588 |#2|))) (-15 -2463 (|#1| |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) 8)) (-1213 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-2379 (($ $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1700 (($ |#1| $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4238)))) (-1424 (($ |#1| $) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4238)))) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1431 ((|#1| $) 39)) (-3365 (($ |#1| $) 40)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-3295 ((|#1| $) 41)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-3546 (($) 49) (($ (-588 |#1|)) 48)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-3873 (((-498) $) 59 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 50)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2501 (($ (-588 |#1|)) 42)) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-212 |#1|) (-1197) (-1014)) (T -212))
-((-3990 (*1 *1) (-12 (-4 *1 (-212 *2)) (-4 *2 (-1014)))) (-3990 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-212 *3)))) (-3859 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-212 *2)) (-4 *2 (-1014)))) (-3859 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-212 *3)) (-4 *3 (-1014)))) (-2790 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-212 *3)) (-4 *3 (-1014)))))
-(-13 (-102 |t#1|) (-139 |t#1|) (-10 -8 (-15 -3990 ($)) (-15 -3990 ($ (-588 |t#1|))) (IF (|has| $ (-6 -4238)) (PROGN (-15 -3859 ($ |t#1| $)) (-15 -3859 ($ (-1 (-108) |t#1|) $)) (-15 -2790 ($ (-1 (-108) |t#1|) $))) |%noBranch|)))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-3301 (((-2 (|:| |varOrder| (-588 (-1085))) (|:| |inhom| (-3 (-588 (-1166 (-708))) "failed")) (|:| |hom| (-588 (-1166 (-708))))) (-270 (-881 (-522)))) 25)))
-(((-213) (-10 -7 (-15 -3301 ((-2 (|:| |varOrder| (-588 (-1085))) (|:| |inhom| (-3 (-588 (-1166 (-708))) "failed")) (|:| |hom| (-588 (-1166 (-708))))) (-270 (-881 (-522))))))) (T -213))
-((-3301 (*1 *2 *3) (-12 (-5 *3 (-270 (-881 (-522)))) (-5 *2 (-2 (|:| |varOrder| (-588 (-1085))) (|:| |inhom| (-3 (-588 (-1166 (-708))) "failed")) (|:| |hom| (-588 (-1166 (-708)))))) (-5 *1 (-213)))))
-(-10 -7 (-15 -3301 ((-2 (|:| |varOrder| (-588 (-1085))) (|:| |inhom| (-3 (-588 (-1166 (-708))) "failed")) (|:| |hom| (-588 (-1166 (-708))))) (-270 (-881 (-522))))))
-((-1629 (((-708)) 51)) (-2096 (((-2 (|:| -1222 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 $) (-1166 $)) 49) (((-628 |#3|) (-628 $)) 41) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL)) (-4078 (((-126)) 57)) (-2157 (($ $ (-1 |#3| |#3|) (-708)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL) (($ $ (-708)) NIL) (($ $) NIL)) (-2190 (((-1166 |#3|) $) NIL) (($ |#3|) NIL) (((-792) $) NIL) (($ (-522)) 12) (($ (-382 (-522))) NIL)) (-2323 (((-708)) 15)) (-1620 (($ $ |#3|) 54)))
-(((-214 |#1| |#2| |#3|) (-10 -8 (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|)) (-15 -2323 ((-708))) (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2096 ((-628 (-522)) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2190 (|#1| |#3|)) (-15 -2157 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2157 (|#1| |#1| (-1 |#3| |#3|) (-708))) (-15 -2096 ((-628 |#3|) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 |#1|) (-1166 |#1|))) (-15 -1629 ((-708))) (-15 -1620 (|#1| |#1| |#3|)) (-15 -4078 ((-126))) (-15 -2190 ((-1166 |#3|) |#1|))) (-215 |#2| |#3|) (-708) (-1120)) (T -214))
-((-4078 (*1 *2) (-12 (-14 *4 (-708)) (-4 *5 (-1120)) (-5 *2 (-126)) (-5 *1 (-214 *3 *4 *5)) (-4 *3 (-215 *4 *5)))) (-1629 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1120)) (-5 *2 (-708)) (-5 *1 (-214 *3 *4 *5)) (-4 *3 (-215 *4 *5)))) (-2323 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1120)) (-5 *2 (-708)) (-5 *1 (-214 *3 *4 *5)) (-4 *3 (-215 *4 *5)))))
-(-10 -8 (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|)) (-15 -2323 ((-708))) (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2096 ((-628 (-522)) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2190 (|#1| |#3|)) (-15 -2157 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2157 (|#1| |#1| (-1 |#3| |#3|) (-708))) (-15 -2096 ((-628 |#3|) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 |#1|) (-1166 |#1|))) (-15 -1629 ((-708))) (-15 -1620 (|#1| |#1| |#3|)) (-15 -4078 ((-126))) (-15 -2190 ((-1166 |#3|) |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#2| (-1014)))) (-2250 (((-108) $) 72 (|has| |#2| (-124)))) (-2468 (($ (-850)) 127 (|has| |#2| (-971)))) (-2679 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-1210 (($ $ $) 123 (|has| |#2| (-730)))) (-1233 (((-3 $ "failed") $ $) 74 (|has| |#2| (-124)))) (-4141 (((-108) $ (-708)) 8)) (-1629 (((-708)) 109 (|has| |#2| (-343)))) (-1341 (((-522) $) 121 (|has| |#2| (-782)))) (-2379 ((|#2| $ (-522) |#2|) 52 (|has| $ (-6 -4239)))) (-3175 (($) 7 T CONST)) (-1297 (((-3 (-522) "failed") $) 67 (-4015 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-3 (-382 (-522)) "failed") $) 64 (-4015 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (((-3 |#2| "failed") $) 61 (|has| |#2| (-1014)))) (-1484 (((-522) $) 68 (-4015 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-382 (-522)) $) 65 (-4015 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) ((|#2| $) 60 (|has| |#2| (-1014)))) (-2096 (((-628 (-522)) (-628 $)) 108 (-4015 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 107 (-4015 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) 106 (|has| |#2| (-971))) (((-628 |#2|) (-628 $)) 105 (|has| |#2| (-971)))) (-2682 (((-3 $ "failed") $) 99 (|has| |#2| (-971)))) (-3255 (($) 112 (|has| |#2| (-343)))) (-3854 ((|#2| $ (-522) |#2|) 53 (|has| $ (-6 -4239)))) (-3631 ((|#2| $ (-522)) 51)) (-3687 (((-108) $) 119 (|has| |#2| (-782)))) (-3837 (((-588 |#2|) $) 30 (|has| $ (-6 -4238)))) (-2782 (((-108) $) 102 (|has| |#2| (-971)))) (-2556 (((-108) $) 120 (|has| |#2| (-782)))) (-3352 (((-108) $ (-708)) 9)) (-1359 (((-522) $) 43 (|has| (-522) (-784)))) (-2814 (($ $ $) 118 (-3708 (|has| |#2| (-782)) (|has| |#2| (-730))))) (-3308 (((-588 |#2|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#2| $) 27 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 44 (|has| (-522) (-784)))) (-2446 (($ $ $) 117 (-3708 (|has| |#2| (-782)) (|has| |#2| (-730))))) (-3838 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#2| |#2|) $) 35)) (-2120 (((-850) $) 111 (|has| |#2| (-343)))) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#2| (-1014)))) (-3604 (((-588 (-522)) $) 46)) (-1405 (((-108) (-522) $) 47)) (-2717 (($ (-850)) 110 (|has| |#2| (-343)))) (-4151 (((-1032) $) 21 (|has| |#2| (-1014)))) (-2294 ((|#2| $) 42 (|has| (-522) (-784)))) (-2602 (($ $ |#2|) 41 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#2|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#2|))) 26 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) 25 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) 23 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#2| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1525 (((-588 |#2|) $) 48)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#2| $ (-522) |#2|) 50) ((|#2| $ (-522)) 49)) (-1883 ((|#2| $ $) 126 (|has| |#2| (-971)))) (-1962 (($ (-1166 |#2|)) 128)) (-4078 (((-126)) 125 (|has| |#2| (-338)))) (-2157 (($ $) 92 (-4015 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) 90 (-4015 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) 88 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) 87 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) 86 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) 85 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) 78 (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) 77 (|has| |#2| (-971)))) (-4168 (((-708) (-1 (-108) |#2|) $) 31 (|has| $ (-6 -4238))) (((-708) |#2| $) 28 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2190 (((-1166 |#2|) $) 129) (($ (-522)) 66 (-3708 (-4015 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014))) (|has| |#2| (-971)))) (($ (-382 (-522))) 63 (-4015 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (($ |#2|) 62 (|has| |#2| (-1014))) (((-792) $) 18 (|has| |#2| (-562 (-792))))) (-2323 (((-708)) 104 (|has| |#2| (-971)))) (-3648 (((-108) (-1 (-108) |#2|) $) 33 (|has| $ (-6 -4238)))) (-2241 (($ $) 122 (|has| |#2| (-782)))) (-3510 (($ $ (-708)) 100 (|has| |#2| (-971))) (($ $ (-850)) 96 (|has| |#2| (-971)))) (-3566 (($) 71 (|has| |#2| (-124)) CONST)) (-3577 (($) 103 (|has| |#2| (-971)) CONST)) (-2213 (($ $) 91 (-4015 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) 89 (-4015 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) 84 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) 83 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) 82 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) 81 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) 80 (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) 79 (|has| |#2| (-971)))) (-1574 (((-108) $ $) 115 (-3708 (|has| |#2| (-782)) (|has| |#2| (-730))))) (-1558 (((-108) $ $) 114 (-3708 (|has| |#2| (-782)) (|has| |#2| (-730))))) (-1531 (((-108) $ $) 20 (|has| |#2| (-1014)))) (-1566 (((-108) $ $) 116 (-3708 (|has| |#2| (-782)) (|has| |#2| (-730))))) (-1549 (((-108) $ $) 113 (-3708 (|has| |#2| (-782)) (|has| |#2| (-730))))) (-1620 (($ $ |#2|) 124 (|has| |#2| (-338)))) (-1612 (($ $ $) 94 (|has| |#2| (-971))) (($ $) 93 (|has| |#2| (-971)))) (-1602 (($ $ $) 69 (|has| |#2| (-25)))) (** (($ $ (-708)) 101 (|has| |#2| (-971))) (($ $ (-850)) 97 (|has| |#2| (-971)))) (* (($ $ $) 98 (|has| |#2| (-971))) (($ (-522) $) 95 (|has| |#2| (-971))) (($ $ |#2|) 76 (|has| |#2| (-664))) (($ |#2| $) 75 (|has| |#2| (-664))) (($ (-708) $) 73 (|has| |#2| (-124))) (($ (-850) $) 70 (|has| |#2| (-25)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-3546 (*1 *1) (-12 (-4 *1 (-212 *2)) (-4 *2 (-1014)))) (-3546 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-212 *3)))) (-1700 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-212 *2)) (-4 *2 (-1014)))) (-1700 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-212 *3)) (-4 *3 (-1014)))) (-1213 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-212 *3)) (-4 *3 (-1014)))))
+(-13 (-102 |t#1|) (-139 |t#1|) (-10 -8 (-15 -3546 ($)) (-15 -3546 ($ (-588 |t#1|))) (IF (|has| $ (-6 -4238)) (PROGN (-15 -1700 ($ |t#1| $)) (-15 -1700 ($ (-1 (-108) |t#1|) $)) (-15 -1213 ($ (-1 (-108) |t#1|) $))) |%noBranch|)))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-4034 (((-2 (|:| |varOrder| (-588 (-1085))) (|:| |inhom| (-3 (-588 (-1166 (-708))) "failed")) (|:| |hom| (-588 (-1166 (-708))))) (-270 (-881 (-522)))) 25)))
+(((-213) (-10 -7 (-15 -4034 ((-2 (|:| |varOrder| (-588 (-1085))) (|:| |inhom| (-3 (-588 (-1166 (-708))) "failed")) (|:| |hom| (-588 (-1166 (-708))))) (-270 (-881 (-522))))))) (T -213))
+((-4034 (*1 *2 *3) (-12 (-5 *3 (-270 (-881 (-522)))) (-5 *2 (-2 (|:| |varOrder| (-588 (-1085))) (|:| |inhom| (-3 (-588 (-1166 (-708))) "failed")) (|:| |hom| (-588 (-1166 (-708)))))) (-5 *1 (-213)))))
+(-10 -7 (-15 -4034 ((-2 (|:| |varOrder| (-588 (-1085))) (|:| |inhom| (-3 (-588 (-1166 (-708))) "failed")) (|:| |hom| (-588 (-1166 (-708))))) (-270 (-881 (-522))))))
+((-1685 (((-708)) 51)) (-1226 (((-2 (|:| -2149 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 $) (-1166 $)) 49) (((-628 |#3|) (-628 $)) 41) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL)) (-3222 (((-126)) 57)) (-2731 (($ $ (-1 |#3| |#3|) (-708)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL) (($ $ (-708)) NIL) (($ $) NIL)) (-2217 (((-1166 |#3|) $) NIL) (($ |#3|) NIL) (((-792) $) NIL) (($ (-522)) 12) (($ (-382 (-522))) NIL)) (-2742 (((-708)) 15)) (-1682 (($ $ |#3|) 54)))
+(((-214 |#1| |#2| |#3|) (-10 -8 (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|)) (-15 -2742 ((-708))) (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -1226 ((-628 (-522)) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2217 (|#1| |#3|)) (-15 -2731 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2731 (|#1| |#1| (-1 |#3| |#3|) (-708))) (-15 -1226 ((-628 |#3|) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 |#1|) (-1166 |#1|))) (-15 -1685 ((-708))) (-15 -1682 (|#1| |#1| |#3|)) (-15 -3222 ((-126))) (-15 -2217 ((-1166 |#3|) |#1|))) (-215 |#2| |#3|) (-708) (-1120)) (T -214))
+((-3222 (*1 *2) (-12 (-14 *4 (-708)) (-4 *5 (-1120)) (-5 *2 (-126)) (-5 *1 (-214 *3 *4 *5)) (-4 *3 (-215 *4 *5)))) (-1685 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1120)) (-5 *2 (-708)) (-5 *1 (-214 *3 *4 *5)) (-4 *3 (-215 *4 *5)))) (-2742 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1120)) (-5 *2 (-708)) (-5 *1 (-214 *3 *4 *5)) (-4 *3 (-215 *4 *5)))))
+(-10 -8 (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|)) (-15 -2742 ((-708))) (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -1226 ((-628 (-522)) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2217 (|#1| |#3|)) (-15 -2731 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2731 (|#1| |#1| (-1 |#3| |#3|) (-708))) (-15 -1226 ((-628 |#3|) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 |#1|) (-1166 |#1|))) (-15 -1685 ((-708))) (-15 -1682 (|#1| |#1| |#3|)) (-15 -3222 ((-126))) (-15 -2217 ((-1166 |#3|) |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#2| (-1014)))) (-2944 (((-108) $) 72 (|has| |#2| (-124)))) (-2826 (($ (-850)) 127 (|has| |#2| (-971)))) (-3883 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-1827 (($ $ $) 123 (|has| |#2| (-730)))) (-2265 (((-3 $ "failed") $ $) 74 (|has| |#2| (-124)))) (-2717 (((-108) $ (-708)) 8)) (-1685 (((-708)) 109 (|has| |#2| (-343)))) (-3355 (((-522) $) 121 (|has| |#2| (-782)))) (-2437 ((|#2| $ (-522) |#2|) 52 (|has| $ (-6 -4239)))) (-3367 (($) 7 T CONST)) (-3700 (((-3 (-522) "failed") $) 67 (-4079 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-3 (-382 (-522)) "failed") $) 64 (-4079 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (((-3 |#2| "failed") $) 61 (|has| |#2| (-1014)))) (-1478 (((-522) $) 68 (-4079 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-382 (-522)) $) 65 (-4079 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) ((|#2| $) 60 (|has| |#2| (-1014)))) (-1226 (((-628 (-522)) (-628 $)) 108 (-4079 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 107 (-4079 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) 106 (|has| |#2| (-971))) (((-628 |#2|) (-628 $)) 105 (|has| |#2| (-971)))) (-3920 (((-3 $ "failed") $) 99 (|has| |#2| (-971)))) (-3344 (($) 112 (|has| |#2| (-343)))) (-2411 ((|#2| $ (-522) |#2|) 53 (|has| $ (-6 -4239)))) (-2186 ((|#2| $ (-522)) 51)) (-3603 (((-108) $) 119 (|has| |#2| (-782)))) (-2395 (((-588 |#2|) $) 30 (|has| $ (-6 -4238)))) (-2859 (((-108) $) 102 (|has| |#2| (-971)))) (-3740 (((-108) $) 120 (|has| |#2| (-782)))) (-1480 (((-108) $ (-708)) 9)) (-3496 (((-522) $) 43 (|has| (-522) (-784)))) (-1308 (($ $ $) 118 (-3844 (|has| |#2| (-782)) (|has| |#2| (-730))))) (-4084 (((-588 |#2|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#2| $) 27 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 44 (|has| (-522) (-784)))) (-2524 (($ $ $) 117 (-3844 (|has| |#2| (-782)) (|has| |#2| (-730))))) (-2397 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#2| |#2|) $) 35)) (-1475 (((-850) $) 111 (|has| |#2| (-343)))) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#2| (-1014)))) (-2130 (((-588 (-522)) $) 46)) (-2103 (((-108) (-522) $) 47)) (-2882 (($ (-850)) 110 (|has| |#2| (-343)))) (-4174 (((-1032) $) 21 (|has| |#2| (-1014)))) (-2337 ((|#2| $) 42 (|has| (-522) (-784)))) (-1972 (($ $ |#2|) 41 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#2|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#2|))) 26 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) 25 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) 23 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#2| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1973 (((-588 |#2|) $) 48)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#2| $ (-522) |#2|) 50) ((|#2| $ (-522)) 49)) (-4024 ((|#2| $ $) 126 (|has| |#2| (-971)))) (-2041 (($ (-1166 |#2|)) 128)) (-3222 (((-126)) 125 (|has| |#2| (-338)))) (-2731 (($ $) 92 (-4079 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) 90 (-4079 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) 88 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) 87 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) 86 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) 85 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) 78 (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) 77 (|has| |#2| (-971)))) (-4187 (((-708) (-1 (-108) |#2|) $) 31 (|has| $ (-6 -4238))) (((-708) |#2| $) 28 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2217 (((-1166 |#2|) $) 129) (($ (-522)) 66 (-3844 (-4079 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014))) (|has| |#2| (-971)))) (($ (-382 (-522))) 63 (-4079 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (($ |#2|) 62 (|has| |#2| (-1014))) (((-792) $) 18 (|has| |#2| (-562 (-792))))) (-2742 (((-708)) 104 (|has| |#2| (-971)))) (-1381 (((-108) (-1 (-108) |#2|) $) 33 (|has| $ (-6 -4238)))) (-4126 (($ $) 122 (|has| |#2| (-782)))) (-3622 (($ $ (-708)) 100 (|has| |#2| (-971))) (($ $ (-850)) 96 (|has| |#2| (-971)))) (-3697 (($) 71 (|has| |#2| (-124)) CONST)) (-3709 (($) 103 (|has| |#2| (-971)) CONST)) (-2252 (($ $) 91 (-4079 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) 89 (-4079 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) 84 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) 83 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) 82 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) 81 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) 80 (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) 79 (|has| |#2| (-971)))) (-1623 (((-108) $ $) 115 (-3844 (|has| |#2| (-782)) (|has| |#2| (-730))))) (-1597 (((-108) $ $) 114 (-3844 (|has| |#2| (-782)) (|has| |#2| (-730))))) (-1562 (((-108) $ $) 20 (|has| |#2| (-1014)))) (-1609 (((-108) $ $) 116 (-3844 (|has| |#2| (-782)) (|has| |#2| (-730))))) (-1587 (((-108) $ $) 113 (-3844 (|has| |#2| (-782)) (|has| |#2| (-730))))) (-1682 (($ $ |#2|) 124 (|has| |#2| (-338)))) (-1672 (($ $ $) 94 (|has| |#2| (-971))) (($ $) 93 (|has| |#2| (-971)))) (-1661 (($ $ $) 69 (|has| |#2| (-25)))) (** (($ $ (-708)) 101 (|has| |#2| (-971))) (($ $ (-850)) 97 (|has| |#2| (-971)))) (* (($ $ $) 98 (|has| |#2| (-971))) (($ (-522) $) 95 (|has| |#2| (-971))) (($ $ |#2|) 76 (|has| |#2| (-664))) (($ |#2| $) 75 (|has| |#2| (-664))) (($ (-708) $) 73 (|has| |#2| (-124))) (($ (-850) $) 70 (|has| |#2| (-25)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-215 |#1| |#2|) (-1197) (-708) (-1120)) (T -215))
-((-1962 (*1 *1 *2) (-12 (-5 *2 (-1166 *4)) (-4 *4 (-1120)) (-4 *1 (-215 *3 *4)))) (-2468 (*1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-215 *3 *4)) (-4 *4 (-971)) (-4 *4 (-1120)))) (-1883 (*1 *2 *1 *1) (-12 (-4 *1 (-215 *3 *2)) (-4 *2 (-1120)) (-4 *2 (-971)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-215 *3 *2)) (-4 *2 (-1120)) (-4 *2 (-664)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-215 *3 *2)) (-4 *2 (-1120)) (-4 *2 (-664)))))
-(-13 (-555 (-522) |t#2|) (-562 (-1166 |t#2|)) (-10 -8 (-6 -4238) (-15 -1962 ($ (-1166 |t#2|))) (IF (|has| |t#2| (-1014)) (-6 (-386 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-971)) (PROGN (-6 (-107 |t#2| |t#2|)) (-6 (-208 |t#2|)) (-6 (-352 |t#2|)) (-15 -2468 ($ (-850))) (-15 -1883 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-124)) (-6 (-124)) |%noBranch|) (IF (|has| |t#2| (-664)) (PROGN (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-343)) (-6 (-343)) |%noBranch|) (IF (|has| |t#2| (-157)) (PROGN (-6 (-37 |t#2|)) (-6 (-157))) |%noBranch|) (IF (|has| |t#2| (-6 -4235)) (-6 -4235) |%noBranch|) (IF (|has| |t#2| (-782)) (-6 (-782)) |%noBranch|) (IF (|has| |t#2| (-730)) (-6 (-730)) |%noBranch|) (IF (|has| |t#2| (-338)) (-6 (-1173 |t#2|)) |%noBranch|)))
-(((-21) -3708 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-338)) (|has| |#2| (-157))) ((-23) -3708 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-730)) (|has| |#2| (-338)) (|has| |#2| (-157)) (|has| |#2| (-124))) ((-25) -3708 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-730)) (|has| |#2| (-338)) (|has| |#2| (-157)) (|has| |#2| (-124)) (|has| |#2| (-25))) ((-33) . T) ((-37 |#2|) |has| |#2| (-157)) ((-97) -3708 (|has| |#2| (-1014)) (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-730)) (|has| |#2| (-343)) (|has| |#2| (-338)) (|has| |#2| (-157)) (|has| |#2| (-124)) (|has| |#2| (-25))) ((-107 |#2| |#2|) -3708 (|has| |#2| (-971)) (|has| |#2| (-338)) (|has| |#2| (-157))) ((-107 $ $) |has| |#2| (-157)) ((-124) -3708 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-730)) (|has| |#2| (-338)) (|has| |#2| (-157)) (|has| |#2| (-124))) ((-562 (-792)) -3708 (|has| |#2| (-1014)) (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-730)) (|has| |#2| (-343)) (|has| |#2| (-338)) (|has| |#2| (-157)) (|has| |#2| (-562 (-792))) (|has| |#2| (-124)) (|has| |#2| (-25))) ((-562 (-1166 |#2|)) . T) ((-157) |has| |#2| (-157)) ((-208 |#2|) |has| |#2| (-971)) ((-210) -12 (|has| |#2| (-210)) (|has| |#2| (-971))) ((-262 #0=(-522) |#2|) . T) ((-264 #0# |#2|) . T) ((-285 |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-343) |has| |#2| (-343)) ((-352 |#2|) |has| |#2| (-971)) ((-386 |#2|) |has| |#2| (-1014)) ((-461 |#2|) . T) ((-555 #0# |#2|) . T) ((-483 |#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-590 |#2|) -3708 (|has| |#2| (-971)) (|has| |#2| (-338)) (|has| |#2| (-157))) ((-590 $) -3708 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-157))) ((-584 (-522)) -12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971))) ((-584 |#2|) |has| |#2| (-971)) ((-655 |#2|) -3708 (|has| |#2| (-338)) (|has| |#2| (-157))) ((-664) -3708 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-157))) ((-728) |has| |#2| (-782)) ((-729) -3708 (|has| |#2| (-782)) (|has| |#2| (-730))) ((-730) |has| |#2| (-730)) ((-731) -3708 (|has| |#2| (-782)) (|has| |#2| (-730))) ((-732) -3708 (|has| |#2| (-782)) (|has| |#2| (-730))) ((-782) |has| |#2| (-782)) ((-784) -3708 (|has| |#2| (-782)) (|has| |#2| (-730))) ((-829 (-1085)) -12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971))) ((-962 (-382 (-522))) -12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014))) ((-962 (-522)) -12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014))) ((-962 |#2|) |has| |#2| (-1014)) ((-977 |#2|) -3708 (|has| |#2| (-971)) (|has| |#2| (-338)) (|has| |#2| (-157))) ((-977 $) |has| |#2| (-157)) ((-971) -3708 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-157))) ((-978) -3708 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-157))) ((-1026) -3708 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-157))) ((-1014) -3708 (|has| |#2| (-1014)) (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-730)) (|has| |#2| (-343)) (|has| |#2| (-338)) (|has| |#2| (-157)) (|has| |#2| (-124)) (|has| |#2| (-25))) ((-1120) . T) ((-1173 |#2|) |has| |#2| (-338)))
-((-3690 (((-217 |#1| |#3|) (-1 |#3| |#2| |#3|) (-217 |#1| |#2|) |#3|) 21)) (-3864 ((|#3| (-1 |#3| |#2| |#3|) (-217 |#1| |#2|) |#3|) 23)) (-1391 (((-217 |#1| |#3|) (-1 |#3| |#2|) (-217 |#1| |#2|)) 18)))
-(((-216 |#1| |#2| |#3|) (-10 -7 (-15 -3690 ((-217 |#1| |#3|) (-1 |#3| |#2| |#3|) (-217 |#1| |#2|) |#3|)) (-15 -3864 (|#3| (-1 |#3| |#2| |#3|) (-217 |#1| |#2|) |#3|)) (-15 -1391 ((-217 |#1| |#3|) (-1 |#3| |#2|) (-217 |#1| |#2|)))) (-708) (-1120) (-1120)) (T -216))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-217 *5 *6)) (-14 *5 (-708)) (-4 *6 (-1120)) (-4 *7 (-1120)) (-5 *2 (-217 *5 *7)) (-5 *1 (-216 *5 *6 *7)))) (-3864 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-217 *5 *6)) (-14 *5 (-708)) (-4 *6 (-1120)) (-4 *2 (-1120)) (-5 *1 (-216 *5 *6 *2)))) (-3690 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-217 *6 *7)) (-14 *6 (-708)) (-4 *7 (-1120)) (-4 *5 (-1120)) (-5 *2 (-217 *6 *5)) (-5 *1 (-216 *6 *7 *5)))))
-(-10 -7 (-15 -3690 ((-217 |#1| |#3|) (-1 |#3| |#2| |#3|) (-217 |#1| |#2|) |#3|)) (-15 -3864 (|#3| (-1 |#3| |#2| |#3|) (-217 |#1| |#2|) |#3|)) (-15 -1391 ((-217 |#1| |#3|) (-1 |#3| |#2|) (-217 |#1| |#2|))))
-((-1416 (((-108) $ $) NIL (|has| |#2| (-1014)))) (-2250 (((-108) $) NIL (|has| |#2| (-124)))) (-2468 (($ (-850)) 56 (|has| |#2| (-971)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1210 (($ $ $) 60 (|has| |#2| (-730)))) (-1233 (((-3 $ "failed") $ $) 48 (|has| |#2| (-124)))) (-4141 (((-108) $ (-708)) 17)) (-1629 (((-708)) NIL (|has| |#2| (-343)))) (-1341 (((-522) $) NIL (|has| |#2| (-782)))) (-2379 ((|#2| $ (-522) |#2|) NIL (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (((-3 |#2| "failed") $) 29 (|has| |#2| (-1014)))) (-1484 (((-522) $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-382 (-522)) $) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) ((|#2| $) 27 (|has| |#2| (-1014)))) (-2096 (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL (|has| |#2| (-971))) (((-628 |#2|) (-628 $)) NIL (|has| |#2| (-971)))) (-2682 (((-3 $ "failed") $) 53 (|has| |#2| (-971)))) (-3255 (($) NIL (|has| |#2| (-343)))) (-3854 ((|#2| $ (-522) |#2|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#2| $ (-522)) 51)) (-3687 (((-108) $) NIL (|has| |#2| (-782)))) (-3837 (((-588 |#2|) $) 15 (|has| $ (-6 -4238)))) (-2782 (((-108) $) NIL (|has| |#2| (-971)))) (-2556 (((-108) $) NIL (|has| |#2| (-782)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) 20 (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-3308 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2014 (((-522) $) 50 (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-3838 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#2| |#2|) $) 41)) (-2120 (((-850) $) NIL (|has| |#2| (-343)))) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#2| (-1014)))) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-2717 (($ (-850)) NIL (|has| |#2| (-343)))) (-4151 (((-1032) $) NIL (|has| |#2| (-1014)))) (-2294 ((|#2| $) NIL (|has| (-522) (-784)))) (-2602 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#2|) $) 24 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1525 (((-588 |#2|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#2| $ (-522) |#2|) NIL) ((|#2| $ (-522)) 21)) (-1883 ((|#2| $ $) NIL (|has| |#2| (-971)))) (-1962 (($ (-1166 |#2|)) 18)) (-4078 (((-126)) NIL (|has| |#2| (-338)))) (-2157 (($ $) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-971)))) (-4168 (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-1166 |#2|) $) 10) (($ (-522)) NIL (-3708 (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014))) (|has| |#2| (-971)))) (($ (-382 (-522))) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (($ |#2|) 13 (|has| |#2| (-1014))) (((-792) $) NIL (|has| |#2| (-562 (-792))))) (-2323 (((-708)) NIL (|has| |#2| (-971)))) (-3648 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2241 (($ $) NIL (|has| |#2| (-782)))) (-3510 (($ $ (-708)) NIL (|has| |#2| (-971))) (($ $ (-850)) NIL (|has| |#2| (-971)))) (-3566 (($) 35 (|has| |#2| (-124)) CONST)) (-3577 (($) 38 (|has| |#2| (-971)) CONST)) (-2213 (($ $) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-971)))) (-1574 (((-108) $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1558 (((-108) $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1531 (((-108) $ $) 26 (|has| |#2| (-1014)))) (-1566 (((-108) $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1549 (((-108) $ $) 58 (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1620 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1612 (($ $ $) NIL (|has| |#2| (-971))) (($ $) NIL (|has| |#2| (-971)))) (-1602 (($ $ $) 33 (|has| |#2| (-25)))) (** (($ $ (-708)) NIL (|has| |#2| (-971))) (($ $ (-850)) NIL (|has| |#2| (-971)))) (* (($ $ $) 49 (|has| |#2| (-971))) (($ (-522) $) NIL (|has| |#2| (-971))) (($ $ |#2|) 42 (|has| |#2| (-664))) (($ |#2| $) 43 (|has| |#2| (-664))) (($ (-708) $) NIL (|has| |#2| (-124))) (($ (-850) $) NIL (|has| |#2| (-25)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-2041 (*1 *1 *2) (-12 (-5 *2 (-1166 *4)) (-4 *4 (-1120)) (-4 *1 (-215 *3 *4)))) (-2826 (*1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-215 *3 *4)) (-4 *4 (-971)) (-4 *4 (-1120)))) (-4024 (*1 *2 *1 *1) (-12 (-4 *1 (-215 *3 *2)) (-4 *2 (-1120)) (-4 *2 (-971)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-215 *3 *2)) (-4 *2 (-1120)) (-4 *2 (-664)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-215 *3 *2)) (-4 *2 (-1120)) (-4 *2 (-664)))))
+(-13 (-555 (-522) |t#2|) (-562 (-1166 |t#2|)) (-10 -8 (-6 -4238) (-15 -2041 ($ (-1166 |t#2|))) (IF (|has| |t#2| (-1014)) (-6 (-386 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-971)) (PROGN (-6 (-107 |t#2| |t#2|)) (-6 (-208 |t#2|)) (-6 (-352 |t#2|)) (-15 -2826 ($ (-850))) (-15 -4024 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-124)) (-6 (-124)) |%noBranch|) (IF (|has| |t#2| (-664)) (PROGN (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-343)) (-6 (-343)) |%noBranch|) (IF (|has| |t#2| (-157)) (PROGN (-6 (-37 |t#2|)) (-6 (-157))) |%noBranch|) (IF (|has| |t#2| (-6 -4235)) (-6 -4235) |%noBranch|) (IF (|has| |t#2| (-782)) (-6 (-782)) |%noBranch|) (IF (|has| |t#2| (-730)) (-6 (-730)) |%noBranch|) (IF (|has| |t#2| (-338)) (-6 (-1173 |t#2|)) |%noBranch|)))
+(((-21) -3844 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-338)) (|has| |#2| (-157))) ((-23) -3844 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-730)) (|has| |#2| (-338)) (|has| |#2| (-157)) (|has| |#2| (-124))) ((-25) -3844 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-730)) (|has| |#2| (-338)) (|has| |#2| (-157)) (|has| |#2| (-124)) (|has| |#2| (-25))) ((-33) . T) ((-37 |#2|) |has| |#2| (-157)) ((-97) -3844 (|has| |#2| (-1014)) (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-730)) (|has| |#2| (-343)) (|has| |#2| (-338)) (|has| |#2| (-157)) (|has| |#2| (-124)) (|has| |#2| (-25))) ((-107 |#2| |#2|) -3844 (|has| |#2| (-971)) (|has| |#2| (-338)) (|has| |#2| (-157))) ((-107 $ $) |has| |#2| (-157)) ((-124) -3844 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-730)) (|has| |#2| (-338)) (|has| |#2| (-157)) (|has| |#2| (-124))) ((-562 (-792)) -3844 (|has| |#2| (-1014)) (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-730)) (|has| |#2| (-343)) (|has| |#2| (-338)) (|has| |#2| (-157)) (|has| |#2| (-562 (-792))) (|has| |#2| (-124)) (|has| |#2| (-25))) ((-562 (-1166 |#2|)) . T) ((-157) |has| |#2| (-157)) ((-208 |#2|) |has| |#2| (-971)) ((-210) -12 (|has| |#2| (-210)) (|has| |#2| (-971))) ((-262 #0=(-522) |#2|) . T) ((-264 #0# |#2|) . T) ((-285 |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-343) |has| |#2| (-343)) ((-352 |#2|) |has| |#2| (-971)) ((-386 |#2|) |has| |#2| (-1014)) ((-461 |#2|) . T) ((-555 #0# |#2|) . T) ((-483 |#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-590 |#2|) -3844 (|has| |#2| (-971)) (|has| |#2| (-338)) (|has| |#2| (-157))) ((-590 $) -3844 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-157))) ((-584 (-522)) -12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971))) ((-584 |#2|) |has| |#2| (-971)) ((-655 |#2|) -3844 (|has| |#2| (-338)) (|has| |#2| (-157))) ((-664) -3844 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-157))) ((-728) |has| |#2| (-782)) ((-729) -3844 (|has| |#2| (-782)) (|has| |#2| (-730))) ((-730) |has| |#2| (-730)) ((-731) -3844 (|has| |#2| (-782)) (|has| |#2| (-730))) ((-732) -3844 (|has| |#2| (-782)) (|has| |#2| (-730))) ((-782) |has| |#2| (-782)) ((-784) -3844 (|has| |#2| (-782)) (|has| |#2| (-730))) ((-829 (-1085)) -12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971))) ((-962 (-382 (-522))) -12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014))) ((-962 (-522)) -12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014))) ((-962 |#2|) |has| |#2| (-1014)) ((-977 |#2|) -3844 (|has| |#2| (-971)) (|has| |#2| (-338)) (|has| |#2| (-157))) ((-977 $) |has| |#2| (-157)) ((-971) -3844 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-157))) ((-978) -3844 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-157))) ((-1026) -3844 (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-157))) ((-1014) -3844 (|has| |#2| (-1014)) (|has| |#2| (-971)) (|has| |#2| (-782)) (|has| |#2| (-730)) (|has| |#2| (-343)) (|has| |#2| (-338)) (|has| |#2| (-157)) (|has| |#2| (-124)) (|has| |#2| (-25))) ((-1120) . T) ((-1173 |#2|) |has| |#2| (-338)))
+((-3639 (((-217 |#1| |#3|) (-1 |#3| |#2| |#3|) (-217 |#1| |#2|) |#3|) 21)) (-2153 ((|#3| (-1 |#3| |#2| |#3|) (-217 |#1| |#2|) |#3|) 23)) (-3810 (((-217 |#1| |#3|) (-1 |#3| |#2|) (-217 |#1| |#2|)) 18)))
+(((-216 |#1| |#2| |#3|) (-10 -7 (-15 -3639 ((-217 |#1| |#3|) (-1 |#3| |#2| |#3|) (-217 |#1| |#2|) |#3|)) (-15 -2153 (|#3| (-1 |#3| |#2| |#3|) (-217 |#1| |#2|) |#3|)) (-15 -3810 ((-217 |#1| |#3|) (-1 |#3| |#2|) (-217 |#1| |#2|)))) (-708) (-1120) (-1120)) (T -216))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-217 *5 *6)) (-14 *5 (-708)) (-4 *6 (-1120)) (-4 *7 (-1120)) (-5 *2 (-217 *5 *7)) (-5 *1 (-216 *5 *6 *7)))) (-2153 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-217 *5 *6)) (-14 *5 (-708)) (-4 *6 (-1120)) (-4 *2 (-1120)) (-5 *1 (-216 *5 *6 *2)))) (-3639 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-217 *6 *7)) (-14 *6 (-708)) (-4 *7 (-1120)) (-4 *5 (-1120)) (-5 *2 (-217 *6 *5)) (-5 *1 (-216 *6 *7 *5)))))
+(-10 -7 (-15 -3639 ((-217 |#1| |#3|) (-1 |#3| |#2| |#3|) (-217 |#1| |#2|) |#3|)) (-15 -2153 (|#3| (-1 |#3| |#2| |#3|) (-217 |#1| |#2|) |#3|)) (-15 -3810 ((-217 |#1| |#3|) (-1 |#3| |#2|) (-217 |#1| |#2|))))
+((-1419 (((-108) $ $) NIL (|has| |#2| (-1014)))) (-2944 (((-108) $) NIL (|has| |#2| (-124)))) (-2826 (($ (-850)) 56 (|has| |#2| (-971)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1827 (($ $ $) 60 (|has| |#2| (-730)))) (-2265 (((-3 $ "failed") $ $) 48 (|has| |#2| (-124)))) (-2717 (((-108) $ (-708)) 17)) (-1685 (((-708)) NIL (|has| |#2| (-343)))) (-3355 (((-522) $) NIL (|has| |#2| (-782)))) (-2437 ((|#2| $ (-522) |#2|) NIL (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (((-3 |#2| "failed") $) 29 (|has| |#2| (-1014)))) (-1478 (((-522) $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-382 (-522)) $) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) ((|#2| $) 27 (|has| |#2| (-1014)))) (-1226 (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL (|has| |#2| (-971))) (((-628 |#2|) (-628 $)) NIL (|has| |#2| (-971)))) (-3920 (((-3 $ "failed") $) 53 (|has| |#2| (-971)))) (-3344 (($) NIL (|has| |#2| (-343)))) (-2411 ((|#2| $ (-522) |#2|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#2| $ (-522)) 51)) (-3603 (((-108) $) NIL (|has| |#2| (-782)))) (-2395 (((-588 |#2|) $) 15 (|has| $ (-6 -4238)))) (-2859 (((-108) $) NIL (|has| |#2| (-971)))) (-3740 (((-108) $) NIL (|has| |#2| (-782)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) 20 (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-4084 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2201 (((-522) $) 50 (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-2397 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#2| |#2|) $) 41)) (-1475 (((-850) $) NIL (|has| |#2| (-343)))) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#2| (-1014)))) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-2882 (($ (-850)) NIL (|has| |#2| (-343)))) (-4174 (((-1032) $) NIL (|has| |#2| (-1014)))) (-2337 ((|#2| $) NIL (|has| (-522) (-784)))) (-1972 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#2|) $) 24 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1973 (((-588 |#2|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#2| $ (-522) |#2|) NIL) ((|#2| $ (-522)) 21)) (-4024 ((|#2| $ $) NIL (|has| |#2| (-971)))) (-2041 (($ (-1166 |#2|)) 18)) (-3222 (((-126)) NIL (|has| |#2| (-338)))) (-2731 (($ $) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-971)))) (-4187 (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-1166 |#2|) $) 10) (($ (-522)) NIL (-3844 (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014))) (|has| |#2| (-971)))) (($ (-382 (-522))) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (($ |#2|) 13 (|has| |#2| (-1014))) (((-792) $) NIL (|has| |#2| (-562 (-792))))) (-2742 (((-708)) NIL (|has| |#2| (-971)))) (-1381 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-4126 (($ $) NIL (|has| |#2| (-782)))) (-3622 (($ $ (-708)) NIL (|has| |#2| (-971))) (($ $ (-850)) NIL (|has| |#2| (-971)))) (-3697 (($) 35 (|has| |#2| (-124)) CONST)) (-3709 (($) 38 (|has| |#2| (-971)) CONST)) (-2252 (($ $) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-971)))) (-1623 (((-108) $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1597 (((-108) $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1562 (((-108) $ $) 26 (|has| |#2| (-1014)))) (-1609 (((-108) $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1587 (((-108) $ $) 58 (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1682 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1672 (($ $ $) NIL (|has| |#2| (-971))) (($ $) NIL (|has| |#2| (-971)))) (-1661 (($ $ $) 33 (|has| |#2| (-25)))) (** (($ $ (-708)) NIL (|has| |#2| (-971))) (($ $ (-850)) NIL (|has| |#2| (-971)))) (* (($ $ $) 49 (|has| |#2| (-971))) (($ (-522) $) NIL (|has| |#2| (-971))) (($ $ |#2|) 42 (|has| |#2| (-664))) (($ |#2| $) 43 (|has| |#2| (-664))) (($ (-708) $) NIL (|has| |#2| (-124))) (($ (-850) $) NIL (|has| |#2| (-25)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-217 |#1| |#2|) (-215 |#1| |#2|) (-708) (-1120)) (T -217))
NIL
(-215 |#1| |#2|)
-((-2990 (((-522) (-588 (-1068))) 24) (((-522) (-1068)) 19)) (-2459 (((-1171) (-588 (-1068))) 29) (((-1171) (-1068)) 28)) (-2363 (((-1068)) 14)) (-3403 (((-1068) (-522) (-1068)) 16)) (-1893 (((-588 (-1068)) (-588 (-1068)) (-522) (-1068)) 25) (((-1068) (-1068) (-522) (-1068)) 23)) (-2239 (((-588 (-1068)) (-588 (-1068))) 13) (((-588 (-1068)) (-1068)) 11)))
-(((-218) (-10 -7 (-15 -2239 ((-588 (-1068)) (-1068))) (-15 -2239 ((-588 (-1068)) (-588 (-1068)))) (-15 -2363 ((-1068))) (-15 -3403 ((-1068) (-522) (-1068))) (-15 -1893 ((-1068) (-1068) (-522) (-1068))) (-15 -1893 ((-588 (-1068)) (-588 (-1068)) (-522) (-1068))) (-15 -2459 ((-1171) (-1068))) (-15 -2459 ((-1171) (-588 (-1068)))) (-15 -2990 ((-522) (-1068))) (-15 -2990 ((-522) (-588 (-1068)))))) (T -218))
-((-2990 (*1 *2 *3) (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-522)) (-5 *1 (-218)))) (-2990 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-522)) (-5 *1 (-218)))) (-2459 (*1 *2 *3) (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1171)) (-5 *1 (-218)))) (-2459 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-218)))) (-1893 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-588 (-1068))) (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *1 (-218)))) (-1893 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1068)) (-5 *3 (-522)) (-5 *1 (-218)))) (-3403 (*1 *2 *3 *2) (-12 (-5 *2 (-1068)) (-5 *3 (-522)) (-5 *1 (-218)))) (-2363 (*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-218)))) (-2239 (*1 *2 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-218)))) (-2239 (*1 *2 *3) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-218)) (-5 *3 (-1068)))))
-(-10 -7 (-15 -2239 ((-588 (-1068)) (-1068))) (-15 -2239 ((-588 (-1068)) (-588 (-1068)))) (-15 -2363 ((-1068))) (-15 -3403 ((-1068) (-522) (-1068))) (-15 -1893 ((-1068) (-1068) (-522) (-1068))) (-15 -1893 ((-588 (-1068)) (-588 (-1068)) (-522) (-1068))) (-15 -2459 ((-1171) (-1068))) (-15 -2459 ((-1171) (-588 (-1068)))) (-15 -2990 ((-522) (-1068))) (-15 -2990 ((-522) (-588 (-1068)))))
-((-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 9)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 18)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ (-382 (-522)) $) 25) (($ $ (-382 (-522))) NIL)))
-(((-219 |#1|) (-10 -8 (-15 -3510 (|#1| |#1| (-522))) (-15 ** (|#1| |#1| (-522))) (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 ** (|#1| |#1| (-708))) (-15 -3510 (|#1| |#1| (-708))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-850))) (-15 -3510 (|#1| |#1| (-850))) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|))) (-220)) (T -219))
-NIL
-(-10 -8 (-15 -3510 (|#1| |#1| (-522))) (-15 ** (|#1| |#1| (-522))) (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 ** (|#1| |#1| (-708))) (-15 -3510 (|#1| |#1| (-708))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-850))) (-15 -3510 (|#1| |#1| (-850))) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 39)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 44)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 40)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 41)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ (-382 (-522)) $) 43) (($ $ (-382 (-522))) 42)))
+((-4064 (((-522) (-588 (-1068))) 24) (((-522) (-1068)) 19)) (-2539 (((-1171) (-588 (-1068))) 29) (((-1171) (-1068)) 28)) (-2013 (((-1068)) 14)) (-3788 (((-1068) (-522) (-1068)) 16)) (-1980 (((-588 (-1068)) (-588 (-1068)) (-522) (-1068)) 25) (((-1068) (-1068) (-522) (-1068)) 23)) (-2272 (((-588 (-1068)) (-588 (-1068))) 13) (((-588 (-1068)) (-1068)) 11)))
+(((-218) (-10 -7 (-15 -2272 ((-588 (-1068)) (-1068))) (-15 -2272 ((-588 (-1068)) (-588 (-1068)))) (-15 -2013 ((-1068))) (-15 -3788 ((-1068) (-522) (-1068))) (-15 -1980 ((-1068) (-1068) (-522) (-1068))) (-15 -1980 ((-588 (-1068)) (-588 (-1068)) (-522) (-1068))) (-15 -2539 ((-1171) (-1068))) (-15 -2539 ((-1171) (-588 (-1068)))) (-15 -4064 ((-522) (-1068))) (-15 -4064 ((-522) (-588 (-1068)))))) (T -218))
+((-4064 (*1 *2 *3) (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-522)) (-5 *1 (-218)))) (-4064 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-522)) (-5 *1 (-218)))) (-2539 (*1 *2 *3) (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1171)) (-5 *1 (-218)))) (-2539 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-218)))) (-1980 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-588 (-1068))) (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *1 (-218)))) (-1980 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1068)) (-5 *3 (-522)) (-5 *1 (-218)))) (-3788 (*1 *2 *3 *2) (-12 (-5 *2 (-1068)) (-5 *3 (-522)) (-5 *1 (-218)))) (-2013 (*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-218)))) (-2272 (*1 *2 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-218)))) (-2272 (*1 *2 *3) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-218)) (-5 *3 (-1068)))))
+(-10 -7 (-15 -2272 ((-588 (-1068)) (-1068))) (-15 -2272 ((-588 (-1068)) (-588 (-1068)))) (-15 -2013 ((-1068))) (-15 -3788 ((-1068) (-522) (-1068))) (-15 -1980 ((-1068) (-1068) (-522) (-1068))) (-15 -1980 ((-588 (-1068)) (-588 (-1068)) (-522) (-1068))) (-15 -2539 ((-1171) (-1068))) (-15 -2539 ((-1171) (-588 (-1068)))) (-15 -4064 ((-522) (-1068))) (-15 -4064 ((-522) (-588 (-1068)))))
+((-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 9)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 18)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ (-382 (-522)) $) 25) (($ $ (-382 (-522))) NIL)))
+(((-219 |#1|) (-10 -8 (-15 -3622 (|#1| |#1| (-522))) (-15 ** (|#1| |#1| (-522))) (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 ** (|#1| |#1| (-708))) (-15 -3622 (|#1| |#1| (-708))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-850))) (-15 -3622 (|#1| |#1| (-850))) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|))) (-220)) (T -219))
+NIL
+(-10 -8 (-15 -3622 (|#1| |#1| (-522))) (-15 ** (|#1| |#1| (-522))) (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 ** (|#1| |#1| (-708))) (-15 -3622 (|#1| |#1| (-708))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-850))) (-15 -3622 (|#1| |#1| (-850))) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 39)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 44)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 40)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 41)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ (-382 (-522)) $) 43) (($ $ (-382 (-522))) 42)))
(((-220) (-1197)) (T -220))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-220)) (-5 *2 (-522)))) (-3510 (*1 *1 *1 *2) (-12 (-4 *1 (-220)) (-5 *2 (-522)))) (-3098 (*1 *1 *1) (-4 *1 (-220))))
-(-13 (-266) (-37 (-382 (-522))) (-10 -8 (-15 ** ($ $ (-522))) (-15 -3510 ($ $ (-522))) (-15 -3098 ($ $))))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-220)) (-5 *2 (-522)))) (-3622 (*1 *1 *1 *2) (-12 (-4 *1 (-220)) (-5 *2 (-522)))) (-3193 (*1 *1 *1) (-4 *1 (-220))))
+(-13 (-266) (-37 (-382 (-522))) (-10 -8 (-15 ** ($ $ (-522))) (-15 -3622 ($ $ (-522))) (-15 -3193 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-266) . T) ((-590 #0#) . T) ((-590 $) . T) ((-655 #0#) . T) ((-664) . T) ((-977 #0#) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3435 ((|#1| $) 48)) (-3835 (($ $) 57)) (-4141 (((-108) $ (-708)) 8)) (-3628 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-3267 (($ $ $) 53 (|has| $ (-6 -4239)))) (-1350 (($ $ $) 52 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-3175 (($) 7 T CONST)) (-3463 (($ $) 56)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) 50)) (-2030 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-3621 (($ $) 55)) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-1279 (((-588 |#1|) $) 45)) (-1754 (((-108) $) 49)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1442 ((|#1| $) 59)) (-4002 (($ $) 58)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ "value") 47)) (-2011 (((-522) $ $) 44)) (-3042 (((-108) $) 46)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2630 (($ $ $) 54 (|has| $ (-6 -4239)))) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) 51)) (-2425 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3526 ((|#1| $) 48)) (-3961 (($ $) 57)) (-2717 (((-108) $ (-708)) 8)) (-1198 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-1854 (($ $ $) 53 (|has| $ (-6 -4239)))) (-3432 (($ $ $) 52 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-3367 (($) 7 T CONST)) (-2009 (($ $) 56)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) 50)) (-2402 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-3745 (($ $) 55)) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2548 (((-588 |#1|) $) 45)) (-3394 (((-108) $) 49)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1442 ((|#1| $) 59)) (-3655 (($ $) 58)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ "value") 47)) (-3381 (((-522) $ $) 44)) (-3395 (((-108) $) 46)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2335 (($ $ $) 54 (|has| $ (-6 -4239)))) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) 51)) (-3294 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-221 |#1|) (-1197) (-1120)) (T -221))
-((-1442 (*1 *2 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-4002 (*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-3835 (*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-3463 (*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-3621 (*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-2630 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-3267 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-1350 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-221 *2)) (-4 *2 (-1120)))))
-(-13 (-936 |t#1|) (-10 -8 (-15 -1442 (|t#1| $)) (-15 -4002 ($ $)) (-15 -3835 ($ $)) (-15 -3463 ($ $)) (-15 -3621 ($ $)) (IF (|has| $ (-6 -4239)) (PROGN (-15 -2630 ($ $ $)) (-15 -3267 ($ $ $)) (-15 -1350 ($ $ $))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-936 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3435 ((|#1| $) NIL)) (-2093 ((|#1| $) NIL)) (-3835 (($ $) NIL)) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-3487 (($ $ (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) $) NIL (|has| |#1| (-784))) (((-108) (-1 (-108) |#1| |#1|) $) NIL)) (-3537 (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784)))) (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3216 (($ $) 10 (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-3628 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-1243 (($ $ $) NIL (|has| $ (-6 -4239)))) (-2049 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-1346 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "rest" $) NIL (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-2790 (($ (-1 (-108) |#1|) $) NIL)) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2081 ((|#1| $) NIL)) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2306 (($ $) NIL) (($ $ (-708)) NIL)) (-3362 (($ $) NIL (|has| |#1| (-1014)))) (-2333 (($ $) 7 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3859 (($ |#1| $) NIL (|has| |#1| (-1014))) (($ (-1 (-108) |#1|) $) NIL)) (-1423 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3854 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) NIL)) (-3069 (((-108) $) NIL)) (-3238 (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014))) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) (-1 (-108) |#1|) $) NIL)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) NIL)) (-2030 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1811 (($ (-708) |#1|) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-1369 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-2160 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1580 (($ |#1|) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-1279 (((-588 |#1|) $) NIL)) (-1754 (((-108) $) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1442 ((|#1| $) NIL) (($ $ (-708)) NIL)) (-4095 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-1661 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2294 ((|#1| $) NIL) (($ $ (-708)) NIL)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2602 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-2855 (((-108) $) NIL)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1133 (-522))) NIL) ((|#1| $ (-522)) NIL) ((|#1| $ (-522) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-708) $ "count") 16)) (-2011 (((-522) $ $) NIL)) (-3681 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3696 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3325 (($ (-588 |#1|)) 22)) (-3042 (((-108) $) NIL)) (-3107 (($ $) NIL)) (-2646 (($ $) NIL (|has| $ (-6 -4239)))) (-2393 (((-708) $) NIL)) (-2122 (($ $) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) NIL)) (-2630 (($ $ $) NIL) (($ $ |#1|) NIL)) (-4165 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-588 $)) NIL) (($ $ |#1|) NIL)) (-2190 (($ (-588 |#1|)) 17) (((-588 |#1|) $) 18) (((-792) $) 21 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) NIL)) (-2425 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3480 (((-708) $) 14 (|has| $ (-6 -4238)))))
-(((-222 |#1|) (-13 (-608 |#1|) (-10 -8 (-15 -2190 ($ (-588 |#1|))) (-15 -2190 ((-588 |#1|) $)) (-15 -3325 ($ (-588 |#1|))) (-15 -2545 ($ $ "unique")) (-15 -2545 ($ $ "sort")) (-15 -2545 ((-708) $ "count")))) (-784)) (T -222))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-222 *3)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-222 *3)) (-4 *3 (-784)))) (-3325 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-222 *3)))) (-2545 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-222 *3)) (-4 *3 (-784)))) (-2545 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-222 *3)) (-4 *3 (-784)))) (-2545 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-708)) (-5 *1 (-222 *4)) (-4 *4 (-784)))))
-(-13 (-608 |#1|) (-10 -8 (-15 -2190 ($ (-588 |#1|))) (-15 -2190 ((-588 |#1|) $)) (-15 -3325 ($ (-588 |#1|))) (-15 -2545 ($ $ "unique")) (-15 -2545 ($ $ "sort")) (-15 -2545 ((-708) $ "count"))))
-((-1343 (((-3 (-708) "failed") |#1| |#1| (-708)) 27)))
-(((-223 |#1|) (-10 -7 (-15 -1343 ((-3 (-708) "failed") |#1| |#1| (-708)))) (-13 (-664) (-343) (-10 -7 (-15 ** (|#1| |#1| (-522)))))) (T -223))
-((-1343 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-708)) (-4 *3 (-13 (-664) (-343) (-10 -7 (-15 ** (*3 *3 (-522)))))) (-5 *1 (-223 *3)))))
-(-10 -7 (-15 -1343 ((-3 (-708) "failed") |#1| |#1| (-708))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4090 (((-588 (-794 |#1|)) $) NIL)) (-1282 (((-1081 $) $ (-794 |#1|)) NIL) (((-1081 |#2|) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#2| (-514)))) (-2022 (($ $) NIL (|has| |#2| (-514)))) (-3739 (((-108) $) NIL (|has| |#2| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 (-794 |#1|))) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3119 (($ $) NIL (|has| |#2| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#2| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-794 |#1|) "failed") $) NIL)) (-1484 ((|#2| $) NIL) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-794 |#1|) $) NIL)) (-1950 (($ $ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2388 (($ $ (-588 (-522))) NIL)) (-3156 (($ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#2| (-838)))) (-2671 (($ $ |#2| (-217 (-3480 |#1|) (-708)) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-4073 (($ (-1081 |#2|) (-794 |#1|)) NIL) (($ (-1081 $) (-794 |#1|)) NIL)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#2| (-217 (-3480 |#1|) (-708))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ (-794 |#1|)) NIL)) (-2925 (((-217 (-3480 |#1|) (-708)) $) NIL) (((-708) $ (-794 |#1|)) NIL) (((-588 (-708)) $ (-588 (-794 |#1|))) NIL)) (-2814 (($ $ $) NIL (|has| |#2| (-784)))) (-2446 (($ $ $) NIL (|has| |#2| (-784)))) (-3861 (($ (-1 (-217 (-3480 |#1|) (-708)) (-217 (-3480 |#1|) (-708))) $) NIL)) (-1391 (($ (-1 |#2| |#2|) $) NIL)) (-3145 (((-3 (-794 |#1|) "failed") $) NIL)) (-3128 (($ $) NIL)) (-3138 ((|#2| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-2385 (((-1068) $) NIL)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-794 |#1|)) (|:| -1400 (-708))) "failed") $) NIL)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) NIL)) (-3118 ((|#2| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#2| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#2| (-838)))) (-2232 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-514)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-794 |#1|) |#2|) NIL) (($ $ (-588 (-794 |#1|)) (-588 |#2|)) NIL) (($ $ (-794 |#1|) $) NIL) (($ $ (-588 (-794 |#1|)) (-588 $)) NIL)) (-2769 (($ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2157 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2793 (((-217 (-3480 |#1|) (-708)) $) NIL) (((-708) $ (-794 |#1|)) NIL) (((-588 (-708)) $ (-588 (-794 |#1|))) NIL)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-794 |#1|) (-563 (-498))) (|has| |#2| (-563 (-498)))))) (-2255 ((|#2| $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) NIL) (($ (-794 |#1|)) NIL) (($ (-382 (-522))) NIL (-3708 (|has| |#2| (-37 (-382 (-522)))) (|has| |#2| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#2| (-514)))) (-3916 (((-588 |#2|) $) NIL)) (-3243 ((|#2| $ (-217 (-3480 |#1|) (-708))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#2| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#2| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#2| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-1574 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1620 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#2| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#2| (-37 (-382 (-522))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-224 |#1| |#2|) (-13 (-878 |#2| (-217 (-3480 |#1|) (-708)) (-794 |#1|)) (-10 -8 (-15 -2388 ($ $ (-588 (-522)))))) (-588 (-1085)) (-971)) (T -224))
-((-2388 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-224 *3 *4)) (-14 *3 (-588 (-1085))) (-4 *4 (-971)))))
-(-13 (-878 |#2| (-217 (-3480 |#1|) (-708)) (-794 |#1|)) (-10 -8 (-15 -2388 ($ $ (-588 (-522))))))
-((-1296 (((-1171) $) 12)) (-1240 (((-166) $) 9)) (-2474 (($ (-166)) 10)) (-2190 (((-792) $) 7)))
-(((-225) (-13 (-562 (-792)) (-10 -8 (-15 -1240 ((-166) $)) (-15 -2474 ($ (-166))) (-15 -1296 ((-1171) $))))) (T -225))
-((-1240 (*1 *2 *1) (-12 (-5 *2 (-166)) (-5 *1 (-225)))) (-2474 (*1 *1 *2) (-12 (-5 *2 (-166)) (-5 *1 (-225)))) (-1296 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-225)))))
-(-13 (-562 (-792)) (-10 -8 (-15 -1240 ((-166) $)) (-15 -2474 ($ (-166))) (-15 -1296 ((-1171) $))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2468 (($ (-850)) NIL (|has| |#4| (-971)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1210 (($ $ $) NIL (|has| |#4| (-730)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-1629 (((-708)) NIL (|has| |#4| (-343)))) (-1341 (((-522) $) NIL (|has| |#4| (-782)))) (-2379 ((|#4| $ (-522) |#4|) NIL (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1014))) (((-3 (-522) "failed") $) NIL (-12 (|has| |#4| (-962 (-522))) (|has| |#4| (-1014)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#4| (-962 (-382 (-522)))) (|has| |#4| (-1014))))) (-1484 ((|#4| $) NIL (|has| |#4| (-1014))) (((-522) $) NIL (-12 (|has| |#4| (-962 (-522))) (|has| |#4| (-1014)))) (((-382 (-522)) $) NIL (-12 (|has| |#4| (-962 (-382 (-522)))) (|has| |#4| (-1014))))) (-2096 (((-2 (|:| -1222 (-628 |#4|)) (|:| |vec| (-1166 |#4|))) (-628 $) (-1166 $)) NIL (|has| |#4| (-971))) (((-628 |#4|) (-628 $)) NIL (|has| |#4| (-971))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#4| (-584 (-522))) (|has| |#4| (-971)))) (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#4| (-584 (-522))) (|has| |#4| (-971))))) (-2682 (((-3 $ "failed") $) NIL (|has| |#4| (-971)))) (-3255 (($) NIL (|has| |#4| (-343)))) (-3854 ((|#4| $ (-522) |#4|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#4| $ (-522)) NIL)) (-3687 (((-108) $) NIL (|has| |#4| (-782)))) (-3837 (((-588 |#4|) $) NIL (|has| $ (-6 -4238)))) (-2782 (((-108) $) NIL (|has| |#4| (-971)))) (-2556 (((-108) $) NIL (|has| |#4| (-782)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (-3708 (|has| |#4| (-730)) (|has| |#4| (-782))))) (-3308 (((-588 |#4|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (-3708 (|has| |#4| (-730)) (|has| |#4| (-782))))) (-3838 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#4| |#4|) $) NIL)) (-2120 (((-850) $) NIL (|has| |#4| (-343)))) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-2717 (($ (-850)) NIL (|has| |#4| (-343)))) (-4151 (((-1032) $) NIL)) (-2294 ((|#4| $) NIL (|has| (-522) (-784)))) (-2602 (($ $ |#4|) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#4|))) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 |#4|) (-588 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-1525 (((-588 |#4|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#4| $ (-522) |#4|) NIL) ((|#4| $ (-522)) 12)) (-1883 ((|#4| $ $) NIL (|has| |#4| (-971)))) (-1962 (($ (-1166 |#4|)) NIL)) (-4078 (((-126)) NIL (|has| |#4| (-338)))) (-2157 (($ $ (-1 |#4| |#4|) (-708)) NIL (|has| |#4| (-971))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-971))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#4| (-210)) (|has| |#4| (-971)))) (($ $) NIL (-12 (|has| |#4| (-210)) (|has| |#4| (-971))))) (-4168 (((-708) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238))) (((-708) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-1166 |#4|) $) NIL) (((-792) $) NIL) (($ |#4|) NIL (|has| |#4| (-1014))) (($ (-522)) NIL (-3708 (-12 (|has| |#4| (-962 (-522))) (|has| |#4| (-1014))) (|has| |#4| (-971)))) (($ (-382 (-522))) NIL (-12 (|has| |#4| (-962 (-382 (-522)))) (|has| |#4| (-1014))))) (-2323 (((-708)) NIL (|has| |#4| (-971)))) (-3648 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2241 (($ $) NIL (|has| |#4| (-782)))) (-3510 (($ $ (-708)) NIL (|has| |#4| (-971))) (($ $ (-850)) NIL (|has| |#4| (-971)))) (-3566 (($) NIL T CONST)) (-3577 (($) NIL (|has| |#4| (-971)) CONST)) (-2213 (($ $ (-1 |#4| |#4|) (-708)) NIL (|has| |#4| (-971))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-971))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#4| (-210)) (|has| |#4| (-971)))) (($ $) NIL (-12 (|has| |#4| (-210)) (|has| |#4| (-971))))) (-1574 (((-108) $ $) NIL (-3708 (|has| |#4| (-730)) (|has| |#4| (-782))))) (-1558 (((-108) $ $) NIL (-3708 (|has| |#4| (-730)) (|has| |#4| (-782))))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (-3708 (|has| |#4| (-730)) (|has| |#4| (-782))))) (-1549 (((-108) $ $) NIL (-3708 (|has| |#4| (-730)) (|has| |#4| (-782))))) (-1620 (($ $ |#4|) NIL (|has| |#4| (-338)))) (-1612 (($ $ $) NIL) (($ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-708)) NIL (|has| |#4| (-971))) (($ $ (-850)) NIL (|has| |#4| (-971)))) (* (($ |#2| $) 14) (($ (-522) $) NIL) (($ (-708) $) NIL) (($ (-850) $) NIL) (($ |#3| $) 18) (($ $ |#4|) NIL (|has| |#4| (-664))) (($ |#4| $) NIL (|has| |#4| (-664))) (($ $ $) NIL (|has| |#4| (-971)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1442 (*1 *2 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-3655 (*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-3961 (*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-2009 (*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-3745 (*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-2335 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-1854 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-221 *2)) (-4 *2 (-1120)))) (-3432 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-221 *2)) (-4 *2 (-1120)))))
+(-13 (-936 |t#1|) (-10 -8 (-15 -1442 (|t#1| $)) (-15 -3655 ($ $)) (-15 -3961 ($ $)) (-15 -2009 ($ $)) (-15 -3745 ($ $)) (IF (|has| $ (-6 -4239)) (PROGN (-15 -2335 ($ $ $)) (-15 -1854 ($ $ $)) (-15 -3432 ($ $ $))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-936 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3526 ((|#1| $) NIL)) (-2126 ((|#1| $) NIL)) (-3961 (($ $) NIL)) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-2211 (($ $ (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) $) NIL (|has| |#1| (-784))) (((-108) (-1 (-108) |#1| |#1|) $) NIL)) (-2806 (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784)))) (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3296 (($ $) 10 (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1198 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-2398 (($ $ $) NIL (|has| $ (-6 -4239)))) (-2631 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-3393 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "rest" $) NIL (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-1213 (($ (-1 (-108) |#1|) $) NIL)) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2116 ((|#1| $) NIL)) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-2352 (($ $) NIL) (($ $ (-708)) NIL)) (-1581 (($ $) NIL (|has| |#1| (-1014)))) (-2379 (($ $) 7 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1700 (($ |#1| $) NIL (|has| |#1| (-1014))) (($ (-1 (-108) |#1|) $) NIL)) (-1424 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2411 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) NIL)) (-3614 (((-108) $) NIL)) (-3314 (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014))) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) (-1 (-108) |#1|) $) NIL)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) NIL)) (-2402 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1893 (($ (-708) |#1|) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-3557 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-3164 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1614 (($ |#1|) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2548 (((-588 |#1|) $) NIL)) (-3394 (((-108) $) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1442 ((|#1| $) NIL) (($ $ (-708)) NIL)) (-3365 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-1731 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2337 ((|#1| $) NIL) (($ $ (-708)) NIL)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1972 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-4196 (((-108) $) NIL)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1133 (-522))) NIL) ((|#1| $ (-522)) NIL) ((|#1| $ (-522) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-708) $ "count") 16)) (-3381 (((-522) $ $) NIL)) (-3551 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3835 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-1867 (($ (-588 |#1|)) 22)) (-3395 (((-108) $) NIL)) (-2885 (($ $) NIL)) (-1668 (($ $) NIL (|has| $ (-6 -4239)))) (-1321 (((-708) $) NIL)) (-1502 (($ $) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) NIL)) (-2335 (($ $ $) NIL) (($ $ |#1|) NIL)) (-4170 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-588 $)) NIL) (($ $ |#1|) NIL)) (-2217 (($ (-588 |#1|)) 17) (((-588 |#1|) $) 18) (((-792) $) 21 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) NIL)) (-3294 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3591 (((-708) $) 14 (|has| $ (-6 -4238)))))
+(((-222 |#1|) (-13 (-608 |#1|) (-10 -8 (-15 -2217 ($ (-588 |#1|))) (-15 -2217 ((-588 |#1|) $)) (-15 -1867 ($ (-588 |#1|))) (-15 -2683 ($ $ "unique")) (-15 -2683 ($ $ "sort")) (-15 -2683 ((-708) $ "count")))) (-784)) (T -222))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-222 *3)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-222 *3)) (-4 *3 (-784)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-222 *3)))) (-2683 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-222 *3)) (-4 *3 (-784)))) (-2683 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-222 *3)) (-4 *3 (-784)))) (-2683 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-708)) (-5 *1 (-222 *4)) (-4 *4 (-784)))))
+(-13 (-608 |#1|) (-10 -8 (-15 -2217 ($ (-588 |#1|))) (-15 -2217 ((-588 |#1|) $)) (-15 -1867 ($ (-588 |#1|))) (-15 -2683 ($ $ "unique")) (-15 -2683 ($ $ "sort")) (-15 -2683 ((-708) $ "count"))))
+((-3375 (((-3 (-708) "failed") |#1| |#1| (-708)) 27)))
+(((-223 |#1|) (-10 -7 (-15 -3375 ((-3 (-708) "failed") |#1| |#1| (-708)))) (-13 (-664) (-343) (-10 -7 (-15 ** (|#1| |#1| (-522)))))) (T -223))
+((-3375 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-708)) (-4 *3 (-13 (-664) (-343) (-10 -7 (-15 ** (*3 *3 (-522)))))) (-5 *1 (-223 *3)))))
+(-10 -7 (-15 -3375 ((-3 (-708) "failed") |#1| |#1| (-708))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3533 (((-588 (-794 |#1|)) $) NIL)) (-1264 (((-1081 $) $ (-794 |#1|)) NIL) (((-1081 |#2|) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#2| (-514)))) (-2298 (($ $) NIL (|has| |#2| (-514)))) (-3007 (((-108) $) NIL (|has| |#2| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 (-794 |#1|))) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2961 (($ $) NIL (|has| |#2| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#2| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-794 |#1|) "failed") $) NIL)) (-1478 ((|#2| $) NIL) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-794 |#1|) $) NIL)) (-2908 (($ $ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2354 (($ $ (-588 (-522))) NIL)) (-3241 (($ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#2| (-838)))) (-3792 (($ $ |#2| (-217 (-3591 |#1|) (-708)) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-3520 (($ (-1081 |#2|) (-794 |#1|)) NIL) (($ (-1081 $) (-794 |#1|)) NIL)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#2| (-217 (-3591 |#1|) (-708))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ (-794 |#1|)) NIL)) (-3564 (((-217 (-3591 |#1|) (-708)) $) NIL) (((-708) $ (-794 |#1|)) NIL) (((-588 (-708)) $ (-588 (-794 |#1|))) NIL)) (-1308 (($ $ $) NIL (|has| |#2| (-784)))) (-2524 (($ $ $) NIL (|has| |#2| (-784)))) (-1723 (($ (-1 (-217 (-3591 |#1|) (-708)) (-217 (-3591 |#1|) (-708))) $) NIL)) (-3810 (($ (-1 |#2| |#2|) $) NIL)) (-3155 (((-3 (-794 |#1|) "failed") $) NIL)) (-3216 (($ $) NIL)) (-3224 ((|#2| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-2311 (((-1068) $) NIL)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| (-794 |#1|)) (|:| -3858 (-708))) "failed") $) NIL)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) NIL)) (-3207 ((|#2| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#2| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#2| (-838)))) (-2276 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-514)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-794 |#1|) |#2|) NIL) (($ $ (-588 (-794 |#1|)) (-588 |#2|)) NIL) (($ $ (-794 |#1|) $) NIL) (($ $ (-588 (-794 |#1|)) (-588 $)) NIL)) (-1615 (($ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2731 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2487 (((-217 (-3591 |#1|) (-708)) $) NIL) (((-708) $ (-794 |#1|)) NIL) (((-588 (-708)) $ (-588 (-794 |#1|))) NIL)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-794 |#1|) (-563 (-498))) (|has| |#2| (-563 (-498)))))) (-2988 ((|#2| $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) NIL) (($ (-794 |#1|)) NIL) (($ (-382 (-522))) NIL (-3844 (|has| |#2| (-37 (-382 (-522)))) (|has| |#2| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#2| (-514)))) (-2180 (((-588 |#2|) $) NIL)) (-1643 ((|#2| $ (-217 (-3591 |#1|) (-708))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#2| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#2| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#2| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-1623 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1682 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#2| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#2| (-37 (-382 (-522))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-224 |#1| |#2|) (-13 (-878 |#2| (-217 (-3591 |#1|) (-708)) (-794 |#1|)) (-10 -8 (-15 -2354 ($ $ (-588 (-522)))))) (-588 (-1085)) (-971)) (T -224))
+((-2354 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-224 *3 *4)) (-14 *3 (-588 (-1085))) (-4 *4 (-971)))))
+(-13 (-878 |#2| (-217 (-3591 |#1|) (-708)) (-794 |#1|)) (-10 -8 (-15 -2354 ($ $ (-588 (-522))))))
+((-1280 (((-1171) $) 12)) (-2353 (((-166) $) 9)) (-2874 (($ (-166)) 10)) (-2217 (((-792) $) 7)))
+(((-225) (-13 (-562 (-792)) (-10 -8 (-15 -2353 ((-166) $)) (-15 -2874 ($ (-166))) (-15 -1280 ((-1171) $))))) (T -225))
+((-2353 (*1 *2 *1) (-12 (-5 *2 (-166)) (-5 *1 (-225)))) (-2874 (*1 *1 *2) (-12 (-5 *2 (-166)) (-5 *1 (-225)))) (-1280 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-225)))))
+(-13 (-562 (-792)) (-10 -8 (-15 -2353 ((-166) $)) (-15 -2874 ($ (-166))) (-15 -1280 ((-1171) $))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2826 (($ (-850)) NIL (|has| |#4| (-971)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1827 (($ $ $) NIL (|has| |#4| (-730)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1685 (((-708)) NIL (|has| |#4| (-343)))) (-3355 (((-522) $) NIL (|has| |#4| (-782)))) (-2437 ((|#4| $ (-522) |#4|) NIL (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1014))) (((-3 (-522) "failed") $) NIL (-12 (|has| |#4| (-962 (-522))) (|has| |#4| (-1014)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#4| (-962 (-382 (-522)))) (|has| |#4| (-1014))))) (-1478 ((|#4| $) NIL (|has| |#4| (-1014))) (((-522) $) NIL (-12 (|has| |#4| (-962 (-522))) (|has| |#4| (-1014)))) (((-382 (-522)) $) NIL (-12 (|has| |#4| (-962 (-382 (-522)))) (|has| |#4| (-1014))))) (-1226 (((-2 (|:| -2149 (-628 |#4|)) (|:| |vec| (-1166 |#4|))) (-628 $) (-1166 $)) NIL (|has| |#4| (-971))) (((-628 |#4|) (-628 $)) NIL (|has| |#4| (-971))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#4| (-584 (-522))) (|has| |#4| (-971)))) (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#4| (-584 (-522))) (|has| |#4| (-971))))) (-3920 (((-3 $ "failed") $) NIL (|has| |#4| (-971)))) (-3344 (($) NIL (|has| |#4| (-343)))) (-2411 ((|#4| $ (-522) |#4|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#4| $ (-522)) NIL)) (-3603 (((-108) $) NIL (|has| |#4| (-782)))) (-2395 (((-588 |#4|) $) NIL (|has| $ (-6 -4238)))) (-2859 (((-108) $) NIL (|has| |#4| (-971)))) (-3740 (((-108) $) NIL (|has| |#4| (-782)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (-3844 (|has| |#4| (-730)) (|has| |#4| (-782))))) (-4084 (((-588 |#4|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (-3844 (|has| |#4| (-730)) (|has| |#4| (-782))))) (-2397 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#4| |#4|) $) NIL)) (-1475 (((-850) $) NIL (|has| |#4| (-343)))) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-2882 (($ (-850)) NIL (|has| |#4| (-343)))) (-4174 (((-1032) $) NIL)) (-2337 ((|#4| $) NIL (|has| (-522) (-784)))) (-1972 (($ $ |#4|) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#4|))) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 |#4|) (-588 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-1973 (((-588 |#4|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#4| $ (-522) |#4|) NIL) ((|#4| $ (-522)) 12)) (-4024 ((|#4| $ $) NIL (|has| |#4| (-971)))) (-2041 (($ (-1166 |#4|)) NIL)) (-3222 (((-126)) NIL (|has| |#4| (-338)))) (-2731 (($ $ (-1 |#4| |#4|) (-708)) NIL (|has| |#4| (-971))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-971))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#4| (-210)) (|has| |#4| (-971)))) (($ $) NIL (-12 (|has| |#4| (-210)) (|has| |#4| (-971))))) (-4187 (((-708) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238))) (((-708) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-1166 |#4|) $) NIL) (((-792) $) NIL) (($ |#4|) NIL (|has| |#4| (-1014))) (($ (-522)) NIL (-3844 (-12 (|has| |#4| (-962 (-522))) (|has| |#4| (-1014))) (|has| |#4| (-971)))) (($ (-382 (-522))) NIL (-12 (|has| |#4| (-962 (-382 (-522)))) (|has| |#4| (-1014))))) (-2742 (((-708)) NIL (|has| |#4| (-971)))) (-1381 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-4126 (($ $) NIL (|has| |#4| (-782)))) (-3622 (($ $ (-708)) NIL (|has| |#4| (-971))) (($ $ (-850)) NIL (|has| |#4| (-971)))) (-3697 (($) NIL T CONST)) (-3709 (($) NIL (|has| |#4| (-971)) CONST)) (-2252 (($ $ (-1 |#4| |#4|) (-708)) NIL (|has| |#4| (-971))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-971))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#4| (-829 (-1085))) (|has| |#4| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#4| (-210)) (|has| |#4| (-971)))) (($ $) NIL (-12 (|has| |#4| (-210)) (|has| |#4| (-971))))) (-1623 (((-108) $ $) NIL (-3844 (|has| |#4| (-730)) (|has| |#4| (-782))))) (-1597 (((-108) $ $) NIL (-3844 (|has| |#4| (-730)) (|has| |#4| (-782))))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (-3844 (|has| |#4| (-730)) (|has| |#4| (-782))))) (-1587 (((-108) $ $) NIL (-3844 (|has| |#4| (-730)) (|has| |#4| (-782))))) (-1682 (($ $ |#4|) NIL (|has| |#4| (-338)))) (-1672 (($ $ $) NIL) (($ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-708)) NIL (|has| |#4| (-971))) (($ $ (-850)) NIL (|has| |#4| (-971)))) (* (($ |#2| $) 14) (($ (-522) $) NIL) (($ (-708) $) NIL) (($ (-850) $) NIL) (($ |#3| $) 18) (($ $ |#4|) NIL (|has| |#4| (-664))) (($ |#4| $) NIL (|has| |#4| (-664))) (($ $ $) NIL (|has| |#4| (-971)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-226 |#1| |#2| |#3| |#4|) (-13 (-215 |#1| |#4|) (-590 |#2|) (-590 |#3|)) (-850) (-971) (-1035 |#1| |#2| (-217 |#1| |#2|) (-217 |#1| |#2|)) (-590 |#2|)) (T -226))
NIL
(-13 (-215 |#1| |#4|) (-590 |#2|) (-590 |#3|))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2468 (($ (-850)) NIL (|has| |#3| (-971)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1210 (($ $ $) NIL (|has| |#3| (-730)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-1629 (((-708)) NIL (|has| |#3| (-343)))) (-1341 (((-522) $) NIL (|has| |#3| (-782)))) (-2379 ((|#3| $ (-522) |#3|) NIL (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1014))) (((-3 (-522) "failed") $) NIL (-12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014))))) (-1484 ((|#3| $) NIL (|has| |#3| (-1014))) (((-522) $) NIL (-12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014)))) (((-382 (-522)) $) NIL (-12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014))))) (-2096 (((-2 (|:| -1222 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 $) (-1166 $)) NIL (|has| |#3| (-971))) (((-628 |#3|) (-628 $)) NIL (|has| |#3| (-971))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#3| (-584 (-522))) (|has| |#3| (-971)))) (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#3| (-584 (-522))) (|has| |#3| (-971))))) (-2682 (((-3 $ "failed") $) NIL (|has| |#3| (-971)))) (-3255 (($) NIL (|has| |#3| (-343)))) (-3854 ((|#3| $ (-522) |#3|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#3| $ (-522)) NIL)) (-3687 (((-108) $) NIL (|has| |#3| (-782)))) (-3837 (((-588 |#3|) $) NIL (|has| $ (-6 -4238)))) (-2782 (((-108) $) NIL (|has| |#3| (-971)))) (-2556 (((-108) $) NIL (|has| |#3| (-782)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (-3708 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-3308 (((-588 |#3|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (-3708 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-3838 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#3| |#3|) $) NIL)) (-2120 (((-850) $) NIL (|has| |#3| (-343)))) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-2717 (($ (-850)) NIL (|has| |#3| (-343)))) (-4151 (((-1032) $) NIL)) (-2294 ((|#3| $) NIL (|has| (-522) (-784)))) (-2602 (($ $ |#3|) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#3|))) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-270 |#3|)) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-588 |#3|) (-588 |#3|)) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-1525 (((-588 |#3|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#3| $ (-522) |#3|) NIL) ((|#3| $ (-522)) 11)) (-1883 ((|#3| $ $) NIL (|has| |#3| (-971)))) (-1962 (($ (-1166 |#3|)) NIL)) (-4078 (((-126)) NIL (|has| |#3| (-338)))) (-2157 (($ $ (-1 |#3| |#3|) (-708)) NIL (|has| |#3| (-971))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-971))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971)))) (($ $) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971))))) (-4168 (((-708) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238))) (((-708) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-1166 |#3|) $) NIL) (((-792) $) NIL) (($ |#3|) NIL (|has| |#3| (-1014))) (($ (-522)) NIL (-3708 (-12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014))) (|has| |#3| (-971)))) (($ (-382 (-522))) NIL (-12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014))))) (-2323 (((-708)) NIL (|has| |#3| (-971)))) (-3648 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-2241 (($ $) NIL (|has| |#3| (-782)))) (-3510 (($ $ (-708)) NIL (|has| |#3| (-971))) (($ $ (-850)) NIL (|has| |#3| (-971)))) (-3566 (($) NIL T CONST)) (-3577 (($) NIL (|has| |#3| (-971)) CONST)) (-2213 (($ $ (-1 |#3| |#3|) (-708)) NIL (|has| |#3| (-971))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-971))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971)))) (($ $) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971))))) (-1574 (((-108) $ $) NIL (-3708 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1558 (((-108) $ $) NIL (-3708 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (-3708 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1549 (((-108) $ $) NIL (-3708 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1620 (($ $ |#3|) NIL (|has| |#3| (-338)))) (-1612 (($ $ $) NIL) (($ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-708)) NIL (|has| |#3| (-971))) (($ $ (-850)) NIL (|has| |#3| (-971)))) (* (($ |#2| $) 13) (($ (-522) $) NIL) (($ (-708) $) NIL) (($ (-850) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-664))) (($ |#3| $) NIL (|has| |#3| (-664))) (($ $ $) NIL (|has| |#3| (-971)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2826 (($ (-850)) NIL (|has| |#3| (-971)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1827 (($ $ $) NIL (|has| |#3| (-730)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1685 (((-708)) NIL (|has| |#3| (-343)))) (-3355 (((-522) $) NIL (|has| |#3| (-782)))) (-2437 ((|#3| $ (-522) |#3|) NIL (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1014))) (((-3 (-522) "failed") $) NIL (-12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014))))) (-1478 ((|#3| $) NIL (|has| |#3| (-1014))) (((-522) $) NIL (-12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014)))) (((-382 (-522)) $) NIL (-12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014))))) (-1226 (((-2 (|:| -2149 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 $) (-1166 $)) NIL (|has| |#3| (-971))) (((-628 |#3|) (-628 $)) NIL (|has| |#3| (-971))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#3| (-584 (-522))) (|has| |#3| (-971)))) (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#3| (-584 (-522))) (|has| |#3| (-971))))) (-3920 (((-3 $ "failed") $) NIL (|has| |#3| (-971)))) (-3344 (($) NIL (|has| |#3| (-343)))) (-2411 ((|#3| $ (-522) |#3|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#3| $ (-522)) NIL)) (-3603 (((-108) $) NIL (|has| |#3| (-782)))) (-2395 (((-588 |#3|) $) NIL (|has| $ (-6 -4238)))) (-2859 (((-108) $) NIL (|has| |#3| (-971)))) (-3740 (((-108) $) NIL (|has| |#3| (-782)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (-3844 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-4084 (((-588 |#3|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (-3844 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-2397 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#3| |#3|) $) NIL)) (-1475 (((-850) $) NIL (|has| |#3| (-343)))) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-2882 (($ (-850)) NIL (|has| |#3| (-343)))) (-4174 (((-1032) $) NIL)) (-2337 ((|#3| $) NIL (|has| (-522) (-784)))) (-1972 (($ $ |#3|) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#3|))) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-270 |#3|)) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-588 |#3|) (-588 |#3|)) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-1973 (((-588 |#3|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#3| $ (-522) |#3|) NIL) ((|#3| $ (-522)) 11)) (-4024 ((|#3| $ $) NIL (|has| |#3| (-971)))) (-2041 (($ (-1166 |#3|)) NIL)) (-3222 (((-126)) NIL (|has| |#3| (-338)))) (-2731 (($ $ (-1 |#3| |#3|) (-708)) NIL (|has| |#3| (-971))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-971))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971)))) (($ $) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971))))) (-4187 (((-708) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238))) (((-708) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-1166 |#3|) $) NIL) (((-792) $) NIL) (($ |#3|) NIL (|has| |#3| (-1014))) (($ (-522)) NIL (-3844 (-12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014))) (|has| |#3| (-971)))) (($ (-382 (-522))) NIL (-12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014))))) (-2742 (((-708)) NIL (|has| |#3| (-971)))) (-1381 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-4126 (($ $) NIL (|has| |#3| (-782)))) (-3622 (($ $ (-708)) NIL (|has| |#3| (-971))) (($ $ (-850)) NIL (|has| |#3| (-971)))) (-3697 (($) NIL T CONST)) (-3709 (($) NIL (|has| |#3| (-971)) CONST)) (-2252 (($ $ (-1 |#3| |#3|) (-708)) NIL (|has| |#3| (-971))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-971))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971)))) (($ $) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971))))) (-1623 (((-108) $ $) NIL (-3844 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1597 (((-108) $ $) NIL (-3844 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (-3844 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1587 (((-108) $ $) NIL (-3844 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1682 (($ $ |#3|) NIL (|has| |#3| (-338)))) (-1672 (($ $ $) NIL) (($ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-708)) NIL (|has| |#3| (-971))) (($ $ (-850)) NIL (|has| |#3| (-971)))) (* (($ |#2| $) 13) (($ (-522) $) NIL) (($ (-708) $) NIL) (($ (-850) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-664))) (($ |#3| $) NIL (|has| |#3| (-664))) (($ $ $) NIL (|has| |#3| (-971)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-227 |#1| |#2| |#3|) (-13 (-215 |#1| |#3|) (-590 |#2|)) (-708) (-971) (-590 |#2|)) (T -227))
NIL
(-13 (-215 |#1| |#3|) (-590 |#2|))
-((-4040 (((-588 (-708)) $) 47) (((-588 (-708)) $ |#3|) 50)) (-3152 (((-708) $) 49) (((-708) $ |#3|) 52)) (-1292 (($ $) 65)) (-1297 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 (-522) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 72)) (-3714 (((-708) $ |#3|) 39) (((-708) $) 36)) (-3830 (((-1 $ (-708)) |#3|) 15) (((-1 $ (-708)) $) 77)) (-1570 ((|#4| $) 58)) (-1494 (((-108) $) 56)) (-1901 (($ $) 64)) (-2289 (($ $ (-588 (-270 $))) 96) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-588 |#4|) (-588 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-588 |#4|) (-588 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-588 |#3|) (-588 $)) 89) (($ $ |#3| |#2|) NIL) (($ $ (-588 |#3|) (-588 |#2|)) 84)) (-2157 (($ $ |#4|) NIL) (($ $ (-588 |#4|)) NIL) (($ $ |#4| (-708)) NIL) (($ $ (-588 |#4|) (-588 (-708))) NIL) (($ $) NIL) (($ $ (-708)) NIL) (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-3013 (((-588 |#3|) $) 75)) (-2793 ((|#5| $) NIL) (((-708) $ |#4|) NIL) (((-588 (-708)) $ (-588 |#4|)) NIL) (((-708) $ |#3|) 44)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 67) (($ (-382 (-522))) NIL) (($ $) NIL)))
-(((-228 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2190 (|#1| |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2289 (|#1| |#1| (-588 |#3|) (-588 |#2|))) (-15 -2289 (|#1| |#1| |#3| |#2|)) (-15 -2289 (|#1| |#1| (-588 |#3|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#3| |#1|)) (-15 -3830 ((-1 |#1| (-708)) |#1|)) (-15 -1292 (|#1| |#1|)) (-15 -1901 (|#1| |#1|)) (-15 -1570 (|#4| |#1|)) (-15 -1494 ((-108) |#1|)) (-15 -3152 ((-708) |#1| |#3|)) (-15 -4040 ((-588 (-708)) |#1| |#3|)) (-15 -3152 ((-708) |#1|)) (-15 -4040 ((-588 (-708)) |#1|)) (-15 -2793 ((-708) |#1| |#3|)) (-15 -3714 ((-708) |#1|)) (-15 -3714 ((-708) |#1| |#3|)) (-15 -3013 ((-588 |#3|) |#1|)) (-15 -3830 ((-1 |#1| (-708)) |#3|)) (-15 -1297 ((-3 |#3| "failed") |#1|)) (-15 -2190 (|#1| |#3|)) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1|)) (-15 -2793 ((-588 (-708)) |#1| (-588 |#4|))) (-15 -2793 ((-708) |#1| |#4|)) (-15 -1297 ((-3 |#4| "failed") |#1|)) (-15 -2190 (|#1| |#4|)) (-15 -2289 (|#1| |#1| (-588 |#4|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#4| |#1|)) (-15 -2289 (|#1| |#1| (-588 |#4|) (-588 |#2|))) (-15 -2289 (|#1| |#1| |#4| |#2|)) (-15 -2289 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#1| |#1|)) (-15 -2289 (|#1| |#1| (-270 |#1|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2793 (|#5| |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -2157 (|#1| |#1| (-588 |#4|) (-588 (-708)))) (-15 -2157 (|#1| |#1| |#4| (-708))) (-15 -2157 (|#1| |#1| (-588 |#4|))) (-15 -2157 (|#1| |#1| |#4|)) (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|))) (-229 |#2| |#3| |#4| |#5|) (-971) (-784) (-242 |#3|) (-730)) (T -228))
+((-4044 (((-588 (-708)) $) 47) (((-588 (-708)) $ |#3|) 50)) (-3192 (((-708) $) 49) (((-708) $ |#3|) 52)) (-1646 (($ $) 65)) (-3700 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 (-522) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 72)) (-3872 (((-708) $ |#3|) 39) (((-708) $) 36)) (-2718 (((-1 $ (-708)) |#3|) 15) (((-1 $ (-708)) $) 77)) (-1611 ((|#4| $) 58)) (-1717 (((-108) $) 56)) (-1992 (($ $) 64)) (-2330 (($ $ (-588 (-270 $))) 96) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-588 |#4|) (-588 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-588 |#4|) (-588 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-588 |#3|) (-588 $)) 89) (($ $ |#3| |#2|) NIL) (($ $ (-588 |#3|) (-588 |#2|)) 84)) (-2731 (($ $ |#4|) NIL) (($ $ (-588 |#4|)) NIL) (($ $ |#4| (-708)) NIL) (($ $ (-588 |#4|) (-588 (-708))) NIL) (($ $) NIL) (($ $ (-708)) NIL) (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-1266 (((-588 |#3|) $) 75)) (-2487 ((|#5| $) NIL) (((-708) $ |#4|) NIL) (((-588 (-708)) $ (-588 |#4|)) NIL) (((-708) $ |#3|) 44)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 67) (($ (-382 (-522))) NIL) (($ $) NIL)))
+(((-228 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2217 (|#1| |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2330 (|#1| |#1| (-588 |#3|) (-588 |#2|))) (-15 -2330 (|#1| |#1| |#3| |#2|)) (-15 -2330 (|#1| |#1| (-588 |#3|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#3| |#1|)) (-15 -2718 ((-1 |#1| (-708)) |#1|)) (-15 -1646 (|#1| |#1|)) (-15 -1992 (|#1| |#1|)) (-15 -1611 (|#4| |#1|)) (-15 -1717 ((-108) |#1|)) (-15 -3192 ((-708) |#1| |#3|)) (-15 -4044 ((-588 (-708)) |#1| |#3|)) (-15 -3192 ((-708) |#1|)) (-15 -4044 ((-588 (-708)) |#1|)) (-15 -2487 ((-708) |#1| |#3|)) (-15 -3872 ((-708) |#1|)) (-15 -3872 ((-708) |#1| |#3|)) (-15 -1266 ((-588 |#3|) |#1|)) (-15 -2718 ((-1 |#1| (-708)) |#3|)) (-15 -3700 ((-3 |#3| "failed") |#1|)) (-15 -2217 (|#1| |#3|)) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1|)) (-15 -2487 ((-588 (-708)) |#1| (-588 |#4|))) (-15 -2487 ((-708) |#1| |#4|)) (-15 -3700 ((-3 |#4| "failed") |#1|)) (-15 -2217 (|#1| |#4|)) (-15 -2330 (|#1| |#1| (-588 |#4|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#4| |#1|)) (-15 -2330 (|#1| |#1| (-588 |#4|) (-588 |#2|))) (-15 -2330 (|#1| |#1| |#4| |#2|)) (-15 -2330 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#1| |#1|)) (-15 -2330 (|#1| |#1| (-270 |#1|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2487 (|#5| |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -2731 (|#1| |#1| (-588 |#4|) (-588 (-708)))) (-15 -2731 (|#1| |#1| |#4| (-708))) (-15 -2731 (|#1| |#1| (-588 |#4|))) (-15 -2731 (|#1| |#1| |#4|)) (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|))) (-229 |#2| |#3| |#4| |#5|) (-971) (-784) (-242 |#3|) (-730)) (T -228))
NIL
-(-10 -8 (-15 -2190 (|#1| |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2289 (|#1| |#1| (-588 |#3|) (-588 |#2|))) (-15 -2289 (|#1| |#1| |#3| |#2|)) (-15 -2289 (|#1| |#1| (-588 |#3|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#3| |#1|)) (-15 -3830 ((-1 |#1| (-708)) |#1|)) (-15 -1292 (|#1| |#1|)) (-15 -1901 (|#1| |#1|)) (-15 -1570 (|#4| |#1|)) (-15 -1494 ((-108) |#1|)) (-15 -3152 ((-708) |#1| |#3|)) (-15 -4040 ((-588 (-708)) |#1| |#3|)) (-15 -3152 ((-708) |#1|)) (-15 -4040 ((-588 (-708)) |#1|)) (-15 -2793 ((-708) |#1| |#3|)) (-15 -3714 ((-708) |#1|)) (-15 -3714 ((-708) |#1| |#3|)) (-15 -3013 ((-588 |#3|) |#1|)) (-15 -3830 ((-1 |#1| (-708)) |#3|)) (-15 -1297 ((-3 |#3| "failed") |#1|)) (-15 -2190 (|#1| |#3|)) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1|)) (-15 -2793 ((-588 (-708)) |#1| (-588 |#4|))) (-15 -2793 ((-708) |#1| |#4|)) (-15 -1297 ((-3 |#4| "failed") |#1|)) (-15 -2190 (|#1| |#4|)) (-15 -2289 (|#1| |#1| (-588 |#4|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#4| |#1|)) (-15 -2289 (|#1| |#1| (-588 |#4|) (-588 |#2|))) (-15 -2289 (|#1| |#1| |#4| |#2|)) (-15 -2289 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#1| |#1|)) (-15 -2289 (|#1| |#1| (-270 |#1|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2793 (|#5| |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -2157 (|#1| |#1| (-588 |#4|) (-588 (-708)))) (-15 -2157 (|#1| |#1| |#4| (-708))) (-15 -2157 (|#1| |#1| (-588 |#4|))) (-15 -2157 (|#1| |#1| |#4|)) (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4040 (((-588 (-708)) $) 214) (((-588 (-708)) $ |#2|) 212)) (-3152 (((-708) $) 213) (((-708) $ |#2|) 211)) (-4090 (((-588 |#3|) $) 110)) (-1282 (((-1081 $) $ |#3|) 125) (((-1081 |#1|) $) 124)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 87 (|has| |#1| (-514)))) (-2022 (($ $) 88 (|has| |#1| (-514)))) (-3739 (((-108) $) 90 (|has| |#1| (-514)))) (-3781 (((-708) $) 112) (((-708) $ (-588 |#3|)) 111)) (-1233 (((-3 $ "failed") $ $) 19)) (-1565 (((-393 (-1081 $)) (-1081 $)) 100 (|has| |#1| (-838)))) (-3119 (($ $) 98 (|has| |#1| (-426)))) (-3450 (((-393 $) $) 97 (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 103 (|has| |#1| (-838)))) (-1292 (($ $) 207)) (-3175 (($) 17 T CONST)) (-1297 (((-3 |#1| "failed") $) 164) (((-3 (-382 (-522)) "failed") $) 162 (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) 160 (|has| |#1| (-962 (-522)))) (((-3 |#3| "failed") $) 136) (((-3 |#2| "failed") $) 221)) (-1484 ((|#1| $) 165) (((-382 (-522)) $) 161 (|has| |#1| (-962 (-382 (-522))))) (((-522) $) 159 (|has| |#1| (-962 (-522)))) ((|#3| $) 135) ((|#2| $) 220)) (-1950 (($ $ $ |#3|) 108 (|has| |#1| (-157)))) (-3156 (($ $) 154)) (-2096 (((-628 (-522)) (-628 $)) 134 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 133 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 132) (((-628 |#1|) (-628 $)) 131)) (-2682 (((-3 $ "failed") $) 34)) (-2071 (($ $) 176 (|has| |#1| (-426))) (($ $ |#3|) 105 (|has| |#1| (-426)))) (-3147 (((-588 $) $) 109)) (-2813 (((-108) $) 96 (|has| |#1| (-838)))) (-2671 (($ $ |#1| |#4| $) 172)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 84 (-12 (|has| |#3| (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 83 (-12 (|has| |#3| (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3714 (((-708) $ |#2|) 217) (((-708) $) 216)) (-2782 (((-108) $) 31)) (-2112 (((-708) $) 169)) (-4073 (($ (-1081 |#1|) |#3|) 117) (($ (-1081 $) |#3|) 116)) (-4052 (((-588 $) $) 126)) (-3340 (((-108) $) 152)) (-4049 (($ |#1| |#4|) 153) (($ $ |#3| (-708)) 119) (($ $ (-588 |#3|) (-588 (-708))) 118)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ |#3|) 120)) (-2925 ((|#4| $) 170) (((-708) $ |#3|) 122) (((-588 (-708)) $ (-588 |#3|)) 121)) (-2814 (($ $ $) 79 (|has| |#1| (-784)))) (-2446 (($ $ $) 78 (|has| |#1| (-784)))) (-3861 (($ (-1 |#4| |#4|) $) 171)) (-1391 (($ (-1 |#1| |#1|) $) 151)) (-3830 (((-1 $ (-708)) |#2|) 219) (((-1 $ (-708)) $) 206 (|has| |#1| (-210)))) (-3145 (((-3 |#3| "failed") $) 123)) (-3128 (($ $) 149)) (-3138 ((|#1| $) 148)) (-1570 ((|#3| $) 209)) (-2224 (($ (-588 $)) 94 (|has| |#1| (-426))) (($ $ $) 93 (|has| |#1| (-426)))) (-2385 (((-1068) $) 9)) (-1494 (((-108) $) 210)) (-2462 (((-3 (-588 $) "failed") $) 114)) (-4193 (((-3 (-588 $) "failed") $) 115)) (-3285 (((-3 (-2 (|:| |var| |#3|) (|:| -1400 (-708))) "failed") $) 113)) (-1901 (($ $) 208)) (-4151 (((-1032) $) 10)) (-3108 (((-108) $) 166)) (-3118 ((|#1| $) 167)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 95 (|has| |#1| (-426)))) (-2259 (($ (-588 $)) 92 (|has| |#1| (-426))) (($ $ $) 91 (|has| |#1| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) 102 (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) 101 (|has| |#1| (-838)))) (-1916 (((-393 $) $) 99 (|has| |#1| (-838)))) (-2232 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-514)))) (-2289 (($ $ (-588 (-270 $))) 145) (($ $ (-270 $)) 144) (($ $ $ $) 143) (($ $ (-588 $) (-588 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-588 |#3|) (-588 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-588 |#3|) (-588 $)) 138) (($ $ |#2| $) 205 (|has| |#1| (-210))) (($ $ (-588 |#2|) (-588 $)) 204 (|has| |#1| (-210))) (($ $ |#2| |#1|) 203 (|has| |#1| (-210))) (($ $ (-588 |#2|) (-588 |#1|)) 202 (|has| |#1| (-210)))) (-2769 (($ $ |#3|) 107 (|has| |#1| (-157)))) (-2157 (($ $ |#3|) 42) (($ $ (-588 |#3|)) 41) (($ $ |#3| (-708)) 40) (($ $ (-588 |#3|) (-588 (-708))) 39) (($ $) 238 (|has| |#1| (-210))) (($ $ (-708)) 236 (|has| |#1| (-210))) (($ $ (-1085)) 234 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 233 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 232 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 231 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 224) (($ $ (-1 |#1| |#1|)) 223)) (-3013 (((-588 |#2|) $) 218)) (-2793 ((|#4| $) 150) (((-708) $ |#3|) 130) (((-588 (-708)) $ (-588 |#3|)) 129) (((-708) $ |#2|) 215)) (-1431 (((-821 (-354)) $) 82 (-12 (|has| |#3| (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) 81 (-12 (|has| |#3| (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) 80 (-12 (|has| |#3| (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2255 ((|#1| $) 175 (|has| |#1| (-426))) (($ $ |#3|) 106 (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 104 (-4015 (|has| $ (-133)) (|has| |#1| (-838))))) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 163) (($ |#3|) 137) (($ |#2|) 222) (($ (-382 (-522))) 72 (-3708 (|has| |#1| (-962 (-382 (-522)))) (|has| |#1| (-37 (-382 (-522)))))) (($ $) 85 (|has| |#1| (-514)))) (-3916 (((-588 |#1|) $) 168)) (-3243 ((|#1| $ |#4|) 155) (($ $ |#3| (-708)) 128) (($ $ (-588 |#3|) (-588 (-708))) 127)) (-2143 (((-3 $ "failed") $) 73 (-3708 (-4015 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) 29)) (-3632 (($ $ $ (-708)) 173 (|has| |#1| (-157)))) (-3958 (((-108) $ $) 89 (|has| |#1| (-514)))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ |#3|) 38) (($ $ (-588 |#3|)) 37) (($ $ |#3| (-708)) 36) (($ $ (-588 |#3|) (-588 (-708))) 35) (($ $) 237 (|has| |#1| (-210))) (($ $ (-708)) 235 (|has| |#1| (-210))) (($ $ (-1085)) 230 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 229 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 228 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 227 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 226) (($ $ (-1 |#1| |#1|)) 225)) (-1574 (((-108) $ $) 76 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 75 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 77 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 74 (|has| |#1| (-784)))) (-1620 (($ $ |#1|) 156 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 158 (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) 157 (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+(-10 -8 (-15 -2217 (|#1| |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2330 (|#1| |#1| (-588 |#3|) (-588 |#2|))) (-15 -2330 (|#1| |#1| |#3| |#2|)) (-15 -2330 (|#1| |#1| (-588 |#3|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#3| |#1|)) (-15 -2718 ((-1 |#1| (-708)) |#1|)) (-15 -1646 (|#1| |#1|)) (-15 -1992 (|#1| |#1|)) (-15 -1611 (|#4| |#1|)) (-15 -1717 ((-108) |#1|)) (-15 -3192 ((-708) |#1| |#3|)) (-15 -4044 ((-588 (-708)) |#1| |#3|)) (-15 -3192 ((-708) |#1|)) (-15 -4044 ((-588 (-708)) |#1|)) (-15 -2487 ((-708) |#1| |#3|)) (-15 -3872 ((-708) |#1|)) (-15 -3872 ((-708) |#1| |#3|)) (-15 -1266 ((-588 |#3|) |#1|)) (-15 -2718 ((-1 |#1| (-708)) |#3|)) (-15 -3700 ((-3 |#3| "failed") |#1|)) (-15 -2217 (|#1| |#3|)) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1|)) (-15 -2487 ((-588 (-708)) |#1| (-588 |#4|))) (-15 -2487 ((-708) |#1| |#4|)) (-15 -3700 ((-3 |#4| "failed") |#1|)) (-15 -2217 (|#1| |#4|)) (-15 -2330 (|#1| |#1| (-588 |#4|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#4| |#1|)) (-15 -2330 (|#1| |#1| (-588 |#4|) (-588 |#2|))) (-15 -2330 (|#1| |#1| |#4| |#2|)) (-15 -2330 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#1| |#1|)) (-15 -2330 (|#1| |#1| (-270 |#1|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2487 (|#5| |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -2731 (|#1| |#1| (-588 |#4|) (-588 (-708)))) (-15 -2731 (|#1| |#1| |#4| (-708))) (-15 -2731 (|#1| |#1| (-588 |#4|))) (-15 -2731 (|#1| |#1| |#4|)) (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-4044 (((-588 (-708)) $) 214) (((-588 (-708)) $ |#2|) 212)) (-3192 (((-708) $) 213) (((-708) $ |#2|) 211)) (-3533 (((-588 |#3|) $) 110)) (-1264 (((-1081 $) $ |#3|) 125) (((-1081 |#1|) $) 124)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 87 (|has| |#1| (-514)))) (-2298 (($ $) 88 (|has| |#1| (-514)))) (-3007 (((-108) $) 90 (|has| |#1| (-514)))) (-3358 (((-708) $) 112) (((-708) $ (-588 |#3|)) 111)) (-2265 (((-3 $ "failed") $ $) 19)) (-3543 (((-393 (-1081 $)) (-1081 $)) 100 (|has| |#1| (-838)))) (-2961 (($ $) 98 (|has| |#1| (-426)))) (-3133 (((-393 $) $) 97 (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 103 (|has| |#1| (-838)))) (-1646 (($ $) 207)) (-3367 (($) 17 T CONST)) (-3700 (((-3 |#1| "failed") $) 164) (((-3 (-382 (-522)) "failed") $) 162 (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) 160 (|has| |#1| (-962 (-522)))) (((-3 |#3| "failed") $) 136) (((-3 |#2| "failed") $) 221)) (-1478 ((|#1| $) 165) (((-382 (-522)) $) 161 (|has| |#1| (-962 (-382 (-522))))) (((-522) $) 159 (|has| |#1| (-962 (-522)))) ((|#3| $) 135) ((|#2| $) 220)) (-2908 (($ $ $ |#3|) 108 (|has| |#1| (-157)))) (-3241 (($ $) 154)) (-1226 (((-628 (-522)) (-628 $)) 134 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 133 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 132) (((-628 |#1|) (-628 $)) 131)) (-3920 (((-3 $ "failed") $) 34)) (-2883 (($ $) 176 (|has| |#1| (-426))) (($ $ |#3|) 105 (|has| |#1| (-426)))) (-3232 (((-588 $) $) 109)) (-2725 (((-108) $) 96 (|has| |#1| (-838)))) (-3792 (($ $ |#1| |#4| $) 172)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 84 (-12 (|has| |#3| (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 83 (-12 (|has| |#3| (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3872 (((-708) $ |#2|) 217) (((-708) $) 216)) (-2859 (((-108) $) 31)) (-1391 (((-708) $) 169)) (-3520 (($ (-1081 |#1|) |#3|) 117) (($ (-1081 $) |#3|) 116)) (-3038 (((-588 $) $) 126)) (-1374 (((-108) $) 152)) (-3500 (($ |#1| |#4|) 153) (($ $ |#3| (-708)) 119) (($ $ (-588 |#3|) (-588 (-708))) 118)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ |#3|) 120)) (-3564 ((|#4| $) 170) (((-708) $ |#3|) 122) (((-588 (-708)) $ (-588 |#3|)) 121)) (-1308 (($ $ $) 79 (|has| |#1| (-784)))) (-2524 (($ $ $) 78 (|has| |#1| (-784)))) (-1723 (($ (-1 |#4| |#4|) $) 171)) (-3810 (($ (-1 |#1| |#1|) $) 151)) (-2718 (((-1 $ (-708)) |#2|) 219) (((-1 $ (-708)) $) 206 (|has| |#1| (-210)))) (-3155 (((-3 |#3| "failed") $) 123)) (-3216 (($ $) 149)) (-3224 ((|#1| $) 148)) (-1611 ((|#3| $) 209)) (-2267 (($ (-588 $)) 94 (|has| |#1| (-426))) (($ $ $) 93 (|has| |#1| (-426)))) (-2311 (((-1068) $) 9)) (-1717 (((-108) $) 210)) (-2760 (((-3 (-588 $) "failed") $) 114)) (-1919 (((-3 (-588 $) "failed") $) 115)) (-2024 (((-3 (-2 (|:| |var| |#3|) (|:| -3858 (-708))) "failed") $) 113)) (-1992 (($ $) 208)) (-4174 (((-1032) $) 10)) (-3199 (((-108) $) 166)) (-3207 ((|#1| $) 167)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 95 (|has| |#1| (-426)))) (-2308 (($ (-588 $)) 92 (|has| |#1| (-426))) (($ $ $) 91 (|has| |#1| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) 102 (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) 101 (|has| |#1| (-838)))) (-2006 (((-393 $) $) 99 (|has| |#1| (-838)))) (-2276 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-514)))) (-2330 (($ $ (-588 (-270 $))) 145) (($ $ (-270 $)) 144) (($ $ $ $) 143) (($ $ (-588 $) (-588 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-588 |#3|) (-588 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-588 |#3|) (-588 $)) 138) (($ $ |#2| $) 205 (|has| |#1| (-210))) (($ $ (-588 |#2|) (-588 $)) 204 (|has| |#1| (-210))) (($ $ |#2| |#1|) 203 (|has| |#1| (-210))) (($ $ (-588 |#2|) (-588 |#1|)) 202 (|has| |#1| (-210)))) (-1615 (($ $ |#3|) 107 (|has| |#1| (-157)))) (-2731 (($ $ |#3|) 42) (($ $ (-588 |#3|)) 41) (($ $ |#3| (-708)) 40) (($ $ (-588 |#3|) (-588 (-708))) 39) (($ $) 238 (|has| |#1| (-210))) (($ $ (-708)) 236 (|has| |#1| (-210))) (($ $ (-1085)) 234 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 233 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 232 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 231 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 224) (($ $ (-1 |#1| |#1|)) 223)) (-1266 (((-588 |#2|) $) 218)) (-2487 ((|#4| $) 150) (((-708) $ |#3|) 130) (((-588 (-708)) $ (-588 |#3|)) 129) (((-708) $ |#2|) 215)) (-3873 (((-821 (-354)) $) 82 (-12 (|has| |#3| (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) 81 (-12 (|has| |#3| (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) 80 (-12 (|has| |#3| (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2988 ((|#1| $) 175 (|has| |#1| (-426))) (($ $ |#3|) 106 (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 104 (-4079 (|has| $ (-133)) (|has| |#1| (-838))))) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 163) (($ |#3|) 137) (($ |#2|) 222) (($ (-382 (-522))) 72 (-3844 (|has| |#1| (-962 (-382 (-522)))) (|has| |#1| (-37 (-382 (-522)))))) (($ $) 85 (|has| |#1| (-514)))) (-2180 (((-588 |#1|) $) 168)) (-1643 ((|#1| $ |#4|) 155) (($ $ |#3| (-708)) 128) (($ $ (-588 |#3|) (-588 (-708))) 127)) (-3040 (((-3 $ "failed") $) 73 (-3844 (-4079 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) 29)) (-1225 (($ $ $ (-708)) 173 (|has| |#1| (-157)))) (-1407 (((-108) $ $) 89 (|has| |#1| (-514)))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ |#3|) 38) (($ $ (-588 |#3|)) 37) (($ $ |#3| (-708)) 36) (($ $ (-588 |#3|) (-588 (-708))) 35) (($ $) 237 (|has| |#1| (-210))) (($ $ (-708)) 235 (|has| |#1| (-210))) (($ $ (-1085)) 230 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 229 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 228 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 227 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 226) (($ $ (-1 |#1| |#1|)) 225)) (-1623 (((-108) $ $) 76 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 75 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 77 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 74 (|has| |#1| (-784)))) (-1682 (($ $ |#1|) 156 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 158 (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) 157 (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
(((-229 |#1| |#2| |#3| |#4|) (-1197) (-971) (-784) (-242 |t#2|) (-730)) (T -229))
-((-3830 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *3 (-784)) (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-1 *1 (-708))) (-4 *1 (-229 *4 *3 *5 *6)))) (-3013 (*1 *2 *1) (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-588 *4)))) (-3714 (*1 *2 *1 *3) (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784)) (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-708)))) (-3714 (*1 *2 *1) (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-708)))) (-2793 (*1 *2 *1 *3) (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784)) (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-708)))) (-4040 (*1 *2 *1) (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-588 (-708))))) (-3152 (*1 *2 *1) (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-708)))) (-4040 (*1 *2 *1 *3) (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784)) (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-588 (-708))))) (-3152 (*1 *2 *1 *3) (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784)) (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-708)))) (-1494 (*1 *2 *1) (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-108)))) (-1570 (*1 *2 *1) (-12 (-4 *1 (-229 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-730)) (-4 *2 (-242 *4)))) (-1901 (*1 *1 *1) (-12 (-4 *1 (-229 *2 *3 *4 *5)) (-4 *2 (-971)) (-4 *3 (-784)) (-4 *4 (-242 *3)) (-4 *5 (-730)))) (-1292 (*1 *1 *1) (-12 (-4 *1 (-229 *2 *3 *4 *5)) (-4 *2 (-971)) (-4 *3 (-784)) (-4 *4 (-242 *3)) (-4 *5 (-730)))) (-3830 (*1 *2 *1) (-12 (-4 *3 (-210)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-1 *1 (-708))) (-4 *1 (-229 *3 *4 *5 *6)))))
-(-13 (-878 |t#1| |t#4| |t#3|) (-208 |t#1|) (-962 |t#2|) (-10 -8 (-15 -3830 ((-1 $ (-708)) |t#2|)) (-15 -3013 ((-588 |t#2|) $)) (-15 -3714 ((-708) $ |t#2|)) (-15 -3714 ((-708) $)) (-15 -2793 ((-708) $ |t#2|)) (-15 -4040 ((-588 (-708)) $)) (-15 -3152 ((-708) $)) (-15 -4040 ((-588 (-708)) $ |t#2|)) (-15 -3152 ((-708) $ |t#2|)) (-15 -1494 ((-108) $)) (-15 -1570 (|t#3| $)) (-15 -1901 ($ $)) (-15 -1292 ($ $)) (IF (|has| |t#1| (-210)) (PROGN (-6 (-483 |t#2| |t#1|)) (-6 (-483 |t#2| $)) (-6 (-285 $)) (-15 -3830 ((-1 $ (-708)) $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| |#4|) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-563 (-498)) -12 (|has| |#1| (-563 (-498))) (|has| |#3| (-563 (-498)))) ((-563 (-821 (-354))) -12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#3| (-563 (-821 (-354))))) ((-563 (-821 (-522))) -12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#3| (-563 (-821 (-522))))) ((-208 |#1|) . T) ((-210) |has| |#1| (-210)) ((-266) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-285 $) . T) ((-301 |#1| |#4|) . T) ((-352 |#1|) . T) ((-386 |#1|) . T) ((-426) -3708 (|has| |#1| (-838)) (|has| |#1| (-426))) ((-483 |#2| |#1|) |has| |#1| (-210)) ((-483 |#2| $) |has| |#1| (-210)) ((-483 |#3| |#1|) . T) ((-483 |#3| $) . T) ((-483 $ $) . T) ((-514) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-664) . T) ((-784) |has| |#1| (-784)) ((-829 (-1085)) |has| |#1| (-829 (-1085))) ((-829 |#3|) . T) ((-815 (-354)) -12 (|has| |#1| (-815 (-354))) (|has| |#3| (-815 (-354)))) ((-815 (-522)) -12 (|has| |#1| (-815 (-522))) (|has| |#3| (-815 (-522)))) ((-878 |#1| |#4| |#3|) . T) ((-838) |has| |#1| (-838)) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-962 |#2|) . T) ((-962 |#3|) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) |has| |#1| (-838)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3852 ((|#1| $) 54)) (-1355 ((|#1| $) 44)) (-4141 (((-108) $ (-708)) 8)) (-3175 (($) 7 T CONST)) (-2070 (($ $) 60)) (-3509 (($ $) 48)) (-3218 ((|#1| |#1| $) 46)) (-2327 ((|#1| $) 45)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2517 (((-708) $) 61)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-2116 ((|#1| $) 39)) (-2885 ((|#1| |#1| $) 52)) (-4194 ((|#1| |#1| $) 51)) (-4095 (($ |#1| $) 40)) (-4155 (((-708) $) 55)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-1698 ((|#1| $) 62)) (-3265 ((|#1| $) 50)) (-1969 ((|#1| $) 49)) (-4087 ((|#1| $) 41)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-1965 ((|#1| |#1| $) 58)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-3650 ((|#1| $) 59)) (-1555 (($) 57) (($ (-588 |#1|)) 56)) (-1253 (((-708) $) 43)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-3288 ((|#1| $) 53)) (-2795 (($ (-588 |#1|)) 42)) (-2316 ((|#1| $) 63)) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-2718 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *3 (-784)) (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-1 *1 (-708))) (-4 *1 (-229 *4 *3 *5 *6)))) (-1266 (*1 *2 *1) (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-588 *4)))) (-3872 (*1 *2 *1 *3) (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784)) (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-708)))) (-3872 (*1 *2 *1) (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-708)))) (-2487 (*1 *2 *1 *3) (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784)) (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-708)))) (-4044 (*1 *2 *1) (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-588 (-708))))) (-3192 (*1 *2 *1) (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-708)))) (-4044 (*1 *2 *1 *3) (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784)) (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-588 (-708))))) (-3192 (*1 *2 *1 *3) (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784)) (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-708)))) (-1717 (*1 *2 *1) (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-108)))) (-1611 (*1 *2 *1) (-12 (-4 *1 (-229 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-730)) (-4 *2 (-242 *4)))) (-1992 (*1 *1 *1) (-12 (-4 *1 (-229 *2 *3 *4 *5)) (-4 *2 (-971)) (-4 *3 (-784)) (-4 *4 (-242 *3)) (-4 *5 (-730)))) (-1646 (*1 *1 *1) (-12 (-4 *1 (-229 *2 *3 *4 *5)) (-4 *2 (-971)) (-4 *3 (-784)) (-4 *4 (-242 *3)) (-4 *5 (-730)))) (-2718 (*1 *2 *1) (-12 (-4 *3 (-210)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-1 *1 (-708))) (-4 *1 (-229 *3 *4 *5 *6)))))
+(-13 (-878 |t#1| |t#4| |t#3|) (-208 |t#1|) (-962 |t#2|) (-10 -8 (-15 -2718 ((-1 $ (-708)) |t#2|)) (-15 -1266 ((-588 |t#2|) $)) (-15 -3872 ((-708) $ |t#2|)) (-15 -3872 ((-708) $)) (-15 -2487 ((-708) $ |t#2|)) (-15 -4044 ((-588 (-708)) $)) (-15 -3192 ((-708) $)) (-15 -4044 ((-588 (-708)) $ |t#2|)) (-15 -3192 ((-708) $ |t#2|)) (-15 -1717 ((-108) $)) (-15 -1611 (|t#3| $)) (-15 -1992 ($ $)) (-15 -1646 ($ $)) (IF (|has| |t#1| (-210)) (PROGN (-6 (-483 |t#2| |t#1|)) (-6 (-483 |t#2| $)) (-6 (-285 $)) (-15 -2718 ((-1 $ (-708)) $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| |#4|) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-563 (-498)) -12 (|has| |#1| (-563 (-498))) (|has| |#3| (-563 (-498)))) ((-563 (-821 (-354))) -12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#3| (-563 (-821 (-354))))) ((-563 (-821 (-522))) -12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#3| (-563 (-821 (-522))))) ((-208 |#1|) . T) ((-210) |has| |#1| (-210)) ((-266) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-285 $) . T) ((-301 |#1| |#4|) . T) ((-352 |#1|) . T) ((-386 |#1|) . T) ((-426) -3844 (|has| |#1| (-838)) (|has| |#1| (-426))) ((-483 |#2| |#1|) |has| |#1| (-210)) ((-483 |#2| $) |has| |#1| (-210)) ((-483 |#3| |#1|) . T) ((-483 |#3| $) . T) ((-483 $ $) . T) ((-514) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-664) . T) ((-784) |has| |#1| (-784)) ((-829 (-1085)) |has| |#1| (-829 (-1085))) ((-829 |#3|) . T) ((-815 (-354)) -12 (|has| |#1| (-815 (-354))) (|has| |#3| (-815 (-354)))) ((-815 (-522)) -12 (|has| |#1| (-815 (-522))) (|has| |#3| (-815 (-522)))) ((-878 |#1| |#4| |#3|) . T) ((-838) |has| |#1| (-838)) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-962 |#2|) . T) ((-962 |#3|) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) |has| |#1| (-838)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2892 ((|#1| $) 54)) (-1322 ((|#1| $) 44)) (-2717 (((-108) $ (-708)) 8)) (-3367 (($) 7 T CONST)) (-2876 (($ $) 60)) (-2465 (($ $) 48)) (-2622 ((|#1| |#1| $) 46)) (-2956 ((|#1| $) 45)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-4030 (((-708) $) 61)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1431 ((|#1| $) 39)) (-1406 ((|#1| |#1| $) 52)) (-1930 ((|#1| |#1| $) 51)) (-3365 (($ |#1| $) 40)) (-4179 (((-708) $) 55)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-4056 ((|#1| $) 62)) (-1844 ((|#1| $) 50)) (-3064 ((|#1| $) 49)) (-3295 ((|#1| $) 41)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3036 ((|#1| |#1| $) 58)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-1402 ((|#1| $) 59)) (-3464 (($) 57) (($ (-588 |#1|)) 56)) (-3735 (((-708) $) 43)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2049 ((|#1| $) 53)) (-2501 (($ (-588 |#1|)) 42)) (-2653 ((|#1| $) 63)) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-230 |#1|) (-1197) (-1120)) (T -230))
-((-1555 (*1 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-1555 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-4 *1 (-230 *3)))) (-4155 (*1 *2 *1) (-12 (-4 *1 (-230 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))) (-3852 (*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-3288 (*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-2885 (*1 *2 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-4194 (*1 *2 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-3265 (*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-1969 (*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-3509 (*1 *1 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
-(-13 (-1033 |t#1|) (-921 |t#1|) (-10 -8 (-15 -1555 ($)) (-15 -1555 ($ (-588 |t#1|))) (-15 -4155 ((-708) $)) (-15 -3852 (|t#1| $)) (-15 -3288 (|t#1| $)) (-15 -2885 (|t#1| |t#1| $)) (-15 -4194 (|t#1| |t#1| $)) (-15 -3265 (|t#1| $)) (-15 -1969 (|t#1| $)) (-15 -3509 ($ $))))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-921 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1033 |#1|) . T) ((-1120) . T))
-((-2903 (((-1 (-872 (-202)) (-202) (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1 (-202) (-202) (-202) (-202))) 139)) (-2956 (((-1045 (-202)) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354))) 160) (((-1045 (-202)) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)) (-588 (-239))) 158) (((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354))) 163) (((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239))) 159) (((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354))) 150) (((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239))) 149) (((-1045 (-202)) (-1 (-872 (-202)) (-202)) (-1009 (-354))) 129) (((-1045 (-202)) (-1 (-872 (-202)) (-202)) (-1009 (-354)) (-588 (-239))) 127) (((-1045 (-202)) (-808 (-1 (-202) (-202))) (-1009 (-354))) 128) (((-1045 (-202)) (-808 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239))) 125)) (-2920 (((-1168) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354))) 162) (((-1168) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)) (-588 (-239))) 161) (((-1168) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354))) 165) (((-1168) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239))) 164) (((-1168) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354))) 152) (((-1168) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239))) 151) (((-1168) (-1 (-872 (-202)) (-202)) (-1009 (-354))) 135) (((-1168) (-1 (-872 (-202)) (-202)) (-1009 (-354)) (-588 (-239))) 134) (((-1168) (-808 (-1 (-202) (-202))) (-1009 (-354))) 133) (((-1168) (-808 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239))) 132) (((-1167) (-806 (-1 (-202) (-202))) (-1009 (-354))) 99) (((-1167) (-806 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239))) 98) (((-1167) (-1 (-202) (-202)) (-1009 (-354))) 95) (((-1167) (-1 (-202) (-202)) (-1009 (-354)) (-588 (-239))) 94)))
-(((-231) (-10 -7 (-15 -2920 ((-1167) (-1 (-202) (-202)) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1167) (-1 (-202) (-202)) (-1009 (-354)))) (-15 -2920 ((-1167) (-806 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1167) (-806 (-1 (-202) (-202))) (-1009 (-354)))) (-15 -2920 ((-1168) (-808 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-808 (-1 (-202) (-202))) (-1009 (-354)))) (-15 -2920 ((-1168) (-1 (-872 (-202)) (-202)) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-1 (-872 (-202)) (-202)) (-1009 (-354)))) (-15 -2956 ((-1045 (-202)) (-808 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-808 (-1 (-202) (-202))) (-1009 (-354)))) (-15 -2956 ((-1045 (-202)) (-1 (-872 (-202)) (-202)) (-1009 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-1 (-872 (-202)) (-202)) (-1009 (-354)))) (-15 -2920 ((-1168) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -2956 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -2920 ((-1168) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -2956 ((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -2920 ((-1168) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)))) (-15 -2956 ((-1045 (-202)) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)))) (-15 -2903 ((-1 (-872 (-202)) (-202) (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1 (-202) (-202) (-202) (-202)))))) (T -231))
-((-2903 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-872 (-202)) (-202) (-202))) (-5 *3 (-1 (-202) (-202) (-202) (-202))) (-5 *1 (-231)))) (-2956 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-811 (-1 (-202) (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-2956 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-811 (-1 (-202) (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-811 (-1 (-202) (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-811 (-1 (-202) (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-2956 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-2956 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-2956 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-2956 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-2956 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-872 (-202)) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-2956 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-872 (-202)) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-2956 (*1 *2 *3 *4) (-12 (-5 *3 (-808 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-2956 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-808 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-872 (-202)) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-872 (-202)) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4) (-12 (-5 *3 (-808 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-808 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4) (-12 (-5 *3 (-806 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *2 (-1167)) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-806 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1167)) (-5 *1 (-231)))) (-2920 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-231)))))
-(-10 -7 (-15 -2920 ((-1167) (-1 (-202) (-202)) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1167) (-1 (-202) (-202)) (-1009 (-354)))) (-15 -2920 ((-1167) (-806 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1167) (-806 (-1 (-202) (-202))) (-1009 (-354)))) (-15 -2920 ((-1168) (-808 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-808 (-1 (-202) (-202))) (-1009 (-354)))) (-15 -2920 ((-1168) (-1 (-872 (-202)) (-202)) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-1 (-872 (-202)) (-202)) (-1009 (-354)))) (-15 -2956 ((-1045 (-202)) (-808 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-808 (-1 (-202) (-202))) (-1009 (-354)))) (-15 -2956 ((-1045 (-202)) (-1 (-872 (-202)) (-202)) (-1009 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-1 (-872 (-202)) (-202)) (-1009 (-354)))) (-15 -2920 ((-1168) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -2956 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -2920 ((-1168) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -2956 ((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -2920 ((-1168) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)))) (-15 -2956 ((-1045 (-202)) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)))) (-15 -2903 ((-1 (-872 (-202)) (-202) (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1 (-202) (-202) (-202) (-202)))))
-((-2920 (((-1167) (-270 |#2|) (-1085) (-1085) (-588 (-239))) 93)))
-(((-232 |#1| |#2|) (-10 -7 (-15 -2920 ((-1167) (-270 |#2|) (-1085) (-1085) (-588 (-239))))) (-13 (-514) (-784) (-962 (-522))) (-405 |#1|)) (T -232))
-((-2920 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-270 *7)) (-5 *4 (-1085)) (-5 *5 (-588 (-239))) (-4 *7 (-405 *6)) (-4 *6 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-1167)) (-5 *1 (-232 *6 *7)))))
-(-10 -7 (-15 -2920 ((-1167) (-270 |#2|) (-1085) (-1085) (-588 (-239)))))
-((-2283 (((-522) (-522)) 50)) (-2796 (((-522) (-522)) 51)) (-1643 (((-202) (-202)) 52)) (-2139 (((-1168) (-1 (-154 (-202)) (-154 (-202))) (-1009 (-202)) (-1009 (-202))) 49)) (-3667 (((-1168) (-1 (-154 (-202)) (-154 (-202))) (-1009 (-202)) (-1009 (-202)) (-108)) 47)))
-(((-233) (-10 -7 (-15 -3667 ((-1168) (-1 (-154 (-202)) (-154 (-202))) (-1009 (-202)) (-1009 (-202)) (-108))) (-15 -2139 ((-1168) (-1 (-154 (-202)) (-154 (-202))) (-1009 (-202)) (-1009 (-202)))) (-15 -2283 ((-522) (-522))) (-15 -2796 ((-522) (-522))) (-15 -1643 ((-202) (-202))))) (T -233))
-((-1643 (*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-233)))) (-2796 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-233)))) (-2283 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-233)))) (-2139 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-154 (-202)) (-154 (-202)))) (-5 *4 (-1009 (-202))) (-5 *2 (-1168)) (-5 *1 (-233)))) (-3667 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-154 (-202)) (-154 (-202)))) (-5 *4 (-1009 (-202))) (-5 *5 (-108)) (-5 *2 (-1168)) (-5 *1 (-233)))))
-(-10 -7 (-15 -3667 ((-1168) (-1 (-154 (-202)) (-154 (-202))) (-1009 (-202)) (-1009 (-202)) (-108))) (-15 -2139 ((-1168) (-1 (-154 (-202)) (-154 (-202))) (-1009 (-202)) (-1009 (-202)))) (-15 -2283 ((-522) (-522))) (-15 -2796 ((-522) (-522))) (-15 -1643 ((-202) (-202))))
-((-2190 (((-1007 (-354)) (-1007 (-291 |#1|))) 16)))
-(((-234 |#1|) (-10 -7 (-15 -2190 ((-1007 (-354)) (-1007 (-291 |#1|))))) (-13 (-784) (-514) (-563 (-354)))) (T -234))
-((-2190 (*1 *2 *3) (-12 (-5 *3 (-1007 (-291 *4))) (-4 *4 (-13 (-784) (-514) (-563 (-354)))) (-5 *2 (-1007 (-354))) (-5 *1 (-234 *4)))))
-(-10 -7 (-15 -2190 ((-1007 (-354)) (-1007 (-291 |#1|)))))
-((-2956 (((-1045 (-202)) (-811 |#1|) (-1007 (-354)) (-1007 (-354))) 69) (((-1045 (-202)) (-811 |#1|) (-1007 (-354)) (-1007 (-354)) (-588 (-239))) 68) (((-1045 (-202)) |#1| (-1007 (-354)) (-1007 (-354))) 59) (((-1045 (-202)) |#1| (-1007 (-354)) (-1007 (-354)) (-588 (-239))) 58) (((-1045 (-202)) (-808 |#1|) (-1007 (-354))) 50) (((-1045 (-202)) (-808 |#1|) (-1007 (-354)) (-588 (-239))) 49)) (-2920 (((-1168) (-811 |#1|) (-1007 (-354)) (-1007 (-354))) 72) (((-1168) (-811 |#1|) (-1007 (-354)) (-1007 (-354)) (-588 (-239))) 71) (((-1168) |#1| (-1007 (-354)) (-1007 (-354))) 62) (((-1168) |#1| (-1007 (-354)) (-1007 (-354)) (-588 (-239))) 61) (((-1168) (-808 |#1|) (-1007 (-354))) 54) (((-1168) (-808 |#1|) (-1007 (-354)) (-588 (-239))) 53) (((-1167) (-806 |#1|) (-1007 (-354))) 41) (((-1167) (-806 |#1|) (-1007 (-354)) (-588 (-239))) 40) (((-1167) |#1| (-1007 (-354))) 33) (((-1167) |#1| (-1007 (-354)) (-588 (-239))) 32)))
-(((-235 |#1|) (-10 -7 (-15 -2920 ((-1167) |#1| (-1007 (-354)) (-588 (-239)))) (-15 -2920 ((-1167) |#1| (-1007 (-354)))) (-15 -2920 ((-1167) (-806 |#1|) (-1007 (-354)) (-588 (-239)))) (-15 -2920 ((-1167) (-806 |#1|) (-1007 (-354)))) (-15 -2920 ((-1168) (-808 |#1|) (-1007 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-808 |#1|) (-1007 (-354)))) (-15 -2956 ((-1045 (-202)) (-808 |#1|) (-1007 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-808 |#1|) (-1007 (-354)))) (-15 -2920 ((-1168) |#1| (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) |#1| (-1007 (-354)) (-1007 (-354)))) (-15 -2956 ((-1045 (-202)) |#1| (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) |#1| (-1007 (-354)) (-1007 (-354)))) (-15 -2920 ((-1168) (-811 |#1|) (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-811 |#1|) (-1007 (-354)) (-1007 (-354)))) (-15 -2956 ((-1045 (-202)) (-811 |#1|) (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-811 |#1|) (-1007 (-354)) (-1007 (-354))))) (-13 (-563 (-498)) (-1014))) (T -235))
-((-2956 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-811 *5)) (-5 *4 (-1007 (-354))) (-4 *5 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1045 (-202))) (-5 *1 (-235 *5)))) (-2956 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-811 *6)) (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-4 *6 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1045 (-202))) (-5 *1 (-235 *6)))) (-2920 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-811 *5)) (-5 *4 (-1007 (-354))) (-4 *5 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1168)) (-5 *1 (-235 *5)))) (-2920 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-811 *6)) (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-4 *6 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1168)) (-5 *1 (-235 *6)))) (-2956 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1007 (-354))) (-5 *2 (-1045 (-202))) (-5 *1 (-235 *3)) (-4 *3 (-13 (-563 (-498)) (-1014))))) (-2956 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-235 *3)) (-4 *3 (-13 (-563 (-498)) (-1014))))) (-2920 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1007 (-354))) (-5 *2 (-1168)) (-5 *1 (-235 *3)) (-4 *3 (-13 (-563 (-498)) (-1014))))) (-2920 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-235 *3)) (-4 *3 (-13 (-563 (-498)) (-1014))))) (-2956 (*1 *2 *3 *4) (-12 (-5 *3 (-808 *5)) (-5 *4 (-1007 (-354))) (-4 *5 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1045 (-202))) (-5 *1 (-235 *5)))) (-2956 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-808 *6)) (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-4 *6 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1045 (-202))) (-5 *1 (-235 *6)))) (-2920 (*1 *2 *3 *4) (-12 (-5 *3 (-808 *5)) (-5 *4 (-1007 (-354))) (-4 *5 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1168)) (-5 *1 (-235 *5)))) (-2920 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-808 *6)) (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-4 *6 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1168)) (-5 *1 (-235 *6)))) (-2920 (*1 *2 *3 *4) (-12 (-5 *3 (-806 *5)) (-5 *4 (-1007 (-354))) (-4 *5 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1167)) (-5 *1 (-235 *5)))) (-2920 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-806 *6)) (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-4 *6 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1167)) (-5 *1 (-235 *6)))) (-2920 (*1 *2 *3 *4) (-12 (-5 *4 (-1007 (-354))) (-5 *2 (-1167)) (-5 *1 (-235 *3)) (-4 *3 (-13 (-563 (-498)) (-1014))))) (-2920 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-235 *3)) (-4 *3 (-13 (-563 (-498)) (-1014))))))
-(-10 -7 (-15 -2920 ((-1167) |#1| (-1007 (-354)) (-588 (-239)))) (-15 -2920 ((-1167) |#1| (-1007 (-354)))) (-15 -2920 ((-1167) (-806 |#1|) (-1007 (-354)) (-588 (-239)))) (-15 -2920 ((-1167) (-806 |#1|) (-1007 (-354)))) (-15 -2920 ((-1168) (-808 |#1|) (-1007 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-808 |#1|) (-1007 (-354)))) (-15 -2956 ((-1045 (-202)) (-808 |#1|) (-1007 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-808 |#1|) (-1007 (-354)))) (-15 -2920 ((-1168) |#1| (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) |#1| (-1007 (-354)) (-1007 (-354)))) (-15 -2956 ((-1045 (-202)) |#1| (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) |#1| (-1007 (-354)) (-1007 (-354)))) (-15 -2920 ((-1168) (-811 |#1|) (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -2920 ((-1168) (-811 |#1|) (-1007 (-354)) (-1007 (-354)))) (-15 -2956 ((-1045 (-202)) (-811 |#1|) (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -2956 ((-1045 (-202)) (-811 |#1|) (-1007 (-354)) (-1007 (-354)))))
-((-2920 (((-1168) (-588 (-202)) (-588 (-202)) (-588 (-202)) (-588 (-239))) 21) (((-1168) (-588 (-202)) (-588 (-202)) (-588 (-202))) 22) (((-1167) (-588 (-872 (-202))) (-588 (-239))) 13) (((-1167) (-588 (-872 (-202)))) 14) (((-1167) (-588 (-202)) (-588 (-202)) (-588 (-239))) 18) (((-1167) (-588 (-202)) (-588 (-202))) 19)))
-(((-236) (-10 -7 (-15 -2920 ((-1167) (-588 (-202)) (-588 (-202)))) (-15 -2920 ((-1167) (-588 (-202)) (-588 (-202)) (-588 (-239)))) (-15 -2920 ((-1167) (-588 (-872 (-202))))) (-15 -2920 ((-1167) (-588 (-872 (-202))) (-588 (-239)))) (-15 -2920 ((-1168) (-588 (-202)) (-588 (-202)) (-588 (-202)))) (-15 -2920 ((-1168) (-588 (-202)) (-588 (-202)) (-588 (-202)) (-588 (-239)))))) (T -236))
-((-2920 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-588 (-202))) (-5 *4 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-236)))) (-2920 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-588 (-202))) (-5 *2 (-1168)) (-5 *1 (-236)))) (-2920 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-872 (-202)))) (-5 *4 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-236)))) (-2920 (*1 *2 *3) (-12 (-5 *3 (-588 (-872 (-202)))) (-5 *2 (-1167)) (-5 *1 (-236)))) (-2920 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-588 (-202))) (-5 *4 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-236)))) (-2920 (*1 *2 *3 *3) (-12 (-5 *3 (-588 (-202))) (-5 *2 (-1167)) (-5 *1 (-236)))))
-(-10 -7 (-15 -2920 ((-1167) (-588 (-202)) (-588 (-202)))) (-15 -2920 ((-1167) (-588 (-202)) (-588 (-202)) (-588 (-239)))) (-15 -2920 ((-1167) (-588 (-872 (-202))))) (-15 -2920 ((-1167) (-588 (-872 (-202))) (-588 (-239)))) (-15 -2920 ((-1168) (-588 (-202)) (-588 (-202)) (-588 (-202)))) (-15 -2920 ((-1168) (-588 (-202)) (-588 (-202)) (-588 (-202)) (-588 (-239)))))
-((-1908 (((-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))) (-588 (-239)) (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) 24)) (-1326 (((-850) (-588 (-239)) (-850)) 49)) (-1529 (((-850) (-588 (-239)) (-850)) 48)) (-1968 (((-588 (-354)) (-588 (-239)) (-588 (-354))) 65)) (-3542 (((-354) (-588 (-239)) (-354)) 55)) (-2643 (((-850) (-588 (-239)) (-850)) 50)) (-1447 (((-108) (-588 (-239)) (-108)) 26)) (-2955 (((-1068) (-588 (-239)) (-1068)) 19)) (-1936 (((-1068) (-588 (-239)) (-1068)) 25)) (-2594 (((-1045 (-202)) (-588 (-239))) 43)) (-3085 (((-588 (-1009 (-354))) (-588 (-239)) (-588 (-1009 (-354)))) 37)) (-1843 (((-803) (-588 (-239)) (-803)) 31)) (-4139 (((-803) (-588 (-239)) (-803)) 32)) (-1459 (((-1 (-872 (-202)) (-872 (-202))) (-588 (-239)) (-1 (-872 (-202)) (-872 (-202)))) 60)) (-2774 (((-108) (-588 (-239)) (-108)) 15)) (-1202 (((-108) (-588 (-239)) (-108)) 14)))
-(((-237) (-10 -7 (-15 -1202 ((-108) (-588 (-239)) (-108))) (-15 -2774 ((-108) (-588 (-239)) (-108))) (-15 -1908 ((-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))) (-588 (-239)) (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))) (-15 -2955 ((-1068) (-588 (-239)) (-1068))) (-15 -1936 ((-1068) (-588 (-239)) (-1068))) (-15 -1447 ((-108) (-588 (-239)) (-108))) (-15 -1843 ((-803) (-588 (-239)) (-803))) (-15 -4139 ((-803) (-588 (-239)) (-803))) (-15 -3085 ((-588 (-1009 (-354))) (-588 (-239)) (-588 (-1009 (-354))))) (-15 -1529 ((-850) (-588 (-239)) (-850))) (-15 -1326 ((-850) (-588 (-239)) (-850))) (-15 -2594 ((-1045 (-202)) (-588 (-239)))) (-15 -2643 ((-850) (-588 (-239)) (-850))) (-15 -3542 ((-354) (-588 (-239)) (-354))) (-15 -1459 ((-1 (-872 (-202)) (-872 (-202))) (-588 (-239)) (-1 (-872 (-202)) (-872 (-202))))) (-15 -1968 ((-588 (-354)) (-588 (-239)) (-588 (-354)))))) (T -237))
-((-1968 (*1 *2 *3 *2) (-12 (-5 *2 (-588 (-354))) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1459 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-872 (-202)) (-872 (-202)))) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-3542 (*1 *2 *3 *2) (-12 (-5 *2 (-354)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-2643 (*1 *2 *3 *2) (-12 (-5 *2 (-850)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-2594 (*1 *2 *3) (-12 (-5 *3 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-237)))) (-1326 (*1 *2 *3 *2) (-12 (-5 *2 (-850)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1529 (*1 *2 *3 *2) (-12 (-5 *2 (-850)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-3085 (*1 *2 *3 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-4139 (*1 *2 *3 *2) (-12 (-5 *2 (-803)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1843 (*1 *2 *3 *2) (-12 (-5 *2 (-803)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1447 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1936 (*1 *2 *3 *2) (-12 (-5 *2 (-1068)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-2955 (*1 *2 *3 *2) (-12 (-5 *2 (-1068)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1908 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-2774 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1202 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))))
-(-10 -7 (-15 -1202 ((-108) (-588 (-239)) (-108))) (-15 -2774 ((-108) (-588 (-239)) (-108))) (-15 -1908 ((-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))) (-588 (-239)) (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))) (-15 -2955 ((-1068) (-588 (-239)) (-1068))) (-15 -1936 ((-1068) (-588 (-239)) (-1068))) (-15 -1447 ((-108) (-588 (-239)) (-108))) (-15 -1843 ((-803) (-588 (-239)) (-803))) (-15 -4139 ((-803) (-588 (-239)) (-803))) (-15 -3085 ((-588 (-1009 (-354))) (-588 (-239)) (-588 (-1009 (-354))))) (-15 -1529 ((-850) (-588 (-239)) (-850))) (-15 -1326 ((-850) (-588 (-239)) (-850))) (-15 -2594 ((-1045 (-202)) (-588 (-239)))) (-15 -2643 ((-850) (-588 (-239)) (-850))) (-15 -3542 ((-354) (-588 (-239)) (-354))) (-15 -1459 ((-1 (-872 (-202)) (-872 (-202))) (-588 (-239)) (-1 (-872 (-202)) (-872 (-202))))) (-15 -1968 ((-588 (-354)) (-588 (-239)) (-588 (-354)))))
-((-3017 (((-3 |#1| "failed") (-588 (-239)) (-1085)) 17)))
-(((-238 |#1|) (-10 -7 (-15 -3017 ((-3 |#1| "failed") (-588 (-239)) (-1085)))) (-1120)) (T -238))
-((-3017 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-588 (-239))) (-5 *4 (-1085)) (-5 *1 (-238 *2)) (-4 *2 (-1120)))))
-(-10 -7 (-15 -3017 ((-3 |#1| "failed") (-588 (-239)) (-1085))))
-((-1416 (((-108) $ $) NIL)) (-1908 (($ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) 14)) (-1326 (($ (-850)) 70)) (-1529 (($ (-850)) 69)) (-3210 (($ (-588 (-354))) 76)) (-3542 (($ (-354)) 55)) (-2643 (($ (-850)) 71)) (-1447 (($ (-108)) 22)) (-2955 (($ (-1068)) 17)) (-1936 (($ (-1068)) 18)) (-2594 (($ (-1045 (-202))) 65)) (-3085 (($ (-588 (-1009 (-354)))) 61)) (-2386 (($ (-588 (-1009 (-354)))) 56) (($ (-588 (-1009 (-382 (-522))))) 60)) (-3052 (($ (-354)) 28) (($ (-803)) 32)) (-1627 (((-108) (-588 $) (-1085)) 85)) (-3017 (((-3 (-51) "failed") (-588 $) (-1085)) 87)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-3449 (($ (-354)) 33) (($ (-803)) 34)) (-3677 (($ (-1 (-872 (-202)) (-872 (-202)))) 54)) (-1459 (($ (-1 (-872 (-202)) (-872 (-202)))) 72)) (-3795 (($ (-1 (-202) (-202))) 38) (($ (-1 (-202) (-202) (-202))) 42) (($ (-1 (-202) (-202) (-202) (-202))) 46)) (-2190 (((-792) $) 81)) (-1273 (($ (-108)) 23) (($ (-588 (-1009 (-354)))) 50)) (-1202 (($ (-108)) 24)) (-1531 (((-108) $ $) 83)))
-(((-239) (-13 (-1014) (-10 -8 (-15 -1202 ($ (-108))) (-15 -1273 ($ (-108))) (-15 -1908 ($ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))) (-15 -2955 ($ (-1068))) (-15 -1936 ($ (-1068))) (-15 -1447 ($ (-108))) (-15 -1273 ($ (-588 (-1009 (-354))))) (-15 -3677 ($ (-1 (-872 (-202)) (-872 (-202))))) (-15 -3052 ($ (-354))) (-15 -3052 ($ (-803))) (-15 -3449 ($ (-354))) (-15 -3449 ($ (-803))) (-15 -3795 ($ (-1 (-202) (-202)))) (-15 -3795 ($ (-1 (-202) (-202) (-202)))) (-15 -3795 ($ (-1 (-202) (-202) (-202) (-202)))) (-15 -3542 ($ (-354))) (-15 -2386 ($ (-588 (-1009 (-354))))) (-15 -2386 ($ (-588 (-1009 (-382 (-522)))))) (-15 -3085 ($ (-588 (-1009 (-354))))) (-15 -2594 ($ (-1045 (-202)))) (-15 -1529 ($ (-850))) (-15 -1326 ($ (-850))) (-15 -2643 ($ (-850))) (-15 -1459 ($ (-1 (-872 (-202)) (-872 (-202))))) (-15 -3210 ($ (-588 (-354)))) (-15 -3017 ((-3 (-51) "failed") (-588 $) (-1085))) (-15 -1627 ((-108) (-588 $) (-1085)))))) (T -239))
-((-1202 (*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-239)))) (-1273 (*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-239)))) (-1908 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) (-5 *1 (-239)))) (-2955 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-239)))) (-1936 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-239)))) (-1447 (*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-239)))) (-1273 (*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-239)))) (-3677 (*1 *1 *2) (-12 (-5 *2 (-1 (-872 (-202)) (-872 (-202)))) (-5 *1 (-239)))) (-3052 (*1 *1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-239)))) (-3052 (*1 *1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-239)))) (-3449 (*1 *1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-239)))) (-3449 (*1 *1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-239)))) (-3795 (*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *1 (-239)))) (-3795 (*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202) (-202))) (-5 *1 (-239)))) (-3795 (*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202) (-202) (-202))) (-5 *1 (-239)))) (-3542 (*1 *1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-239)))) (-2386 (*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-239)))) (-2386 (*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-382 (-522))))) (-5 *1 (-239)))) (-3085 (*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-239)))) (-2594 (*1 *1 *2) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-239)))) (-1529 (*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-239)))) (-1326 (*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-239)))) (-2643 (*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-239)))) (-1459 (*1 *1 *2) (-12 (-5 *2 (-1 (-872 (-202)) (-872 (-202)))) (-5 *1 (-239)))) (-3210 (*1 *1 *2) (-12 (-5 *2 (-588 (-354))) (-5 *1 (-239)))) (-3017 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-588 (-239))) (-5 *4 (-1085)) (-5 *2 (-51)) (-5 *1 (-239)))) (-1627 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-239))) (-5 *4 (-1085)) (-5 *2 (-108)) (-5 *1 (-239)))))
-(-13 (-1014) (-10 -8 (-15 -1202 ($ (-108))) (-15 -1273 ($ (-108))) (-15 -1908 ($ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))) (-15 -2955 ($ (-1068))) (-15 -1936 ($ (-1068))) (-15 -1447 ($ (-108))) (-15 -1273 ($ (-588 (-1009 (-354))))) (-15 -3677 ($ (-1 (-872 (-202)) (-872 (-202))))) (-15 -3052 ($ (-354))) (-15 -3052 ($ (-803))) (-15 -3449 ($ (-354))) (-15 -3449 ($ (-803))) (-15 -3795 ($ (-1 (-202) (-202)))) (-15 -3795 ($ (-1 (-202) (-202) (-202)))) (-15 -3795 ($ (-1 (-202) (-202) (-202) (-202)))) (-15 -3542 ($ (-354))) (-15 -2386 ($ (-588 (-1009 (-354))))) (-15 -2386 ($ (-588 (-1009 (-382 (-522)))))) (-15 -3085 ($ (-588 (-1009 (-354))))) (-15 -2594 ($ (-1045 (-202)))) (-15 -1529 ($ (-850))) (-15 -1326 ($ (-850))) (-15 -2643 ($ (-850))) (-15 -1459 ($ (-1 (-872 (-202)) (-872 (-202))))) (-15 -3210 ($ (-588 (-354)))) (-15 -3017 ((-3 (-51) "failed") (-588 $) (-1085))) (-15 -1627 ((-108) (-588 $) (-1085)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4040 (((-588 (-708)) $) NIL) (((-588 (-708)) $ |#2|) NIL)) (-3152 (((-708) $) NIL) (((-708) $ |#2|) NIL)) (-4090 (((-588 |#3|) $) NIL)) (-1282 (((-1081 $) $ |#3|) NIL) (((-1081 |#1|) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 |#3|)) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3119 (($ $) NIL (|has| |#1| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1292 (($ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1037 |#1| |#2|) "failed") $) 20)) (-1484 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1037 |#1| |#2|) $) NIL)) (-1950 (($ $ $ |#3|) NIL (|has| |#1| (-157)))) (-3156 (($ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#1| (-426))) (($ $ |#3|) NIL (|has| |#1| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#1| (-838)))) (-2671 (($ $ |#1| (-494 |#3|) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| |#1| (-815 (-354))) (|has| |#3| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| |#1| (-815 (-522))) (|has| |#3| (-815 (-522)))))) (-3714 (((-708) $ |#2|) NIL) (((-708) $) 10)) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-4073 (($ (-1081 |#1|) |#3|) NIL) (($ (-1081 $) |#3|) NIL)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-494 |#3|)) NIL) (($ $ |#3| (-708)) NIL) (($ $ (-588 |#3|) (-588 (-708))) NIL)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ |#3|) NIL)) (-2925 (((-494 |#3|) $) NIL) (((-708) $ |#3|) NIL) (((-588 (-708)) $ (-588 |#3|)) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3861 (($ (-1 (-494 |#3|) (-494 |#3|)) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-3830 (((-1 $ (-708)) |#2|) NIL) (((-1 $ (-708)) $) NIL (|has| |#1| (-210)))) (-3145 (((-3 |#3| "failed") $) NIL)) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-1570 ((|#3| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2385 (((-1068) $) NIL)) (-1494 (((-108) $) NIL)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| |#3|) (|:| -1400 (-708))) "failed") $) NIL)) (-1901 (($ $) NIL)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) NIL)) (-3118 ((|#1| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-838)))) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-588 |#3|) (-588 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-588 |#3|) (-588 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-210))) (($ $ (-588 |#2|) (-588 $)) NIL (|has| |#1| (-210))) (($ $ |#2| |#1|) NIL (|has| |#1| (-210))) (($ $ (-588 |#2|) (-588 |#1|)) NIL (|has| |#1| (-210)))) (-2769 (($ $ |#3|) NIL (|has| |#1| (-157)))) (-2157 (($ $ |#3|) NIL) (($ $ (-588 |#3|)) NIL) (($ $ |#3| (-708)) NIL) (($ $ (-588 |#3|) (-588 (-708))) NIL) (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3013 (((-588 |#2|) $) NIL)) (-2793 (((-494 |#3|) $) NIL) (((-708) $ |#3|) NIL) (((-588 (-708)) $ (-588 |#3|)) NIL) (((-708) $ |#2|) NIL)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#3| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#3| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| |#1| (-563 (-498))) (|has| |#3| (-563 (-498)))))) (-2255 ((|#1| $) NIL (|has| |#1| (-426))) (($ $ |#3|) NIL (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) 23) (($ |#3|) 22) (($ |#2|) NIL) (($ (-1037 |#1| |#2|)) 28) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-494 |#3|)) NIL) (($ $ |#3| (-708)) NIL) (($ $ (-588 |#3|) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ |#3|) NIL) (($ $ (-588 |#3|)) NIL) (($ $ |#3| (-708)) NIL) (($ $ (-588 |#3|) (-588 (-708))) NIL) (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-3464 (*1 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-3464 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-4 *1 (-230 *3)))) (-4179 (*1 *2 *1) (-12 (-4 *1 (-230 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))) (-2892 (*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-2049 (*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-1406 (*1 *2 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-1930 (*1 *2 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-1844 (*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-3064 (*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))) (-2465 (*1 *1 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
+(-13 (-1033 |t#1|) (-921 |t#1|) (-10 -8 (-15 -3464 ($)) (-15 -3464 ($ (-588 |t#1|))) (-15 -4179 ((-708) $)) (-15 -2892 (|t#1| $)) (-15 -2049 (|t#1| $)) (-15 -1406 (|t#1| |t#1| $)) (-15 -1930 (|t#1| |t#1| $)) (-15 -1844 (|t#1| $)) (-15 -3064 (|t#1| $)) (-15 -2465 ($ $))))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-921 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1033 |#1|) . T) ((-1120) . T))
+((-1568 (((-1 (-872 (-202)) (-202) (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1 (-202) (-202) (-202) (-202))) 139)) (-3091 (((-1045 (-202)) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354))) 160) (((-1045 (-202)) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)) (-588 (-239))) 158) (((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354))) 163) (((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239))) 159) (((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354))) 150) (((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239))) 149) (((-1045 (-202)) (-1 (-872 (-202)) (-202)) (-1009 (-354))) 129) (((-1045 (-202)) (-1 (-872 (-202)) (-202)) (-1009 (-354)) (-588 (-239))) 127) (((-1045 (-202)) (-808 (-1 (-202) (-202))) (-1009 (-354))) 128) (((-1045 (-202)) (-808 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239))) 125)) (-3053 (((-1168) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354))) 162) (((-1168) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)) (-588 (-239))) 161) (((-1168) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354))) 165) (((-1168) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239))) 164) (((-1168) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354))) 152) (((-1168) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239))) 151) (((-1168) (-1 (-872 (-202)) (-202)) (-1009 (-354))) 135) (((-1168) (-1 (-872 (-202)) (-202)) (-1009 (-354)) (-588 (-239))) 134) (((-1168) (-808 (-1 (-202) (-202))) (-1009 (-354))) 133) (((-1168) (-808 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239))) 132) (((-1167) (-806 (-1 (-202) (-202))) (-1009 (-354))) 99) (((-1167) (-806 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239))) 98) (((-1167) (-1 (-202) (-202)) (-1009 (-354))) 95) (((-1167) (-1 (-202) (-202)) (-1009 (-354)) (-588 (-239))) 94)))
+(((-231) (-10 -7 (-15 -3053 ((-1167) (-1 (-202) (-202)) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1167) (-1 (-202) (-202)) (-1009 (-354)))) (-15 -3053 ((-1167) (-806 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1167) (-806 (-1 (-202) (-202))) (-1009 (-354)))) (-15 -3053 ((-1168) (-808 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-808 (-1 (-202) (-202))) (-1009 (-354)))) (-15 -3053 ((-1168) (-1 (-872 (-202)) (-202)) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-1 (-872 (-202)) (-202)) (-1009 (-354)))) (-15 -3091 ((-1045 (-202)) (-808 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-808 (-1 (-202) (-202))) (-1009 (-354)))) (-15 -3091 ((-1045 (-202)) (-1 (-872 (-202)) (-202)) (-1009 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-1 (-872 (-202)) (-202)) (-1009 (-354)))) (-15 -3053 ((-1168) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -3091 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -3053 ((-1168) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -3091 ((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -3053 ((-1168) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)))) (-15 -3091 ((-1045 (-202)) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)))) (-15 -1568 ((-1 (-872 (-202)) (-202) (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1 (-202) (-202) (-202) (-202)))))) (T -231))
+((-1568 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-872 (-202)) (-202) (-202))) (-5 *3 (-1 (-202) (-202) (-202) (-202))) (-5 *1 (-231)))) (-3091 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-811 (-1 (-202) (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-3091 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-811 (-1 (-202) (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-811 (-1 (-202) (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-811 (-1 (-202) (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-3091 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-3091 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-3091 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-3091 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-3091 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-872 (-202)) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-3091 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-872 (-202)) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-3091 (*1 *2 *3 *4) (-12 (-5 *3 (-808 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-3091 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-808 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-872 (-202)) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-872 (-202)) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4) (-12 (-5 *3 (-808 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-808 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4) (-12 (-5 *3 (-806 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *2 (-1167)) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-806 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *2 (-1167)) (-5 *1 (-231)))) (-3053 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-202) (-202))) (-5 *4 (-1009 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-231)))))
+(-10 -7 (-15 -3053 ((-1167) (-1 (-202) (-202)) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1167) (-1 (-202) (-202)) (-1009 (-354)))) (-15 -3053 ((-1167) (-806 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1167) (-806 (-1 (-202) (-202))) (-1009 (-354)))) (-15 -3053 ((-1168) (-808 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-808 (-1 (-202) (-202))) (-1009 (-354)))) (-15 -3053 ((-1168) (-1 (-872 (-202)) (-202)) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-1 (-872 (-202)) (-202)) (-1009 (-354)))) (-15 -3091 ((-1045 (-202)) (-808 (-1 (-202) (-202))) (-1009 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-808 (-1 (-202) (-202))) (-1009 (-354)))) (-15 -3091 ((-1045 (-202)) (-1 (-872 (-202)) (-202)) (-1009 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-1 (-872 (-202)) (-202)) (-1009 (-354)))) (-15 -3053 ((-1168) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -3091 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -3053 ((-1168) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -3091 ((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-354)) (-1009 (-354)))) (-15 -3053 ((-1168) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)))) (-15 -3091 ((-1045 (-202)) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-811 (-1 (-202) (-202) (-202))) (-1009 (-354)) (-1009 (-354)))) (-15 -1568 ((-1 (-872 (-202)) (-202) (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1 (-202) (-202) (-202) (-202)))))
+((-3053 (((-1167) (-270 |#2|) (-1085) (-1085) (-588 (-239))) 93)))
+(((-232 |#1| |#2|) (-10 -7 (-15 -3053 ((-1167) (-270 |#2|) (-1085) (-1085) (-588 (-239))))) (-13 (-514) (-784) (-962 (-522))) (-405 |#1|)) (T -232))
+((-3053 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-270 *7)) (-5 *4 (-1085)) (-5 *5 (-588 (-239))) (-4 *7 (-405 *6)) (-4 *6 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-1167)) (-5 *1 (-232 *6 *7)))))
+(-10 -7 (-15 -3053 ((-1167) (-270 |#2|) (-1085) (-1085) (-588 (-239)))))
+((-2307 (((-522) (-522)) 50)) (-2514 (((-522) (-522)) 51)) (-2293 (((-202) (-202)) 52)) (-2996 (((-1168) (-1 (-154 (-202)) (-154 (-202))) (-1009 (-202)) (-1009 (-202))) 49)) (-1589 (((-1168) (-1 (-154 (-202)) (-154 (-202))) (-1009 (-202)) (-1009 (-202)) (-108)) 47)))
+(((-233) (-10 -7 (-15 -1589 ((-1168) (-1 (-154 (-202)) (-154 (-202))) (-1009 (-202)) (-1009 (-202)) (-108))) (-15 -2996 ((-1168) (-1 (-154 (-202)) (-154 (-202))) (-1009 (-202)) (-1009 (-202)))) (-15 -2307 ((-522) (-522))) (-15 -2514 ((-522) (-522))) (-15 -2293 ((-202) (-202))))) (T -233))
+((-2293 (*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-233)))) (-2514 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-233)))) (-2307 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-233)))) (-2996 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-154 (-202)) (-154 (-202)))) (-5 *4 (-1009 (-202))) (-5 *2 (-1168)) (-5 *1 (-233)))) (-1589 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-154 (-202)) (-154 (-202)))) (-5 *4 (-1009 (-202))) (-5 *5 (-108)) (-5 *2 (-1168)) (-5 *1 (-233)))))
+(-10 -7 (-15 -1589 ((-1168) (-1 (-154 (-202)) (-154 (-202))) (-1009 (-202)) (-1009 (-202)) (-108))) (-15 -2996 ((-1168) (-1 (-154 (-202)) (-154 (-202))) (-1009 (-202)) (-1009 (-202)))) (-15 -2307 ((-522) (-522))) (-15 -2514 ((-522) (-522))) (-15 -2293 ((-202) (-202))))
+((-2217 (((-1007 (-354)) (-1007 (-291 |#1|))) 16)))
+(((-234 |#1|) (-10 -7 (-15 -2217 ((-1007 (-354)) (-1007 (-291 |#1|))))) (-13 (-784) (-514) (-563 (-354)))) (T -234))
+((-2217 (*1 *2 *3) (-12 (-5 *3 (-1007 (-291 *4))) (-4 *4 (-13 (-784) (-514) (-563 (-354)))) (-5 *2 (-1007 (-354))) (-5 *1 (-234 *4)))))
+(-10 -7 (-15 -2217 ((-1007 (-354)) (-1007 (-291 |#1|)))))
+((-3091 (((-1045 (-202)) (-811 |#1|) (-1007 (-354)) (-1007 (-354))) 69) (((-1045 (-202)) (-811 |#1|) (-1007 (-354)) (-1007 (-354)) (-588 (-239))) 68) (((-1045 (-202)) |#1| (-1007 (-354)) (-1007 (-354))) 59) (((-1045 (-202)) |#1| (-1007 (-354)) (-1007 (-354)) (-588 (-239))) 58) (((-1045 (-202)) (-808 |#1|) (-1007 (-354))) 50) (((-1045 (-202)) (-808 |#1|) (-1007 (-354)) (-588 (-239))) 49)) (-3053 (((-1168) (-811 |#1|) (-1007 (-354)) (-1007 (-354))) 72) (((-1168) (-811 |#1|) (-1007 (-354)) (-1007 (-354)) (-588 (-239))) 71) (((-1168) |#1| (-1007 (-354)) (-1007 (-354))) 62) (((-1168) |#1| (-1007 (-354)) (-1007 (-354)) (-588 (-239))) 61) (((-1168) (-808 |#1|) (-1007 (-354))) 54) (((-1168) (-808 |#1|) (-1007 (-354)) (-588 (-239))) 53) (((-1167) (-806 |#1|) (-1007 (-354))) 41) (((-1167) (-806 |#1|) (-1007 (-354)) (-588 (-239))) 40) (((-1167) |#1| (-1007 (-354))) 33) (((-1167) |#1| (-1007 (-354)) (-588 (-239))) 32)))
+(((-235 |#1|) (-10 -7 (-15 -3053 ((-1167) |#1| (-1007 (-354)) (-588 (-239)))) (-15 -3053 ((-1167) |#1| (-1007 (-354)))) (-15 -3053 ((-1167) (-806 |#1|) (-1007 (-354)) (-588 (-239)))) (-15 -3053 ((-1167) (-806 |#1|) (-1007 (-354)))) (-15 -3053 ((-1168) (-808 |#1|) (-1007 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-808 |#1|) (-1007 (-354)))) (-15 -3091 ((-1045 (-202)) (-808 |#1|) (-1007 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-808 |#1|) (-1007 (-354)))) (-15 -3053 ((-1168) |#1| (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) |#1| (-1007 (-354)) (-1007 (-354)))) (-15 -3091 ((-1045 (-202)) |#1| (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) |#1| (-1007 (-354)) (-1007 (-354)))) (-15 -3053 ((-1168) (-811 |#1|) (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-811 |#1|) (-1007 (-354)) (-1007 (-354)))) (-15 -3091 ((-1045 (-202)) (-811 |#1|) (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-811 |#1|) (-1007 (-354)) (-1007 (-354))))) (-13 (-563 (-498)) (-1014))) (T -235))
+((-3091 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-811 *5)) (-5 *4 (-1007 (-354))) (-4 *5 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1045 (-202))) (-5 *1 (-235 *5)))) (-3091 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-811 *6)) (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-4 *6 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1045 (-202))) (-5 *1 (-235 *6)))) (-3053 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-811 *5)) (-5 *4 (-1007 (-354))) (-4 *5 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1168)) (-5 *1 (-235 *5)))) (-3053 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-811 *6)) (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-4 *6 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1168)) (-5 *1 (-235 *6)))) (-3091 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1007 (-354))) (-5 *2 (-1045 (-202))) (-5 *1 (-235 *3)) (-4 *3 (-13 (-563 (-498)) (-1014))))) (-3091 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-235 *3)) (-4 *3 (-13 (-563 (-498)) (-1014))))) (-3053 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1007 (-354))) (-5 *2 (-1168)) (-5 *1 (-235 *3)) (-4 *3 (-13 (-563 (-498)) (-1014))))) (-3053 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-235 *3)) (-4 *3 (-13 (-563 (-498)) (-1014))))) (-3091 (*1 *2 *3 *4) (-12 (-5 *3 (-808 *5)) (-5 *4 (-1007 (-354))) (-4 *5 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1045 (-202))) (-5 *1 (-235 *5)))) (-3091 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-808 *6)) (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-4 *6 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1045 (-202))) (-5 *1 (-235 *6)))) (-3053 (*1 *2 *3 *4) (-12 (-5 *3 (-808 *5)) (-5 *4 (-1007 (-354))) (-4 *5 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1168)) (-5 *1 (-235 *5)))) (-3053 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-808 *6)) (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-4 *6 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1168)) (-5 *1 (-235 *6)))) (-3053 (*1 *2 *3 *4) (-12 (-5 *3 (-806 *5)) (-5 *4 (-1007 (-354))) (-4 *5 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1167)) (-5 *1 (-235 *5)))) (-3053 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-806 *6)) (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-4 *6 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1167)) (-5 *1 (-235 *6)))) (-3053 (*1 *2 *3 *4) (-12 (-5 *4 (-1007 (-354))) (-5 *2 (-1167)) (-5 *1 (-235 *3)) (-4 *3 (-13 (-563 (-498)) (-1014))))) (-3053 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1007 (-354))) (-5 *5 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-235 *3)) (-4 *3 (-13 (-563 (-498)) (-1014))))))
+(-10 -7 (-15 -3053 ((-1167) |#1| (-1007 (-354)) (-588 (-239)))) (-15 -3053 ((-1167) |#1| (-1007 (-354)))) (-15 -3053 ((-1167) (-806 |#1|) (-1007 (-354)) (-588 (-239)))) (-15 -3053 ((-1167) (-806 |#1|) (-1007 (-354)))) (-15 -3053 ((-1168) (-808 |#1|) (-1007 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-808 |#1|) (-1007 (-354)))) (-15 -3091 ((-1045 (-202)) (-808 |#1|) (-1007 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-808 |#1|) (-1007 (-354)))) (-15 -3053 ((-1168) |#1| (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) |#1| (-1007 (-354)) (-1007 (-354)))) (-15 -3091 ((-1045 (-202)) |#1| (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) |#1| (-1007 (-354)) (-1007 (-354)))) (-15 -3053 ((-1168) (-811 |#1|) (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -3053 ((-1168) (-811 |#1|) (-1007 (-354)) (-1007 (-354)))) (-15 -3091 ((-1045 (-202)) (-811 |#1|) (-1007 (-354)) (-1007 (-354)) (-588 (-239)))) (-15 -3091 ((-1045 (-202)) (-811 |#1|) (-1007 (-354)) (-1007 (-354)))))
+((-3053 (((-1168) (-588 (-202)) (-588 (-202)) (-588 (-202)) (-588 (-239))) 21) (((-1168) (-588 (-202)) (-588 (-202)) (-588 (-202))) 22) (((-1167) (-588 (-872 (-202))) (-588 (-239))) 13) (((-1167) (-588 (-872 (-202)))) 14) (((-1167) (-588 (-202)) (-588 (-202)) (-588 (-239))) 18) (((-1167) (-588 (-202)) (-588 (-202))) 19)))
+(((-236) (-10 -7 (-15 -3053 ((-1167) (-588 (-202)) (-588 (-202)))) (-15 -3053 ((-1167) (-588 (-202)) (-588 (-202)) (-588 (-239)))) (-15 -3053 ((-1167) (-588 (-872 (-202))))) (-15 -3053 ((-1167) (-588 (-872 (-202))) (-588 (-239)))) (-15 -3053 ((-1168) (-588 (-202)) (-588 (-202)) (-588 (-202)))) (-15 -3053 ((-1168) (-588 (-202)) (-588 (-202)) (-588 (-202)) (-588 (-239)))))) (T -236))
+((-3053 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-588 (-202))) (-5 *4 (-588 (-239))) (-5 *2 (-1168)) (-5 *1 (-236)))) (-3053 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-588 (-202))) (-5 *2 (-1168)) (-5 *1 (-236)))) (-3053 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-872 (-202)))) (-5 *4 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-236)))) (-3053 (*1 *2 *3) (-12 (-5 *3 (-588 (-872 (-202)))) (-5 *2 (-1167)) (-5 *1 (-236)))) (-3053 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-588 (-202))) (-5 *4 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-236)))) (-3053 (*1 *2 *3 *3) (-12 (-5 *3 (-588 (-202))) (-5 *2 (-1167)) (-5 *1 (-236)))))
+(-10 -7 (-15 -3053 ((-1167) (-588 (-202)) (-588 (-202)))) (-15 -3053 ((-1167) (-588 (-202)) (-588 (-202)) (-588 (-239)))) (-15 -3053 ((-1167) (-588 (-872 (-202))))) (-15 -3053 ((-1167) (-588 (-872 (-202))) (-588 (-239)))) (-15 -3053 ((-1168) (-588 (-202)) (-588 (-202)) (-588 (-202)))) (-15 -3053 ((-1168) (-588 (-202)) (-588 (-202)) (-588 (-202)) (-588 (-239)))))
+((-1210 (((-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))) (-588 (-239)) (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) 24)) (-1948 (((-850) (-588 (-239)) (-850)) 49)) (-2014 (((-850) (-588 (-239)) (-850)) 48)) (-2035 (((-588 (-354)) (-588 (-239)) (-588 (-354))) 65)) (-2857 (((-354) (-588 (-239)) (-354)) 55)) (-1640 (((-850) (-588 (-239)) (-850)) 50)) (-2511 (((-108) (-588 (-239)) (-108)) 26)) (-3082 (((-1068) (-588 (-239)) (-1068)) 19)) (-1444 (((-1068) (-588 (-239)) (-1068)) 25)) (-1903 (((-1045 (-202)) (-588 (-239))) 43)) (-3753 (((-588 (-1009 (-354))) (-588 (-239)) (-588 (-1009 (-354)))) 37)) (-2418 (((-803) (-588 (-239)) (-803)) 31)) (-2689 (((-803) (-588 (-239)) (-803)) 32)) (-2647 (((-1 (-872 (-202)) (-872 (-202))) (-588 (-239)) (-1 (-872 (-202)) (-872 (-202)))) 60)) (-1649 (((-108) (-588 (-239)) (-108)) 15)) (-1768 (((-108) (-588 (-239)) (-108)) 14)))
+(((-237) (-10 -7 (-15 -1768 ((-108) (-588 (-239)) (-108))) (-15 -1649 ((-108) (-588 (-239)) (-108))) (-15 -1210 ((-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))) (-588 (-239)) (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))) (-15 -3082 ((-1068) (-588 (-239)) (-1068))) (-15 -1444 ((-1068) (-588 (-239)) (-1068))) (-15 -2511 ((-108) (-588 (-239)) (-108))) (-15 -2418 ((-803) (-588 (-239)) (-803))) (-15 -2689 ((-803) (-588 (-239)) (-803))) (-15 -3753 ((-588 (-1009 (-354))) (-588 (-239)) (-588 (-1009 (-354))))) (-15 -2014 ((-850) (-588 (-239)) (-850))) (-15 -1948 ((-850) (-588 (-239)) (-850))) (-15 -1903 ((-1045 (-202)) (-588 (-239)))) (-15 -1640 ((-850) (-588 (-239)) (-850))) (-15 -2857 ((-354) (-588 (-239)) (-354))) (-15 -2647 ((-1 (-872 (-202)) (-872 (-202))) (-588 (-239)) (-1 (-872 (-202)) (-872 (-202))))) (-15 -2035 ((-588 (-354)) (-588 (-239)) (-588 (-354)))))) (T -237))
+((-2035 (*1 *2 *3 *2) (-12 (-5 *2 (-588 (-354))) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-2647 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-872 (-202)) (-872 (-202)))) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-2857 (*1 *2 *3 *2) (-12 (-5 *2 (-354)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1640 (*1 *2 *3 *2) (-12 (-5 *2 (-850)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1903 (*1 *2 *3) (-12 (-5 *3 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-237)))) (-1948 (*1 *2 *3 *2) (-12 (-5 *2 (-850)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-2014 (*1 *2 *3 *2) (-12 (-5 *2 (-850)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-3753 (*1 *2 *3 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-2689 (*1 *2 *3 *2) (-12 (-5 *2 (-803)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-2418 (*1 *2 *3 *2) (-12 (-5 *2 (-803)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-2511 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1444 (*1 *2 *3 *2) (-12 (-5 *2 (-1068)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-3082 (*1 *2 *3 *2) (-12 (-5 *2 (-1068)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1210 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1649 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))) (-1768 (*1 *2 *3 *2) (-12 (-5 *2 (-108)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))))
+(-10 -7 (-15 -1768 ((-108) (-588 (-239)) (-108))) (-15 -1649 ((-108) (-588 (-239)) (-108))) (-15 -1210 ((-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))) (-588 (-239)) (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))) (-15 -3082 ((-1068) (-588 (-239)) (-1068))) (-15 -1444 ((-1068) (-588 (-239)) (-1068))) (-15 -2511 ((-108) (-588 (-239)) (-108))) (-15 -2418 ((-803) (-588 (-239)) (-803))) (-15 -2689 ((-803) (-588 (-239)) (-803))) (-15 -3753 ((-588 (-1009 (-354))) (-588 (-239)) (-588 (-1009 (-354))))) (-15 -2014 ((-850) (-588 (-239)) (-850))) (-15 -1948 ((-850) (-588 (-239)) (-850))) (-15 -1903 ((-1045 (-202)) (-588 (-239)))) (-15 -1640 ((-850) (-588 (-239)) (-850))) (-15 -2857 ((-354) (-588 (-239)) (-354))) (-15 -2647 ((-1 (-872 (-202)) (-872 (-202))) (-588 (-239)) (-1 (-872 (-202)) (-872 (-202))))) (-15 -2035 ((-588 (-354)) (-588 (-239)) (-588 (-354)))))
+((-3131 (((-3 |#1| "failed") (-588 (-239)) (-1085)) 17)))
+(((-238 |#1|) (-10 -7 (-15 -3131 ((-3 |#1| "failed") (-588 (-239)) (-1085)))) (-1120)) (T -238))
+((-3131 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-588 (-239))) (-5 *4 (-1085)) (-5 *1 (-238 *2)) (-4 *2 (-1120)))))
+(-10 -7 (-15 -3131 ((-3 |#1| "failed") (-588 (-239)) (-1085))))
+((-1419 (((-108) $ $) NIL)) (-1210 (($ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) 14)) (-1948 (($ (-850)) 70)) (-2014 (($ (-850)) 69)) (-2541 (($ (-588 (-354))) 76)) (-2857 (($ (-354)) 55)) (-1640 (($ (-850)) 71)) (-2511 (($ (-108)) 22)) (-3082 (($ (-1068)) 17)) (-1444 (($ (-1068)) 18)) (-1903 (($ (-1045 (-202))) 65)) (-3753 (($ (-588 (-1009 (-354)))) 61)) (-2321 (($ (-588 (-1009 (-354)))) 56) (($ (-588 (-1009 (-382 (-522))))) 60)) (-3477 (($ (-354)) 28) (($ (-803)) 32)) (-2172 (((-108) (-588 $) (-1085)) 85)) (-3131 (((-3 (-51) "failed") (-588 $) (-1085)) 87)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3124 (($ (-354)) 33) (($ (-803)) 34)) (-3510 (($ (-1 (-872 (-202)) (-872 (-202)))) 54)) (-2647 (($ (-1 (-872 (-202)) (-872 (-202)))) 72)) (-2277 (($ (-1 (-202) (-202))) 38) (($ (-1 (-202) (-202) (-202))) 42) (($ (-1 (-202) (-202) (-202) (-202))) 46)) (-2217 (((-792) $) 81)) (-2741 (($ (-108)) 23) (($ (-588 (-1009 (-354)))) 50)) (-1768 (($ (-108)) 24)) (-1562 (((-108) $ $) 83)))
+(((-239) (-13 (-1014) (-10 -8 (-15 -1768 ($ (-108))) (-15 -2741 ($ (-108))) (-15 -1210 ($ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))) (-15 -3082 ($ (-1068))) (-15 -1444 ($ (-1068))) (-15 -2511 ($ (-108))) (-15 -2741 ($ (-588 (-1009 (-354))))) (-15 -3510 ($ (-1 (-872 (-202)) (-872 (-202))))) (-15 -3477 ($ (-354))) (-15 -3477 ($ (-803))) (-15 -3124 ($ (-354))) (-15 -3124 ($ (-803))) (-15 -2277 ($ (-1 (-202) (-202)))) (-15 -2277 ($ (-1 (-202) (-202) (-202)))) (-15 -2277 ($ (-1 (-202) (-202) (-202) (-202)))) (-15 -2857 ($ (-354))) (-15 -2321 ($ (-588 (-1009 (-354))))) (-15 -2321 ($ (-588 (-1009 (-382 (-522)))))) (-15 -3753 ($ (-588 (-1009 (-354))))) (-15 -1903 ($ (-1045 (-202)))) (-15 -2014 ($ (-850))) (-15 -1948 ($ (-850))) (-15 -1640 ($ (-850))) (-15 -2647 ($ (-1 (-872 (-202)) (-872 (-202))))) (-15 -2541 ($ (-588 (-354)))) (-15 -3131 ((-3 (-51) "failed") (-588 $) (-1085))) (-15 -2172 ((-108) (-588 $) (-1085)))))) (T -239))
+((-1768 (*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-239)))) (-2741 (*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-239)))) (-1210 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) (-5 *1 (-239)))) (-3082 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-239)))) (-1444 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-239)))) (-2511 (*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-239)))) (-2741 (*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-239)))) (-3510 (*1 *1 *2) (-12 (-5 *2 (-1 (-872 (-202)) (-872 (-202)))) (-5 *1 (-239)))) (-3477 (*1 *1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-239)))) (-3477 (*1 *1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-239)))) (-3124 (*1 *1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-239)))) (-3124 (*1 *1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-239)))) (-2277 (*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *1 (-239)))) (-2277 (*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202) (-202))) (-5 *1 (-239)))) (-2277 (*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202) (-202) (-202))) (-5 *1 (-239)))) (-2857 (*1 *1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-239)))) (-2321 (*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-239)))) (-2321 (*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-382 (-522))))) (-5 *1 (-239)))) (-3753 (*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-239)))) (-1903 (*1 *1 *2) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-239)))) (-2014 (*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-239)))) (-1948 (*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-239)))) (-1640 (*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-239)))) (-2647 (*1 *1 *2) (-12 (-5 *2 (-1 (-872 (-202)) (-872 (-202)))) (-5 *1 (-239)))) (-2541 (*1 *1 *2) (-12 (-5 *2 (-588 (-354))) (-5 *1 (-239)))) (-3131 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-588 (-239))) (-5 *4 (-1085)) (-5 *2 (-51)) (-5 *1 (-239)))) (-2172 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-239))) (-5 *4 (-1085)) (-5 *2 (-108)) (-5 *1 (-239)))))
+(-13 (-1014) (-10 -8 (-15 -1768 ($ (-108))) (-15 -2741 ($ (-108))) (-15 -1210 ($ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))) (-15 -3082 ($ (-1068))) (-15 -1444 ($ (-1068))) (-15 -2511 ($ (-108))) (-15 -2741 ($ (-588 (-1009 (-354))))) (-15 -3510 ($ (-1 (-872 (-202)) (-872 (-202))))) (-15 -3477 ($ (-354))) (-15 -3477 ($ (-803))) (-15 -3124 ($ (-354))) (-15 -3124 ($ (-803))) (-15 -2277 ($ (-1 (-202) (-202)))) (-15 -2277 ($ (-1 (-202) (-202) (-202)))) (-15 -2277 ($ (-1 (-202) (-202) (-202) (-202)))) (-15 -2857 ($ (-354))) (-15 -2321 ($ (-588 (-1009 (-354))))) (-15 -2321 ($ (-588 (-1009 (-382 (-522)))))) (-15 -3753 ($ (-588 (-1009 (-354))))) (-15 -1903 ($ (-1045 (-202)))) (-15 -2014 ($ (-850))) (-15 -1948 ($ (-850))) (-15 -1640 ($ (-850))) (-15 -2647 ($ (-1 (-872 (-202)) (-872 (-202))))) (-15 -2541 ($ (-588 (-354)))) (-15 -3131 ((-3 (-51) "failed") (-588 $) (-1085))) (-15 -2172 ((-108) (-588 $) (-1085)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-4044 (((-588 (-708)) $) NIL) (((-588 (-708)) $ |#2|) NIL)) (-3192 (((-708) $) NIL) (((-708) $ |#2|) NIL)) (-3533 (((-588 |#3|) $) NIL)) (-1264 (((-1081 $) $ |#3|) NIL) (((-1081 |#1|) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 |#3|)) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2961 (($ $) NIL (|has| |#1| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1646 (($ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1037 |#1| |#2|) "failed") $) 20)) (-1478 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1037 |#1| |#2|) $) NIL)) (-2908 (($ $ $ |#3|) NIL (|has| |#1| (-157)))) (-3241 (($ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#1| (-426))) (($ $ |#3|) NIL (|has| |#1| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#1| (-838)))) (-3792 (($ $ |#1| (-494 |#3|) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| |#1| (-815 (-354))) (|has| |#3| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| |#1| (-815 (-522))) (|has| |#3| (-815 (-522)))))) (-3872 (((-708) $ |#2|) NIL) (((-708) $) 10)) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-3520 (($ (-1081 |#1|) |#3|) NIL) (($ (-1081 $) |#3|) NIL)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-494 |#3|)) NIL) (($ $ |#3| (-708)) NIL) (($ $ (-588 |#3|) (-588 (-708))) NIL)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ |#3|) NIL)) (-3564 (((-494 |#3|) $) NIL) (((-708) $ |#3|) NIL) (((-588 (-708)) $ (-588 |#3|)) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-1723 (($ (-1 (-494 |#3|) (-494 |#3|)) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-2718 (((-1 $ (-708)) |#2|) NIL) (((-1 $ (-708)) $) NIL (|has| |#1| (-210)))) (-3155 (((-3 |#3| "failed") $) NIL)) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-1611 ((|#3| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2311 (((-1068) $) NIL)) (-1717 (((-108) $) NIL)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| |#3|) (|:| -3858 (-708))) "failed") $) NIL)) (-1992 (($ $) NIL)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) NIL)) (-3207 ((|#1| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-838)))) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-588 |#3|) (-588 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-588 |#3|) (-588 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-210))) (($ $ (-588 |#2|) (-588 $)) NIL (|has| |#1| (-210))) (($ $ |#2| |#1|) NIL (|has| |#1| (-210))) (($ $ (-588 |#2|) (-588 |#1|)) NIL (|has| |#1| (-210)))) (-1615 (($ $ |#3|) NIL (|has| |#1| (-157)))) (-2731 (($ $ |#3|) NIL) (($ $ (-588 |#3|)) NIL) (($ $ |#3| (-708)) NIL) (($ $ (-588 |#3|) (-588 (-708))) NIL) (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1266 (((-588 |#2|) $) NIL)) (-2487 (((-494 |#3|) $) NIL) (((-708) $ |#3|) NIL) (((-588 (-708)) $ (-588 |#3|)) NIL) (((-708) $ |#2|) NIL)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#3| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#3| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| |#1| (-563 (-498))) (|has| |#3| (-563 (-498)))))) (-2988 ((|#1| $) NIL (|has| |#1| (-426))) (($ $ |#3|) NIL (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) 23) (($ |#3|) 22) (($ |#2|) NIL) (($ (-1037 |#1| |#2|)) 28) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-494 |#3|)) NIL) (($ $ |#3| (-708)) NIL) (($ $ (-588 |#3|) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ |#3|) NIL) (($ $ (-588 |#3|)) NIL) (($ $ |#3| (-708)) NIL) (($ $ (-588 |#3|) (-588 (-708))) NIL) (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-240 |#1| |#2| |#3|) (-13 (-229 |#1| |#2| |#3| (-494 |#3|)) (-962 (-1037 |#1| |#2|))) (-971) (-784) (-242 |#2|)) (T -240))
NIL
(-13 (-229 |#1| |#2| |#3| (-494 |#3|)) (-962 (-1037 |#1| |#2|)))
-((-3152 (((-708) $) 30)) (-1297 (((-3 |#2| "failed") $) 17)) (-1484 ((|#2| $) 27)) (-2157 (($ $) 12) (($ $ (-708)) 15)) (-2190 (((-792) $) 26) (($ |#2|) 10)) (-1531 (((-108) $ $) 20)) (-1549 (((-108) $ $) 29)))
-(((-241 |#1| |#2|) (-10 -8 (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1|)) (-15 -3152 ((-708) |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -1549 ((-108) |#1| |#1|)) (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|))) (-242 |#2|) (-784)) (T -241))
+((-3192 (((-708) $) 30)) (-3700 (((-3 |#2| "failed") $) 17)) (-1478 ((|#2| $) 27)) (-2731 (($ $) 12) (($ $ (-708)) 15)) (-2217 (((-792) $) 26) (($ |#2|) 10)) (-1562 (((-108) $ $) 20)) (-1587 (((-108) $ $) 29)))
+(((-241 |#1| |#2|) (-10 -8 (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1|)) (-15 -3192 ((-708) |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -1587 ((-108) |#1| |#1|)) (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|))) (-242 |#2|) (-784)) (T -241))
NIL
-(-10 -8 (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1|)) (-15 -3152 ((-708) |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -1549 ((-108) |#1| |#1|)) (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-3152 (((-708) $) 22)) (-1611 ((|#1| $) 23)) (-1297 (((-3 |#1| "failed") $) 27)) (-1484 ((|#1| $) 26)) (-3714 (((-708) $) 24)) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-3830 (($ |#1| (-708)) 25)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2157 (($ $) 21) (($ $ (-708)) 20)) (-2190 (((-792) $) 11) (($ |#1|) 28)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)))
+(-10 -8 (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1|)) (-15 -3192 ((-708) |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -1587 ((-108) |#1| |#1|)) (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-3192 (((-708) $) 22)) (-1660 ((|#1| $) 23)) (-3700 (((-3 |#1| "failed") $) 27)) (-1478 ((|#1| $) 26)) (-3872 (((-708) $) 24)) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-2718 (($ |#1| (-708)) 25)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2731 (($ $) 21) (($ $ (-708)) 20)) (-2217 (((-792) $) 11) (($ |#1|) 28)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)))
(((-242 |#1|) (-1197) (-784)) (T -242))
-((-2190 (*1 *1 *2) (-12 (-4 *1 (-242 *2)) (-4 *2 (-784)))) (-3830 (*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-242 *2)) (-4 *2 (-784)))) (-3714 (*1 *2 *1) (-12 (-4 *1 (-242 *3)) (-4 *3 (-784)) (-5 *2 (-708)))) (-1611 (*1 *2 *1) (-12 (-4 *1 (-242 *2)) (-4 *2 (-784)))) (-3152 (*1 *2 *1) (-12 (-4 *1 (-242 *3)) (-4 *3 (-784)) (-5 *2 (-708)))) (-2157 (*1 *1 *1) (-12 (-4 *1 (-242 *2)) (-4 *2 (-784)))) (-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-242 *3)) (-4 *3 (-784)))))
-(-13 (-784) (-962 |t#1|) (-10 -8 (-15 -3830 ($ |t#1| (-708))) (-15 -3714 ((-708) $)) (-15 -1611 (|t#1| $)) (-15 -3152 ((-708) $)) (-15 -2157 ($ $)) (-15 -2157 ($ $ (-708))) (-15 -2190 ($ |t#1|))))
+((-2217 (*1 *1 *2) (-12 (-4 *1 (-242 *2)) (-4 *2 (-784)))) (-2718 (*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-242 *2)) (-4 *2 (-784)))) (-3872 (*1 *2 *1) (-12 (-4 *1 (-242 *3)) (-4 *3 (-784)) (-5 *2 (-708)))) (-1660 (*1 *2 *1) (-12 (-4 *1 (-242 *2)) (-4 *2 (-784)))) (-3192 (*1 *2 *1) (-12 (-4 *1 (-242 *3)) (-4 *3 (-784)) (-5 *2 (-708)))) (-2731 (*1 *1 *1) (-12 (-4 *1 (-242 *2)) (-4 *2 (-784)))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-242 *3)) (-4 *3 (-784)))))
+(-13 (-784) (-962 |t#1|) (-10 -8 (-15 -2718 ($ |t#1| (-708))) (-15 -3872 ((-708) $)) (-15 -1660 (|t#1| $)) (-15 -3192 ((-708) $)) (-15 -2731 ($ $)) (-15 -2731 ($ $ (-708))) (-15 -2217 ($ |t#1|))))
(((-97) . T) ((-562 (-792)) . T) ((-784) . T) ((-962 |#1|) . T) ((-1014) . T))
-((-4090 (((-588 (-1085)) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) 40)) (-4106 (((-588 (-1085)) (-291 (-202)) (-708)) 79)) (-2588 (((-3 (-291 (-202)) "failed") (-291 (-202))) 50)) (-2973 (((-291 (-202)) (-291 (-202))) 65)) (-1757 (((-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 26)) (-3135 (((-108) (-588 (-291 (-202)))) 83)) (-2538 (((-108) (-291 (-202))) 24)) (-2292 (((-588 (-1068)) (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))))) 105)) (-3040 (((-588 (-291 (-202))) (-588 (-291 (-202)))) 87)) (-2583 (((-588 (-291 (-202))) (-588 (-291 (-202)))) 85)) (-2125 (((-628 (-202)) (-588 (-291 (-202))) (-708)) 94)) (-2311 (((-108) (-291 (-202))) 20) (((-108) (-588 (-291 (-202)))) 84)) (-3051 (((-588 (-202)) (-588 (-777 (-202))) (-202)) 14)) (-2041 (((-354) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) 100)) (-3938 (((-960) (-1085) (-960)) 33)))
-(((-243) (-10 -7 (-15 -3051 ((-588 (-202)) (-588 (-777 (-202))) (-202))) (-15 -1757 ((-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))))) (-15 -2588 ((-3 (-291 (-202)) "failed") (-291 (-202)))) (-15 -2973 ((-291 (-202)) (-291 (-202)))) (-15 -3135 ((-108) (-588 (-291 (-202))))) (-15 -2311 ((-108) (-588 (-291 (-202))))) (-15 -2311 ((-108) (-291 (-202)))) (-15 -2125 ((-628 (-202)) (-588 (-291 (-202))) (-708))) (-15 -2583 ((-588 (-291 (-202))) (-588 (-291 (-202))))) (-15 -3040 ((-588 (-291 (-202))) (-588 (-291 (-202))))) (-15 -2538 ((-108) (-291 (-202)))) (-15 -4090 ((-588 (-1085)) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))) (-15 -4106 ((-588 (-1085)) (-291 (-202)) (-708))) (-15 -3938 ((-960) (-1085) (-960))) (-15 -2041 ((-354) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))) (-15 -2292 ((-588 (-1068)) (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))))))) (T -243))
-((-2292 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))))) (-5 *2 (-588 (-1068))) (-5 *1 (-243)))) (-2041 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) (-5 *2 (-354)) (-5 *1 (-243)))) (-3938 (*1 *2 *3 *2) (-12 (-5 *2 (-960)) (-5 *3 (-1085)) (-5 *1 (-243)))) (-4106 (*1 *2 *3 *4) (-12 (-5 *3 (-291 (-202))) (-5 *4 (-708)) (-5 *2 (-588 (-1085))) (-5 *1 (-243)))) (-4090 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) (-5 *2 (-588 (-1085))) (-5 *1 (-243)))) (-2538 (*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-108)) (-5 *1 (-243)))) (-3040 (*1 *2 *2) (-12 (-5 *2 (-588 (-291 (-202)))) (-5 *1 (-243)))) (-2583 (*1 *2 *2) (-12 (-5 *2 (-588 (-291 (-202)))) (-5 *1 (-243)))) (-2125 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-291 (-202)))) (-5 *4 (-708)) (-5 *2 (-628 (-202))) (-5 *1 (-243)))) (-2311 (*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-108)) (-5 *1 (-243)))) (-2311 (*1 *2 *3) (-12 (-5 *3 (-588 (-291 (-202)))) (-5 *2 (-108)) (-5 *1 (-243)))) (-3135 (*1 *2 *3) (-12 (-5 *3 (-588 (-291 (-202)))) (-5 *2 (-108)) (-5 *1 (-243)))) (-2973 (*1 *2 *2) (-12 (-5 *2 (-291 (-202))) (-5 *1 (-243)))) (-2588 (*1 *2 *2) (|partial| -12 (-5 *2 (-291 (-202))) (-5 *1 (-243)))) (-1757 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (-5 *1 (-243)))) (-3051 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-777 (-202)))) (-5 *4 (-202)) (-5 *2 (-588 *4)) (-5 *1 (-243)))))
-(-10 -7 (-15 -3051 ((-588 (-202)) (-588 (-777 (-202))) (-202))) (-15 -1757 ((-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))))) (-15 -2588 ((-3 (-291 (-202)) "failed") (-291 (-202)))) (-15 -2973 ((-291 (-202)) (-291 (-202)))) (-15 -3135 ((-108) (-588 (-291 (-202))))) (-15 -2311 ((-108) (-588 (-291 (-202))))) (-15 -2311 ((-108) (-291 (-202)))) (-15 -2125 ((-628 (-202)) (-588 (-291 (-202))) (-708))) (-15 -2583 ((-588 (-291 (-202))) (-588 (-291 (-202))))) (-15 -3040 ((-588 (-291 (-202))) (-588 (-291 (-202))))) (-15 -2538 ((-108) (-291 (-202)))) (-15 -4090 ((-588 (-1085)) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))) (-15 -4106 ((-588 (-1085)) (-291 (-202)) (-708))) (-15 -3938 ((-960) (-1085) (-960))) (-15 -2041 ((-354) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))) (-15 -2292 ((-588 (-1068)) (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))))))
-((-1416 (((-108) $ $) NIL)) (-3619 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 39)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 20) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-3533 (((-588 (-1085)) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) 40)) (-4127 (((-588 (-1085)) (-291 (-202)) (-708)) 79)) (-3042 (((-3 (-291 (-202)) "failed") (-291 (-202))) 50)) (-4018 (((-291 (-202)) (-291 (-202))) 65)) (-3425 (((-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 26)) (-3088 (((-108) (-588 (-291 (-202)))) 83)) (-3512 (((-108) (-291 (-202))) 24)) (-2506 (((-588 (-1068)) (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))))) 105)) (-1540 (((-588 (-291 (-202))) (-588 (-291 (-202)))) 87)) (-3000 (((-588 (-291 (-202))) (-588 (-291 (-202)))) 85)) (-1542 (((-628 (-202)) (-588 (-291 (-202))) (-708)) 94)) (-2390 (((-108) (-291 (-202))) 20) (((-108) (-588 (-291 (-202)))) 84)) (-3468 (((-588 (-202)) (-588 (-777 (-202))) (-202)) 14)) (-2530 (((-354) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) 100)) (-1218 (((-960) (-1085) (-960)) 33)))
+(((-243) (-10 -7 (-15 -3468 ((-588 (-202)) (-588 (-777 (-202))) (-202))) (-15 -3425 ((-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))))) (-15 -3042 ((-3 (-291 (-202)) "failed") (-291 (-202)))) (-15 -4018 ((-291 (-202)) (-291 (-202)))) (-15 -3088 ((-108) (-588 (-291 (-202))))) (-15 -2390 ((-108) (-588 (-291 (-202))))) (-15 -2390 ((-108) (-291 (-202)))) (-15 -1542 ((-628 (-202)) (-588 (-291 (-202))) (-708))) (-15 -3000 ((-588 (-291 (-202))) (-588 (-291 (-202))))) (-15 -1540 ((-588 (-291 (-202))) (-588 (-291 (-202))))) (-15 -3512 ((-108) (-291 (-202)))) (-15 -3533 ((-588 (-1085)) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))) (-15 -4127 ((-588 (-1085)) (-291 (-202)) (-708))) (-15 -1218 ((-960) (-1085) (-960))) (-15 -2530 ((-354) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))) (-15 -2506 ((-588 (-1068)) (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))))))) (T -243))
+((-2506 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))))) (-5 *2 (-588 (-1068))) (-5 *1 (-243)))) (-2530 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) (-5 *2 (-354)) (-5 *1 (-243)))) (-1218 (*1 *2 *3 *2) (-12 (-5 *2 (-960)) (-5 *3 (-1085)) (-5 *1 (-243)))) (-4127 (*1 *2 *3 *4) (-12 (-5 *3 (-291 (-202))) (-5 *4 (-708)) (-5 *2 (-588 (-1085))) (-5 *1 (-243)))) (-3533 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) (-5 *2 (-588 (-1085))) (-5 *1 (-243)))) (-3512 (*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-108)) (-5 *1 (-243)))) (-1540 (*1 *2 *2) (-12 (-5 *2 (-588 (-291 (-202)))) (-5 *1 (-243)))) (-3000 (*1 *2 *2) (-12 (-5 *2 (-588 (-291 (-202)))) (-5 *1 (-243)))) (-1542 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-291 (-202)))) (-5 *4 (-708)) (-5 *2 (-628 (-202))) (-5 *1 (-243)))) (-2390 (*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-108)) (-5 *1 (-243)))) (-2390 (*1 *2 *3) (-12 (-5 *3 (-588 (-291 (-202)))) (-5 *2 (-108)) (-5 *1 (-243)))) (-3088 (*1 *2 *3) (-12 (-5 *3 (-588 (-291 (-202)))) (-5 *2 (-108)) (-5 *1 (-243)))) (-4018 (*1 *2 *2) (-12 (-5 *2 (-291 (-202))) (-5 *1 (-243)))) (-3042 (*1 *2 *2) (|partial| -12 (-5 *2 (-291 (-202))) (-5 *1 (-243)))) (-3425 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (-5 *1 (-243)))) (-3468 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-777 (-202)))) (-5 *4 (-202)) (-5 *2 (-588 *4)) (-5 *1 (-243)))))
+(-10 -7 (-15 -3468 ((-588 (-202)) (-588 (-777 (-202))) (-202))) (-15 -3425 ((-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))))) (-15 -3042 ((-3 (-291 (-202)) "failed") (-291 (-202)))) (-15 -4018 ((-291 (-202)) (-291 (-202)))) (-15 -3088 ((-108) (-588 (-291 (-202))))) (-15 -2390 ((-108) (-588 (-291 (-202))))) (-15 -2390 ((-108) (-291 (-202)))) (-15 -1542 ((-628 (-202)) (-588 (-291 (-202))) (-708))) (-15 -3000 ((-588 (-291 (-202))) (-588 (-291 (-202))))) (-15 -1540 ((-588 (-291 (-202))) (-588 (-291 (-202))))) (-15 -3512 ((-108) (-291 (-202)))) (-15 -3533 ((-588 (-1085)) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))) (-15 -4127 ((-588 (-1085)) (-291 (-202)) (-708))) (-15 -1218 ((-960) (-1085) (-960))) (-15 -2530 ((-354) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))) (-15 -2506 ((-588 (-1068)) (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))))))
+((-1419 (((-108) $ $) NIL)) (-4128 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 39)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 20) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-244) (-773)) (T -244))
NIL
(-773)
-((-1416 (((-108) $ $) NIL)) (-3619 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) 54) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 49)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 29) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) 31)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-4128 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) 54) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 49)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 29) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) 31)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-245) (-773)) (T -245))
NIL
(-773)
-((-1416 (((-108) $ $) NIL)) (-3619 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) 73) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 69)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 40) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) 51)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-4128 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) 73) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 69)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 40) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) 51)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-246) (-773)) (T -246))
NIL
(-773)
-((-1416 (((-108) $ $) NIL)) (-3619 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 48)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 27) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-4128 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 48)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 27) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-247) (-773)) (T -247))
NIL
(-773)
-((-1416 (((-108) $ $) NIL)) (-3619 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 48)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 23) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-4128 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 48)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 23) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-248) (-773)) (T -248))
NIL
(-773)
-((-1416 (((-108) $ $) NIL)) (-3619 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 69)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 23) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-4128 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 69)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 23) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-249) (-773)) (T -249))
NIL
(-773)
-((-1416 (((-108) $ $) NIL)) (-3619 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 73)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 19) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1531 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-4128 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) NIL) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 73)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 19) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1562 (((-108) $ $) NIL)))
(((-250) (-773)) (T -250))
NIL
(-773)
-((-1416 (((-108) $ $) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-3430 (((-588 (-522)) $) 17)) (-2793 (((-708) $) 15)) (-2190 (((-792) $) 21) (($ (-588 (-522))) 13)) (-2374 (($ (-708)) 18)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 9)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 11)))
-(((-251) (-13 (-784) (-10 -8 (-15 -2190 ($ (-588 (-522)))) (-15 -2793 ((-708) $)) (-15 -3430 ((-588 (-522)) $)) (-15 -2374 ($ (-708)))))) (T -251))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-251)))) (-2793 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-251)))) (-3430 (*1 *2 *1) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-251)))) (-2374 (*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-251)))))
-(-13 (-784) (-10 -8 (-15 -2190 ($ (-588 (-522)))) (-15 -2793 ((-708) $)) (-15 -3430 ((-588 (-522)) $)) (-15 -2374 ($ (-708)))))
-((-2908 ((|#2| |#2|) 77)) (-2772 ((|#2| |#2|) 65)) (-2507 (((-3 |#2| "failed") |#2| (-588 (-2 (|:| |func| |#2|) (|:| |pole| (-108))))) 116)) (-2884 ((|#2| |#2|) 75)) (-2748 ((|#2| |#2|) 63)) (-2930 ((|#2| |#2|) 79)) (-2794 ((|#2| |#2|) 67)) (-2838 ((|#2|) 46)) (-2626 (((-110) (-110)) 95)) (-1254 ((|#2| |#2|) 61)) (-2984 (((-108) |#2|) 134)) (-2877 ((|#2| |#2|) 180)) (-2387 ((|#2| |#2|) 156)) (-1576 ((|#2|) 59)) (-1563 ((|#2|) 58)) (-1646 ((|#2| |#2|) 176)) (-2359 ((|#2| |#2|) 152)) (-2565 ((|#2| |#2|) 184)) (-1734 ((|#2| |#2|) 160)) (-1408 ((|#2| |#2|) 148)) (-3494 ((|#2| |#2|) 150)) (-1979 ((|#2| |#2|) 186)) (-2460 ((|#2| |#2|) 162)) (-2635 ((|#2| |#2|) 182)) (-2061 ((|#2| |#2|) 158)) (-1209 ((|#2| |#2|) 178)) (-1963 ((|#2| |#2|) 154)) (-4103 ((|#2| |#2|) 192)) (-3778 ((|#2| |#2|) 168)) (-2904 ((|#2| |#2|) 188)) (-3412 ((|#2| |#2|) 164)) (-1892 ((|#2| |#2|) 196)) (-3680 ((|#2| |#2|) 172)) (-3420 ((|#2| |#2|) 198)) (-2853 ((|#2| |#2|) 174)) (-1265 ((|#2| |#2|) 194)) (-2910 ((|#2| |#2|) 170)) (-2768 ((|#2| |#2|) 190)) (-3269 ((|#2| |#2|) 166)) (-3266 ((|#2| |#2|) 62)) (-1738 ((|#2| |#2|) 80)) (-2804 ((|#2| |#2|) 68)) (-2919 ((|#2| |#2|) 78)) (-2784 ((|#2| |#2|) 66)) (-2896 ((|#2| |#2|) 76)) (-2761 ((|#2| |#2|) 64)) (-3614 (((-108) (-110)) 93)) (-1759 ((|#2| |#2|) 83)) (-2836 ((|#2| |#2|) 71)) (-1745 ((|#2| |#2|) 81)) (-2815 ((|#2| |#2|) 69)) (-1776 ((|#2| |#2|) 85)) (-2860 ((|#2| |#2|) 73)) (-3924 ((|#2| |#2|) 86)) (-2872 ((|#2| |#2|) 74)) (-1768 ((|#2| |#2|) 84)) (-2848 ((|#2| |#2|) 72)) (-1752 ((|#2| |#2|) 82)) (-2825 ((|#2| |#2|) 70)))
-(((-252 |#1| |#2|) (-10 -7 (-15 -3266 (|#2| |#2|)) (-15 -1254 (|#2| |#2|)) (-15 -2748 (|#2| |#2|)) (-15 -2761 (|#2| |#2|)) (-15 -2772 (|#2| |#2|)) (-15 -2784 (|#2| |#2|)) (-15 -2794 (|#2| |#2|)) (-15 -2804 (|#2| |#2|)) (-15 -2815 (|#2| |#2|)) (-15 -2825 (|#2| |#2|)) (-15 -2836 (|#2| |#2|)) (-15 -2848 (|#2| |#2|)) (-15 -2860 (|#2| |#2|)) (-15 -2872 (|#2| |#2|)) (-15 -2884 (|#2| |#2|)) (-15 -2896 (|#2| |#2|)) (-15 -2908 (|#2| |#2|)) (-15 -2919 (|#2| |#2|)) (-15 -2930 (|#2| |#2|)) (-15 -1738 (|#2| |#2|)) (-15 -1745 (|#2| |#2|)) (-15 -1752 (|#2| |#2|)) (-15 -1759 (|#2| |#2|)) (-15 -1768 (|#2| |#2|)) (-15 -1776 (|#2| |#2|)) (-15 -3924 (|#2| |#2|)) (-15 -2838 (|#2|)) (-15 -3614 ((-108) (-110))) (-15 -2626 ((-110) (-110))) (-15 -1563 (|#2|)) (-15 -1576 (|#2|)) (-15 -3494 (|#2| |#2|)) (-15 -1408 (|#2| |#2|)) (-15 -2359 (|#2| |#2|)) (-15 -1963 (|#2| |#2|)) (-15 -2387 (|#2| |#2|)) (-15 -2061 (|#2| |#2|)) (-15 -1734 (|#2| |#2|)) (-15 -2460 (|#2| |#2|)) (-15 -3412 (|#2| |#2|)) (-15 -3269 (|#2| |#2|)) (-15 -3778 (|#2| |#2|)) (-15 -2910 (|#2| |#2|)) (-15 -3680 (|#2| |#2|)) (-15 -2853 (|#2| |#2|)) (-15 -1646 (|#2| |#2|)) (-15 -1209 (|#2| |#2|)) (-15 -2877 (|#2| |#2|)) (-15 -2635 (|#2| |#2|)) (-15 -2565 (|#2| |#2|)) (-15 -1979 (|#2| |#2|)) (-15 -2904 (|#2| |#2|)) (-15 -2768 (|#2| |#2|)) (-15 -4103 (|#2| |#2|)) (-15 -1265 (|#2| |#2|)) (-15 -1892 (|#2| |#2|)) (-15 -3420 (|#2| |#2|)) (-15 -2507 ((-3 |#2| "failed") |#2| (-588 (-2 (|:| |func| |#2|) (|:| |pole| (-108)))))) (-15 -2984 ((-108) |#2|))) (-13 (-784) (-514)) (-13 (-405 |#1|) (-928))) (T -252))
-((-2984 (*1 *2 *3) (-12 (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-252 *4 *3)) (-4 *3 (-13 (-405 *4) (-928))))) (-2507 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-588 (-2 (|:| |func| *2) (|:| |pole| (-108))))) (-4 *2 (-13 (-405 *4) (-928))) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-252 *4 *2)))) (-3420 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1892 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1265 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-4103 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2768 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2904 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1979 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2565 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2635 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2877 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1209 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1646 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2853 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3680 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2910 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3778 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3269 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3412 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2460 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1734 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2061 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2387 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1963 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2359 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1408 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3494 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1576 (*1 *2) (-12 (-4 *2 (-13 (-405 *3) (-928))) (-5 *1 (-252 *3 *2)) (-4 *3 (-13 (-784) (-514))))) (-1563 (*1 *2) (-12 (-4 *2 (-13 (-405 *3) (-928))) (-5 *1 (-252 *3 *2)) (-4 *3 (-13 (-784) (-514))))) (-2626 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *4)) (-4 *4 (-13 (-405 *3) (-928))))) (-3614 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-252 *4 *5)) (-4 *5 (-13 (-405 *4) (-928))))) (-2838 (*1 *2) (-12 (-4 *2 (-13 (-405 *3) (-928))) (-5 *1 (-252 *3 *2)) (-4 *3 (-13 (-784) (-514))))) (-3924 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1776 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1768 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1759 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1752 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1745 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1738 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2930 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2919 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2908 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2896 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2884 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2872 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2860 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2848 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2836 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2825 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2815 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2804 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2794 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2784 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2772 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2761 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2748 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1254 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3266 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))))
-(-10 -7 (-15 -3266 (|#2| |#2|)) (-15 -1254 (|#2| |#2|)) (-15 -2748 (|#2| |#2|)) (-15 -2761 (|#2| |#2|)) (-15 -2772 (|#2| |#2|)) (-15 -2784 (|#2| |#2|)) (-15 -2794 (|#2| |#2|)) (-15 -2804 (|#2| |#2|)) (-15 -2815 (|#2| |#2|)) (-15 -2825 (|#2| |#2|)) (-15 -2836 (|#2| |#2|)) (-15 -2848 (|#2| |#2|)) (-15 -2860 (|#2| |#2|)) (-15 -2872 (|#2| |#2|)) (-15 -2884 (|#2| |#2|)) (-15 -2896 (|#2| |#2|)) (-15 -2908 (|#2| |#2|)) (-15 -2919 (|#2| |#2|)) (-15 -2930 (|#2| |#2|)) (-15 -1738 (|#2| |#2|)) (-15 -1745 (|#2| |#2|)) (-15 -1752 (|#2| |#2|)) (-15 -1759 (|#2| |#2|)) (-15 -1768 (|#2| |#2|)) (-15 -1776 (|#2| |#2|)) (-15 -3924 (|#2| |#2|)) (-15 -2838 (|#2|)) (-15 -3614 ((-108) (-110))) (-15 -2626 ((-110) (-110))) (-15 -1563 (|#2|)) (-15 -1576 (|#2|)) (-15 -3494 (|#2| |#2|)) (-15 -1408 (|#2| |#2|)) (-15 -2359 (|#2| |#2|)) (-15 -1963 (|#2| |#2|)) (-15 -2387 (|#2| |#2|)) (-15 -2061 (|#2| |#2|)) (-15 -1734 (|#2| |#2|)) (-15 -2460 (|#2| |#2|)) (-15 -3412 (|#2| |#2|)) (-15 -3269 (|#2| |#2|)) (-15 -3778 (|#2| |#2|)) (-15 -2910 (|#2| |#2|)) (-15 -3680 (|#2| |#2|)) (-15 -2853 (|#2| |#2|)) (-15 -1646 (|#2| |#2|)) (-15 -1209 (|#2| |#2|)) (-15 -2877 (|#2| |#2|)) (-15 -2635 (|#2| |#2|)) (-15 -2565 (|#2| |#2|)) (-15 -1979 (|#2| |#2|)) (-15 -2904 (|#2| |#2|)) (-15 -2768 (|#2| |#2|)) (-15 -4103 (|#2| |#2|)) (-15 -1265 (|#2| |#2|)) (-15 -1892 (|#2| |#2|)) (-15 -3420 (|#2| |#2|)) (-15 -2507 ((-3 |#2| "failed") |#2| (-588 (-2 (|:| |func| |#2|) (|:| |pole| (-108)))))) (-15 -2984 ((-108) |#2|)))
-((-2894 (((-3 |#2| "failed") (-588 (-561 |#2|)) |#2| (-1085)) 133)) (-3059 ((|#2| (-382 (-522)) |#2|) 50)) (-2803 ((|#2| |#2| (-561 |#2|)) 126)) (-2260 (((-2 (|:| |func| |#2|) (|:| |kers| (-588 (-561 |#2|))) (|:| |vals| (-588 |#2|))) |#2| (-1085)) 125)) (-3121 ((|#2| |#2| (-1085)) 19) ((|#2| |#2|) 22)) (-2305 ((|#2| |#2| (-1085)) 139) ((|#2| |#2|) 137)))
-(((-253 |#1| |#2|) (-10 -7 (-15 -2305 (|#2| |#2|)) (-15 -2305 (|#2| |#2| (-1085))) (-15 -2260 ((-2 (|:| |func| |#2|) (|:| |kers| (-588 (-561 |#2|))) (|:| |vals| (-588 |#2|))) |#2| (-1085))) (-15 -3121 (|#2| |#2|)) (-15 -3121 (|#2| |#2| (-1085))) (-15 -2894 ((-3 |#2| "failed") (-588 (-561 |#2|)) |#2| (-1085))) (-15 -2803 (|#2| |#2| (-561 |#2|))) (-15 -3059 (|#2| (-382 (-522)) |#2|))) (-13 (-514) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -253))
-((-3059 (*1 *2 *3 *2) (-12 (-5 *3 (-382 (-522))) (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))) (-2803 (*1 *2 *2 *3) (-12 (-5 *3 (-561 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))) (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *4 *2)))) (-2894 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-588 (-561 *2))) (-5 *4 (-1085)) (-4 *2 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *5 *2)))) (-3121 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))) (-3121 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))) (-2260 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-588 (-561 *3))) (|:| |vals| (-588 *3)))) (-5 *1 (-253 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-2305 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))) (-2305 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))))
-(-10 -7 (-15 -2305 (|#2| |#2|)) (-15 -2305 (|#2| |#2| (-1085))) (-15 -2260 ((-2 (|:| |func| |#2|) (|:| |kers| (-588 (-561 |#2|))) (|:| |vals| (-588 |#2|))) |#2| (-1085))) (-15 -3121 (|#2| |#2|)) (-15 -3121 (|#2| |#2| (-1085))) (-15 -2894 ((-3 |#2| "failed") (-588 (-561 |#2|)) |#2| (-1085))) (-15 -2803 (|#2| |#2| (-561 |#2|))) (-15 -3059 (|#2| (-382 (-522)) |#2|)))
-((-3967 (((-3 |#3| "failed") |#3|) 110)) (-2908 ((|#3| |#3|) 131)) (-2435 (((-3 |#3| "failed") |#3|) 82)) (-2772 ((|#3| |#3|) 121)) (-2063 (((-3 |#3| "failed") |#3|) 58)) (-2884 ((|#3| |#3|) 129)) (-3801 (((-3 |#3| "failed") |#3|) 46)) (-2748 ((|#3| |#3|) 119)) (-2623 (((-3 |#3| "failed") |#3|) 112)) (-2930 ((|#3| |#3|) 133)) (-2974 (((-3 |#3| "failed") |#3|) 84)) (-2794 ((|#3| |#3|) 123)) (-2192 (((-3 |#3| "failed") |#3| (-708)) 36)) (-3618 (((-3 |#3| "failed") |#3|) 74)) (-1254 ((|#3| |#3|) 118)) (-4108 (((-3 |#3| "failed") |#3|) 44)) (-3266 ((|#3| |#3|) 117)) (-1696 (((-3 |#3| "failed") |#3|) 113)) (-1738 ((|#3| |#3|) 134)) (-3200 (((-3 |#3| "failed") |#3|) 85)) (-2804 ((|#3| |#3|) 124)) (-3803 (((-3 |#3| "failed") |#3|) 111)) (-2919 ((|#3| |#3|) 132)) (-1672 (((-3 |#3| "failed") |#3|) 83)) (-2784 ((|#3| |#3|) 122)) (-2145 (((-3 |#3| "failed") |#3|) 60)) (-2896 ((|#3| |#3|) 130)) (-1898 (((-3 |#3| "failed") |#3|) 48)) (-2761 ((|#3| |#3|) 120)) (-2954 (((-3 |#3| "failed") |#3|) 66)) (-1759 ((|#3| |#3|) 137)) (-3146 (((-3 |#3| "failed") |#3|) 104)) (-2836 ((|#3| |#3|) 142)) (-2579 (((-3 |#3| "failed") |#3|) 62)) (-1745 ((|#3| |#3|) 135)) (-3644 (((-3 |#3| "failed") |#3|) 50)) (-2815 ((|#3| |#3|) 125)) (-1623 (((-3 |#3| "failed") |#3|) 70)) (-1776 ((|#3| |#3|) 139)) (-2415 (((-3 |#3| "failed") |#3|) 54)) (-2860 ((|#3| |#3|) 127)) (-3294 (((-3 |#3| "failed") |#3|) 72)) (-3924 ((|#3| |#3|) 140)) (-3286 (((-3 |#3| "failed") |#3|) 56)) (-2872 ((|#3| |#3|) 128)) (-3471 (((-3 |#3| "failed") |#3|) 68)) (-1768 ((|#3| |#3|) 138)) (-1834 (((-3 |#3| "failed") |#3|) 107)) (-2848 ((|#3| |#3|) 143)) (-1415 (((-3 |#3| "failed") |#3|) 64)) (-1752 ((|#3| |#3|) 136)) (-1239 (((-3 |#3| "failed") |#3|) 52)) (-2825 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-382 (-522))) 40 (|has| |#1| (-338)))))
-(((-254 |#1| |#2| |#3|) (-13 (-910 |#3|) (-10 -7 (IF (|has| |#1| (-338)) (-15 ** (|#3| |#3| (-382 (-522)))) |%noBranch|) (-15 -3266 (|#3| |#3|)) (-15 -1254 (|#3| |#3|)) (-15 -2748 (|#3| |#3|)) (-15 -2761 (|#3| |#3|)) (-15 -2772 (|#3| |#3|)) (-15 -2784 (|#3| |#3|)) (-15 -2794 (|#3| |#3|)) (-15 -2804 (|#3| |#3|)) (-15 -2815 (|#3| |#3|)) (-15 -2825 (|#3| |#3|)) (-15 -2836 (|#3| |#3|)) (-15 -2848 (|#3| |#3|)) (-15 -2860 (|#3| |#3|)) (-15 -2872 (|#3| |#3|)) (-15 -2884 (|#3| |#3|)) (-15 -2896 (|#3| |#3|)) (-15 -2908 (|#3| |#3|)) (-15 -2919 (|#3| |#3|)) (-15 -2930 (|#3| |#3|)) (-15 -1738 (|#3| |#3|)) (-15 -1745 (|#3| |#3|)) (-15 -1752 (|#3| |#3|)) (-15 -1759 (|#3| |#3|)) (-15 -1768 (|#3| |#3|)) (-15 -1776 (|#3| |#3|)) (-15 -3924 (|#3| |#3|)))) (-37 (-382 (-522))) (-1157 |#1|) (-1128 |#1| |#2|)) (T -254))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-382 (-522))) (-4 *4 (-338)) (-4 *4 (-37 *3)) (-4 *5 (-1157 *4)) (-5 *1 (-254 *4 *5 *2)) (-4 *2 (-1128 *4 *5)))) (-3266 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1254 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2748 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2761 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2772 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2784 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2794 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2804 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2815 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2825 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2836 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2848 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2860 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2872 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2884 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2896 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2908 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2919 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2930 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1738 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1745 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1752 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1759 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1768 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1776 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-3924 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))))
-(-13 (-910 |#3|) (-10 -7 (IF (|has| |#1| (-338)) (-15 ** (|#3| |#3| (-382 (-522)))) |%noBranch|) (-15 -3266 (|#3| |#3|)) (-15 -1254 (|#3| |#3|)) (-15 -2748 (|#3| |#3|)) (-15 -2761 (|#3| |#3|)) (-15 -2772 (|#3| |#3|)) (-15 -2784 (|#3| |#3|)) (-15 -2794 (|#3| |#3|)) (-15 -2804 (|#3| |#3|)) (-15 -2815 (|#3| |#3|)) (-15 -2825 (|#3| |#3|)) (-15 -2836 (|#3| |#3|)) (-15 -2848 (|#3| |#3|)) (-15 -2860 (|#3| |#3|)) (-15 -2872 (|#3| |#3|)) (-15 -2884 (|#3| |#3|)) (-15 -2896 (|#3| |#3|)) (-15 -2908 (|#3| |#3|)) (-15 -2919 (|#3| |#3|)) (-15 -2930 (|#3| |#3|)) (-15 -1738 (|#3| |#3|)) (-15 -1745 (|#3| |#3|)) (-15 -1752 (|#3| |#3|)) (-15 -1759 (|#3| |#3|)) (-15 -1768 (|#3| |#3|)) (-15 -1776 (|#3| |#3|)) (-15 -3924 (|#3| |#3|))))
-((-3967 (((-3 |#3| "failed") |#3|) 66)) (-2908 ((|#3| |#3|) 133)) (-2435 (((-3 |#3| "failed") |#3|) 50)) (-2772 ((|#3| |#3|) 121)) (-2063 (((-3 |#3| "failed") |#3|) 62)) (-2884 ((|#3| |#3|) 131)) (-3801 (((-3 |#3| "failed") |#3|) 46)) (-2748 ((|#3| |#3|) 119)) (-2623 (((-3 |#3| "failed") |#3|) 70)) (-2930 ((|#3| |#3|) 135)) (-2974 (((-3 |#3| "failed") |#3|) 54)) (-2794 ((|#3| |#3|) 123)) (-2192 (((-3 |#3| "failed") |#3| (-708)) 35)) (-3618 (((-3 |#3| "failed") |#3|) 44)) (-1254 ((|#3| |#3|) 112)) (-4108 (((-3 |#3| "failed") |#3|) 42)) (-3266 ((|#3| |#3|) 118)) (-1696 (((-3 |#3| "failed") |#3|) 72)) (-1738 ((|#3| |#3|) 136)) (-3200 (((-3 |#3| "failed") |#3|) 56)) (-2804 ((|#3| |#3|) 124)) (-3803 (((-3 |#3| "failed") |#3|) 68)) (-2919 ((|#3| |#3|) 134)) (-1672 (((-3 |#3| "failed") |#3|) 52)) (-2784 ((|#3| |#3|) 122)) (-2145 (((-3 |#3| "failed") |#3|) 64)) (-2896 ((|#3| |#3|) 132)) (-1898 (((-3 |#3| "failed") |#3|) 48)) (-2761 ((|#3| |#3|) 120)) (-2954 (((-3 |#3| "failed") |#3|) 78)) (-1759 ((|#3| |#3|) 139)) (-3146 (((-3 |#3| "failed") |#3|) 58)) (-2836 ((|#3| |#3|) 127)) (-2579 (((-3 |#3| "failed") |#3|) 74)) (-1745 ((|#3| |#3|) 137)) (-3644 (((-3 |#3| "failed") |#3|) 102)) (-2815 ((|#3| |#3|) 125)) (-1623 (((-3 |#3| "failed") |#3|) 82)) (-1776 ((|#3| |#3|) 141)) (-2415 (((-3 |#3| "failed") |#3|) 109)) (-2860 ((|#3| |#3|) 129)) (-3294 (((-3 |#3| "failed") |#3|) 84)) (-3924 ((|#3| |#3|) 142)) (-3286 (((-3 |#3| "failed") |#3|) 111)) (-2872 ((|#3| |#3|) 130)) (-3471 (((-3 |#3| "failed") |#3|) 80)) (-1768 ((|#3| |#3|) 140)) (-1834 (((-3 |#3| "failed") |#3|) 60)) (-2848 ((|#3| |#3|) 128)) (-1415 (((-3 |#3| "failed") |#3|) 76)) (-1752 ((|#3| |#3|) 138)) (-1239 (((-3 |#3| "failed") |#3|) 105)) (-2825 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-382 (-522))) 40 (|has| |#1| (-338)))))
-(((-255 |#1| |#2| |#3| |#4|) (-13 (-910 |#3|) (-10 -7 (IF (|has| |#1| (-338)) (-15 ** (|#3| |#3| (-382 (-522)))) |%noBranch|) (-15 -3266 (|#3| |#3|)) (-15 -1254 (|#3| |#3|)) (-15 -2748 (|#3| |#3|)) (-15 -2761 (|#3| |#3|)) (-15 -2772 (|#3| |#3|)) (-15 -2784 (|#3| |#3|)) (-15 -2794 (|#3| |#3|)) (-15 -2804 (|#3| |#3|)) (-15 -2815 (|#3| |#3|)) (-15 -2825 (|#3| |#3|)) (-15 -2836 (|#3| |#3|)) (-15 -2848 (|#3| |#3|)) (-15 -2860 (|#3| |#3|)) (-15 -2872 (|#3| |#3|)) (-15 -2884 (|#3| |#3|)) (-15 -2896 (|#3| |#3|)) (-15 -2908 (|#3| |#3|)) (-15 -2919 (|#3| |#3|)) (-15 -2930 (|#3| |#3|)) (-15 -1738 (|#3| |#3|)) (-15 -1745 (|#3| |#3|)) (-15 -1752 (|#3| |#3|)) (-15 -1759 (|#3| |#3|)) (-15 -1768 (|#3| |#3|)) (-15 -1776 (|#3| |#3|)) (-15 -3924 (|#3| |#3|)))) (-37 (-382 (-522))) (-1126 |#1|) (-1149 |#1| |#2|) (-910 |#2|)) (T -255))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-382 (-522))) (-4 *4 (-338)) (-4 *4 (-37 *3)) (-4 *5 (-1126 *4)) (-5 *1 (-255 *4 *5 *2 *6)) (-4 *2 (-1149 *4 *5)) (-4 *6 (-910 *5)))) (-3266 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1254 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2748 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2761 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2772 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2784 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2794 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2804 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2815 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2825 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2836 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2848 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2860 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2872 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2884 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2896 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2908 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2919 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2930 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1738 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1745 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1752 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1759 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1768 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1776 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-3924 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))))
-(-13 (-910 |#3|) (-10 -7 (IF (|has| |#1| (-338)) (-15 ** (|#3| |#3| (-382 (-522)))) |%noBranch|) (-15 -3266 (|#3| |#3|)) (-15 -1254 (|#3| |#3|)) (-15 -2748 (|#3| |#3|)) (-15 -2761 (|#3| |#3|)) (-15 -2772 (|#3| |#3|)) (-15 -2784 (|#3| |#3|)) (-15 -2794 (|#3| |#3|)) (-15 -2804 (|#3| |#3|)) (-15 -2815 (|#3| |#3|)) (-15 -2825 (|#3| |#3|)) (-15 -2836 (|#3| |#3|)) (-15 -2848 (|#3| |#3|)) (-15 -2860 (|#3| |#3|)) (-15 -2872 (|#3| |#3|)) (-15 -2884 (|#3| |#3|)) (-15 -2896 (|#3| |#3|)) (-15 -2908 (|#3| |#3|)) (-15 -2919 (|#3| |#3|)) (-15 -2930 (|#3| |#3|)) (-15 -1738 (|#3| |#3|)) (-15 -1745 (|#3| |#3|)) (-15 -1752 (|#3| |#3|)) (-15 -1759 (|#3| |#3|)) (-15 -1768 (|#3| |#3|)) (-15 -1776 (|#3| |#3|)) (-15 -3924 (|#3| |#3|))))
-((-1487 (((-108) $) 19)) (-2028 (((-166) $) 8)) (-2744 (((-3 (-1085) "failed") $) 22)) (-2494 (((-3 (-1085) "failed") $) 14)) (-3323 (((-3 (-588 $) "failed") $) NIL)) (-2757 (((-3 (-1018) "failed") $) 17)) (-1328 (((-108) $) 15)) (-2190 (((-792) $) NIL)) (-2779 (((-108) $) 10)))
-(((-256) (-13 (-562 (-792)) (-10 -8 (-15 -2028 ((-166) $)) (-15 -1328 ((-108) $)) (-15 -2757 ((-3 (-1018) "failed") $)) (-15 -1487 ((-108) $)) (-15 -2744 ((-3 (-1085) "failed") $)) (-15 -2779 ((-108) $)) (-15 -2494 ((-3 (-1085) "failed") $)) (-15 -3323 ((-3 (-588 $) "failed") $))))) (T -256))
-((-2028 (*1 *2 *1) (-12 (-5 *2 (-166)) (-5 *1 (-256)))) (-1328 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-256)))) (-2757 (*1 *2 *1) (|partial| -12 (-5 *2 (-1018)) (-5 *1 (-256)))) (-1487 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-256)))) (-2744 (*1 *2 *1) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-256)))) (-2779 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-256)))) (-2494 (*1 *2 *1) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-256)))) (-3323 (*1 *2 *1) (|partial| -12 (-5 *2 (-588 (-256))) (-5 *1 (-256)))))
-(-13 (-562 (-792)) (-10 -8 (-15 -2028 ((-166) $)) (-15 -1328 ((-108) $)) (-15 -2757 ((-3 (-1018) "failed") $)) (-15 -1487 ((-108) $)) (-15 -2744 ((-3 (-1085) "failed") $)) (-15 -2779 ((-108) $)) (-15 -2494 ((-3 (-1085) "failed") $)) (-15 -3323 ((-3 (-588 $) "failed") $))))
-((-1628 (($ (-1 (-108) |#2|) $) 23)) (-2333 (($ $) 36)) (-3859 (($ (-1 (-108) |#2|) $) NIL) (($ |#2| $) 34)) (-1423 (($ |#2| $) 31) (($ (-1 (-108) |#2|) $) 17)) (-1369 (($ (-1 (-108) |#2| |#2|) $ $) NIL) (($ $ $) 40)) (-1661 (($ |#2| $ (-522)) 19) (($ $ $ (-522)) 21)) (-3696 (($ $ (-522)) 11) (($ $ (-1133 (-522))) 14)) (-2630 (($ $ |#2|) 29) (($ $ $) NIL)) (-4165 (($ $ |#2|) 28) (($ |#2| $) NIL) (($ $ $) 25) (($ (-588 $)) NIL)))
-(((-257 |#1| |#2|) (-10 -8 (-15 -1369 (|#1| |#1| |#1|)) (-15 -3859 (|#1| |#2| |#1|)) (-15 -1369 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -3859 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2630 (|#1| |#1| |#1|)) (-15 -2630 (|#1| |#1| |#2|)) (-15 -1661 (|#1| |#1| |#1| (-522))) (-15 -1661 (|#1| |#2| |#1| (-522))) (-15 -3696 (|#1| |#1| (-1133 (-522)))) (-15 -3696 (|#1| |#1| (-522))) (-15 -4165 (|#1| (-588 |#1|))) (-15 -4165 (|#1| |#1| |#1|)) (-15 -4165 (|#1| |#2| |#1|)) (-15 -4165 (|#1| |#1| |#2|)) (-15 -1423 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1628 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1423 (|#1| |#2| |#1|)) (-15 -2333 (|#1| |#1|))) (-258 |#2|) (-1120)) (T -257))
-NIL
-(-10 -8 (-15 -1369 (|#1| |#1| |#1|)) (-15 -3859 (|#1| |#2| |#1|)) (-15 -1369 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -3859 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2630 (|#1| |#1| |#1|)) (-15 -2630 (|#1| |#1| |#2|)) (-15 -1661 (|#1| |#1| |#1| (-522))) (-15 -1661 (|#1| |#2| |#1| (-522))) (-15 -3696 (|#1| |#1| (-1133 (-522)))) (-15 -3696 (|#1| |#1| (-522))) (-15 -4165 (|#1| (-588 |#1|))) (-15 -4165 (|#1| |#1| |#1|)) (-15 -4165 (|#1| |#2| |#1|)) (-15 -4165 (|#1| |#1| |#2|)) (-15 -1423 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1628 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1423 (|#1| |#2| |#1|)) (-15 -2333 (|#1| |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2679 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) 8)) (-2379 ((|#1| $ (-522) |#1|) 52 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 58 (|has| $ (-6 -4239)))) (-2790 (($ (-1 (-108) |#1|) $) 85)) (-1628 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-3362 (($ $) 83 (|has| |#1| (-1014)))) (-2333 (($ $) 78 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3859 (($ (-1 (-108) |#1|) $) 89) (($ |#1| $) 84 (|has| |#1| (-1014)))) (-1423 (($ |#1| $) 77 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) 51)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1811 (($ (-708) |#1|) 69)) (-3352 (((-108) $ (-708)) 9)) (-1359 (((-522) $) 43 (|has| (-522) (-784)))) (-1369 (($ (-1 (-108) |#1| |#1|) $ $) 86) (($ $ $) 82 (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 44 (|has| (-522) (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4095 (($ |#1| $ (-522)) 88) (($ $ $ (-522)) 87)) (-1661 (($ |#1| $ (-522)) 60) (($ $ $ (-522)) 59)) (-3604 (((-588 (-522)) $) 46)) (-1405 (((-108) (-522) $) 47)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2294 ((|#1| $) 42 (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-2602 (($ $ |#1|) 41 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) 48)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ (-522) |#1|) 50) ((|#1| $ (-522)) 49) (($ $ (-1133 (-522))) 63)) (-3681 (($ $ (-522)) 91) (($ $ (-1133 (-522))) 90)) (-3696 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-1431 (((-498) $) 79 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 70)) (-2630 (($ $ |#1|) 93) (($ $ $) 92)) (-4165 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2954 (((-588 (-522)) $) 17)) (-2487 (((-708) $) 15)) (-2217 (((-792) $) 21) (($ (-588 (-522))) 13)) (-1221 (($ (-708)) 18)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 9)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 11)))
+(((-251) (-13 (-784) (-10 -8 (-15 -2217 ($ (-588 (-522)))) (-15 -2487 ((-708) $)) (-15 -2954 ((-588 (-522)) $)) (-15 -1221 ($ (-708)))))) (T -251))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-251)))) (-2487 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-251)))) (-2954 (*1 *2 *1) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-251)))) (-1221 (*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-251)))))
+(-13 (-784) (-10 -8 (-15 -2217 ($ (-588 (-522)))) (-15 -2487 ((-708) $)) (-15 -2954 ((-588 (-522)) $)) (-15 -1221 ($ (-708)))))
+((-3044 ((|#2| |#2|) 77)) (-2923 ((|#2| |#2|) 65)) (-2051 (((-3 |#2| "failed") |#2| (-588 (-2 (|:| |func| |#2|) (|:| |pole| (-108))))) 116)) (-3023 ((|#2| |#2|) 75)) (-2906 ((|#2| |#2|) 63)) (-3066 ((|#2| |#2|) 79)) (-2936 ((|#2| |#2|) 67)) (-2980 ((|#2|) 46)) (-1771 (((-110) (-110)) 95)) (-1238 ((|#2| |#2|) 61)) (-4015 (((-108) |#2|) 134)) (-1331 ((|#2| |#2|) 180)) (-2340 ((|#2| |#2|) 156)) (-3617 ((|#2|) 59)) (-3522 ((|#2|) 58)) (-2341 ((|#2| |#2|) 176)) (-1971 ((|#2| |#2|) 152)) (-3841 ((|#2| |#2|) 184)) (-1378 ((|#2| |#2|) 160)) (-2133 ((|#2| |#2|) 148)) (-2295 ((|#2| |#2|) 150)) (-3144 ((|#2| |#2|) 186)) (-2719 ((|#2| |#2|) 162)) (-2409 ((|#2| |#2|) 182)) (-2782 ((|#2| |#2|) 158)) (-1818 ((|#2| |#2|) 178)) (-3008 ((|#2| |#2|) 154)) (-3431 ((|#2| |#2|) 192)) (-3327 ((|#2| |#2|) 168)) (-1583 ((|#2| |#2|) 188)) (-3898 ((|#2| |#2|) 164)) (-4092 ((|#2| |#2|) 196)) (-3542 ((|#2| |#2|) 172)) (-3989 ((|#2| |#2|) 198)) (-4165 ((|#2| |#2|) 174)) (-2652 ((|#2| |#2|) 194)) (-1620 ((|#2| |#2|) 170)) (-1600 ((|#2| |#2|) 190)) (-1870 ((|#2| |#2|) 166)) (-3357 ((|#2| |#2|) 62)) (-1831 ((|#2| |#2|) 80)) (-2946 ((|#2| |#2|) 68)) (-3054 ((|#2| |#2|) 78)) (-2928 ((|#2| |#2|) 66)) (-3035 ((|#2| |#2|) 76)) (-2915 ((|#2| |#2|) 64)) (-4082 (((-108) (-110)) 93)) (-1856 ((|#2| |#2|) 83)) (-2976 ((|#2| |#2|) 71)) (-1839 ((|#2| |#2|) 81)) (-2957 ((|#2| |#2|) 69)) (-1873 ((|#2| |#2|) 85)) (-3001 ((|#2| |#2|) 73)) (-2476 ((|#2| |#2|) 86)) (-3011 ((|#2| |#2|) 74)) (-1864 ((|#2| |#2|) 84)) (-2989 ((|#2| |#2|) 72)) (-1849 ((|#2| |#2|) 82)) (-2966 ((|#2| |#2|) 70)))
+(((-252 |#1| |#2|) (-10 -7 (-15 -3357 (|#2| |#2|)) (-15 -1238 (|#2| |#2|)) (-15 -2906 (|#2| |#2|)) (-15 -2915 (|#2| |#2|)) (-15 -2923 (|#2| |#2|)) (-15 -2928 (|#2| |#2|)) (-15 -2936 (|#2| |#2|)) (-15 -2946 (|#2| |#2|)) (-15 -2957 (|#2| |#2|)) (-15 -2966 (|#2| |#2|)) (-15 -2976 (|#2| |#2|)) (-15 -2989 (|#2| |#2|)) (-15 -3001 (|#2| |#2|)) (-15 -3011 (|#2| |#2|)) (-15 -3023 (|#2| |#2|)) (-15 -3035 (|#2| |#2|)) (-15 -3044 (|#2| |#2|)) (-15 -3054 (|#2| |#2|)) (-15 -3066 (|#2| |#2|)) (-15 -1831 (|#2| |#2|)) (-15 -1839 (|#2| |#2|)) (-15 -1849 (|#2| |#2|)) (-15 -1856 (|#2| |#2|)) (-15 -1864 (|#2| |#2|)) (-15 -1873 (|#2| |#2|)) (-15 -2476 (|#2| |#2|)) (-15 -2980 (|#2|)) (-15 -4082 ((-108) (-110))) (-15 -1771 ((-110) (-110))) (-15 -3522 (|#2|)) (-15 -3617 (|#2|)) (-15 -2295 (|#2| |#2|)) (-15 -2133 (|#2| |#2|)) (-15 -1971 (|#2| |#2|)) (-15 -3008 (|#2| |#2|)) (-15 -2340 (|#2| |#2|)) (-15 -2782 (|#2| |#2|)) (-15 -1378 (|#2| |#2|)) (-15 -2719 (|#2| |#2|)) (-15 -3898 (|#2| |#2|)) (-15 -1870 (|#2| |#2|)) (-15 -3327 (|#2| |#2|)) (-15 -1620 (|#2| |#2|)) (-15 -3542 (|#2| |#2|)) (-15 -4165 (|#2| |#2|)) (-15 -2341 (|#2| |#2|)) (-15 -1818 (|#2| |#2|)) (-15 -1331 (|#2| |#2|)) (-15 -2409 (|#2| |#2|)) (-15 -3841 (|#2| |#2|)) (-15 -3144 (|#2| |#2|)) (-15 -1583 (|#2| |#2|)) (-15 -1600 (|#2| |#2|)) (-15 -3431 (|#2| |#2|)) (-15 -2652 (|#2| |#2|)) (-15 -4092 (|#2| |#2|)) (-15 -3989 (|#2| |#2|)) (-15 -2051 ((-3 |#2| "failed") |#2| (-588 (-2 (|:| |func| |#2|) (|:| |pole| (-108)))))) (-15 -4015 ((-108) |#2|))) (-13 (-784) (-514)) (-13 (-405 |#1|) (-928))) (T -252))
+((-4015 (*1 *2 *3) (-12 (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-252 *4 *3)) (-4 *3 (-13 (-405 *4) (-928))))) (-2051 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-588 (-2 (|:| |func| *2) (|:| |pole| (-108))))) (-4 *2 (-13 (-405 *4) (-928))) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-252 *4 *2)))) (-3989 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-4092 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2652 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3431 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1600 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1583 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3144 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3841 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2409 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1331 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1818 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2341 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-4165 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3542 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1620 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3327 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1870 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3898 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2719 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1378 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2782 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2340 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3008 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1971 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2133 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2295 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3617 (*1 *2) (-12 (-4 *2 (-13 (-405 *3) (-928))) (-5 *1 (-252 *3 *2)) (-4 *3 (-13 (-784) (-514))))) (-3522 (*1 *2) (-12 (-4 *2 (-13 (-405 *3) (-928))) (-5 *1 (-252 *3 *2)) (-4 *3 (-13 (-784) (-514))))) (-1771 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *4)) (-4 *4 (-13 (-405 *3) (-928))))) (-4082 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-252 *4 *5)) (-4 *5 (-13 (-405 *4) (-928))))) (-2980 (*1 *2) (-12 (-4 *2 (-13 (-405 *3) (-928))) (-5 *1 (-252 *3 *2)) (-4 *3 (-13 (-784) (-514))))) (-2476 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1873 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1864 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1856 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1849 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1839 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1831 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3066 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3054 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3044 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3035 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3023 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3011 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3001 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2989 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2976 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2966 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2957 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2946 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2936 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2928 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2923 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2915 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-2906 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-1238 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))) (-3357 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2)) (-4 *2 (-13 (-405 *3) (-928))))))
+(-10 -7 (-15 -3357 (|#2| |#2|)) (-15 -1238 (|#2| |#2|)) (-15 -2906 (|#2| |#2|)) (-15 -2915 (|#2| |#2|)) (-15 -2923 (|#2| |#2|)) (-15 -2928 (|#2| |#2|)) (-15 -2936 (|#2| |#2|)) (-15 -2946 (|#2| |#2|)) (-15 -2957 (|#2| |#2|)) (-15 -2966 (|#2| |#2|)) (-15 -2976 (|#2| |#2|)) (-15 -2989 (|#2| |#2|)) (-15 -3001 (|#2| |#2|)) (-15 -3011 (|#2| |#2|)) (-15 -3023 (|#2| |#2|)) (-15 -3035 (|#2| |#2|)) (-15 -3044 (|#2| |#2|)) (-15 -3054 (|#2| |#2|)) (-15 -3066 (|#2| |#2|)) (-15 -1831 (|#2| |#2|)) (-15 -1839 (|#2| |#2|)) (-15 -1849 (|#2| |#2|)) (-15 -1856 (|#2| |#2|)) (-15 -1864 (|#2| |#2|)) (-15 -1873 (|#2| |#2|)) (-15 -2476 (|#2| |#2|)) (-15 -2980 (|#2|)) (-15 -4082 ((-108) (-110))) (-15 -1771 ((-110) (-110))) (-15 -3522 (|#2|)) (-15 -3617 (|#2|)) (-15 -2295 (|#2| |#2|)) (-15 -2133 (|#2| |#2|)) (-15 -1971 (|#2| |#2|)) (-15 -3008 (|#2| |#2|)) (-15 -2340 (|#2| |#2|)) (-15 -2782 (|#2| |#2|)) (-15 -1378 (|#2| |#2|)) (-15 -2719 (|#2| |#2|)) (-15 -3898 (|#2| |#2|)) (-15 -1870 (|#2| |#2|)) (-15 -3327 (|#2| |#2|)) (-15 -1620 (|#2| |#2|)) (-15 -3542 (|#2| |#2|)) (-15 -4165 (|#2| |#2|)) (-15 -2341 (|#2| |#2|)) (-15 -1818 (|#2| |#2|)) (-15 -1331 (|#2| |#2|)) (-15 -2409 (|#2| |#2|)) (-15 -3841 (|#2| |#2|)) (-15 -3144 (|#2| |#2|)) (-15 -1583 (|#2| |#2|)) (-15 -1600 (|#2| |#2|)) (-15 -3431 (|#2| |#2|)) (-15 -2652 (|#2| |#2|)) (-15 -4092 (|#2| |#2|)) (-15 -3989 (|#2| |#2|)) (-15 -2051 ((-3 |#2| "failed") |#2| (-588 (-2 (|:| |func| |#2|) (|:| |pole| (-108)))))) (-15 -4015 ((-108) |#2|)))
+((-1481 (((-3 |#2| "failed") (-588 (-561 |#2|)) |#2| (-1085)) 133)) (-3530 ((|#2| (-382 (-522)) |#2|) 50)) (-2612 ((|#2| |#2| (-561 |#2|)) 126)) (-2054 (((-2 (|:| |func| |#2|) (|:| |kers| (-588 (-561 |#2|))) (|:| |vals| (-588 |#2|))) |#2| (-1085)) 125)) (-2971 ((|#2| |#2| (-1085)) 19) ((|#2| |#2|) 22)) (-2774 ((|#2| |#2| (-1085)) 139) ((|#2| |#2|) 137)))
+(((-253 |#1| |#2|) (-10 -7 (-15 -2774 (|#2| |#2|)) (-15 -2774 (|#2| |#2| (-1085))) (-15 -2054 ((-2 (|:| |func| |#2|) (|:| |kers| (-588 (-561 |#2|))) (|:| |vals| (-588 |#2|))) |#2| (-1085))) (-15 -2971 (|#2| |#2|)) (-15 -2971 (|#2| |#2| (-1085))) (-15 -1481 ((-3 |#2| "failed") (-588 (-561 |#2|)) |#2| (-1085))) (-15 -2612 (|#2| |#2| (-561 |#2|))) (-15 -3530 (|#2| (-382 (-522)) |#2|))) (-13 (-514) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -253))
+((-3530 (*1 *2 *3 *2) (-12 (-5 *3 (-382 (-522))) (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))) (-2612 (*1 *2 *2 *3) (-12 (-5 *3 (-561 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))) (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *4 *2)))) (-1481 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-588 (-561 *2))) (-5 *4 (-1085)) (-4 *2 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *5 *2)))) (-2971 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))) (-2971 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))) (-2054 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-588 (-561 *3))) (|:| |vals| (-588 *3)))) (-5 *1 (-253 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-2774 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))) (-2774 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))))
+(-10 -7 (-15 -2774 (|#2| |#2|)) (-15 -2774 (|#2| |#2| (-1085))) (-15 -2054 ((-2 (|:| |func| |#2|) (|:| |kers| (-588 (-561 |#2|))) (|:| |vals| (-588 |#2|))) |#2| (-1085))) (-15 -2971 (|#2| |#2|)) (-15 -2971 (|#2| |#2| (-1085))) (-15 -1481 ((-3 |#2| "failed") (-588 (-561 |#2|)) |#2| (-1085))) (-15 -2612 (|#2| |#2| (-561 |#2|))) (-15 -3530 (|#2| (-382 (-522)) |#2|)))
+((-1509 (((-3 |#3| "failed") |#3|) 110)) (-3044 ((|#3| |#3|) 131)) (-3380 (((-3 |#3| "failed") |#3|) 82)) (-2923 ((|#3| |#3|) 121)) (-2808 (((-3 |#3| "failed") |#3|) 58)) (-3023 ((|#3| |#3|) 129)) (-2364 (((-3 |#3| "failed") |#3|) 46)) (-2906 ((|#3| |#3|) 119)) (-1737 (((-3 |#3| "failed") |#3|) 112)) (-3066 ((|#3| |#3|) 133)) (-4026 (((-3 |#3| "failed") |#3|) 84)) (-2936 ((|#3| |#3|) 123)) (-3417 (((-3 |#3| "failed") |#3| (-708)) 36)) (-4117 (((-3 |#3| "failed") |#3|) 74)) (-1238 ((|#3| |#3|) 118)) (-3466 (((-3 |#3| "failed") |#3|) 44)) (-3357 ((|#3| |#3|) 117)) (-4037 (((-3 |#3| "failed") |#3|) 113)) (-1831 ((|#3| |#3|) 134)) (-2434 (((-3 |#3| "failed") |#3|) 85)) (-2946 ((|#3| |#3|) 124)) (-2378 (((-3 |#3| "failed") |#3|) 111)) (-3054 ((|#3| |#3|) 132)) (-2642 (((-3 |#3| "failed") |#3|) 83)) (-2928 ((|#3| |#3|) 122)) (-3063 (((-3 |#3| "failed") |#3|) 60)) (-3035 ((|#3| |#3|) 130)) (-4143 (((-3 |#3| "failed") |#3|) 48)) (-2915 ((|#3| |#3|) 120)) (-3877 (((-3 |#3| "failed") |#3|) 66)) (-1856 ((|#3| |#3|) 137)) (-3161 (((-3 |#3| "failed") |#3|) 104)) (-2976 ((|#3| |#3|) 142)) (-2657 (((-3 |#3| "failed") |#3|) 62)) (-1839 ((|#3| |#3|) 135)) (-1338 (((-3 |#3| "failed") |#3|) 50)) (-2957 ((|#3| |#3|) 125)) (-2129 (((-3 |#3| "failed") |#3|) 70)) (-1873 ((|#3| |#3|) 139)) (-2239 (((-3 |#3| "failed") |#3|) 54)) (-3001 ((|#3| |#3|) 127)) (-2105 (((-3 |#3| "failed") |#3|) 72)) (-2476 ((|#3| |#3|) 140)) (-2032 (((-3 |#3| "failed") |#3|) 56)) (-3011 ((|#3| |#3|) 128)) (-3293 (((-3 |#3| "failed") |#3|) 68)) (-1864 ((|#3| |#3|) 138)) (-2304 (((-3 |#3| "failed") |#3|) 107)) (-2989 ((|#3| |#3|) 143)) (-2194 (((-3 |#3| "failed") |#3|) 64)) (-1849 ((|#3| |#3|) 136)) (-2339 (((-3 |#3| "failed") |#3|) 52)) (-2966 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-382 (-522))) 40 (|has| |#1| (-338)))))
+(((-254 |#1| |#2| |#3|) (-13 (-910 |#3|) (-10 -7 (IF (|has| |#1| (-338)) (-15 ** (|#3| |#3| (-382 (-522)))) |%noBranch|) (-15 -3357 (|#3| |#3|)) (-15 -1238 (|#3| |#3|)) (-15 -2906 (|#3| |#3|)) (-15 -2915 (|#3| |#3|)) (-15 -2923 (|#3| |#3|)) (-15 -2928 (|#3| |#3|)) (-15 -2936 (|#3| |#3|)) (-15 -2946 (|#3| |#3|)) (-15 -2957 (|#3| |#3|)) (-15 -2966 (|#3| |#3|)) (-15 -2976 (|#3| |#3|)) (-15 -2989 (|#3| |#3|)) (-15 -3001 (|#3| |#3|)) (-15 -3011 (|#3| |#3|)) (-15 -3023 (|#3| |#3|)) (-15 -3035 (|#3| |#3|)) (-15 -3044 (|#3| |#3|)) (-15 -3054 (|#3| |#3|)) (-15 -3066 (|#3| |#3|)) (-15 -1831 (|#3| |#3|)) (-15 -1839 (|#3| |#3|)) (-15 -1849 (|#3| |#3|)) (-15 -1856 (|#3| |#3|)) (-15 -1864 (|#3| |#3|)) (-15 -1873 (|#3| |#3|)) (-15 -2476 (|#3| |#3|)))) (-37 (-382 (-522))) (-1157 |#1|) (-1128 |#1| |#2|)) (T -254))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-382 (-522))) (-4 *4 (-338)) (-4 *4 (-37 *3)) (-4 *5 (-1157 *4)) (-5 *1 (-254 *4 *5 *2)) (-4 *2 (-1128 *4 *5)))) (-3357 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1238 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2906 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2915 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2923 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2928 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2936 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2946 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2957 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2966 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2976 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2989 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-3001 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-3011 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-3023 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-3035 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-3044 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-3054 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-3066 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1831 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1839 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1849 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1856 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1864 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-1873 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))) (-2476 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3)) (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4)))))
+(-13 (-910 |#3|) (-10 -7 (IF (|has| |#1| (-338)) (-15 ** (|#3| |#3| (-382 (-522)))) |%noBranch|) (-15 -3357 (|#3| |#3|)) (-15 -1238 (|#3| |#3|)) (-15 -2906 (|#3| |#3|)) (-15 -2915 (|#3| |#3|)) (-15 -2923 (|#3| |#3|)) (-15 -2928 (|#3| |#3|)) (-15 -2936 (|#3| |#3|)) (-15 -2946 (|#3| |#3|)) (-15 -2957 (|#3| |#3|)) (-15 -2966 (|#3| |#3|)) (-15 -2976 (|#3| |#3|)) (-15 -2989 (|#3| |#3|)) (-15 -3001 (|#3| |#3|)) (-15 -3011 (|#3| |#3|)) (-15 -3023 (|#3| |#3|)) (-15 -3035 (|#3| |#3|)) (-15 -3044 (|#3| |#3|)) (-15 -3054 (|#3| |#3|)) (-15 -3066 (|#3| |#3|)) (-15 -1831 (|#3| |#3|)) (-15 -1839 (|#3| |#3|)) (-15 -1849 (|#3| |#3|)) (-15 -1856 (|#3| |#3|)) (-15 -1864 (|#3| |#3|)) (-15 -1873 (|#3| |#3|)) (-15 -2476 (|#3| |#3|))))
+((-1509 (((-3 |#3| "failed") |#3|) 66)) (-3044 ((|#3| |#3|) 133)) (-3380 (((-3 |#3| "failed") |#3|) 50)) (-2923 ((|#3| |#3|) 121)) (-2808 (((-3 |#3| "failed") |#3|) 62)) (-3023 ((|#3| |#3|) 131)) (-2364 (((-3 |#3| "failed") |#3|) 46)) (-2906 ((|#3| |#3|) 119)) (-1737 (((-3 |#3| "failed") |#3|) 70)) (-3066 ((|#3| |#3|) 135)) (-4026 (((-3 |#3| "failed") |#3|) 54)) (-2936 ((|#3| |#3|) 123)) (-3417 (((-3 |#3| "failed") |#3| (-708)) 35)) (-4117 (((-3 |#3| "failed") |#3|) 44)) (-1238 ((|#3| |#3|) 112)) (-3466 (((-3 |#3| "failed") |#3|) 42)) (-3357 ((|#3| |#3|) 118)) (-4037 (((-3 |#3| "failed") |#3|) 72)) (-1831 ((|#3| |#3|) 136)) (-2434 (((-3 |#3| "failed") |#3|) 56)) (-2946 ((|#3| |#3|) 124)) (-2378 (((-3 |#3| "failed") |#3|) 68)) (-3054 ((|#3| |#3|) 134)) (-2642 (((-3 |#3| "failed") |#3|) 52)) (-2928 ((|#3| |#3|) 122)) (-3063 (((-3 |#3| "failed") |#3|) 64)) (-3035 ((|#3| |#3|) 132)) (-4143 (((-3 |#3| "failed") |#3|) 48)) (-2915 ((|#3| |#3|) 120)) (-3877 (((-3 |#3| "failed") |#3|) 78)) (-1856 ((|#3| |#3|) 139)) (-3161 (((-3 |#3| "failed") |#3|) 58)) (-2976 ((|#3| |#3|) 127)) (-2657 (((-3 |#3| "failed") |#3|) 74)) (-1839 ((|#3| |#3|) 137)) (-1338 (((-3 |#3| "failed") |#3|) 102)) (-2957 ((|#3| |#3|) 125)) (-2129 (((-3 |#3| "failed") |#3|) 82)) (-1873 ((|#3| |#3|) 141)) (-2239 (((-3 |#3| "failed") |#3|) 109)) (-3001 ((|#3| |#3|) 129)) (-2105 (((-3 |#3| "failed") |#3|) 84)) (-2476 ((|#3| |#3|) 142)) (-2032 (((-3 |#3| "failed") |#3|) 111)) (-3011 ((|#3| |#3|) 130)) (-3293 (((-3 |#3| "failed") |#3|) 80)) (-1864 ((|#3| |#3|) 140)) (-2304 (((-3 |#3| "failed") |#3|) 60)) (-2989 ((|#3| |#3|) 128)) (-2194 (((-3 |#3| "failed") |#3|) 76)) (-1849 ((|#3| |#3|) 138)) (-2339 (((-3 |#3| "failed") |#3|) 105)) (-2966 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-382 (-522))) 40 (|has| |#1| (-338)))))
+(((-255 |#1| |#2| |#3| |#4|) (-13 (-910 |#3|) (-10 -7 (IF (|has| |#1| (-338)) (-15 ** (|#3| |#3| (-382 (-522)))) |%noBranch|) (-15 -3357 (|#3| |#3|)) (-15 -1238 (|#3| |#3|)) (-15 -2906 (|#3| |#3|)) (-15 -2915 (|#3| |#3|)) (-15 -2923 (|#3| |#3|)) (-15 -2928 (|#3| |#3|)) (-15 -2936 (|#3| |#3|)) (-15 -2946 (|#3| |#3|)) (-15 -2957 (|#3| |#3|)) (-15 -2966 (|#3| |#3|)) (-15 -2976 (|#3| |#3|)) (-15 -2989 (|#3| |#3|)) (-15 -3001 (|#3| |#3|)) (-15 -3011 (|#3| |#3|)) (-15 -3023 (|#3| |#3|)) (-15 -3035 (|#3| |#3|)) (-15 -3044 (|#3| |#3|)) (-15 -3054 (|#3| |#3|)) (-15 -3066 (|#3| |#3|)) (-15 -1831 (|#3| |#3|)) (-15 -1839 (|#3| |#3|)) (-15 -1849 (|#3| |#3|)) (-15 -1856 (|#3| |#3|)) (-15 -1864 (|#3| |#3|)) (-15 -1873 (|#3| |#3|)) (-15 -2476 (|#3| |#3|)))) (-37 (-382 (-522))) (-1126 |#1|) (-1149 |#1| |#2|) (-910 |#2|)) (T -255))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-382 (-522))) (-4 *4 (-338)) (-4 *4 (-37 *3)) (-4 *5 (-1126 *4)) (-5 *1 (-255 *4 *5 *2 *6)) (-4 *2 (-1149 *4 *5)) (-4 *6 (-910 *5)))) (-3357 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1238 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2906 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2915 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2923 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2928 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2936 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2946 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2957 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2966 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2976 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2989 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-3001 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-3011 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-3023 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-3035 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-3044 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-3054 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-3066 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1831 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1839 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1849 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1856 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1864 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-1873 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))) (-2476 (*1 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3)) (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4)))))
+(-13 (-910 |#3|) (-10 -7 (IF (|has| |#1| (-338)) (-15 ** (|#3| |#3| (-382 (-522)))) |%noBranch|) (-15 -3357 (|#3| |#3|)) (-15 -1238 (|#3| |#3|)) (-15 -2906 (|#3| |#3|)) (-15 -2915 (|#3| |#3|)) (-15 -2923 (|#3| |#3|)) (-15 -2928 (|#3| |#3|)) (-15 -2936 (|#3| |#3|)) (-15 -2946 (|#3| |#3|)) (-15 -2957 (|#3| |#3|)) (-15 -2966 (|#3| |#3|)) (-15 -2976 (|#3| |#3|)) (-15 -2989 (|#3| |#3|)) (-15 -3001 (|#3| |#3|)) (-15 -3011 (|#3| |#3|)) (-15 -3023 (|#3| |#3|)) (-15 -3035 (|#3| |#3|)) (-15 -3044 (|#3| |#3|)) (-15 -3054 (|#3| |#3|)) (-15 -3066 (|#3| |#3|)) (-15 -1831 (|#3| |#3|)) (-15 -1839 (|#3| |#3|)) (-15 -1849 (|#3| |#3|)) (-15 -1856 (|#3| |#3|)) (-15 -1864 (|#3| |#3|)) (-15 -1873 (|#3| |#3|)) (-15 -2476 (|#3| |#3|))))
+((-1652 (((-108) $) 19)) (-2075 (((-166) $) 8)) (-1403 (((-3 (-1085) "failed") $) 22)) (-3906 (((-3 (-1085) "failed") $) 14)) (-1220 (((-3 (-588 $) "failed") $) NIL)) (-1490 (((-3 (-1018) "failed") $) 17)) (-1967 (((-108) $) 15)) (-2217 (((-792) $) NIL)) (-2829 (((-108) $) 10)))
+(((-256) (-13 (-562 (-792)) (-10 -8 (-15 -2075 ((-166) $)) (-15 -1967 ((-108) $)) (-15 -1490 ((-3 (-1018) "failed") $)) (-15 -1652 ((-108) $)) (-15 -1403 ((-3 (-1085) "failed") $)) (-15 -2829 ((-108) $)) (-15 -3906 ((-3 (-1085) "failed") $)) (-15 -1220 ((-3 (-588 $) "failed") $))))) (T -256))
+((-2075 (*1 *2 *1) (-12 (-5 *2 (-166)) (-5 *1 (-256)))) (-1967 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-256)))) (-1490 (*1 *2 *1) (|partial| -12 (-5 *2 (-1018)) (-5 *1 (-256)))) (-1652 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-256)))) (-1403 (*1 *2 *1) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-256)))) (-2829 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-256)))) (-3906 (*1 *2 *1) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-256)))) (-1220 (*1 *2 *1) (|partial| -12 (-5 *2 (-588 (-256))) (-5 *1 (-256)))))
+(-13 (-562 (-792)) (-10 -8 (-15 -2075 ((-166) $)) (-15 -1967 ((-108) $)) (-15 -1490 ((-3 (-1018) "failed") $)) (-15 -1652 ((-108) $)) (-15 -1403 ((-3 (-1085) "failed") $)) (-15 -2829 ((-108) $)) (-15 -3906 ((-3 (-1085) "failed") $)) (-15 -1220 ((-3 (-588 $) "failed") $))))
+((-1696 (($ (-1 (-108) |#2|) $) 23)) (-2379 (($ $) 36)) (-1700 (($ (-1 (-108) |#2|) $) NIL) (($ |#2| $) 34)) (-1424 (($ |#2| $) 31) (($ (-1 (-108) |#2|) $) 17)) (-3557 (($ (-1 (-108) |#2| |#2|) $ $) NIL) (($ $ $) 40)) (-1731 (($ |#2| $ (-522)) 19) (($ $ $ (-522)) 21)) (-3835 (($ $ (-522)) 11) (($ $ (-1133 (-522))) 14)) (-2335 (($ $ |#2|) 29) (($ $ $) NIL)) (-4170 (($ $ |#2|) 28) (($ |#2| $) NIL) (($ $ $) 25) (($ (-588 $)) NIL)))
+(((-257 |#1| |#2|) (-10 -8 (-15 -3557 (|#1| |#1| |#1|)) (-15 -1700 (|#1| |#2| |#1|)) (-15 -3557 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -1700 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2335 (|#1| |#1| |#1|)) (-15 -2335 (|#1| |#1| |#2|)) (-15 -1731 (|#1| |#1| |#1| (-522))) (-15 -1731 (|#1| |#2| |#1| (-522))) (-15 -3835 (|#1| |#1| (-1133 (-522)))) (-15 -3835 (|#1| |#1| (-522))) (-15 -4170 (|#1| (-588 |#1|))) (-15 -4170 (|#1| |#1| |#1|)) (-15 -4170 (|#1| |#2| |#1|)) (-15 -4170 (|#1| |#1| |#2|)) (-15 -1424 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1696 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1424 (|#1| |#2| |#1|)) (-15 -2379 (|#1| |#1|))) (-258 |#2|) (-1120)) (T -257))
+NIL
+(-10 -8 (-15 -3557 (|#1| |#1| |#1|)) (-15 -1700 (|#1| |#2| |#1|)) (-15 -3557 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -1700 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -2335 (|#1| |#1| |#1|)) (-15 -2335 (|#1| |#1| |#2|)) (-15 -1731 (|#1| |#1| |#1| (-522))) (-15 -1731 (|#1| |#2| |#1| (-522))) (-15 -3835 (|#1| |#1| (-1133 (-522)))) (-15 -3835 (|#1| |#1| (-522))) (-15 -4170 (|#1| (-588 |#1|))) (-15 -4170 (|#1| |#1| |#1|)) (-15 -4170 (|#1| |#2| |#1|)) (-15 -4170 (|#1| |#1| |#2|)) (-15 -1424 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1696 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1424 (|#1| |#2| |#1|)) (-15 -2379 (|#1| |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3883 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) 8)) (-2437 ((|#1| $ (-522) |#1|) 52 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 58 (|has| $ (-6 -4239)))) (-1213 (($ (-1 (-108) |#1|) $) 85)) (-1696 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-1581 (($ $) 83 (|has| |#1| (-1014)))) (-2379 (($ $) 78 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1700 (($ (-1 (-108) |#1|) $) 89) (($ |#1| $) 84 (|has| |#1| (-1014)))) (-1424 (($ |#1| $) 77 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) 51)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1893 (($ (-708) |#1|) 69)) (-1480 (((-108) $ (-708)) 9)) (-3496 (((-522) $) 43 (|has| (-522) (-784)))) (-3557 (($ (-1 (-108) |#1| |#1|) $ $) 86) (($ $ $) 82 (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 44 (|has| (-522) (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-3365 (($ |#1| $ (-522)) 88) (($ $ $ (-522)) 87)) (-1731 (($ |#1| $ (-522)) 60) (($ $ $ (-522)) 59)) (-2130 (((-588 (-522)) $) 46)) (-2103 (((-108) (-522) $) 47)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2337 ((|#1| $) 42 (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-1972 (($ $ |#1|) 41 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) 48)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ (-522) |#1|) 50) ((|#1| $ (-522)) 49) (($ $ (-1133 (-522))) 63)) (-3551 (($ $ (-522)) 91) (($ $ (-1133 (-522))) 90)) (-3835 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-3873 (((-498) $) 79 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 70)) (-2335 (($ $ |#1|) 93) (($ $ $) 92)) (-4170 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-258 |#1|) (-1197) (-1120)) (T -258))
-((-2630 (*1 *1 *1 *2) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)))) (-2630 (*1 *1 *1 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)))) (-3681 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))) (-3681 (*1 *1 *1 *2) (-12 (-5 *2 (-1133 (-522))) (-4 *1 (-258 *3)) (-4 *3 (-1120)))) (-3859 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))) (-4095 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-258 *2)) (-4 *2 (-1120)))) (-4095 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))) (-1369 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))) (-2790 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))) (-3859 (*1 *1 *2 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)) (-4 *2 (-1014)))) (-3362 (*1 *1 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)) (-4 *2 (-1014)))) (-1369 (*1 *1 *1 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)) (-4 *2 (-784)))))
-(-13 (-593 |t#1|) (-10 -8 (-6 -4239) (-15 -2630 ($ $ |t#1|)) (-15 -2630 ($ $ $)) (-15 -3681 ($ $ (-522))) (-15 -3681 ($ $ (-1133 (-522)))) (-15 -3859 ($ (-1 (-108) |t#1|) $)) (-15 -4095 ($ |t#1| $ (-522))) (-15 -4095 ($ $ $ (-522))) (-15 -1369 ($ (-1 (-108) |t#1| |t#1|) $ $)) (-15 -2790 ($ (-1 (-108) |t#1|) $)) (IF (|has| |t#1| (-1014)) (PROGN (-15 -3859 ($ |t#1| $)) (-15 -3362 ($ $))) |%noBranch|) (IF (|has| |t#1| (-784)) (-15 -1369 ($ $ $)) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-2335 (*1 *1 *1 *2) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)))) (-2335 (*1 *1 *1 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)))) (-3551 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))) (-3551 (*1 *1 *1 *2) (-12 (-5 *2 (-1133 (-522))) (-4 *1 (-258 *3)) (-4 *3 (-1120)))) (-1700 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))) (-3365 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-258 *2)) (-4 *2 (-1120)))) (-3365 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))) (-3557 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))) (-1213 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))) (-1700 (*1 *1 *2 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)) (-4 *2 (-1014)))) (-1581 (*1 *1 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)) (-4 *2 (-1014)))) (-3557 (*1 *1 *1 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)) (-4 *2 (-784)))))
+(-13 (-593 |t#1|) (-10 -8 (-6 -4239) (-15 -2335 ($ $ |t#1|)) (-15 -2335 ($ $ $)) (-15 -3551 ($ $ (-522))) (-15 -3551 ($ $ (-1133 (-522)))) (-15 -1700 ($ (-1 (-108) |t#1|) $)) (-15 -3365 ($ |t#1| $ (-522))) (-15 -3365 ($ $ $ (-522))) (-15 -3557 ($ (-1 (-108) |t#1| |t#1|) $ $)) (-15 -1213 ($ (-1 (-108) |t#1|) $)) (IF (|has| |t#1| (-1014)) (PROGN (-15 -1700 ($ |t#1| $)) (-15 -1581 ($ $))) |%noBranch|) (IF (|has| |t#1| (-784)) (-15 -3557 ($ $ $)) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
((** (($ $ $) 10)))
(((-259 |#1|) (-10 -8 (-15 ** (|#1| |#1| |#1|))) (-260)) (T -259))
NIL
(-10 -8 (-15 ** (|#1| |#1| |#1|)))
-((-1254 (($ $) 6)) (-3266 (($ $) 7)) (** (($ $ $) 8)))
+((-1238 (($ $) 6)) (-3357 (($ $) 7)) (** (($ $ $) 8)))
(((-260) (-1197)) (T -260))
-((** (*1 *1 *1 *1) (-4 *1 (-260))) (-3266 (*1 *1 *1) (-4 *1 (-260))) (-1254 (*1 *1 *1) (-4 *1 (-260))))
-(-13 (-10 -8 (-15 -1254 ($ $)) (-15 -3266 ($ $)) (-15 ** ($ $ $))))
-((-2429 (((-588 (-1066 |#1|)) (-1066 |#1|) |#1|) 35)) (-3444 ((|#2| |#2| |#1|) 38)) (-2557 ((|#2| |#2| |#1|) 40)) (-2596 ((|#2| |#2| |#1|) 39)))
-(((-261 |#1| |#2|) (-10 -7 (-15 -3444 (|#2| |#2| |#1|)) (-15 -2596 (|#2| |#2| |#1|)) (-15 -2557 (|#2| |#2| |#1|)) (-15 -2429 ((-588 (-1066 |#1|)) (-1066 |#1|) |#1|))) (-338) (-1157 |#1|)) (T -261))
-((-2429 (*1 *2 *3 *4) (-12 (-4 *4 (-338)) (-5 *2 (-588 (-1066 *4))) (-5 *1 (-261 *4 *5)) (-5 *3 (-1066 *4)) (-4 *5 (-1157 *4)))) (-2557 (*1 *2 *2 *3) (-12 (-4 *3 (-338)) (-5 *1 (-261 *3 *2)) (-4 *2 (-1157 *3)))) (-2596 (*1 *2 *2 *3) (-12 (-4 *3 (-338)) (-5 *1 (-261 *3 *2)) (-4 *2 (-1157 *3)))) (-3444 (*1 *2 *2 *3) (-12 (-4 *3 (-338)) (-5 *1 (-261 *3 *2)) (-4 *2 (-1157 *3)))))
-(-10 -7 (-15 -3444 (|#2| |#2| |#1|)) (-15 -2596 (|#2| |#2| |#1|)) (-15 -2557 (|#2| |#2| |#1|)) (-15 -2429 ((-588 (-1066 |#1|)) (-1066 |#1|) |#1|)))
-((-2545 ((|#2| $ |#1|) 6)))
+((** (*1 *1 *1 *1) (-4 *1 (-260))) (-3357 (*1 *1 *1) (-4 *1 (-260))) (-1238 (*1 *1 *1) (-4 *1 (-260))))
+(-13 (-10 -8 (-15 -1238 ($ $)) (-15 -3357 ($ $)) (-15 ** ($ $ $))))
+((-3330 (((-588 (-1066 |#1|)) (-1066 |#1|) |#1|) 35)) (-3084 ((|#2| |#2| |#1|) 38)) (-3747 ((|#2| |#2| |#1|) 40)) (-2770 ((|#2| |#2| |#1|) 39)))
+(((-261 |#1| |#2|) (-10 -7 (-15 -3084 (|#2| |#2| |#1|)) (-15 -2770 (|#2| |#2| |#1|)) (-15 -3747 (|#2| |#2| |#1|)) (-15 -3330 ((-588 (-1066 |#1|)) (-1066 |#1|) |#1|))) (-338) (-1157 |#1|)) (T -261))
+((-3330 (*1 *2 *3 *4) (-12 (-4 *4 (-338)) (-5 *2 (-588 (-1066 *4))) (-5 *1 (-261 *4 *5)) (-5 *3 (-1066 *4)) (-4 *5 (-1157 *4)))) (-3747 (*1 *2 *2 *3) (-12 (-4 *3 (-338)) (-5 *1 (-261 *3 *2)) (-4 *2 (-1157 *3)))) (-2770 (*1 *2 *2 *3) (-12 (-4 *3 (-338)) (-5 *1 (-261 *3 *2)) (-4 *2 (-1157 *3)))) (-3084 (*1 *2 *2 *3) (-12 (-4 *3 (-338)) (-5 *1 (-261 *3 *2)) (-4 *2 (-1157 *3)))))
+(-10 -7 (-15 -3084 (|#2| |#2| |#1|)) (-15 -2770 (|#2| |#2| |#1|)) (-15 -3747 (|#2| |#2| |#1|)) (-15 -3330 ((-588 (-1066 |#1|)) (-1066 |#1|) |#1|)))
+((-2683 ((|#2| $ |#1|) 6)))
(((-262 |#1| |#2|) (-1197) (-1014) (-1120)) (T -262))
-((-2545 (*1 *2 *1 *3) (-12 (-4 *1 (-262 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120)))))
-(-13 (-10 -8 (-15 -2545 (|t#2| $ |t#1|))))
-((-3854 ((|#3| $ |#2| |#3|) 12)) (-3631 ((|#3| $ |#2|) 10)))
-(((-263 |#1| |#2| |#3|) (-10 -8 (-15 -3854 (|#3| |#1| |#2| |#3|)) (-15 -3631 (|#3| |#1| |#2|))) (-264 |#2| |#3|) (-1014) (-1120)) (T -263))
+((-2683 (*1 *2 *1 *3) (-12 (-4 *1 (-262 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120)))))
+(-13 (-10 -8 (-15 -2683 (|t#2| $ |t#1|))))
+((-2411 ((|#3| $ |#2| |#3|) 12)) (-2186 ((|#3| $ |#2|) 10)))
+(((-263 |#1| |#2| |#3|) (-10 -8 (-15 -2411 (|#3| |#1| |#2| |#3|)) (-15 -2186 (|#3| |#1| |#2|))) (-264 |#2| |#3|) (-1014) (-1120)) (T -263))
NIL
-(-10 -8 (-15 -3854 (|#3| |#1| |#2| |#3|)) (-15 -3631 (|#3| |#1| |#2|)))
-((-2379 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4239)))) (-3854 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4239)))) (-3631 ((|#2| $ |#1|) 11)) (-2545 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
+(-10 -8 (-15 -2411 (|#3| |#1| |#2| |#3|)) (-15 -2186 (|#3| |#1| |#2|)))
+((-2437 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4239)))) (-2411 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4239)))) (-2186 ((|#2| $ |#1|) 11)) (-2683 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
(((-264 |#1| |#2|) (-1197) (-1014) (-1120)) (T -264))
-((-2545 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-264 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120)))) (-3631 (*1 *2 *1 *3) (-12 (-4 *1 (-264 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120)))) (-2379 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-264 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120)))) (-3854 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-264 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120)))))
-(-13 (-262 |t#1| |t#2|) (-10 -8 (-15 -2545 (|t#2| $ |t#1| |t#2|)) (-15 -3631 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4239)) (PROGN (-15 -2379 (|t#2| $ |t#1| |t#2|)) (-15 -3854 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
+((-2683 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-264 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120)))) (-2186 (*1 *2 *1 *3) (-12 (-4 *1 (-264 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120)))) (-2437 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-264 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120)))) (-2411 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-264 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120)))))
+(-13 (-262 |t#1| |t#2|) (-10 -8 (-15 -2683 (|t#2| $ |t#1| |t#2|)) (-15 -2186 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4239)) (PROGN (-15 -2437 (|t#2| $ |t#1| |t#2|)) (-15 -2411 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
(((-262 |#1| |#2|) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 35)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 40)) (-2022 (($ $) 38)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1687 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-2277 (($ $ $) 33)) (-3864 (($ |#2| |#3|) 19)) (-2682 (((-3 $ "failed") $) NIL)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2782 (((-108) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3010 ((|#3| $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 20)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3351 (((-3 $ "failed") $ $) NIL)) (-3730 (((-708) $) 34)) (-2545 ((|#2| $ |#2|) 42)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 24)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-2323 (((-708)) NIL)) (-3958 (((-108) $ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 29 T CONST)) (-3577 (($) 36 T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 37)))
-(((-265 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-283) (-10 -8 (-15 -3010 (|#3| $)) (-15 -2190 (|#2| $)) (-15 -3864 ($ |#2| |#3|)) (-15 -3351 ((-3 $ "failed") $ $)) (-15 -2682 ((-3 $ "failed") $)) (-15 -3098 ($ $)) (-15 -2545 (|#2| $ |#2|)))) (-157) (-1142 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -265))
-((-2682 (*1 *1 *1) (|partial| -12 (-4 *2 (-157)) (-5 *1 (-265 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1142 *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)))) (-3010 (*1 *2 *1) (-12 (-4 *3 (-157)) (-4 *2 (-23)) (-5 *1 (-265 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1142 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-2190 (*1 *2 *1) (-12 (-4 *2 (-1142 *3)) (-5 *1 (-265 *3 *2 *4 *5 *6 *7)) (-4 *3 (-157)) (-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)))) (-3864 (*1 *1 *2 *3) (-12 (-4 *4 (-157)) (-5 *1 (-265 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1142 *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)))) (-3351 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-157)) (-5 *1 (-265 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1142 *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)))) (-3098 (*1 *1 *1) (-12 (-4 *2 (-157)) (-5 *1 (-265 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1142 *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)))) (-2545 (*1 *2 *1 *2) (-12 (-4 *3 (-157)) (-5 *1 (-265 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1142 *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 (-283) (-10 -8 (-15 -3010 (|#3| $)) (-15 -2190 (|#2| $)) (-15 -3864 ($ |#2| |#3|)) (-15 -3351 ((-3 $ "failed") $ $)) (-15 -2682 ((-3 $ "failed") $)) (-15 -3098 ($ $)) (-15 -2545 (|#2| $ |#2|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ (-522)) 28)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 35)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 40)) (-2298 (($ $) 38)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2805 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-2333 (($ $ $) 33)) (-2153 (($ |#2| |#3|) 19)) (-3920 (((-3 $ "failed") $) NIL)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2859 (((-108) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1246 ((|#3| $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 20)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1466 (((-3 $ "failed") $ $) NIL)) (-4031 (((-708) $) 34)) (-2683 ((|#2| $ |#2|) 42)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 24)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-2742 (((-708)) NIL)) (-1407 (((-108) $ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 29 T CONST)) (-3709 (($) 36 T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 37)))
+(((-265 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-283) (-10 -8 (-15 -1246 (|#3| $)) (-15 -2217 (|#2| $)) (-15 -2153 ($ |#2| |#3|)) (-15 -1466 ((-3 $ "failed") $ $)) (-15 -3920 ((-3 $ "failed") $)) (-15 -3193 ($ $)) (-15 -2683 (|#2| $ |#2|)))) (-157) (-1142 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -265))
+((-3920 (*1 *1 *1) (|partial| -12 (-4 *2 (-157)) (-5 *1 (-265 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1142 *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)))) (-1246 (*1 *2 *1) (-12 (-4 *3 (-157)) (-4 *2 (-23)) (-5 *1 (-265 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1142 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-2217 (*1 *2 *1) (-12 (-4 *2 (-1142 *3)) (-5 *1 (-265 *3 *2 *4 *5 *6 *7)) (-4 *3 (-157)) (-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)))) (-2153 (*1 *1 *2 *3) (-12 (-4 *4 (-157)) (-5 *1 (-265 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1142 *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)))) (-1466 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-157)) (-5 *1 (-265 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1142 *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)))) (-3193 (*1 *1 *1) (-12 (-4 *2 (-157)) (-5 *1 (-265 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1142 *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)))) (-2683 (*1 *2 *1 *2) (-12 (-4 *3 (-157)) (-5 *1 (-265 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1142 *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 (-283) (-10 -8 (-15 -1246 (|#3| $)) (-15 -2217 (|#2| $)) (-15 -2153 ($ |#2| |#3|)) (-15 -1466 ((-3 $ "failed") $ $)) (-15 -3920 ((-3 $ "failed") $)) (-15 -3193 ($ $)) (-15 -2683 (|#2| $ |#2|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ (-522)) 28)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-266) (-1197)) (T -266))
NIL
(-13 (-971) (-107 $ $) (-10 -7 (-6 -4231)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 $) . T) ((-664) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1248 (($ (-1085) (-1085) (-1018) $) 15)) (-2525 (($ (-1085) (-588 (-893)) $) 19)) (-2601 (((-588 (-1001)) $) 8)) (-2693 (((-3 (-1018) "failed") (-1085) (-1085) $) 14)) (-2791 (((-3 (-588 (-893)) "failed") (-1085) $) 17)) (-3775 (($) 6)) (-3991 (($) 20)) (-2190 (((-792) $) 24)) (-2993 (($) 21)))
-(((-267) (-13 (-562 (-792)) (-10 -8 (-15 -3775 ($)) (-15 -2601 ((-588 (-1001)) $)) (-15 -2693 ((-3 (-1018) "failed") (-1085) (-1085) $)) (-15 -1248 ($ (-1085) (-1085) (-1018) $)) (-15 -2791 ((-3 (-588 (-893)) "failed") (-1085) $)) (-15 -2525 ($ (-1085) (-588 (-893)) $)) (-15 -3991 ($)) (-15 -2993 ($))))) (T -267))
-((-3775 (*1 *1) (-5 *1 (-267))) (-2601 (*1 *2 *1) (-12 (-5 *2 (-588 (-1001))) (-5 *1 (-267)))) (-2693 (*1 *2 *3 *3 *1) (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-1018)) (-5 *1 (-267)))) (-1248 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-1085)) (-5 *3 (-1018)) (-5 *1 (-267)))) (-2791 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-588 (-893))) (-5 *1 (-267)))) (-2525 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-893))) (-5 *1 (-267)))) (-3991 (*1 *1) (-5 *1 (-267))) (-2993 (*1 *1) (-5 *1 (-267))))
-(-13 (-562 (-792)) (-10 -8 (-15 -3775 ($)) (-15 -2601 ((-588 (-1001)) $)) (-15 -2693 ((-3 (-1018) "failed") (-1085) (-1085) $)) (-15 -1248 ($ (-1085) (-1085) (-1018) $)) (-15 -2791 ((-3 (-588 (-893)) "failed") (-1085) $)) (-15 -2525 ($ (-1085) (-588 (-893)) $)) (-15 -3991 ($)) (-15 -2993 ($))))
-((-2225 (((-588 (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |geneigvec| (-588 (-628 (-382 (-881 |#1|))))))) (-628 (-382 (-881 |#1|)))) 84)) (-4104 (((-588 (-628 (-382 (-881 |#1|)))) (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 |#1|)))))) (-628 (-382 (-881 |#1|)))) 79) (((-588 (-628 (-382 (-881 |#1|)))) (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|))) (-628 (-382 (-881 |#1|))) (-708) (-708)) 37)) (-3865 (((-588 (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 |#1|))))))) (-628 (-382 (-881 |#1|)))) 81)) (-3832 (((-588 (-628 (-382 (-881 |#1|)))) (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|))) (-628 (-382 (-881 |#1|)))) 61)) (-3806 (((-588 (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (-628 (-382 (-881 |#1|)))) 60)) (-2051 (((-881 |#1|) (-628 (-382 (-881 |#1|)))) 48) (((-881 |#1|) (-628 (-382 (-881 |#1|))) (-1085)) 49)))
-(((-268 |#1|) (-10 -7 (-15 -2051 ((-881 |#1|) (-628 (-382 (-881 |#1|))) (-1085))) (-15 -2051 ((-881 |#1|) (-628 (-382 (-881 |#1|))))) (-15 -3806 ((-588 (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (-628 (-382 (-881 |#1|))))) (-15 -3832 ((-588 (-628 (-382 (-881 |#1|)))) (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|))) (-628 (-382 (-881 |#1|))))) (-15 -4104 ((-588 (-628 (-382 (-881 |#1|)))) (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|))) (-628 (-382 (-881 |#1|))) (-708) (-708))) (-15 -4104 ((-588 (-628 (-382 (-881 |#1|)))) (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 |#1|)))))) (-628 (-382 (-881 |#1|))))) (-15 -2225 ((-588 (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |geneigvec| (-588 (-628 (-382 (-881 |#1|))))))) (-628 (-382 (-881 |#1|))))) (-15 -3865 ((-588 (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 |#1|))))))) (-628 (-382 (-881 |#1|)))))) (-426)) (T -268))
-((-3865 (*1 *2 *3) (-12 (-4 *4 (-426)) (-5 *2 (-588 (-2 (|:| |eigval| (-3 (-382 (-881 *4)) (-1075 (-1085) (-881 *4)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 *4)))))))) (-5 *1 (-268 *4)) (-5 *3 (-628 (-382 (-881 *4)))))) (-2225 (*1 *2 *3) (-12 (-4 *4 (-426)) (-5 *2 (-588 (-2 (|:| |eigval| (-3 (-382 (-881 *4)) (-1075 (-1085) (-881 *4)))) (|:| |geneigvec| (-588 (-628 (-382 (-881 *4)))))))) (-5 *1 (-268 *4)) (-5 *3 (-628 (-382 (-881 *4)))))) (-4104 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-382 (-881 *5)) (-1075 (-1085) (-881 *5)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 *4)))) (-4 *5 (-426)) (-5 *2 (-588 (-628 (-382 (-881 *5))))) (-5 *1 (-268 *5)) (-5 *4 (-628 (-382 (-881 *5)))))) (-4104 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-382 (-881 *6)) (-1075 (-1085) (-881 *6)))) (-5 *5 (-708)) (-4 *6 (-426)) (-5 *2 (-588 (-628 (-382 (-881 *6))))) (-5 *1 (-268 *6)) (-5 *4 (-628 (-382 (-881 *6)))))) (-3832 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-382 (-881 *5)) (-1075 (-1085) (-881 *5)))) (-4 *5 (-426)) (-5 *2 (-588 (-628 (-382 (-881 *5))))) (-5 *1 (-268 *5)) (-5 *4 (-628 (-382 (-881 *5)))))) (-3806 (*1 *2 *3) (-12 (-5 *3 (-628 (-382 (-881 *4)))) (-4 *4 (-426)) (-5 *2 (-588 (-3 (-382 (-881 *4)) (-1075 (-1085) (-881 *4))))) (-5 *1 (-268 *4)))) (-2051 (*1 *2 *3) (-12 (-5 *3 (-628 (-382 (-881 *4)))) (-5 *2 (-881 *4)) (-5 *1 (-268 *4)) (-4 *4 (-426)))) (-2051 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-382 (-881 *5)))) (-5 *4 (-1085)) (-5 *2 (-881 *5)) (-5 *1 (-268 *5)) (-4 *5 (-426)))))
-(-10 -7 (-15 -2051 ((-881 |#1|) (-628 (-382 (-881 |#1|))) (-1085))) (-15 -2051 ((-881 |#1|) (-628 (-382 (-881 |#1|))))) (-15 -3806 ((-588 (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (-628 (-382 (-881 |#1|))))) (-15 -3832 ((-588 (-628 (-382 (-881 |#1|)))) (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|))) (-628 (-382 (-881 |#1|))))) (-15 -4104 ((-588 (-628 (-382 (-881 |#1|)))) (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|))) (-628 (-382 (-881 |#1|))) (-708) (-708))) (-15 -4104 ((-588 (-628 (-382 (-881 |#1|)))) (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 |#1|)))))) (-628 (-382 (-881 |#1|))))) (-15 -2225 ((-588 (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |geneigvec| (-588 (-628 (-382 (-881 |#1|))))))) (-628 (-382 (-881 |#1|))))) (-15 -3865 ((-588 (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 |#1|))))))) (-628 (-382 (-881 |#1|))))))
-((-1391 (((-270 |#2|) (-1 |#2| |#1|) (-270 |#1|)) 14)))
-(((-269 |#1| |#2|) (-10 -7 (-15 -1391 ((-270 |#2|) (-1 |#2| |#1|) (-270 |#1|)))) (-1120) (-1120)) (T -269))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-270 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-270 *6)) (-5 *1 (-269 *5 *6)))))
-(-10 -7 (-15 -1391 ((-270 |#2|) (-1 |#2| |#1|) (-270 |#1|))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2250 (((-108) $) NIL (|has| |#1| (-21)))) (-4201 (($ $) 22)) (-1233 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3305 (($ $ $) 93 (|has| |#1| (-278)))) (-3175 (($) NIL (-3708 (|has| |#1| (-21)) (|has| |#1| (-664))) CONST)) (-1743 (($ $) 8 (|has| |#1| (-21)))) (-3891 (((-3 $ "failed") $) 68 (|has| |#1| (-664)))) (-3602 ((|#1| $) 21)) (-2682 (((-3 $ "failed") $) 66 (|has| |#1| (-664)))) (-2782 (((-108) $) NIL (|has| |#1| (-664)))) (-1391 (($ (-1 |#1| |#1|) $) 24)) (-3593 ((|#1| $) 9)) (-1448 (($ $) 57 (|has| |#1| (-21)))) (-4143 (((-3 $ "failed") $) 67 (|has| |#1| (-664)))) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-3098 (($ $) 70 (-3708 (|has| |#1| (-338)) (|has| |#1| (-447))))) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3934 (((-588 $) $) 19 (|has| |#1| (-514)))) (-2289 (($ $ $) 34 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 $)) 37 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-1085) |#1|) 27 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 31 (|has| |#1| (-483 (-1085) |#1|)))) (-1607 (($ |#1| |#1|) 17)) (-4078 (((-126)) 88 (|has| |#1| (-338)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) 85 (|has| |#1| (-829 (-1085))))) (-3122 (($ $ $) NIL (|has| |#1| (-447)))) (-1288 (($ $ $) NIL (|has| |#1| (-447)))) (-2190 (($ (-522)) NIL (|has| |#1| (-971))) (((-108) $) 45 (|has| |#1| (-1014))) (((-792) $) 44 (|has| |#1| (-1014)))) (-2323 (((-708)) 73 (|has| |#1| (-971)))) (-3510 (($ $ (-522)) NIL (|has| |#1| (-447))) (($ $ (-708)) NIL (|has| |#1| (-664))) (($ $ (-850)) NIL (|has| |#1| (-1026)))) (-3566 (($) 55 (|has| |#1| (-21)) CONST)) (-3577 (($) 63 (|has| |#1| (-664)) CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085))))) (-1531 (($ |#1| |#1|) 20) (((-108) $ $) 40 (|has| |#1| (-1014)))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) 90 (-3708 (|has| |#1| (-338)) (|has| |#1| (-447))))) (-1612 (($ |#1| $) 53 (|has| |#1| (-21))) (($ $ |#1|) 54 (|has| |#1| (-21))) (($ $ $) 52 (|has| |#1| (-21))) (($ $) 51 (|has| |#1| (-21)))) (-1602 (($ |#1| $) 48 (|has| |#1| (-25))) (($ $ |#1|) 49 (|has| |#1| (-25))) (($ $ $) 47 (|has| |#1| (-25)))) (** (($ $ (-522)) NIL (|has| |#1| (-447))) (($ $ (-708)) NIL (|has| |#1| (-664))) (($ $ (-850)) NIL (|has| |#1| (-1026)))) (* (($ $ |#1|) 61 (|has| |#1| (-1026))) (($ |#1| $) 60 (|has| |#1| (-1026))) (($ $ $) 59 (|has| |#1| (-1026))) (($ (-522) $) 76 (|has| |#1| (-21))) (($ (-708) $) NIL (|has| |#1| (-21))) (($ (-850) $) NIL (|has| |#1| (-25)))))
-(((-270 |#1|) (-13 (-1120) (-10 -8 (-15 -1531 ($ |#1| |#1|)) (-15 -1607 ($ |#1| |#1|)) (-15 -4201 ($ $)) (-15 -3593 (|#1| $)) (-15 -3602 (|#1| $)) (-15 -1391 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-483 (-1085) |#1|)) (-6 (-483 (-1085) |#1|)) |%noBranch|) (IF (|has| |#1| (-1014)) (PROGN (-6 (-1014)) (-6 (-562 (-108))) (IF (|has| |#1| (-285 |#1|)) (PROGN (-15 -2289 ($ $ $)) (-15 -2289 ($ $ (-588 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -1602 ($ |#1| $)) (-15 -1602 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -1448 ($ $)) (-15 -1743 ($ $)) (-15 -1612 ($ |#1| $)) (-15 -1612 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1026)) (PROGN (-6 (-1026)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-664)) (PROGN (-6 (-664)) (-15 -4143 ((-3 $ "failed") $)) (-15 -3891 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-447)) (PROGN (-6 (-447)) (-15 -4143 ((-3 $ "failed") $)) (-15 -3891 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-971)) (PROGN (-6 (-971)) (-6 (-107 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-157)) (-6 (-655 |#1|)) |%noBranch|) (IF (|has| |#1| (-514)) (-15 -3934 ((-588 $) $)) |%noBranch|) (IF (|has| |#1| (-829 (-1085))) (-6 (-829 (-1085))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-6 (-1173 |#1|)) (-15 -1620 ($ $ $)) (-15 -3098 ($ $))) |%noBranch|) (IF (|has| |#1| (-278)) (-15 -3305 ($ $ $)) |%noBranch|))) (-1120)) (T -270))
-((-1531 (*1 *1 *2 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120)))) (-1607 (*1 *1 *2 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120)))) (-4201 (*1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120)))) (-3593 (*1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120)))) (-3602 (*1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120)))) (-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-270 *3)))) (-2289 (*1 *1 *1 *1) (-12 (-4 *2 (-285 *2)) (-4 *2 (-1014)) (-4 *2 (-1120)) (-5 *1 (-270 *2)))) (-2289 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-270 *3))) (-4 *3 (-285 *3)) (-4 *3 (-1014)) (-4 *3 (-1120)) (-5 *1 (-270 *3)))) (-1602 (*1 *1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-25)) (-4 *2 (-1120)))) (-1602 (*1 *1 *1 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-25)) (-4 *2 (-1120)))) (-1448 (*1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120)))) (-1743 (*1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120)))) (-1612 (*1 *1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120)))) (-1612 (*1 *1 *1 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120)))) (-4143 (*1 *1 *1) (|partial| -12 (-5 *1 (-270 *2)) (-4 *2 (-664)) (-4 *2 (-1120)))) (-3891 (*1 *1 *1) (|partial| -12 (-5 *1 (-270 *2)) (-4 *2 (-664)) (-4 *2 (-1120)))) (-3934 (*1 *2 *1) (-12 (-5 *2 (-588 (-270 *3))) (-5 *1 (-270 *3)) (-4 *3 (-514)) (-4 *3 (-1120)))) (-3305 (*1 *1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-278)) (-4 *2 (-1120)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1026)) (-4 *2 (-1120)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1026)) (-4 *2 (-1120)))) (-1620 (*1 *1 *1 *1) (-3708 (-12 (-5 *1 (-270 *2)) (-4 *2 (-338)) (-4 *2 (-1120))) (-12 (-5 *1 (-270 *2)) (-4 *2 (-447)) (-4 *2 (-1120))))) (-3098 (*1 *1 *1) (-3708 (-12 (-5 *1 (-270 *2)) (-4 *2 (-338)) (-4 *2 (-1120))) (-12 (-5 *1 (-270 *2)) (-4 *2 (-447)) (-4 *2 (-1120))))))
-(-13 (-1120) (-10 -8 (-15 -1531 ($ |#1| |#1|)) (-15 -1607 ($ |#1| |#1|)) (-15 -4201 ($ $)) (-15 -3593 (|#1| $)) (-15 -3602 (|#1| $)) (-15 -1391 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-483 (-1085) |#1|)) (-6 (-483 (-1085) |#1|)) |%noBranch|) (IF (|has| |#1| (-1014)) (PROGN (-6 (-1014)) (-6 (-562 (-108))) (IF (|has| |#1| (-285 |#1|)) (PROGN (-15 -2289 ($ $ $)) (-15 -2289 ($ $ (-588 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -1602 ($ |#1| $)) (-15 -1602 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -1448 ($ $)) (-15 -1743 ($ $)) (-15 -1612 ($ |#1| $)) (-15 -1612 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1026)) (PROGN (-6 (-1026)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-664)) (PROGN (-6 (-664)) (-15 -4143 ((-3 $ "failed") $)) (-15 -3891 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-447)) (PROGN (-6 (-447)) (-15 -4143 ((-3 $ "failed") $)) (-15 -3891 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-971)) (PROGN (-6 (-971)) (-6 (-107 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-157)) (-6 (-655 |#1|)) |%noBranch|) (IF (|has| |#1| (-514)) (-15 -3934 ((-588 $) $)) |%noBranch|) (IF (|has| |#1| (-829 (-1085))) (-6 (-829 (-1085))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-6 (-1173 |#1|)) (-15 -1620 ($ $ $)) (-15 -3098 ($ $))) |%noBranch|) (IF (|has| |#1| (-278)) (-15 -3305 ($ $ $)) |%noBranch|)))
-((-1416 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1800 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2679 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#2| $ |#1| |#2|) NIL)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2750 (((-3 |#2| "failed") |#1| $) NIL)) (-3175 (($) NIL T CONST)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-3859 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) NIL)) (-1423 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#2| $ |#1|) NIL)) (-3837 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 ((|#1| $) NIL (|has| |#1| (-784)))) (-3308 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2014 ((|#1| $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2966 (((-588 |#1|) $) NIL)) (-1231 (((-108) |#1| $) NIL)) (-2116 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-4095 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3604 (((-588 |#1|) $) NIL)) (-1405 (((-108) |#1| $) NIL)) (-4151 (((-1032) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2294 ((|#2| $) NIL (|has| |#1| (-784)))) (-1414 (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL)) (-2602 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1525 (((-588 |#2|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3990 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2190 (((-792) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-2795 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-2450 (($ (-1085) (-1085) (-1018) $) 15)) (-2198 (($ (-1085) (-588 (-893)) $) 19)) (-1964 (((-588 (-1001)) $) 8)) (-3581 (((-3 (-1018) "failed") (-1085) (-1085) $) 14)) (-2456 (((-3 (-588 (-893)) "failed") (-1085) $) 17)) (-3298 (($) 6)) (-4053 (($) 20)) (-2217 (((-792) $) 24)) (-4088 (($) 21)))
+(((-267) (-13 (-562 (-792)) (-10 -8 (-15 -3298 ($)) (-15 -1964 ((-588 (-1001)) $)) (-15 -3581 ((-3 (-1018) "failed") (-1085) (-1085) $)) (-15 -2450 ($ (-1085) (-1085) (-1018) $)) (-15 -2456 ((-3 (-588 (-893)) "failed") (-1085) $)) (-15 -2198 ($ (-1085) (-588 (-893)) $)) (-15 -4053 ($)) (-15 -4088 ($))))) (T -267))
+((-3298 (*1 *1) (-5 *1 (-267))) (-1964 (*1 *2 *1) (-12 (-5 *2 (-588 (-1001))) (-5 *1 (-267)))) (-3581 (*1 *2 *3 *3 *1) (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-1018)) (-5 *1 (-267)))) (-2450 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-1085)) (-5 *3 (-1018)) (-5 *1 (-267)))) (-2456 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-588 (-893))) (-5 *1 (-267)))) (-2198 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-893))) (-5 *1 (-267)))) (-4053 (*1 *1) (-5 *1 (-267))) (-4088 (*1 *1) (-5 *1 (-267))))
+(-13 (-562 (-792)) (-10 -8 (-15 -3298 ($)) (-15 -1964 ((-588 (-1001)) $)) (-15 -3581 ((-3 (-1018) "failed") (-1085) (-1085) $)) (-15 -2450 ($ (-1085) (-1085) (-1018) $)) (-15 -2456 ((-3 (-588 (-893)) "failed") (-1085) $)) (-15 -2198 ($ (-1085) (-588 (-893)) $)) (-15 -4053 ($)) (-15 -4088 ($))))
+((-3959 (((-588 (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |geneigvec| (-588 (-628 (-382 (-881 |#1|))))))) (-628 (-382 (-881 |#1|)))) 84)) (-3440 (((-588 (-628 (-382 (-881 |#1|)))) (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 |#1|)))))) (-628 (-382 (-881 |#1|)))) 79) (((-588 (-628 (-382 (-881 |#1|)))) (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|))) (-628 (-382 (-881 |#1|))) (-708) (-708)) 37)) (-1747 (((-588 (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 |#1|))))))) (-628 (-382 (-881 |#1|)))) 81)) (-2740 (((-588 (-628 (-382 (-881 |#1|)))) (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|))) (-628 (-382 (-881 |#1|)))) 61)) (-2420 (((-588 (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (-628 (-382 (-881 |#1|)))) 60)) (-2645 (((-881 |#1|) (-628 (-382 (-881 |#1|)))) 48) (((-881 |#1|) (-628 (-382 (-881 |#1|))) (-1085)) 49)))
+(((-268 |#1|) (-10 -7 (-15 -2645 ((-881 |#1|) (-628 (-382 (-881 |#1|))) (-1085))) (-15 -2645 ((-881 |#1|) (-628 (-382 (-881 |#1|))))) (-15 -2420 ((-588 (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (-628 (-382 (-881 |#1|))))) (-15 -2740 ((-588 (-628 (-382 (-881 |#1|)))) (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|))) (-628 (-382 (-881 |#1|))))) (-15 -3440 ((-588 (-628 (-382 (-881 |#1|)))) (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|))) (-628 (-382 (-881 |#1|))) (-708) (-708))) (-15 -3440 ((-588 (-628 (-382 (-881 |#1|)))) (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 |#1|)))))) (-628 (-382 (-881 |#1|))))) (-15 -3959 ((-588 (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |geneigvec| (-588 (-628 (-382 (-881 |#1|))))))) (-628 (-382 (-881 |#1|))))) (-15 -1747 ((-588 (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 |#1|))))))) (-628 (-382 (-881 |#1|)))))) (-426)) (T -268))
+((-1747 (*1 *2 *3) (-12 (-4 *4 (-426)) (-5 *2 (-588 (-2 (|:| |eigval| (-3 (-382 (-881 *4)) (-1075 (-1085) (-881 *4)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 *4)))))))) (-5 *1 (-268 *4)) (-5 *3 (-628 (-382 (-881 *4)))))) (-3959 (*1 *2 *3) (-12 (-4 *4 (-426)) (-5 *2 (-588 (-2 (|:| |eigval| (-3 (-382 (-881 *4)) (-1075 (-1085) (-881 *4)))) (|:| |geneigvec| (-588 (-628 (-382 (-881 *4)))))))) (-5 *1 (-268 *4)) (-5 *3 (-628 (-382 (-881 *4)))))) (-3440 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-382 (-881 *5)) (-1075 (-1085) (-881 *5)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 *4)))) (-4 *5 (-426)) (-5 *2 (-588 (-628 (-382 (-881 *5))))) (-5 *1 (-268 *5)) (-5 *4 (-628 (-382 (-881 *5)))))) (-3440 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-382 (-881 *6)) (-1075 (-1085) (-881 *6)))) (-5 *5 (-708)) (-4 *6 (-426)) (-5 *2 (-588 (-628 (-382 (-881 *6))))) (-5 *1 (-268 *6)) (-5 *4 (-628 (-382 (-881 *6)))))) (-2740 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-382 (-881 *5)) (-1075 (-1085) (-881 *5)))) (-4 *5 (-426)) (-5 *2 (-588 (-628 (-382 (-881 *5))))) (-5 *1 (-268 *5)) (-5 *4 (-628 (-382 (-881 *5)))))) (-2420 (*1 *2 *3) (-12 (-5 *3 (-628 (-382 (-881 *4)))) (-4 *4 (-426)) (-5 *2 (-588 (-3 (-382 (-881 *4)) (-1075 (-1085) (-881 *4))))) (-5 *1 (-268 *4)))) (-2645 (*1 *2 *3) (-12 (-5 *3 (-628 (-382 (-881 *4)))) (-5 *2 (-881 *4)) (-5 *1 (-268 *4)) (-4 *4 (-426)))) (-2645 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-382 (-881 *5)))) (-5 *4 (-1085)) (-5 *2 (-881 *5)) (-5 *1 (-268 *5)) (-4 *5 (-426)))))
+(-10 -7 (-15 -2645 ((-881 |#1|) (-628 (-382 (-881 |#1|))) (-1085))) (-15 -2645 ((-881 |#1|) (-628 (-382 (-881 |#1|))))) (-15 -2420 ((-588 (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (-628 (-382 (-881 |#1|))))) (-15 -2740 ((-588 (-628 (-382 (-881 |#1|)))) (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|))) (-628 (-382 (-881 |#1|))))) (-15 -3440 ((-588 (-628 (-382 (-881 |#1|)))) (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|))) (-628 (-382 (-881 |#1|))) (-708) (-708))) (-15 -3440 ((-588 (-628 (-382 (-881 |#1|)))) (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 |#1|)))))) (-628 (-382 (-881 |#1|))))) (-15 -3959 ((-588 (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |geneigvec| (-588 (-628 (-382 (-881 |#1|))))))) (-628 (-382 (-881 |#1|))))) (-15 -1747 ((-588 (-2 (|:| |eigval| (-3 (-382 (-881 |#1|)) (-1075 (-1085) (-881 |#1|)))) (|:| |eigmult| (-708)) (|:| |eigvec| (-588 (-628 (-382 (-881 |#1|))))))) (-628 (-382 (-881 |#1|))))))
+((-3810 (((-270 |#2|) (-1 |#2| |#1|) (-270 |#1|)) 14)))
+(((-269 |#1| |#2|) (-10 -7 (-15 -3810 ((-270 |#2|) (-1 |#2| |#1|) (-270 |#1|)))) (-1120) (-1120)) (T -269))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-270 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-270 *6)) (-5 *1 (-269 *5 *6)))))
+(-10 -7 (-15 -3810 ((-270 |#2|) (-1 |#2| |#1|) (-270 |#1|))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2944 (((-108) $) NIL (|has| |#1| (-21)))) (-2000 (($ $) 22)) (-2265 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-1847 (($ $ $) 93 (|has| |#1| (-278)))) (-3367 (($) NIL (-3844 (|has| |#1| (-21)) (|has| |#1| (-664))) CONST)) (-1449 (($ $) 8 (|has| |#1| (-21)))) (-1966 (((-3 $ "failed") $) 68 (|has| |#1| (-664)))) (-3728 ((|#1| $) 21)) (-3920 (((-3 $ "failed") $) 66 (|has| |#1| (-664)))) (-2859 (((-108) $) NIL (|has| |#1| (-664)))) (-3810 (($ (-1 |#1| |#1|) $) 24)) (-3717 ((|#1| $) 9)) (-2525 (($ $) 57 (|has| |#1| (-21)))) (-2749 (((-3 $ "failed") $) 67 (|has| |#1| (-664)))) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-3193 (($ $) 70 (-3844 (|has| |#1| (-338)) (|has| |#1| (-447))))) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-4205 (((-588 $) $) 19 (|has| |#1| (-514)))) (-2330 (($ $ $) 34 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 $)) 37 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-1085) |#1|) 27 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 31 (|has| |#1| (-483 (-1085) |#1|)))) (-1656 (($ |#1| |#1|) 17)) (-3222 (((-126)) 88 (|has| |#1| (-338)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) 85 (|has| |#1| (-829 (-1085))))) (-2983 (($ $ $) NIL (|has| |#1| (-447)))) (-1596 (($ $ $) NIL (|has| |#1| (-447)))) (-2217 (($ (-522)) NIL (|has| |#1| (-971))) (((-108) $) 45 (|has| |#1| (-1014))) (((-792) $) 44 (|has| |#1| (-1014)))) (-2742 (((-708)) 73 (|has| |#1| (-971)))) (-3622 (($ $ (-522)) NIL (|has| |#1| (-447))) (($ $ (-708)) NIL (|has| |#1| (-664))) (($ $ (-850)) NIL (|has| |#1| (-1026)))) (-3697 (($) 55 (|has| |#1| (-21)) CONST)) (-3709 (($) 63 (|has| |#1| (-664)) CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085))))) (-1562 (($ |#1| |#1|) 20) (((-108) $ $) 40 (|has| |#1| (-1014)))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) 90 (-3844 (|has| |#1| (-338)) (|has| |#1| (-447))))) (-1672 (($ |#1| $) 53 (|has| |#1| (-21))) (($ $ |#1|) 54 (|has| |#1| (-21))) (($ $ $) 52 (|has| |#1| (-21))) (($ $) 51 (|has| |#1| (-21)))) (-1661 (($ |#1| $) 48 (|has| |#1| (-25))) (($ $ |#1|) 49 (|has| |#1| (-25))) (($ $ $) 47 (|has| |#1| (-25)))) (** (($ $ (-522)) NIL (|has| |#1| (-447))) (($ $ (-708)) NIL (|has| |#1| (-664))) (($ $ (-850)) NIL (|has| |#1| (-1026)))) (* (($ $ |#1|) 61 (|has| |#1| (-1026))) (($ |#1| $) 60 (|has| |#1| (-1026))) (($ $ $) 59 (|has| |#1| (-1026))) (($ (-522) $) 76 (|has| |#1| (-21))) (($ (-708) $) NIL (|has| |#1| (-21))) (($ (-850) $) NIL (|has| |#1| (-25)))))
+(((-270 |#1|) (-13 (-1120) (-10 -8 (-15 -1562 ($ |#1| |#1|)) (-15 -1656 ($ |#1| |#1|)) (-15 -2000 ($ $)) (-15 -3717 (|#1| $)) (-15 -3728 (|#1| $)) (-15 -3810 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-483 (-1085) |#1|)) (-6 (-483 (-1085) |#1|)) |%noBranch|) (IF (|has| |#1| (-1014)) (PROGN (-6 (-1014)) (-6 (-562 (-108))) (IF (|has| |#1| (-285 |#1|)) (PROGN (-15 -2330 ($ $ $)) (-15 -2330 ($ $ (-588 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -1661 ($ |#1| $)) (-15 -1661 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2525 ($ $)) (-15 -1449 ($ $)) (-15 -1672 ($ |#1| $)) (-15 -1672 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1026)) (PROGN (-6 (-1026)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-664)) (PROGN (-6 (-664)) (-15 -2749 ((-3 $ "failed") $)) (-15 -1966 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-447)) (PROGN (-6 (-447)) (-15 -2749 ((-3 $ "failed") $)) (-15 -1966 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-971)) (PROGN (-6 (-971)) (-6 (-107 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-157)) (-6 (-655 |#1|)) |%noBranch|) (IF (|has| |#1| (-514)) (-15 -4205 ((-588 $) $)) |%noBranch|) (IF (|has| |#1| (-829 (-1085))) (-6 (-829 (-1085))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-6 (-1173 |#1|)) (-15 -1682 ($ $ $)) (-15 -3193 ($ $))) |%noBranch|) (IF (|has| |#1| (-278)) (-15 -1847 ($ $ $)) |%noBranch|))) (-1120)) (T -270))
+((-1562 (*1 *1 *2 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120)))) (-1656 (*1 *1 *2 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120)))) (-2000 (*1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120)))) (-3717 (*1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120)))) (-3728 (*1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120)))) (-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-270 *3)))) (-2330 (*1 *1 *1 *1) (-12 (-4 *2 (-285 *2)) (-4 *2 (-1014)) (-4 *2 (-1120)) (-5 *1 (-270 *2)))) (-2330 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-270 *3))) (-4 *3 (-285 *3)) (-4 *3 (-1014)) (-4 *3 (-1120)) (-5 *1 (-270 *3)))) (-1661 (*1 *1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-25)) (-4 *2 (-1120)))) (-1661 (*1 *1 *1 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-25)) (-4 *2 (-1120)))) (-2525 (*1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120)))) (-1449 (*1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120)))) (-1672 (*1 *1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120)))) (-1672 (*1 *1 *1 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120)))) (-2749 (*1 *1 *1) (|partial| -12 (-5 *1 (-270 *2)) (-4 *2 (-664)) (-4 *2 (-1120)))) (-1966 (*1 *1 *1) (|partial| -12 (-5 *1 (-270 *2)) (-4 *2 (-664)) (-4 *2 (-1120)))) (-4205 (*1 *2 *1) (-12 (-5 *2 (-588 (-270 *3))) (-5 *1 (-270 *3)) (-4 *3 (-514)) (-4 *3 (-1120)))) (-1847 (*1 *1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-278)) (-4 *2 (-1120)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1026)) (-4 *2 (-1120)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1026)) (-4 *2 (-1120)))) (-1682 (*1 *1 *1 *1) (-3844 (-12 (-5 *1 (-270 *2)) (-4 *2 (-338)) (-4 *2 (-1120))) (-12 (-5 *1 (-270 *2)) (-4 *2 (-447)) (-4 *2 (-1120))))) (-3193 (*1 *1 *1) (-3844 (-12 (-5 *1 (-270 *2)) (-4 *2 (-338)) (-4 *2 (-1120))) (-12 (-5 *1 (-270 *2)) (-4 *2 (-447)) (-4 *2 (-1120))))))
+(-13 (-1120) (-10 -8 (-15 -1562 ($ |#1| |#1|)) (-15 -1656 ($ |#1| |#1|)) (-15 -2000 ($ $)) (-15 -3717 (|#1| $)) (-15 -3728 (|#1| $)) (-15 -3810 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-483 (-1085) |#1|)) (-6 (-483 (-1085) |#1|)) |%noBranch|) (IF (|has| |#1| (-1014)) (PROGN (-6 (-1014)) (-6 (-562 (-108))) (IF (|has| |#1| (-285 |#1|)) (PROGN (-15 -2330 ($ $ $)) (-15 -2330 ($ $ (-588 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -1661 ($ |#1| $)) (-15 -1661 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2525 ($ $)) (-15 -1449 ($ $)) (-15 -1672 ($ |#1| $)) (-15 -1672 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1026)) (PROGN (-6 (-1026)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-664)) (PROGN (-6 (-664)) (-15 -2749 ((-3 $ "failed") $)) (-15 -1966 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-447)) (PROGN (-6 (-447)) (-15 -2749 ((-3 $ "failed") $)) (-15 -1966 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-971)) (PROGN (-6 (-971)) (-6 (-107 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-157)) (-6 (-655 |#1|)) |%noBranch|) (IF (|has| |#1| (-514)) (-15 -4205 ((-588 $) $)) |%noBranch|) (IF (|has| |#1| (-829 (-1085))) (-6 (-829 (-1085))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-6 (-1173 |#1|)) (-15 -1682 ($ $ $)) (-15 -3193 ($ $))) |%noBranch|) (IF (|has| |#1| (-278)) (-15 -1847 ($ $ $)) |%noBranch|)))
+((-1419 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1883 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-3883 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#2| $ |#1| |#2|) NIL)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-4011 (((-3 |#2| "failed") |#1| $) NIL)) (-3367 (($) NIL T CONST)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-1700 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) NIL)) (-1424 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#2| $ |#1|) NIL)) (-2395 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 ((|#1| $) NIL (|has| |#1| (-784)))) (-4084 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2201 ((|#1| $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2562 (((-588 |#1|) $) NIL)) (-2241 (((-108) |#1| $) NIL)) (-1431 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3365 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-2130 (((-588 |#1|) $) NIL)) (-2103 (((-108) |#1| $) NIL)) (-4174 (((-1032) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2337 ((|#2| $) NIL (|has| |#1| (-784)))) (-2187 (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL)) (-1972 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1973 (((-588 |#2|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3546 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-2217 (((-792) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-2501 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-271 |#1| |#2|) (-13 (-1097 |#1| |#2|) (-10 -7 (-6 -4238))) (-1014) (-1014)) (T -271))
NIL
(-13 (-1097 |#1| |#2|) (-10 -7 (-6 -4238)))
-((-2972 (((-287) (-1068) (-588 (-1068))) 16) (((-287) (-1068) (-1068)) 15) (((-287) (-588 (-1068))) 14) (((-287) (-1068)) 12)))
-(((-272) (-10 -7 (-15 -2972 ((-287) (-1068))) (-15 -2972 ((-287) (-588 (-1068)))) (-15 -2972 ((-287) (-1068) (-1068))) (-15 -2972 ((-287) (-1068) (-588 (-1068)))))) (T -272))
-((-2972 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-1068))) (-5 *3 (-1068)) (-5 *2 (-287)) (-5 *1 (-272)))) (-2972 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-287)) (-5 *1 (-272)))) (-2972 (*1 *2 *3) (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-287)) (-5 *1 (-272)))) (-2972 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-287)) (-5 *1 (-272)))))
-(-10 -7 (-15 -2972 ((-287) (-1068))) (-15 -2972 ((-287) (-588 (-1068)))) (-15 -2972 ((-287) (-1068) (-1068))) (-15 -2972 ((-287) (-1068) (-588 (-1068)))))
-((-1391 ((|#2| (-1 |#2| |#1|) (-1068) (-561 |#1|)) 17)))
-(((-273 |#1| |#2|) (-10 -7 (-15 -1391 (|#2| (-1 |#2| |#1|) (-1068) (-561 |#1|)))) (-278) (-1120)) (T -273))
-((-1391 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1068)) (-5 *5 (-561 *6)) (-4 *6 (-278)) (-4 *2 (-1120)) (-5 *1 (-273 *6 *2)))))
-(-10 -7 (-15 -1391 (|#2| (-1 |#2| |#1|) (-1068) (-561 |#1|))))
-((-1391 ((|#2| (-1 |#2| |#1|) (-561 |#1|)) 17)))
-(((-274 |#1| |#2|) (-10 -7 (-15 -1391 (|#2| (-1 |#2| |#1|) (-561 |#1|)))) (-278) (-278)) (T -274))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-561 *5)) (-4 *5 (-278)) (-4 *2 (-278)) (-5 *1 (-274 *5 *2)))))
-(-10 -7 (-15 -1391 (|#2| (-1 |#2| |#1|) (-561 |#1|))))
-((-2140 (((-108) (-202)) 10)))
-(((-275 |#1| |#2|) (-10 -7 (-15 -2140 ((-108) (-202)))) (-202) (-202)) (T -275))
-((-2140 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-108)) (-5 *1 (-275 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-10 -7 (-15 -2140 ((-108) (-202))))
-((-1617 (((-1066 (-202)) (-291 (-202)) (-588 (-1085)) (-1009 (-777 (-202)))) 88)) (-2510 (((-1066 (-202)) (-1166 (-291 (-202))) (-588 (-1085)) (-1009 (-777 (-202)))) 103) (((-1066 (-202)) (-291 (-202)) (-588 (-1085)) (-1009 (-777 (-202)))) 58)) (-3205 (((-588 (-1068)) (-1066 (-202))) NIL)) (-3072 (((-588 (-202)) (-291 (-202)) (-1085) (-1009 (-777 (-202)))) 55)) (-3164 (((-588 (-202)) (-881 (-382 (-522))) (-1085) (-1009 (-777 (-202)))) 47)) (-1644 (((-588 (-1068)) (-588 (-202))) NIL)) (-2988 (((-202) (-1009 (-777 (-202)))) 23)) (-2740 (((-202) (-1009 (-777 (-202)))) 24)) (-3023 (((-108) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 51)) (-2461 (((-1068) (-202)) NIL)))
-(((-276) (-10 -7 (-15 -2988 ((-202) (-1009 (-777 (-202))))) (-15 -2740 ((-202) (-1009 (-777 (-202))))) (-15 -3023 ((-108) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3072 ((-588 (-202)) (-291 (-202)) (-1085) (-1009 (-777 (-202))))) (-15 -1617 ((-1066 (-202)) (-291 (-202)) (-588 (-1085)) (-1009 (-777 (-202))))) (-15 -2510 ((-1066 (-202)) (-291 (-202)) (-588 (-1085)) (-1009 (-777 (-202))))) (-15 -2510 ((-1066 (-202)) (-1166 (-291 (-202))) (-588 (-1085)) (-1009 (-777 (-202))))) (-15 -3164 ((-588 (-202)) (-881 (-382 (-522))) (-1085) (-1009 (-777 (-202))))) (-15 -2461 ((-1068) (-202))) (-15 -1644 ((-588 (-1068)) (-588 (-202)))) (-15 -3205 ((-588 (-1068)) (-1066 (-202)))))) (T -276))
-((-3205 (*1 *2 *3) (-12 (-5 *3 (-1066 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-276)))) (-1644 (*1 *2 *3) (-12 (-5 *3 (-588 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-276)))) (-2461 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1068)) (-5 *1 (-276)))) (-3164 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-881 (-382 (-522)))) (-5 *4 (-1085)) (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-276)))) (-2510 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *4 (-588 (-1085))) (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-276)))) (-2510 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-291 (-202))) (-5 *4 (-588 (-1085))) (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-276)))) (-1617 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-291 (-202))) (-5 *4 (-588 (-1085))) (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-276)))) (-3072 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-291 (-202))) (-5 *4 (-1085)) (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-276)))) (-3023 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-108)) (-5 *1 (-276)))) (-2740 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-276)))) (-2988 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-276)))))
-(-10 -7 (-15 -2988 ((-202) (-1009 (-777 (-202))))) (-15 -2740 ((-202) (-1009 (-777 (-202))))) (-15 -3023 ((-108) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3072 ((-588 (-202)) (-291 (-202)) (-1085) (-1009 (-777 (-202))))) (-15 -1617 ((-1066 (-202)) (-291 (-202)) (-588 (-1085)) (-1009 (-777 (-202))))) (-15 -2510 ((-1066 (-202)) (-291 (-202)) (-588 (-1085)) (-1009 (-777 (-202))))) (-15 -2510 ((-1066 (-202)) (-1166 (-291 (-202))) (-588 (-1085)) (-1009 (-777 (-202))))) (-15 -3164 ((-588 (-202)) (-881 (-382 (-522))) (-1085) (-1009 (-777 (-202))))) (-15 -2461 ((-1068) (-202))) (-15 -1644 ((-588 (-1068)) (-588 (-202)))) (-15 -3205 ((-588 (-1068)) (-1066 (-202)))))
-((-1886 (((-588 (-561 $)) $) 28)) (-3305 (($ $ (-270 $)) 81) (($ $ (-588 (-270 $))) 121) (($ $ (-588 (-561 $)) (-588 $)) NIL)) (-1297 (((-3 (-561 $) "failed") $) 111)) (-1484 (((-561 $) $) 110)) (-1953 (($ $) 19) (($ (-588 $)) 55)) (-4161 (((-588 (-110)) $) 37)) (-2626 (((-110) (-110)) 91)) (-2591 (((-108) $) 129)) (-1391 (($ (-1 $ $) (-561 $)) 89)) (-3993 (((-3 (-561 $) "failed") $) 93)) (-2909 (($ (-110) $) 61) (($ (-110) (-588 $)) 99)) (-2249 (((-108) $ (-110)) 115) (((-108) $ (-1085)) 114)) (-4155 (((-708) $) 45)) (-1648 (((-108) $ $) 59) (((-108) $ (-1085)) 50)) (-1263 (((-108) $) 127)) (-2289 (($ $ (-561 $) $) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL) (($ $ (-588 (-270 $))) 119) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ $))) 84) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-1085) (-1 $ (-588 $))) 69) (($ $ (-1085) (-1 $ $)) 75) (($ $ (-588 (-110)) (-588 (-1 $ $))) 83) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) 85) (($ $ (-110) (-1 $ (-588 $))) 71) (($ $ (-110) (-1 $ $)) 77)) (-2545 (($ (-110) $) 62) (($ (-110) $ $) 63) (($ (-110) $ $ $) 64) (($ (-110) $ $ $ $) 65) (($ (-110) (-588 $)) 107)) (-3043 (($ $) 52) (($ $ $) 117)) (-2308 (($ $) 17) (($ (-588 $)) 54)) (-3614 (((-108) (-110)) 22)))
-(((-277 |#1|) (-10 -8 (-15 -2591 ((-108) |#1|)) (-15 -1263 ((-108) |#1|)) (-15 -2289 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -2289 (|#1| |#1| (-110) (-1 |#1| (-588 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2289 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| |#1|)))) (-15 -2289 (|#1| |#1| (-1085) (-1 |#1| |#1|))) (-15 -2289 (|#1| |#1| (-1085) (-1 |#1| (-588 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| |#1|)))) (-15 -1648 ((-108) |#1| (-1085))) (-15 -1648 ((-108) |#1| |#1|)) (-15 -1391 (|#1| (-1 |#1| |#1|) (-561 |#1|))) (-15 -2909 (|#1| (-110) (-588 |#1|))) (-15 -2909 (|#1| (-110) |#1|)) (-15 -2249 ((-108) |#1| (-1085))) (-15 -2249 ((-108) |#1| (-110))) (-15 -3614 ((-108) (-110))) (-15 -2626 ((-110) (-110))) (-15 -4161 ((-588 (-110)) |#1|)) (-15 -1886 ((-588 (-561 |#1|)) |#1|)) (-15 -3993 ((-3 (-561 |#1|) "failed") |#1|)) (-15 -4155 ((-708) |#1|)) (-15 -3043 (|#1| |#1| |#1|)) (-15 -3043 (|#1| |#1|)) (-15 -1953 (|#1| (-588 |#1|))) (-15 -1953 (|#1| |#1|)) (-15 -2308 (|#1| (-588 |#1|))) (-15 -2308 (|#1| |#1|)) (-15 -3305 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -3305 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -3305 (|#1| |#1| (-270 |#1|))) (-15 -2545 (|#1| (-110) (-588 |#1|))) (-15 -2545 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -2545 (|#1| (-110) |#1| |#1| |#1|)) (-15 -2545 (|#1| (-110) |#1| |#1|)) (-15 -2545 (|#1| (-110) |#1|)) (-15 -2289 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#1| |#1|)) (-15 -2289 (|#1| |#1| (-270 |#1|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -2289 (|#1| |#1| (-561 |#1|) |#1|)) (-15 -1484 ((-561 |#1|) |#1|)) (-15 -1297 ((-3 (-561 |#1|) "failed") |#1|))) (-278)) (T -277))
-((-2626 (*1 *2 *2) (-12 (-5 *2 (-110)) (-5 *1 (-277 *3)) (-4 *3 (-278)))) (-3614 (*1 *2 *3) (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-277 *4)) (-4 *4 (-278)))))
-(-10 -8 (-15 -2591 ((-108) |#1|)) (-15 -1263 ((-108) |#1|)) (-15 -2289 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -2289 (|#1| |#1| (-110) (-1 |#1| (-588 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2289 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| |#1|)))) (-15 -2289 (|#1| |#1| (-1085) (-1 |#1| |#1|))) (-15 -2289 (|#1| |#1| (-1085) (-1 |#1| (-588 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| |#1|)))) (-15 -1648 ((-108) |#1| (-1085))) (-15 -1648 ((-108) |#1| |#1|)) (-15 -1391 (|#1| (-1 |#1| |#1|) (-561 |#1|))) (-15 -2909 (|#1| (-110) (-588 |#1|))) (-15 -2909 (|#1| (-110) |#1|)) (-15 -2249 ((-108) |#1| (-1085))) (-15 -2249 ((-108) |#1| (-110))) (-15 -3614 ((-108) (-110))) (-15 -2626 ((-110) (-110))) (-15 -4161 ((-588 (-110)) |#1|)) (-15 -1886 ((-588 (-561 |#1|)) |#1|)) (-15 -3993 ((-3 (-561 |#1|) "failed") |#1|)) (-15 -4155 ((-708) |#1|)) (-15 -3043 (|#1| |#1| |#1|)) (-15 -3043 (|#1| |#1|)) (-15 -1953 (|#1| (-588 |#1|))) (-15 -1953 (|#1| |#1|)) (-15 -2308 (|#1| (-588 |#1|))) (-15 -2308 (|#1| |#1|)) (-15 -3305 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -3305 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -3305 (|#1| |#1| (-270 |#1|))) (-15 -2545 (|#1| (-110) (-588 |#1|))) (-15 -2545 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -2545 (|#1| (-110) |#1| |#1| |#1|)) (-15 -2545 (|#1| (-110) |#1| |#1|)) (-15 -2545 (|#1| (-110) |#1|)) (-15 -2289 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#1| |#1|)) (-15 -2289 (|#1| |#1| (-270 |#1|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -2289 (|#1| |#1| (-561 |#1|) |#1|)) (-15 -1484 ((-561 |#1|) |#1|)) (-15 -1297 ((-3 (-561 |#1|) "failed") |#1|)))
-((-1416 (((-108) $ $) 7)) (-1886 (((-588 (-561 $)) $) 44)) (-3305 (($ $ (-270 $)) 56) (($ $ (-588 (-270 $))) 55) (($ $ (-588 (-561 $)) (-588 $)) 54)) (-1297 (((-3 (-561 $) "failed") $) 69)) (-1484 (((-561 $) $) 68)) (-1953 (($ $) 51) (($ (-588 $)) 50)) (-4161 (((-588 (-110)) $) 43)) (-2626 (((-110) (-110)) 42)) (-2591 (((-108) $) 22 (|has| $ (-962 (-522))))) (-1711 (((-1081 $) (-561 $)) 25 (|has| $ (-971)))) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-1391 (($ (-1 $ $) (-561 $)) 36)) (-3993 (((-3 (-561 $) "failed") $) 46)) (-2385 (((-1068) $) 9)) (-1267 (((-588 (-561 $)) $) 45)) (-2909 (($ (-110) $) 38) (($ (-110) (-588 $)) 37)) (-2249 (((-108) $ (-110)) 40) (((-108) $ (-1085)) 39)) (-4155 (((-708) $) 47)) (-4151 (((-1032) $) 10)) (-1648 (((-108) $ $) 35) (((-108) $ (-1085)) 34)) (-1263 (((-108) $) 23 (|has| $ (-962 (-522))))) (-2289 (($ $ (-561 $) $) 67) (($ $ (-588 (-561 $)) (-588 $)) 66) (($ $ (-588 (-270 $))) 65) (($ $ (-270 $)) 64) (($ $ $ $) 63) (($ $ (-588 $) (-588 $)) 62) (($ $ (-588 (-1085)) (-588 (-1 $ $))) 33) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) 32) (($ $ (-1085) (-1 $ (-588 $))) 31) (($ $ (-1085) (-1 $ $)) 30) (($ $ (-588 (-110)) (-588 (-1 $ $))) 29) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) 28) (($ $ (-110) (-1 $ (-588 $))) 27) (($ $ (-110) (-1 $ $)) 26)) (-2545 (($ (-110) $) 61) (($ (-110) $ $) 60) (($ (-110) $ $ $) 59) (($ (-110) $ $ $ $) 58) (($ (-110) (-588 $)) 57)) (-3043 (($ $) 49) (($ $ $) 48)) (-1479 (($ $) 24 (|has| $ (-971)))) (-2190 (((-792) $) 11) (($ (-561 $)) 70)) (-2308 (($ $) 53) (($ (-588 $)) 52)) (-3614 (((-108) (-110)) 41)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)))
+((-3106 (((-287) (-1068) (-588 (-1068))) 16) (((-287) (-1068) (-1068)) 15) (((-287) (-588 (-1068))) 14) (((-287) (-1068)) 12)))
+(((-272) (-10 -7 (-15 -3106 ((-287) (-1068))) (-15 -3106 ((-287) (-588 (-1068)))) (-15 -3106 ((-287) (-1068) (-1068))) (-15 -3106 ((-287) (-1068) (-588 (-1068)))))) (T -272))
+((-3106 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-1068))) (-5 *3 (-1068)) (-5 *2 (-287)) (-5 *1 (-272)))) (-3106 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-287)) (-5 *1 (-272)))) (-3106 (*1 *2 *3) (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-287)) (-5 *1 (-272)))) (-3106 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-287)) (-5 *1 (-272)))))
+(-10 -7 (-15 -3106 ((-287) (-1068))) (-15 -3106 ((-287) (-588 (-1068)))) (-15 -3106 ((-287) (-1068) (-1068))) (-15 -3106 ((-287) (-1068) (-588 (-1068)))))
+((-3810 ((|#2| (-1 |#2| |#1|) (-1068) (-561 |#1|)) 17)))
+(((-273 |#1| |#2|) (-10 -7 (-15 -3810 (|#2| (-1 |#2| |#1|) (-1068) (-561 |#1|)))) (-278) (-1120)) (T -273))
+((-3810 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1068)) (-5 *5 (-561 *6)) (-4 *6 (-278)) (-4 *2 (-1120)) (-5 *1 (-273 *6 *2)))))
+(-10 -7 (-15 -3810 (|#2| (-1 |#2| |#1|) (-1068) (-561 |#1|))))
+((-3810 ((|#2| (-1 |#2| |#1|) (-561 |#1|)) 17)))
+(((-274 |#1| |#2|) (-10 -7 (-15 -3810 (|#2| (-1 |#2| |#1|) (-561 |#1|)))) (-278) (-278)) (T -274))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-561 *5)) (-4 *5 (-278)) (-4 *2 (-278)) (-5 *1 (-274 *5 *2)))))
+(-10 -7 (-15 -3810 (|#2| (-1 |#2| |#1|) (-561 |#1|))))
+((-3006 (((-108) (-202)) 10)))
+(((-275 |#1| |#2|) (-10 -7 (-15 -3006 ((-108) (-202)))) (-202) (-202)) (T -275))
+((-3006 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-108)) (-5 *1 (-275 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-10 -7 (-15 -3006 ((-108) (-202))))
+((-3899 (((-1066 (-202)) (-291 (-202)) (-588 (-1085)) (-1009 (-777 (-202)))) 88)) (-2079 (((-1066 (-202)) (-1166 (-291 (-202))) (-588 (-1085)) (-1009 (-777 (-202)))) 103) (((-1066 (-202)) (-291 (-202)) (-588 (-1085)) (-1009 (-777 (-202)))) 58)) (-2484 (((-588 (-1068)) (-1066 (-202))) NIL)) (-3635 (((-588 (-202)) (-291 (-202)) (-1085) (-1009 (-777 (-202)))) 55)) (-3275 (((-588 (-202)) (-881 (-382 (-522))) (-1085) (-1009 (-777 (-202)))) 47)) (-2310 (((-588 (-1068)) (-588 (-202))) NIL)) (-4046 (((-202) (-1009 (-777 (-202)))) 23)) (-4009 (((-202) (-1009 (-777 (-202)))) 24)) (-1357 (((-108) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 51)) (-2743 (((-1068) (-202)) NIL)))
+(((-276) (-10 -7 (-15 -4046 ((-202) (-1009 (-777 (-202))))) (-15 -4009 ((-202) (-1009 (-777 (-202))))) (-15 -1357 ((-108) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3635 ((-588 (-202)) (-291 (-202)) (-1085) (-1009 (-777 (-202))))) (-15 -3899 ((-1066 (-202)) (-291 (-202)) (-588 (-1085)) (-1009 (-777 (-202))))) (-15 -2079 ((-1066 (-202)) (-291 (-202)) (-588 (-1085)) (-1009 (-777 (-202))))) (-15 -2079 ((-1066 (-202)) (-1166 (-291 (-202))) (-588 (-1085)) (-1009 (-777 (-202))))) (-15 -3275 ((-588 (-202)) (-881 (-382 (-522))) (-1085) (-1009 (-777 (-202))))) (-15 -2743 ((-1068) (-202))) (-15 -2310 ((-588 (-1068)) (-588 (-202)))) (-15 -2484 ((-588 (-1068)) (-1066 (-202)))))) (T -276))
+((-2484 (*1 *2 *3) (-12 (-5 *3 (-1066 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-276)))) (-2310 (*1 *2 *3) (-12 (-5 *3 (-588 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-276)))) (-2743 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1068)) (-5 *1 (-276)))) (-3275 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-881 (-382 (-522)))) (-5 *4 (-1085)) (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-276)))) (-2079 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *4 (-588 (-1085))) (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-276)))) (-2079 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-291 (-202))) (-5 *4 (-588 (-1085))) (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-276)))) (-3899 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-291 (-202))) (-5 *4 (-588 (-1085))) (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-276)))) (-3635 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-291 (-202))) (-5 *4 (-1085)) (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-276)))) (-1357 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-108)) (-5 *1 (-276)))) (-4009 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-276)))) (-4046 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-276)))))
+(-10 -7 (-15 -4046 ((-202) (-1009 (-777 (-202))))) (-15 -4009 ((-202) (-1009 (-777 (-202))))) (-15 -1357 ((-108) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3635 ((-588 (-202)) (-291 (-202)) (-1085) (-1009 (-777 (-202))))) (-15 -3899 ((-1066 (-202)) (-291 (-202)) (-588 (-1085)) (-1009 (-777 (-202))))) (-15 -2079 ((-1066 (-202)) (-291 (-202)) (-588 (-1085)) (-1009 (-777 (-202))))) (-15 -2079 ((-1066 (-202)) (-1166 (-291 (-202))) (-588 (-1085)) (-1009 (-777 (-202))))) (-15 -3275 ((-588 (-202)) (-881 (-382 (-522))) (-1085) (-1009 (-777 (-202))))) (-15 -2743 ((-1068) (-202))) (-15 -2310 ((-588 (-1068)) (-588 (-202)))) (-15 -2484 ((-588 (-1068)) (-1066 (-202)))))
+((-1974 (((-588 (-561 $)) $) 28)) (-1847 (($ $ (-270 $)) 81) (($ $ (-588 (-270 $))) 121) (($ $ (-588 (-561 $)) (-588 $)) NIL)) (-3700 (((-3 (-561 $) "failed") $) 111)) (-1478 (((-561 $) $) 110)) (-2930 (($ $) 19) (($ (-588 $)) 55)) (-2896 (((-588 (-110)) $) 37)) (-1771 (((-110) (-110)) 91)) (-3077 (((-108) $) 129)) (-3810 (($ (-1 $ $) (-561 $)) 89)) (-3562 (((-3 (-561 $) "failed") $) 93)) (-3043 (($ (-110) $) 61) (($ (-110) (-588 $)) 99)) (-2935 (((-108) $ (-110)) 115) (((-108) $ (-1085)) 114)) (-4179 (((-708) $) 45)) (-2368 (((-108) $ $) 59) (((-108) $ (-1085)) 50)) (-2626 (((-108) $) 127)) (-2330 (($ $ (-561 $) $) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL) (($ $ (-588 (-270 $))) 119) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ $))) 84) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-1085) (-1 $ (-588 $))) 69) (($ $ (-1085) (-1 $ $)) 75) (($ $ (-588 (-110)) (-588 (-1 $ $))) 83) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) 85) (($ $ (-110) (-1 $ (-588 $))) 71) (($ $ (-110) (-1 $ $)) 77)) (-2683 (($ (-110) $) 62) (($ (-110) $ $) 63) (($ (-110) $ $ $) 64) (($ (-110) $ $ $ $) 65) (($ (-110) (-588 $)) 107)) (-3406 (($ $) 52) (($ $ $) 117)) (-3811 (($ $) 17) (($ (-588 $)) 54)) (-4082 (((-108) (-110)) 22)))
+(((-277 |#1|) (-10 -8 (-15 -3077 ((-108) |#1|)) (-15 -2626 ((-108) |#1|)) (-15 -2330 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -2330 (|#1| |#1| (-110) (-1 |#1| (-588 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2330 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| |#1|)))) (-15 -2330 (|#1| |#1| (-1085) (-1 |#1| |#1|))) (-15 -2330 (|#1| |#1| (-1085) (-1 |#1| (-588 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| |#1|)))) (-15 -2368 ((-108) |#1| (-1085))) (-15 -2368 ((-108) |#1| |#1|)) (-15 -3810 (|#1| (-1 |#1| |#1|) (-561 |#1|))) (-15 -3043 (|#1| (-110) (-588 |#1|))) (-15 -3043 (|#1| (-110) |#1|)) (-15 -2935 ((-108) |#1| (-1085))) (-15 -2935 ((-108) |#1| (-110))) (-15 -4082 ((-108) (-110))) (-15 -1771 ((-110) (-110))) (-15 -2896 ((-588 (-110)) |#1|)) (-15 -1974 ((-588 (-561 |#1|)) |#1|)) (-15 -3562 ((-3 (-561 |#1|) "failed") |#1|)) (-15 -4179 ((-708) |#1|)) (-15 -3406 (|#1| |#1| |#1|)) (-15 -3406 (|#1| |#1|)) (-15 -2930 (|#1| (-588 |#1|))) (-15 -2930 (|#1| |#1|)) (-15 -3811 (|#1| (-588 |#1|))) (-15 -3811 (|#1| |#1|)) (-15 -1847 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -1847 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -1847 (|#1| |#1| (-270 |#1|))) (-15 -2683 (|#1| (-110) (-588 |#1|))) (-15 -2683 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -2683 (|#1| (-110) |#1| |#1| |#1|)) (-15 -2683 (|#1| (-110) |#1| |#1|)) (-15 -2683 (|#1| (-110) |#1|)) (-15 -2330 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#1| |#1|)) (-15 -2330 (|#1| |#1| (-270 |#1|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -2330 (|#1| |#1| (-561 |#1|) |#1|)) (-15 -1478 ((-561 |#1|) |#1|)) (-15 -3700 ((-3 (-561 |#1|) "failed") |#1|))) (-278)) (T -277))
+((-1771 (*1 *2 *2) (-12 (-5 *2 (-110)) (-5 *1 (-277 *3)) (-4 *3 (-278)))) (-4082 (*1 *2 *3) (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-277 *4)) (-4 *4 (-278)))))
+(-10 -8 (-15 -3077 ((-108) |#1|)) (-15 -2626 ((-108) |#1|)) (-15 -2330 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -2330 (|#1| |#1| (-110) (-1 |#1| (-588 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2330 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| |#1|)))) (-15 -2330 (|#1| |#1| (-1085) (-1 |#1| |#1|))) (-15 -2330 (|#1| |#1| (-1085) (-1 |#1| (-588 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| |#1|)))) (-15 -2368 ((-108) |#1| (-1085))) (-15 -2368 ((-108) |#1| |#1|)) (-15 -3810 (|#1| (-1 |#1| |#1|) (-561 |#1|))) (-15 -3043 (|#1| (-110) (-588 |#1|))) (-15 -3043 (|#1| (-110) |#1|)) (-15 -2935 ((-108) |#1| (-1085))) (-15 -2935 ((-108) |#1| (-110))) (-15 -4082 ((-108) (-110))) (-15 -1771 ((-110) (-110))) (-15 -2896 ((-588 (-110)) |#1|)) (-15 -1974 ((-588 (-561 |#1|)) |#1|)) (-15 -3562 ((-3 (-561 |#1|) "failed") |#1|)) (-15 -4179 ((-708) |#1|)) (-15 -3406 (|#1| |#1| |#1|)) (-15 -3406 (|#1| |#1|)) (-15 -2930 (|#1| (-588 |#1|))) (-15 -2930 (|#1| |#1|)) (-15 -3811 (|#1| (-588 |#1|))) (-15 -3811 (|#1| |#1|)) (-15 -1847 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -1847 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -1847 (|#1| |#1| (-270 |#1|))) (-15 -2683 (|#1| (-110) (-588 |#1|))) (-15 -2683 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -2683 (|#1| (-110) |#1| |#1| |#1|)) (-15 -2683 (|#1| (-110) |#1| |#1|)) (-15 -2683 (|#1| (-110) |#1|)) (-15 -2330 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#1| |#1|)) (-15 -2330 (|#1| |#1| (-270 |#1|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -2330 (|#1| |#1| (-561 |#1|) |#1|)) (-15 -1478 ((-561 |#1|) |#1|)) (-15 -3700 ((-3 (-561 |#1|) "failed") |#1|)))
+((-1419 (((-108) $ $) 7)) (-1974 (((-588 (-561 $)) $) 44)) (-1847 (($ $ (-270 $)) 56) (($ $ (-588 (-270 $))) 55) (($ $ (-588 (-561 $)) (-588 $)) 54)) (-3700 (((-3 (-561 $) "failed") $) 69)) (-1478 (((-561 $) $) 68)) (-2930 (($ $) 51) (($ (-588 $)) 50)) (-2896 (((-588 (-110)) $) 43)) (-1771 (((-110) (-110)) 42)) (-3077 (((-108) $) 22 (|has| $ (-962 (-522))))) (-4185 (((-1081 $) (-561 $)) 25 (|has| $ (-971)))) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-3810 (($ (-1 $ $) (-561 $)) 36)) (-3562 (((-3 (-561 $) "failed") $) 46)) (-2311 (((-1068) $) 9)) (-1249 (((-588 (-561 $)) $) 45)) (-3043 (($ (-110) $) 38) (($ (-110) (-588 $)) 37)) (-2935 (((-108) $ (-110)) 40) (((-108) $ (-1085)) 39)) (-4179 (((-708) $) 47)) (-4174 (((-1032) $) 10)) (-2368 (((-108) $ $) 35) (((-108) $ (-1085)) 34)) (-2626 (((-108) $) 23 (|has| $ (-962 (-522))))) (-2330 (($ $ (-561 $) $) 67) (($ $ (-588 (-561 $)) (-588 $)) 66) (($ $ (-588 (-270 $))) 65) (($ $ (-270 $)) 64) (($ $ $ $) 63) (($ $ (-588 $) (-588 $)) 62) (($ $ (-588 (-1085)) (-588 (-1 $ $))) 33) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) 32) (($ $ (-1085) (-1 $ (-588 $))) 31) (($ $ (-1085) (-1 $ $)) 30) (($ $ (-588 (-110)) (-588 (-1 $ $))) 29) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) 28) (($ $ (-110) (-1 $ (-588 $))) 27) (($ $ (-110) (-1 $ $)) 26)) (-2683 (($ (-110) $) 61) (($ (-110) $ $) 60) (($ (-110) $ $ $) 59) (($ (-110) $ $ $ $) 58) (($ (-110) (-588 $)) 57)) (-3406 (($ $) 49) (($ $ $) 48)) (-1579 (($ $) 24 (|has| $ (-971)))) (-2217 (((-792) $) 11) (($ (-561 $)) 70)) (-3811 (($ $) 53) (($ (-588 $)) 52)) (-4082 (((-108) (-110)) 41)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)))
(((-278) (-1197)) (T -278))
-((-2545 (*1 *1 *2 *1) (-12 (-4 *1 (-278)) (-5 *2 (-110)))) (-2545 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-278)) (-5 *2 (-110)))) (-2545 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-278)) (-5 *2 (-110)))) (-2545 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-278)) (-5 *2 (-110)))) (-2545 (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-588 *1)) (-4 *1 (-278)))) (-3305 (*1 *1 *1 *2) (-12 (-5 *2 (-270 *1)) (-4 *1 (-278)))) (-3305 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-270 *1))) (-4 *1 (-278)))) (-3305 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-561 *1))) (-5 *3 (-588 *1)) (-4 *1 (-278)))) (-2308 (*1 *1 *1) (-4 *1 (-278))) (-2308 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-278)))) (-1953 (*1 *1 *1) (-4 *1 (-278))) (-1953 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-278)))) (-3043 (*1 *1 *1) (-4 *1 (-278))) (-3043 (*1 *1 *1 *1) (-4 *1 (-278))) (-4155 (*1 *2 *1) (-12 (-4 *1 (-278)) (-5 *2 (-708)))) (-3993 (*1 *2 *1) (|partial| -12 (-5 *2 (-561 *1)) (-4 *1 (-278)))) (-1267 (*1 *2 *1) (-12 (-5 *2 (-588 (-561 *1))) (-4 *1 (-278)))) (-1886 (*1 *2 *1) (-12 (-5 *2 (-588 (-561 *1))) (-4 *1 (-278)))) (-4161 (*1 *2 *1) (-12 (-4 *1 (-278)) (-5 *2 (-588 (-110))))) (-2626 (*1 *2 *2) (-12 (-4 *1 (-278)) (-5 *2 (-110)))) (-3614 (*1 *2 *3) (-12 (-4 *1 (-278)) (-5 *3 (-110)) (-5 *2 (-108)))) (-2249 (*1 *2 *1 *3) (-12 (-4 *1 (-278)) (-5 *3 (-110)) (-5 *2 (-108)))) (-2249 (*1 *2 *1 *3) (-12 (-4 *1 (-278)) (-5 *3 (-1085)) (-5 *2 (-108)))) (-2909 (*1 *1 *2 *1) (-12 (-4 *1 (-278)) (-5 *2 (-110)))) (-2909 (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-588 *1)) (-4 *1 (-278)))) (-1391 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-561 *1)) (-4 *1 (-278)))) (-1648 (*1 *2 *1 *1) (-12 (-4 *1 (-278)) (-5 *2 (-108)))) (-1648 (*1 *2 *1 *3) (-12 (-4 *1 (-278)) (-5 *3 (-1085)) (-5 *2 (-108)))) (-2289 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-588 (-1 *1 *1))) (-4 *1 (-278)))) (-2289 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-588 (-1 *1 (-588 *1)))) (-4 *1 (-278)))) (-2289 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1 *1 (-588 *1))) (-4 *1 (-278)))) (-2289 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1 *1 *1)) (-4 *1 (-278)))) (-2289 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-110))) (-5 *3 (-588 (-1 *1 *1))) (-4 *1 (-278)))) (-2289 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-110))) (-5 *3 (-588 (-1 *1 (-588 *1)))) (-4 *1 (-278)))) (-2289 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *1 (-588 *1))) (-4 *1 (-278)))) (-2289 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *1 *1)) (-4 *1 (-278)))) (-1711 (*1 *2 *3) (-12 (-5 *3 (-561 *1)) (-4 *1 (-971)) (-4 *1 (-278)) (-5 *2 (-1081 *1)))) (-1479 (*1 *1 *1) (-12 (-4 *1 (-971)) (-4 *1 (-278)))) (-1263 (*1 *2 *1) (-12 (-4 *1 (-962 (-522))) (-4 *1 (-278)) (-5 *2 (-108)))) (-2591 (*1 *2 *1) (-12 (-4 *1 (-962 (-522))) (-4 *1 (-278)) (-5 *2 (-108)))))
-(-13 (-784) (-962 (-561 $)) (-483 (-561 $) $) (-285 $) (-10 -8 (-15 -2545 ($ (-110) $)) (-15 -2545 ($ (-110) $ $)) (-15 -2545 ($ (-110) $ $ $)) (-15 -2545 ($ (-110) $ $ $ $)) (-15 -2545 ($ (-110) (-588 $))) (-15 -3305 ($ $ (-270 $))) (-15 -3305 ($ $ (-588 (-270 $)))) (-15 -3305 ($ $ (-588 (-561 $)) (-588 $))) (-15 -2308 ($ $)) (-15 -2308 ($ (-588 $))) (-15 -1953 ($ $)) (-15 -1953 ($ (-588 $))) (-15 -3043 ($ $)) (-15 -3043 ($ $ $)) (-15 -4155 ((-708) $)) (-15 -3993 ((-3 (-561 $) "failed") $)) (-15 -1267 ((-588 (-561 $)) $)) (-15 -1886 ((-588 (-561 $)) $)) (-15 -4161 ((-588 (-110)) $)) (-15 -2626 ((-110) (-110))) (-15 -3614 ((-108) (-110))) (-15 -2249 ((-108) $ (-110))) (-15 -2249 ((-108) $ (-1085))) (-15 -2909 ($ (-110) $)) (-15 -2909 ($ (-110) (-588 $))) (-15 -1391 ($ (-1 $ $) (-561 $))) (-15 -1648 ((-108) $ $)) (-15 -1648 ((-108) $ (-1085))) (-15 -2289 ($ $ (-588 (-1085)) (-588 (-1 $ $)))) (-15 -2289 ($ $ (-588 (-1085)) (-588 (-1 $ (-588 $))))) (-15 -2289 ($ $ (-1085) (-1 $ (-588 $)))) (-15 -2289 ($ $ (-1085) (-1 $ $))) (-15 -2289 ($ $ (-588 (-110)) (-588 (-1 $ $)))) (-15 -2289 ($ $ (-588 (-110)) (-588 (-1 $ (-588 $))))) (-15 -2289 ($ $ (-110) (-1 $ (-588 $)))) (-15 -2289 ($ $ (-110) (-1 $ $))) (IF (|has| $ (-971)) (PROGN (-15 -1711 ((-1081 $) (-561 $))) (-15 -1479 ($ $))) |%noBranch|) (IF (|has| $ (-962 (-522))) (PROGN (-15 -1263 ((-108) $)) (-15 -2591 ((-108) $))) |%noBranch|)))
+((-2683 (*1 *1 *2 *1) (-12 (-4 *1 (-278)) (-5 *2 (-110)))) (-2683 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-278)) (-5 *2 (-110)))) (-2683 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-278)) (-5 *2 (-110)))) (-2683 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-278)) (-5 *2 (-110)))) (-2683 (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-588 *1)) (-4 *1 (-278)))) (-1847 (*1 *1 *1 *2) (-12 (-5 *2 (-270 *1)) (-4 *1 (-278)))) (-1847 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-270 *1))) (-4 *1 (-278)))) (-1847 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-561 *1))) (-5 *3 (-588 *1)) (-4 *1 (-278)))) (-3811 (*1 *1 *1) (-4 *1 (-278))) (-3811 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-278)))) (-2930 (*1 *1 *1) (-4 *1 (-278))) (-2930 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-278)))) (-3406 (*1 *1 *1) (-4 *1 (-278))) (-3406 (*1 *1 *1 *1) (-4 *1 (-278))) (-4179 (*1 *2 *1) (-12 (-4 *1 (-278)) (-5 *2 (-708)))) (-3562 (*1 *2 *1) (|partial| -12 (-5 *2 (-561 *1)) (-4 *1 (-278)))) (-1249 (*1 *2 *1) (-12 (-5 *2 (-588 (-561 *1))) (-4 *1 (-278)))) (-1974 (*1 *2 *1) (-12 (-5 *2 (-588 (-561 *1))) (-4 *1 (-278)))) (-2896 (*1 *2 *1) (-12 (-4 *1 (-278)) (-5 *2 (-588 (-110))))) (-1771 (*1 *2 *2) (-12 (-4 *1 (-278)) (-5 *2 (-110)))) (-4082 (*1 *2 *3) (-12 (-4 *1 (-278)) (-5 *3 (-110)) (-5 *2 (-108)))) (-2935 (*1 *2 *1 *3) (-12 (-4 *1 (-278)) (-5 *3 (-110)) (-5 *2 (-108)))) (-2935 (*1 *2 *1 *3) (-12 (-4 *1 (-278)) (-5 *3 (-1085)) (-5 *2 (-108)))) (-3043 (*1 *1 *2 *1) (-12 (-4 *1 (-278)) (-5 *2 (-110)))) (-3043 (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-588 *1)) (-4 *1 (-278)))) (-3810 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-561 *1)) (-4 *1 (-278)))) (-2368 (*1 *2 *1 *1) (-12 (-4 *1 (-278)) (-5 *2 (-108)))) (-2368 (*1 *2 *1 *3) (-12 (-4 *1 (-278)) (-5 *3 (-1085)) (-5 *2 (-108)))) (-2330 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-588 (-1 *1 *1))) (-4 *1 (-278)))) (-2330 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-588 (-1 *1 (-588 *1)))) (-4 *1 (-278)))) (-2330 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1 *1 (-588 *1))) (-4 *1 (-278)))) (-2330 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1 *1 *1)) (-4 *1 (-278)))) (-2330 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-110))) (-5 *3 (-588 (-1 *1 *1))) (-4 *1 (-278)))) (-2330 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-110))) (-5 *3 (-588 (-1 *1 (-588 *1)))) (-4 *1 (-278)))) (-2330 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *1 (-588 *1))) (-4 *1 (-278)))) (-2330 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1 *1 *1)) (-4 *1 (-278)))) (-4185 (*1 *2 *3) (-12 (-5 *3 (-561 *1)) (-4 *1 (-971)) (-4 *1 (-278)) (-5 *2 (-1081 *1)))) (-1579 (*1 *1 *1) (-12 (-4 *1 (-971)) (-4 *1 (-278)))) (-2626 (*1 *2 *1) (-12 (-4 *1 (-962 (-522))) (-4 *1 (-278)) (-5 *2 (-108)))) (-3077 (*1 *2 *1) (-12 (-4 *1 (-962 (-522))) (-4 *1 (-278)) (-5 *2 (-108)))))
+(-13 (-784) (-962 (-561 $)) (-483 (-561 $) $) (-285 $) (-10 -8 (-15 -2683 ($ (-110) $)) (-15 -2683 ($ (-110) $ $)) (-15 -2683 ($ (-110) $ $ $)) (-15 -2683 ($ (-110) $ $ $ $)) (-15 -2683 ($ (-110) (-588 $))) (-15 -1847 ($ $ (-270 $))) (-15 -1847 ($ $ (-588 (-270 $)))) (-15 -1847 ($ $ (-588 (-561 $)) (-588 $))) (-15 -3811 ($ $)) (-15 -3811 ($ (-588 $))) (-15 -2930 ($ $)) (-15 -2930 ($ (-588 $))) (-15 -3406 ($ $)) (-15 -3406 ($ $ $)) (-15 -4179 ((-708) $)) (-15 -3562 ((-3 (-561 $) "failed") $)) (-15 -1249 ((-588 (-561 $)) $)) (-15 -1974 ((-588 (-561 $)) $)) (-15 -2896 ((-588 (-110)) $)) (-15 -1771 ((-110) (-110))) (-15 -4082 ((-108) (-110))) (-15 -2935 ((-108) $ (-110))) (-15 -2935 ((-108) $ (-1085))) (-15 -3043 ($ (-110) $)) (-15 -3043 ($ (-110) (-588 $))) (-15 -3810 ($ (-1 $ $) (-561 $))) (-15 -2368 ((-108) $ $)) (-15 -2368 ((-108) $ (-1085))) (-15 -2330 ($ $ (-588 (-1085)) (-588 (-1 $ $)))) (-15 -2330 ($ $ (-588 (-1085)) (-588 (-1 $ (-588 $))))) (-15 -2330 ($ $ (-1085) (-1 $ (-588 $)))) (-15 -2330 ($ $ (-1085) (-1 $ $))) (-15 -2330 ($ $ (-588 (-110)) (-588 (-1 $ $)))) (-15 -2330 ($ $ (-588 (-110)) (-588 (-1 $ (-588 $))))) (-15 -2330 ($ $ (-110) (-1 $ (-588 $)))) (-15 -2330 ($ $ (-110) (-1 $ $))) (IF (|has| $ (-971)) (PROGN (-15 -4185 ((-1081 $) (-561 $))) (-15 -1579 ($ $))) |%noBranch|) (IF (|has| $ (-962 (-522))) (PROGN (-15 -2626 ((-108) $)) (-15 -3077 ((-108) $))) |%noBranch|)))
(((-97) . T) ((-562 (-792)) . T) ((-285 $) . T) ((-483 (-561 $) $) . T) ((-483 $ $) . T) ((-784) . T) ((-962 (-561 $)) . T) ((-1014) . T))
-((-2846 (((-588 |#1|) (-588 |#1|)) 10)))
-(((-279 |#1|) (-10 -7 (-15 -2846 ((-588 |#1|) (-588 |#1|)))) (-782)) (T -279))
-((-2846 (*1 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-782)) (-5 *1 (-279 *3)))))
-(-10 -7 (-15 -2846 ((-588 |#1|) (-588 |#1|))))
-((-1391 (((-628 |#2|) (-1 |#2| |#1|) (-628 |#1|)) 15)))
-(((-280 |#1| |#2|) (-10 -7 (-15 -1391 ((-628 |#2|) (-1 |#2| |#1|) (-628 |#1|)))) (-971) (-971)) (T -280))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-628 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-5 *2 (-628 *6)) (-5 *1 (-280 *5 *6)))))
-(-10 -7 (-15 -1391 ((-628 |#2|) (-1 |#2| |#1|) (-628 |#1|))))
-((-3422 (((-1166 (-291 (-354))) (-1166 (-291 (-202)))) 105)) (-1259 (((-1009 (-777 (-202))) (-1009 (-777 (-354)))) 39)) (-3205 (((-588 (-1068)) (-1066 (-202))) 87)) (-1836 (((-291 (-354)) (-881 (-202))) 49)) (-4067 (((-202) (-881 (-202))) 45)) (-2107 (((-1068) (-354)) 167)) (-1357 (((-777 (-202)) (-777 (-354))) 33)) (-3514 (((-2 (|:| |additions| (-522)) (|:| |multiplications| (-522)) (|:| |exponentiations| (-522)) (|:| |functionCalls| (-522))) (-1166 (-291 (-202)))) 142)) (-1417 (((-960) (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960)))) 180) (((-960) (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))))) 178)) (-1222 (((-628 (-202)) (-588 (-202)) (-708)) 13)) (-2137 (((-1166 (-637)) (-588 (-202))) 94)) (-1644 (((-588 (-1068)) (-588 (-202))) 74)) (-4076 (((-3 (-291 (-202)) "failed") (-291 (-202))) 120)) (-2140 (((-108) (-202) (-1009 (-777 (-202)))) 109)) (-1495 (((-960) (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))) 198)) (-2988 (((-202) (-1009 (-777 (-202)))) 107)) (-2740 (((-202) (-1009 (-777 (-202)))) 108)) (-2281 (((-202) (-382 (-522))) 26)) (-3611 (((-1068) (-354)) 72)) (-3580 (((-202) (-354)) 17)) (-2041 (((-354) (-1166 (-291 (-202)))) 153)) (-1975 (((-291 (-202)) (-291 (-354))) 23)) (-4195 (((-382 (-522)) (-291 (-202))) 52)) (-4085 (((-291 (-382 (-522))) (-291 (-202))) 68)) (-2619 (((-291 (-354)) (-291 (-202))) 98)) (-1462 (((-202) (-291 (-202))) 53)) (-3694 (((-588 (-202)) (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) 63)) (-4186 (((-1009 (-777 (-202))) (-1009 (-777 (-202)))) 60)) (-2461 (((-1068) (-202)) 71)) (-2533 (((-637) (-202)) 90)) (-3046 (((-382 (-522)) (-202)) 54)) (-2911 (((-291 (-354)) (-202)) 48)) (-1431 (((-588 (-1009 (-777 (-202)))) (-588 (-1009 (-777 (-354))))) 42)) (-4165 (((-960) (-588 (-960))) 163) (((-960) (-960) (-960)) 160)) (-3819 (((-960) (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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"))))) 194)))
-(((-281) (-10 -7 (-15 -3580 ((-202) (-354))) (-15 -1975 ((-291 (-202)) (-291 (-354)))) (-15 -1357 ((-777 (-202)) (-777 (-354)))) (-15 -1259 ((-1009 (-777 (-202))) (-1009 (-777 (-354))))) (-15 -1431 ((-588 (-1009 (-777 (-202)))) (-588 (-1009 (-777 (-354)))))) (-15 -3046 ((-382 (-522)) (-202))) (-15 -4195 ((-382 (-522)) (-291 (-202)))) (-15 -1462 ((-202) (-291 (-202)))) (-15 -4076 ((-3 (-291 (-202)) "failed") (-291 (-202)))) (-15 -2041 ((-354) (-1166 (-291 (-202))))) (-15 -3514 ((-2 (|:| |additions| (-522)) (|:| |multiplications| (-522)) (|:| |exponentiations| (-522)) (|:| |functionCalls| (-522))) (-1166 (-291 (-202))))) (-15 -4085 ((-291 (-382 (-522))) (-291 (-202)))) (-15 -4186 ((-1009 (-777 (-202))) (-1009 (-777 (-202))))) (-15 -3694 ((-588 (-202)) (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))) (-15 -2533 ((-637) (-202))) (-15 -2137 ((-1166 (-637)) (-588 (-202)))) (-15 -2619 ((-291 (-354)) (-291 (-202)))) (-15 -3422 ((-1166 (-291 (-354))) (-1166 (-291 (-202))))) (-15 -2140 ((-108) (-202) (-1009 (-777 (-202))))) (-15 -2461 ((-1068) (-202))) (-15 -3611 ((-1068) (-354))) (-15 -1644 ((-588 (-1068)) (-588 (-202)))) (-15 -3205 ((-588 (-1068)) (-1066 (-202)))) (-15 -2988 ((-202) (-1009 (-777 (-202))))) (-15 -2740 ((-202) (-1009 (-777 (-202))))) (-15 -4165 ((-960) (-960) (-960))) (-15 -4165 ((-960) (-588 (-960)))) (-15 -2107 ((-1068) (-354))) (-15 -1417 ((-960) (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))))) (-15 -1417 ((-960) (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))))) (-15 -3819 ((-960) (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 -1495 ((-960) (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))))) (-15 -1836 ((-291 (-354)) (-881 (-202)))) (-15 -4067 ((-202) (-881 (-202)))) (-15 -2911 ((-291 (-354)) (-202))) (-15 -2281 ((-202) (-382 (-522)))) (-15 -1222 ((-628 (-202)) (-588 (-202)) (-708))))) (T -281))
-((-1222 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-202))) (-5 *4 (-708)) (-5 *2 (-628 (-202))) (-5 *1 (-281)))) (-2281 (*1 *2 *3) (-12 (-5 *3 (-382 (-522))) (-5 *2 (-202)) (-5 *1 (-281)))) (-2911 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-291 (-354))) (-5 *1 (-281)))) (-4067 (*1 *2 *3) (-12 (-5 *3 (-881 (-202))) (-5 *2 (-202)) (-5 *1 (-281)))) (-1836 (*1 *2 *3) (-12 (-5 *3 (-881 (-202))) (-5 *2 (-291 (-354))) (-5 *1 (-281)))) (-1495 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))) (-5 *2 (-960)) (-5 *1 (-281)))) (-3819 (*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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 (-960)) (-5 *1 (-281)))) (-1417 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960)))) (-5 *2 (-960)) (-5 *1 (-281)))) (-1417 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *2 (-960)) (-5 *1 (-281)))) (-2107 (*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1068)) (-5 *1 (-281)))) (-4165 (*1 *2 *3) (-12 (-5 *3 (-588 (-960))) (-5 *2 (-960)) (-5 *1 (-281)))) (-4165 (*1 *2 *2 *2) (-12 (-5 *2 (-960)) (-5 *1 (-281)))) (-2740 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-281)))) (-2988 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-281)))) (-3205 (*1 *2 *3) (-12 (-5 *3 (-1066 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-281)))) (-1644 (*1 *2 *3) (-12 (-5 *3 (-588 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-281)))) (-3611 (*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1068)) (-5 *1 (-281)))) (-2461 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1068)) (-5 *1 (-281)))) (-2140 (*1 *2 *3 *4) (-12 (-5 *4 (-1009 (-777 (-202)))) (-5 *3 (-202)) (-5 *2 (-108)) (-5 *1 (-281)))) (-3422 (*1 *2 *3) (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *2 (-1166 (-291 (-354)))) (-5 *1 (-281)))) (-2619 (*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-291 (-354))) (-5 *1 (-281)))) (-2137 (*1 *2 *3) (-12 (-5 *3 (-588 (-202))) (-5 *2 (-1166 (-637))) (-5 *1 (-281)))) (-2533 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-637)) (-5 *1 (-281)))) (-3694 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-5 *2 (-588 (-202))) (-5 *1 (-281)))) (-4186 (*1 *2 *2) (-12 (-5 *2 (-1009 (-777 (-202)))) (-5 *1 (-281)))) (-4085 (*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-291 (-382 (-522)))) (-5 *1 (-281)))) (-3514 (*1 *2 *3) (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *2 (-2 (|:| |additions| (-522)) (|:| |multiplications| (-522)) (|:| |exponentiations| (-522)) (|:| |functionCalls| (-522)))) (-5 *1 (-281)))) (-2041 (*1 *2 *3) (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *2 (-354)) (-5 *1 (-281)))) (-4076 (*1 *2 *2) (|partial| -12 (-5 *2 (-291 (-202))) (-5 *1 (-281)))) (-1462 (*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-202)) (-5 *1 (-281)))) (-4195 (*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-382 (-522))) (-5 *1 (-281)))) (-3046 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-382 (-522))) (-5 *1 (-281)))) (-1431 (*1 *2 *3) (-12 (-5 *3 (-588 (-1009 (-777 (-354))))) (-5 *2 (-588 (-1009 (-777 (-202))))) (-5 *1 (-281)))) (-1259 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-354)))) (-5 *2 (-1009 (-777 (-202)))) (-5 *1 (-281)))) (-1357 (*1 *2 *3) (-12 (-5 *3 (-777 (-354))) (-5 *2 (-777 (-202))) (-5 *1 (-281)))) (-1975 (*1 *2 *3) (-12 (-5 *3 (-291 (-354))) (-5 *2 (-291 (-202))) (-5 *1 (-281)))) (-3580 (*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-202)) (-5 *1 (-281)))))
-(-10 -7 (-15 -3580 ((-202) (-354))) (-15 -1975 ((-291 (-202)) (-291 (-354)))) (-15 -1357 ((-777 (-202)) (-777 (-354)))) (-15 -1259 ((-1009 (-777 (-202))) (-1009 (-777 (-354))))) (-15 -1431 ((-588 (-1009 (-777 (-202)))) (-588 (-1009 (-777 (-354)))))) (-15 -3046 ((-382 (-522)) (-202))) (-15 -4195 ((-382 (-522)) (-291 (-202)))) (-15 -1462 ((-202) (-291 (-202)))) (-15 -4076 ((-3 (-291 (-202)) "failed") (-291 (-202)))) (-15 -2041 ((-354) (-1166 (-291 (-202))))) (-15 -3514 ((-2 (|:| |additions| (-522)) (|:| |multiplications| (-522)) (|:| |exponentiations| (-522)) (|:| |functionCalls| (-522))) (-1166 (-291 (-202))))) (-15 -4085 ((-291 (-382 (-522))) (-291 (-202)))) (-15 -4186 ((-1009 (-777 (-202))) (-1009 (-777 (-202))))) (-15 -3694 ((-588 (-202)) (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))) (-15 -2533 ((-637) (-202))) (-15 -2137 ((-1166 (-637)) (-588 (-202)))) (-15 -2619 ((-291 (-354)) (-291 (-202)))) (-15 -3422 ((-1166 (-291 (-354))) (-1166 (-291 (-202))))) (-15 -2140 ((-108) (-202) (-1009 (-777 (-202))))) (-15 -2461 ((-1068) (-202))) (-15 -3611 ((-1068) (-354))) (-15 -1644 ((-588 (-1068)) (-588 (-202)))) (-15 -3205 ((-588 (-1068)) (-1066 (-202)))) (-15 -2988 ((-202) (-1009 (-777 (-202))))) (-15 -2740 ((-202) (-1009 (-777 (-202))))) (-15 -4165 ((-960) (-960) (-960))) (-15 -4165 ((-960) (-588 (-960)))) (-15 -2107 ((-1068) (-354))) (-15 -1417 ((-960) (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))))) (-15 -1417 ((-960) (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))))) (-15 -3819 ((-960) (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 -1495 ((-960) (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))))) (-15 -1836 ((-291 (-354)) (-881 (-202)))) (-15 -4067 ((-202) (-881 (-202)))) (-15 -2911 ((-291 (-354)) (-202))) (-15 -2281 ((-202) (-382 (-522)))) (-15 -1222 ((-628 (-202)) (-588 (-202)) (-708))))
-((-1687 (((-108) $ $) 11)) (-2277 (($ $ $) 15)) (-2254 (($ $ $) 14)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 44)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 53)) (-2259 (($ $ $) 21) (($ (-588 $)) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 32) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 37)) (-2232 (((-3 $ "failed") $ $) 17)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 46)))
-(((-282 |#1|) (-10 -8 (-15 -3317 ((-3 (-588 |#1|) "failed") (-588 |#1|) |#1|)) (-15 -3885 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -3885 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -1383 |#1|)) |#1| |#1|)) (-15 -2277 (|#1| |#1| |#1|)) (-15 -2254 (|#1| |#1| |#1|)) (-15 -1687 ((-108) |#1| |#1|)) (-15 -2553 ((-3 (-588 |#1|) "failed") (-588 |#1|) |#1|)) (-15 -3297 ((-2 (|:| -2977 (-588 |#1|)) (|:| -1383 |#1|)) (-588 |#1|))) (-15 -2259 (|#1| (-588 |#1|))) (-15 -2259 (|#1| |#1| |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#1|))) (-283)) (T -282))
-NIL
-(-10 -8 (-15 -3317 ((-3 (-588 |#1|) "failed") (-588 |#1|) |#1|)) (-15 -3885 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -3885 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -1383 |#1|)) |#1| |#1|)) (-15 -2277 (|#1| |#1| |#1|)) (-15 -2254 (|#1| |#1| |#1|)) (-15 -1687 ((-108) |#1| |#1|)) (-15 -2553 ((-3 (-588 |#1|) "failed") (-588 |#1|) |#1|)) (-15 -3297 ((-2 (|:| -2977 (-588 |#1|)) (|:| -1383 |#1|)) (-588 |#1|))) (-15 -2259 (|#1| (-588 |#1|))) (-15 -2259 (|#1| |#1| |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-1687 (((-108) $ $) 59)) (-3175 (($) 17 T CONST)) (-2277 (($ $ $) 55)) (-2682 (((-3 $ "failed") $) 34)) (-2254 (($ $ $) 56)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-2782 (((-108) $) 31)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-3730 (((-708) $) 58)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-4119 (((-588 |#1|) (-588 |#1|)) 10)))
+(((-279 |#1|) (-10 -7 (-15 -4119 ((-588 |#1|) (-588 |#1|)))) (-782)) (T -279))
+((-4119 (*1 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-782)) (-5 *1 (-279 *3)))))
+(-10 -7 (-15 -4119 ((-588 |#1|) (-588 |#1|))))
+((-3810 (((-628 |#2|) (-1 |#2| |#1|) (-628 |#1|)) 15)))
+(((-280 |#1| |#2|) (-10 -7 (-15 -3810 ((-628 |#2|) (-1 |#2| |#1|) (-628 |#1|)))) (-971) (-971)) (T -280))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-628 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-5 *2 (-628 *6)) (-5 *1 (-280 *5 *6)))))
+(-10 -7 (-15 -3810 ((-628 |#2|) (-1 |#2| |#1|) (-628 |#1|))))
+((-4010 (((-1166 (-291 (-354))) (-1166 (-291 (-202)))) 105)) (-2577 (((-1009 (-777 (-202))) (-1009 (-777 (-354)))) 39)) (-2484 (((-588 (-1068)) (-1066 (-202))) 87)) (-2329 (((-291 (-354)) (-881 (-202))) 49)) (-3154 (((-202) (-881 (-202))) 45)) (-1337 (((-1068) (-354)) 167)) (-3475 (((-777 (-202)) (-777 (-354))) 33)) (-2516 (((-2 (|:| |additions| (-522)) (|:| |multiplications| (-522)) (|:| |exponentiations| (-522)) (|:| |functionCalls| (-522))) (-1166 (-291 (-202)))) 142)) (-2203 (((-960) (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960)))) 180) (((-960) (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))))) 178)) (-2149 (((-628 (-202)) (-588 (-202)) (-708)) 13)) (-2973 (((-1166 (-637)) (-588 (-202))) 94)) (-2310 (((-588 (-1068)) (-588 (-202))) 74)) (-4118 (((-3 (-291 (-202)) "failed") (-291 (-202))) 120)) (-3006 (((-108) (-202) (-1009 (-777 (-202)))) 109)) (-1728 (((-960) (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))) 198)) (-4046 (((-202) (-1009 (-777 (-202)))) 107)) (-4009 (((-202) (-1009 (-777 (-202)))) 108)) (-2297 (((-202) (-382 (-522))) 26)) (-4054 (((-1068) (-354)) 72)) (-1937 (((-202) (-354)) 17)) (-2530 (((-354) (-1166 (-291 (-202)))) 153)) (-3118 (((-291 (-202)) (-291 (-354))) 23)) (-1940 (((-382 (-522)) (-291 (-202))) 52)) (-3274 (((-291 (-382 (-522))) (-291 (-202))) 68)) (-1690 (((-291 (-354)) (-291 (-202))) 98)) (-2676 (((-202) (-291 (-202))) 53)) (-3678 (((-588 (-202)) (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) 63)) (-1859 (((-1009 (-777 (-202))) (-1009 (-777 (-202)))) 60)) (-2743 (((-1068) (-202)) 71)) (-2266 (((-637) (-202)) 90)) (-3433 (((-382 (-522)) (-202)) 54)) (-1634 (((-291 (-354)) (-202)) 48)) (-3873 (((-588 (-1009 (-777 (-202)))) (-588 (-1009 (-777 (-354))))) 42)) (-4170 (((-960) (-588 (-960))) 163) (((-960) (-960) (-960)) 160)) (-2588 (((-960) (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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"))))) 194)))
+(((-281) (-10 -7 (-15 -1937 ((-202) (-354))) (-15 -3118 ((-291 (-202)) (-291 (-354)))) (-15 -3475 ((-777 (-202)) (-777 (-354)))) (-15 -2577 ((-1009 (-777 (-202))) (-1009 (-777 (-354))))) (-15 -3873 ((-588 (-1009 (-777 (-202)))) (-588 (-1009 (-777 (-354)))))) (-15 -3433 ((-382 (-522)) (-202))) (-15 -1940 ((-382 (-522)) (-291 (-202)))) (-15 -2676 ((-202) (-291 (-202)))) (-15 -4118 ((-3 (-291 (-202)) "failed") (-291 (-202)))) (-15 -2530 ((-354) (-1166 (-291 (-202))))) (-15 -2516 ((-2 (|:| |additions| (-522)) (|:| |multiplications| (-522)) (|:| |exponentiations| (-522)) (|:| |functionCalls| (-522))) (-1166 (-291 (-202))))) (-15 -3274 ((-291 (-382 (-522))) (-291 (-202)))) (-15 -1859 ((-1009 (-777 (-202))) (-1009 (-777 (-202))))) (-15 -3678 ((-588 (-202)) (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))) (-15 -2266 ((-637) (-202))) (-15 -2973 ((-1166 (-637)) (-588 (-202)))) (-15 -1690 ((-291 (-354)) (-291 (-202)))) (-15 -4010 ((-1166 (-291 (-354))) (-1166 (-291 (-202))))) (-15 -3006 ((-108) (-202) (-1009 (-777 (-202))))) (-15 -2743 ((-1068) (-202))) (-15 -4054 ((-1068) (-354))) (-15 -2310 ((-588 (-1068)) (-588 (-202)))) (-15 -2484 ((-588 (-1068)) (-1066 (-202)))) (-15 -4046 ((-202) (-1009 (-777 (-202))))) (-15 -4009 ((-202) (-1009 (-777 (-202))))) (-15 -4170 ((-960) (-960) (-960))) (-15 -4170 ((-960) (-588 (-960)))) (-15 -1337 ((-1068) (-354))) (-15 -2203 ((-960) (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))))) (-15 -2203 ((-960) (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))))) (-15 -2588 ((-960) (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 -1728 ((-960) (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))))) (-15 -2329 ((-291 (-354)) (-881 (-202)))) (-15 -3154 ((-202) (-881 (-202)))) (-15 -1634 ((-291 (-354)) (-202))) (-15 -2297 ((-202) (-382 (-522)))) (-15 -2149 ((-628 (-202)) (-588 (-202)) (-708))))) (T -281))
+((-2149 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-202))) (-5 *4 (-708)) (-5 *2 (-628 (-202))) (-5 *1 (-281)))) (-2297 (*1 *2 *3) (-12 (-5 *3 (-382 (-522))) (-5 *2 (-202)) (-5 *1 (-281)))) (-1634 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-291 (-354))) (-5 *1 (-281)))) (-3154 (*1 *2 *3) (-12 (-5 *3 (-881 (-202))) (-5 *2 (-202)) (-5 *1 (-281)))) (-2329 (*1 *2 *3) (-12 (-5 *3 (-881 (-202))) (-5 *2 (-291 (-354))) (-5 *1 (-281)))) (-1728 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))) (-5 *2 (-960)) (-5 *1 (-281)))) (-2588 (*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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 (-960)) (-5 *1 (-281)))) (-2203 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960)))) (-5 *2 (-960)) (-5 *1 (-281)))) (-2203 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *2 (-960)) (-5 *1 (-281)))) (-1337 (*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1068)) (-5 *1 (-281)))) (-4170 (*1 *2 *3) (-12 (-5 *3 (-588 (-960))) (-5 *2 (-960)) (-5 *1 (-281)))) (-4170 (*1 *2 *2 *2) (-12 (-5 *2 (-960)) (-5 *1 (-281)))) (-4009 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-281)))) (-4046 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-281)))) (-2484 (*1 *2 *3) (-12 (-5 *3 (-1066 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-281)))) (-2310 (*1 *2 *3) (-12 (-5 *3 (-588 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-281)))) (-4054 (*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1068)) (-5 *1 (-281)))) (-2743 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1068)) (-5 *1 (-281)))) (-3006 (*1 *2 *3 *4) (-12 (-5 *4 (-1009 (-777 (-202)))) (-5 *3 (-202)) (-5 *2 (-108)) (-5 *1 (-281)))) (-4010 (*1 *2 *3) (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *2 (-1166 (-291 (-354)))) (-5 *1 (-281)))) (-1690 (*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-291 (-354))) (-5 *1 (-281)))) (-2973 (*1 *2 *3) (-12 (-5 *3 (-588 (-202))) (-5 *2 (-1166 (-637))) (-5 *1 (-281)))) (-2266 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-637)) (-5 *1 (-281)))) (-3678 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-5 *2 (-588 (-202))) (-5 *1 (-281)))) (-1859 (*1 *2 *2) (-12 (-5 *2 (-1009 (-777 (-202)))) (-5 *1 (-281)))) (-3274 (*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-291 (-382 (-522)))) (-5 *1 (-281)))) (-2516 (*1 *2 *3) (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *2 (-2 (|:| |additions| (-522)) (|:| |multiplications| (-522)) (|:| |exponentiations| (-522)) (|:| |functionCalls| (-522)))) (-5 *1 (-281)))) (-2530 (*1 *2 *3) (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *2 (-354)) (-5 *1 (-281)))) (-4118 (*1 *2 *2) (|partial| -12 (-5 *2 (-291 (-202))) (-5 *1 (-281)))) (-2676 (*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-202)) (-5 *1 (-281)))) (-1940 (*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-382 (-522))) (-5 *1 (-281)))) (-3433 (*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-382 (-522))) (-5 *1 (-281)))) (-3873 (*1 *2 *3) (-12 (-5 *3 (-588 (-1009 (-777 (-354))))) (-5 *2 (-588 (-1009 (-777 (-202))))) (-5 *1 (-281)))) (-2577 (*1 *2 *3) (-12 (-5 *3 (-1009 (-777 (-354)))) (-5 *2 (-1009 (-777 (-202)))) (-5 *1 (-281)))) (-3475 (*1 *2 *3) (-12 (-5 *3 (-777 (-354))) (-5 *2 (-777 (-202))) (-5 *1 (-281)))) (-3118 (*1 *2 *3) (-12 (-5 *3 (-291 (-354))) (-5 *2 (-291 (-202))) (-5 *1 (-281)))) (-1937 (*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-202)) (-5 *1 (-281)))))
+(-10 -7 (-15 -1937 ((-202) (-354))) (-15 -3118 ((-291 (-202)) (-291 (-354)))) (-15 -3475 ((-777 (-202)) (-777 (-354)))) (-15 -2577 ((-1009 (-777 (-202))) (-1009 (-777 (-354))))) (-15 -3873 ((-588 (-1009 (-777 (-202)))) (-588 (-1009 (-777 (-354)))))) (-15 -3433 ((-382 (-522)) (-202))) (-15 -1940 ((-382 (-522)) (-291 (-202)))) (-15 -2676 ((-202) (-291 (-202)))) (-15 -4118 ((-3 (-291 (-202)) "failed") (-291 (-202)))) (-15 -2530 ((-354) (-1166 (-291 (-202))))) (-15 -2516 ((-2 (|:| |additions| (-522)) (|:| |multiplications| (-522)) (|:| |exponentiations| (-522)) (|:| |functionCalls| (-522))) (-1166 (-291 (-202))))) (-15 -3274 ((-291 (-382 (-522))) (-291 (-202)))) (-15 -1859 ((-1009 (-777 (-202))) (-1009 (-777 (-202))))) (-15 -3678 ((-588 (-202)) (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))) (-15 -2266 ((-637) (-202))) (-15 -2973 ((-1166 (-637)) (-588 (-202)))) (-15 -1690 ((-291 (-354)) (-291 (-202)))) (-15 -4010 ((-1166 (-291 (-354))) (-1166 (-291 (-202))))) (-15 -3006 ((-108) (-202) (-1009 (-777 (-202))))) (-15 -2743 ((-1068) (-202))) (-15 -4054 ((-1068) (-354))) (-15 -2310 ((-588 (-1068)) (-588 (-202)))) (-15 -2484 ((-588 (-1068)) (-1066 (-202)))) (-15 -4046 ((-202) (-1009 (-777 (-202))))) (-15 -4009 ((-202) (-1009 (-777 (-202))))) (-15 -4170 ((-960) (-960) (-960))) (-15 -4170 ((-960) (-588 (-960)))) (-15 -1337 ((-1068) (-354))) (-15 -2203 ((-960) (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))))) (-15 -2203 ((-960) (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))))) (-15 -2588 ((-960) (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 -1728 ((-960) (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))))) (-15 -2329 ((-291 (-354)) (-881 (-202)))) (-15 -3154 ((-202) (-881 (-202)))) (-15 -1634 ((-291 (-354)) (-202))) (-15 -2297 ((-202) (-382 (-522)))) (-15 -2149 ((-628 (-202)) (-588 (-202)) (-708))))
+((-2805 (((-108) $ $) 11)) (-2333 (($ $ $) 15)) (-2303 (($ $ $) 14)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 44)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 53)) (-2308 (($ $ $) 21) (($ (-588 $)) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 32) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 37)) (-2276 (((-3 $ "failed") $ $) 17)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 46)))
+(((-282 |#1|) (-10 -8 (-15 -4180 ((-3 (-588 |#1|) "failed") (-588 |#1|) |#1|)) (-15 -1915 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -1915 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -1368 |#1|)) |#1| |#1|)) (-15 -2333 (|#1| |#1| |#1|)) (-15 -2303 (|#1| |#1| |#1|)) (-15 -2805 ((-108) |#1| |#1|)) (-15 -3716 ((-3 (-588 |#1|) "failed") (-588 |#1|) |#1|)) (-15 -2135 ((-2 (|:| -3112 (-588 |#1|)) (|:| -1368 |#1|)) (-588 |#1|))) (-15 -2308 (|#1| (-588 |#1|))) (-15 -2308 (|#1| |#1| |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#1|))) (-283)) (T -282))
+NIL
+(-10 -8 (-15 -4180 ((-3 (-588 |#1|) "failed") (-588 |#1|) |#1|)) (-15 -1915 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -1915 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -1368 |#1|)) |#1| |#1|)) (-15 -2333 (|#1| |#1| |#1|)) (-15 -2303 (|#1| |#1| |#1|)) (-15 -2805 ((-108) |#1| |#1|)) (-15 -3716 ((-3 (-588 |#1|) "failed") (-588 |#1|) |#1|)) (-15 -2135 ((-2 (|:| -3112 (-588 |#1|)) (|:| -1368 |#1|)) (-588 |#1|))) (-15 -2308 (|#1| (-588 |#1|))) (-15 -2308 (|#1| |#1| |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-2805 (((-108) $ $) 59)) (-3367 (($) 17 T CONST)) (-2333 (($ $ $) 55)) (-3920 (((-3 $ "failed") $) 34)) (-2303 (($ $ $) 56)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-2859 (((-108) $) 31)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-4031 (((-708) $) 58)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-283) (-1197)) (T -283))
-((-1687 (*1 *2 *1 *1) (-12 (-4 *1 (-283)) (-5 *2 (-108)))) (-3730 (*1 *2 *1) (-12 (-4 *1 (-283)) (-5 *2 (-708)))) (-2752 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-283)))) (-2254 (*1 *1 *1 *1) (-4 *1 (-283))) (-2277 (*1 *1 *1 *1) (-4 *1 (-283))) (-3885 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -1383 *1))) (-4 *1 (-283)))) (-3885 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-283)))) (-3317 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-588 *1)) (-4 *1 (-283)))))
-(-13 (-849) (-10 -8 (-15 -1687 ((-108) $ $)) (-15 -3730 ((-708) $)) (-15 -2752 ((-2 (|:| -1353 $) (|:| -3421 $)) $ $)) (-15 -2254 ($ $ $)) (-15 -2277 ($ $ $)) (-15 -3885 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $)) (-15 -3885 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -3317 ((-3 (-588 $) "failed") (-588 $) $))))
+((-2805 (*1 *2 *1 *1) (-12 (-4 *1 (-283)) (-5 *2 (-108)))) (-4031 (*1 *2 *1) (-12 (-4 *1 (-283)) (-5 *2 (-708)))) (-4164 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-283)))) (-2303 (*1 *1 *1 *1) (-4 *1 (-283))) (-2333 (*1 *1 *1 *1) (-4 *1 (-283))) (-1915 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -1368 *1))) (-4 *1 (-283)))) (-1915 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-283)))) (-4180 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-588 *1)) (-4 *1 (-283)))))
+(-13 (-849) (-10 -8 (-15 -2805 ((-108) $ $)) (-15 -4031 ((-708) $)) (-15 -4164 ((-2 (|:| -3450 $) (|:| -4002 $)) $ $)) (-15 -2303 ($ $ $)) (-15 -2333 ($ $ $)) (-15 -1915 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $)) (-15 -1915 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -4180 ((-3 (-588 $) "failed") (-588 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-157) . T) ((-266) . T) ((-426) . T) ((-514) . T) ((-590 $) . T) ((-655 $) . T) ((-664) . T) ((-849) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-2289 (($ $ (-588 |#2|) (-588 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-270 |#2|)) 11) (($ $ (-588 (-270 |#2|))) NIL)))
-(((-284 |#1| |#2|) (-10 -8 (-15 -2289 (|#1| |#1| (-588 (-270 |#2|)))) (-15 -2289 (|#1| |#1| (-270 |#2|))) (-15 -2289 (|#1| |#1| |#2| |#2|)) (-15 -2289 (|#1| |#1| (-588 |#2|) (-588 |#2|)))) (-285 |#2|) (-1014)) (T -284))
+((-2330 (($ $ (-588 |#2|) (-588 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-270 |#2|)) 11) (($ $ (-588 (-270 |#2|))) NIL)))
+(((-284 |#1| |#2|) (-10 -8 (-15 -2330 (|#1| |#1| (-588 (-270 |#2|)))) (-15 -2330 (|#1| |#1| (-270 |#2|))) (-15 -2330 (|#1| |#1| |#2| |#2|)) (-15 -2330 (|#1| |#1| (-588 |#2|) (-588 |#2|)))) (-285 |#2|) (-1014)) (T -284))
NIL
-(-10 -8 (-15 -2289 (|#1| |#1| (-588 (-270 |#2|)))) (-15 -2289 (|#1| |#1| (-270 |#2|))) (-15 -2289 (|#1| |#1| |#2| |#2|)) (-15 -2289 (|#1| |#1| (-588 |#2|) (-588 |#2|))))
-((-2289 (($ $ (-588 |#1|) (-588 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-270 |#1|)) 11) (($ $ (-588 (-270 |#1|))) 10)))
+(-10 -8 (-15 -2330 (|#1| |#1| (-588 (-270 |#2|)))) (-15 -2330 (|#1| |#1| (-270 |#2|))) (-15 -2330 (|#1| |#1| |#2| |#2|)) (-15 -2330 (|#1| |#1| (-588 |#2|) (-588 |#2|))))
+((-2330 (($ $ (-588 |#1|) (-588 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-270 |#1|)) 11) (($ $ (-588 (-270 |#1|))) 10)))
(((-285 |#1|) (-1197) (-1014)) (T -285))
-((-2289 (*1 *1 *1 *2) (-12 (-5 *2 (-270 *3)) (-4 *1 (-285 *3)) (-4 *3 (-1014)))) (-2289 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-270 *3))) (-4 *1 (-285 *3)) (-4 *3 (-1014)))))
-(-13 (-483 |t#1| |t#1|) (-10 -8 (-15 -2289 ($ $ (-270 |t#1|))) (-15 -2289 ($ $ (-588 (-270 |t#1|))))))
+((-2330 (*1 *1 *1 *2) (-12 (-5 *2 (-270 *3)) (-4 *1 (-285 *3)) (-4 *3 (-1014)))) (-2330 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-270 *3))) (-4 *1 (-285 *3)) (-4 *3 (-1014)))))
+(-13 (-483 |t#1| |t#1|) (-10 -8 (-15 -2330 ($ $ (-270 |t#1|))) (-15 -2330 ($ $ (-588 (-270 |t#1|))))))
(((-483 |#1| |#1|) . T))
-((-2289 ((|#1| (-1 |#1| (-522)) (-1087 (-382 (-522)))) 24)))
-(((-286 |#1|) (-10 -7 (-15 -2289 (|#1| (-1 |#1| (-522)) (-1087 (-382 (-522)))))) (-37 (-382 (-522)))) (T -286))
-((-2289 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-522))) (-5 *4 (-1087 (-382 (-522)))) (-5 *1 (-286 *2)) (-4 *2 (-37 (-382 (-522)))))))
-(-10 -7 (-15 -2289 (|#1| (-1 |#1| (-522)) (-1087 (-382 (-522))))))
-((-1416 (((-108) $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 7)) (-1531 (((-108) $ $) 9)))
+((-2330 ((|#1| (-1 |#1| (-522)) (-1087 (-382 (-522)))) 24)))
+(((-286 |#1|) (-10 -7 (-15 -2330 (|#1| (-1 |#1| (-522)) (-1087 (-382 (-522)))))) (-37 (-382 (-522)))) (T -286))
+((-2330 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-522))) (-5 *4 (-1087 (-382 (-522)))) (-5 *1 (-286 *2)) (-4 *2 (-37 (-382 (-522)))))))
+(-10 -7 (-15 -2330 (|#1| (-1 |#1| (-522)) (-1087 (-382 (-522))))))
+((-1419 (((-108) $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 7)) (-1562 (((-108) $ $) 9)))
(((-287) (-1014)) (T -287))
NIL
(-1014)
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 62)) (-2229 (((-1152 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-283)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-838)))) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-838)))) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-757)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-1152 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-522)))) (((-3 (-1151 |#2| |#3| |#4|) "failed") $) 24)) (-1484 (((-1152 |#1| |#2| |#3| |#4|) $) NIL) (((-1085) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-522)))) (((-522) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-522)))) (((-1151 |#2| |#3| |#4|) $) NIL)) (-2277 (($ $ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-1152 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1166 (-1152 |#1| |#2| |#3| |#4|)))) (-628 $) (-1166 $)) NIL) (((-628 (-1152 |#1| |#2| |#3| |#4|)) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-507)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-3687 (((-108) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-757)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-815 (-354))))) (-2782 (((-108) $) NIL)) (-2902 (($ $) NIL)) (-2805 (((-1152 |#1| |#2| |#3| |#4|) $) 21)) (-3004 (((-3 $ "failed") $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-1061)))) (-2556 (((-108) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-757)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2814 (($ $ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-784)))) (-2446 (($ $ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-784)))) (-1391 (($ (-1 (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|)) $) NIL)) (-4064 (((-3 (-777 |#2|) "failed") $) 76)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-1061)) CONST)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3933 (($ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-283)))) (-3686 (((-1152 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-507)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-838)))) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2289 (($ $ (-588 (-1152 |#1| |#2| |#3| |#4|)) (-588 (-1152 |#1| |#2| |#3| |#4|))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-285 (-1152 |#1| |#2| |#3| |#4|)))) (($ $ (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-285 (-1152 |#1| |#2| |#3| |#4|)))) (($ $ (-270 (-1152 |#1| |#2| |#3| |#4|))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-285 (-1152 |#1| |#2| |#3| |#4|)))) (($ $ (-588 (-270 (-1152 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-285 (-1152 |#1| |#2| |#3| |#4|)))) (($ $ (-588 (-1085)) (-588 (-1152 |#1| |#2| |#3| |#4|))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-483 (-1085) (-1152 |#1| |#2| |#3| |#4|)))) (($ $ (-1085) (-1152 |#1| |#2| |#3| |#4|)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-483 (-1085) (-1152 |#1| |#2| |#3| |#4|))))) (-3730 (((-708) $) NIL)) (-2545 (($ $ (-1152 |#1| |#2| |#3| |#4|)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-262 (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|))))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2157 (($ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-210))) (($ $ (-708)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-210))) (($ $ (-1085)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-1 (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|)) (-708)) NIL) (($ $ (-1 (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|))) NIL)) (-3533 (($ $) NIL)) (-2816 (((-1152 |#1| |#2| |#3| |#4|) $) 17)) (-1431 (((-821 (-522)) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-563 (-498)))) (((-354) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-947))) (((-202) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-947)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-1152 |#1| |#2| |#3| |#4|) (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-1152 |#1| |#2| |#3| |#4|)) 28) (($ (-1085)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-1085)))) (($ (-1151 |#2| |#3| |#4|)) 36)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| (-1152 |#1| |#2| |#3| |#4|) (-838))) (|has| (-1152 |#1| |#2| |#3| |#4|) (-133))))) (-2323 (((-708)) NIL)) (-3025 (((-1152 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-507)))) (-3958 (((-108) $ $) NIL)) (-2241 (($ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-757)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 41 T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-210))) (($ $ (-708)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-210))) (($ $ (-1085)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-1 (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|)) (-708)) NIL) (($ $ (-1 (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|))) NIL)) (-1574 (((-108) $ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-784)))) (-1558 (((-108) $ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-784)))) (-1549 (((-108) $ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-784)))) (-1620 (($ $ $) 33) (($ (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|)) 30)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-1152 |#1| |#2| |#3| |#4|) $) 29) (($ $ (-1152 |#1| |#2| |#3| |#4|)) NIL)))
-(((-288 |#1| |#2| |#3| |#4|) (-13 (-919 (-1152 |#1| |#2| |#3| |#4|)) (-962 (-1151 |#2| |#3| |#4|)) (-10 -8 (-15 -4064 ((-3 (-777 |#2|) "failed") $)) (-15 -2190 ($ (-1151 |#2| |#3| |#4|))))) (-13 (-784) (-962 (-522)) (-584 (-522)) (-426)) (-13 (-27) (-1106) (-405 |#1|)) (-1085) |#2|) (T -288))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1151 *4 *5 *6)) (-4 *4 (-13 (-27) (-1106) (-405 *3))) (-14 *5 (-1085)) (-14 *6 *4) (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426))) (-5 *1 (-288 *3 *4 *5 *6)))) (-4064 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426))) (-5 *2 (-777 *4)) (-5 *1 (-288 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1106) (-405 *3))) (-14 *5 (-1085)) (-14 *6 *4))))
-(-13 (-919 (-1152 |#1| |#2| |#3| |#4|)) (-962 (-1151 |#2| |#3| |#4|)) (-10 -8 (-15 -4064 ((-3 (-777 |#2|) "failed") $)) (-15 -2190 ($ (-1151 |#2| |#3| |#4|)))))
-((-1391 (((-291 |#2|) (-1 |#2| |#1|) (-291 |#1|)) 13)))
-(((-289 |#1| |#2|) (-10 -7 (-15 -1391 ((-291 |#2|) (-1 |#2| |#1|) (-291 |#1|)))) (-784) (-784)) (T -289))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-291 *5)) (-4 *5 (-784)) (-4 *6 (-784)) (-5 *2 (-291 *6)) (-5 *1 (-289 *5 *6)))))
-(-10 -7 (-15 -1391 ((-291 |#2|) (-1 |#2| |#1|) (-291 |#1|))))
-((-3058 (((-51) |#2| (-270 |#2|) (-708)) 33) (((-51) |#2| (-270 |#2|)) 24) (((-51) |#2| (-708)) 28) (((-51) |#2|) 25) (((-51) (-1085)) 21)) (-2773 (((-51) |#2| (-270 |#2|) (-382 (-522))) 51) (((-51) |#2| (-270 |#2|)) 48) (((-51) |#2| (-382 (-522))) 50) (((-51) |#2|) 49) (((-51) (-1085)) 47)) (-3079 (((-51) |#2| (-270 |#2|) (-382 (-522))) 46) (((-51) |#2| (-270 |#2|)) 43) (((-51) |#2| (-382 (-522))) 45) (((-51) |#2|) 44) (((-51) (-1085)) 42)) (-3068 (((-51) |#2| (-270 |#2|) (-522)) 39) (((-51) |#2| (-270 |#2|)) 35) (((-51) |#2| (-522)) 38) (((-51) |#2|) 36) (((-51) (-1085)) 34)))
-(((-290 |#1| |#2|) (-10 -7 (-15 -3058 ((-51) (-1085))) (-15 -3058 ((-51) |#2|)) (-15 -3058 ((-51) |#2| (-708))) (-15 -3058 ((-51) |#2| (-270 |#2|))) (-15 -3058 ((-51) |#2| (-270 |#2|) (-708))) (-15 -3068 ((-51) (-1085))) (-15 -3068 ((-51) |#2|)) (-15 -3068 ((-51) |#2| (-522))) (-15 -3068 ((-51) |#2| (-270 |#2|))) (-15 -3068 ((-51) |#2| (-270 |#2|) (-522))) (-15 -3079 ((-51) (-1085))) (-15 -3079 ((-51) |#2|)) (-15 -3079 ((-51) |#2| (-382 (-522)))) (-15 -3079 ((-51) |#2| (-270 |#2|))) (-15 -3079 ((-51) |#2| (-270 |#2|) (-382 (-522)))) (-15 -2773 ((-51) (-1085))) (-15 -2773 ((-51) |#2|)) (-15 -2773 ((-51) |#2| (-382 (-522)))) (-15 -2773 ((-51) |#2| (-270 |#2|))) (-15 -2773 ((-51) |#2| (-270 |#2|) (-382 (-522))))) (-13 (-426) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -290))
-((-2773 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-270 *3)) (-5 *5 (-382 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *6 *3)))) (-2773 (*1 *2 *3 *4) (-12 (-5 *4 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)))) (-2773 (*1 *2 *3 *4) (-12 (-5 *4 (-382 (-522))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-2773 (*1 *2 *3) (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))) (-2773 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *5)) (-4 *5 (-13 (-27) (-1106) (-405 *4))))) (-3079 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-270 *3)) (-5 *5 (-382 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *6 *3)))) (-3079 (*1 *2 *3 *4) (-12 (-5 *4 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)))) (-3079 (*1 *2 *3 *4) (-12 (-5 *4 (-382 (-522))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-3079 (*1 *2 *3) (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))) (-3079 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *5)) (-4 *5 (-13 (-27) (-1106) (-405 *4))))) (-3068 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-426) (-784) (-962 *5) (-584 *5))) (-5 *5 (-522)) (-5 *2 (-51)) (-5 *1 (-290 *6 *3)))) (-3068 (*1 *2 *3 *4) (-12 (-5 *4 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)))) (-3068 (*1 *2 *3 *4) (-12 (-5 *4 (-522)) (-4 *5 (-13 (-426) (-784) (-962 *4) (-584 *4))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-3068 (*1 *2 *3) (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))) (-3068 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *5)) (-4 *5 (-13 (-27) (-1106) (-405 *4))))) (-3058 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-270 *3)) (-5 *5 (-708)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *6 *3)))) (-3058 (*1 *2 *3 *4) (-12 (-5 *4 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)))) (-3058 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-3058 (*1 *2 *3) (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))) (-3058 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *5)) (-4 *5 (-13 (-27) (-1106) (-405 *4))))))
-(-10 -7 (-15 -3058 ((-51) (-1085))) (-15 -3058 ((-51) |#2|)) (-15 -3058 ((-51) |#2| (-708))) (-15 -3058 ((-51) |#2| (-270 |#2|))) (-15 -3058 ((-51) |#2| (-270 |#2|) (-708))) (-15 -3068 ((-51) (-1085))) (-15 -3068 ((-51) |#2|)) (-15 -3068 ((-51) |#2| (-522))) (-15 -3068 ((-51) |#2| (-270 |#2|))) (-15 -3068 ((-51) |#2| (-270 |#2|) (-522))) (-15 -3079 ((-51) (-1085))) (-15 -3079 ((-51) |#2|)) (-15 -3079 ((-51) |#2| (-382 (-522)))) (-15 -3079 ((-51) |#2| (-270 |#2|))) (-15 -3079 ((-51) |#2| (-270 |#2|) (-382 (-522)))) (-15 -2773 ((-51) (-1085))) (-15 -2773 ((-51) |#2|)) (-15 -2773 ((-51) |#2| (-382 (-522)))) (-15 -2773 ((-51) |#2| (-270 |#2|))) (-15 -2773 ((-51) |#2| (-270 |#2|) (-382 (-522)))))
-((-1416 (((-108) $ $) NIL)) (-1617 (((-588 $) $ (-1085)) NIL (|has| |#1| (-514))) (((-588 $) $) NIL (|has| |#1| (-514))) (((-588 $) (-1081 $) (-1085)) NIL (|has| |#1| (-514))) (((-588 $) (-1081 $)) NIL (|has| |#1| (-514))) (((-588 $) (-881 $)) NIL (|has| |#1| (-514)))) (-4032 (($ $ (-1085)) NIL (|has| |#1| (-514))) (($ $) NIL (|has| |#1| (-514))) (($ (-1081 $) (-1085)) NIL (|has| |#1| (-514))) (($ (-1081 $)) NIL (|has| |#1| (-514))) (($ (-881 $)) NIL (|has| |#1| (-514)))) (-2250 (((-108) $) 27 (-3708 (|has| |#1| (-25)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))))) (-4090 (((-588 (-1085)) $) 345)) (-1282 (((-382 (-1081 $)) $ (-561 $)) NIL (|has| |#1| (-514)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-1886 (((-588 (-561 $)) $) NIL)) (-2908 (($ $) 154 (|has| |#1| (-514)))) (-2772 (($ $) 130 (|has| |#1| (-514)))) (-1280 (($ $ (-1007 $)) 215 (|has| |#1| (-514))) (($ $ (-1085)) 211 (|has| |#1| (-514)))) (-1233 (((-3 $ "failed") $ $) NIL (-3708 (|has| |#1| (-21)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))))) (-3305 (($ $ (-270 $)) NIL) (($ $ (-588 (-270 $))) 361) (($ $ (-588 (-561 $)) (-588 $)) 404)) (-1565 (((-393 (-1081 $)) (-1081 $)) 289 (-12 (|has| |#1| (-426)) (|has| |#1| (-514))))) (-3119 (($ $) NIL (|has| |#1| (-514)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-514)))) (-1929 (($ $) NIL (|has| |#1| (-514)))) (-1687 (((-108) $ $) NIL (|has| |#1| (-514)))) (-2884 (($ $) 150 (|has| |#1| (-514)))) (-2748 (($ $) 126 (|has| |#1| (-514)))) (-3276 (($ $ (-522)) 64 (|has| |#1| (-514)))) (-2930 (($ $) 158 (|has| |#1| (-514)))) (-2794 (($ $) 134 (|has| |#1| (-514)))) (-3175 (($) NIL (-3708 (|has| |#1| (-25)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026))) CONST)) (-1221 (((-588 $) $ (-1085)) NIL (|has| |#1| (-514))) (((-588 $) $) NIL (|has| |#1| (-514))) (((-588 $) (-1081 $) (-1085)) NIL (|has| |#1| (-514))) (((-588 $) (-1081 $)) NIL (|has| |#1| (-514))) (((-588 $) (-881 $)) NIL (|has| |#1| (-514)))) (-3944 (($ $ (-1085)) NIL (|has| |#1| (-514))) (($ $) NIL (|has| |#1| (-514))) (($ (-1081 $) (-1085)) 117 (|has| |#1| (-514))) (($ (-1081 $)) NIL (|has| |#1| (-514))) (($ (-881 $)) NIL (|has| |#1| (-514)))) (-1297 (((-3 (-561 $) "failed") $) 17) (((-3 (-1085) "failed") $) NIL) (((-3 |#1| "failed") $) 413) (((-3 (-47) "failed") $) 318 (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-881 |#1|)) "failed") $) NIL (|has| |#1| (-514))) (((-3 (-881 |#1|) "failed") $) NIL (|has| |#1| (-971))) (((-3 (-382 (-522)) "failed") $) 45 (-3708 (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-1484 (((-561 $) $) 11) (((-1085) $) NIL) ((|#1| $) 395) (((-47) $) NIL (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-881 |#1|)) $) NIL (|has| |#1| (-514))) (((-881 |#1|) $) NIL (|has| |#1| (-971))) (((-382 (-522)) $) 302 (-3708 (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-2277 (($ $ $) NIL (|has| |#1| (-514)))) (-2096 (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 110 (|has| |#1| (-971))) (((-628 |#1|) (-628 $)) 102 (|has| |#1| (-971))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))) (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))))) (-3864 (($ $) 84 (|has| |#1| (-514)))) (-2682 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026))))) (-2254 (($ $ $) NIL (|has| |#1| (-514)))) (-1372 (($ $ (-1007 $)) 219 (|has| |#1| (-514))) (($ $ (-1085)) 217 (|has| |#1| (-514)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-514)))) (-2813 (((-108) $) NIL (|has| |#1| (-514)))) (-1967 (($ $ $) 185 (|has| |#1| (-514)))) (-2838 (($) 120 (|has| |#1| (-514)))) (-3219 (($ $ $) 205 (|has| |#1| (-514)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 367 (|has| |#1| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 373 (|has| |#1| (-815 (-354))))) (-1953 (($ $) NIL) (($ (-588 $)) NIL)) (-4161 (((-588 (-110)) $) NIL)) (-2626 (((-110) (-110)) 260)) (-2782 (((-108) $) 25 (-3708 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026))))) (-2591 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2902 (($ $) 66 (|has| |#1| (-971)))) (-2805 (((-1037 |#1| (-561 $)) $) 79 (|has| |#1| (-971)))) (-3404 (((-108) $) 46 (|has| |#1| (-514)))) (-1504 (($ $ (-522)) NIL (|has| |#1| (-514)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-514)))) (-1711 (((-1081 $) (-561 $)) 261 (|has| $ (-971)))) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-1391 (($ (-1 $ $) (-561 $)) 400)) (-3993 (((-3 (-561 $) "failed") $) NIL)) (-1254 (($ $) 124 (|has| |#1| (-514)))) (-3247 (($ $) 230 (|has| |#1| (-514)))) (-2224 (($ (-588 $)) NIL (|has| |#1| (-514))) (($ $ $) NIL (|has| |#1| (-514)))) (-2385 (((-1068) $) NIL)) (-1267 (((-588 (-561 $)) $) 48)) (-2909 (($ (-110) $) NIL) (($ (-110) (-588 $)) 405)) (-2462 (((-3 (-588 $) "failed") $) NIL (|has| |#1| (-1026)))) (-2170 (((-3 (-2 (|:| |val| $) (|:| -1400 (-522))) "failed") $) NIL (|has| |#1| (-971)))) (-4193 (((-3 (-588 $) "failed") $) 408 (|has| |#1| (-25)))) (-1241 (((-3 (-2 (|:| -2977 (-522)) (|:| |var| (-561 $))) "failed") $) 412 (|has| |#1| (-25)))) (-3285 (((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $) NIL (|has| |#1| (-1026))) (((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $ (-110)) NIL (|has| |#1| (-971))) (((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $ (-1085)) NIL (|has| |#1| (-971)))) (-2249 (((-108) $ (-110)) NIL) (((-108) $ (-1085)) 52)) (-3098 (($ $) NIL (-3708 (|has| |#1| (-447)) (|has| |#1| (-514))))) (-2355 (($ $ (-1085)) 234 (|has| |#1| (-514))) (($ $ (-1007 $)) 236 (|has| |#1| (-514)))) (-4155 (((-708) $) NIL)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) 43)) (-3118 ((|#1| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 282 (|has| |#1| (-514)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-514))) (($ $ $) NIL (|has| |#1| (-514)))) (-1648 (((-108) $ $) NIL) (((-108) $ (-1085)) NIL)) (-2692 (($ $ (-1085)) 209 (|has| |#1| (-514))) (($ $) 207 (|has| |#1| (-514)))) (-2868 (($ $) 201 (|has| |#1| (-514)))) (-3495 (((-393 (-1081 $)) (-1081 $)) 287 (-12 (|has| |#1| (-426)) (|has| |#1| (-514))))) (-1916 (((-393 $) $) NIL (|has| |#1| (-514)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-514))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-514)))) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-514)))) (-3266 (($ $) 122 (|has| |#1| (-514)))) (-1263 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2289 (($ $ (-561 $) $) NIL) (($ $ (-588 (-561 $)) (-588 $)) 399) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-1085) (-1 $ (-588 $))) NIL) (($ $ (-1085) (-1 $ $)) NIL) (($ $ (-588 (-110)) (-588 (-1 $ $))) 355) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-110) (-1 $ (-588 $))) NIL) (($ $ (-110) (-1 $ $)) NIL) (($ $ (-1085)) NIL (|has| |#1| (-563 (-498)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-563 (-498)))) (($ $) NIL (|has| |#1| (-563 (-498)))) (($ $ (-110) $ (-1085)) 343 (|has| |#1| (-563 (-498)))) (($ $ (-588 (-110)) (-588 $) (-1085)) 342 (|has| |#1| (-563 (-498)))) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ $))) NIL (|has| |#1| (-971))) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ (-588 $)))) NIL (|has| |#1| (-971))) (($ $ (-1085) (-708) (-1 $ (-588 $))) NIL (|has| |#1| (-971))) (($ $ (-1085) (-708) (-1 $ $)) NIL (|has| |#1| (-971)))) (-3730 (((-708) $) NIL (|has| |#1| (-514)))) (-2706 (($ $) 222 (|has| |#1| (-514)))) (-2545 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-588 $)) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-514)))) (-3043 (($ $) NIL) (($ $ $) NIL)) (-2735 (($ $) 232 (|has| |#1| (-514)))) (-3236 (($ $) 183 (|has| |#1| (-514)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-971))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-971))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-971))) (($ $ (-1085)) NIL (|has| |#1| (-971)))) (-3533 (($ $) 67 (|has| |#1| (-514)))) (-2816 (((-1037 |#1| (-561 $)) $) 81 (|has| |#1| (-514)))) (-1479 (($ $) 300 (|has| $ (-971)))) (-1738 (($ $) 160 (|has| |#1| (-514)))) (-2804 (($ $) 136 (|has| |#1| (-514)))) (-2919 (($ $) 156 (|has| |#1| (-514)))) (-2784 (($ $) 132 (|has| |#1| (-514)))) (-2896 (($ $) 152 (|has| |#1| (-514)))) (-2761 (($ $) 128 (|has| |#1| (-514)))) (-1431 (((-821 (-522)) $) NIL (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| |#1| (-563 (-821 (-354))))) (($ (-393 $)) NIL (|has| |#1| (-514))) (((-498) $) 340 (|has| |#1| (-563 (-498))))) (-3122 (($ $ $) NIL (|has| |#1| (-447)))) (-1288 (($ $ $) NIL (|has| |#1| (-447)))) (-2190 (((-792) $) 398) (($ (-561 $)) 389) (($ (-1085)) 357) (($ |#1|) 319) (($ $) NIL (|has| |#1| (-514))) (($ (-47)) 294 (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522))))) (($ (-1037 |#1| (-561 $))) 83 (|has| |#1| (-971))) (($ (-382 |#1|)) NIL (|has| |#1| (-514))) (($ (-881 (-382 |#1|))) NIL (|has| |#1| (-514))) (($ (-382 (-881 (-382 |#1|)))) NIL (|has| |#1| (-514))) (($ (-382 (-881 |#1|))) NIL (|has| |#1| (-514))) (($ (-881 |#1|)) NIL (|has| |#1| (-971))) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-514)) (|has| |#1| (-962 (-382 (-522)))))) (($ (-522)) 34 (-3708 (|has| |#1| (-962 (-522))) (|has| |#1| (-971))))) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL (|has| |#1| (-971)))) (-2308 (($ $) NIL) (($ (-588 $)) NIL)) (-1480 (($ $ $) 203 (|has| |#1| (-514)))) (-1829 (($ $ $) 189 (|has| |#1| (-514)))) (-2709 (($ $ $) 193 (|has| |#1| (-514)))) (-2477 (($ $ $) 187 (|has| |#1| (-514)))) (-4205 (($ $ $) 191 (|has| |#1| (-514)))) (-3614 (((-108) (-110)) 9)) (-1759 (($ $) 166 (|has| |#1| (-514)))) (-2836 (($ $) 142 (|has| |#1| (-514)))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1745 (($ $) 162 (|has| |#1| (-514)))) (-2815 (($ $) 138 (|has| |#1| (-514)))) (-1776 (($ $) 170 (|has| |#1| (-514)))) (-2860 (($ $) 146 (|has| |#1| (-514)))) (-1805 (($ (-1085) $) NIL) (($ (-1085) $ $) NIL) (($ (-1085) $ $ $) NIL) (($ (-1085) $ $ $ $) NIL) (($ (-1085) (-588 $)) NIL)) (-1601 (($ $) 197 (|has| |#1| (-514)))) (-2607 (($ $) 195 (|has| |#1| (-514)))) (-3924 (($ $) 172 (|has| |#1| (-514)))) (-2872 (($ $) 148 (|has| |#1| (-514)))) (-1768 (($ $) 168 (|has| |#1| (-514)))) (-2848 (($ $) 144 (|has| |#1| (-514)))) (-1752 (($ $) 164 (|has| |#1| (-514)))) (-2825 (($ $) 140 (|has| |#1| (-514)))) (-2241 (($ $) 175 (|has| |#1| (-514)))) (-3510 (($ $ (-522)) NIL (-3708 (|has| |#1| (-447)) (|has| |#1| (-514)))) (($ $ (-708)) NIL (-3708 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026)))) (($ $ (-850)) NIL (-3708 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026))))) (-3566 (($) 20 (-3708 (|has| |#1| (-25)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))) CONST)) (-2558 (($ $) 226 (|has| |#1| (-514)))) (-3577 (($) 22 (-3708 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026))) CONST)) (-2018 (($ $) 177 (|has| |#1| (-514))) (($ $ $) 179 (|has| |#1| (-514)))) (-1654 (($ $) 224 (|has| |#1| (-514)))) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-971))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-971))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-971))) (($ $ (-1085)) NIL (|has| |#1| (-971)))) (-3543 (($ $) 228 (|has| |#1| (-514)))) (-2627 (($ $ $) 181 (|has| |#1| (-514)))) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 76)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 75)) (-1620 (($ (-1037 |#1| (-561 $)) (-1037 |#1| (-561 $))) 93 (|has| |#1| (-514))) (($ $ $) 42 (-3708 (|has| |#1| (-447)) (|has| |#1| (-514))))) (-1612 (($ $ $) 40 (-3708 (|has| |#1| (-21)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))))) (($ $) 29 (-3708 (|has| |#1| (-21)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))))) (-1602 (($ $ $) 38 (-3708 (|has| |#1| (-25)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))))) (** (($ $ $) 61 (|has| |#1| (-514))) (($ $ (-382 (-522))) 297 (|has| |#1| (-514))) (($ $ (-522)) 71 (-3708 (|has| |#1| (-447)) (|has| |#1| (-514)))) (($ $ (-708)) 68 (-3708 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026)))) (($ $ (-850)) 73 (-3708 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026))))) (* (($ (-382 (-522)) $) NIL (|has| |#1| (-514))) (($ $ (-382 (-522))) NIL (|has| |#1| (-514))) (($ |#1| $) NIL (|has| |#1| (-157))) (($ $ |#1|) NIL (|has| |#1| (-157))) (($ $ $) 36 (-3708 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026)))) (($ (-522) $) 32 (-3708 (|has| |#1| (-21)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))))) (($ (-708) $) NIL (-3708 (|has| |#1| (-25)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))))) (($ (-850) $) NIL (-3708 (|has| |#1| (-25)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))))))
-(((-291 |#1|) (-13 (-405 |#1|) (-10 -8 (IF (|has| |#1| (-514)) (PROGN (-6 (-29 |#1|)) (-6 (-1106)) (-6 (-146)) (-6 (-574)) (-6 (-1049)) (-15 -3864 ($ $)) (-15 -3404 ((-108) $)) (-15 -3276 ($ $ (-522))) (IF (|has| |#1| (-426)) (PROGN (-15 -3495 ((-393 (-1081 $)) (-1081 $))) (-15 -1565 ((-393 (-1081 $)) (-1081 $)))) |%noBranch|) (IF (|has| |#1| (-962 (-522))) (-6 (-962 (-47))) |%noBranch|)) |%noBranch|))) (-784)) (T -291))
-((-3864 (*1 *1 *1) (-12 (-5 *1 (-291 *2)) (-4 *2 (-514)) (-4 *2 (-784)))) (-3404 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-291 *3)) (-4 *3 (-514)) (-4 *3 (-784)))) (-3276 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-291 *3)) (-4 *3 (-514)) (-4 *3 (-784)))) (-3495 (*1 *2 *3) (-12 (-5 *2 (-393 (-1081 *1))) (-5 *1 (-291 *4)) (-5 *3 (-1081 *1)) (-4 *4 (-426)) (-4 *4 (-514)) (-4 *4 (-784)))) (-1565 (*1 *2 *3) (-12 (-5 *2 (-393 (-1081 *1))) (-5 *1 (-291 *4)) (-5 *3 (-1081 *1)) (-4 *4 (-426)) (-4 *4 (-514)) (-4 *4 (-784)))))
-(-13 (-405 |#1|) (-10 -8 (IF (|has| |#1| (-514)) (PROGN (-6 (-29 |#1|)) (-6 (-1106)) (-6 (-146)) (-6 (-574)) (-6 (-1049)) (-15 -3864 ($ $)) (-15 -3404 ((-108) $)) (-15 -3276 ($ $ (-522))) (IF (|has| |#1| (-426)) (PROGN (-15 -3495 ((-393 (-1081 $)) (-1081 $))) (-15 -1565 ((-393 (-1081 $)) (-1081 $)))) |%noBranch|) (IF (|has| |#1| (-962 (-522))) (-6 (-962 (-47))) |%noBranch|)) |%noBranch|)))
-((-2500 (((-51) |#2| (-110) (-270 |#2|) (-588 |#2|)) 86) (((-51) |#2| (-110) (-270 |#2|) (-270 |#2|)) 82) (((-51) |#2| (-110) (-270 |#2|) |#2|) 84) (((-51) (-270 |#2|) (-110) (-270 |#2|) |#2|) 85) (((-51) (-588 |#2|) (-588 (-110)) (-270 |#2|) (-588 (-270 |#2|))) 78) (((-51) (-588 |#2|) (-588 (-110)) (-270 |#2|) (-588 |#2|)) 80) (((-51) (-588 (-270 |#2|)) (-588 (-110)) (-270 |#2|) (-588 |#2|)) 81) (((-51) (-588 (-270 |#2|)) (-588 (-110)) (-270 |#2|) (-588 (-270 |#2|))) 79) (((-51) (-270 |#2|) (-110) (-270 |#2|) (-588 |#2|)) 87) (((-51) (-270 |#2|) (-110) (-270 |#2|) (-270 |#2|)) 83)))
-(((-292 |#1| |#2|) (-10 -7 (-15 -2500 ((-51) (-270 |#2|) (-110) (-270 |#2|) (-270 |#2|))) (-15 -2500 ((-51) (-270 |#2|) (-110) (-270 |#2|) (-588 |#2|))) (-15 -2500 ((-51) (-588 (-270 |#2|)) (-588 (-110)) (-270 |#2|) (-588 (-270 |#2|)))) (-15 -2500 ((-51) (-588 (-270 |#2|)) (-588 (-110)) (-270 |#2|) (-588 |#2|))) (-15 -2500 ((-51) (-588 |#2|) (-588 (-110)) (-270 |#2|) (-588 |#2|))) (-15 -2500 ((-51) (-588 |#2|) (-588 (-110)) (-270 |#2|) (-588 (-270 |#2|)))) (-15 -2500 ((-51) (-270 |#2|) (-110) (-270 |#2|) |#2|)) (-15 -2500 ((-51) |#2| (-110) (-270 |#2|) |#2|)) (-15 -2500 ((-51) |#2| (-110) (-270 |#2|) (-270 |#2|))) (-15 -2500 ((-51) |#2| (-110) (-270 |#2|) (-588 |#2|)))) (-13 (-784) (-514) (-563 (-498))) (-405 |#1|)) (T -292))
-((-2500 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-110)) (-5 *5 (-270 *3)) (-5 *6 (-588 *3)) (-4 *3 (-405 *7)) (-4 *7 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *7 *3)))) (-2500 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-110)) (-5 *5 (-270 *3)) (-4 *3 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *6 *3)))) (-2500 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-110)) (-5 *5 (-270 *3)) (-4 *3 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *6 *3)))) (-2500 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-270 *5)) (-5 *4 (-110)) (-4 *5 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *6 *5)))) (-2500 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 (-110))) (-5 *6 (-588 (-270 *8))) (-4 *8 (-405 *7)) (-5 *5 (-270 *8)) (-4 *7 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *7 *8)))) (-2500 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-588 *7)) (-5 *4 (-588 (-110))) (-5 *5 (-270 *7)) (-4 *7 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *6 *7)))) (-2500 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-588 (-270 *8))) (-5 *4 (-588 (-110))) (-5 *5 (-270 *8)) (-5 *6 (-588 *8)) (-4 *8 (-405 *7)) (-4 *7 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *7 *8)))) (-2500 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-588 (-270 *7))) (-5 *4 (-588 (-110))) (-5 *5 (-270 *7)) (-4 *7 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *6 *7)))) (-2500 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-270 *7)) (-5 *4 (-110)) (-5 *5 (-588 *7)) (-4 *7 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *6 *7)))) (-2500 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-270 *6)) (-5 *4 (-110)) (-4 *6 (-405 *5)) (-4 *5 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *5 *6)))))
-(-10 -7 (-15 -2500 ((-51) (-270 |#2|) (-110) (-270 |#2|) (-270 |#2|))) (-15 -2500 ((-51) (-270 |#2|) (-110) (-270 |#2|) (-588 |#2|))) (-15 -2500 ((-51) (-588 (-270 |#2|)) (-588 (-110)) (-270 |#2|) (-588 (-270 |#2|)))) (-15 -2500 ((-51) (-588 (-270 |#2|)) (-588 (-110)) (-270 |#2|) (-588 |#2|))) (-15 -2500 ((-51) (-588 |#2|) (-588 (-110)) (-270 |#2|) (-588 |#2|))) (-15 -2500 ((-51) (-588 |#2|) (-588 (-110)) (-270 |#2|) (-588 (-270 |#2|)))) (-15 -2500 ((-51) (-270 |#2|) (-110) (-270 |#2|) |#2|)) (-15 -2500 ((-51) |#2| (-110) (-270 |#2|) |#2|)) (-15 -2500 ((-51) |#2| (-110) (-270 |#2|) (-270 |#2|))) (-15 -2500 ((-51) |#2| (-110) (-270 |#2|) (-588 |#2|))))
-((-1534 (((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-202) (-522) (-1068)) 46) (((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-202) (-522)) 47) (((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-1 (-202) (-202)) (-522) (-1068)) 43) (((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-1 (-202) (-202)) (-522)) 44)) (-1214 (((-1 (-202) (-202)) (-202)) 45)))
-(((-293) (-10 -7 (-15 -1214 ((-1 (-202) (-202)) (-202))) (-15 -1534 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-1 (-202) (-202)) (-522))) (-15 -1534 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-1 (-202) (-202)) (-522) (-1068))) (-15 -1534 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-202) (-522))) (-15 -1534 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-202) (-522) (-1068))))) (T -293))
-((-1534 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202))) (-5 *5 (-1009 (-202))) (-5 *6 (-202)) (-5 *7 (-522)) (-5 *8 (-1068)) (-5 *2 (-1116 (-855))) (-5 *1 (-293)))) (-1534 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202))) (-5 *5 (-1009 (-202))) (-5 *6 (-202)) (-5 *7 (-522)) (-5 *2 (-1116 (-855))) (-5 *1 (-293)))) (-1534 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202))) (-5 *5 (-1009 (-202))) (-5 *6 (-522)) (-5 *7 (-1068)) (-5 *2 (-1116 (-855))) (-5 *1 (-293)))) (-1534 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202))) (-5 *5 (-1009 (-202))) (-5 *6 (-522)) (-5 *2 (-1116 (-855))) (-5 *1 (-293)))) (-1214 (*1 *2 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *1 (-293)) (-5 *3 (-202)))))
-(-10 -7 (-15 -1214 ((-1 (-202) (-202)) (-202))) (-15 -1534 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-1 (-202) (-202)) (-522))) (-15 -1534 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-1 (-202) (-202)) (-522) (-1068))) (-15 -1534 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-202) (-522))) (-15 -1534 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-202) (-522) (-1068))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 24)) (-4090 (((-588 (-999)) $) NIL)) (-1611 (((-1085) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-2789 (($ $ (-382 (-522))) NIL) (($ $ (-382 (-522)) (-382 (-522))) NIL)) (-2258 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) 19)) (-2908 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL (|has| |#1| (-338)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1929 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-2884 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2773 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) NIL)) (-2930 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) NIL T CONST)) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-3156 (($ $) 31)) (-2682 (((-3 $ "failed") $) NIL)) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2813 (((-108) $) NIL (|has| |#1| (-338)))) (-3390 (((-108) $) NIL)) (-2838 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-382 (-522)) $) NIL) (((-382 (-522)) $ (-382 (-522))) 15)) (-2782 (((-108) $) NIL)) (-1504 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2073 (($ $ (-850)) NIL) (($ $ (-382 (-522))) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-382 (-522))) NIL) (($ $ (-999) (-382 (-522))) NIL) (($ $ (-588 (-999)) (-588 (-382 (-522)))) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-1254 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL (|has| |#1| (-338)))) (-1858 (($ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) NIL (-3708 (-12 (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106)))))) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3719 (($ $ (-382 (-522))) NIL)) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3302 (((-382 (-522)) $) 16)) (-2453 (($ (-1151 |#1| |#2| |#3|)) 11)) (-1400 (((-1151 |#1| |#2| |#3|) $) 12)) (-3266 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-3730 (((-708) $) NIL (|has| |#1| (-338)))) (-2545 ((|#1| $ (-382 (-522))) NIL) (($ $ $) NIL (|has| (-382 (-522)) (-1026)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-2793 (((-382 (-522)) $) NIL)) (-1738 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) 10)) (-2190 (((-792) $) 37) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514)))) (-3243 ((|#1| $ (-382 (-522))) 29)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-1893 ((|#1| $) NIL)) (-1759 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1745 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-382 (-522))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 26)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 32)) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
-(((-294 |#1| |#2| |#3|) (-13 (-1147 |#1|) (-729) (-10 -8 (-15 -2453 ($ (-1151 |#1| |#2| |#3|))) (-15 -1400 ((-1151 |#1| |#2| |#3|) $)) (-15 -3302 ((-382 (-522)) $)))) (-13 (-338) (-784)) (-1085) |#1|) (T -294))
-((-2453 (*1 *1 *2) (-12 (-5 *2 (-1151 *3 *4 *5)) (-4 *3 (-13 (-338) (-784))) (-14 *4 (-1085)) (-14 *5 *3) (-5 *1 (-294 *3 *4 *5)))) (-1400 (*1 *2 *1) (-12 (-5 *2 (-1151 *3 *4 *5)) (-5 *1 (-294 *3 *4 *5)) (-4 *3 (-13 (-338) (-784))) (-14 *4 (-1085)) (-14 *5 *3))) (-3302 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-294 *3 *4 *5)) (-4 *3 (-13 (-338) (-784))) (-14 *4 (-1085)) (-14 *5 *3))))
-(-13 (-1147 |#1|) (-729) (-10 -8 (-15 -2453 ($ (-1151 |#1| |#2| |#3|))) (-15 -1400 ((-1151 |#1| |#2| |#3|) $)) (-15 -3302 ((-382 (-522)) $))))
-((-1504 (((-2 (|:| -1400 (-708)) (|:| -2977 |#1|) (|:| |radicand| (-588 |#1|))) (-393 |#1|) (-708)) 24)) (-1254 (((-588 (-2 (|:| -2977 (-708)) (|:| |logand| |#1|))) (-393 |#1|)) 28)))
-(((-295 |#1|) (-10 -7 (-15 -1504 ((-2 (|:| -1400 (-708)) (|:| -2977 |#1|) (|:| |radicand| (-588 |#1|))) (-393 |#1|) (-708))) (-15 -1254 ((-588 (-2 (|:| -2977 (-708)) (|:| |logand| |#1|))) (-393 |#1|)))) (-514)) (T -295))
-((-1254 (*1 *2 *3) (-12 (-5 *3 (-393 *4)) (-4 *4 (-514)) (-5 *2 (-588 (-2 (|:| -2977 (-708)) (|:| |logand| *4)))) (-5 *1 (-295 *4)))) (-1504 (*1 *2 *3 *4) (-12 (-5 *3 (-393 *5)) (-4 *5 (-514)) (-5 *2 (-2 (|:| -1400 (-708)) (|:| -2977 *5) (|:| |radicand| (-588 *5)))) (-5 *1 (-295 *5)) (-5 *4 (-708)))))
-(-10 -7 (-15 -1504 ((-2 (|:| -1400 (-708)) (|:| -2977 |#1|) (|:| |radicand| (-588 |#1|))) (-393 |#1|) (-708))) (-15 -1254 ((-588 (-2 (|:| -2977 (-708)) (|:| |logand| |#1|))) (-393 |#1|))))
-((-4090 (((-588 |#2|) (-1081 |#4|)) 43)) (-1322 ((|#3| (-522)) 46)) (-3524 (((-1081 |#4|) (-1081 |#3|)) 30)) (-2823 (((-1081 |#4|) (-1081 |#4|) (-522)) 56)) (-1542 (((-1081 |#3|) (-1081 |#4|)) 21)) (-2793 (((-588 (-708)) (-1081 |#4|) (-588 |#2|)) 40)) (-2066 (((-1081 |#3|) (-1081 |#4|) (-588 |#2|) (-588 |#3|)) 35)))
-(((-296 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2066 ((-1081 |#3|) (-1081 |#4|) (-588 |#2|) (-588 |#3|))) (-15 -2793 ((-588 (-708)) (-1081 |#4|) (-588 |#2|))) (-15 -4090 ((-588 |#2|) (-1081 |#4|))) (-15 -1542 ((-1081 |#3|) (-1081 |#4|))) (-15 -3524 ((-1081 |#4|) (-1081 |#3|))) (-15 -2823 ((-1081 |#4|) (-1081 |#4|) (-522))) (-15 -1322 (|#3| (-522)))) (-730) (-784) (-971) (-878 |#3| |#1| |#2|)) (T -296))
-((-1322 (*1 *2 *3) (-12 (-5 *3 (-522)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-971)) (-5 *1 (-296 *4 *5 *2 *6)) (-4 *6 (-878 *2 *4 *5)))) (-2823 (*1 *2 *2 *3) (-12 (-5 *2 (-1081 *7)) (-5 *3 (-522)) (-4 *7 (-878 *6 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-5 *1 (-296 *4 *5 *6 *7)))) (-3524 (*1 *2 *3) (-12 (-5 *3 (-1081 *6)) (-4 *6 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-1081 *7)) (-5 *1 (-296 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))) (-1542 (*1 *2 *3) (-12 (-5 *3 (-1081 *7)) (-4 *7 (-878 *6 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-5 *2 (-1081 *6)) (-5 *1 (-296 *4 *5 *6 *7)))) (-4090 (*1 *2 *3) (-12 (-5 *3 (-1081 *7)) (-4 *7 (-878 *6 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-5 *2 (-588 *5)) (-5 *1 (-296 *4 *5 *6 *7)))) (-2793 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *8)) (-5 *4 (-588 *6)) (-4 *6 (-784)) (-4 *8 (-878 *7 *5 *6)) (-4 *5 (-730)) (-4 *7 (-971)) (-5 *2 (-588 (-708))) (-5 *1 (-296 *5 *6 *7 *8)))) (-2066 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1081 *9)) (-5 *4 (-588 *7)) (-5 *5 (-588 *8)) (-4 *7 (-784)) (-4 *8 (-971)) (-4 *9 (-878 *8 *6 *7)) (-4 *6 (-730)) (-5 *2 (-1081 *8)) (-5 *1 (-296 *6 *7 *8 *9)))))
-(-10 -7 (-15 -2066 ((-1081 |#3|) (-1081 |#4|) (-588 |#2|) (-588 |#3|))) (-15 -2793 ((-588 (-708)) (-1081 |#4|) (-588 |#2|))) (-15 -4090 ((-588 |#2|) (-1081 |#4|))) (-15 -1542 ((-1081 |#3|) (-1081 |#4|))) (-15 -3524 ((-1081 |#4|) (-1081 |#3|))) (-15 -2823 ((-1081 |#4|) (-1081 |#4|) (-522))) (-15 -1322 (|#3| (-522))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 14)) (-2258 (((-588 (-2 (|:| |gen| |#1|) (|:| -3266 (-522)))) $) 18)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1629 (((-708) $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL)) (-1484 ((|#1| $) NIL)) (-3750 ((|#1| $ (-522)) NIL)) (-3816 (((-522) $ (-522)) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3896 (($ (-1 |#1| |#1|) $) NIL)) (-1564 (($ (-1 (-522) (-522)) $) 10)) (-2385 (((-1068) $) NIL)) (-3443 (($ $ $) NIL (|has| (-522) (-729)))) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL) (($ |#1|) NIL)) (-3243 (((-522) |#1| $) NIL)) (-3566 (($) 15 T CONST)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) 21 (|has| |#1| (-784)))) (-1612 (($ $) 11) (($ $ $) 20)) (-1602 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ (-522)) NIL) (($ (-522) |#1|) 19)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 62)) (-3049 (((-1152 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-283)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-838)))) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-838)))) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-757)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-1152 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-522)))) (((-3 (-1151 |#2| |#3| |#4|) "failed") $) 24)) (-1478 (((-1152 |#1| |#2| |#3| |#4|) $) NIL) (((-1085) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-522)))) (((-522) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-522)))) (((-1151 |#2| |#3| |#4|) $) NIL)) (-2333 (($ $ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-1152 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1166 (-1152 |#1| |#2| |#3| |#4|)))) (-628 $) (-1166 $)) NIL) (((-628 (-1152 |#1| |#2| |#3| |#4|)) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-507)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3603 (((-108) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-757)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-815 (-354))))) (-2859 (((-108) $) NIL)) (-1558 (($ $) NIL)) (-2947 (((-1152 |#1| |#2| |#3| |#4|) $) 21)) (-4208 (((-3 $ "failed") $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-1061)))) (-3740 (((-108) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-757)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1308 (($ $ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-784)))) (-2524 (($ $ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-784)))) (-3810 (($ (-1 (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|)) $) NIL)) (-3134 (((-3 (-777 |#2|) "failed") $) 76)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-1061)) CONST)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4194 (($ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-283)))) (-3592 (((-1152 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-507)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-838)))) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2330 (($ $ (-588 (-1152 |#1| |#2| |#3| |#4|)) (-588 (-1152 |#1| |#2| |#3| |#4|))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-285 (-1152 |#1| |#2| |#3| |#4|)))) (($ $ (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-285 (-1152 |#1| |#2| |#3| |#4|)))) (($ $ (-270 (-1152 |#1| |#2| |#3| |#4|))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-285 (-1152 |#1| |#2| |#3| |#4|)))) (($ $ (-588 (-270 (-1152 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-285 (-1152 |#1| |#2| |#3| |#4|)))) (($ $ (-588 (-1085)) (-588 (-1152 |#1| |#2| |#3| |#4|))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-483 (-1085) (-1152 |#1| |#2| |#3| |#4|)))) (($ $ (-1085) (-1152 |#1| |#2| |#3| |#4|)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-483 (-1085) (-1152 |#1| |#2| |#3| |#4|))))) (-4031 (((-708) $) NIL)) (-2683 (($ $ (-1152 |#1| |#2| |#3| |#4|)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-262 (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|))))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2731 (($ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-210))) (($ $ (-708)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-210))) (($ $ (-1085)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-1 (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|)) (-708)) NIL) (($ $ (-1 (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|))) NIL)) (-2762 (($ $) NIL)) (-2959 (((-1152 |#1| |#2| |#3| |#4|) $) 17)) (-3873 (((-821 (-522)) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-563 (-498)))) (((-354) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-947))) (((-202) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-947)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-1152 |#1| |#2| |#3| |#4|) (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-1152 |#1| |#2| |#3| |#4|)) 28) (($ (-1085)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-962 (-1085)))) (($ (-1151 |#2| |#3| |#4|)) 36)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| (-1152 |#1| |#2| |#3| |#4|) (-838))) (|has| (-1152 |#1| |#2| |#3| |#4|) (-133))))) (-2742 (((-708)) NIL)) (-1379 (((-1152 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-507)))) (-1407 (((-108) $ $) NIL)) (-4126 (($ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-757)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 41 T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-210))) (($ $ (-708)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-210))) (($ $ (-1085)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-829 (-1085)))) (($ $ (-1 (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|)) (-708)) NIL) (($ $ (-1 (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|))) NIL)) (-1623 (((-108) $ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-784)))) (-1597 (((-108) $ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-784)))) (-1587 (((-108) $ $) NIL (|has| (-1152 |#1| |#2| |#3| |#4|) (-784)))) (-1682 (($ $ $) 33) (($ (-1152 |#1| |#2| |#3| |#4|) (-1152 |#1| |#2| |#3| |#4|)) 30)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-1152 |#1| |#2| |#3| |#4|) $) 29) (($ $ (-1152 |#1| |#2| |#3| |#4|)) NIL)))
+(((-288 |#1| |#2| |#3| |#4|) (-13 (-919 (-1152 |#1| |#2| |#3| |#4|)) (-962 (-1151 |#2| |#3| |#4|)) (-10 -8 (-15 -3134 ((-3 (-777 |#2|) "failed") $)) (-15 -2217 ($ (-1151 |#2| |#3| |#4|))))) (-13 (-784) (-962 (-522)) (-584 (-522)) (-426)) (-13 (-27) (-1106) (-405 |#1|)) (-1085) |#2|) (T -288))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1151 *4 *5 *6)) (-4 *4 (-13 (-27) (-1106) (-405 *3))) (-14 *5 (-1085)) (-14 *6 *4) (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426))) (-5 *1 (-288 *3 *4 *5 *6)))) (-3134 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426))) (-5 *2 (-777 *4)) (-5 *1 (-288 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1106) (-405 *3))) (-14 *5 (-1085)) (-14 *6 *4))))
+(-13 (-919 (-1152 |#1| |#2| |#3| |#4|)) (-962 (-1151 |#2| |#3| |#4|)) (-10 -8 (-15 -3134 ((-3 (-777 |#2|) "failed") $)) (-15 -2217 ($ (-1151 |#2| |#3| |#4|)))))
+((-3810 (((-291 |#2|) (-1 |#2| |#1|) (-291 |#1|)) 13)))
+(((-289 |#1| |#2|) (-10 -7 (-15 -3810 ((-291 |#2|) (-1 |#2| |#1|) (-291 |#1|)))) (-784) (-784)) (T -289))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-291 *5)) (-4 *5 (-784)) (-4 *6 (-784)) (-5 *2 (-291 *6)) (-5 *1 (-289 *5 *6)))))
+(-10 -7 (-15 -3810 ((-291 |#2|) (-1 |#2| |#1|) (-291 |#1|))))
+((-3162 (((-51) |#2| (-270 |#2|) (-708)) 33) (((-51) |#2| (-270 |#2|)) 24) (((-51) |#2| (-708)) 28) (((-51) |#2|) 25) (((-51) (-1085)) 21)) (-1270 (((-51) |#2| (-270 |#2|) (-382 (-522))) 51) (((-51) |#2| (-270 |#2|)) 48) (((-51) |#2| (-382 (-522))) 50) (((-51) |#2|) 49) (((-51) (-1085)) 47)) (-3178 (((-51) |#2| (-270 |#2|) (-382 (-522))) 46) (((-51) |#2| (-270 |#2|)) 43) (((-51) |#2| (-382 (-522))) 45) (((-51) |#2|) 44) (((-51) (-1085)) 42)) (-3170 (((-51) |#2| (-270 |#2|) (-522)) 39) (((-51) |#2| (-270 |#2|)) 35) (((-51) |#2| (-522)) 38) (((-51) |#2|) 36) (((-51) (-1085)) 34)))
+(((-290 |#1| |#2|) (-10 -7 (-15 -3162 ((-51) (-1085))) (-15 -3162 ((-51) |#2|)) (-15 -3162 ((-51) |#2| (-708))) (-15 -3162 ((-51) |#2| (-270 |#2|))) (-15 -3162 ((-51) |#2| (-270 |#2|) (-708))) (-15 -3170 ((-51) (-1085))) (-15 -3170 ((-51) |#2|)) (-15 -3170 ((-51) |#2| (-522))) (-15 -3170 ((-51) |#2| (-270 |#2|))) (-15 -3170 ((-51) |#2| (-270 |#2|) (-522))) (-15 -3178 ((-51) (-1085))) (-15 -3178 ((-51) |#2|)) (-15 -3178 ((-51) |#2| (-382 (-522)))) (-15 -3178 ((-51) |#2| (-270 |#2|))) (-15 -3178 ((-51) |#2| (-270 |#2|) (-382 (-522)))) (-15 -1270 ((-51) (-1085))) (-15 -1270 ((-51) |#2|)) (-15 -1270 ((-51) |#2| (-382 (-522)))) (-15 -1270 ((-51) |#2| (-270 |#2|))) (-15 -1270 ((-51) |#2| (-270 |#2|) (-382 (-522))))) (-13 (-426) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -290))
+((-1270 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-270 *3)) (-5 *5 (-382 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *6 *3)))) (-1270 (*1 *2 *3 *4) (-12 (-5 *4 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)))) (-1270 (*1 *2 *3 *4) (-12 (-5 *4 (-382 (-522))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-1270 (*1 *2 *3) (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))) (-1270 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *5)) (-4 *5 (-13 (-27) (-1106) (-405 *4))))) (-3178 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-270 *3)) (-5 *5 (-382 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *6 *3)))) (-3178 (*1 *2 *3 *4) (-12 (-5 *4 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)))) (-3178 (*1 *2 *3 *4) (-12 (-5 *4 (-382 (-522))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-3178 (*1 *2 *3) (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))) (-3178 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *5)) (-4 *5 (-13 (-27) (-1106) (-405 *4))))) (-3170 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-426) (-784) (-962 *5) (-584 *5))) (-5 *5 (-522)) (-5 *2 (-51)) (-5 *1 (-290 *6 *3)))) (-3170 (*1 *2 *3 *4) (-12 (-5 *4 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)))) (-3170 (*1 *2 *3 *4) (-12 (-5 *4 (-522)) (-4 *5 (-13 (-426) (-784) (-962 *4) (-584 *4))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-3170 (*1 *2 *3) (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))) (-3170 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *5)) (-4 *5 (-13 (-27) (-1106) (-405 *4))))) (-3162 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-270 *3)) (-5 *5 (-708)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *6 *3)))) (-3162 (*1 *2 *3 *4) (-12 (-5 *4 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)))) (-3162 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-3162 (*1 *2 *3) (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))) (-3162 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-290 *4 *5)) (-4 *5 (-13 (-27) (-1106) (-405 *4))))))
+(-10 -7 (-15 -3162 ((-51) (-1085))) (-15 -3162 ((-51) |#2|)) (-15 -3162 ((-51) |#2| (-708))) (-15 -3162 ((-51) |#2| (-270 |#2|))) (-15 -3162 ((-51) |#2| (-270 |#2|) (-708))) (-15 -3170 ((-51) (-1085))) (-15 -3170 ((-51) |#2|)) (-15 -3170 ((-51) |#2| (-522))) (-15 -3170 ((-51) |#2| (-270 |#2|))) (-15 -3170 ((-51) |#2| (-270 |#2|) (-522))) (-15 -3178 ((-51) (-1085))) (-15 -3178 ((-51) |#2|)) (-15 -3178 ((-51) |#2| (-382 (-522)))) (-15 -3178 ((-51) |#2| (-270 |#2|))) (-15 -3178 ((-51) |#2| (-270 |#2|) (-382 (-522)))) (-15 -1270 ((-51) (-1085))) (-15 -1270 ((-51) |#2|)) (-15 -1270 ((-51) |#2| (-382 (-522)))) (-15 -1270 ((-51) |#2| (-270 |#2|))) (-15 -1270 ((-51) |#2| (-270 |#2|) (-382 (-522)))))
+((-1419 (((-108) $ $) NIL)) (-3899 (((-588 $) $ (-1085)) NIL (|has| |#1| (-514))) (((-588 $) $) NIL (|has| |#1| (-514))) (((-588 $) (-1081 $) (-1085)) NIL (|has| |#1| (-514))) (((-588 $) (-1081 $)) NIL (|has| |#1| (-514))) (((-588 $) (-881 $)) NIL (|has| |#1| (-514)))) (-3974 (($ $ (-1085)) NIL (|has| |#1| (-514))) (($ $) NIL (|has| |#1| (-514))) (($ (-1081 $) (-1085)) NIL (|has| |#1| (-514))) (($ (-1081 $)) NIL (|has| |#1| (-514))) (($ (-881 $)) NIL (|has| |#1| (-514)))) (-2944 (((-108) $) 27 (-3844 (|has| |#1| (-25)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))))) (-3533 (((-588 (-1085)) $) 345)) (-1264 (((-382 (-1081 $)) $ (-561 $)) NIL (|has| |#1| (-514)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-1974 (((-588 (-561 $)) $) NIL)) (-3044 (($ $) 154 (|has| |#1| (-514)))) (-2923 (($ $) 130 (|has| |#1| (-514)))) (-1525 (($ $ (-1007 $)) 215 (|has| |#1| (-514))) (($ $ (-1085)) 211 (|has| |#1| (-514)))) (-2265 (((-3 $ "failed") $ $) NIL (-3844 (|has| |#1| (-21)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))))) (-1847 (($ $ (-270 $)) NIL) (($ $ (-588 (-270 $))) 361) (($ $ (-588 (-561 $)) (-588 $)) 404)) (-3543 (((-393 (-1081 $)) (-1081 $)) 289 (-12 (|has| |#1| (-426)) (|has| |#1| (-514))))) (-2961 (($ $) NIL (|has| |#1| (-514)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-514)))) (-2016 (($ $) NIL (|has| |#1| (-514)))) (-2805 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3023 (($ $) 150 (|has| |#1| (-514)))) (-2906 (($ $) 126 (|has| |#1| (-514)))) (-1934 (($ $ (-522)) 64 (|has| |#1| (-514)))) (-3066 (($ $) 158 (|has| |#1| (-514)))) (-2936 (($ $) 134 (|has| |#1| (-514)))) (-3367 (($) NIL (-3844 (|has| |#1| (-25)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026))) CONST)) (-2136 (((-588 $) $ (-1085)) NIL (|has| |#1| (-514))) (((-588 $) $) NIL (|has| |#1| (-514))) (((-588 $) (-1081 $) (-1085)) NIL (|has| |#1| (-514))) (((-588 $) (-1081 $)) NIL (|has| |#1| (-514))) (((-588 $) (-881 $)) NIL (|has| |#1| (-514)))) (-1275 (($ $ (-1085)) NIL (|has| |#1| (-514))) (($ $) NIL (|has| |#1| (-514))) (($ (-1081 $) (-1085)) 117 (|has| |#1| (-514))) (($ (-1081 $)) NIL (|has| |#1| (-514))) (($ (-881 $)) NIL (|has| |#1| (-514)))) (-3700 (((-3 (-561 $) "failed") $) 17) (((-3 (-1085) "failed") $) NIL) (((-3 |#1| "failed") $) 413) (((-3 (-47) "failed") $) 318 (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-881 |#1|)) "failed") $) NIL (|has| |#1| (-514))) (((-3 (-881 |#1|) "failed") $) NIL (|has| |#1| (-971))) (((-3 (-382 (-522)) "failed") $) 45 (-3844 (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-1478 (((-561 $) $) 11) (((-1085) $) NIL) ((|#1| $) 395) (((-47) $) NIL (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-881 |#1|)) $) NIL (|has| |#1| (-514))) (((-881 |#1|) $) NIL (|has| |#1| (-971))) (((-382 (-522)) $) 302 (-3844 (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-2333 (($ $ $) NIL (|has| |#1| (-514)))) (-1226 (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 110 (|has| |#1| (-971))) (((-628 |#1|) (-628 $)) 102 (|has| |#1| (-971))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))) (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))))) (-2153 (($ $) 84 (|has| |#1| (-514)))) (-3920 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026))))) (-2303 (($ $ $) NIL (|has| |#1| (-514)))) (-3589 (($ $ (-1007 $)) 219 (|has| |#1| (-514))) (($ $ (-1085)) 217 (|has| |#1| (-514)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-514)))) (-2725 (((-108) $) NIL (|has| |#1| (-514)))) (-3056 (($ $ $) 185 (|has| |#1| (-514)))) (-2980 (($) 120 (|has| |#1| (-514)))) (-2634 (($ $ $) 205 (|has| |#1| (-514)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 367 (|has| |#1| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 373 (|has| |#1| (-815 (-354))))) (-2930 (($ $) NIL) (($ (-588 $)) NIL)) (-2896 (((-588 (-110)) $) NIL)) (-1771 (((-110) (-110)) 260)) (-2859 (((-108) $) 25 (-3844 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026))))) (-3077 (((-108) $) NIL (|has| $ (-962 (-522))))) (-1558 (($ $) 66 (|has| |#1| (-971)))) (-2947 (((-1037 |#1| (-561 $)) $) 79 (|has| |#1| (-971)))) (-3800 (((-108) $) 46 (|has| |#1| (-514)))) (-1811 (($ $ (-522)) NIL (|has| |#1| (-514)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-514)))) (-4185 (((-1081 $) (-561 $)) 261 (|has| $ (-971)))) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-3810 (($ (-1 $ $) (-561 $)) 400)) (-3562 (((-3 (-561 $) "failed") $) NIL)) (-1238 (($ $) 124 (|has| |#1| (-514)))) (-3335 (($ $) 230 (|has| |#1| (-514)))) (-2267 (($ (-588 $)) NIL (|has| |#1| (-514))) (($ $ $) NIL (|has| |#1| (-514)))) (-2311 (((-1068) $) NIL)) (-1249 (((-588 (-561 $)) $) 48)) (-3043 (($ (-110) $) NIL) (($ (-110) (-588 $)) 405)) (-2760 (((-3 (-588 $) "failed") $) NIL (|has| |#1| (-1026)))) (-3242 (((-3 (-2 (|:| |val| $) (|:| -3858 (-522))) "failed") $) NIL (|has| |#1| (-971)))) (-1919 (((-3 (-588 $) "failed") $) 408 (|has| |#1| (-25)))) (-2367 (((-3 (-2 (|:| -3112 (-522)) (|:| |var| (-561 $))) "failed") $) 412 (|has| |#1| (-25)))) (-2024 (((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $) NIL (|has| |#1| (-1026))) (((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $ (-110)) NIL (|has| |#1| (-971))) (((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $ (-1085)) NIL (|has| |#1| (-971)))) (-2935 (((-108) $ (-110)) NIL) (((-108) $ (-1085)) 52)) (-3193 (($ $) NIL (-3844 (|has| |#1| (-447)) (|has| |#1| (-514))))) (-2093 (($ $ (-1085)) 234 (|has| |#1| (-514))) (($ $ (-1007 $)) 236 (|has| |#1| (-514)))) (-4179 (((-708) $) NIL)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) 43)) (-3207 ((|#1| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 282 (|has| |#1| (-514)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-514))) (($ $ $) NIL (|has| |#1| (-514)))) (-2368 (((-108) $ $) NIL) (((-108) $ (-1085)) NIL)) (-2183 (($ $ (-1085)) 209 (|has| |#1| (-514))) (($ $) 207 (|has| |#1| (-514)))) (-1274 (($ $) 201 (|has| |#1| (-514)))) (-2313 (((-393 (-1081 $)) (-1081 $)) 287 (-12 (|has| |#1| (-426)) (|has| |#1| (-514))))) (-2006 (((-393 $) $) NIL (|has| |#1| (-514)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-514))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-514)))) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-514)))) (-3357 (($ $) 122 (|has| |#1| (-514)))) (-2626 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2330 (($ $ (-561 $) $) NIL) (($ $ (-588 (-561 $)) (-588 $)) 399) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-1085) (-1 $ (-588 $))) NIL) (($ $ (-1085) (-1 $ $)) NIL) (($ $ (-588 (-110)) (-588 (-1 $ $))) 355) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-110) (-1 $ (-588 $))) NIL) (($ $ (-110) (-1 $ $)) NIL) (($ $ (-1085)) NIL (|has| |#1| (-563 (-498)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-563 (-498)))) (($ $) NIL (|has| |#1| (-563 (-498)))) (($ $ (-110) $ (-1085)) 343 (|has| |#1| (-563 (-498)))) (($ $ (-588 (-110)) (-588 $) (-1085)) 342 (|has| |#1| (-563 (-498)))) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ $))) NIL (|has| |#1| (-971))) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ (-588 $)))) NIL (|has| |#1| (-971))) (($ $ (-1085) (-708) (-1 $ (-588 $))) NIL (|has| |#1| (-971))) (($ $ (-1085) (-708) (-1 $ $)) NIL (|has| |#1| (-971)))) (-4031 (((-708) $) NIL (|has| |#1| (-514)))) (-2880 (($ $) 222 (|has| |#1| (-514)))) (-2683 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-588 $)) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-514)))) (-3406 (($ $) NIL) (($ $ $) NIL)) (-2900 (($ $) 232 (|has| |#1| (-514)))) (-2852 (($ $) 183 (|has| |#1| (-514)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-971))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-971))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-971))) (($ $ (-1085)) NIL (|has| |#1| (-971)))) (-2762 (($ $) 67 (|has| |#1| (-514)))) (-2959 (((-1037 |#1| (-561 $)) $) 81 (|has| |#1| (-514)))) (-1579 (($ $) 300 (|has| $ (-971)))) (-1831 (($ $) 160 (|has| |#1| (-514)))) (-2946 (($ $) 136 (|has| |#1| (-514)))) (-3054 (($ $) 156 (|has| |#1| (-514)))) (-2928 (($ $) 132 (|has| |#1| (-514)))) (-3035 (($ $) 152 (|has| |#1| (-514)))) (-2915 (($ $) 128 (|has| |#1| (-514)))) (-3873 (((-821 (-522)) $) NIL (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| |#1| (-563 (-821 (-354))))) (($ (-393 $)) NIL (|has| |#1| (-514))) (((-498) $) 340 (|has| |#1| (-563 (-498))))) (-2983 (($ $ $) NIL (|has| |#1| (-447)))) (-1596 (($ $ $) NIL (|has| |#1| (-447)))) (-2217 (((-792) $) 398) (($ (-561 $)) 389) (($ (-1085)) 357) (($ |#1|) 319) (($ $) NIL (|has| |#1| (-514))) (($ (-47)) 294 (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522))))) (($ (-1037 |#1| (-561 $))) 83 (|has| |#1| (-971))) (($ (-382 |#1|)) NIL (|has| |#1| (-514))) (($ (-881 (-382 |#1|))) NIL (|has| |#1| (-514))) (($ (-382 (-881 (-382 |#1|)))) NIL (|has| |#1| (-514))) (($ (-382 (-881 |#1|))) NIL (|has| |#1| (-514))) (($ (-881 |#1|)) NIL (|has| |#1| (-971))) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-514)) (|has| |#1| (-962 (-382 (-522)))))) (($ (-522)) 34 (-3844 (|has| |#1| (-962 (-522))) (|has| |#1| (-971))))) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL (|has| |#1| (-971)))) (-3811 (($ $) NIL) (($ (-588 $)) NIL)) (-1591 (($ $ $) 203 (|has| |#1| (-514)))) (-2248 (($ $ $) 189 (|has| |#1| (-514)))) (-1551 (($ $ $) 193 (|has| |#1| (-514)))) (-3047 (($ $ $) 187 (|has| |#1| (-514)))) (-2039 (($ $ $) 191 (|has| |#1| (-514)))) (-4082 (((-108) (-110)) 9)) (-1856 (($ $) 166 (|has| |#1| (-514)))) (-2976 (($ $) 142 (|has| |#1| (-514)))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1839 (($ $) 162 (|has| |#1| (-514)))) (-2957 (($ $) 138 (|has| |#1| (-514)))) (-1873 (($ $) 170 (|has| |#1| (-514)))) (-3001 (($ $) 146 (|has| |#1| (-514)))) (-1899 (($ (-1085) $) NIL) (($ (-1085) $ $) NIL) (($ (-1085) $ $ $) NIL) (($ (-1085) $ $ $ $) NIL) (($ (-1085) (-588 $)) NIL)) (-3799 (($ $) 197 (|has| |#1| (-514)))) (-2022 (($ $) 195 (|has| |#1| (-514)))) (-2476 (($ $) 172 (|has| |#1| (-514)))) (-3011 (($ $) 148 (|has| |#1| (-514)))) (-1864 (($ $) 168 (|has| |#1| (-514)))) (-2989 (($ $) 144 (|has| |#1| (-514)))) (-1849 (($ $) 164 (|has| |#1| (-514)))) (-2966 (($ $) 140 (|has| |#1| (-514)))) (-4126 (($ $) 175 (|has| |#1| (-514)))) (-3622 (($ $ (-522)) NIL (-3844 (|has| |#1| (-447)) (|has| |#1| (-514)))) (($ $ (-708)) NIL (-3844 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026)))) (($ $ (-850)) NIL (-3844 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026))))) (-3697 (($) 20 (-3844 (|has| |#1| (-25)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))) CONST)) (-3758 (($ $) 226 (|has| |#1| (-514)))) (-3709 (($) 22 (-3844 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026))) CONST)) (-2245 (($ $) 177 (|has| |#1| (-514))) (($ $ $) 179 (|has| |#1| (-514)))) (-2440 (($ $) 224 (|has| |#1| (-514)))) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-971))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-971))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-971))) (($ $ (-1085)) NIL (|has| |#1| (-971)))) (-2866 (($ $) 228 (|has| |#1| (-514)))) (-2288 (($ $ $) 181 (|has| |#1| (-514)))) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 76)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 75)) (-1682 (($ (-1037 |#1| (-561 $)) (-1037 |#1| (-561 $))) 93 (|has| |#1| (-514))) (($ $ $) 42 (-3844 (|has| |#1| (-447)) (|has| |#1| (-514))))) (-1672 (($ $ $) 40 (-3844 (|has| |#1| (-21)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))))) (($ $) 29 (-3844 (|has| |#1| (-21)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))))) (-1661 (($ $ $) 38 (-3844 (|has| |#1| (-25)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))))) (** (($ $ $) 61 (|has| |#1| (-514))) (($ $ (-382 (-522))) 297 (|has| |#1| (-514))) (($ $ (-522)) 71 (-3844 (|has| |#1| (-447)) (|has| |#1| (-514)))) (($ $ (-708)) 68 (-3844 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026)))) (($ $ (-850)) 73 (-3844 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026))))) (* (($ (-382 (-522)) $) NIL (|has| |#1| (-514))) (($ $ (-382 (-522))) NIL (|has| |#1| (-514))) (($ |#1| $) NIL (|has| |#1| (-157))) (($ $ |#1|) NIL (|has| |#1| (-157))) (($ $ $) 36 (-3844 (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) (|has| |#1| (-1026)))) (($ (-522) $) 32 (-3844 (|has| |#1| (-21)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))))) (($ (-708) $) NIL (-3844 (|has| |#1| (-25)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))))) (($ (-850) $) NIL (-3844 (|has| |#1| (-25)) (-12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))))))
+(((-291 |#1|) (-13 (-405 |#1|) (-10 -8 (IF (|has| |#1| (-514)) (PROGN (-6 (-29 |#1|)) (-6 (-1106)) (-6 (-146)) (-6 (-574)) (-6 (-1049)) (-15 -2153 ($ $)) (-15 -3800 ((-108) $)) (-15 -1934 ($ $ (-522))) (IF (|has| |#1| (-426)) (PROGN (-15 -2313 ((-393 (-1081 $)) (-1081 $))) (-15 -3543 ((-393 (-1081 $)) (-1081 $)))) |%noBranch|) (IF (|has| |#1| (-962 (-522))) (-6 (-962 (-47))) |%noBranch|)) |%noBranch|))) (-784)) (T -291))
+((-2153 (*1 *1 *1) (-12 (-5 *1 (-291 *2)) (-4 *2 (-514)) (-4 *2 (-784)))) (-3800 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-291 *3)) (-4 *3 (-514)) (-4 *3 (-784)))) (-1934 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-291 *3)) (-4 *3 (-514)) (-4 *3 (-784)))) (-2313 (*1 *2 *3) (-12 (-5 *2 (-393 (-1081 *1))) (-5 *1 (-291 *4)) (-5 *3 (-1081 *1)) (-4 *4 (-426)) (-4 *4 (-514)) (-4 *4 (-784)))) (-3543 (*1 *2 *3) (-12 (-5 *2 (-393 (-1081 *1))) (-5 *1 (-291 *4)) (-5 *3 (-1081 *1)) (-4 *4 (-426)) (-4 *4 (-514)) (-4 *4 (-784)))))
+(-13 (-405 |#1|) (-10 -8 (IF (|has| |#1| (-514)) (PROGN (-6 (-29 |#1|)) (-6 (-1106)) (-6 (-146)) (-6 (-574)) (-6 (-1049)) (-15 -2153 ($ $)) (-15 -3800 ((-108) $)) (-15 -1934 ($ $ (-522))) (IF (|has| |#1| (-426)) (PROGN (-15 -2313 ((-393 (-1081 $)) (-1081 $))) (-15 -3543 ((-393 (-1081 $)) (-1081 $)))) |%noBranch|) (IF (|has| |#1| (-962 (-522))) (-6 (-962 (-47))) |%noBranch|)) |%noBranch|)))
+((-4186 (((-51) |#2| (-110) (-270 |#2|) (-588 |#2|)) 86) (((-51) |#2| (-110) (-270 |#2|) (-270 |#2|)) 82) (((-51) |#2| (-110) (-270 |#2|) |#2|) 84) (((-51) (-270 |#2|) (-110) (-270 |#2|) |#2|) 85) (((-51) (-588 |#2|) (-588 (-110)) (-270 |#2|) (-588 (-270 |#2|))) 78) (((-51) (-588 |#2|) (-588 (-110)) (-270 |#2|) (-588 |#2|)) 80) (((-51) (-588 (-270 |#2|)) (-588 (-110)) (-270 |#2|) (-588 |#2|)) 81) (((-51) (-588 (-270 |#2|)) (-588 (-110)) (-270 |#2|) (-588 (-270 |#2|))) 79) (((-51) (-270 |#2|) (-110) (-270 |#2|) (-588 |#2|)) 87) (((-51) (-270 |#2|) (-110) (-270 |#2|) (-270 |#2|)) 83)))
+(((-292 |#1| |#2|) (-10 -7 (-15 -4186 ((-51) (-270 |#2|) (-110) (-270 |#2|) (-270 |#2|))) (-15 -4186 ((-51) (-270 |#2|) (-110) (-270 |#2|) (-588 |#2|))) (-15 -4186 ((-51) (-588 (-270 |#2|)) (-588 (-110)) (-270 |#2|) (-588 (-270 |#2|)))) (-15 -4186 ((-51) (-588 (-270 |#2|)) (-588 (-110)) (-270 |#2|) (-588 |#2|))) (-15 -4186 ((-51) (-588 |#2|) (-588 (-110)) (-270 |#2|) (-588 |#2|))) (-15 -4186 ((-51) (-588 |#2|) (-588 (-110)) (-270 |#2|) (-588 (-270 |#2|)))) (-15 -4186 ((-51) (-270 |#2|) (-110) (-270 |#2|) |#2|)) (-15 -4186 ((-51) |#2| (-110) (-270 |#2|) |#2|)) (-15 -4186 ((-51) |#2| (-110) (-270 |#2|) (-270 |#2|))) (-15 -4186 ((-51) |#2| (-110) (-270 |#2|) (-588 |#2|)))) (-13 (-784) (-514) (-563 (-498))) (-405 |#1|)) (T -292))
+((-4186 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-110)) (-5 *5 (-270 *3)) (-5 *6 (-588 *3)) (-4 *3 (-405 *7)) (-4 *7 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *7 *3)))) (-4186 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-110)) (-5 *5 (-270 *3)) (-4 *3 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *6 *3)))) (-4186 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-110)) (-5 *5 (-270 *3)) (-4 *3 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *6 *3)))) (-4186 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-270 *5)) (-5 *4 (-110)) (-4 *5 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *6 *5)))) (-4186 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 (-110))) (-5 *6 (-588 (-270 *8))) (-4 *8 (-405 *7)) (-5 *5 (-270 *8)) (-4 *7 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *7 *8)))) (-4186 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-588 *7)) (-5 *4 (-588 (-110))) (-5 *5 (-270 *7)) (-4 *7 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *6 *7)))) (-4186 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-588 (-270 *8))) (-5 *4 (-588 (-110))) (-5 *5 (-270 *8)) (-5 *6 (-588 *8)) (-4 *8 (-405 *7)) (-4 *7 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *7 *8)))) (-4186 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-588 (-270 *7))) (-5 *4 (-588 (-110))) (-5 *5 (-270 *7)) (-4 *7 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *6 *7)))) (-4186 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-270 *7)) (-5 *4 (-110)) (-5 *5 (-588 *7)) (-4 *7 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *6 *7)))) (-4186 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-270 *6)) (-5 *4 (-110)) (-4 *6 (-405 *5)) (-4 *5 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51)) (-5 *1 (-292 *5 *6)))))
+(-10 -7 (-15 -4186 ((-51) (-270 |#2|) (-110) (-270 |#2|) (-270 |#2|))) (-15 -4186 ((-51) (-270 |#2|) (-110) (-270 |#2|) (-588 |#2|))) (-15 -4186 ((-51) (-588 (-270 |#2|)) (-588 (-110)) (-270 |#2|) (-588 (-270 |#2|)))) (-15 -4186 ((-51) (-588 (-270 |#2|)) (-588 (-110)) (-270 |#2|) (-588 |#2|))) (-15 -4186 ((-51) (-588 |#2|) (-588 (-110)) (-270 |#2|) (-588 |#2|))) (-15 -4186 ((-51) (-588 |#2|) (-588 (-110)) (-270 |#2|) (-588 (-270 |#2|)))) (-15 -4186 ((-51) (-270 |#2|) (-110) (-270 |#2|) |#2|)) (-15 -4186 ((-51) |#2| (-110) (-270 |#2|) |#2|)) (-15 -4186 ((-51) |#2| (-110) (-270 |#2|) (-270 |#2|))) (-15 -4186 ((-51) |#2| (-110) (-270 |#2|) (-588 |#2|))))
+((-2048 (((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-202) (-522) (-1068)) 46) (((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-202) (-522)) 47) (((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-1 (-202) (-202)) (-522) (-1068)) 43) (((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-1 (-202) (-202)) (-522)) 44)) (-2069 (((-1 (-202) (-202)) (-202)) 45)))
+(((-293) (-10 -7 (-15 -2069 ((-1 (-202) (-202)) (-202))) (-15 -2048 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-1 (-202) (-202)) (-522))) (-15 -2048 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-1 (-202) (-202)) (-522) (-1068))) (-15 -2048 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-202) (-522))) (-15 -2048 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-202) (-522) (-1068))))) (T -293))
+((-2048 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202))) (-5 *5 (-1009 (-202))) (-5 *6 (-202)) (-5 *7 (-522)) (-5 *8 (-1068)) (-5 *2 (-1116 (-855))) (-5 *1 (-293)))) (-2048 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202))) (-5 *5 (-1009 (-202))) (-5 *6 (-202)) (-5 *7 (-522)) (-5 *2 (-1116 (-855))) (-5 *1 (-293)))) (-2048 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202))) (-5 *5 (-1009 (-202))) (-5 *6 (-522)) (-5 *7 (-1068)) (-5 *2 (-1116 (-855))) (-5 *1 (-293)))) (-2048 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202))) (-5 *5 (-1009 (-202))) (-5 *6 (-522)) (-5 *2 (-1116 (-855))) (-5 *1 (-293)))) (-2069 (*1 *2 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *1 (-293)) (-5 *3 (-202)))))
+(-10 -7 (-15 -2069 ((-1 (-202) (-202)) (-202))) (-15 -2048 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-1 (-202) (-202)) (-522))) (-15 -2048 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-1 (-202) (-202)) (-522) (-1068))) (-15 -2048 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-202) (-522))) (-15 -2048 ((-1116 (-855)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-202) (-522) (-1068))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 24)) (-3533 (((-588 (-999)) $) NIL)) (-1660 (((-1085) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3495 (($ $ (-382 (-522))) NIL) (($ $ (-382 (-522)) (-382 (-522))) NIL)) (-3024 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) 19)) (-3044 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL (|has| |#1| (-338)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-338)))) (-2016 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-3023 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1270 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) NIL)) (-3066 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) NIL T CONST)) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-3241 (($ $) 31)) (-3920 (((-3 $ "failed") $) NIL)) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2725 (((-108) $) NIL (|has| |#1| (-338)))) (-3672 (((-108) $) NIL)) (-2980 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-382 (-522)) $) NIL) (((-382 (-522)) $ (-382 (-522))) 15)) (-2859 (((-108) $) NIL)) (-1811 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2895 (($ $ (-850)) NIL) (($ $ (-382 (-522))) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-382 (-522))) NIL) (($ $ (-999) (-382 (-522))) NIL) (($ $ (-588 (-999)) (-588 (-382 (-522)))) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1238 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL (|has| |#1| (-338)))) (-2611 (($ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) NIL (-3844 (-12 (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106)))))) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-3934 (($ $ (-382 (-522))) NIL)) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-4041 (((-382 (-522)) $) 16)) (-2643 (($ (-1151 |#1| |#2| |#3|)) 11)) (-3858 (((-1151 |#1| |#2| |#3|) $) 12)) (-3357 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-4031 (((-708) $) NIL (|has| |#1| (-338)))) (-2683 ((|#1| $ (-382 (-522))) NIL) (($ $ $) NIL (|has| (-382 (-522)) (-1026)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-2487 (((-382 (-522)) $) NIL)) (-1831 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) 10)) (-2217 (((-792) $) 37) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514)))) (-1643 ((|#1| $ (-382 (-522))) 29)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-1980 ((|#1| $) NIL)) (-1856 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1839 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-382 (-522))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 26)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 32)) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+(((-294 |#1| |#2| |#3|) (-13 (-1147 |#1|) (-729) (-10 -8 (-15 -2643 ($ (-1151 |#1| |#2| |#3|))) (-15 -3858 ((-1151 |#1| |#2| |#3|) $)) (-15 -4041 ((-382 (-522)) $)))) (-13 (-338) (-784)) (-1085) |#1|) (T -294))
+((-2643 (*1 *1 *2) (-12 (-5 *2 (-1151 *3 *4 *5)) (-4 *3 (-13 (-338) (-784))) (-14 *4 (-1085)) (-14 *5 *3) (-5 *1 (-294 *3 *4 *5)))) (-3858 (*1 *2 *1) (-12 (-5 *2 (-1151 *3 *4 *5)) (-5 *1 (-294 *3 *4 *5)) (-4 *3 (-13 (-338) (-784))) (-14 *4 (-1085)) (-14 *5 *3))) (-4041 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-294 *3 *4 *5)) (-4 *3 (-13 (-338) (-784))) (-14 *4 (-1085)) (-14 *5 *3))))
+(-13 (-1147 |#1|) (-729) (-10 -8 (-15 -2643 ($ (-1151 |#1| |#2| |#3|))) (-15 -3858 ((-1151 |#1| |#2| |#3|) $)) (-15 -4041 ((-382 (-522)) $))))
+((-1811 (((-2 (|:| -3858 (-708)) (|:| -3112 |#1|) (|:| |radicand| (-588 |#1|))) (-393 |#1|) (-708)) 24)) (-1238 (((-588 (-2 (|:| -3112 (-708)) (|:| |logand| |#1|))) (-393 |#1|)) 28)))
+(((-295 |#1|) (-10 -7 (-15 -1811 ((-2 (|:| -3858 (-708)) (|:| -3112 |#1|) (|:| |radicand| (-588 |#1|))) (-393 |#1|) (-708))) (-15 -1238 ((-588 (-2 (|:| -3112 (-708)) (|:| |logand| |#1|))) (-393 |#1|)))) (-514)) (T -295))
+((-1238 (*1 *2 *3) (-12 (-5 *3 (-393 *4)) (-4 *4 (-514)) (-5 *2 (-588 (-2 (|:| -3112 (-708)) (|:| |logand| *4)))) (-5 *1 (-295 *4)))) (-1811 (*1 *2 *3 *4) (-12 (-5 *3 (-393 *5)) (-4 *5 (-514)) (-5 *2 (-2 (|:| -3858 (-708)) (|:| -3112 *5) (|:| |radicand| (-588 *5)))) (-5 *1 (-295 *5)) (-5 *4 (-708)))))
+(-10 -7 (-15 -1811 ((-2 (|:| -3858 (-708)) (|:| -3112 |#1|) (|:| |radicand| (-588 |#1|))) (-393 |#1|) (-708))) (-15 -1238 ((-588 (-2 (|:| -3112 (-708)) (|:| |logand| |#1|))) (-393 |#1|))))
+((-3533 (((-588 |#2|) (-1081 |#4|)) 43)) (-1906 ((|#3| (-522)) 46)) (-2630 (((-1081 |#4|) (-1081 |#3|)) 30)) (-2813 (((-1081 |#4|) (-1081 |#4|) (-522)) 56)) (-3378 (((-1081 |#3|) (-1081 |#4|)) 21)) (-2487 (((-588 (-708)) (-1081 |#4|) (-588 |#2|)) 40)) (-2835 (((-1081 |#3|) (-1081 |#4|) (-588 |#2|) (-588 |#3|)) 35)))
+(((-296 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2835 ((-1081 |#3|) (-1081 |#4|) (-588 |#2|) (-588 |#3|))) (-15 -2487 ((-588 (-708)) (-1081 |#4|) (-588 |#2|))) (-15 -3533 ((-588 |#2|) (-1081 |#4|))) (-15 -3378 ((-1081 |#3|) (-1081 |#4|))) (-15 -2630 ((-1081 |#4|) (-1081 |#3|))) (-15 -2813 ((-1081 |#4|) (-1081 |#4|) (-522))) (-15 -1906 (|#3| (-522)))) (-730) (-784) (-971) (-878 |#3| |#1| |#2|)) (T -296))
+((-1906 (*1 *2 *3) (-12 (-5 *3 (-522)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-971)) (-5 *1 (-296 *4 *5 *2 *6)) (-4 *6 (-878 *2 *4 *5)))) (-2813 (*1 *2 *2 *3) (-12 (-5 *2 (-1081 *7)) (-5 *3 (-522)) (-4 *7 (-878 *6 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-5 *1 (-296 *4 *5 *6 *7)))) (-2630 (*1 *2 *3) (-12 (-5 *3 (-1081 *6)) (-4 *6 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-1081 *7)) (-5 *1 (-296 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))) (-3378 (*1 *2 *3) (-12 (-5 *3 (-1081 *7)) (-4 *7 (-878 *6 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-5 *2 (-1081 *6)) (-5 *1 (-296 *4 *5 *6 *7)))) (-3533 (*1 *2 *3) (-12 (-5 *3 (-1081 *7)) (-4 *7 (-878 *6 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-5 *2 (-588 *5)) (-5 *1 (-296 *4 *5 *6 *7)))) (-2487 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *8)) (-5 *4 (-588 *6)) (-4 *6 (-784)) (-4 *8 (-878 *7 *5 *6)) (-4 *5 (-730)) (-4 *7 (-971)) (-5 *2 (-588 (-708))) (-5 *1 (-296 *5 *6 *7 *8)))) (-2835 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1081 *9)) (-5 *4 (-588 *7)) (-5 *5 (-588 *8)) (-4 *7 (-784)) (-4 *8 (-971)) (-4 *9 (-878 *8 *6 *7)) (-4 *6 (-730)) (-5 *2 (-1081 *8)) (-5 *1 (-296 *6 *7 *8 *9)))))
+(-10 -7 (-15 -2835 ((-1081 |#3|) (-1081 |#4|) (-588 |#2|) (-588 |#3|))) (-15 -2487 ((-588 (-708)) (-1081 |#4|) (-588 |#2|))) (-15 -3533 ((-588 |#2|) (-1081 |#4|))) (-15 -3378 ((-1081 |#3|) (-1081 |#4|))) (-15 -2630 ((-1081 |#4|) (-1081 |#3|))) (-15 -2813 ((-1081 |#4|) (-1081 |#4|) (-522))) (-15 -1906 (|#3| (-522))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 14)) (-3024 (((-588 (-2 (|:| |gen| |#1|) (|:| -3357 (-522)))) $) 18)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1685 (((-708) $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL)) (-1478 ((|#1| $) NIL)) (-3108 ((|#1| $ (-522)) NIL)) (-2544 (((-522) $ (-522)) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2007 (($ (-1 |#1| |#1|) $) NIL)) (-3534 (($ (-1 (-522) (-522)) $) 10)) (-2311 (((-1068) $) NIL)) (-3075 (($ $ $) NIL (|has| (-522) (-729)))) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL) (($ |#1|) NIL)) (-1643 (((-522) |#1| $) NIL)) (-3697 (($) 15 T CONST)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) 21 (|has| |#1| (-784)))) (-1672 (($ $) 11) (($ $ $) 20)) (-1661 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ (-522)) NIL) (($ (-522) |#1|) 19)))
(((-297 |#1|) (-13 (-21) (-655 (-522)) (-298 |#1| (-522)) (-10 -7 (IF (|has| |#1| (-784)) (-6 (-784)) |%noBranch|))) (-1014)) (T -297))
NIL
(-13 (-21) (-655 (-522)) (-298 |#1| (-522)) (-10 -7 (IF (|has| |#1| (-784)) (-6 (-784)) |%noBranch|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2258 (((-588 (-2 (|:| |gen| |#1|) (|:| -3266 |#2|))) $) 27)) (-1233 (((-3 $ "failed") $ $) 19)) (-1629 (((-708) $) 28)) (-3175 (($) 17 T CONST)) (-1297 (((-3 |#1| "failed") $) 32)) (-1484 ((|#1| $) 31)) (-3750 ((|#1| $ (-522)) 25)) (-3816 ((|#2| $ (-522)) 26)) (-3896 (($ (-1 |#1| |#1|) $) 22)) (-1564 (($ (-1 |#2| |#2|) $) 23)) (-2385 (((-1068) $) 9)) (-3443 (($ $ $) 21 (|has| |#2| (-729)))) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ |#1|) 33)) (-3243 ((|#2| |#1| $) 24)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1602 (($ $ $) 14) (($ |#1| $) 30)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ |#2| |#1|) 29)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3024 (((-588 (-2 (|:| |gen| |#1|) (|:| -3357 |#2|))) $) 27)) (-2265 (((-3 $ "failed") $ $) 19)) (-1685 (((-708) $) 28)) (-3367 (($) 17 T CONST)) (-3700 (((-3 |#1| "failed") $) 32)) (-1478 ((|#1| $) 31)) (-3108 ((|#1| $ (-522)) 25)) (-2544 ((|#2| $ (-522)) 26)) (-2007 (($ (-1 |#1| |#1|) $) 22)) (-3534 (($ (-1 |#2| |#2|) $) 23)) (-2311 (((-1068) $) 9)) (-3075 (($ $ $) 21 (|has| |#2| (-729)))) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ |#1|) 33)) (-1643 ((|#2| |#1| $) 24)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1661 (($ $ $) 14) (($ |#1| $) 30)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ |#2| |#1|) 29)))
(((-298 |#1| |#2|) (-1197) (-1014) (-124)) (T -298))
-((-1602 (*1 *1 *2 *1) (-12 (-4 *1 (-298 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-124)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-298 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-124)))) (-1629 (*1 *2 *1) (-12 (-4 *1 (-298 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-124)) (-5 *2 (-708)))) (-2258 (*1 *2 *1) (-12 (-4 *1 (-298 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-124)) (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3266 *4)))))) (-3816 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-298 *4 *2)) (-4 *4 (-1014)) (-4 *2 (-124)))) (-3750 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-298 *2 *4)) (-4 *4 (-124)) (-4 *2 (-1014)))) (-3243 (*1 *2 *3 *1) (-12 (-4 *1 (-298 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-124)))) (-1564 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-298 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-124)))) (-3896 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-298 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-124)))) (-3443 (*1 *1 *1 *1) (-12 (-4 *1 (-298 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-124)) (-4 *3 (-729)))))
-(-13 (-124) (-962 |t#1|) (-10 -8 (-15 -1602 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -1629 ((-708) $)) (-15 -2258 ((-588 (-2 (|:| |gen| |t#1|) (|:| -3266 |t#2|))) $)) (-15 -3816 (|t#2| $ (-522))) (-15 -3750 (|t#1| $ (-522))) (-15 -3243 (|t#2| |t#1| $)) (-15 -1564 ($ (-1 |t#2| |t#2|) $)) (-15 -3896 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-729)) (-15 -3443 ($ $ $)) |%noBranch|)))
+((-1661 (*1 *1 *2 *1) (-12 (-4 *1 (-298 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-124)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-298 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-124)))) (-1685 (*1 *2 *1) (-12 (-4 *1 (-298 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-124)) (-5 *2 (-708)))) (-3024 (*1 *2 *1) (-12 (-4 *1 (-298 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-124)) (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3357 *4)))))) (-2544 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-298 *4 *2)) (-4 *4 (-1014)) (-4 *2 (-124)))) (-3108 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-298 *2 *4)) (-4 *4 (-124)) (-4 *2 (-1014)))) (-1643 (*1 *2 *3 *1) (-12 (-4 *1 (-298 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-124)))) (-3534 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-298 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-124)))) (-2007 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-298 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-124)))) (-3075 (*1 *1 *1 *1) (-12 (-4 *1 (-298 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-124)) (-4 *3 (-729)))))
+(-13 (-124) (-962 |t#1|) (-10 -8 (-15 -1661 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -1685 ((-708) $)) (-15 -3024 ((-588 (-2 (|:| |gen| |t#1|) (|:| -3357 |t#2|))) $)) (-15 -2544 (|t#2| $ (-522))) (-15 -3108 (|t#1| $ (-522))) (-15 -1643 (|t#2| |t#1| $)) (-15 -3534 ($ (-1 |t#2| |t#2|) $)) (-15 -2007 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-729)) (-15 -3075 ($ $ $)) |%noBranch|)))
(((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-962 |#1|) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2258 (((-588 (-2 (|:| |gen| |#1|) (|:| -3266 (-708)))) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1629 (((-708) $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL)) (-1484 ((|#1| $) NIL)) (-3750 ((|#1| $ (-522)) NIL)) (-3816 (((-708) $ (-522)) NIL)) (-3896 (($ (-1 |#1| |#1|) $) NIL)) (-1564 (($ (-1 (-708) (-708)) $) NIL)) (-2385 (((-1068) $) NIL)) (-3443 (($ $ $) NIL (|has| (-708) (-729)))) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL) (($ |#1|) NIL)) (-3243 (((-708) |#1| $) NIL)) (-3566 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1602 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-708) |#1|) NIL)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3024 (((-588 (-2 (|:| |gen| |#1|) (|:| -3357 (-708)))) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1685 (((-708) $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL)) (-1478 ((|#1| $) NIL)) (-3108 ((|#1| $ (-522)) NIL)) (-2544 (((-708) $ (-522)) NIL)) (-2007 (($ (-1 |#1| |#1|) $) NIL)) (-3534 (($ (-1 (-708) (-708)) $) NIL)) (-2311 (((-1068) $) NIL)) (-3075 (($ $ $) NIL (|has| (-708) (-729)))) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL) (($ |#1|) NIL)) (-1643 (((-708) |#1| $) NIL)) (-3697 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1661 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-708) |#1|) NIL)))
(((-299 |#1|) (-298 |#1| (-708)) (-1014)) (T -299))
NIL
(-298 |#1| (-708))
-((-2071 (($ $) 53)) (-2671 (($ $ |#2| |#3| $) 14)) (-3861 (($ (-1 |#3| |#3|) $) 35)) (-3108 (((-108) $) 27)) (-3118 ((|#2| $) 29)) (-2232 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 46)) (-2255 ((|#2| $) 49)) (-3916 (((-588 |#2|) $) 38)) (-3632 (($ $ $ (-708)) 23)) (-1620 (($ $ |#2|) 42)))
-(((-300 |#1| |#2| |#3|) (-10 -8 (-15 -2071 (|#1| |#1|)) (-15 -2255 (|#2| |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3632 (|#1| |#1| |#1| (-708))) (-15 -2671 (|#1| |#1| |#2| |#3| |#1|)) (-15 -3861 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3916 ((-588 |#2|) |#1|)) (-15 -3118 (|#2| |#1|)) (-15 -3108 ((-108) |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1620 (|#1| |#1| |#2|))) (-301 |#2| |#3|) (-971) (-729)) (T -300))
+((-2883 (($ $) 53)) (-3792 (($ $ |#2| |#3| $) 14)) (-1723 (($ (-1 |#3| |#3|) $) 35)) (-3199 (((-108) $) 27)) (-3207 ((|#2| $) 29)) (-2276 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 46)) (-2988 ((|#2| $) 49)) (-2180 (((-588 |#2|) $) 38)) (-1225 (($ $ $ (-708)) 23)) (-1682 (($ $ |#2|) 42)))
+(((-300 |#1| |#2| |#3|) (-10 -8 (-15 -2883 (|#1| |#1|)) (-15 -2988 (|#2| |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1225 (|#1| |#1| |#1| (-708))) (-15 -3792 (|#1| |#1| |#2| |#3| |#1|)) (-15 -1723 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2180 ((-588 |#2|) |#1|)) (-15 -3207 (|#2| |#1|)) (-15 -3199 ((-108) |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1682 (|#1| |#1| |#2|))) (-301 |#2| |#3|) (-971) (-729)) (T -300))
NIL
-(-10 -8 (-15 -2071 (|#1| |#1|)) (-15 -2255 (|#2| |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3632 (|#1| |#1| |#1| (-708))) (-15 -2671 (|#1| |#1| |#2| |#3| |#1|)) (-15 -3861 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3916 ((-588 |#2|) |#1|)) (-15 -3118 (|#2| |#1|)) (-15 -3108 ((-108) |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1620 (|#1| |#1| |#2|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2022 (($ $) 52 (|has| |#1| (-514)))) (-3739 (((-108) $) 54 (|has| |#1| (-514)))) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-1297 (((-3 (-522) "failed") $) 90 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 88 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 87)) (-1484 (((-522) $) 91 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 89 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 86)) (-3156 (($ $) 60)) (-2682 (((-3 $ "failed") $) 34)) (-2071 (($ $) 75 (|has| |#1| (-426)))) (-2671 (($ $ |#1| |#2| $) 79)) (-2782 (((-108) $) 31)) (-2112 (((-708) $) 82)) (-3340 (((-108) $) 62)) (-4049 (($ |#1| |#2|) 61)) (-2925 ((|#2| $) 81)) (-3861 (($ (-1 |#2| |#2|) $) 80)) (-1391 (($ (-1 |#1| |#1|) $) 63)) (-3128 (($ $) 65)) (-3138 ((|#1| $) 66)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-3108 (((-108) $) 85)) (-3118 ((|#1| $) 84)) (-2232 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514))) (((-3 $ "failed") $ |#1|) 77 (|has| |#1| (-514)))) (-2793 ((|#2| $) 64)) (-2255 ((|#1| $) 76 (|has| |#1| (-426)))) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 49 (|has| |#1| (-514))) (($ |#1|) 47) (($ (-382 (-522))) 57 (-3708 (|has| |#1| (-962 (-382 (-522)))) (|has| |#1| (-37 (-382 (-522))))))) (-3916 (((-588 |#1|) $) 83)) (-3243 ((|#1| $ |#2|) 59)) (-2143 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-3632 (($ $ $ (-708)) 78 (|has| |#1| (-157)))) (-3958 (((-108) $ $) 53 (|has| |#1| (-514)))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#1|) 58 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
+(-10 -8 (-15 -2883 (|#1| |#1|)) (-15 -2988 (|#2| |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1225 (|#1| |#1| |#1| (-708))) (-15 -3792 (|#1| |#1| |#2| |#3| |#1|)) (-15 -1723 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2180 ((-588 |#2|) |#1|)) (-15 -3207 (|#2| |#1|)) (-15 -3199 ((-108) |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1682 (|#1| |#1| |#2|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2298 (($ $) 52 (|has| |#1| (-514)))) (-3007 (((-108) $) 54 (|has| |#1| (-514)))) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3700 (((-3 (-522) "failed") $) 90 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 88 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 87)) (-1478 (((-522) $) 91 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 89 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 86)) (-3241 (($ $) 60)) (-3920 (((-3 $ "failed") $) 34)) (-2883 (($ $) 75 (|has| |#1| (-426)))) (-3792 (($ $ |#1| |#2| $) 79)) (-2859 (((-108) $) 31)) (-1391 (((-708) $) 82)) (-1374 (((-108) $) 62)) (-3500 (($ |#1| |#2|) 61)) (-3564 ((|#2| $) 81)) (-1723 (($ (-1 |#2| |#2|) $) 80)) (-3810 (($ (-1 |#1| |#1|) $) 63)) (-3216 (($ $) 65)) (-3224 ((|#1| $) 66)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-3199 (((-108) $) 85)) (-3207 ((|#1| $) 84)) (-2276 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514))) (((-3 $ "failed") $ |#1|) 77 (|has| |#1| (-514)))) (-2487 ((|#2| $) 64)) (-2988 ((|#1| $) 76 (|has| |#1| (-426)))) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 49 (|has| |#1| (-514))) (($ |#1|) 47) (($ (-382 (-522))) 57 (-3844 (|has| |#1| (-962 (-382 (-522)))) (|has| |#1| (-37 (-382 (-522))))))) (-2180 (((-588 |#1|) $) 83)) (-1643 ((|#1| $ |#2|) 59)) (-3040 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-1225 (($ $ $ (-708)) 78 (|has| |#1| (-157)))) (-1407 (((-108) $ $) 53 (|has| |#1| (-514)))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#1|) 58 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
(((-301 |#1| |#2|) (-1197) (-971) (-729)) (T -301))
-((-3108 (*1 *2 *1) (-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-5 *2 (-108)))) (-3118 (*1 *2 *1) (-12 (-4 *1 (-301 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)))) (-3916 (*1 *2 *1) (-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-5 *2 (-588 *3)))) (-2112 (*1 *2 *1) (-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-5 *2 (-708)))) (-2925 (*1 *2 *1) (-12 (-4 *1 (-301 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-3861 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)))) (-2671 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-301 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)))) (-3632 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-4 *3 (-157)))) (-2232 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-301 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)) (-4 *2 (-514)))) (-2255 (*1 *2 *1) (-12 (-4 *1 (-301 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)) (-4 *2 (-426)))) (-2071 (*1 *1 *1) (-12 (-4 *1 (-301 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)) (-4 *2 (-426)))))
-(-13 (-46 |t#1| |t#2|) (-386 |t#1|) (-10 -8 (-15 -3108 ((-108) $)) (-15 -3118 (|t#1| $)) (-15 -3916 ((-588 |t#1|) $)) (-15 -2112 ((-708) $)) (-15 -2925 (|t#2| $)) (-15 -3861 ($ (-1 |t#2| |t#2|) $)) (-15 -2671 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-157)) (-15 -3632 ($ $ $ (-708))) |%noBranch|) (IF (|has| |t#1| (-514)) (-15 -2232 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-426)) (PROGN (-15 -2255 (|t#1| $)) (-15 -2071 ($ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-266) |has| |#1| (-514)) ((-386 |#1|) . T) ((-514) |has| |#1| (-514)) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) . T) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-3537 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3216 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-4141 (((-108) $ (-708)) NIL)) (-2498 (((-108) (-108)) NIL)) (-2379 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-2790 (($ (-1 (-108) |#1|) $) NIL)) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-3362 (($ $) NIL (|has| |#1| (-1014)))) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3859 (($ |#1| $) NIL (|has| |#1| (-1014))) (($ (-1 (-108) |#1|) $) NIL)) (-1423 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) NIL)) (-3238 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-3381 (($ $ (-522)) NIL)) (-3260 (((-708) $) NIL)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1811 (($ (-708) |#1|) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-1369 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-2160 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4095 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-1661 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3080 (($ (-588 |#1|)) NIL)) (-2294 ((|#1| $) NIL (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2602 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-3681 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3696 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) NIL)) (-2630 (($ $ $) NIL) (($ $ |#1|) NIL)) (-4165 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-302 |#1|) (-13 (-19 |#1|) (-258 |#1|) (-10 -8 (-15 -3080 ($ (-588 |#1|))) (-15 -3260 ((-708) $)) (-15 -3381 ($ $ (-522))) (-15 -2498 ((-108) (-108))))) (-1120)) (T -302))
-((-3080 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-302 *3)))) (-3260 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-302 *3)) (-4 *3 (-1120)))) (-3381 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-302 *3)) (-4 *3 (-1120)))) (-2498 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-302 *3)) (-4 *3 (-1120)))))
-(-13 (-19 |#1|) (-258 |#1|) (-10 -8 (-15 -3080 ($ (-588 |#1|))) (-15 -3260 ((-708) $)) (-15 -3381 ($ $ (-522))) (-15 -2498 ((-108) (-108)))))
-((-1651 (((-108) $) 42)) (-2219 (((-708)) 22)) (-1865 ((|#2| $) 46) (($ $ (-850)) 103)) (-1629 (((-708)) 97)) (-3766 (($ (-1166 |#2|)) 20)) (-2741 (((-108) $) 115)) (-2100 ((|#2| $) 48) (($ $ (-850)) 101)) (-1712 (((-1081 |#2|) $) NIL) (((-1081 $) $ (-850)) 94)) (-3074 (((-1081 |#2|) $) 83)) (-2941 (((-1081 |#2|) $) 80) (((-3 (-1081 |#2|) "failed") $ $) 77)) (-1425 (($ $ (-1081 |#2|)) 53)) (-2621 (((-770 (-850))) 28) (((-850)) 43)) (-4078 (((-126)) 25)) (-2793 (((-770 (-850)) $) 30) (((-850) $) 116)) (-1299 (($) 109)) (-3677 (((-1166 |#2|) $) NIL) (((-628 |#2|) (-1166 $)) 39)) (-2143 (($ $) NIL) (((-3 $ "failed") $) 86)) (-2351 (((-108) $) 41)))
-(((-303 |#1| |#2|) (-10 -8 (-15 -2143 ((-3 |#1| "failed") |#1|)) (-15 -1629 ((-708))) (-15 -2143 (|#1| |#1|)) (-15 -2941 ((-3 (-1081 |#2|) "failed") |#1| |#1|)) (-15 -2941 ((-1081 |#2|) |#1|)) (-15 -3074 ((-1081 |#2|) |#1|)) (-15 -1425 (|#1| |#1| (-1081 |#2|))) (-15 -2741 ((-108) |#1|)) (-15 -1299 (|#1|)) (-15 -1865 (|#1| |#1| (-850))) (-15 -2100 (|#1| |#1| (-850))) (-15 -1712 ((-1081 |#1|) |#1| (-850))) (-15 -1865 (|#2| |#1|)) (-15 -2100 (|#2| |#1|)) (-15 -2793 ((-850) |#1|)) (-15 -2621 ((-850))) (-15 -1712 ((-1081 |#2|) |#1|)) (-15 -3766 (|#1| (-1166 |#2|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1|)) (-15 -2219 ((-708))) (-15 -2621 ((-770 (-850)))) (-15 -2793 ((-770 (-850)) |#1|)) (-15 -1651 ((-108) |#1|)) (-15 -2351 ((-108) |#1|)) (-15 -4078 ((-126)))) (-304 |#2|) (-338)) (T -303))
-((-4078 (*1 *2) (-12 (-4 *4 (-338)) (-5 *2 (-126)) (-5 *1 (-303 *3 *4)) (-4 *3 (-304 *4)))) (-2621 (*1 *2) (-12 (-4 *4 (-338)) (-5 *2 (-770 (-850))) (-5 *1 (-303 *3 *4)) (-4 *3 (-304 *4)))) (-2219 (*1 *2) (-12 (-4 *4 (-338)) (-5 *2 (-708)) (-5 *1 (-303 *3 *4)) (-4 *3 (-304 *4)))) (-2621 (*1 *2) (-12 (-4 *4 (-338)) (-5 *2 (-850)) (-5 *1 (-303 *3 *4)) (-4 *3 (-304 *4)))) (-1629 (*1 *2) (-12 (-4 *4 (-338)) (-5 *2 (-708)) (-5 *1 (-303 *3 *4)) (-4 *3 (-304 *4)))))
-(-10 -8 (-15 -2143 ((-3 |#1| "failed") |#1|)) (-15 -1629 ((-708))) (-15 -2143 (|#1| |#1|)) (-15 -2941 ((-3 (-1081 |#2|) "failed") |#1| |#1|)) (-15 -2941 ((-1081 |#2|) |#1|)) (-15 -3074 ((-1081 |#2|) |#1|)) (-15 -1425 (|#1| |#1| (-1081 |#2|))) (-15 -2741 ((-108) |#1|)) (-15 -1299 (|#1|)) (-15 -1865 (|#1| |#1| (-850))) (-15 -2100 (|#1| |#1| (-850))) (-15 -1712 ((-1081 |#1|) |#1| (-850))) (-15 -1865 (|#2| |#1|)) (-15 -2100 (|#2| |#1|)) (-15 -2793 ((-850) |#1|)) (-15 -2621 ((-850))) (-15 -1712 ((-1081 |#2|) |#1|)) (-15 -3766 (|#1| (-1166 |#2|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1|)) (-15 -2219 ((-708))) (-15 -2621 ((-770 (-850)))) (-15 -2793 ((-770 (-850)) |#1|)) (-15 -1651 ((-108) |#1|)) (-15 -2351 ((-108) |#1|)) (-15 -4078 ((-126))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1651 (((-108) $) 94)) (-2219 (((-708)) 90)) (-1865 ((|#1| $) 140) (($ $ (-850)) 137 (|has| |#1| (-343)))) (-1398 (((-1094 (-850) (-708)) (-522)) 122 (|has| |#1| (-343)))) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 73)) (-3450 (((-393 $) $) 72)) (-1687 (((-108) $ $) 59)) (-1629 (((-708)) 112 (|has| |#1| (-343)))) (-3175 (($) 17 T CONST)) (-1297 (((-3 |#1| "failed") $) 101)) (-1484 ((|#1| $) 100)) (-3766 (($ (-1166 |#1|)) 146)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) 128 (|has| |#1| (-343)))) (-2277 (($ $ $) 55)) (-2682 (((-3 $ "failed") $) 34)) (-3255 (($) 109 (|has| |#1| (-343)))) (-2254 (($ $ $) 56)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-1223 (($) 124 (|has| |#1| (-343)))) (-2511 (((-108) $) 125 (|has| |#1| (-343)))) (-2111 (($ $ (-708)) 87 (-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) 86 (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2813 (((-108) $) 71)) (-3714 (((-850) $) 127 (|has| |#1| (-343))) (((-770 (-850)) $) 84 (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2782 (((-108) $) 31)) (-3400 (($) 135 (|has| |#1| (-343)))) (-2741 (((-108) $) 134 (|has| |#1| (-343)))) (-2100 ((|#1| $) 141) (($ $ (-850)) 138 (|has| |#1| (-343)))) (-3004 (((-3 $ "failed") $) 113 (|has| |#1| (-343)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-1712 (((-1081 |#1|) $) 145) (((-1081 $) $ (-850)) 139 (|has| |#1| (-343)))) (-2120 (((-850) $) 110 (|has| |#1| (-343)))) (-3074 (((-1081 |#1|) $) 131 (|has| |#1| (-343)))) (-2941 (((-1081 |#1|) $) 130 (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) 129 (|has| |#1| (-343)))) (-1425 (($ $ (-1081 |#1|)) 132 (|has| |#1| (-343)))) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 70)) (-3802 (($) 114 (|has| |#1| (-343)) CONST)) (-2717 (($ (-850)) 111 (|has| |#1| (-343)))) (-2822 (((-108) $) 93)) (-4151 (((-1032) $) 10)) (-1383 (($) 133 (|has| |#1| (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) 121 (|has| |#1| (-343)))) (-1916 (((-393 $) $) 74)) (-2621 (((-770 (-850))) 91) (((-850)) 143)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-3730 (((-708) $) 58)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57)) (-3018 (((-708) $) 126 (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) 85 (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-4078 (((-126)) 99)) (-2157 (($ $) 118 (|has| |#1| (-343))) (($ $ (-708)) 116 (|has| |#1| (-343)))) (-2793 (((-770 (-850)) $) 92) (((-850) $) 142)) (-1479 (((-1081 |#1|)) 144)) (-2581 (($) 123 (|has| |#1| (-343)))) (-1299 (($) 136 (|has| |#1| (-343)))) (-3677 (((-1166 |#1|) $) 148) (((-628 |#1|) (-1166 $)) 147)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 120 (|has| |#1| (-343)))) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65) (($ |#1|) 102)) (-2143 (($ $) 119 (|has| |#1| (-343))) (((-3 $ "failed") $) 83 (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2323 (((-708)) 29)) (-3855 (((-1166 $)) 150) (((-1166 $) (-850)) 149)) (-3958 (((-108) $ $) 39)) (-2351 (((-108) $) 95)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-3428 (($ $) 89 (|has| |#1| (-343))) (($ $ (-708)) 88 (|has| |#1| (-343)))) (-2213 (($ $) 117 (|has| |#1| (-343))) (($ $ (-708)) 115 (|has| |#1| (-343)))) (-1531 (((-108) $ $) 6)) (-1620 (($ $ $) 64) (($ $ |#1|) 98)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66) (($ $ |#1|) 97) (($ |#1| $) 96)))
+((-3199 (*1 *2 *1) (-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-5 *2 (-108)))) (-3207 (*1 *2 *1) (-12 (-4 *1 (-301 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)))) (-2180 (*1 *2 *1) (-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-5 *2 (-588 *3)))) (-1391 (*1 *2 *1) (-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-5 *2 (-708)))) (-3564 (*1 *2 *1) (-12 (-4 *1 (-301 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-1723 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)))) (-3792 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-301 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)))) (-1225 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-4 *3 (-157)))) (-2276 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-301 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)) (-4 *2 (-514)))) (-2988 (*1 *2 *1) (-12 (-4 *1 (-301 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)) (-4 *2 (-426)))) (-2883 (*1 *1 *1) (-12 (-4 *1 (-301 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)) (-4 *2 (-426)))))
+(-13 (-46 |t#1| |t#2|) (-386 |t#1|) (-10 -8 (-15 -3199 ((-108) $)) (-15 -3207 (|t#1| $)) (-15 -2180 ((-588 |t#1|) $)) (-15 -1391 ((-708) $)) (-15 -3564 (|t#2| $)) (-15 -1723 ($ (-1 |t#2| |t#2|) $)) (-15 -3792 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-157)) (-15 -1225 ($ $ $ (-708))) |%noBranch|) (IF (|has| |t#1| (-514)) (-15 -2276 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-426)) (PROGN (-15 -2988 (|t#1| $)) (-15 -2883 ($ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-266) |has| |#1| (-514)) ((-386 |#1|) . T) ((-514) |has| |#1| (-514)) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) . T) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-2806 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3296 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-2717 (((-108) $ (-708)) NIL)) (-4159 (((-108) (-108)) NIL)) (-2437 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1213 (($ (-1 (-108) |#1|) $) NIL)) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-1581 (($ $) NIL (|has| |#1| (-1014)))) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1700 (($ |#1| $) NIL (|has| |#1| (-1014))) (($ (-1 (-108) |#1|) $) NIL)) (-1424 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) NIL)) (-3314 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-3573 (($ $ (-522)) NIL)) (-1803 (((-708) $) NIL)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1893 (($ (-708) |#1|) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-3557 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-3164 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-3365 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-1731 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3706 (($ (-588 |#1|)) NIL)) (-2337 ((|#1| $) NIL (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1972 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-3551 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3835 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) NIL)) (-2335 (($ $ $) NIL) (($ $ |#1|) NIL)) (-4170 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-302 |#1|) (-13 (-19 |#1|) (-258 |#1|) (-10 -8 (-15 -3706 ($ (-588 |#1|))) (-15 -1803 ((-708) $)) (-15 -3573 ($ $ (-522))) (-15 -4159 ((-108) (-108))))) (-1120)) (T -302))
+((-3706 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-302 *3)))) (-1803 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-302 *3)) (-4 *3 (-1120)))) (-3573 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-302 *3)) (-4 *3 (-1120)))) (-4159 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-302 *3)) (-4 *3 (-1120)))))
+(-13 (-19 |#1|) (-258 |#1|) (-10 -8 (-15 -3706 ($ (-588 |#1|))) (-15 -1803 ((-708) $)) (-15 -3573 ($ $ (-522))) (-15 -4159 ((-108) (-108)))))
+((-2400 (((-108) $) 42)) (-1593 (((-708)) 22)) (-1945 ((|#2| $) 46) (($ $ (-850)) 103)) (-1685 (((-708)) 97)) (-3225 (($ (-1166 |#2|)) 20)) (-1372 (((-108) $) 115)) (-1269 ((|#2| $) 48) (($ $ (-850)) 101)) (-4199 (((-1081 |#2|) $) NIL) (((-1081 $) $ (-850)) 94)) (-3657 (((-1081 |#2|) $) 83)) (-3723 (((-1081 |#2|) $) 80) (((-3 (-1081 |#2|) "failed") $ $) 77)) (-2259 (($ $ (-1081 |#2|)) 53)) (-1713 (((-770 (-850))) 28) (((-850)) 43)) (-3222 (((-126)) 25)) (-2487 (((-770 (-850)) $) 30) (((-850) $) 116)) (-1705 (($) 109)) (-3510 (((-1166 |#2|) $) NIL) (((-628 |#2|) (-1166 $)) 39)) (-3040 (($ $) NIL) (((-3 $ "failed") $) 86)) (-1711 (((-108) $) 41)))
+(((-303 |#1| |#2|) (-10 -8 (-15 -3040 ((-3 |#1| "failed") |#1|)) (-15 -1685 ((-708))) (-15 -3040 (|#1| |#1|)) (-15 -3723 ((-3 (-1081 |#2|) "failed") |#1| |#1|)) (-15 -3723 ((-1081 |#2|) |#1|)) (-15 -3657 ((-1081 |#2|) |#1|)) (-15 -2259 (|#1| |#1| (-1081 |#2|))) (-15 -1372 ((-108) |#1|)) (-15 -1705 (|#1|)) (-15 -1945 (|#1| |#1| (-850))) (-15 -1269 (|#1| |#1| (-850))) (-15 -4199 ((-1081 |#1|) |#1| (-850))) (-15 -1945 (|#2| |#1|)) (-15 -1269 (|#2| |#1|)) (-15 -2487 ((-850) |#1|)) (-15 -1713 ((-850))) (-15 -4199 ((-1081 |#2|) |#1|)) (-15 -3225 (|#1| (-1166 |#2|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1|)) (-15 -1593 ((-708))) (-15 -1713 ((-770 (-850)))) (-15 -2487 ((-770 (-850)) |#1|)) (-15 -2400 ((-108) |#1|)) (-15 -1711 ((-108) |#1|)) (-15 -3222 ((-126)))) (-304 |#2|) (-338)) (T -303))
+((-3222 (*1 *2) (-12 (-4 *4 (-338)) (-5 *2 (-126)) (-5 *1 (-303 *3 *4)) (-4 *3 (-304 *4)))) (-1713 (*1 *2) (-12 (-4 *4 (-338)) (-5 *2 (-770 (-850))) (-5 *1 (-303 *3 *4)) (-4 *3 (-304 *4)))) (-1593 (*1 *2) (-12 (-4 *4 (-338)) (-5 *2 (-708)) (-5 *1 (-303 *3 *4)) (-4 *3 (-304 *4)))) (-1713 (*1 *2) (-12 (-4 *4 (-338)) (-5 *2 (-850)) (-5 *1 (-303 *3 *4)) (-4 *3 (-304 *4)))) (-1685 (*1 *2) (-12 (-4 *4 (-338)) (-5 *2 (-708)) (-5 *1 (-303 *3 *4)) (-4 *3 (-304 *4)))))
+(-10 -8 (-15 -3040 ((-3 |#1| "failed") |#1|)) (-15 -1685 ((-708))) (-15 -3040 (|#1| |#1|)) (-15 -3723 ((-3 (-1081 |#2|) "failed") |#1| |#1|)) (-15 -3723 ((-1081 |#2|) |#1|)) (-15 -3657 ((-1081 |#2|) |#1|)) (-15 -2259 (|#1| |#1| (-1081 |#2|))) (-15 -1372 ((-108) |#1|)) (-15 -1705 (|#1|)) (-15 -1945 (|#1| |#1| (-850))) (-15 -1269 (|#1| |#1| (-850))) (-15 -4199 ((-1081 |#1|) |#1| (-850))) (-15 -1945 (|#2| |#1|)) (-15 -1269 (|#2| |#1|)) (-15 -2487 ((-850) |#1|)) (-15 -1713 ((-850))) (-15 -4199 ((-1081 |#2|) |#1|)) (-15 -3225 (|#1| (-1166 |#2|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1|)) (-15 -1593 ((-708))) (-15 -1713 ((-770 (-850)))) (-15 -2487 ((-770 (-850)) |#1|)) (-15 -2400 ((-108) |#1|)) (-15 -1711 ((-108) |#1|)) (-15 -3222 ((-126))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2400 (((-108) $) 94)) (-1593 (((-708)) 90)) (-1945 ((|#1| $) 140) (($ $ (-850)) 137 (|has| |#1| (-343)))) (-3833 (((-1094 (-850) (-708)) (-522)) 122 (|has| |#1| (-343)))) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 73)) (-3133 (((-393 $) $) 72)) (-2805 (((-108) $ $) 59)) (-1685 (((-708)) 112 (|has| |#1| (-343)))) (-3367 (($) 17 T CONST)) (-3700 (((-3 |#1| "failed") $) 101)) (-1478 ((|#1| $) 100)) (-3225 (($ (-1166 |#1|)) 146)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) 128 (|has| |#1| (-343)))) (-2333 (($ $ $) 55)) (-3920 (((-3 $ "failed") $) 34)) (-3344 (($) 109 (|has| |#1| (-343)))) (-2303 (($ $ $) 56)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-2160 (($) 124 (|has| |#1| (-343)))) (-2087 (((-108) $) 125 (|has| |#1| (-343)))) (-1380 (($ $ (-708)) 87 (-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) 86 (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2725 (((-108) $) 71)) (-3872 (((-850) $) 127 (|has| |#1| (-343))) (((-770 (-850)) $) 84 (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2859 (((-108) $) 31)) (-3768 (($) 135 (|has| |#1| (-343)))) (-1372 (((-108) $) 134 (|has| |#1| (-343)))) (-1269 ((|#1| $) 141) (($ $ (-850)) 138 (|has| |#1| (-343)))) (-4208 (((-3 $ "failed") $) 113 (|has| |#1| (-343)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-4199 (((-1081 |#1|) $) 145) (((-1081 $) $ (-850)) 139 (|has| |#1| (-343)))) (-1475 (((-850) $) 110 (|has| |#1| (-343)))) (-3657 (((-1081 |#1|) $) 131 (|has| |#1| (-343)))) (-3723 (((-1081 |#1|) $) 130 (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) 129 (|has| |#1| (-343)))) (-2259 (($ $ (-1081 |#1|)) 132 (|has| |#1| (-343)))) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 70)) (-3937 (($) 114 (|has| |#1| (-343)) CONST)) (-2882 (($ (-850)) 111 (|has| |#1| (-343)))) (-2804 (((-108) $) 93)) (-4174 (((-1032) $) 10)) (-1368 (($) 133 (|has| |#1| (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) 121 (|has| |#1| (-343)))) (-2006 (((-393 $) $) 74)) (-1713 (((-770 (-850))) 91) (((-850)) 143)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-4031 (((-708) $) 58)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57)) (-1304 (((-708) $) 126 (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) 85 (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-3222 (((-126)) 99)) (-2731 (($ $) 118 (|has| |#1| (-343))) (($ $ (-708)) 116 (|has| |#1| (-343)))) (-2487 (((-770 (-850)) $) 92) (((-850) $) 142)) (-1579 (((-1081 |#1|)) 144)) (-2670 (($) 123 (|has| |#1| (-343)))) (-1705 (($) 136 (|has| |#1| (-343)))) (-3510 (((-1166 |#1|) $) 148) (((-628 |#1|) (-1166 $)) 147)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 120 (|has| |#1| (-343)))) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65) (($ |#1|) 102)) (-3040 (($ $) 119 (|has| |#1| (-343))) (((-3 $ "failed") $) 83 (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2742 (((-708)) 29)) (-2905 (((-1166 $)) 150) (((-1166 $) (-850)) 149)) (-1407 (((-108) $ $) 39)) (-1711 (((-108) $) 95)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2938 (($ $) 89 (|has| |#1| (-343))) (($ $ (-708)) 88 (|has| |#1| (-343)))) (-2252 (($ $) 117 (|has| |#1| (-343))) (($ $ (-708)) 115 (|has| |#1| (-343)))) (-1562 (((-108) $ $) 6)) (-1682 (($ $ $) 64) (($ $ |#1|) 98)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66) (($ $ |#1|) 97) (($ |#1| $) 96)))
(((-304 |#1|) (-1197) (-338)) (T -304))
-((-3855 (*1 *2) (-12 (-4 *3 (-338)) (-5 *2 (-1166 *1)) (-4 *1 (-304 *3)))) (-3855 (*1 *2 *3) (-12 (-5 *3 (-850)) (-4 *4 (-338)) (-5 *2 (-1166 *1)) (-4 *1 (-304 *4)))) (-3677 (*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-1166 *3)))) (-3677 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-304 *4)) (-4 *4 (-338)) (-5 *2 (-628 *4)))) (-3766 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-338)) (-4 *1 (-304 *3)))) (-1712 (*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-1081 *3)))) (-1479 (*1 *2) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-1081 *3)))) (-2621 (*1 *2) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-850)))) (-2793 (*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-850)))) (-2100 (*1 *2 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-338)))) (-1865 (*1 *2 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-338)))) (-1712 (*1 *2 *1 *3) (-12 (-5 *3 (-850)) (-4 *4 (-343)) (-4 *4 (-338)) (-5 *2 (-1081 *1)) (-4 *1 (-304 *4)))) (-2100 (*1 *1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)))) (-1865 (*1 *1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)))) (-1299 (*1 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-343)) (-4 *2 (-338)))) (-3400 (*1 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-343)) (-4 *2 (-338)))) (-2741 (*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)) (-5 *2 (-108)))) (-1383 (*1 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-343)) (-4 *2 (-338)))) (-1425 (*1 *1 *1 *2) (-12 (-5 *2 (-1081 *3)) (-4 *3 (-343)) (-4 *1 (-304 *3)) (-4 *3 (-338)))) (-3074 (*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)) (-5 *2 (-1081 *3)))) (-2941 (*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)) (-5 *2 (-1081 *3)))) (-2941 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)) (-5 *2 (-1081 *3)))))
-(-13 (-1183 |t#1|) (-962 |t#1|) (-10 -8 (-15 -3855 ((-1166 $))) (-15 -3855 ((-1166 $) (-850))) (-15 -3677 ((-1166 |t#1|) $)) (-15 -3677 ((-628 |t#1|) (-1166 $))) (-15 -3766 ($ (-1166 |t#1|))) (-15 -1712 ((-1081 |t#1|) $)) (-15 -1479 ((-1081 |t#1|))) (-15 -2621 ((-850))) (-15 -2793 ((-850) $)) (-15 -2100 (|t#1| $)) (-15 -1865 (|t#1| $)) (IF (|has| |t#1| (-343)) (PROGN (-6 (-324)) (-15 -1712 ((-1081 $) $ (-850))) (-15 -2100 ($ $ (-850))) (-15 -1865 ($ $ (-850))) (-15 -1299 ($)) (-15 -3400 ($)) (-15 -2741 ((-108) $)) (-15 -1383 ($)) (-15 -1425 ($ $ (-1081 |t#1|))) (-15 -3074 ((-1081 |t#1|) $)) (-15 -2941 ((-1081 |t#1|) $)) (-15 -2941 ((-3 (-1081 |t#1|) "failed") $ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-133) -3708 (|has| |#1| (-343)) (|has| |#1| (-133))) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) . T) ((-210) |has| |#1| (-343)) ((-220) . T) ((-266) . T) ((-283) . T) ((-1183 |#1|) . T) ((-338) . T) ((-377) -3708 (|has| |#1| (-343)) (|has| |#1| (-133))) ((-343) |has| |#1| (-343)) ((-324) |has| |#1| (-343)) ((-426) . T) ((-514) . T) ((-590 #0#) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #0#) . T) ((-655 |#1|) . T) ((-655 $) . T) ((-664) . T) ((-849) . T) ((-962 |#1|) . T) ((-977 #0#) . T) ((-977 |#1|) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) |has| |#1| (-343)) ((-1124) . T) ((-1173 |#1|) . T))
-((-1416 (((-108) $ $) NIL)) (-3962 (($ (-1084) $) 88)) (-2755 (($) 76)) (-3777 (((-1032) (-1032)) 11)) (-3976 (($) 77)) (-4182 (($) 90) (($ (-291 (-637))) 96) (($ (-291 (-639))) 93) (($ (-291 (-632))) 99) (($ (-291 (-354))) 105) (($ (-291 (-522))) 102) (($ (-291 (-154 (-354)))) 108)) (-3716 (($ (-1084) $) 89)) (-4185 (($ (-588 (-792))) 79)) (-3736 (((-1171) $) 73)) (-4177 (((-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)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2174 (($ (-1032)) 45)) (-2348 (((-1018) $) 25)) (-3633 (($ (-1007 (-881 (-522))) $) 85) (($ (-1007 (-881 (-522))) (-881 (-522)) $) 86)) (-1365 (($ (-1032)) 87)) (-2587 (($ (-1084) $) 110) (($ (-1084) $ $) 111)) (-2540 (($ (-1085) (-588 (-1085))) 75)) (-1272 (($ (-1068)) 82) (($ (-588 (-1068))) 80)) (-2190 (((-792) $) 113)) (-2033 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1085)) (|:| |arrayIndex| (-588 (-881 (-522)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -1575 (-792)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1085)) (|:| |rand| (-792)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1084)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3985 (-108)) (|:| -3435 (-2 (|:| |ints2Floats?| (-108)) (|:| -1575 (-792)))))) (|:| |blockBranch| (-588 $)) (|:| |commentBranch| (-588 (-1068))) (|:| |callBranch| (-1068)) (|:| |forBranch| (-2 (|:| -2386 (-1007 (-881 (-522)))) (|:| |span| (-881 (-522))) (|:| |body| $))) (|:| |labelBranch| (-1032)) (|:| |loopBranch| (-2 (|:| |switch| (-1084)) (|:| |body| $))) (|:| |commonBranch| (-2 (|:| -2888 (-1085)) (|:| |contents| (-588 (-1085))))) (|:| |printBranch| (-588 (-792)))) $) 37)) (-1831 (($ (-1068)) 182)) (-3770 (($ (-588 $)) 109)) (-3712 (($ (-1085) (-1068)) 115) (($ (-1085) (-291 (-639))) 155) (($ (-1085) (-291 (-637))) 156) (($ (-1085) (-291 (-632))) 157) (($ (-1085) (-628 (-639))) 118) (($ (-1085) (-628 (-637))) 121) (($ (-1085) (-628 (-632))) 124) (($ (-1085) (-1166 (-639))) 127) (($ (-1085) (-1166 (-637))) 130) (($ (-1085) (-1166 (-632))) 133) (($ (-1085) (-628 (-291 (-639)))) 136) (($ (-1085) (-628 (-291 (-637)))) 139) (($ (-1085) (-628 (-291 (-632)))) 142) (($ (-1085) (-1166 (-291 (-639)))) 145) (($ (-1085) (-1166 (-291 (-637)))) 148) (($ (-1085) (-1166 (-291 (-632)))) 151) (($ (-1085) (-588 (-881 (-522))) (-291 (-639))) 152) (($ (-1085) (-588 (-881 (-522))) (-291 (-637))) 153) (($ (-1085) (-588 (-881 (-522))) (-291 (-632))) 154) (($ (-1085) (-291 (-522))) 179) (($ (-1085) (-291 (-354))) 180) (($ (-1085) (-291 (-154 (-354)))) 181) (($ (-1085) (-628 (-291 (-522)))) 160) (($ (-1085) (-628 (-291 (-354)))) 163) (($ (-1085) (-628 (-291 (-154 (-354))))) 166) (($ (-1085) (-1166 (-291 (-522)))) 169) (($ (-1085) (-1166 (-291 (-354)))) 172) (($ (-1085) (-1166 (-291 (-154 (-354))))) 175) (($ (-1085) (-588 (-881 (-522))) (-291 (-522))) 176) (($ (-1085) (-588 (-881 (-522))) (-291 (-354))) 177) (($ (-1085) (-588 (-881 (-522))) (-291 (-154 (-354)))) 178)) (-1531 (((-108) $ $) NIL)))
-(((-305) (-13 (-1014) (-10 -8 (-15 -2190 ((-792) $)) (-15 -3633 ($ (-1007 (-881 (-522))) $)) (-15 -3633 ($ (-1007 (-881 (-522))) (-881 (-522)) $)) (-15 -3962 ($ (-1084) $)) (-15 -3716 ($ (-1084) $)) (-15 -2174 ($ (-1032))) (-15 -1365 ($ (-1032))) (-15 -1272 ($ (-1068))) (-15 -1272 ($ (-588 (-1068)))) (-15 -1831 ($ (-1068))) (-15 -4182 ($)) (-15 -4182 ($ (-291 (-637)))) (-15 -4182 ($ (-291 (-639)))) (-15 -4182 ($ (-291 (-632)))) (-15 -4182 ($ (-291 (-354)))) (-15 -4182 ($ (-291 (-522)))) (-15 -4182 ($ (-291 (-154 (-354))))) (-15 -2587 ($ (-1084) $)) (-15 -2587 ($ (-1084) $ $)) (-15 -3712 ($ (-1085) (-1068))) (-15 -3712 ($ (-1085) (-291 (-639)))) (-15 -3712 ($ (-1085) (-291 (-637)))) (-15 -3712 ($ (-1085) (-291 (-632)))) (-15 -3712 ($ (-1085) (-628 (-639)))) (-15 -3712 ($ (-1085) (-628 (-637)))) (-15 -3712 ($ (-1085) (-628 (-632)))) (-15 -3712 ($ (-1085) (-1166 (-639)))) (-15 -3712 ($ (-1085) (-1166 (-637)))) (-15 -3712 ($ (-1085) (-1166 (-632)))) (-15 -3712 ($ (-1085) (-628 (-291 (-639))))) (-15 -3712 ($ (-1085) (-628 (-291 (-637))))) (-15 -3712 ($ (-1085) (-628 (-291 (-632))))) (-15 -3712 ($ (-1085) (-1166 (-291 (-639))))) (-15 -3712 ($ (-1085) (-1166 (-291 (-637))))) (-15 -3712 ($ (-1085) (-1166 (-291 (-632))))) (-15 -3712 ($ (-1085) (-588 (-881 (-522))) (-291 (-639)))) (-15 -3712 ($ (-1085) (-588 (-881 (-522))) (-291 (-637)))) (-15 -3712 ($ (-1085) (-588 (-881 (-522))) (-291 (-632)))) (-15 -3712 ($ (-1085) (-291 (-522)))) (-15 -3712 ($ (-1085) (-291 (-354)))) (-15 -3712 ($ (-1085) (-291 (-154 (-354))))) (-15 -3712 ($ (-1085) (-628 (-291 (-522))))) (-15 -3712 ($ (-1085) (-628 (-291 (-354))))) (-15 -3712 ($ (-1085) (-628 (-291 (-154 (-354)))))) (-15 -3712 ($ (-1085) (-1166 (-291 (-522))))) (-15 -3712 ($ (-1085) (-1166 (-291 (-354))))) (-15 -3712 ($ (-1085) (-1166 (-291 (-154 (-354)))))) (-15 -3712 ($ (-1085) (-588 (-881 (-522))) (-291 (-522)))) (-15 -3712 ($ (-1085) (-588 (-881 (-522))) (-291 (-354)))) (-15 -3712 ($ (-1085) (-588 (-881 (-522))) (-291 (-154 (-354))))) (-15 -3770 ($ (-588 $))) (-15 -2755 ($)) (-15 -3976 ($)) (-15 -4185 ($ (-588 (-792)))) (-15 -2540 ($ (-1085) (-588 (-1085)))) (-15 -4177 ((-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 -2033 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1085)) (|:| |arrayIndex| (-588 (-881 (-522)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -1575 (-792)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1085)) (|:| |rand| (-792)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1084)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3985 (-108)) (|:| -3435 (-2 (|:| |ints2Floats?| (-108)) (|:| -1575 (-792)))))) (|:| |blockBranch| (-588 $)) (|:| |commentBranch| (-588 (-1068))) (|:| |callBranch| (-1068)) (|:| |forBranch| (-2 (|:| -2386 (-1007 (-881 (-522)))) (|:| |span| (-881 (-522))) (|:| |body| $))) (|:| |labelBranch| (-1032)) (|:| |loopBranch| (-2 (|:| |switch| (-1084)) (|:| |body| $))) (|:| |commonBranch| (-2 (|:| -2888 (-1085)) (|:| |contents| (-588 (-1085))))) (|:| |printBranch| (-588 (-792)))) $)) (-15 -3736 ((-1171) $)) (-15 -2348 ((-1018) $)) (-15 -3777 ((-1032) (-1032)))))) (T -305))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-305)))) (-3633 (*1 *1 *2 *1) (-12 (-5 *2 (-1007 (-881 (-522)))) (-5 *1 (-305)))) (-3633 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1007 (-881 (-522)))) (-5 *3 (-881 (-522))) (-5 *1 (-305)))) (-3962 (*1 *1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))) (-3716 (*1 *1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))) (-2174 (*1 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-305)))) (-1365 (*1 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-305)))) (-1272 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-305)))) (-1272 (*1 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-305)))) (-1831 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-305)))) (-4182 (*1 *1) (-5 *1 (-305))) (-4182 (*1 *1 *2) (-12 (-5 *2 (-291 (-637))) (-5 *1 (-305)))) (-4182 (*1 *1 *2) (-12 (-5 *2 (-291 (-639))) (-5 *1 (-305)))) (-4182 (*1 *1 *2) (-12 (-5 *2 (-291 (-632))) (-5 *1 (-305)))) (-4182 (*1 *1 *2) (-12 (-5 *2 (-291 (-354))) (-5 *1 (-305)))) (-4182 (*1 *1 *2) (-12 (-5 *2 (-291 (-522))) (-5 *1 (-305)))) (-4182 (*1 *1 *2) (-12 (-5 *2 (-291 (-154 (-354)))) (-5 *1 (-305)))) (-2587 (*1 *1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))) (-2587 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1068)) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-291 (-639))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-291 (-637))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-291 (-632))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-639))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-637))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-632))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-639))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-637))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-632))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-291 (-639)))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-291 (-637)))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-291 (-632)))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-291 (-639)))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-291 (-637)))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-291 (-632)))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-291 (-639))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-291 (-637))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-291 (-632))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-291 (-522))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-291 (-354))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-291 (-154 (-354)))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-291 (-522)))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-291 (-354)))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-291 (-154 (-354))))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-291 (-522)))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-291 (-354)))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-291 (-154 (-354))))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-291 (-522))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-291 (-354))) (-5 *1 (-305)))) (-3712 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-291 (-154 (-354)))) (-5 *1 (-305)))) (-3770 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-5 *1 (-305)))) (-2755 (*1 *1) (-5 *1 (-305))) (-3976 (*1 *1) (-5 *1 (-305))) (-4185 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-305)))) (-2540 (*1 *1 *2 *3) (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1085)) (-5 *1 (-305)))) (-4177 (*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 (-305)))) (-2033 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1085)) (|:| |arrayIndex| (-588 (-881 (-522)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -1575 (-792)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1085)) (|:| |rand| (-792)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1084)) (|:| |thenClause| (-305)) (|:| |elseClause| (-305)))) (|:| |returnBranch| (-2 (|:| -3985 (-108)) (|:| -3435 (-2 (|:| |ints2Floats?| (-108)) (|:| -1575 (-792)))))) (|:| |blockBranch| (-588 (-305))) (|:| |commentBranch| (-588 (-1068))) (|:| |callBranch| (-1068)) (|:| |forBranch| (-2 (|:| -2386 (-1007 (-881 (-522)))) (|:| |span| (-881 (-522))) (|:| |body| (-305)))) (|:| |labelBranch| (-1032)) (|:| |loopBranch| (-2 (|:| |switch| (-1084)) (|:| |body| (-305)))) (|:| |commonBranch| (-2 (|:| -2888 (-1085)) (|:| |contents| (-588 (-1085))))) (|:| |printBranch| (-588 (-792))))) (-5 *1 (-305)))) (-3736 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-305)))) (-2348 (*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-305)))) (-3777 (*1 *2 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-305)))))
-(-13 (-1014) (-10 -8 (-15 -2190 ((-792) $)) (-15 -3633 ($ (-1007 (-881 (-522))) $)) (-15 -3633 ($ (-1007 (-881 (-522))) (-881 (-522)) $)) (-15 -3962 ($ (-1084) $)) (-15 -3716 ($ (-1084) $)) (-15 -2174 ($ (-1032))) (-15 -1365 ($ (-1032))) (-15 -1272 ($ (-1068))) (-15 -1272 ($ (-588 (-1068)))) (-15 -1831 ($ (-1068))) (-15 -4182 ($)) (-15 -4182 ($ (-291 (-637)))) (-15 -4182 ($ (-291 (-639)))) (-15 -4182 ($ (-291 (-632)))) (-15 -4182 ($ (-291 (-354)))) (-15 -4182 ($ (-291 (-522)))) (-15 -4182 ($ (-291 (-154 (-354))))) (-15 -2587 ($ (-1084) $)) (-15 -2587 ($ (-1084) $ $)) (-15 -3712 ($ (-1085) (-1068))) (-15 -3712 ($ (-1085) (-291 (-639)))) (-15 -3712 ($ (-1085) (-291 (-637)))) (-15 -3712 ($ (-1085) (-291 (-632)))) (-15 -3712 ($ (-1085) (-628 (-639)))) (-15 -3712 ($ (-1085) (-628 (-637)))) (-15 -3712 ($ (-1085) (-628 (-632)))) (-15 -3712 ($ (-1085) (-1166 (-639)))) (-15 -3712 ($ (-1085) (-1166 (-637)))) (-15 -3712 ($ (-1085) (-1166 (-632)))) (-15 -3712 ($ (-1085) (-628 (-291 (-639))))) (-15 -3712 ($ (-1085) (-628 (-291 (-637))))) (-15 -3712 ($ (-1085) (-628 (-291 (-632))))) (-15 -3712 ($ (-1085) (-1166 (-291 (-639))))) (-15 -3712 ($ (-1085) (-1166 (-291 (-637))))) (-15 -3712 ($ (-1085) (-1166 (-291 (-632))))) (-15 -3712 ($ (-1085) (-588 (-881 (-522))) (-291 (-639)))) (-15 -3712 ($ (-1085) (-588 (-881 (-522))) (-291 (-637)))) (-15 -3712 ($ (-1085) (-588 (-881 (-522))) (-291 (-632)))) (-15 -3712 ($ (-1085) (-291 (-522)))) (-15 -3712 ($ (-1085) (-291 (-354)))) (-15 -3712 ($ (-1085) (-291 (-154 (-354))))) (-15 -3712 ($ (-1085) (-628 (-291 (-522))))) (-15 -3712 ($ (-1085) (-628 (-291 (-354))))) (-15 -3712 ($ (-1085) (-628 (-291 (-154 (-354)))))) (-15 -3712 ($ (-1085) (-1166 (-291 (-522))))) (-15 -3712 ($ (-1085) (-1166 (-291 (-354))))) (-15 -3712 ($ (-1085) (-1166 (-291 (-154 (-354)))))) (-15 -3712 ($ (-1085) (-588 (-881 (-522))) (-291 (-522)))) (-15 -3712 ($ (-1085) (-588 (-881 (-522))) (-291 (-354)))) (-15 -3712 ($ (-1085) (-588 (-881 (-522))) (-291 (-154 (-354))))) (-15 -3770 ($ (-588 $))) (-15 -2755 ($)) (-15 -3976 ($)) (-15 -4185 ($ (-588 (-792)))) (-15 -2540 ($ (-1085) (-588 (-1085)))) (-15 -4177 ((-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 -2033 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1085)) (|:| |arrayIndex| (-588 (-881 (-522)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -1575 (-792)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1085)) (|:| |rand| (-792)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1084)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3985 (-108)) (|:| -3435 (-2 (|:| |ints2Floats?| (-108)) (|:| -1575 (-792)))))) (|:| |blockBranch| (-588 $)) (|:| |commentBranch| (-588 (-1068))) (|:| |callBranch| (-1068)) (|:| |forBranch| (-2 (|:| -2386 (-1007 (-881 (-522)))) (|:| |span| (-881 (-522))) (|:| |body| $))) (|:| |labelBranch| (-1032)) (|:| |loopBranch| (-2 (|:| |switch| (-1084)) (|:| |body| $))) (|:| |commonBranch| (-2 (|:| -2888 (-1085)) (|:| |contents| (-588 (-1085))))) (|:| |printBranch| (-588 (-792)))) $)) (-15 -3736 ((-1171) $)) (-15 -2348 ((-1018) $)) (-15 -3777 ((-1032) (-1032)))))
-((-1416 (((-108) $ $) NIL)) (-2921 (((-108) $) 11)) (-2748 (($ |#1|) 8)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2761 (($ |#1|) 9)) (-2190 (((-792) $) 17)) (-3824 ((|#1| $) 12)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 19)))
-(((-306 |#1|) (-13 (-784) (-10 -8 (-15 -2748 ($ |#1|)) (-15 -2761 ($ |#1|)) (-15 -2921 ((-108) $)) (-15 -3824 (|#1| $)))) (-784)) (T -306))
-((-2748 (*1 *1 *2) (-12 (-5 *1 (-306 *2)) (-4 *2 (-784)))) (-2761 (*1 *1 *2) (-12 (-5 *1 (-306 *2)) (-4 *2 (-784)))) (-2921 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-306 *3)) (-4 *3 (-784)))) (-3824 (*1 *2 *1) (-12 (-5 *1 (-306 *2)) (-4 *2 (-784)))))
-(-13 (-784) (-10 -8 (-15 -2748 ($ |#1|)) (-15 -2761 ($ |#1|)) (-15 -2921 ((-108) $)) (-15 -3824 (|#1| $))))
-((-2369 (((-305) (-1085) (-881 (-522))) 22)) (-2489 (((-305) (-1085) (-881 (-522))) 26)) (-2169 (((-305) (-1085) (-1007 (-881 (-522))) (-1007 (-881 (-522)))) 25) (((-305) (-1085) (-881 (-522)) (-881 (-522))) 23)) (-3396 (((-305) (-1085) (-881 (-522))) 30)))
-(((-307) (-10 -7 (-15 -2369 ((-305) (-1085) (-881 (-522)))) (-15 -2169 ((-305) (-1085) (-881 (-522)) (-881 (-522)))) (-15 -2169 ((-305) (-1085) (-1007 (-881 (-522))) (-1007 (-881 (-522))))) (-15 -2489 ((-305) (-1085) (-881 (-522)))) (-15 -3396 ((-305) (-1085) (-881 (-522)))))) (T -307))
-((-3396 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305)) (-5 *1 (-307)))) (-2489 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305)) (-5 *1 (-307)))) (-2169 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-1007 (-881 (-522)))) (-5 *2 (-305)) (-5 *1 (-307)))) (-2169 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305)) (-5 *1 (-307)))) (-2369 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305)) (-5 *1 (-307)))))
-(-10 -7 (-15 -2369 ((-305) (-1085) (-881 (-522)))) (-15 -2169 ((-305) (-1085) (-881 (-522)) (-881 (-522)))) (-15 -2169 ((-305) (-1085) (-1007 (-881 (-522))) (-1007 (-881 (-522))))) (-15 -2489 ((-305) (-1085) (-881 (-522)))) (-15 -3396 ((-305) (-1085) (-881 (-522)))))
-((-1391 (((-311 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-311 |#1| |#2| |#3| |#4|)) 31)))
-(((-308 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1391 ((-311 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-311 |#1| |#2| |#3| |#4|)))) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|) (-338) (-1142 |#5|) (-1142 (-382 |#6|)) (-317 |#5| |#6| |#7|)) (T -308))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-311 *5 *6 *7 *8)) (-4 *5 (-338)) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *8 (-317 *5 *6 *7)) (-4 *9 (-338)) (-4 *10 (-1142 *9)) (-4 *11 (-1142 (-382 *10))) (-5 *2 (-311 *9 *10 *11 *12)) (-5 *1 (-308 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-317 *9 *10 *11)))))
-(-10 -7 (-15 -1391 ((-311 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-311 |#1| |#2| |#3| |#4|))))
-((-2900 (((-108) $) 14)))
-(((-309 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2900 ((-108) |#1|))) (-310 |#2| |#3| |#4| |#5|) (-338) (-1142 |#2|) (-1142 (-382 |#3|)) (-317 |#2| |#3| |#4|)) (T -309))
-NIL
-(-10 -8 (-15 -2900 ((-108) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-3864 (($ $) 26)) (-2900 (((-108) $) 25)) (-2385 (((-1068) $) 9)) (-2154 (((-388 |#2| (-382 |#2|) |#3| |#4|) $) 32)) (-4151 (((-1032) $) 10)) (-1383 (((-3 |#4| "failed") $) 24)) (-4118 (($ (-388 |#2| (-382 |#2|) |#3| |#4|)) 31) (($ |#4|) 30) (($ |#1| |#1|) 29) (($ |#1| |#1| (-522)) 28) (($ |#4| |#2| |#2| |#2| |#1|) 23)) (-3496 (((-2 (|:| -1781 (-388 |#2| (-382 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 27)) (-2190 (((-792) $) 11)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20)))
+((-2905 (*1 *2) (-12 (-4 *3 (-338)) (-5 *2 (-1166 *1)) (-4 *1 (-304 *3)))) (-2905 (*1 *2 *3) (-12 (-5 *3 (-850)) (-4 *4 (-338)) (-5 *2 (-1166 *1)) (-4 *1 (-304 *4)))) (-3510 (*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-1166 *3)))) (-3510 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-304 *4)) (-4 *4 (-338)) (-5 *2 (-628 *4)))) (-3225 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-338)) (-4 *1 (-304 *3)))) (-4199 (*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-1081 *3)))) (-1579 (*1 *2) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-1081 *3)))) (-1713 (*1 *2) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-850)))) (-2487 (*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-850)))) (-1269 (*1 *2 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-338)))) (-1945 (*1 *2 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-338)))) (-4199 (*1 *2 *1 *3) (-12 (-5 *3 (-850)) (-4 *4 (-343)) (-4 *4 (-338)) (-5 *2 (-1081 *1)) (-4 *1 (-304 *4)))) (-1269 (*1 *1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)))) (-1945 (*1 *1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)))) (-1705 (*1 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-343)) (-4 *2 (-338)))) (-3768 (*1 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-343)) (-4 *2 (-338)))) (-1372 (*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)) (-5 *2 (-108)))) (-1368 (*1 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-343)) (-4 *2 (-338)))) (-2259 (*1 *1 *1 *2) (-12 (-5 *2 (-1081 *3)) (-4 *3 (-343)) (-4 *1 (-304 *3)) (-4 *3 (-338)))) (-3657 (*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)) (-5 *2 (-1081 *3)))) (-3723 (*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)) (-5 *2 (-1081 *3)))) (-3723 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)) (-5 *2 (-1081 *3)))))
+(-13 (-1183 |t#1|) (-962 |t#1|) (-10 -8 (-15 -2905 ((-1166 $))) (-15 -2905 ((-1166 $) (-850))) (-15 -3510 ((-1166 |t#1|) $)) (-15 -3510 ((-628 |t#1|) (-1166 $))) (-15 -3225 ($ (-1166 |t#1|))) (-15 -4199 ((-1081 |t#1|) $)) (-15 -1579 ((-1081 |t#1|))) (-15 -1713 ((-850))) (-15 -2487 ((-850) $)) (-15 -1269 (|t#1| $)) (-15 -1945 (|t#1| $)) (IF (|has| |t#1| (-343)) (PROGN (-6 (-324)) (-15 -4199 ((-1081 $) $ (-850))) (-15 -1269 ($ $ (-850))) (-15 -1945 ($ $ (-850))) (-15 -1705 ($)) (-15 -3768 ($)) (-15 -1372 ((-108) $)) (-15 -1368 ($)) (-15 -2259 ($ $ (-1081 |t#1|))) (-15 -3657 ((-1081 |t#1|) $)) (-15 -3723 ((-1081 |t#1|) $)) (-15 -3723 ((-3 (-1081 |t#1|) "failed") $ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-133) -3844 (|has| |#1| (-343)) (|has| |#1| (-133))) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) . T) ((-210) |has| |#1| (-343)) ((-220) . T) ((-266) . T) ((-283) . T) ((-1183 |#1|) . T) ((-338) . T) ((-377) -3844 (|has| |#1| (-343)) (|has| |#1| (-133))) ((-343) |has| |#1| (-343)) ((-324) |has| |#1| (-343)) ((-426) . T) ((-514) . T) ((-590 #0#) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #0#) . T) ((-655 |#1|) . T) ((-655 $) . T) ((-664) . T) ((-849) . T) ((-962 |#1|) . T) ((-977 #0#) . T) ((-977 |#1|) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) |has| |#1| (-343)) ((-1124) . T) ((-1173 |#1|) . T))
+((-1419 (((-108) $ $) NIL)) (-1446 (($ (-1084) $) 88)) (-2910 (($) 76)) (-3318 (((-1032) (-1032)) 11)) (-4059 (($) 77)) (-1825 (($) 90) (($ (-291 (-637))) 96) (($ (-291 (-639))) 93) (($ (-291 (-632))) 99) (($ (-291 (-354))) 105) (($ (-291 (-522))) 102) (($ (-291 (-154 (-354)))) 108)) (-3897 (($ (-1084) $) 89)) (-1851 (($ (-588 (-792))) 79)) (-2974 (((-1171) $) 73)) (-2720 (((-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)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3276 (($ (-1032)) 45)) (-1675 (((-1018) $) 25)) (-1236 (($ (-1007 (-881 (-522))) $) 85) (($ (-1007 (-881 (-522))) (-881 (-522)) $) 86)) (-1334 (($ (-1032)) 87)) (-2744 (($ (-1084) $) 110) (($ (-1084) $ $) 111)) (-2661 (($ (-1085) (-588 (-1085))) 75)) (-1255 (($ (-1068)) 82) (($ (-588 (-1068))) 80)) (-2217 (((-792) $) 113)) (-2077 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1085)) (|:| |arrayIndex| (-588 (-881 (-522)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -1610 (-792)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1085)) (|:| |rand| (-792)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1084)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3494 (-108)) (|:| -3526 (-2 (|:| |ints2Floats?| (-108)) (|:| -1610 (-792)))))) (|:| |blockBranch| (-588 $)) (|:| |commentBranch| (-588 (-1068))) (|:| |callBranch| (-1068)) (|:| |forBranch| (-2 (|:| -2321 (-1007 (-881 (-522)))) (|:| |span| (-881 (-522))) (|:| |body| $))) (|:| |labelBranch| (-1032)) (|:| |loopBranch| (-2 (|:| |switch| (-1084)) (|:| |body| $))) (|:| |commonBranch| (-2 (|:| -3015 (-1085)) (|:| |contents| (-588 (-1085))))) (|:| |printBranch| (-588 (-792)))) $) 37)) (-1911 (($ (-1068)) 182)) (-3251 (($ (-588 $)) 109)) (-3849 (($ (-1085) (-1068)) 115) (($ (-1085) (-291 (-639))) 155) (($ (-1085) (-291 (-637))) 156) (($ (-1085) (-291 (-632))) 157) (($ (-1085) (-628 (-639))) 118) (($ (-1085) (-628 (-637))) 121) (($ (-1085) (-628 (-632))) 124) (($ (-1085) (-1166 (-639))) 127) (($ (-1085) (-1166 (-637))) 130) (($ (-1085) (-1166 (-632))) 133) (($ (-1085) (-628 (-291 (-639)))) 136) (($ (-1085) (-628 (-291 (-637)))) 139) (($ (-1085) (-628 (-291 (-632)))) 142) (($ (-1085) (-1166 (-291 (-639)))) 145) (($ (-1085) (-1166 (-291 (-637)))) 148) (($ (-1085) (-1166 (-291 (-632)))) 151) (($ (-1085) (-588 (-881 (-522))) (-291 (-639))) 152) (($ (-1085) (-588 (-881 (-522))) (-291 (-637))) 153) (($ (-1085) (-588 (-881 (-522))) (-291 (-632))) 154) (($ (-1085) (-291 (-522))) 179) (($ (-1085) (-291 (-354))) 180) (($ (-1085) (-291 (-154 (-354)))) 181) (($ (-1085) (-628 (-291 (-522)))) 160) (($ (-1085) (-628 (-291 (-354)))) 163) (($ (-1085) (-628 (-291 (-154 (-354))))) 166) (($ (-1085) (-1166 (-291 (-522)))) 169) (($ (-1085) (-1166 (-291 (-354)))) 172) (($ (-1085) (-1166 (-291 (-154 (-354))))) 175) (($ (-1085) (-588 (-881 (-522))) (-291 (-522))) 176) (($ (-1085) (-588 (-881 (-522))) (-291 (-354))) 177) (($ (-1085) (-588 (-881 (-522))) (-291 (-154 (-354)))) 178)) (-1562 (((-108) $ $) NIL)))
+(((-305) (-13 (-1014) (-10 -8 (-15 -2217 ((-792) $)) (-15 -1236 ($ (-1007 (-881 (-522))) $)) (-15 -1236 ($ (-1007 (-881 (-522))) (-881 (-522)) $)) (-15 -1446 ($ (-1084) $)) (-15 -3897 ($ (-1084) $)) (-15 -3276 ($ (-1032))) (-15 -1334 ($ (-1032))) (-15 -1255 ($ (-1068))) (-15 -1255 ($ (-588 (-1068)))) (-15 -1911 ($ (-1068))) (-15 -1825 ($)) (-15 -1825 ($ (-291 (-637)))) (-15 -1825 ($ (-291 (-639)))) (-15 -1825 ($ (-291 (-632)))) (-15 -1825 ($ (-291 (-354)))) (-15 -1825 ($ (-291 (-522)))) (-15 -1825 ($ (-291 (-154 (-354))))) (-15 -2744 ($ (-1084) $)) (-15 -2744 ($ (-1084) $ $)) (-15 -3849 ($ (-1085) (-1068))) (-15 -3849 ($ (-1085) (-291 (-639)))) (-15 -3849 ($ (-1085) (-291 (-637)))) (-15 -3849 ($ (-1085) (-291 (-632)))) (-15 -3849 ($ (-1085) (-628 (-639)))) (-15 -3849 ($ (-1085) (-628 (-637)))) (-15 -3849 ($ (-1085) (-628 (-632)))) (-15 -3849 ($ (-1085) (-1166 (-639)))) (-15 -3849 ($ (-1085) (-1166 (-637)))) (-15 -3849 ($ (-1085) (-1166 (-632)))) (-15 -3849 ($ (-1085) (-628 (-291 (-639))))) (-15 -3849 ($ (-1085) (-628 (-291 (-637))))) (-15 -3849 ($ (-1085) (-628 (-291 (-632))))) (-15 -3849 ($ (-1085) (-1166 (-291 (-639))))) (-15 -3849 ($ (-1085) (-1166 (-291 (-637))))) (-15 -3849 ($ (-1085) (-1166 (-291 (-632))))) (-15 -3849 ($ (-1085) (-588 (-881 (-522))) (-291 (-639)))) (-15 -3849 ($ (-1085) (-588 (-881 (-522))) (-291 (-637)))) (-15 -3849 ($ (-1085) (-588 (-881 (-522))) (-291 (-632)))) (-15 -3849 ($ (-1085) (-291 (-522)))) (-15 -3849 ($ (-1085) (-291 (-354)))) (-15 -3849 ($ (-1085) (-291 (-154 (-354))))) (-15 -3849 ($ (-1085) (-628 (-291 (-522))))) (-15 -3849 ($ (-1085) (-628 (-291 (-354))))) (-15 -3849 ($ (-1085) (-628 (-291 (-154 (-354)))))) (-15 -3849 ($ (-1085) (-1166 (-291 (-522))))) (-15 -3849 ($ (-1085) (-1166 (-291 (-354))))) (-15 -3849 ($ (-1085) (-1166 (-291 (-154 (-354)))))) (-15 -3849 ($ (-1085) (-588 (-881 (-522))) (-291 (-522)))) (-15 -3849 ($ (-1085) (-588 (-881 (-522))) (-291 (-354)))) (-15 -3849 ($ (-1085) (-588 (-881 (-522))) (-291 (-154 (-354))))) (-15 -3251 ($ (-588 $))) (-15 -2910 ($)) (-15 -4059 ($)) (-15 -1851 ($ (-588 (-792)))) (-15 -2661 ($ (-1085) (-588 (-1085)))) (-15 -2720 ((-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 -2077 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1085)) (|:| |arrayIndex| (-588 (-881 (-522)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -1610 (-792)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1085)) (|:| |rand| (-792)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1084)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3494 (-108)) (|:| -3526 (-2 (|:| |ints2Floats?| (-108)) (|:| -1610 (-792)))))) (|:| |blockBranch| (-588 $)) (|:| |commentBranch| (-588 (-1068))) (|:| |callBranch| (-1068)) (|:| |forBranch| (-2 (|:| -2321 (-1007 (-881 (-522)))) (|:| |span| (-881 (-522))) (|:| |body| $))) (|:| |labelBranch| (-1032)) (|:| |loopBranch| (-2 (|:| |switch| (-1084)) (|:| |body| $))) (|:| |commonBranch| (-2 (|:| -3015 (-1085)) (|:| |contents| (-588 (-1085))))) (|:| |printBranch| (-588 (-792)))) $)) (-15 -2974 ((-1171) $)) (-15 -1675 ((-1018) $)) (-15 -3318 ((-1032) (-1032)))))) (T -305))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-305)))) (-1236 (*1 *1 *2 *1) (-12 (-5 *2 (-1007 (-881 (-522)))) (-5 *1 (-305)))) (-1236 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1007 (-881 (-522)))) (-5 *3 (-881 (-522))) (-5 *1 (-305)))) (-1446 (*1 *1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))) (-3897 (*1 *1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))) (-3276 (*1 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-305)))) (-1334 (*1 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-305)))) (-1255 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-305)))) (-1255 (*1 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-305)))) (-1911 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-305)))) (-1825 (*1 *1) (-5 *1 (-305))) (-1825 (*1 *1 *2) (-12 (-5 *2 (-291 (-637))) (-5 *1 (-305)))) (-1825 (*1 *1 *2) (-12 (-5 *2 (-291 (-639))) (-5 *1 (-305)))) (-1825 (*1 *1 *2) (-12 (-5 *2 (-291 (-632))) (-5 *1 (-305)))) (-1825 (*1 *1 *2) (-12 (-5 *2 (-291 (-354))) (-5 *1 (-305)))) (-1825 (*1 *1 *2) (-12 (-5 *2 (-291 (-522))) (-5 *1 (-305)))) (-1825 (*1 *1 *2) (-12 (-5 *2 (-291 (-154 (-354)))) (-5 *1 (-305)))) (-2744 (*1 *1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))) (-2744 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1068)) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-291 (-639))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-291 (-637))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-291 (-632))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-639))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-637))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-632))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-639))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-637))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-632))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-291 (-639)))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-291 (-637)))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-291 (-632)))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-291 (-639)))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-291 (-637)))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-291 (-632)))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-291 (-639))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-291 (-637))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-291 (-632))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-291 (-522))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-291 (-354))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-291 (-154 (-354)))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-291 (-522)))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-291 (-354)))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-628 (-291 (-154 (-354))))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-291 (-522)))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-291 (-354)))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-291 (-154 (-354))))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-291 (-522))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-291 (-354))) (-5 *1 (-305)))) (-3849 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-291 (-154 (-354)))) (-5 *1 (-305)))) (-3251 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-5 *1 (-305)))) (-2910 (*1 *1) (-5 *1 (-305))) (-4059 (*1 *1) (-5 *1 (-305))) (-1851 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-305)))) (-2661 (*1 *1 *2 *3) (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1085)) (-5 *1 (-305)))) (-2720 (*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 (-305)))) (-2077 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1085)) (|:| |arrayIndex| (-588 (-881 (-522)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -1610 (-792)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1085)) (|:| |rand| (-792)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1084)) (|:| |thenClause| (-305)) (|:| |elseClause| (-305)))) (|:| |returnBranch| (-2 (|:| -3494 (-108)) (|:| -3526 (-2 (|:| |ints2Floats?| (-108)) (|:| -1610 (-792)))))) (|:| |blockBranch| (-588 (-305))) (|:| |commentBranch| (-588 (-1068))) (|:| |callBranch| (-1068)) (|:| |forBranch| (-2 (|:| -2321 (-1007 (-881 (-522)))) (|:| |span| (-881 (-522))) (|:| |body| (-305)))) (|:| |labelBranch| (-1032)) (|:| |loopBranch| (-2 (|:| |switch| (-1084)) (|:| |body| (-305)))) (|:| |commonBranch| (-2 (|:| -3015 (-1085)) (|:| |contents| (-588 (-1085))))) (|:| |printBranch| (-588 (-792))))) (-5 *1 (-305)))) (-2974 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-305)))) (-1675 (*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-305)))) (-3318 (*1 *2 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-305)))))
+(-13 (-1014) (-10 -8 (-15 -2217 ((-792) $)) (-15 -1236 ($ (-1007 (-881 (-522))) $)) (-15 -1236 ($ (-1007 (-881 (-522))) (-881 (-522)) $)) (-15 -1446 ($ (-1084) $)) (-15 -3897 ($ (-1084) $)) (-15 -3276 ($ (-1032))) (-15 -1334 ($ (-1032))) (-15 -1255 ($ (-1068))) (-15 -1255 ($ (-588 (-1068)))) (-15 -1911 ($ (-1068))) (-15 -1825 ($)) (-15 -1825 ($ (-291 (-637)))) (-15 -1825 ($ (-291 (-639)))) (-15 -1825 ($ (-291 (-632)))) (-15 -1825 ($ (-291 (-354)))) (-15 -1825 ($ (-291 (-522)))) (-15 -1825 ($ (-291 (-154 (-354))))) (-15 -2744 ($ (-1084) $)) (-15 -2744 ($ (-1084) $ $)) (-15 -3849 ($ (-1085) (-1068))) (-15 -3849 ($ (-1085) (-291 (-639)))) (-15 -3849 ($ (-1085) (-291 (-637)))) (-15 -3849 ($ (-1085) (-291 (-632)))) (-15 -3849 ($ (-1085) (-628 (-639)))) (-15 -3849 ($ (-1085) (-628 (-637)))) (-15 -3849 ($ (-1085) (-628 (-632)))) (-15 -3849 ($ (-1085) (-1166 (-639)))) (-15 -3849 ($ (-1085) (-1166 (-637)))) (-15 -3849 ($ (-1085) (-1166 (-632)))) (-15 -3849 ($ (-1085) (-628 (-291 (-639))))) (-15 -3849 ($ (-1085) (-628 (-291 (-637))))) (-15 -3849 ($ (-1085) (-628 (-291 (-632))))) (-15 -3849 ($ (-1085) (-1166 (-291 (-639))))) (-15 -3849 ($ (-1085) (-1166 (-291 (-637))))) (-15 -3849 ($ (-1085) (-1166 (-291 (-632))))) (-15 -3849 ($ (-1085) (-588 (-881 (-522))) (-291 (-639)))) (-15 -3849 ($ (-1085) (-588 (-881 (-522))) (-291 (-637)))) (-15 -3849 ($ (-1085) (-588 (-881 (-522))) (-291 (-632)))) (-15 -3849 ($ (-1085) (-291 (-522)))) (-15 -3849 ($ (-1085) (-291 (-354)))) (-15 -3849 ($ (-1085) (-291 (-154 (-354))))) (-15 -3849 ($ (-1085) (-628 (-291 (-522))))) (-15 -3849 ($ (-1085) (-628 (-291 (-354))))) (-15 -3849 ($ (-1085) (-628 (-291 (-154 (-354)))))) (-15 -3849 ($ (-1085) (-1166 (-291 (-522))))) (-15 -3849 ($ (-1085) (-1166 (-291 (-354))))) (-15 -3849 ($ (-1085) (-1166 (-291 (-154 (-354)))))) (-15 -3849 ($ (-1085) (-588 (-881 (-522))) (-291 (-522)))) (-15 -3849 ($ (-1085) (-588 (-881 (-522))) (-291 (-354)))) (-15 -3849 ($ (-1085) (-588 (-881 (-522))) (-291 (-154 (-354))))) (-15 -3251 ($ (-588 $))) (-15 -2910 ($)) (-15 -4059 ($)) (-15 -1851 ($ (-588 (-792)))) (-15 -2661 ($ (-1085) (-588 (-1085)))) (-15 -2720 ((-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 -2077 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1085)) (|:| |arrayIndex| (-588 (-881 (-522)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-108)) (|:| -1610 (-792)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1085)) (|:| |rand| (-792)) (|:| |ints2Floats?| (-108)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1084)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3494 (-108)) (|:| -3526 (-2 (|:| |ints2Floats?| (-108)) (|:| -1610 (-792)))))) (|:| |blockBranch| (-588 $)) (|:| |commentBranch| (-588 (-1068))) (|:| |callBranch| (-1068)) (|:| |forBranch| (-2 (|:| -2321 (-1007 (-881 (-522)))) (|:| |span| (-881 (-522))) (|:| |body| $))) (|:| |labelBranch| (-1032)) (|:| |loopBranch| (-2 (|:| |switch| (-1084)) (|:| |body| $))) (|:| |commonBranch| (-2 (|:| -3015 (-1085)) (|:| |contents| (-588 (-1085))))) (|:| |printBranch| (-588 (-792)))) $)) (-15 -2974 ((-1171) $)) (-15 -1675 ((-1018) $)) (-15 -3318 ((-1032) (-1032)))))
+((-1419 (((-108) $ $) NIL)) (-3523 (((-108) $) 11)) (-2906 (($ |#1|) 8)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2915 (($ |#1|) 9)) (-2217 (((-792) $) 17)) (-2636 ((|#1| $) 12)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 19)))
+(((-306 |#1|) (-13 (-784) (-10 -8 (-15 -2906 ($ |#1|)) (-15 -2915 ($ |#1|)) (-15 -3523 ((-108) $)) (-15 -2636 (|#1| $)))) (-784)) (T -306))
+((-2906 (*1 *1 *2) (-12 (-5 *1 (-306 *2)) (-4 *2 (-784)))) (-2915 (*1 *1 *2) (-12 (-5 *1 (-306 *2)) (-4 *2 (-784)))) (-3523 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-306 *3)) (-4 *3 (-784)))) (-2636 (*1 *2 *1) (-12 (-5 *1 (-306 *2)) (-4 *2 (-784)))))
+(-13 (-784) (-10 -8 (-15 -2906 ($ |#1|)) (-15 -2915 ($ |#1|)) (-15 -3523 ((-108) $)) (-15 -2636 (|#1| $))))
+((-3972 (((-305) (-1085) (-881 (-522))) 22)) (-3845 (((-305) (-1085) (-881 (-522))) 26)) (-3233 (((-305) (-1085) (-1007 (-881 (-522))) (-1007 (-881 (-522)))) 25) (((-305) (-1085) (-881 (-522)) (-881 (-522))) 23)) (-3725 (((-305) (-1085) (-881 (-522))) 30)))
+(((-307) (-10 -7 (-15 -3972 ((-305) (-1085) (-881 (-522)))) (-15 -3233 ((-305) (-1085) (-881 (-522)) (-881 (-522)))) (-15 -3233 ((-305) (-1085) (-1007 (-881 (-522))) (-1007 (-881 (-522))))) (-15 -3845 ((-305) (-1085) (-881 (-522)))) (-15 -3725 ((-305) (-1085) (-881 (-522)))))) (T -307))
+((-3725 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305)) (-5 *1 (-307)))) (-3845 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305)) (-5 *1 (-307)))) (-3233 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-1007 (-881 (-522)))) (-5 *2 (-305)) (-5 *1 (-307)))) (-3233 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305)) (-5 *1 (-307)))) (-3972 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305)) (-5 *1 (-307)))))
+(-10 -7 (-15 -3972 ((-305) (-1085) (-881 (-522)))) (-15 -3233 ((-305) (-1085) (-881 (-522)) (-881 (-522)))) (-15 -3233 ((-305) (-1085) (-1007 (-881 (-522))) (-1007 (-881 (-522))))) (-15 -3845 ((-305) (-1085) (-881 (-522)))) (-15 -3725 ((-305) (-1085) (-881 (-522)))))
+((-3810 (((-311 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-311 |#1| |#2| |#3| |#4|)) 31)))
+(((-308 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3810 ((-311 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-311 |#1| |#2| |#3| |#4|)))) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|) (-338) (-1142 |#5|) (-1142 (-382 |#6|)) (-317 |#5| |#6| |#7|)) (T -308))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-311 *5 *6 *7 *8)) (-4 *5 (-338)) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *8 (-317 *5 *6 *7)) (-4 *9 (-338)) (-4 *10 (-1142 *9)) (-4 *11 (-1142 (-382 *10))) (-5 *2 (-311 *9 *10 *11 *12)) (-5 *1 (-308 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-317 *9 *10 *11)))))
+(-10 -7 (-15 -3810 ((-311 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-311 |#1| |#2| |#3| |#4|))))
+((-1536 (((-108) $) 14)))
+(((-309 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1536 ((-108) |#1|))) (-310 |#2| |#3| |#4| |#5|) (-338) (-1142 |#2|) (-1142 (-382 |#3|)) (-317 |#2| |#3| |#4|)) (T -309))
+NIL
+(-10 -8 (-15 -1536 ((-108) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-2153 (($ $) 26)) (-1536 (((-108) $) 25)) (-2311 (((-1068) $) 9)) (-3129 (((-388 |#2| (-382 |#2|) |#3| |#4|) $) 32)) (-4174 (((-1032) $) 10)) (-1368 (((-3 |#4| "failed") $) 24)) (-2416 (($ (-388 |#2| (-382 |#2|) |#3| |#4|)) 31) (($ |#4|) 30) (($ |#1| |#1|) 29) (($ |#1| |#1| (-522)) 28) (($ |#4| |#2| |#2| |#2| |#1|) 23)) (-2327 (((-2 (|:| -1868 (-388 |#2| (-382 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 27)) (-2217 (((-792) $) 11)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20)))
(((-310 |#1| |#2| |#3| |#4|) (-1197) (-338) (-1142 |t#1|) (-1142 (-382 |t#2|)) (-317 |t#1| |t#2| |t#3|)) (T -310))
-((-2154 (*1 *2 *1) (-12 (-4 *1 (-310 *3 *4 *5 *6)) (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5)) (-5 *2 (-388 *4 (-382 *4) *5 *6)))) (-4118 (*1 *1 *2) (-12 (-5 *2 (-388 *4 (-382 *4) *5 *6)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5)) (-4 *3 (-338)) (-4 *1 (-310 *3 *4 *5 *6)))) (-4118 (*1 *1 *2) (-12 (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *1 (-310 *3 *4 *5 *2)) (-4 *2 (-317 *3 *4 *5)))) (-4118 (*1 *1 *2 *2) (-12 (-4 *2 (-338)) (-4 *3 (-1142 *2)) (-4 *4 (-1142 (-382 *3))) (-4 *1 (-310 *2 *3 *4 *5)) (-4 *5 (-317 *2 *3 *4)))) (-4118 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-522)) (-4 *2 (-338)) (-4 *4 (-1142 *2)) (-4 *5 (-1142 (-382 *4))) (-4 *1 (-310 *2 *4 *5 *6)) (-4 *6 (-317 *2 *4 *5)))) (-3496 (*1 *2 *1) (-12 (-4 *1 (-310 *3 *4 *5 *6)) (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5)) (-5 *2 (-2 (|:| -1781 (-388 *4 (-382 *4) *5 *6)) (|:| |principalPart| *6))))) (-3864 (*1 *1 *1) (-12 (-4 *1 (-310 *2 *3 *4 *5)) (-4 *2 (-338)) (-4 *3 (-1142 *2)) (-4 *4 (-1142 (-382 *3))) (-4 *5 (-317 *2 *3 *4)))) (-2900 (*1 *2 *1) (-12 (-4 *1 (-310 *3 *4 *5 *6)) (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5)) (-5 *2 (-108)))) (-1383 (*1 *2 *1) (|partial| -12 (-4 *1 (-310 *3 *4 *5 *2)) (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *2 (-317 *3 *4 *5)))) (-4118 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-338)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 (-382 *3))) (-4 *1 (-310 *4 *3 *5 *2)) (-4 *2 (-317 *4 *3 *5)))))
-(-13 (-21) (-10 -8 (-15 -2154 ((-388 |t#2| (-382 |t#2|) |t#3| |t#4|) $)) (-15 -4118 ($ (-388 |t#2| (-382 |t#2|) |t#3| |t#4|))) (-15 -4118 ($ |t#4|)) (-15 -4118 ($ |t#1| |t#1|)) (-15 -4118 ($ |t#1| |t#1| (-522))) (-15 -3496 ((-2 (|:| -1781 (-388 |t#2| (-382 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -3864 ($ $)) (-15 -2900 ((-108) $)) (-15 -1383 ((-3 |t#4| "failed") $)) (-15 -4118 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
+((-3129 (*1 *2 *1) (-12 (-4 *1 (-310 *3 *4 *5 *6)) (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5)) (-5 *2 (-388 *4 (-382 *4) *5 *6)))) (-2416 (*1 *1 *2) (-12 (-5 *2 (-388 *4 (-382 *4) *5 *6)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5)) (-4 *3 (-338)) (-4 *1 (-310 *3 *4 *5 *6)))) (-2416 (*1 *1 *2) (-12 (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *1 (-310 *3 *4 *5 *2)) (-4 *2 (-317 *3 *4 *5)))) (-2416 (*1 *1 *2 *2) (-12 (-4 *2 (-338)) (-4 *3 (-1142 *2)) (-4 *4 (-1142 (-382 *3))) (-4 *1 (-310 *2 *3 *4 *5)) (-4 *5 (-317 *2 *3 *4)))) (-2416 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-522)) (-4 *2 (-338)) (-4 *4 (-1142 *2)) (-4 *5 (-1142 (-382 *4))) (-4 *1 (-310 *2 *4 *5 *6)) (-4 *6 (-317 *2 *4 *5)))) (-2327 (*1 *2 *1) (-12 (-4 *1 (-310 *3 *4 *5 *6)) (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5)) (-5 *2 (-2 (|:| -1868 (-388 *4 (-382 *4) *5 *6)) (|:| |principalPart| *6))))) (-2153 (*1 *1 *1) (-12 (-4 *1 (-310 *2 *3 *4 *5)) (-4 *2 (-338)) (-4 *3 (-1142 *2)) (-4 *4 (-1142 (-382 *3))) (-4 *5 (-317 *2 *3 *4)))) (-1536 (*1 *2 *1) (-12 (-4 *1 (-310 *3 *4 *5 *6)) (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5)) (-5 *2 (-108)))) (-1368 (*1 *2 *1) (|partial| -12 (-4 *1 (-310 *3 *4 *5 *2)) (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *2 (-317 *3 *4 *5)))) (-2416 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-338)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 (-382 *3))) (-4 *1 (-310 *4 *3 *5 *2)) (-4 *2 (-317 *4 *3 *5)))))
+(-13 (-21) (-10 -8 (-15 -3129 ((-388 |t#2| (-382 |t#2|) |t#3| |t#4|) $)) (-15 -2416 ($ (-388 |t#2| (-382 |t#2|) |t#3| |t#4|))) (-15 -2416 ($ |t#4|)) (-15 -2416 ($ |t#1| |t#1|)) (-15 -2416 ($ |t#1| |t#1| (-522))) (-15 -2327 ((-2 (|:| -1868 (-388 |t#2| (-382 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -2153 ($ $)) (-15 -1536 ((-108) $)) (-15 -1368 ((-3 |t#4| "failed") $)) (-15 -2416 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3864 (($ $) 32)) (-2900 (((-108) $) NIL)) (-2385 (((-1068) $) NIL)) (-3251 (((-1166 |#4|) $) 124)) (-2154 (((-388 |#2| (-382 |#2|) |#3| |#4|) $) 30)) (-4151 (((-1032) $) NIL)) (-1383 (((-3 |#4| "failed") $) 35)) (-3378 (((-1166 |#4|) $) 117)) (-4118 (($ (-388 |#2| (-382 |#2|) |#3| |#4|)) 40) (($ |#4|) 42) (($ |#1| |#1|) 44) (($ |#1| |#1| (-522)) 46) (($ |#4| |#2| |#2| |#2| |#1|) 48)) (-3496 (((-2 (|:| -1781 (-388 |#2| (-382 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 38)) (-2190 (((-792) $) 17)) (-3566 (($) 14 T CONST)) (-1531 (((-108) $ $) 20)) (-1612 (($ $) 27) (($ $ $) NIL)) (-1602 (($ $ $) 25)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 23)))
-(((-311 |#1| |#2| |#3| |#4|) (-13 (-310 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3378 ((-1166 |#4|) $)) (-15 -3251 ((-1166 |#4|) $)))) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|)) (T -311))
-((-3378 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-1166 *6)) (-5 *1 (-311 *3 *4 *5 *6)) (-4 *6 (-317 *3 *4 *5)))) (-3251 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-1166 *6)) (-5 *1 (-311 *3 *4 *5 *6)) (-4 *6 (-317 *3 *4 *5)))))
-(-13 (-310 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3378 ((-1166 |#4|) $)) (-15 -3251 ((-1166 |#4|) $))))
-((-2289 (($ $ (-1085) |#2|) NIL) (($ $ (-588 (-1085)) (-588 |#2|)) 18) (($ $ (-588 (-270 |#2|))) 14) (($ $ (-270 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-588 |#2|) (-588 |#2|)) NIL)) (-2545 (($ $ |#2|) 11)))
-(((-312 |#1| |#2|) (-10 -8 (-15 -2545 (|#1| |#1| |#2|)) (-15 -2289 (|#1| |#1| (-588 |#2|) (-588 |#2|))) (-15 -2289 (|#1| |#1| |#2| |#2|)) (-15 -2289 (|#1| |#1| (-270 |#2|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#2|)))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 |#2|))) (-15 -2289 (|#1| |#1| (-1085) |#2|))) (-313 |#2|) (-1014)) (T -312))
-NIL
-(-10 -8 (-15 -2545 (|#1| |#1| |#2|)) (-15 -2289 (|#1| |#1| (-588 |#2|) (-588 |#2|))) (-15 -2289 (|#1| |#1| |#2| |#2|)) (-15 -2289 (|#1| |#1| (-270 |#2|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#2|)))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 |#2|))) (-15 -2289 (|#1| |#1| (-1085) |#2|)))
-((-1391 (($ (-1 |#1| |#1|) $) 6)) (-2289 (($ $ (-1085) |#1|) 17 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 16 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-588 (-270 |#1|))) 15 (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) 14 (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) 13 (|has| |#1| (-285 |#1|))) (($ $ (-588 |#1|) (-588 |#1|)) 12 (|has| |#1| (-285 |#1|)))) (-2545 (($ $ |#1|) 11 (|has| |#1| (-262 |#1| |#1|)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-2153 (($ $) 32)) (-1536 (((-108) $) NIL)) (-2311 (((-1068) $) NIL)) (-1718 (((-1166 |#4|) $) 124)) (-3129 (((-388 |#2| (-382 |#2|) |#3| |#4|) $) 30)) (-4174 (((-1032) $) NIL)) (-1368 (((-3 |#4| "failed") $) 35)) (-3545 (((-1166 |#4|) $) 117)) (-2416 (($ (-388 |#2| (-382 |#2|) |#3| |#4|)) 40) (($ |#4|) 42) (($ |#1| |#1|) 44) (($ |#1| |#1| (-522)) 46) (($ |#4| |#2| |#2| |#2| |#1|) 48)) (-2327 (((-2 (|:| -1868 (-388 |#2| (-382 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 38)) (-2217 (((-792) $) 17)) (-3697 (($) 14 T CONST)) (-1562 (((-108) $ $) 20)) (-1672 (($ $) 27) (($ $ $) NIL)) (-1661 (($ $ $) 25)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 23)))
+(((-311 |#1| |#2| |#3| |#4|) (-13 (-310 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3545 ((-1166 |#4|) $)) (-15 -1718 ((-1166 |#4|) $)))) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|)) (T -311))
+((-3545 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-1166 *6)) (-5 *1 (-311 *3 *4 *5 *6)) (-4 *6 (-317 *3 *4 *5)))) (-1718 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-1166 *6)) (-5 *1 (-311 *3 *4 *5 *6)) (-4 *6 (-317 *3 *4 *5)))))
+(-13 (-310 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3545 ((-1166 |#4|) $)) (-15 -1718 ((-1166 |#4|) $))))
+((-2330 (($ $ (-1085) |#2|) NIL) (($ $ (-588 (-1085)) (-588 |#2|)) 18) (($ $ (-588 (-270 |#2|))) 14) (($ $ (-270 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-588 |#2|) (-588 |#2|)) NIL)) (-2683 (($ $ |#2|) 11)))
+(((-312 |#1| |#2|) (-10 -8 (-15 -2683 (|#1| |#1| |#2|)) (-15 -2330 (|#1| |#1| (-588 |#2|) (-588 |#2|))) (-15 -2330 (|#1| |#1| |#2| |#2|)) (-15 -2330 (|#1| |#1| (-270 |#2|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#2|)))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 |#2|))) (-15 -2330 (|#1| |#1| (-1085) |#2|))) (-313 |#2|) (-1014)) (T -312))
+NIL
+(-10 -8 (-15 -2683 (|#1| |#1| |#2|)) (-15 -2330 (|#1| |#1| (-588 |#2|) (-588 |#2|))) (-15 -2330 (|#1| |#1| |#2| |#2|)) (-15 -2330 (|#1| |#1| (-270 |#2|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#2|)))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 |#2|))) (-15 -2330 (|#1| |#1| (-1085) |#2|)))
+((-3810 (($ (-1 |#1| |#1|) $) 6)) (-2330 (($ $ (-1085) |#1|) 17 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 16 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-588 (-270 |#1|))) 15 (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) 14 (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) 13 (|has| |#1| (-285 |#1|))) (($ $ (-588 |#1|) (-588 |#1|)) 12 (|has| |#1| (-285 |#1|)))) (-2683 (($ $ |#1|) 11 (|has| |#1| (-262 |#1| |#1|)))))
(((-313 |#1|) (-1197) (-1014)) (T -313))
-((-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-313 *3)) (-4 *3 (-1014)))))
-(-13 (-10 -8 (-15 -1391 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-262 |t#1| |t#1|)) (-6 (-262 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-285 |t#1|)) (-6 (-285 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-483 (-1085) |t#1|)) (-6 (-483 (-1085) |t#1|)) |%noBranch|)))
+((-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-313 *3)) (-4 *3 (-1014)))))
+(-13 (-10 -8 (-15 -3810 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-262 |t#1| |t#1|)) (-6 (-262 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-285 |t#1|)) (-6 (-285 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-483 (-1085) |t#1|)) (-6 (-483 (-1085) |t#1|)) |%noBranch|)))
(((-262 |#1| $) |has| |#1| (-262 |#1| |#1|)) ((-285 |#1|) |has| |#1| (-285 |#1|)) ((-483 (-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)) ((-483 |#1| |#1|) |has| |#1| (-285 |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4090 (((-588 (-1085)) $) NIL)) (-2641 (((-108)) 88) (((-108) (-108)) 89)) (-1886 (((-588 (-561 $)) $) NIL)) (-2908 (($ $) NIL)) (-2772 (($ $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3305 (($ $ (-270 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL)) (-1929 (($ $) NIL)) (-2884 (($ $) NIL)) (-2748 (($ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-561 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-291 |#3|)) 70) (((-3 $ "failed") (-1085)) 94) (((-3 $ "failed") (-291 (-522))) 57 (|has| |#3| (-962 (-522)))) (((-3 $ "failed") (-382 (-881 (-522)))) 63 (|has| |#3| (-962 (-522)))) (((-3 $ "failed") (-881 (-522))) 58 (|has| |#3| (-962 (-522)))) (((-3 $ "failed") (-291 (-354))) 75 (|has| |#3| (-962 (-354)))) (((-3 $ "failed") (-382 (-881 (-354)))) 81 (|has| |#3| (-962 (-354)))) (((-3 $ "failed") (-881 (-354))) 76 (|has| |#3| (-962 (-354))))) (-1484 (((-561 $) $) NIL) ((|#3| $) NIL) (($ (-291 |#3|)) 71) (($ (-1085)) 95) (($ (-291 (-522))) 59 (|has| |#3| (-962 (-522)))) (($ (-382 (-881 (-522)))) 64 (|has| |#3| (-962 (-522)))) (($ (-881 (-522))) 60 (|has| |#3| (-962 (-522)))) (($ (-291 (-354))) 77 (|has| |#3| (-962 (-354)))) (($ (-382 (-881 (-354)))) 82 (|has| |#3| (-962 (-354)))) (($ (-881 (-354))) 78 (|has| |#3| (-962 (-354))))) (-2682 (((-3 $ "failed") $) NIL)) (-2838 (($) 10)) (-1953 (($ $) NIL) (($ (-588 $)) NIL)) (-4161 (((-588 (-110)) $) NIL)) (-2626 (((-110) (-110)) NIL)) (-2782 (((-108) $) NIL)) (-2591 (((-108) $) NIL (|has| $ (-962 (-522))))) (-1711 (((-1081 $) (-561 $)) NIL (|has| $ (-971)))) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-1391 (($ (-1 $ $) (-561 $)) NIL)) (-3993 (((-3 (-561 $) "failed") $) NIL)) (-3167 (($ $) 91)) (-1254 (($ $) NIL)) (-2385 (((-1068) $) NIL)) (-1267 (((-588 (-561 $)) $) NIL)) (-2909 (($ (-110) $) 90) (($ (-110) (-588 $)) NIL)) (-2249 (((-108) $ (-110)) NIL) (((-108) $ (-1085)) NIL)) (-4155 (((-708) $) NIL)) (-4151 (((-1032) $) NIL)) (-1648 (((-108) $ $) NIL) (((-108) $ (-1085)) NIL)) (-3266 (($ $) NIL)) (-1263 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2289 (($ $ (-561 $) $) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-1085) (-1 $ (-588 $))) NIL) (($ $ (-1085) (-1 $ $)) NIL) (($ $ (-588 (-110)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-110) (-1 $ (-588 $))) NIL) (($ $ (-110) (-1 $ $)) NIL)) (-2545 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-588 $)) NIL)) (-3043 (($ $) NIL) (($ $ $) NIL)) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL)) (-1479 (($ $) NIL (|has| $ (-971)))) (-2896 (($ $) NIL)) (-2761 (($ $) NIL)) (-2190 (((-792) $) NIL) (($ (-561 $)) NIL) (($ |#3|) NIL) (($ (-522)) NIL) (((-291 |#3|) $) 93)) (-2323 (((-708)) NIL)) (-2308 (($ $) NIL) (($ (-588 $)) NIL)) (-3614 (((-108) (-110)) NIL)) (-2836 (($ $) NIL)) (-2815 (($ $) NIL)) (-2825 (($ $) NIL)) (-2241 (($ $) NIL)) (-3510 (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3566 (($) 92 T CONST)) (-3577 (($) 22 T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) NIL)) (-1612 (($ $ $) NIL) (($ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-522) $) NIL) (($ (-708) $) NIL) (($ (-850) $) NIL)))
-(((-314 |#1| |#2| |#3|) (-13 (-278) (-37 |#3|) (-962 |#3|) (-829 (-1085)) (-10 -8 (-15 -1484 ($ (-291 |#3|))) (-15 -1297 ((-3 $ "failed") (-291 |#3|))) (-15 -1484 ($ (-1085))) (-15 -1297 ((-3 $ "failed") (-1085))) (-15 -2190 ((-291 |#3|) $)) (IF (|has| |#3| (-962 (-522))) (PROGN (-15 -1484 ($ (-291 (-522)))) (-15 -1297 ((-3 $ "failed") (-291 (-522)))) (-15 -1484 ($ (-382 (-881 (-522))))) (-15 -1297 ((-3 $ "failed") (-382 (-881 (-522))))) (-15 -1484 ($ (-881 (-522)))) (-15 -1297 ((-3 $ "failed") (-881 (-522))))) |%noBranch|) (IF (|has| |#3| (-962 (-354))) (PROGN (-15 -1484 ($ (-291 (-354)))) (-15 -1297 ((-3 $ "failed") (-291 (-354)))) (-15 -1484 ($ (-382 (-881 (-354))))) (-15 -1297 ((-3 $ "failed") (-382 (-881 (-354))))) (-15 -1484 ($ (-881 (-354)))) (-15 -1297 ((-3 $ "failed") (-881 (-354))))) |%noBranch|) (-15 -2241 ($ $)) (-15 -1929 ($ $)) (-15 -3266 ($ $)) (-15 -1254 ($ $)) (-15 -3167 ($ $)) (-15 -2748 ($ $)) (-15 -2761 ($ $)) (-15 -2772 ($ $)) (-15 -2815 ($ $)) (-15 -2825 ($ $)) (-15 -2836 ($ $)) (-15 -2884 ($ $)) (-15 -2896 ($ $)) (-15 -2908 ($ $)) (-15 -2838 ($)) (-15 -4090 ((-588 (-1085)) $)) (-15 -2641 ((-108))) (-15 -2641 ((-108) (-108))))) (-588 (-1085)) (-588 (-1085)) (-362)) (T -314))
-((-1484 (*1 *1 *2) (-12 (-5 *2 (-291 *5)) (-4 *5 (-362)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-291 *5)) (-4 *5 (-362)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 *2)) (-14 *4 (-588 *2)) (-4 *5 (-362)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 *2)) (-14 *4 (-588 *2)) (-4 *5 (-362)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-291 *5)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-291 (-522))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-291 (-522))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-382 (-881 (-522)))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-382 (-881 (-522)))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-881 (-522))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-522))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-291 (-354))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-291 (-354))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-382 (-881 (-354)))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-382 (-881 (-354)))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-881 (-354))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-354))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-2241 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-1929 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-3266 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-1254 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-3167 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2748 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2761 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2772 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2815 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2825 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2836 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2884 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2896 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2908 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2838 (*1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-4090 (*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-314 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-362)))) (-2641 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-2641 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))))
-(-13 (-278) (-37 |#3|) (-962 |#3|) (-829 (-1085)) (-10 -8 (-15 -1484 ($ (-291 |#3|))) (-15 -1297 ((-3 $ "failed") (-291 |#3|))) (-15 -1484 ($ (-1085))) (-15 -1297 ((-3 $ "failed") (-1085))) (-15 -2190 ((-291 |#3|) $)) (IF (|has| |#3| (-962 (-522))) (PROGN (-15 -1484 ($ (-291 (-522)))) (-15 -1297 ((-3 $ "failed") (-291 (-522)))) (-15 -1484 ($ (-382 (-881 (-522))))) (-15 -1297 ((-3 $ "failed") (-382 (-881 (-522))))) (-15 -1484 ($ (-881 (-522)))) (-15 -1297 ((-3 $ "failed") (-881 (-522))))) |%noBranch|) (IF (|has| |#3| (-962 (-354))) (PROGN (-15 -1484 ($ (-291 (-354)))) (-15 -1297 ((-3 $ "failed") (-291 (-354)))) (-15 -1484 ($ (-382 (-881 (-354))))) (-15 -1297 ((-3 $ "failed") (-382 (-881 (-354))))) (-15 -1484 ($ (-881 (-354)))) (-15 -1297 ((-3 $ "failed") (-881 (-354))))) |%noBranch|) (-15 -2241 ($ $)) (-15 -1929 ($ $)) (-15 -3266 ($ $)) (-15 -1254 ($ $)) (-15 -3167 ($ $)) (-15 -2748 ($ $)) (-15 -2761 ($ $)) (-15 -2772 ($ $)) (-15 -2815 ($ $)) (-15 -2825 ($ $)) (-15 -2836 ($ $)) (-15 -2884 ($ $)) (-15 -2896 ($ $)) (-15 -2908 ($ $)) (-15 -2838 ($)) (-15 -4090 ((-588 (-1085)) $)) (-15 -2641 ((-108))) (-15 -2641 ((-108) (-108)))))
-((-1391 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
-(((-315 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1391 (|#8| (-1 |#5| |#1|) |#4|))) (-1124) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|) (-1124) (-1142 |#5|) (-1142 (-382 |#6|)) (-317 |#5| |#6| |#7|)) (T -315))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1124)) (-4 *8 (-1124)) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *9 (-1142 *8)) (-4 *2 (-317 *8 *9 *10)) (-5 *1 (-315 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-317 *5 *6 *7)) (-4 *10 (-1142 (-382 *9))))))
-(-10 -7 (-15 -1391 (|#8| (-1 |#5| |#1|) |#4|)))
-((-2375 (((-2 (|:| |num| (-1166 |#3|)) (|:| |den| |#3|)) $) 38)) (-3766 (($ (-1166 (-382 |#3|)) (-1166 $)) NIL) (($ (-1166 (-382 |#3|))) NIL) (($ (-1166 |#3|) |#3|) 159)) (-3642 (((-1166 $) (-1166 $)) 143)) (-2017 (((-588 (-588 |#2|))) 116)) (-1250 (((-108) |#2| |#2|) 72)) (-2071 (($ $) 137)) (-2397 (((-708)) 31)) (-1538 (((-1166 $) (-1166 $)) 196)) (-2653 (((-588 (-881 |#2|)) (-1085)) 109)) (-2156 (((-108) $) 156)) (-1332 (((-108) $) 24) (((-108) $ |#2|) 29) (((-108) $ |#3|) 200)) (-3117 (((-3 |#3| "failed")) 49)) (-3940 (((-708)) 168)) (-2545 ((|#2| $ |#2| |#2|) 130)) (-3157 (((-3 |#3| "failed")) 67)) (-2157 (($ $ (-1 (-382 |#3|) (-382 |#3|)) (-708)) NIL) (($ $ (-1 (-382 |#3|) (-382 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 204) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL) (($ $ (-708)) NIL) (($ $) NIL)) (-1634 (((-1166 $) (-1166 $)) 149)) (-3406 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 65)) (-2058 (((-108)) 33)))
-(((-316 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2017 ((-588 (-588 |#2|)))) (-15 -2653 ((-588 (-881 |#2|)) (-1085))) (-15 -3406 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -3117 ((-3 |#3| "failed"))) (-15 -3157 ((-3 |#3| "failed"))) (-15 -2545 (|#2| |#1| |#2| |#2|)) (-15 -2071 (|#1| |#1|)) (-15 -3766 (|#1| (-1166 |#3|) |#3|)) (-15 -2157 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1332 ((-108) |#1| |#3|)) (-15 -1332 ((-108) |#1| |#2|)) (-15 -2375 ((-2 (|:| |num| (-1166 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -3642 ((-1166 |#1|) (-1166 |#1|))) (-15 -1538 ((-1166 |#1|) (-1166 |#1|))) (-15 -1634 ((-1166 |#1|) (-1166 |#1|))) (-15 -1332 ((-108) |#1|)) (-15 -2156 ((-108) |#1|)) (-15 -1250 ((-108) |#2| |#2|)) (-15 -2058 ((-108))) (-15 -3940 ((-708))) (-15 -2397 ((-708))) (-15 -2157 (|#1| |#1| (-1 (-382 |#3|) (-382 |#3|)))) (-15 -2157 (|#1| |#1| (-1 (-382 |#3|) (-382 |#3|)) (-708))) (-15 -3766 (|#1| (-1166 (-382 |#3|)))) (-15 -3766 (|#1| (-1166 (-382 |#3|)) (-1166 |#1|)))) (-317 |#2| |#3| |#4|) (-1124) (-1142 |#2|) (-1142 (-382 |#3|))) (T -316))
-((-2397 (*1 *2) (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-708)) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6)))) (-3940 (*1 *2) (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-708)) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6)))) (-2058 (*1 *2) (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-108)) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6)))) (-1250 (*1 *2 *3 *3) (-12 (-4 *3 (-1124)) (-4 *5 (-1142 *3)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-108)) (-5 *1 (-316 *4 *3 *5 *6)) (-4 *4 (-317 *3 *5 *6)))) (-3157 (*1 *2) (|partial| -12 (-4 *4 (-1124)) (-4 *5 (-1142 (-382 *2))) (-4 *2 (-1142 *4)) (-5 *1 (-316 *3 *4 *2 *5)) (-4 *3 (-317 *4 *2 *5)))) (-3117 (*1 *2) (|partial| -12 (-4 *4 (-1124)) (-4 *5 (-1142 (-382 *2))) (-4 *2 (-1142 *4)) (-5 *1 (-316 *3 *4 *2 *5)) (-4 *3 (-317 *4 *2 *5)))) (-2653 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *5 (-1124)) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-5 *2 (-588 (-881 *5))) (-5 *1 (-316 *4 *5 *6 *7)) (-4 *4 (-317 *5 *6 *7)))) (-2017 (*1 *2) (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-588 (-588 *4))) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6)))))
-(-10 -8 (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2017 ((-588 (-588 |#2|)))) (-15 -2653 ((-588 (-881 |#2|)) (-1085))) (-15 -3406 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -3117 ((-3 |#3| "failed"))) (-15 -3157 ((-3 |#3| "failed"))) (-15 -2545 (|#2| |#1| |#2| |#2|)) (-15 -2071 (|#1| |#1|)) (-15 -3766 (|#1| (-1166 |#3|) |#3|)) (-15 -2157 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1332 ((-108) |#1| |#3|)) (-15 -1332 ((-108) |#1| |#2|)) (-15 -2375 ((-2 (|:| |num| (-1166 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -3642 ((-1166 |#1|) (-1166 |#1|))) (-15 -1538 ((-1166 |#1|) (-1166 |#1|))) (-15 -1634 ((-1166 |#1|) (-1166 |#1|))) (-15 -1332 ((-108) |#1|)) (-15 -2156 ((-108) |#1|)) (-15 -1250 ((-108) |#2| |#2|)) (-15 -2058 ((-108))) (-15 -3940 ((-708))) (-15 -2397 ((-708))) (-15 -2157 (|#1| |#1| (-1 (-382 |#3|) (-382 |#3|)))) (-15 -2157 (|#1| |#1| (-1 (-382 |#3|) (-382 |#3|)) (-708))) (-15 -3766 (|#1| (-1166 (-382 |#3|)))) (-15 -3766 (|#1| (-1166 (-382 |#3|)) (-1166 |#1|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2375 (((-2 (|:| |num| (-1166 |#2|)) (|:| |den| |#2|)) $) 196)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 93 (|has| (-382 |#2|) (-338)))) (-2022 (($ $) 94 (|has| (-382 |#2|) (-338)))) (-3739 (((-108) $) 96 (|has| (-382 |#2|) (-338)))) (-3174 (((-628 (-382 |#2|)) (-1166 $)) 46) (((-628 (-382 |#2|))) 61)) (-1865 (((-382 |#2|) $) 52)) (-1398 (((-1094 (-850) (-708)) (-522)) 147 (|has| (-382 |#2|) (-324)))) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 113 (|has| (-382 |#2|) (-338)))) (-3450 (((-393 $) $) 114 (|has| (-382 |#2|) (-338)))) (-1687 (((-108) $ $) 104 (|has| (-382 |#2|) (-338)))) (-1629 (((-708)) 87 (|has| (-382 |#2|) (-343)))) (-2472 (((-108)) 213)) (-2898 (((-108) |#1|) 212) (((-108) |#2|) 211)) (-3175 (($) 17 T CONST)) (-1297 (((-3 (-522) "failed") $) 169 (|has| (-382 |#2|) (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 167 (|has| (-382 |#2|) (-962 (-382 (-522))))) (((-3 (-382 |#2|) "failed") $) 166)) (-1484 (((-522) $) 170 (|has| (-382 |#2|) (-962 (-522)))) (((-382 (-522)) $) 168 (|has| (-382 |#2|) (-962 (-382 (-522))))) (((-382 |#2|) $) 165)) (-3766 (($ (-1166 (-382 |#2|)) (-1166 $)) 48) (($ (-1166 (-382 |#2|))) 64) (($ (-1166 |#2|) |#2|) 189)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) 153 (|has| (-382 |#2|) (-324)))) (-2277 (($ $ $) 108 (|has| (-382 |#2|) (-338)))) (-2109 (((-628 (-382 |#2|)) $ (-1166 $)) 53) (((-628 (-382 |#2|)) $) 59)) (-2096 (((-628 (-522)) (-628 $)) 164 (|has| (-382 |#2|) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 163 (|has| (-382 |#2|) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-382 |#2|))) (|:| |vec| (-1166 (-382 |#2|)))) (-628 $) (-1166 $)) 162) (((-628 (-382 |#2|)) (-628 $)) 161)) (-3642 (((-1166 $) (-1166 $)) 201)) (-3864 (($ |#3|) 158) (((-3 $ "failed") (-382 |#3|)) 155 (|has| (-382 |#2|) (-338)))) (-2682 (((-3 $ "failed") $) 34)) (-2017 (((-588 (-588 |#1|))) 182 (|has| |#1| (-343)))) (-1250 (((-108) |#1| |#1|) 217)) (-3166 (((-850)) 54)) (-3255 (($) 90 (|has| (-382 |#2|) (-343)))) (-3144 (((-108)) 210)) (-1228 (((-108) |#1|) 209) (((-108) |#2|) 208)) (-2254 (($ $ $) 107 (|has| (-382 |#2|) (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 102 (|has| (-382 |#2|) (-338)))) (-2071 (($ $) 188)) (-1223 (($) 149 (|has| (-382 |#2|) (-324)))) (-2511 (((-108) $) 150 (|has| (-382 |#2|) (-324)))) (-2111 (($ $ (-708)) 141 (|has| (-382 |#2|) (-324))) (($ $) 140 (|has| (-382 |#2|) (-324)))) (-2813 (((-108) $) 115 (|has| (-382 |#2|) (-338)))) (-3714 (((-850) $) 152 (|has| (-382 |#2|) (-324))) (((-770 (-850)) $) 138 (|has| (-382 |#2|) (-324)))) (-2782 (((-108) $) 31)) (-2397 (((-708)) 220)) (-1538 (((-1166 $) (-1166 $)) 202)) (-2100 (((-382 |#2|) $) 51)) (-2653 (((-588 (-881 |#1|)) (-1085)) 183 (|has| |#1| (-338)))) (-3004 (((-3 $ "failed") $) 142 (|has| (-382 |#2|) (-324)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 111 (|has| (-382 |#2|) (-338)))) (-1712 ((|#3| $) 44 (|has| (-382 |#2|) (-338)))) (-2120 (((-850) $) 89 (|has| (-382 |#2|) (-343)))) (-3849 ((|#3| $) 156)) (-2224 (($ (-588 $)) 100 (|has| (-382 |#2|) (-338))) (($ $ $) 99 (|has| (-382 |#2|) (-338)))) (-2385 (((-1068) $) 9)) (-3293 (((-628 (-382 |#2|))) 197)) (-4178 (((-628 (-382 |#2|))) 199)) (-3098 (($ $) 116 (|has| (-382 |#2|) (-338)))) (-1249 (($ (-1166 |#2|) |#2|) 194)) (-3189 (((-628 (-382 |#2|))) 198)) (-3319 (((-628 (-382 |#2|))) 200)) (-3041 (((-2 (|:| |num| (-628 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 193)) (-4066 (((-2 (|:| |num| (-1166 |#2|)) (|:| |den| |#2|)) $) 195)) (-4003 (((-1166 $)) 206)) (-3882 (((-1166 $)) 207)) (-2156 (((-108) $) 205)) (-1332 (((-108) $) 204) (((-108) $ |#1|) 192) (((-108) $ |#2|) 191)) (-3802 (($) 143 (|has| (-382 |#2|) (-324)) CONST)) (-2717 (($ (-850)) 88 (|has| (-382 |#2|) (-343)))) (-3117 (((-3 |#2| "failed")) 185)) (-4151 (((-1032) $) 10)) (-3940 (((-708)) 219)) (-1383 (($) 160)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 101 (|has| (-382 |#2|) (-338)))) (-2259 (($ (-588 $)) 98 (|has| (-382 |#2|) (-338))) (($ $ $) 97 (|has| (-382 |#2|) (-338)))) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) 146 (|has| (-382 |#2|) (-324)))) (-1916 (((-393 $) $) 112 (|has| (-382 |#2|) (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| (-382 |#2|) (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 109 (|has| (-382 |#2|) (-338)))) (-2232 (((-3 $ "failed") $ $) 92 (|has| (-382 |#2|) (-338)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 103 (|has| (-382 |#2|) (-338)))) (-3730 (((-708) $) 105 (|has| (-382 |#2|) (-338)))) (-2545 ((|#1| $ |#1| |#1|) 187)) (-3157 (((-3 |#2| "failed")) 186)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 106 (|has| (-382 |#2|) (-338)))) (-2769 (((-382 |#2|) (-1166 $)) 47) (((-382 |#2|)) 60)) (-3018 (((-708) $) 151 (|has| (-382 |#2|) (-324))) (((-3 (-708) "failed") $ $) 139 (|has| (-382 |#2|) (-324)))) (-2157 (($ $ (-1 (-382 |#2|) (-382 |#2|)) (-708)) 123 (|has| (-382 |#2|) (-338))) (($ $ (-1 (-382 |#2|) (-382 |#2|))) 122 (|has| (-382 |#2|) (-338))) (($ $ (-1 |#2| |#2|)) 190) (($ $ (-588 (-1085)) (-588 (-708))) 130 (-3708 (-4015 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4015 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-1085) (-708)) 131 (-3708 (-4015 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4015 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-588 (-1085))) 132 (-3708 (-4015 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4015 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-1085)) 133 (-3708 (-4015 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4015 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-708)) 135 (-3708 (-4015 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-210))) (-4015 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324)))) (($ $) 137 (-3708 (-4015 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-210))) (-4015 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324))))) (-1859 (((-628 (-382 |#2|)) (-1166 $) (-1 (-382 |#2|) (-382 |#2|))) 154 (|has| (-382 |#2|) (-338)))) (-1479 ((|#3|) 159)) (-2581 (($) 148 (|has| (-382 |#2|) (-324)))) (-3677 (((-1166 (-382 |#2|)) $ (-1166 $)) 50) (((-628 (-382 |#2|)) (-1166 $) (-1166 $)) 49) (((-1166 (-382 |#2|)) $) 66) (((-628 (-382 |#2|)) (-1166 $)) 65)) (-1431 (((-1166 (-382 |#2|)) $) 63) (($ (-1166 (-382 |#2|))) 62) ((|#3| $) 171) (($ |#3|) 157)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 145 (|has| (-382 |#2|) (-324)))) (-1634 (((-1166 $) (-1166 $)) 203)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ (-382 |#2|)) 37) (($ (-382 (-522))) 86 (-3708 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-962 (-382 (-522)))))) (($ $) 91 (|has| (-382 |#2|) (-338)))) (-2143 (($ $) 144 (|has| (-382 |#2|) (-324))) (((-3 $ "failed") $) 43 (|has| (-382 |#2|) (-133)))) (-2051 ((|#3| $) 45)) (-2323 (((-708)) 29)) (-3532 (((-108)) 216)) (-4170 (((-108) |#1|) 215) (((-108) |#2|) 214)) (-3855 (((-1166 $)) 67)) (-3958 (((-108) $ $) 95 (|has| (-382 |#2|) (-338)))) (-3406 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 184)) (-2058 (((-108)) 218)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 117 (|has| (-382 |#2|) (-338)))) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-1 (-382 |#2|) (-382 |#2|)) (-708)) 125 (|has| (-382 |#2|) (-338))) (($ $ (-1 (-382 |#2|) (-382 |#2|))) 124 (|has| (-382 |#2|) (-338))) (($ $ (-588 (-1085)) (-588 (-708))) 126 (-3708 (-4015 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4015 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-1085) (-708)) 127 (-3708 (-4015 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4015 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-588 (-1085))) 128 (-3708 (-4015 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4015 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-1085)) 129 (-3708 (-4015 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4015 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-708)) 134 (-3708 (-4015 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-210))) (-4015 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324)))) (($ $) 136 (-3708 (-4015 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-210))) (-4015 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324))))) (-1531 (((-108) $ $) 6)) (-1620 (($ $ $) 121 (|has| (-382 |#2|) (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 118 (|has| (-382 |#2|) (-338)))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 |#2|)) 39) (($ (-382 |#2|) $) 38) (($ (-382 (-522)) $) 120 (|has| (-382 |#2|) (-338))) (($ $ (-382 (-522))) 119 (|has| (-382 |#2|) (-338)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3533 (((-588 (-1085)) $) NIL)) (-1616 (((-108)) 88) (((-108) (-108)) 89)) (-1974 (((-588 (-561 $)) $) NIL)) (-3044 (($ $) NIL)) (-2923 (($ $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1847 (($ $ (-270 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL)) (-2016 (($ $) NIL)) (-3023 (($ $) NIL)) (-2906 (($ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-561 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-291 |#3|)) 70) (((-3 $ "failed") (-1085)) 94) (((-3 $ "failed") (-291 (-522))) 57 (|has| |#3| (-962 (-522)))) (((-3 $ "failed") (-382 (-881 (-522)))) 63 (|has| |#3| (-962 (-522)))) (((-3 $ "failed") (-881 (-522))) 58 (|has| |#3| (-962 (-522)))) (((-3 $ "failed") (-291 (-354))) 75 (|has| |#3| (-962 (-354)))) (((-3 $ "failed") (-382 (-881 (-354)))) 81 (|has| |#3| (-962 (-354)))) (((-3 $ "failed") (-881 (-354))) 76 (|has| |#3| (-962 (-354))))) (-1478 (((-561 $) $) NIL) ((|#3| $) NIL) (($ (-291 |#3|)) 71) (($ (-1085)) 95) (($ (-291 (-522))) 59 (|has| |#3| (-962 (-522)))) (($ (-382 (-881 (-522)))) 64 (|has| |#3| (-962 (-522)))) (($ (-881 (-522))) 60 (|has| |#3| (-962 (-522)))) (($ (-291 (-354))) 77 (|has| |#3| (-962 (-354)))) (($ (-382 (-881 (-354)))) 82 (|has| |#3| (-962 (-354)))) (($ (-881 (-354))) 78 (|has| |#3| (-962 (-354))))) (-3920 (((-3 $ "failed") $) NIL)) (-2980 (($) 10)) (-2930 (($ $) NIL) (($ (-588 $)) NIL)) (-2896 (((-588 (-110)) $) NIL)) (-1771 (((-110) (-110)) NIL)) (-2859 (((-108) $) NIL)) (-3077 (((-108) $) NIL (|has| $ (-962 (-522))))) (-4185 (((-1081 $) (-561 $)) NIL (|has| $ (-971)))) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-3810 (($ (-1 $ $) (-561 $)) NIL)) (-3562 (((-3 (-561 $) "failed") $) NIL)) (-3297 (($ $) 91)) (-1238 (($ $) NIL)) (-2311 (((-1068) $) NIL)) (-1249 (((-588 (-561 $)) $) NIL)) (-3043 (($ (-110) $) 90) (($ (-110) (-588 $)) NIL)) (-2935 (((-108) $ (-110)) NIL) (((-108) $ (-1085)) NIL)) (-4179 (((-708) $) NIL)) (-4174 (((-1032) $) NIL)) (-2368 (((-108) $ $) NIL) (((-108) $ (-1085)) NIL)) (-3357 (($ $) NIL)) (-2626 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2330 (($ $ (-561 $) $) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-1085) (-1 $ (-588 $))) NIL) (($ $ (-1085) (-1 $ $)) NIL) (($ $ (-588 (-110)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-110) (-1 $ (-588 $))) NIL) (($ $ (-110) (-1 $ $)) NIL)) (-2683 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-588 $)) NIL)) (-3406 (($ $) NIL) (($ $ $) NIL)) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL)) (-1579 (($ $) NIL (|has| $ (-971)))) (-3035 (($ $) NIL)) (-2915 (($ $) NIL)) (-2217 (((-792) $) NIL) (($ (-561 $)) NIL) (($ |#3|) NIL) (($ (-522)) NIL) (((-291 |#3|) $) 93)) (-2742 (((-708)) NIL)) (-3811 (($ $) NIL) (($ (-588 $)) NIL)) (-4082 (((-108) (-110)) NIL)) (-2976 (($ $) NIL)) (-2957 (($ $) NIL)) (-2966 (($ $) NIL)) (-4126 (($ $) NIL)) (-3622 (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3697 (($) 92 T CONST)) (-3709 (($) 22 T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) NIL)) (-1672 (($ $ $) NIL) (($ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-522) $) NIL) (($ (-708) $) NIL) (($ (-850) $) NIL)))
+(((-314 |#1| |#2| |#3|) (-13 (-278) (-37 |#3|) (-962 |#3|) (-829 (-1085)) (-10 -8 (-15 -1478 ($ (-291 |#3|))) (-15 -3700 ((-3 $ "failed") (-291 |#3|))) (-15 -1478 ($ (-1085))) (-15 -3700 ((-3 $ "failed") (-1085))) (-15 -2217 ((-291 |#3|) $)) (IF (|has| |#3| (-962 (-522))) (PROGN (-15 -1478 ($ (-291 (-522)))) (-15 -3700 ((-3 $ "failed") (-291 (-522)))) (-15 -1478 ($ (-382 (-881 (-522))))) (-15 -3700 ((-3 $ "failed") (-382 (-881 (-522))))) (-15 -1478 ($ (-881 (-522)))) (-15 -3700 ((-3 $ "failed") (-881 (-522))))) |%noBranch|) (IF (|has| |#3| (-962 (-354))) (PROGN (-15 -1478 ($ (-291 (-354)))) (-15 -3700 ((-3 $ "failed") (-291 (-354)))) (-15 -1478 ($ (-382 (-881 (-354))))) (-15 -3700 ((-3 $ "failed") (-382 (-881 (-354))))) (-15 -1478 ($ (-881 (-354)))) (-15 -3700 ((-3 $ "failed") (-881 (-354))))) |%noBranch|) (-15 -4126 ($ $)) (-15 -2016 ($ $)) (-15 -3357 ($ $)) (-15 -1238 ($ $)) (-15 -3297 ($ $)) (-15 -2906 ($ $)) (-15 -2915 ($ $)) (-15 -2923 ($ $)) (-15 -2957 ($ $)) (-15 -2966 ($ $)) (-15 -2976 ($ $)) (-15 -3023 ($ $)) (-15 -3035 ($ $)) (-15 -3044 ($ $)) (-15 -2980 ($)) (-15 -3533 ((-588 (-1085)) $)) (-15 -1616 ((-108))) (-15 -1616 ((-108) (-108))))) (-588 (-1085)) (-588 (-1085)) (-362)) (T -314))
+((-1478 (*1 *1 *2) (-12 (-5 *2 (-291 *5)) (-4 *5 (-362)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-291 *5)) (-4 *5 (-362)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 *2)) (-14 *4 (-588 *2)) (-4 *5 (-362)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 *2)) (-14 *4 (-588 *2)) (-4 *5 (-362)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-291 *5)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-291 (-522))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-291 (-522))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-382 (-881 (-522)))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-382 (-881 (-522)))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-881 (-522))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-522))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-291 (-354))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-291 (-354))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-382 (-881 (-354)))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-382 (-881 (-354)))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-881 (-354))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-354))) (-5 *1 (-314 *3 *4 *5)) (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-4126 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2016 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-3357 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-1238 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-3297 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2906 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2915 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2923 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2957 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2966 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2976 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-3023 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-3035 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-3044 (*1 *1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-2980 (*1 *1) (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085))) (-14 *3 (-588 (-1085))) (-4 *4 (-362)))) (-3533 (*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-314 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-362)))) (-1616 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))) (-1616 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-1085))) (-4 *5 (-362)))))
+(-13 (-278) (-37 |#3|) (-962 |#3|) (-829 (-1085)) (-10 -8 (-15 -1478 ($ (-291 |#3|))) (-15 -3700 ((-3 $ "failed") (-291 |#3|))) (-15 -1478 ($ (-1085))) (-15 -3700 ((-3 $ "failed") (-1085))) (-15 -2217 ((-291 |#3|) $)) (IF (|has| |#3| (-962 (-522))) (PROGN (-15 -1478 ($ (-291 (-522)))) (-15 -3700 ((-3 $ "failed") (-291 (-522)))) (-15 -1478 ($ (-382 (-881 (-522))))) (-15 -3700 ((-3 $ "failed") (-382 (-881 (-522))))) (-15 -1478 ($ (-881 (-522)))) (-15 -3700 ((-3 $ "failed") (-881 (-522))))) |%noBranch|) (IF (|has| |#3| (-962 (-354))) (PROGN (-15 -1478 ($ (-291 (-354)))) (-15 -3700 ((-3 $ "failed") (-291 (-354)))) (-15 -1478 ($ (-382 (-881 (-354))))) (-15 -3700 ((-3 $ "failed") (-382 (-881 (-354))))) (-15 -1478 ($ (-881 (-354)))) (-15 -3700 ((-3 $ "failed") (-881 (-354))))) |%noBranch|) (-15 -4126 ($ $)) (-15 -2016 ($ $)) (-15 -3357 ($ $)) (-15 -1238 ($ $)) (-15 -3297 ($ $)) (-15 -2906 ($ $)) (-15 -2915 ($ $)) (-15 -2923 ($ $)) (-15 -2957 ($ $)) (-15 -2966 ($ $)) (-15 -2976 ($ $)) (-15 -3023 ($ $)) (-15 -3035 ($ $)) (-15 -3044 ($ $)) (-15 -2980 ($)) (-15 -3533 ((-588 (-1085)) $)) (-15 -1616 ((-108))) (-15 -1616 ((-108) (-108)))))
+((-3810 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
+(((-315 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3810 (|#8| (-1 |#5| |#1|) |#4|))) (-1124) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|) (-1124) (-1142 |#5|) (-1142 (-382 |#6|)) (-317 |#5| |#6| |#7|)) (T -315))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1124)) (-4 *8 (-1124)) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *9 (-1142 *8)) (-4 *2 (-317 *8 *9 *10)) (-5 *1 (-315 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-317 *5 *6 *7)) (-4 *10 (-1142 (-382 *9))))))
+(-10 -7 (-15 -3810 (|#8| (-1 |#5| |#1|) |#4|)))
+((-1228 (((-2 (|:| |num| (-1166 |#3|)) (|:| |den| |#3|)) $) 38)) (-3225 (($ (-1166 (-382 |#3|)) (-1166 $)) NIL) (($ (-1166 (-382 |#3|))) NIL) (($ (-1166 |#3|) |#3|) 159)) (-1315 (((-1166 $) (-1166 $)) 143)) (-2230 (((-588 (-588 |#2|))) 116)) (-2477 (((-108) |#2| |#2|) 72)) (-2883 (($ $) 137)) (-1366 (((-708)) 31)) (-3349 (((-1166 $) (-1166 $)) 196)) (-1742 (((-588 (-881 |#2|)) (-1085)) 109)) (-3142 (((-108) $) 156)) (-2010 (((-108) $) 24) (((-108) $ |#2|) 29) (((-108) $ |#3|) 200)) (-2951 (((-3 |#3| "failed")) 49)) (-1243 (((-708)) 168)) (-2683 ((|#2| $ |#2| |#2|) 130)) (-3223 (((-3 |#3| "failed")) 67)) (-2731 (($ $ (-1 (-382 |#3|) (-382 |#3|)) (-708)) NIL) (($ $ (-1 (-382 |#3|) (-382 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 204) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL) (($ $ (-708)) NIL) (($ $) NIL)) (-2200 (((-1166 $) (-1166 $)) 149)) (-3827 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 65)) (-2747 (((-108)) 33)))
+(((-316 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2230 ((-588 (-588 |#2|)))) (-15 -1742 ((-588 (-881 |#2|)) (-1085))) (-15 -3827 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2951 ((-3 |#3| "failed"))) (-15 -3223 ((-3 |#3| "failed"))) (-15 -2683 (|#2| |#1| |#2| |#2|)) (-15 -2883 (|#1| |#1|)) (-15 -3225 (|#1| (-1166 |#3|) |#3|)) (-15 -2731 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2010 ((-108) |#1| |#3|)) (-15 -2010 ((-108) |#1| |#2|)) (-15 -1228 ((-2 (|:| |num| (-1166 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -1315 ((-1166 |#1|) (-1166 |#1|))) (-15 -3349 ((-1166 |#1|) (-1166 |#1|))) (-15 -2200 ((-1166 |#1|) (-1166 |#1|))) (-15 -2010 ((-108) |#1|)) (-15 -3142 ((-108) |#1|)) (-15 -2477 ((-108) |#2| |#2|)) (-15 -2747 ((-108))) (-15 -1243 ((-708))) (-15 -1366 ((-708))) (-15 -2731 (|#1| |#1| (-1 (-382 |#3|) (-382 |#3|)))) (-15 -2731 (|#1| |#1| (-1 (-382 |#3|) (-382 |#3|)) (-708))) (-15 -3225 (|#1| (-1166 (-382 |#3|)))) (-15 -3225 (|#1| (-1166 (-382 |#3|)) (-1166 |#1|)))) (-317 |#2| |#3| |#4|) (-1124) (-1142 |#2|) (-1142 (-382 |#3|))) (T -316))
+((-1366 (*1 *2) (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-708)) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6)))) (-1243 (*1 *2) (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-708)) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6)))) (-2747 (*1 *2) (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-108)) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6)))) (-2477 (*1 *2 *3 *3) (-12 (-4 *3 (-1124)) (-4 *5 (-1142 *3)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-108)) (-5 *1 (-316 *4 *3 *5 *6)) (-4 *4 (-317 *3 *5 *6)))) (-3223 (*1 *2) (|partial| -12 (-4 *4 (-1124)) (-4 *5 (-1142 (-382 *2))) (-4 *2 (-1142 *4)) (-5 *1 (-316 *3 *4 *2 *5)) (-4 *3 (-317 *4 *2 *5)))) (-2951 (*1 *2) (|partial| -12 (-4 *4 (-1124)) (-4 *5 (-1142 (-382 *2))) (-4 *2 (-1142 *4)) (-5 *1 (-316 *3 *4 *2 *5)) (-4 *3 (-317 *4 *2 *5)))) (-1742 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *5 (-1124)) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-5 *2 (-588 (-881 *5))) (-5 *1 (-316 *4 *5 *6 *7)) (-4 *4 (-317 *5 *6 *7)))) (-2230 (*1 *2) (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-588 (-588 *4))) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6)))))
+(-10 -8 (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2230 ((-588 (-588 |#2|)))) (-15 -1742 ((-588 (-881 |#2|)) (-1085))) (-15 -3827 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2951 ((-3 |#3| "failed"))) (-15 -3223 ((-3 |#3| "failed"))) (-15 -2683 (|#2| |#1| |#2| |#2|)) (-15 -2883 (|#1| |#1|)) (-15 -3225 (|#1| (-1166 |#3|) |#3|)) (-15 -2731 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2010 ((-108) |#1| |#3|)) (-15 -2010 ((-108) |#1| |#2|)) (-15 -1228 ((-2 (|:| |num| (-1166 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -1315 ((-1166 |#1|) (-1166 |#1|))) (-15 -3349 ((-1166 |#1|) (-1166 |#1|))) (-15 -2200 ((-1166 |#1|) (-1166 |#1|))) (-15 -2010 ((-108) |#1|)) (-15 -3142 ((-108) |#1|)) (-15 -2477 ((-108) |#2| |#2|)) (-15 -2747 ((-108))) (-15 -1243 ((-708))) (-15 -1366 ((-708))) (-15 -2731 (|#1| |#1| (-1 (-382 |#3|) (-382 |#3|)))) (-15 -2731 (|#1| |#1| (-1 (-382 |#3|) (-382 |#3|)) (-708))) (-15 -3225 (|#1| (-1166 (-382 |#3|)))) (-15 -3225 (|#1| (-1166 (-382 |#3|)) (-1166 |#1|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-1228 (((-2 (|:| |num| (-1166 |#2|)) (|:| |den| |#2|)) $) 196)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 93 (|has| (-382 |#2|) (-338)))) (-2298 (($ $) 94 (|has| (-382 |#2|) (-338)))) (-3007 (((-108) $) 96 (|has| (-382 |#2|) (-338)))) (-3356 (((-628 (-382 |#2|)) (-1166 $)) 46) (((-628 (-382 |#2|))) 61)) (-1945 (((-382 |#2|) $) 52)) (-3833 (((-1094 (-850) (-708)) (-522)) 147 (|has| (-382 |#2|) (-324)))) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 113 (|has| (-382 |#2|) (-338)))) (-3133 (((-393 $) $) 114 (|has| (-382 |#2|) (-338)))) (-2805 (((-108) $ $) 104 (|has| (-382 |#2|) (-338)))) (-1685 (((-708)) 87 (|has| (-382 |#2|) (-343)))) (-2856 (((-108)) 213)) (-1508 (((-108) |#1|) 212) (((-108) |#2|) 211)) (-3367 (($) 17 T CONST)) (-3700 (((-3 (-522) "failed") $) 169 (|has| (-382 |#2|) (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 167 (|has| (-382 |#2|) (-962 (-382 (-522))))) (((-3 (-382 |#2|) "failed") $) 166)) (-1478 (((-522) $) 170 (|has| (-382 |#2|) (-962 (-522)))) (((-382 (-522)) $) 168 (|has| (-382 |#2|) (-962 (-382 (-522))))) (((-382 |#2|) $) 165)) (-3225 (($ (-1166 (-382 |#2|)) (-1166 $)) 48) (($ (-1166 (-382 |#2|))) 64) (($ (-1166 |#2|) |#2|) 189)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) 153 (|has| (-382 |#2|) (-324)))) (-2333 (($ $ $) 108 (|has| (-382 |#2|) (-338)))) (-1359 (((-628 (-382 |#2|)) $ (-1166 $)) 53) (((-628 (-382 |#2|)) $) 59)) (-1226 (((-628 (-522)) (-628 $)) 164 (|has| (-382 |#2|) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 163 (|has| (-382 |#2|) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-382 |#2|))) (|:| |vec| (-1166 (-382 |#2|)))) (-628 $) (-1166 $)) 162) (((-628 (-382 |#2|)) (-628 $)) 161)) (-1315 (((-1166 $) (-1166 $)) 201)) (-2153 (($ |#3|) 158) (((-3 $ "failed") (-382 |#3|)) 155 (|has| (-382 |#2|) (-338)))) (-3920 (((-3 $ "failed") $) 34)) (-2230 (((-588 (-588 |#1|))) 182 (|has| |#1| (-343)))) (-2477 (((-108) |#1| |#1|) 217)) (-1692 (((-850)) 54)) (-3344 (($) 90 (|has| (-382 |#2|) (-343)))) (-3148 (((-108)) 210)) (-2207 (((-108) |#1|) 209) (((-108) |#2|) 208)) (-2303 (($ $ $) 107 (|has| (-382 |#2|) (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 102 (|has| (-382 |#2|) (-338)))) (-2883 (($ $) 188)) (-2160 (($) 149 (|has| (-382 |#2|) (-324)))) (-2087 (((-108) $) 150 (|has| (-382 |#2|) (-324)))) (-1380 (($ $ (-708)) 141 (|has| (-382 |#2|) (-324))) (($ $) 140 (|has| (-382 |#2|) (-324)))) (-2725 (((-108) $) 115 (|has| (-382 |#2|) (-338)))) (-3872 (((-850) $) 152 (|has| (-382 |#2|) (-324))) (((-770 (-850)) $) 138 (|has| (-382 |#2|) (-324)))) (-2859 (((-108) $) 31)) (-1366 (((-708)) 220)) (-3349 (((-1166 $) (-1166 $)) 202)) (-1269 (((-382 |#2|) $) 51)) (-1742 (((-588 (-881 |#1|)) (-1085)) 183 (|has| |#1| (-338)))) (-4208 (((-3 $ "failed") $) 142 (|has| (-382 |#2|) (-324)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 111 (|has| (-382 |#2|) (-338)))) (-4199 ((|#3| $) 44 (|has| (-382 |#2|) (-338)))) (-1475 (((-850) $) 89 (|has| (-382 |#2|) (-343)))) (-2142 ((|#3| $) 156)) (-2267 (($ (-588 $)) 100 (|has| (-382 |#2|) (-338))) (($ $ $) 99 (|has| (-382 |#2|) (-338)))) (-2311 (((-1068) $) 9)) (-2094 (((-628 (-382 |#2|))) 197)) (-1791 (((-628 (-382 |#2|))) 199)) (-3193 (($ $) 116 (|has| (-382 |#2|) (-338)))) (-2464 (($ (-1166 |#2|) |#2|) 194)) (-2286 (((-628 (-382 |#2|))) 198)) (-4203 (((-628 (-382 |#2|))) 200)) (-3385 (((-2 (|:| |num| (-628 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 193)) (-3146 (((-2 (|:| |num| (-1166 |#2|)) (|:| |den| |#2|)) $) 195)) (-3664 (((-1166 $)) 206)) (-1886 (((-1166 $)) 207)) (-3142 (((-108) $) 205)) (-2010 (((-108) $) 204) (((-108) $ |#1|) 192) (((-108) $ |#2|) 191)) (-3937 (($) 143 (|has| (-382 |#2|) (-324)) CONST)) (-2882 (($ (-850)) 88 (|has| (-382 |#2|) (-343)))) (-2951 (((-3 |#2| "failed")) 185)) (-4174 (((-1032) $) 10)) (-1243 (((-708)) 219)) (-1368 (($) 160)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 101 (|has| (-382 |#2|) (-338)))) (-2308 (($ (-588 $)) 98 (|has| (-382 |#2|) (-338))) (($ $ $) 97 (|has| (-382 |#2|) (-338)))) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) 146 (|has| (-382 |#2|) (-324)))) (-2006 (((-393 $) $) 112 (|has| (-382 |#2|) (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| (-382 |#2|) (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 109 (|has| (-382 |#2|) (-338)))) (-2276 (((-3 $ "failed") $ $) 92 (|has| (-382 |#2|) (-338)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 103 (|has| (-382 |#2|) (-338)))) (-4031 (((-708) $) 105 (|has| (-382 |#2|) (-338)))) (-2683 ((|#1| $ |#1| |#1|) 187)) (-3223 (((-3 |#2| "failed")) 186)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 106 (|has| (-382 |#2|) (-338)))) (-1615 (((-382 |#2|) (-1166 $)) 47) (((-382 |#2|)) 60)) (-1304 (((-708) $) 151 (|has| (-382 |#2|) (-324))) (((-3 (-708) "failed") $ $) 139 (|has| (-382 |#2|) (-324)))) (-2731 (($ $ (-1 (-382 |#2|) (-382 |#2|)) (-708)) 123 (|has| (-382 |#2|) (-338))) (($ $ (-1 (-382 |#2|) (-382 |#2|))) 122 (|has| (-382 |#2|) (-338))) (($ $ (-1 |#2| |#2|)) 190) (($ $ (-588 (-1085)) (-588 (-708))) 130 (-3844 (-4079 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4079 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-1085) (-708)) 131 (-3844 (-4079 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4079 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-588 (-1085))) 132 (-3844 (-4079 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4079 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-1085)) 133 (-3844 (-4079 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4079 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-708)) 135 (-3844 (-4079 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-210))) (-4079 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324)))) (($ $) 137 (-3844 (-4079 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-210))) (-4079 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324))))) (-2620 (((-628 (-382 |#2|)) (-1166 $) (-1 (-382 |#2|) (-382 |#2|))) 154 (|has| (-382 |#2|) (-338)))) (-1579 ((|#3|) 159)) (-2670 (($) 148 (|has| (-382 |#2|) (-324)))) (-3510 (((-1166 (-382 |#2|)) $ (-1166 $)) 50) (((-628 (-382 |#2|)) (-1166 $) (-1166 $)) 49) (((-1166 (-382 |#2|)) $) 66) (((-628 (-382 |#2|)) (-1166 $)) 65)) (-3873 (((-1166 (-382 |#2|)) $) 63) (($ (-1166 (-382 |#2|))) 62) ((|#3| $) 171) (($ |#3|) 157)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 145 (|has| (-382 |#2|) (-324)))) (-2200 (((-1166 $) (-1166 $)) 203)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ (-382 |#2|)) 37) (($ (-382 (-522))) 86 (-3844 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-962 (-382 (-522)))))) (($ $) 91 (|has| (-382 |#2|) (-338)))) (-3040 (($ $) 144 (|has| (-382 |#2|) (-324))) (((-3 $ "failed") $) 43 (|has| (-382 |#2|) (-133)))) (-2645 ((|#3| $) 45)) (-2742 (((-708)) 29)) (-2745 (((-108)) 216)) (-2950 (((-108) |#1|) 215) (((-108) |#2|) 214)) (-2905 (((-1166 $)) 67)) (-1407 (((-108) $ $) 95 (|has| (-382 |#2|) (-338)))) (-3827 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 184)) (-2747 (((-108)) 218)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 117 (|has| (-382 |#2|) (-338)))) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-1 (-382 |#2|) (-382 |#2|)) (-708)) 125 (|has| (-382 |#2|) (-338))) (($ $ (-1 (-382 |#2|) (-382 |#2|))) 124 (|has| (-382 |#2|) (-338))) (($ $ (-588 (-1085)) (-588 (-708))) 126 (-3844 (-4079 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4079 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-1085) (-708)) 127 (-3844 (-4079 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4079 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-588 (-1085))) 128 (-3844 (-4079 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4079 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-1085)) 129 (-3844 (-4079 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) (-4079 (|has| (-382 |#2|) (-829 (-1085))) (|has| (-382 |#2|) (-338))))) (($ $ (-708)) 134 (-3844 (-4079 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-210))) (-4079 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324)))) (($ $) 136 (-3844 (-4079 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-210))) (-4079 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324))))) (-1562 (((-108) $ $) 6)) (-1682 (($ $ $) 121 (|has| (-382 |#2|) (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 118 (|has| (-382 |#2|) (-338)))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 |#2|)) 39) (($ (-382 |#2|) $) 38) (($ (-382 (-522)) $) 120 (|has| (-382 |#2|) (-338))) (($ $ (-382 (-522))) 119 (|has| (-382 |#2|) (-338)))))
(((-317 |#1| |#2| |#3|) (-1197) (-1124) (-1142 |t#1|) (-1142 (-382 |t#2|))) (T -317))
-((-2397 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-708)))) (-3940 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-708)))) (-2058 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-1250 (*1 *2 *3 *3) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-3532 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-4170 (*1 *2 *3) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-4170 (*1 *2 *3) (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108)))) (-2472 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-2898 (*1 *2 *3) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-2898 (*1 *2 *3) (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108)))) (-3144 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-1228 (*1 *2 *3) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-1228 (*1 *2 *3) (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108)))) (-3882 (*1 *2) (-12 (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)))) (-4003 (*1 *2) (-12 (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)))) (-2156 (*1 *2 *1) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-1332 (*1 *2 *1) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-1634 (*1 *2 *2) (-12 (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))) (-1538 (*1 *2 *2) (-12 (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))) (-3642 (*1 *2 *2) (-12 (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))) (-3319 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))) (-4178 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))) (-3189 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))) (-3293 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))) (-2375 (*1 *2 *1) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-2 (|:| |num| (-1166 *4)) (|:| |den| *4))))) (-4066 (*1 *2 *1) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-2 (|:| |num| (-1166 *4)) (|:| |den| *4))))) (-1249 (*1 *1 *2 *3) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1142 *4)) (-4 *4 (-1124)) (-4 *1 (-317 *4 *3 *5)) (-4 *5 (-1142 (-382 *3))))) (-3041 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-317 *4 *5 *6)) (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-2 (|:| |num| (-628 *5)) (|:| |den| *5))))) (-1332 (*1 *2 *1 *3) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-1332 (*1 *2 *1 *3) (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108)))) (-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))) (-3766 (*1 *1 *2 *3) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1142 *4)) (-4 *4 (-1124)) (-4 *1 (-317 *4 *3 *5)) (-4 *5 (-1142 (-382 *3))))) (-2071 (*1 *1 *1) (-12 (-4 *1 (-317 *2 *3 *4)) (-4 *2 (-1124)) (-4 *3 (-1142 *2)) (-4 *4 (-1142 (-382 *3))))) (-2545 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-317 *2 *3 *4)) (-4 *2 (-1124)) (-4 *3 (-1142 *2)) (-4 *4 (-1142 (-382 *3))))) (-3157 (*1 *2) (|partial| -12 (-4 *1 (-317 *3 *2 *4)) (-4 *3 (-1124)) (-4 *4 (-1142 (-382 *2))) (-4 *2 (-1142 *3)))) (-3117 (*1 *2) (|partial| -12 (-4 *1 (-317 *3 *2 *4)) (-4 *3 (-1124)) (-4 *4 (-1142 (-382 *2))) (-4 *2 (-1142 *3)))) (-3406 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-1124)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-317 *4 *5 *6)))) (-2653 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *1 (-317 *4 *5 *6)) (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-4 *4 (-338)) (-5 *2 (-588 (-881 *4))))) (-2017 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *3 (-343)) (-5 *2 (-588 (-588 *3))))))
-(-13 (-662 (-382 |t#2|) |t#3|) (-10 -8 (-15 -2397 ((-708))) (-15 -3940 ((-708))) (-15 -2058 ((-108))) (-15 -1250 ((-108) |t#1| |t#1|)) (-15 -3532 ((-108))) (-15 -4170 ((-108) |t#1|)) (-15 -4170 ((-108) |t#2|)) (-15 -2472 ((-108))) (-15 -2898 ((-108) |t#1|)) (-15 -2898 ((-108) |t#2|)) (-15 -3144 ((-108))) (-15 -1228 ((-108) |t#1|)) (-15 -1228 ((-108) |t#2|)) (-15 -3882 ((-1166 $))) (-15 -4003 ((-1166 $))) (-15 -2156 ((-108) $)) (-15 -1332 ((-108) $)) (-15 -1634 ((-1166 $) (-1166 $))) (-15 -1538 ((-1166 $) (-1166 $))) (-15 -3642 ((-1166 $) (-1166 $))) (-15 -3319 ((-628 (-382 |t#2|)))) (-15 -4178 ((-628 (-382 |t#2|)))) (-15 -3189 ((-628 (-382 |t#2|)))) (-15 -3293 ((-628 (-382 |t#2|)))) (-15 -2375 ((-2 (|:| |num| (-1166 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3766 ($ (-1166 |t#2|) |t#2|)) (-15 -4066 ((-2 (|:| |num| (-1166 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -1249 ($ (-1166 |t#2|) |t#2|)) (-15 -3041 ((-2 (|:| |num| (-628 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -1332 ((-108) $ |t#1|)) (-15 -1332 ((-108) $ |t#2|)) (-15 -2157 ($ $ (-1 |t#2| |t#2|))) (-15 -3766 ($ (-1166 |t#2|) |t#2|)) (-15 -2071 ($ $)) (-15 -2545 (|t#1| $ |t#1| |t#1|)) (-15 -3157 ((-3 |t#2| "failed"))) (-15 -3117 ((-3 |t#2| "failed"))) (-15 -3406 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-338)) (-15 -2653 ((-588 (-881 |t#1|)) (-1085))) |%noBranch|) (IF (|has| |t#1| (-343)) (-15 -2017 ((-588 (-588 |t#1|)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-37 #1=(-382 |#2|)) . T) ((-37 $) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-97) . T) ((-107 #0# #0#) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-107 #1# #1#) . T) ((-107 $ $) . T) ((-124) . T) ((-133) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-133))) ((-135) |has| (-382 |#2|) (-135)) ((-562 (-792)) . T) ((-157) . T) ((-563 |#3|) . T) ((-208 #1#) |has| (-382 |#2|) (-338)) ((-210) -3708 (|has| (-382 |#2|) (-324)) (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338)))) ((-220) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-266) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-283) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-338) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-377) |has| (-382 |#2|) (-324)) ((-343) -3708 (|has| (-382 |#2|) (-343)) (|has| (-382 |#2|) (-324))) ((-324) |has| (-382 |#2|) (-324)) ((-345 #1# |#3|) . T) ((-384 #1# |#3|) . T) ((-352 #1#) . T) ((-386 #1#) . T) ((-426) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-514) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-590 #0#) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-590 #1#) . T) ((-590 $) . T) ((-584 #1#) . T) ((-584 (-522)) |has| (-382 |#2|) (-584 (-522))) ((-655 #0#) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-655 #1#) . T) ((-655 $) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-662 #1# |#3|) . T) ((-664) . T) ((-829 (-1085)) -12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) ((-849) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-962 (-382 (-522))) |has| (-382 |#2|) (-962 (-382 (-522)))) ((-962 #1#) . T) ((-962 (-522)) |has| (-382 |#2|) (-962 (-522))) ((-977 #0#) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-977 #1#) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) |has| (-382 |#2|) (-324)) ((-1124) -3708 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1651 (((-108) $) NIL)) (-2219 (((-708)) NIL)) (-1865 (((-839 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-1398 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-839 |#1|) (-343)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1629 (((-708)) NIL (|has| (-839 |#1|) (-343)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-839 |#1|) "failed") $) NIL)) (-1484 (((-839 |#1|) $) NIL)) (-3766 (($ (-1166 (-839 |#1|))) NIL)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-839 |#1|) (-343)))) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| (-839 |#1|) (-343)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-1223 (($) NIL (|has| (-839 |#1|) (-343)))) (-2511 (((-108) $) NIL (|has| (-839 |#1|) (-343)))) (-2111 (($ $ (-708)) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343)))) (($ $) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2813 (((-108) $) NIL)) (-3714 (((-850) $) NIL (|has| (-839 |#1|) (-343))) (((-770 (-850)) $) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2782 (((-108) $) NIL)) (-3400 (($) NIL (|has| (-839 |#1|) (-343)))) (-2741 (((-108) $) NIL (|has| (-839 |#1|) (-343)))) (-2100 (((-839 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-3004 (((-3 $ "failed") $) NIL (|has| (-839 |#1|) (-343)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1712 (((-1081 (-839 |#1|)) $) NIL) (((-1081 $) $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-2120 (((-850) $) NIL (|has| (-839 |#1|) (-343)))) (-3074 (((-1081 (-839 |#1|)) $) NIL (|has| (-839 |#1|) (-343)))) (-2941 (((-1081 (-839 |#1|)) $) NIL (|has| (-839 |#1|) (-343))) (((-3 (-1081 (-839 |#1|)) "failed") $ $) NIL (|has| (-839 |#1|) (-343)))) (-1425 (($ $ (-1081 (-839 |#1|))) NIL (|has| (-839 |#1|) (-343)))) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| (-839 |#1|) (-343)) CONST)) (-2717 (($ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-2822 (((-108) $) NIL)) (-4151 (((-1032) $) NIL)) (-3141 (((-886 (-1032))) NIL)) (-1383 (($) NIL (|has| (-839 |#1|) (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL (|has| (-839 |#1|) (-343)))) (-1916 (((-393 $) $) NIL)) (-2621 (((-770 (-850))) NIL) (((-850)) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3018 (((-708) $) NIL (|has| (-839 |#1|) (-343))) (((-3 (-708) "failed") $ $) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-4078 (((-126)) NIL)) (-2157 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-2793 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1479 (((-1081 (-839 |#1|))) NIL)) (-2581 (($) NIL (|has| (-839 |#1|) (-343)))) (-1299 (($) NIL (|has| (-839 |#1|) (-343)))) (-3677 (((-1166 (-839 |#1|)) $) NIL) (((-628 (-839 |#1|)) (-1166 $)) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| (-839 |#1|) (-343)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-839 |#1|)) NIL)) (-2143 (($ $) NIL (|has| (-839 |#1|) (-343))) (((-3 $ "failed") $) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2323 (((-708)) NIL)) (-3855 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-3958 (((-108) $ $) NIL)) (-2351 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-3428 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-2213 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL) (($ $ (-839 |#1|)) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ (-839 |#1|)) NIL) (($ (-839 |#1|) $) NIL)))
-(((-318 |#1| |#2|) (-13 (-304 (-839 |#1|)) (-10 -7 (-15 -3141 ((-886 (-1032)))))) (-850) (-850)) (T -318))
-((-3141 (*1 *2) (-12 (-5 *2 (-886 (-1032))) (-5 *1 (-318 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))))
-(-13 (-304 (-839 |#1|)) (-10 -7 (-15 -3141 ((-886 (-1032))))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 46)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1651 (((-108) $) NIL)) (-2219 (((-708)) NIL)) (-1865 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-1398 (((-1094 (-850) (-708)) (-522)) 43 (|has| |#1| (-343)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1629 (((-708)) NIL (|has| |#1| (-343)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) 114)) (-1484 ((|#1| $) 85)) (-3766 (($ (-1166 |#1|)) 103)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) 94 (|has| |#1| (-343)))) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) 97 (|has| |#1| (-343)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-1223 (($) 129 (|has| |#1| (-343)))) (-2511 (((-108) $) 49 (|has| |#1| (-343)))) (-2111 (($ $ (-708)) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2813 (((-108) $) NIL)) (-3714 (((-850) $) 47 (|has| |#1| (-343))) (((-770 (-850)) $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2782 (((-108) $) NIL)) (-3400 (($) 131 (|has| |#1| (-343)))) (-2741 (((-108) $) NIL (|has| |#1| (-343)))) (-2100 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-3004 (((-3 $ "failed") $) NIL (|has| |#1| (-343)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1712 (((-1081 |#1|) $) 89) (((-1081 $) $ (-850)) NIL (|has| |#1| (-343)))) (-2120 (((-850) $) 139 (|has| |#1| (-343)))) (-3074 (((-1081 |#1|) $) NIL (|has| |#1| (-343)))) (-2941 (((-1081 |#1|) $) NIL (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) NIL (|has| |#1| (-343)))) (-1425 (($ $ (-1081 |#1|)) NIL (|has| |#1| (-343)))) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 146)) (-3802 (($) NIL (|has| |#1| (-343)) CONST)) (-2717 (($ (-850)) 70 (|has| |#1| (-343)))) (-2822 (((-108) $) 117)) (-4151 (((-1032) $) NIL)) (-3141 (((-886 (-1032))) 44)) (-1383 (($) 127 (|has| |#1| (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) 92 (|has| |#1| (-343)))) (-1916 (((-393 $) $) NIL)) (-2621 (((-770 (-850))) 67) (((-850)) 68)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3018 (((-708) $) 130 (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) 124 (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-4078 (((-126)) NIL)) (-2157 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2793 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1479 (((-1081 |#1|)) 95)) (-2581 (($) 128 (|has| |#1| (-343)))) (-1299 (($) 136 (|has| |#1| (-343)))) (-3677 (((-1166 |#1|) $) 59) (((-628 |#1|) (-1166 $)) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-343)))) (-2190 (((-792) $) 142) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) 74)) (-2143 (($ $) NIL (|has| |#1| (-343))) (((-3 $ "failed") $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2323 (((-708)) 138)) (-3855 (((-1166 $)) 116) (((-1166 $) (-850)) 72)) (-3958 (((-108) $ $) NIL)) (-2351 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 32 T CONST)) (-3577 (($) 19 T CONST)) (-3428 (($ $) 80 (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2213 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-1531 (((-108) $ $) 48)) (-1620 (($ $ $) 144) (($ $ |#1|) 145)) (-1612 (($ $) 126) (($ $ $) NIL)) (-1602 (($ $ $) 61)) (** (($ $ (-850)) 148) (($ $ (-708)) 149) (($ $ (-522)) 147)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 76) (($ $ $) 75) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 143)))
-(((-319 |#1| |#2|) (-13 (-304 |#1|) (-10 -7 (-15 -3141 ((-886 (-1032)))))) (-324) (-1081 |#1|)) (T -319))
-((-3141 (*1 *2) (-12 (-5 *2 (-886 (-1032))) (-5 *1 (-319 *3 *4)) (-4 *3 (-324)) (-14 *4 (-1081 *3)))))
-(-13 (-304 |#1|) (-10 -7 (-15 -3141 ((-886 (-1032))))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1651 (((-108) $) NIL)) (-2219 (((-708)) NIL)) (-1865 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-1398 (((-1094 (-850) (-708)) (-522)) NIL (|has| |#1| (-343)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1629 (((-708)) NIL (|has| |#1| (-343)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL)) (-1484 ((|#1| $) NIL)) (-3766 (($ (-1166 |#1|)) NIL)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-343)))) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| |#1| (-343)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-1223 (($) NIL (|has| |#1| (-343)))) (-2511 (((-108) $) NIL (|has| |#1| (-343)))) (-2111 (($ $ (-708)) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2813 (((-108) $) NIL)) (-3714 (((-850) $) NIL (|has| |#1| (-343))) (((-770 (-850)) $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2782 (((-108) $) NIL)) (-3400 (($) NIL (|has| |#1| (-343)))) (-2741 (((-108) $) NIL (|has| |#1| (-343)))) (-2100 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-3004 (((-3 $ "failed") $) NIL (|has| |#1| (-343)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1712 (((-1081 |#1|) $) NIL) (((-1081 $) $ (-850)) NIL (|has| |#1| (-343)))) (-2120 (((-850) $) NIL (|has| |#1| (-343)))) (-3074 (((-1081 |#1|) $) NIL (|has| |#1| (-343)))) (-2941 (((-1081 |#1|) $) NIL (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) NIL (|has| |#1| (-343)))) (-1425 (($ $ (-1081 |#1|)) NIL (|has| |#1| (-343)))) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| |#1| (-343)) CONST)) (-2717 (($ (-850)) NIL (|has| |#1| (-343)))) (-2822 (((-108) $) NIL)) (-4151 (((-1032) $) NIL)) (-3141 (((-886 (-1032))) NIL)) (-1383 (($) NIL (|has| |#1| (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL (|has| |#1| (-343)))) (-1916 (((-393 $) $) NIL)) (-2621 (((-770 (-850))) NIL) (((-850)) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3018 (((-708) $) NIL (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-4078 (((-126)) NIL)) (-2157 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2793 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1479 (((-1081 |#1|)) NIL)) (-2581 (($) NIL (|has| |#1| (-343)))) (-1299 (($) NIL (|has| |#1| (-343)))) (-3677 (((-1166 |#1|) $) NIL) (((-628 |#1|) (-1166 $)) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-343)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) NIL)) (-2143 (($ $) NIL (|has| |#1| (-343))) (((-3 $ "failed") $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2323 (((-708)) NIL)) (-3855 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-3958 (((-108) $ $) NIL)) (-2351 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-3428 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2213 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-320 |#1| |#2|) (-13 (-304 |#1|) (-10 -7 (-15 -3141 ((-886 (-1032)))))) (-324) (-850)) (T -320))
-((-3141 (*1 *2) (-12 (-5 *2 (-886 (-1032))) (-5 *1 (-320 *3 *4)) (-4 *3 (-324)) (-14 *4 (-850)))))
-(-13 (-304 |#1|) (-10 -7 (-15 -3141 ((-886 (-1032))))))
-((-1294 (((-708) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032)))))) 40)) (-3643 (((-886 (-1032)) (-1081 |#1|)) 85)) (-1317 (((-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))) (-1081 |#1|)) 78)) (-2637 (((-628 |#1|) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032)))))) 86)) (-3833 (((-3 (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))) "failed") (-850)) 10)) (-3161 (((-3 (-1081 |#1|) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032)))))) (-850)) 15)))
-(((-321 |#1|) (-10 -7 (-15 -3643 ((-886 (-1032)) (-1081 |#1|))) (-15 -1317 ((-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))) (-1081 |#1|))) (-15 -2637 ((-628 |#1|) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))))) (-15 -1294 ((-708) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))))) (-15 -3833 ((-3 (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))) "failed") (-850))) (-15 -3161 ((-3 (-1081 |#1|) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032)))))) (-850)))) (-324)) (T -321))
-((-3161 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-3 (-1081 *4) (-1166 (-588 (-2 (|:| -3435 *4) (|:| -2717 (-1032))))))) (-5 *1 (-321 *4)) (-4 *4 (-324)))) (-3833 (*1 *2 *3) (|partial| -12 (-5 *3 (-850)) (-5 *2 (-1166 (-588 (-2 (|:| -3435 *4) (|:| -2717 (-1032)))))) (-5 *1 (-321 *4)) (-4 *4 (-324)))) (-1294 (*1 *2 *3) (-12 (-5 *3 (-1166 (-588 (-2 (|:| -3435 *4) (|:| -2717 (-1032)))))) (-4 *4 (-324)) (-5 *2 (-708)) (-5 *1 (-321 *4)))) (-2637 (*1 *2 *3) (-12 (-5 *3 (-1166 (-588 (-2 (|:| -3435 *4) (|:| -2717 (-1032)))))) (-4 *4 (-324)) (-5 *2 (-628 *4)) (-5 *1 (-321 *4)))) (-1317 (*1 *2 *3) (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-1166 (-588 (-2 (|:| -3435 *4) (|:| -2717 (-1032)))))) (-5 *1 (-321 *4)))) (-3643 (*1 *2 *3) (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-886 (-1032))) (-5 *1 (-321 *4)))))
-(-10 -7 (-15 -3643 ((-886 (-1032)) (-1081 |#1|))) (-15 -1317 ((-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))) (-1081 |#1|))) (-15 -2637 ((-628 |#1|) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))))) (-15 -1294 ((-708) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))))) (-15 -3833 ((-3 (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))) "failed") (-850))) (-15 -3161 ((-3 (-1081 |#1|) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032)))))) (-850))))
-((-2190 ((|#1| |#3|) 84) ((|#3| |#1|) 68)))
-(((-322 |#1| |#2| |#3|) (-10 -7 (-15 -2190 (|#3| |#1|)) (-15 -2190 (|#1| |#3|))) (-304 |#2|) (-324) (-304 |#2|)) (T -322))
-((-2190 (*1 *2 *3) (-12 (-4 *4 (-324)) (-4 *2 (-304 *4)) (-5 *1 (-322 *2 *4 *3)) (-4 *3 (-304 *4)))) (-2190 (*1 *2 *3) (-12 (-4 *4 (-324)) (-4 *2 (-304 *4)) (-5 *1 (-322 *3 *4 *2)) (-4 *3 (-304 *4)))))
-(-10 -7 (-15 -2190 (|#3| |#1|)) (-15 -2190 (|#1| |#3|)))
-((-2511 (((-108) $) 51)) (-3714 (((-770 (-850)) $) 21) (((-850) $) 52)) (-3004 (((-3 $ "failed") $) 16)) (-3802 (($) 9)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 92)) (-3018 (((-3 (-708) "failed") $ $) 71) (((-708) $) 60)) (-2157 (($ $ (-708)) NIL) (($ $) 8)) (-2581 (($) 45)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 33)) (-2143 (((-3 $ "failed") $) 39) (($ $) 38)))
-(((-323 |#1|) (-10 -8 (-15 -3714 ((-850) |#1|)) (-15 -3018 ((-708) |#1|)) (-15 -2511 ((-108) |#1|)) (-15 -2581 (|#1|)) (-15 -2412 ((-3 (-1166 |#1|) "failed") (-628 |#1|))) (-15 -2143 (|#1| |#1|)) (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -3802 (|#1|)) (-15 -3004 ((-3 |#1| "failed") |#1|)) (-15 -3018 ((-3 (-708) "failed") |#1| |#1|)) (-15 -3714 ((-770 (-850)) |#1|)) (-15 -2143 ((-3 |#1| "failed") |#1|)) (-15 -1307 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|)))) (-324)) (T -323))
-NIL
-(-10 -8 (-15 -3714 ((-850) |#1|)) (-15 -3018 ((-708) |#1|)) (-15 -2511 ((-108) |#1|)) (-15 -2581 (|#1|)) (-15 -2412 ((-3 (-1166 |#1|) "failed") (-628 |#1|))) (-15 -2143 (|#1| |#1|)) (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -3802 (|#1|)) (-15 -3004 ((-3 |#1| "failed") |#1|)) (-15 -3018 ((-3 (-708) "failed") |#1| |#1|)) (-15 -3714 ((-770 (-850)) |#1|)) (-15 -2143 ((-3 |#1| "failed") |#1|)) (-15 -1307 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1398 (((-1094 (-850) (-708)) (-522)) 93)) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 73)) (-3450 (((-393 $) $) 72)) (-1687 (((-108) $ $) 59)) (-1629 (((-708)) 103)) (-3175 (($) 17 T CONST)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) 87)) (-2277 (($ $ $) 55)) (-2682 (((-3 $ "failed") $) 34)) (-3255 (($) 106)) (-2254 (($ $ $) 56)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-1223 (($) 91)) (-2511 (((-108) $) 90)) (-2111 (($ $) 79) (($ $ (-708)) 78)) (-2813 (((-108) $) 71)) (-3714 (((-770 (-850)) $) 81) (((-850) $) 88)) (-2782 (((-108) $) 31)) (-3004 (((-3 $ "failed") $) 102)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2120 (((-850) $) 105)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 70)) (-3802 (($) 101 T CONST)) (-2717 (($ (-850)) 104)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) 94)) (-1916 (((-393 $) $) 74)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-3730 (((-708) $) 58)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57)) (-3018 (((-3 (-708) "failed") $ $) 80) (((-708) $) 89)) (-2157 (($ $ (-708)) 99) (($ $) 97)) (-2581 (($) 92)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 95)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65)) (-2143 (((-3 $ "failed") $) 82) (($ $) 96)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-708)) 100) (($ $) 98)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ $) 64)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66)))
+((-1366 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-708)))) (-1243 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-708)))) (-2747 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-2477 (*1 *2 *3 *3) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-2745 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-2950 (*1 *2 *3) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-2950 (*1 *2 *3) (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108)))) (-2856 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-1508 (*1 *2 *3) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-1508 (*1 *2 *3) (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108)))) (-3148 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-2207 (*1 *2 *3) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-2207 (*1 *2 *3) (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108)))) (-1886 (*1 *2) (-12 (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)))) (-3664 (*1 *2) (-12 (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)))) (-3142 (*1 *2 *1) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-2010 (*1 *2 *1) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-2200 (*1 *2 *2) (-12 (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))) (-3349 (*1 *2 *2) (-12 (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))) (-1315 (*1 *2 *2) (-12 (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))) (-4203 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))) (-1791 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))) (-2286 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))) (-2094 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))) (-1228 (*1 *2 *1) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-2 (|:| |num| (-1166 *4)) (|:| |den| *4))))) (-3146 (*1 *2 *1) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-2 (|:| |num| (-1166 *4)) (|:| |den| *4))))) (-2464 (*1 *1 *2 *3) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1142 *4)) (-4 *4 (-1124)) (-4 *1 (-317 *4 *3 *5)) (-4 *5 (-1142 (-382 *3))))) (-3385 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-317 *4 *5 *6)) (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-2 (|:| |num| (-628 *5)) (|:| |den| *5))))) (-2010 (*1 *2 *1 *3) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))) (-2010 (*1 *2 *1 *3) (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108)))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))) (-3225 (*1 *1 *2 *3) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1142 *4)) (-4 *4 (-1124)) (-4 *1 (-317 *4 *3 *5)) (-4 *5 (-1142 (-382 *3))))) (-2883 (*1 *1 *1) (-12 (-4 *1 (-317 *2 *3 *4)) (-4 *2 (-1124)) (-4 *3 (-1142 *2)) (-4 *4 (-1142 (-382 *3))))) (-2683 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-317 *2 *3 *4)) (-4 *2 (-1124)) (-4 *3 (-1142 *2)) (-4 *4 (-1142 (-382 *3))))) (-3223 (*1 *2) (|partial| -12 (-4 *1 (-317 *3 *2 *4)) (-4 *3 (-1124)) (-4 *4 (-1142 (-382 *2))) (-4 *2 (-1142 *3)))) (-2951 (*1 *2) (|partial| -12 (-4 *1 (-317 *3 *2 *4)) (-4 *3 (-1124)) (-4 *4 (-1142 (-382 *2))) (-4 *2 (-1142 *3)))) (-3827 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-1124)) (-4 *6 (-1142 (-382 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-317 *4 *5 *6)))) (-1742 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *1 (-317 *4 *5 *6)) (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-4 *4 (-338)) (-5 *2 (-588 (-881 *4))))) (-2230 (*1 *2) (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))) (-4 *3 (-343)) (-5 *2 (-588 (-588 *3))))))
+(-13 (-662 (-382 |t#2|) |t#3|) (-10 -8 (-15 -1366 ((-708))) (-15 -1243 ((-708))) (-15 -2747 ((-108))) (-15 -2477 ((-108) |t#1| |t#1|)) (-15 -2745 ((-108))) (-15 -2950 ((-108) |t#1|)) (-15 -2950 ((-108) |t#2|)) (-15 -2856 ((-108))) (-15 -1508 ((-108) |t#1|)) (-15 -1508 ((-108) |t#2|)) (-15 -3148 ((-108))) (-15 -2207 ((-108) |t#1|)) (-15 -2207 ((-108) |t#2|)) (-15 -1886 ((-1166 $))) (-15 -3664 ((-1166 $))) (-15 -3142 ((-108) $)) (-15 -2010 ((-108) $)) (-15 -2200 ((-1166 $) (-1166 $))) (-15 -3349 ((-1166 $) (-1166 $))) (-15 -1315 ((-1166 $) (-1166 $))) (-15 -4203 ((-628 (-382 |t#2|)))) (-15 -1791 ((-628 (-382 |t#2|)))) (-15 -2286 ((-628 (-382 |t#2|)))) (-15 -2094 ((-628 (-382 |t#2|)))) (-15 -1228 ((-2 (|:| |num| (-1166 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3225 ($ (-1166 |t#2|) |t#2|)) (-15 -3146 ((-2 (|:| |num| (-1166 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -2464 ($ (-1166 |t#2|) |t#2|)) (-15 -3385 ((-2 (|:| |num| (-628 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -2010 ((-108) $ |t#1|)) (-15 -2010 ((-108) $ |t#2|)) (-15 -2731 ($ $ (-1 |t#2| |t#2|))) (-15 -3225 ($ (-1166 |t#2|) |t#2|)) (-15 -2883 ($ $)) (-15 -2683 (|t#1| $ |t#1| |t#1|)) (-15 -3223 ((-3 |t#2| "failed"))) (-15 -2951 ((-3 |t#2| "failed"))) (-15 -3827 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-338)) (-15 -1742 ((-588 (-881 |t#1|)) (-1085))) |%noBranch|) (IF (|has| |t#1| (-343)) (-15 -2230 ((-588 (-588 |t#1|)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-37 #1=(-382 |#2|)) . T) ((-37 $) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-97) . T) ((-107 #0# #0#) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-107 #1# #1#) . T) ((-107 $ $) . T) ((-124) . T) ((-133) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-133))) ((-135) |has| (-382 |#2|) (-135)) ((-562 (-792)) . T) ((-157) . T) ((-563 |#3|) . T) ((-208 #1#) |has| (-382 |#2|) (-338)) ((-210) -3844 (|has| (-382 |#2|) (-324)) (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338)))) ((-220) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-266) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-283) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-338) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-377) |has| (-382 |#2|) (-324)) ((-343) -3844 (|has| (-382 |#2|) (-343)) (|has| (-382 |#2|) (-324))) ((-324) |has| (-382 |#2|) (-324)) ((-345 #1# |#3|) . T) ((-384 #1# |#3|) . T) ((-352 #1#) . T) ((-386 #1#) . T) ((-426) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-514) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-590 #0#) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-590 #1#) . T) ((-590 $) . T) ((-584 #1#) . T) ((-584 (-522)) |has| (-382 |#2|) (-584 (-522))) ((-655 #0#) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-655 #1#) . T) ((-655 $) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-662 #1# |#3|) . T) ((-664) . T) ((-829 (-1085)) -12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085)))) ((-849) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-962 (-382 (-522))) |has| (-382 |#2|) (-962 (-382 (-522)))) ((-962 #1#) . T) ((-962 (-522)) |has| (-382 |#2|) (-962 (-522))) ((-977 #0#) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))) ((-977 #1#) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) |has| (-382 |#2|) (-324)) ((-1124) -3844 (|has| (-382 |#2|) (-324)) (|has| (-382 |#2|) (-338))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2400 (((-108) $) NIL)) (-1593 (((-708)) NIL)) (-1945 (((-839 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-3833 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-839 |#1|) (-343)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-1685 (((-708)) NIL (|has| (-839 |#1|) (-343)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-839 |#1|) "failed") $) NIL)) (-1478 (((-839 |#1|) $) NIL)) (-3225 (($ (-1166 (-839 |#1|))) NIL)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-839 |#1|) (-343)))) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| (-839 |#1|) (-343)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2160 (($) NIL (|has| (-839 |#1|) (-343)))) (-2087 (((-108) $) NIL (|has| (-839 |#1|) (-343)))) (-1380 (($ $ (-708)) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343)))) (($ $) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2725 (((-108) $) NIL)) (-3872 (((-850) $) NIL (|has| (-839 |#1|) (-343))) (((-770 (-850)) $) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2859 (((-108) $) NIL)) (-3768 (($) NIL (|has| (-839 |#1|) (-343)))) (-1372 (((-108) $) NIL (|has| (-839 |#1|) (-343)))) (-1269 (((-839 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-4208 (((-3 $ "failed") $) NIL (|has| (-839 |#1|) (-343)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4199 (((-1081 (-839 |#1|)) $) NIL) (((-1081 $) $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-1475 (((-850) $) NIL (|has| (-839 |#1|) (-343)))) (-3657 (((-1081 (-839 |#1|)) $) NIL (|has| (-839 |#1|) (-343)))) (-3723 (((-1081 (-839 |#1|)) $) NIL (|has| (-839 |#1|) (-343))) (((-3 (-1081 (-839 |#1|)) "failed") $ $) NIL (|has| (-839 |#1|) (-343)))) (-2259 (($ $ (-1081 (-839 |#1|))) NIL (|has| (-839 |#1|) (-343)))) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| (-839 |#1|) (-343)) CONST)) (-2882 (($ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-2804 (((-108) $) NIL)) (-4174 (((-1032) $) NIL)) (-3128 (((-886 (-1032))) NIL)) (-1368 (($) NIL (|has| (-839 |#1|) (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL (|has| (-839 |#1|) (-343)))) (-2006 (((-393 $) $) NIL)) (-1713 (((-770 (-850))) NIL) (((-850)) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1304 (((-708) $) NIL (|has| (-839 |#1|) (-343))) (((-3 (-708) "failed") $ $) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-3222 (((-126)) NIL)) (-2731 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-2487 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1579 (((-1081 (-839 |#1|))) NIL)) (-2670 (($) NIL (|has| (-839 |#1|) (-343)))) (-1705 (($) NIL (|has| (-839 |#1|) (-343)))) (-3510 (((-1166 (-839 |#1|)) $) NIL) (((-628 (-839 |#1|)) (-1166 $)) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| (-839 |#1|) (-343)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-839 |#1|)) NIL)) (-3040 (($ $) NIL (|has| (-839 |#1|) (-343))) (((-3 $ "failed") $) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2742 (((-708)) NIL)) (-2905 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-1407 (((-108) $ $) NIL)) (-1711 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2938 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-2252 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL) (($ $ (-839 |#1|)) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ (-839 |#1|)) NIL) (($ (-839 |#1|) $) NIL)))
+(((-318 |#1| |#2|) (-13 (-304 (-839 |#1|)) (-10 -7 (-15 -3128 ((-886 (-1032)))))) (-850) (-850)) (T -318))
+((-3128 (*1 *2) (-12 (-5 *2 (-886 (-1032))) (-5 *1 (-318 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))))
+(-13 (-304 (-839 |#1|)) (-10 -7 (-15 -3128 ((-886 (-1032))))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 46)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2400 (((-108) $) NIL)) (-1593 (((-708)) NIL)) (-1945 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-3833 (((-1094 (-850) (-708)) (-522)) 43 (|has| |#1| (-343)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-1685 (((-708)) NIL (|has| |#1| (-343)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) 114)) (-1478 ((|#1| $) 85)) (-3225 (($ (-1166 |#1|)) 103)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) 94 (|has| |#1| (-343)))) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) 97 (|has| |#1| (-343)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2160 (($) 129 (|has| |#1| (-343)))) (-2087 (((-108) $) 49 (|has| |#1| (-343)))) (-1380 (($ $ (-708)) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2725 (((-108) $) NIL)) (-3872 (((-850) $) 47 (|has| |#1| (-343))) (((-770 (-850)) $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2859 (((-108) $) NIL)) (-3768 (($) 131 (|has| |#1| (-343)))) (-1372 (((-108) $) NIL (|has| |#1| (-343)))) (-1269 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-4208 (((-3 $ "failed") $) NIL (|has| |#1| (-343)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4199 (((-1081 |#1|) $) 89) (((-1081 $) $ (-850)) NIL (|has| |#1| (-343)))) (-1475 (((-850) $) 139 (|has| |#1| (-343)))) (-3657 (((-1081 |#1|) $) NIL (|has| |#1| (-343)))) (-3723 (((-1081 |#1|) $) NIL (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) NIL (|has| |#1| (-343)))) (-2259 (($ $ (-1081 |#1|)) NIL (|has| |#1| (-343)))) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 146)) (-3937 (($) NIL (|has| |#1| (-343)) CONST)) (-2882 (($ (-850)) 70 (|has| |#1| (-343)))) (-2804 (((-108) $) 117)) (-4174 (((-1032) $) NIL)) (-3128 (((-886 (-1032))) 44)) (-1368 (($) 127 (|has| |#1| (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) 92 (|has| |#1| (-343)))) (-2006 (((-393 $) $) NIL)) (-1713 (((-770 (-850))) 67) (((-850)) 68)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1304 (((-708) $) 130 (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) 124 (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-3222 (((-126)) NIL)) (-2731 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2487 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1579 (((-1081 |#1|)) 95)) (-2670 (($) 128 (|has| |#1| (-343)))) (-1705 (($) 136 (|has| |#1| (-343)))) (-3510 (((-1166 |#1|) $) 59) (((-628 |#1|) (-1166 $)) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-343)))) (-2217 (((-792) $) 142) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) 74)) (-3040 (($ $) NIL (|has| |#1| (-343))) (((-3 $ "failed") $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2742 (((-708)) 138)) (-2905 (((-1166 $)) 116) (((-1166 $) (-850)) 72)) (-1407 (((-108) $ $) NIL)) (-1711 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 32 T CONST)) (-3709 (($) 19 T CONST)) (-2938 (($ $) 80 (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2252 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-1562 (((-108) $ $) 48)) (-1682 (($ $ $) 144) (($ $ |#1|) 145)) (-1672 (($ $) 126) (($ $ $) NIL)) (-1661 (($ $ $) 61)) (** (($ $ (-850)) 148) (($ $ (-708)) 149) (($ $ (-522)) 147)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 76) (($ $ $) 75) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 143)))
+(((-319 |#1| |#2|) (-13 (-304 |#1|) (-10 -7 (-15 -3128 ((-886 (-1032)))))) (-324) (-1081 |#1|)) (T -319))
+((-3128 (*1 *2) (-12 (-5 *2 (-886 (-1032))) (-5 *1 (-319 *3 *4)) (-4 *3 (-324)) (-14 *4 (-1081 *3)))))
+(-13 (-304 |#1|) (-10 -7 (-15 -3128 ((-886 (-1032))))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2400 (((-108) $) NIL)) (-1593 (((-708)) NIL)) (-1945 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-3833 (((-1094 (-850) (-708)) (-522)) NIL (|has| |#1| (-343)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-1685 (((-708)) NIL (|has| |#1| (-343)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL)) (-1478 ((|#1| $) NIL)) (-3225 (($ (-1166 |#1|)) NIL)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-343)))) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| |#1| (-343)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2160 (($) NIL (|has| |#1| (-343)))) (-2087 (((-108) $) NIL (|has| |#1| (-343)))) (-1380 (($ $ (-708)) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2725 (((-108) $) NIL)) (-3872 (((-850) $) NIL (|has| |#1| (-343))) (((-770 (-850)) $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2859 (((-108) $) NIL)) (-3768 (($) NIL (|has| |#1| (-343)))) (-1372 (((-108) $) NIL (|has| |#1| (-343)))) (-1269 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-4208 (((-3 $ "failed") $) NIL (|has| |#1| (-343)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4199 (((-1081 |#1|) $) NIL) (((-1081 $) $ (-850)) NIL (|has| |#1| (-343)))) (-1475 (((-850) $) NIL (|has| |#1| (-343)))) (-3657 (((-1081 |#1|) $) NIL (|has| |#1| (-343)))) (-3723 (((-1081 |#1|) $) NIL (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) NIL (|has| |#1| (-343)))) (-2259 (($ $ (-1081 |#1|)) NIL (|has| |#1| (-343)))) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| |#1| (-343)) CONST)) (-2882 (($ (-850)) NIL (|has| |#1| (-343)))) (-2804 (((-108) $) NIL)) (-4174 (((-1032) $) NIL)) (-3128 (((-886 (-1032))) NIL)) (-1368 (($) NIL (|has| |#1| (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL (|has| |#1| (-343)))) (-2006 (((-393 $) $) NIL)) (-1713 (((-770 (-850))) NIL) (((-850)) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1304 (((-708) $) NIL (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-3222 (((-126)) NIL)) (-2731 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2487 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1579 (((-1081 |#1|)) NIL)) (-2670 (($) NIL (|has| |#1| (-343)))) (-1705 (($) NIL (|has| |#1| (-343)))) (-3510 (((-1166 |#1|) $) NIL) (((-628 |#1|) (-1166 $)) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-343)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) NIL)) (-3040 (($ $) NIL (|has| |#1| (-343))) (((-3 $ "failed") $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2742 (((-708)) NIL)) (-2905 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-1407 (((-108) $ $) NIL)) (-1711 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2938 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2252 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-320 |#1| |#2|) (-13 (-304 |#1|) (-10 -7 (-15 -3128 ((-886 (-1032)))))) (-324) (-850)) (T -320))
+((-3128 (*1 *2) (-12 (-5 *2 (-886 (-1032))) (-5 *1 (-320 *3 *4)) (-4 *3 (-324)) (-14 *4 (-850)))))
+(-13 (-304 |#1|) (-10 -7 (-15 -3128 ((-886 (-1032))))))
+((-1671 (((-708) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032)))))) 40)) (-1325 (((-886 (-1032)) (-1081 |#1|)) 85)) (-1872 (((-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))) (-1081 |#1|)) 78)) (-2431 (((-628 |#1|) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032)))))) 86)) (-2754 (((-3 (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))) "failed") (-850)) 10)) (-3250 (((-3 (-1081 |#1|) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032)))))) (-850)) 15)))
+(((-321 |#1|) (-10 -7 (-15 -1325 ((-886 (-1032)) (-1081 |#1|))) (-15 -1872 ((-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))) (-1081 |#1|))) (-15 -2431 ((-628 |#1|) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))))) (-15 -1671 ((-708) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))))) (-15 -2754 ((-3 (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))) "failed") (-850))) (-15 -3250 ((-3 (-1081 |#1|) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032)))))) (-850)))) (-324)) (T -321))
+((-3250 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-3 (-1081 *4) (-1166 (-588 (-2 (|:| -3526 *4) (|:| -2882 (-1032))))))) (-5 *1 (-321 *4)) (-4 *4 (-324)))) (-2754 (*1 *2 *3) (|partial| -12 (-5 *3 (-850)) (-5 *2 (-1166 (-588 (-2 (|:| -3526 *4) (|:| -2882 (-1032)))))) (-5 *1 (-321 *4)) (-4 *4 (-324)))) (-1671 (*1 *2 *3) (-12 (-5 *3 (-1166 (-588 (-2 (|:| -3526 *4) (|:| -2882 (-1032)))))) (-4 *4 (-324)) (-5 *2 (-708)) (-5 *1 (-321 *4)))) (-2431 (*1 *2 *3) (-12 (-5 *3 (-1166 (-588 (-2 (|:| -3526 *4) (|:| -2882 (-1032)))))) (-4 *4 (-324)) (-5 *2 (-628 *4)) (-5 *1 (-321 *4)))) (-1872 (*1 *2 *3) (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-1166 (-588 (-2 (|:| -3526 *4) (|:| -2882 (-1032)))))) (-5 *1 (-321 *4)))) (-1325 (*1 *2 *3) (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-886 (-1032))) (-5 *1 (-321 *4)))))
+(-10 -7 (-15 -1325 ((-886 (-1032)) (-1081 |#1|))) (-15 -1872 ((-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))) (-1081 |#1|))) (-15 -2431 ((-628 |#1|) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))))) (-15 -1671 ((-708) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))))) (-15 -2754 ((-3 (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))) "failed") (-850))) (-15 -3250 ((-3 (-1081 |#1|) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032)))))) (-850))))
+((-2217 ((|#1| |#3|) 84) ((|#3| |#1|) 68)))
+(((-322 |#1| |#2| |#3|) (-10 -7 (-15 -2217 (|#3| |#1|)) (-15 -2217 (|#1| |#3|))) (-304 |#2|) (-324) (-304 |#2|)) (T -322))
+((-2217 (*1 *2 *3) (-12 (-4 *4 (-324)) (-4 *2 (-304 *4)) (-5 *1 (-322 *2 *4 *3)) (-4 *3 (-304 *4)))) (-2217 (*1 *2 *3) (-12 (-4 *4 (-324)) (-4 *2 (-304 *4)) (-5 *1 (-322 *3 *4 *2)) (-4 *3 (-304 *4)))))
+(-10 -7 (-15 -2217 (|#3| |#1|)) (-15 -2217 (|#1| |#3|)))
+((-2087 (((-108) $) 51)) (-3872 (((-770 (-850)) $) 21) (((-850) $) 52)) (-4208 (((-3 $ "failed") $) 16)) (-3937 (($) 9)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 92)) (-1304 (((-3 (-708) "failed") $ $) 71) (((-708) $) 60)) (-2731 (($ $ (-708)) NIL) (($ $) 8)) (-2670 (($) 45)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 33)) (-3040 (((-3 $ "failed") $) 39) (($ $) 38)))
+(((-323 |#1|) (-10 -8 (-15 -3872 ((-850) |#1|)) (-15 -1304 ((-708) |#1|)) (-15 -2087 ((-108) |#1|)) (-15 -2670 (|#1|)) (-15 -2583 ((-3 (-1166 |#1|) "failed") (-628 |#1|))) (-15 -3040 (|#1| |#1|)) (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -3937 (|#1|)) (-15 -4208 ((-3 |#1| "failed") |#1|)) (-15 -1304 ((-3 (-708) "failed") |#1| |#1|)) (-15 -3872 ((-770 (-850)) |#1|)) (-15 -3040 ((-3 |#1| "failed") |#1|)) (-15 -1789 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|)))) (-324)) (T -323))
+NIL
+(-10 -8 (-15 -3872 ((-850) |#1|)) (-15 -1304 ((-708) |#1|)) (-15 -2087 ((-108) |#1|)) (-15 -2670 (|#1|)) (-15 -2583 ((-3 (-1166 |#1|) "failed") (-628 |#1|))) (-15 -3040 (|#1| |#1|)) (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -3937 (|#1|)) (-15 -4208 ((-3 |#1| "failed") |#1|)) (-15 -1304 ((-3 (-708) "failed") |#1| |#1|)) (-15 -3872 ((-770 (-850)) |#1|)) (-15 -3040 ((-3 |#1| "failed") |#1|)) (-15 -1789 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-3833 (((-1094 (-850) (-708)) (-522)) 93)) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 73)) (-3133 (((-393 $) $) 72)) (-2805 (((-108) $ $) 59)) (-1685 (((-708)) 103)) (-3367 (($) 17 T CONST)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) 87)) (-2333 (($ $ $) 55)) (-3920 (((-3 $ "failed") $) 34)) (-3344 (($) 106)) (-2303 (($ $ $) 56)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-2160 (($) 91)) (-2087 (((-108) $) 90)) (-1380 (($ $) 79) (($ $ (-708)) 78)) (-2725 (((-108) $) 71)) (-3872 (((-770 (-850)) $) 81) (((-850) $) 88)) (-2859 (((-108) $) 31)) (-4208 (((-3 $ "failed") $) 102)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-1475 (((-850) $) 105)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 70)) (-3937 (($) 101 T CONST)) (-2882 (($ (-850)) 104)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) 94)) (-2006 (((-393 $) $) 74)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-4031 (((-708) $) 58)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57)) (-1304 (((-3 (-708) "failed") $ $) 80) (((-708) $) 89)) (-2731 (($ $ (-708)) 99) (($ $) 97)) (-2670 (($) 92)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 95)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65)) (-3040 (((-3 $ "failed") $) 82) (($ $) 96)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-708)) 100) (($ $) 98)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ $) 64)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66)))
(((-324) (-1197)) (T -324))
-((-2143 (*1 *1 *1) (-4 *1 (-324))) (-2412 (*1 *2 *3) (|partial| -12 (-5 *3 (-628 *1)) (-4 *1 (-324)) (-5 *2 (-1166 *1)))) (-4179 (*1 *2) (-12 (-4 *1 (-324)) (-5 *2 (-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))))) (-1398 (*1 *2 *3) (-12 (-4 *1 (-324)) (-5 *3 (-522)) (-5 *2 (-1094 (-850) (-708))))) (-2581 (*1 *1) (-4 *1 (-324))) (-1223 (*1 *1) (-4 *1 (-324))) (-2511 (*1 *2 *1) (-12 (-4 *1 (-324)) (-5 *2 (-108)))) (-3018 (*1 *2 *1) (-12 (-4 *1 (-324)) (-5 *2 (-708)))) (-3714 (*1 *2 *1) (-12 (-4 *1 (-324)) (-5 *2 (-850)))) (-2128 (*1 *2) (-12 (-4 *1 (-324)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(-13 (-377) (-343) (-1061) (-210) (-10 -8 (-15 -2143 ($ $)) (-15 -2412 ((-3 (-1166 $) "failed") (-628 $))) (-15 -4179 ((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522)))))) (-15 -1398 ((-1094 (-850) (-708)) (-522))) (-15 -2581 ($)) (-15 -1223 ($)) (-15 -2511 ((-108) $)) (-15 -3018 ((-708) $)) (-15 -3714 ((-850) $)) (-15 -2128 ((-3 "prime" "polynomial" "normal" "cyclic")))))
+((-3040 (*1 *1 *1) (-4 *1 (-324))) (-2583 (*1 *2 *3) (|partial| -12 (-5 *3 (-628 *1)) (-4 *1 (-324)) (-5 *2 (-1166 *1)))) (-1799 (*1 *2) (-12 (-4 *1 (-324)) (-5 *2 (-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))))) (-3833 (*1 *2 *3) (-12 (-4 *1 (-324)) (-5 *3 (-522)) (-5 *2 (-1094 (-850) (-708))))) (-2670 (*1 *1) (-4 *1 (-324))) (-2160 (*1 *1) (-4 *1 (-324))) (-2087 (*1 *2 *1) (-12 (-4 *1 (-324)) (-5 *2 (-108)))) (-1304 (*1 *2 *1) (-12 (-4 *1 (-324)) (-5 *2 (-708)))) (-3872 (*1 *2 *1) (-12 (-4 *1 (-324)) (-5 *2 (-850)))) (-1576 (*1 *2) (-12 (-4 *1 (-324)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(-13 (-377) (-343) (-1061) (-210) (-10 -8 (-15 -3040 ($ $)) (-15 -2583 ((-3 (-1166 $) "failed") (-628 $))) (-15 -1799 ((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522)))))) (-15 -3833 ((-1094 (-850) (-708)) (-522))) (-15 -2670 ($)) (-15 -2160 ($)) (-15 -2087 ((-108) $)) (-15 -1304 ((-708) $)) (-15 -3872 ((-850) $)) (-15 -1576 ((-3 "prime" "polynomial" "normal" "cyclic")))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-133) . T) ((-562 (-792)) . T) ((-157) . T) ((-210) . T) ((-220) . T) ((-266) . T) ((-283) . T) ((-338) . T) ((-377) . T) ((-343) . T) ((-426) . T) ((-514) . T) ((-590 #0#) . T) ((-590 $) . T) ((-655 #0#) . T) ((-655 $) . T) ((-664) . T) ((-849) . T) ((-977 #0#) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) . T) ((-1124) . T))
-((-3784 (((-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) |#1|) 51)) (-3882 (((-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|)))) 49)))
-(((-325 |#1| |#2| |#3|) (-10 -7 (-15 -3882 ((-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))))) (-15 -3784 ((-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) |#1|))) (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $)))) (-1142 |#1|) (-384 |#1| |#2|)) (T -325))
-((-3784 (*1 *2 *3) (-12 (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *2 (-2 (|:| -3855 (-628 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-628 *3)))) (-5 *1 (-325 *3 *4 *5)) (-4 *5 (-384 *3 *4)))) (-3882 (*1 *2) (-12 (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *2 (-2 (|:| -3855 (-628 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-628 *3)))) (-5 *1 (-325 *3 *4 *5)) (-4 *5 (-384 *3 *4)))))
-(-10 -7 (-15 -3882 ((-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))))) (-15 -3784 ((-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1651 (((-108) $) NIL)) (-2219 (((-708)) NIL)) (-1865 (((-839 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-1398 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-839 |#1|) (-343)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1294 (((-708)) NIL)) (-1687 (((-108) $ $) NIL)) (-1629 (((-708)) NIL (|has| (-839 |#1|) (-343)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-839 |#1|) "failed") $) NIL)) (-1484 (((-839 |#1|) $) NIL)) (-3766 (($ (-1166 (-839 |#1|))) NIL)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-839 |#1|) (-343)))) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| (-839 |#1|) (-343)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-1223 (($) NIL (|has| (-839 |#1|) (-343)))) (-2511 (((-108) $) NIL (|has| (-839 |#1|) (-343)))) (-2111 (($ $ (-708)) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343)))) (($ $) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2813 (((-108) $) NIL)) (-3714 (((-850) $) NIL (|has| (-839 |#1|) (-343))) (((-770 (-850)) $) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2782 (((-108) $) NIL)) (-3400 (($) NIL (|has| (-839 |#1|) (-343)))) (-2741 (((-108) $) NIL (|has| (-839 |#1|) (-343)))) (-2100 (((-839 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-3004 (((-3 $ "failed") $) NIL (|has| (-839 |#1|) (-343)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1712 (((-1081 (-839 |#1|)) $) NIL) (((-1081 $) $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-2120 (((-850) $) NIL (|has| (-839 |#1|) (-343)))) (-3074 (((-1081 (-839 |#1|)) $) NIL (|has| (-839 |#1|) (-343)))) (-2941 (((-1081 (-839 |#1|)) $) NIL (|has| (-839 |#1|) (-343))) (((-3 (-1081 (-839 |#1|)) "failed") $ $) NIL (|has| (-839 |#1|) (-343)))) (-1425 (($ $ (-1081 (-839 |#1|))) NIL (|has| (-839 |#1|) (-343)))) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| (-839 |#1|) (-343)) CONST)) (-2717 (($ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-2822 (((-108) $) NIL)) (-4151 (((-1032) $) NIL)) (-1755 (((-1166 (-588 (-2 (|:| -3435 (-839 |#1|)) (|:| -2717 (-1032)))))) NIL)) (-3579 (((-628 (-839 |#1|))) NIL)) (-1383 (($) NIL (|has| (-839 |#1|) (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL (|has| (-839 |#1|) (-343)))) (-1916 (((-393 $) $) NIL)) (-2621 (((-770 (-850))) NIL) (((-850)) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3018 (((-708) $) NIL (|has| (-839 |#1|) (-343))) (((-3 (-708) "failed") $ $) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-4078 (((-126)) NIL)) (-2157 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-2793 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1479 (((-1081 (-839 |#1|))) NIL)) (-2581 (($) NIL (|has| (-839 |#1|) (-343)))) (-1299 (($) NIL (|has| (-839 |#1|) (-343)))) (-3677 (((-1166 (-839 |#1|)) $) NIL) (((-628 (-839 |#1|)) (-1166 $)) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| (-839 |#1|) (-343)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-839 |#1|)) NIL)) (-2143 (($ $) NIL (|has| (-839 |#1|) (-343))) (((-3 $ "failed") $) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2323 (((-708)) NIL)) (-3855 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-3958 (((-108) $ $) NIL)) (-2351 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-3428 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-2213 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL) (($ $ (-839 |#1|)) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ (-839 |#1|)) NIL) (($ (-839 |#1|) $) NIL)))
-(((-326 |#1| |#2|) (-13 (-304 (-839 |#1|)) (-10 -7 (-15 -1755 ((-1166 (-588 (-2 (|:| -3435 (-839 |#1|)) (|:| -2717 (-1032))))))) (-15 -3579 ((-628 (-839 |#1|)))) (-15 -1294 ((-708))))) (-850) (-850)) (T -326))
-((-1755 (*1 *2) (-12 (-5 *2 (-1166 (-588 (-2 (|:| -3435 (-839 *3)) (|:| -2717 (-1032)))))) (-5 *1 (-326 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))) (-3579 (*1 *2) (-12 (-5 *2 (-628 (-839 *3))) (-5 *1 (-326 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))) (-1294 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-326 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))))
-(-13 (-304 (-839 |#1|)) (-10 -7 (-15 -1755 ((-1166 (-588 (-2 (|:| -3435 (-839 |#1|)) (|:| -2717 (-1032))))))) (-15 -3579 ((-628 (-839 |#1|)))) (-15 -1294 ((-708)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 75)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1651 (((-108) $) NIL)) (-2219 (((-708)) NIL)) (-1865 ((|#1| $) 93) (($ $ (-850)) 91 (|has| |#1| (-343)))) (-1398 (((-1094 (-850) (-708)) (-522)) 149 (|has| |#1| (-343)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1294 (((-708)) 90)) (-1687 (((-108) $ $) NIL)) (-1629 (((-708)) 163 (|has| |#1| (-343)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) 112)) (-1484 ((|#1| $) 92)) (-3766 (($ (-1166 |#1|)) 56)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) 187 (|has| |#1| (-343)))) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) 159 (|has| |#1| (-343)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-1223 (($) 150 (|has| |#1| (-343)))) (-2511 (((-108) $) NIL (|has| |#1| (-343)))) (-2111 (($ $ (-708)) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2813 (((-108) $) NIL)) (-3714 (((-850) $) NIL (|has| |#1| (-343))) (((-770 (-850)) $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2782 (((-108) $) NIL)) (-3400 (($) 98 (|has| |#1| (-343)))) (-2741 (((-108) $) 176 (|has| |#1| (-343)))) (-2100 ((|#1| $) 95) (($ $ (-850)) 94 (|has| |#1| (-343)))) (-3004 (((-3 $ "failed") $) NIL (|has| |#1| (-343)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1712 (((-1081 |#1|) $) 188) (((-1081 $) $ (-850)) NIL (|has| |#1| (-343)))) (-2120 (((-850) $) 134 (|has| |#1| (-343)))) (-3074 (((-1081 |#1|) $) 74 (|has| |#1| (-343)))) (-2941 (((-1081 |#1|) $) 71 (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) 83 (|has| |#1| (-343)))) (-1425 (($ $ (-1081 |#1|)) 70 (|has| |#1| (-343)))) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 191)) (-3802 (($) NIL (|has| |#1| (-343)) CONST)) (-2717 (($ (-850)) 137 (|has| |#1| (-343)))) (-2822 (((-108) $) 108)) (-4151 (((-1032) $) NIL)) (-1755 (((-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032)))))) 84)) (-3579 (((-628 |#1|)) 88)) (-1383 (($) 97 (|has| |#1| (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) 151 (|has| |#1| (-343)))) (-1916 (((-393 $) $) NIL)) (-2621 (((-770 (-850))) NIL) (((-850)) 152)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3018 (((-708) $) NIL (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-4078 (((-126)) NIL)) (-2157 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2793 (((-770 (-850)) $) NIL) (((-850) $) 63)) (-1479 (((-1081 |#1|)) 153)) (-2581 (($) 133 (|has| |#1| (-343)))) (-1299 (($) NIL (|has| |#1| (-343)))) (-3677 (((-1166 |#1|) $) 106) (((-628 |#1|) (-1166 $)) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-343)))) (-2190 (((-792) $) 124) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) 55)) (-2143 (($ $) NIL (|has| |#1| (-343))) (((-3 $ "failed") $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2323 (((-708)) 157)) (-3855 (((-1166 $)) 173) (((-1166 $) (-850)) 101)) (-3958 (((-108) $ $) NIL)) (-2351 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 29 T CONST)) (-3577 (($) 22 T CONST)) (-3428 (($ $) 107 (|has| |#1| (-343))) (($ $ (-708)) 99 (|has| |#1| (-343)))) (-2213 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-1531 (((-108) $ $) 59)) (-1620 (($ $ $) 104) (($ $ |#1|) 105)) (-1612 (($ $) 178) (($ $ $) 182)) (-1602 (($ $ $) 180)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 138)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 185) (($ $ $) 143) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 103)))
-(((-327 |#1| |#2|) (-13 (-304 |#1|) (-10 -7 (-15 -1755 ((-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))))) (-15 -3579 ((-628 |#1|))) (-15 -1294 ((-708))))) (-324) (-3 (-1081 |#1|) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))))) (T -327))
-((-1755 (*1 *2) (-12 (-5 *2 (-1166 (-588 (-2 (|:| -3435 *3) (|:| -2717 (-1032)))))) (-5 *1 (-327 *3 *4)) (-4 *3 (-324)) (-14 *4 (-3 (-1081 *3) *2)))) (-3579 (*1 *2) (-12 (-5 *2 (-628 *3)) (-5 *1 (-327 *3 *4)) (-4 *3 (-324)) (-14 *4 (-3 (-1081 *3) (-1166 (-588 (-2 (|:| -3435 *3) (|:| -2717 (-1032))))))))) (-1294 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-327 *3 *4)) (-4 *3 (-324)) (-14 *4 (-3 (-1081 *3) (-1166 (-588 (-2 (|:| -3435 *3) (|:| -2717 (-1032))))))))))
-(-13 (-304 |#1|) (-10 -7 (-15 -1755 ((-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))))) (-15 -3579 ((-628 |#1|))) (-15 -1294 ((-708)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1651 (((-108) $) NIL)) (-2219 (((-708)) NIL)) (-1865 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-1398 (((-1094 (-850) (-708)) (-522)) NIL (|has| |#1| (-343)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1294 (((-708)) NIL)) (-1687 (((-108) $ $) NIL)) (-1629 (((-708)) NIL (|has| |#1| (-343)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL)) (-1484 ((|#1| $) NIL)) (-3766 (($ (-1166 |#1|)) NIL)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-343)))) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| |#1| (-343)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-1223 (($) NIL (|has| |#1| (-343)))) (-2511 (((-108) $) NIL (|has| |#1| (-343)))) (-2111 (($ $ (-708)) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2813 (((-108) $) NIL)) (-3714 (((-850) $) NIL (|has| |#1| (-343))) (((-770 (-850)) $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2782 (((-108) $) NIL)) (-3400 (($) NIL (|has| |#1| (-343)))) (-2741 (((-108) $) NIL (|has| |#1| (-343)))) (-2100 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-3004 (((-3 $ "failed") $) NIL (|has| |#1| (-343)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1712 (((-1081 |#1|) $) NIL) (((-1081 $) $ (-850)) NIL (|has| |#1| (-343)))) (-2120 (((-850) $) NIL (|has| |#1| (-343)))) (-3074 (((-1081 |#1|) $) NIL (|has| |#1| (-343)))) (-2941 (((-1081 |#1|) $) NIL (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) NIL (|has| |#1| (-343)))) (-1425 (($ $ (-1081 |#1|)) NIL (|has| |#1| (-343)))) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| |#1| (-343)) CONST)) (-2717 (($ (-850)) NIL (|has| |#1| (-343)))) (-2822 (((-108) $) NIL)) (-4151 (((-1032) $) NIL)) (-1755 (((-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032)))))) NIL)) (-3579 (((-628 |#1|)) NIL)) (-1383 (($) NIL (|has| |#1| (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL (|has| |#1| (-343)))) (-1916 (((-393 $) $) NIL)) (-2621 (((-770 (-850))) NIL) (((-850)) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3018 (((-708) $) NIL (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-4078 (((-126)) NIL)) (-2157 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2793 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1479 (((-1081 |#1|)) NIL)) (-2581 (($) NIL (|has| |#1| (-343)))) (-1299 (($) NIL (|has| |#1| (-343)))) (-3677 (((-1166 |#1|) $) NIL) (((-628 |#1|) (-1166 $)) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-343)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) NIL)) (-2143 (($ $) NIL (|has| |#1| (-343))) (((-3 $ "failed") $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2323 (((-708)) NIL)) (-3855 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-3958 (((-108) $ $) NIL)) (-2351 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-3428 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2213 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-328 |#1| |#2|) (-13 (-304 |#1|) (-10 -7 (-15 -1755 ((-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))))) (-15 -3579 ((-628 |#1|))) (-15 -1294 ((-708))))) (-324) (-850)) (T -328))
-((-1755 (*1 *2) (-12 (-5 *2 (-1166 (-588 (-2 (|:| -3435 *3) (|:| -2717 (-1032)))))) (-5 *1 (-328 *3 *4)) (-4 *3 (-324)) (-14 *4 (-850)))) (-3579 (*1 *2) (-12 (-5 *2 (-628 *3)) (-5 *1 (-328 *3 *4)) (-4 *3 (-324)) (-14 *4 (-850)))) (-1294 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-328 *3 *4)) (-4 *3 (-324)) (-14 *4 (-850)))))
-(-13 (-304 |#1|) (-10 -7 (-15 -1755 ((-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))))) (-15 -3579 ((-628 |#1|))) (-15 -1294 ((-708)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1651 (((-108) $) NIL)) (-2219 (((-708)) NIL)) (-1865 (((-839 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-1398 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-839 |#1|) (-343)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1629 (((-708)) NIL (|has| (-839 |#1|) (-343)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-839 |#1|) "failed") $) NIL)) (-1484 (((-839 |#1|) $) NIL)) (-3766 (($ (-1166 (-839 |#1|))) NIL)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-839 |#1|) (-343)))) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| (-839 |#1|) (-343)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-1223 (($) NIL (|has| (-839 |#1|) (-343)))) (-2511 (((-108) $) NIL (|has| (-839 |#1|) (-343)))) (-2111 (($ $ (-708)) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343)))) (($ $) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2813 (((-108) $) NIL)) (-3714 (((-850) $) NIL (|has| (-839 |#1|) (-343))) (((-770 (-850)) $) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2782 (((-108) $) NIL)) (-3400 (($) NIL (|has| (-839 |#1|) (-343)))) (-2741 (((-108) $) NIL (|has| (-839 |#1|) (-343)))) (-2100 (((-839 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-3004 (((-3 $ "failed") $) NIL (|has| (-839 |#1|) (-343)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1712 (((-1081 (-839 |#1|)) $) NIL) (((-1081 $) $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-2120 (((-850) $) NIL (|has| (-839 |#1|) (-343)))) (-3074 (((-1081 (-839 |#1|)) $) NIL (|has| (-839 |#1|) (-343)))) (-2941 (((-1081 (-839 |#1|)) $) NIL (|has| (-839 |#1|) (-343))) (((-3 (-1081 (-839 |#1|)) "failed") $ $) NIL (|has| (-839 |#1|) (-343)))) (-1425 (($ $ (-1081 (-839 |#1|))) NIL (|has| (-839 |#1|) (-343)))) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| (-839 |#1|) (-343)) CONST)) (-2717 (($ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-2822 (((-108) $) NIL)) (-4151 (((-1032) $) NIL)) (-1383 (($) NIL (|has| (-839 |#1|) (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL (|has| (-839 |#1|) (-343)))) (-1916 (((-393 $) $) NIL)) (-2621 (((-770 (-850))) NIL) (((-850)) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3018 (((-708) $) NIL (|has| (-839 |#1|) (-343))) (((-3 (-708) "failed") $ $) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-4078 (((-126)) NIL)) (-2157 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-2793 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1479 (((-1081 (-839 |#1|))) NIL)) (-2581 (($) NIL (|has| (-839 |#1|) (-343)))) (-1299 (($) NIL (|has| (-839 |#1|) (-343)))) (-3677 (((-1166 (-839 |#1|)) $) NIL) (((-628 (-839 |#1|)) (-1166 $)) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| (-839 |#1|) (-343)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-839 |#1|)) NIL)) (-2143 (($ $) NIL (|has| (-839 |#1|) (-343))) (((-3 $ "failed") $) NIL (-3708 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2323 (((-708)) NIL)) (-3855 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-3958 (((-108) $ $) NIL)) (-2351 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-3428 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-2213 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL) (($ $ (-839 |#1|)) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ (-839 |#1|)) NIL) (($ (-839 |#1|) $) NIL)))
+((-3387 (((-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) |#1|) 51)) (-1886 (((-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|)))) 49)))
+(((-325 |#1| |#2| |#3|) (-10 -7 (-15 -1886 ((-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))))) (-15 -3387 ((-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) |#1|))) (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $)))) (-1142 |#1|) (-384 |#1| |#2|)) (T -325))
+((-3387 (*1 *2 *3) (-12 (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *2 (-2 (|:| -2905 (-628 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-628 *3)))) (-5 *1 (-325 *3 *4 *5)) (-4 *5 (-384 *3 *4)))) (-1886 (*1 *2) (-12 (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *2 (-2 (|:| -2905 (-628 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-628 *3)))) (-5 *1 (-325 *3 *4 *5)) (-4 *5 (-384 *3 *4)))))
+(-10 -7 (-15 -1886 ((-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))))) (-15 -3387 ((-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2400 (((-108) $) NIL)) (-1593 (((-708)) NIL)) (-1945 (((-839 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-3833 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-839 |#1|) (-343)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-1671 (((-708)) NIL)) (-2805 (((-108) $ $) NIL)) (-1685 (((-708)) NIL (|has| (-839 |#1|) (-343)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-839 |#1|) "failed") $) NIL)) (-1478 (((-839 |#1|) $) NIL)) (-3225 (($ (-1166 (-839 |#1|))) NIL)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-839 |#1|) (-343)))) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| (-839 |#1|) (-343)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2160 (($) NIL (|has| (-839 |#1|) (-343)))) (-2087 (((-108) $) NIL (|has| (-839 |#1|) (-343)))) (-1380 (($ $ (-708)) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343)))) (($ $) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2725 (((-108) $) NIL)) (-3872 (((-850) $) NIL (|has| (-839 |#1|) (-343))) (((-770 (-850)) $) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2859 (((-108) $) NIL)) (-3768 (($) NIL (|has| (-839 |#1|) (-343)))) (-1372 (((-108) $) NIL (|has| (-839 |#1|) (-343)))) (-1269 (((-839 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-4208 (((-3 $ "failed") $) NIL (|has| (-839 |#1|) (-343)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4199 (((-1081 (-839 |#1|)) $) NIL) (((-1081 $) $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-1475 (((-850) $) NIL (|has| (-839 |#1|) (-343)))) (-3657 (((-1081 (-839 |#1|)) $) NIL (|has| (-839 |#1|) (-343)))) (-3723 (((-1081 (-839 |#1|)) $) NIL (|has| (-839 |#1|) (-343))) (((-3 (-1081 (-839 |#1|)) "failed") $ $) NIL (|has| (-839 |#1|) (-343)))) (-2259 (($ $ (-1081 (-839 |#1|))) NIL (|has| (-839 |#1|) (-343)))) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| (-839 |#1|) (-343)) CONST)) (-2882 (($ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-2804 (((-108) $) NIL)) (-4174 (((-1032) $) NIL)) (-3407 (((-1166 (-588 (-2 (|:| -3526 (-839 |#1|)) (|:| -2882 (-1032)))))) NIL)) (-1928 (((-628 (-839 |#1|))) NIL)) (-1368 (($) NIL (|has| (-839 |#1|) (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL (|has| (-839 |#1|) (-343)))) (-2006 (((-393 $) $) NIL)) (-1713 (((-770 (-850))) NIL) (((-850)) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1304 (((-708) $) NIL (|has| (-839 |#1|) (-343))) (((-3 (-708) "failed") $ $) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-3222 (((-126)) NIL)) (-2731 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-2487 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1579 (((-1081 (-839 |#1|))) NIL)) (-2670 (($) NIL (|has| (-839 |#1|) (-343)))) (-1705 (($) NIL (|has| (-839 |#1|) (-343)))) (-3510 (((-1166 (-839 |#1|)) $) NIL) (((-628 (-839 |#1|)) (-1166 $)) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| (-839 |#1|) (-343)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-839 |#1|)) NIL)) (-3040 (($ $) NIL (|has| (-839 |#1|) (-343))) (((-3 $ "failed") $) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2742 (((-708)) NIL)) (-2905 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-1407 (((-108) $ $) NIL)) (-1711 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2938 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-2252 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL) (($ $ (-839 |#1|)) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ (-839 |#1|)) NIL) (($ (-839 |#1|) $) NIL)))
+(((-326 |#1| |#2|) (-13 (-304 (-839 |#1|)) (-10 -7 (-15 -3407 ((-1166 (-588 (-2 (|:| -3526 (-839 |#1|)) (|:| -2882 (-1032))))))) (-15 -1928 ((-628 (-839 |#1|)))) (-15 -1671 ((-708))))) (-850) (-850)) (T -326))
+((-3407 (*1 *2) (-12 (-5 *2 (-1166 (-588 (-2 (|:| -3526 (-839 *3)) (|:| -2882 (-1032)))))) (-5 *1 (-326 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))) (-1928 (*1 *2) (-12 (-5 *2 (-628 (-839 *3))) (-5 *1 (-326 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))) (-1671 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-326 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))))
+(-13 (-304 (-839 |#1|)) (-10 -7 (-15 -3407 ((-1166 (-588 (-2 (|:| -3526 (-839 |#1|)) (|:| -2882 (-1032))))))) (-15 -1928 ((-628 (-839 |#1|)))) (-15 -1671 ((-708)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 75)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2400 (((-108) $) NIL)) (-1593 (((-708)) NIL)) (-1945 ((|#1| $) 93) (($ $ (-850)) 91 (|has| |#1| (-343)))) (-3833 (((-1094 (-850) (-708)) (-522)) 149 (|has| |#1| (-343)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-1671 (((-708)) 90)) (-2805 (((-108) $ $) NIL)) (-1685 (((-708)) 163 (|has| |#1| (-343)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) 112)) (-1478 ((|#1| $) 92)) (-3225 (($ (-1166 |#1|)) 56)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) 187 (|has| |#1| (-343)))) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) 159 (|has| |#1| (-343)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2160 (($) 150 (|has| |#1| (-343)))) (-2087 (((-108) $) NIL (|has| |#1| (-343)))) (-1380 (($ $ (-708)) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2725 (((-108) $) NIL)) (-3872 (((-850) $) NIL (|has| |#1| (-343))) (((-770 (-850)) $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2859 (((-108) $) NIL)) (-3768 (($) 98 (|has| |#1| (-343)))) (-1372 (((-108) $) 176 (|has| |#1| (-343)))) (-1269 ((|#1| $) 95) (($ $ (-850)) 94 (|has| |#1| (-343)))) (-4208 (((-3 $ "failed") $) NIL (|has| |#1| (-343)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4199 (((-1081 |#1|) $) 188) (((-1081 $) $ (-850)) NIL (|has| |#1| (-343)))) (-1475 (((-850) $) 134 (|has| |#1| (-343)))) (-3657 (((-1081 |#1|) $) 74 (|has| |#1| (-343)))) (-3723 (((-1081 |#1|) $) 71 (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) 83 (|has| |#1| (-343)))) (-2259 (($ $ (-1081 |#1|)) 70 (|has| |#1| (-343)))) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 191)) (-3937 (($) NIL (|has| |#1| (-343)) CONST)) (-2882 (($ (-850)) 137 (|has| |#1| (-343)))) (-2804 (((-108) $) 108)) (-4174 (((-1032) $) NIL)) (-3407 (((-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032)))))) 84)) (-1928 (((-628 |#1|)) 88)) (-1368 (($) 97 (|has| |#1| (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) 151 (|has| |#1| (-343)))) (-2006 (((-393 $) $) NIL)) (-1713 (((-770 (-850))) NIL) (((-850)) 152)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1304 (((-708) $) NIL (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-3222 (((-126)) NIL)) (-2731 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2487 (((-770 (-850)) $) NIL) (((-850) $) 63)) (-1579 (((-1081 |#1|)) 153)) (-2670 (($) 133 (|has| |#1| (-343)))) (-1705 (($) NIL (|has| |#1| (-343)))) (-3510 (((-1166 |#1|) $) 106) (((-628 |#1|) (-1166 $)) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-343)))) (-2217 (((-792) $) 124) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) 55)) (-3040 (($ $) NIL (|has| |#1| (-343))) (((-3 $ "failed") $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2742 (((-708)) 157)) (-2905 (((-1166 $)) 173) (((-1166 $) (-850)) 101)) (-1407 (((-108) $ $) NIL)) (-1711 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 29 T CONST)) (-3709 (($) 22 T CONST)) (-2938 (($ $) 107 (|has| |#1| (-343))) (($ $ (-708)) 99 (|has| |#1| (-343)))) (-2252 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-1562 (((-108) $ $) 59)) (-1682 (($ $ $) 104) (($ $ |#1|) 105)) (-1672 (($ $) 178) (($ $ $) 182)) (-1661 (($ $ $) 180)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 138)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 185) (($ $ $) 143) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 103)))
+(((-327 |#1| |#2|) (-13 (-304 |#1|) (-10 -7 (-15 -3407 ((-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))))) (-15 -1928 ((-628 |#1|))) (-15 -1671 ((-708))))) (-324) (-3 (-1081 |#1|) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))))) (T -327))
+((-3407 (*1 *2) (-12 (-5 *2 (-1166 (-588 (-2 (|:| -3526 *3) (|:| -2882 (-1032)))))) (-5 *1 (-327 *3 *4)) (-4 *3 (-324)) (-14 *4 (-3 (-1081 *3) *2)))) (-1928 (*1 *2) (-12 (-5 *2 (-628 *3)) (-5 *1 (-327 *3 *4)) (-4 *3 (-324)) (-14 *4 (-3 (-1081 *3) (-1166 (-588 (-2 (|:| -3526 *3) (|:| -2882 (-1032))))))))) (-1671 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-327 *3 *4)) (-4 *3 (-324)) (-14 *4 (-3 (-1081 *3) (-1166 (-588 (-2 (|:| -3526 *3) (|:| -2882 (-1032))))))))))
+(-13 (-304 |#1|) (-10 -7 (-15 -3407 ((-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))))) (-15 -1928 ((-628 |#1|))) (-15 -1671 ((-708)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2400 (((-108) $) NIL)) (-1593 (((-708)) NIL)) (-1945 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-3833 (((-1094 (-850) (-708)) (-522)) NIL (|has| |#1| (-343)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-1671 (((-708)) NIL)) (-2805 (((-108) $ $) NIL)) (-1685 (((-708)) NIL (|has| |#1| (-343)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL)) (-1478 ((|#1| $) NIL)) (-3225 (($ (-1166 |#1|)) NIL)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-343)))) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| |#1| (-343)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2160 (($) NIL (|has| |#1| (-343)))) (-2087 (((-108) $) NIL (|has| |#1| (-343)))) (-1380 (($ $ (-708)) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2725 (((-108) $) NIL)) (-3872 (((-850) $) NIL (|has| |#1| (-343))) (((-770 (-850)) $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2859 (((-108) $) NIL)) (-3768 (($) NIL (|has| |#1| (-343)))) (-1372 (((-108) $) NIL (|has| |#1| (-343)))) (-1269 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-4208 (((-3 $ "failed") $) NIL (|has| |#1| (-343)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4199 (((-1081 |#1|) $) NIL) (((-1081 $) $ (-850)) NIL (|has| |#1| (-343)))) (-1475 (((-850) $) NIL (|has| |#1| (-343)))) (-3657 (((-1081 |#1|) $) NIL (|has| |#1| (-343)))) (-3723 (((-1081 |#1|) $) NIL (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) NIL (|has| |#1| (-343)))) (-2259 (($ $ (-1081 |#1|)) NIL (|has| |#1| (-343)))) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| |#1| (-343)) CONST)) (-2882 (($ (-850)) NIL (|has| |#1| (-343)))) (-2804 (((-108) $) NIL)) (-4174 (((-1032) $) NIL)) (-3407 (((-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032)))))) NIL)) (-1928 (((-628 |#1|)) NIL)) (-1368 (($) NIL (|has| |#1| (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL (|has| |#1| (-343)))) (-2006 (((-393 $) $) NIL)) (-1713 (((-770 (-850))) NIL) (((-850)) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1304 (((-708) $) NIL (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-3222 (((-126)) NIL)) (-2731 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2487 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1579 (((-1081 |#1|)) NIL)) (-2670 (($) NIL (|has| |#1| (-343)))) (-1705 (($) NIL (|has| |#1| (-343)))) (-3510 (((-1166 |#1|) $) NIL) (((-628 |#1|) (-1166 $)) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-343)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) NIL)) (-3040 (($ $) NIL (|has| |#1| (-343))) (((-3 $ "failed") $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2742 (((-708)) NIL)) (-2905 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-1407 (((-108) $ $) NIL)) (-1711 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2938 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2252 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-328 |#1| |#2|) (-13 (-304 |#1|) (-10 -7 (-15 -3407 ((-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))))) (-15 -1928 ((-628 |#1|))) (-15 -1671 ((-708))))) (-324) (-850)) (T -328))
+((-3407 (*1 *2) (-12 (-5 *2 (-1166 (-588 (-2 (|:| -3526 *3) (|:| -2882 (-1032)))))) (-5 *1 (-328 *3 *4)) (-4 *3 (-324)) (-14 *4 (-850)))) (-1928 (*1 *2) (-12 (-5 *2 (-628 *3)) (-5 *1 (-328 *3 *4)) (-4 *3 (-324)) (-14 *4 (-850)))) (-1671 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-328 *3 *4)) (-4 *3 (-324)) (-14 *4 (-850)))))
+(-13 (-304 |#1|) (-10 -7 (-15 -3407 ((-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))))) (-15 -1928 ((-628 |#1|))) (-15 -1671 ((-708)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2400 (((-108) $) NIL)) (-1593 (((-708)) NIL)) (-1945 (((-839 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-3833 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-839 |#1|) (-343)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-1685 (((-708)) NIL (|has| (-839 |#1|) (-343)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-839 |#1|) "failed") $) NIL)) (-1478 (((-839 |#1|) $) NIL)) (-3225 (($ (-1166 (-839 |#1|))) NIL)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-839 |#1|) (-343)))) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| (-839 |#1|) (-343)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2160 (($) NIL (|has| (-839 |#1|) (-343)))) (-2087 (((-108) $) NIL (|has| (-839 |#1|) (-343)))) (-1380 (($ $ (-708)) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343)))) (($ $) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2725 (((-108) $) NIL)) (-3872 (((-850) $) NIL (|has| (-839 |#1|) (-343))) (((-770 (-850)) $) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2859 (((-108) $) NIL)) (-3768 (($) NIL (|has| (-839 |#1|) (-343)))) (-1372 (((-108) $) NIL (|has| (-839 |#1|) (-343)))) (-1269 (((-839 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-4208 (((-3 $ "failed") $) NIL (|has| (-839 |#1|) (-343)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4199 (((-1081 (-839 |#1|)) $) NIL) (((-1081 $) $ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-1475 (((-850) $) NIL (|has| (-839 |#1|) (-343)))) (-3657 (((-1081 (-839 |#1|)) $) NIL (|has| (-839 |#1|) (-343)))) (-3723 (((-1081 (-839 |#1|)) $) NIL (|has| (-839 |#1|) (-343))) (((-3 (-1081 (-839 |#1|)) "failed") $ $) NIL (|has| (-839 |#1|) (-343)))) (-2259 (($ $ (-1081 (-839 |#1|))) NIL (|has| (-839 |#1|) (-343)))) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| (-839 |#1|) (-343)) CONST)) (-2882 (($ (-850)) NIL (|has| (-839 |#1|) (-343)))) (-2804 (((-108) $) NIL)) (-4174 (((-1032) $) NIL)) (-1368 (($) NIL (|has| (-839 |#1|) (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL (|has| (-839 |#1|) (-343)))) (-2006 (((-393 $) $) NIL)) (-1713 (((-770 (-850))) NIL) (((-850)) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1304 (((-708) $) NIL (|has| (-839 |#1|) (-343))) (((-3 (-708) "failed") $ $) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-3222 (((-126)) NIL)) (-2731 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-2487 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1579 (((-1081 (-839 |#1|))) NIL)) (-2670 (($) NIL (|has| (-839 |#1|) (-343)))) (-1705 (($) NIL (|has| (-839 |#1|) (-343)))) (-3510 (((-1166 (-839 |#1|)) $) NIL) (((-628 (-839 |#1|)) (-1166 $)) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| (-839 |#1|) (-343)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-839 |#1|)) NIL)) (-3040 (($ $) NIL (|has| (-839 |#1|) (-343))) (((-3 $ "failed") $) NIL (-3844 (|has| (-839 |#1|) (-133)) (|has| (-839 |#1|) (-343))))) (-2742 (((-708)) NIL)) (-2905 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-1407 (((-108) $ $) NIL)) (-1711 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2938 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-2252 (($ $) NIL (|has| (-839 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-839 |#1|) (-343)))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL) (($ $ (-839 |#1|)) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ (-839 |#1|)) NIL) (($ (-839 |#1|) $) NIL)))
(((-329 |#1| |#2|) (-304 (-839 |#1|)) (-850) (-850)) (T -329))
NIL
(-304 (-839 |#1|))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1651 (((-108) $) NIL)) (-2219 (((-708)) NIL)) (-1865 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-1398 (((-1094 (-850) (-708)) (-522)) 119 (|has| |#1| (-343)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1629 (((-708)) 139 (|has| |#1| (-343)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) 91)) (-1484 ((|#1| $) 88)) (-3766 (($ (-1166 |#1|)) 83)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) 115 (|has| |#1| (-343)))) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) 80 (|has| |#1| (-343)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-1223 (($) 39 (|has| |#1| (-343)))) (-2511 (((-108) $) NIL (|has| |#1| (-343)))) (-2111 (($ $ (-708)) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2813 (((-108) $) NIL)) (-3714 (((-850) $) NIL (|has| |#1| (-343))) (((-770 (-850)) $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2782 (((-108) $) NIL)) (-3400 (($) 120 (|has| |#1| (-343)))) (-2741 (((-108) $) 72 (|has| |#1| (-343)))) (-2100 ((|#1| $) 38) (($ $ (-850)) 40 (|has| |#1| (-343)))) (-3004 (((-3 $ "failed") $) NIL (|has| |#1| (-343)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1712 (((-1081 |#1|) $) 62) (((-1081 $) $ (-850)) NIL (|has| |#1| (-343)))) (-2120 (((-850) $) 95 (|has| |#1| (-343)))) (-3074 (((-1081 |#1|) $) NIL (|has| |#1| (-343)))) (-2941 (((-1081 |#1|) $) NIL (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) NIL (|has| |#1| (-343)))) (-1425 (($ $ (-1081 |#1|)) NIL (|has| |#1| (-343)))) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| |#1| (-343)) CONST)) (-2717 (($ (-850)) 93 (|has| |#1| (-343)))) (-2822 (((-108) $) 141)) (-4151 (((-1032) $) NIL)) (-1383 (($) 35 (|has| |#1| (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) 113 (|has| |#1| (-343)))) (-1916 (((-393 $) $) NIL)) (-2621 (((-770 (-850))) NIL) (((-850)) 138)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3018 (((-708) $) NIL (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-4078 (((-126)) NIL)) (-2157 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2793 (((-770 (-850)) $) NIL) (((-850) $) 56)) (-1479 (((-1081 |#1|)) 86)) (-2581 (($) 125 (|has| |#1| (-343)))) (-1299 (($) NIL (|has| |#1| (-343)))) (-3677 (((-1166 |#1|) $) 50) (((-628 |#1|) (-1166 $)) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-343)))) (-2190 (((-792) $) 137) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) 85)) (-2143 (($ $) NIL (|has| |#1| (-343))) (((-3 $ "failed") $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2323 (((-708)) 143)) (-3855 (((-1166 $)) 107) (((-1166 $) (-850)) 46)) (-3958 (((-108) $ $) NIL)) (-2351 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 109 T CONST)) (-3577 (($) 31 T CONST)) (-3428 (($ $) 65 (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2213 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-1531 (((-108) $ $) 105)) (-1620 (($ $ $) 97) (($ $ |#1|) 98)) (-1612 (($ $) 78) (($ $ $) 103)) (-1602 (($ $ $) 101)) (** (($ $ (-850)) NIL) (($ $ (-708)) 41) (($ $ (-522)) 129)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 76) (($ $ $) 53) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 74)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2400 (((-108) $) NIL)) (-1593 (((-708)) NIL)) (-1945 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-3833 (((-1094 (-850) (-708)) (-522)) 119 (|has| |#1| (-343)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-1685 (((-708)) 139 (|has| |#1| (-343)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) 91)) (-1478 ((|#1| $) 88)) (-3225 (($ (-1166 |#1|)) 83)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) 115 (|has| |#1| (-343)))) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) 80 (|has| |#1| (-343)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2160 (($) 39 (|has| |#1| (-343)))) (-2087 (((-108) $) NIL (|has| |#1| (-343)))) (-1380 (($ $ (-708)) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2725 (((-108) $) NIL)) (-3872 (((-850) $) NIL (|has| |#1| (-343))) (((-770 (-850)) $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2859 (((-108) $) NIL)) (-3768 (($) 120 (|has| |#1| (-343)))) (-1372 (((-108) $) 72 (|has| |#1| (-343)))) (-1269 ((|#1| $) 38) (($ $ (-850)) 40 (|has| |#1| (-343)))) (-4208 (((-3 $ "failed") $) NIL (|has| |#1| (-343)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4199 (((-1081 |#1|) $) 62) (((-1081 $) $ (-850)) NIL (|has| |#1| (-343)))) (-1475 (((-850) $) 95 (|has| |#1| (-343)))) (-3657 (((-1081 |#1|) $) NIL (|has| |#1| (-343)))) (-3723 (((-1081 |#1|) $) NIL (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) NIL (|has| |#1| (-343)))) (-2259 (($ $ (-1081 |#1|)) NIL (|has| |#1| (-343)))) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| |#1| (-343)) CONST)) (-2882 (($ (-850)) 93 (|has| |#1| (-343)))) (-2804 (((-108) $) 141)) (-4174 (((-1032) $) NIL)) (-1368 (($) 35 (|has| |#1| (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) 113 (|has| |#1| (-343)))) (-2006 (((-393 $) $) NIL)) (-1713 (((-770 (-850))) NIL) (((-850)) 138)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1304 (((-708) $) NIL (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-3222 (((-126)) NIL)) (-2731 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2487 (((-770 (-850)) $) NIL) (((-850) $) 56)) (-1579 (((-1081 |#1|)) 86)) (-2670 (($) 125 (|has| |#1| (-343)))) (-1705 (($) NIL (|has| |#1| (-343)))) (-3510 (((-1166 |#1|) $) 50) (((-628 |#1|) (-1166 $)) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-343)))) (-2217 (((-792) $) 137) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) 85)) (-3040 (($ $) NIL (|has| |#1| (-343))) (((-3 $ "failed") $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2742 (((-708)) 143)) (-2905 (((-1166 $)) 107) (((-1166 $) (-850)) 46)) (-1407 (((-108) $ $) NIL)) (-1711 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 109 T CONST)) (-3709 (($) 31 T CONST)) (-2938 (($ $) 65 (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2252 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-1562 (((-108) $ $) 105)) (-1682 (($ $ $) 97) (($ $ |#1|) 98)) (-1672 (($ $) 78) (($ $ $) 103)) (-1661 (($ $ $) 101)) (** (($ $ (-850)) NIL) (($ $ (-708)) 41) (($ $ (-522)) 129)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 76) (($ $ $) 53) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 74)))
(((-330 |#1| |#2|) (-304 |#1|) (-324) (-1081 |#1|)) (T -330))
NIL
(-304 |#1|)
-((-2490 ((|#1| (-1081 |#2|)) 51)))
-(((-331 |#1| |#2|) (-10 -7 (-15 -2490 (|#1| (-1081 |#2|)))) (-13 (-377) (-10 -7 (-15 -2190 (|#1| |#2|)) (-15 -2120 ((-850) |#1|)) (-15 -3855 ((-1166 |#1|) (-850))) (-15 -3428 (|#1| |#1|)))) (-324)) (T -331))
-((-2490 (*1 *2 *3) (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-4 *2 (-13 (-377) (-10 -7 (-15 -2190 (*2 *4)) (-15 -2120 ((-850) *2)) (-15 -3855 ((-1166 *2) (-850))) (-15 -3428 (*2 *2))))) (-5 *1 (-331 *2 *4)))))
-(-10 -7 (-15 -2490 (|#1| (-1081 |#2|))))
-((-3977 (((-886 (-1081 |#1|)) (-1081 |#1|)) 37)) (-3255 (((-1081 |#1|) (-850) (-850)) 110) (((-1081 |#1|) (-850)) 109)) (-2511 (((-108) (-1081 |#1|)) 82)) (-1889 (((-850) (-850)) 72)) (-4086 (((-850) (-850)) 74)) (-2998 (((-850) (-850)) 70)) (-2741 (((-108) (-1081 |#1|)) 86)) (-2488 (((-3 (-1081 |#1|) "failed") (-1081 |#1|)) 98)) (-3095 (((-3 (-1081 |#1|) "failed") (-1081 |#1|)) 101)) (-2505 (((-3 (-1081 |#1|) "failed") (-1081 |#1|)) 100)) (-1285 (((-3 (-1081 |#1|) "failed") (-1081 |#1|)) 99)) (-3704 (((-3 (-1081 |#1|) "failed") (-1081 |#1|)) 95)) (-4213 (((-1081 |#1|) (-1081 |#1|)) 63)) (-3822 (((-1081 |#1|) (-850)) 104)) (-1603 (((-1081 |#1|) (-850)) 107)) (-1472 (((-1081 |#1|) (-850)) 106)) (-3656 (((-1081 |#1|) (-850)) 105)) (-1657 (((-1081 |#1|) (-850)) 102)))
-(((-332 |#1|) (-10 -7 (-15 -2511 ((-108) (-1081 |#1|))) (-15 -2741 ((-108) (-1081 |#1|))) (-15 -2998 ((-850) (-850))) (-15 -1889 ((-850) (-850))) (-15 -4086 ((-850) (-850))) (-15 -1657 ((-1081 |#1|) (-850))) (-15 -3822 ((-1081 |#1|) (-850))) (-15 -3656 ((-1081 |#1|) (-850))) (-15 -1472 ((-1081 |#1|) (-850))) (-15 -1603 ((-1081 |#1|) (-850))) (-15 -3704 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -2488 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -1285 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -2505 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -3095 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -3255 ((-1081 |#1|) (-850))) (-15 -3255 ((-1081 |#1|) (-850) (-850))) (-15 -4213 ((-1081 |#1|) (-1081 |#1|))) (-15 -3977 ((-886 (-1081 |#1|)) (-1081 |#1|)))) (-324)) (T -332))
-((-3977 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-886 (-1081 *4))) (-5 *1 (-332 *4)) (-5 *3 (-1081 *4)))) (-4213 (*1 *2 *2) (-12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))) (-3255 (*1 *2 *3 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-3255 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-3095 (*1 *2 *2) (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))) (-2505 (*1 *2 *2) (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))) (-1285 (*1 *2 *2) (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))) (-2488 (*1 *2 *2) (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))) (-3704 (*1 *2 *2) (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))) (-1603 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-1472 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-3656 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-3822 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-1657 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-4086 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-332 *3)) (-4 *3 (-324)))) (-1889 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-332 *3)) (-4 *3 (-324)))) (-2998 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-332 *3)) (-4 *3 (-324)))) (-2741 (*1 *2 *3) (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-108)) (-5 *1 (-332 *4)))) (-2511 (*1 *2 *3) (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-108)) (-5 *1 (-332 *4)))))
-(-10 -7 (-15 -2511 ((-108) (-1081 |#1|))) (-15 -2741 ((-108) (-1081 |#1|))) (-15 -2998 ((-850) (-850))) (-15 -1889 ((-850) (-850))) (-15 -4086 ((-850) (-850))) (-15 -1657 ((-1081 |#1|) (-850))) (-15 -3822 ((-1081 |#1|) (-850))) (-15 -3656 ((-1081 |#1|) (-850))) (-15 -1472 ((-1081 |#1|) (-850))) (-15 -1603 ((-1081 |#1|) (-850))) (-15 -3704 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -2488 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -1285 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -2505 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -3095 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -3255 ((-1081 |#1|) (-850))) (-15 -3255 ((-1081 |#1|) (-850) (-850))) (-15 -4213 ((-1081 |#1|) (-1081 |#1|))) (-15 -3977 ((-886 (-1081 |#1|)) (-1081 |#1|))))
-((-1473 (((-3 (-588 |#3|) "failed") (-588 |#3|) |#3|) 34)))
-(((-333 |#1| |#2| |#3|) (-10 -7 (-15 -1473 ((-3 (-588 |#3|) "failed") (-588 |#3|) |#3|))) (-324) (-1142 |#1|) (-1142 |#2|)) (T -333))
-((-1473 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-324)) (-5 *1 (-333 *4 *5 *3)))))
-(-10 -7 (-15 -1473 ((-3 (-588 |#3|) "failed") (-588 |#3|) |#3|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1651 (((-108) $) NIL)) (-2219 (((-708)) NIL)) (-1865 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-1398 (((-1094 (-850) (-708)) (-522)) NIL (|has| |#1| (-343)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1629 (((-708)) NIL (|has| |#1| (-343)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL)) (-1484 ((|#1| $) NIL)) (-3766 (($ (-1166 |#1|)) NIL)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-343)))) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| |#1| (-343)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-1223 (($) NIL (|has| |#1| (-343)))) (-2511 (((-108) $) NIL (|has| |#1| (-343)))) (-2111 (($ $ (-708)) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2813 (((-108) $) NIL)) (-3714 (((-850) $) NIL (|has| |#1| (-343))) (((-770 (-850)) $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2782 (((-108) $) NIL)) (-3400 (($) NIL (|has| |#1| (-343)))) (-2741 (((-108) $) NIL (|has| |#1| (-343)))) (-2100 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-3004 (((-3 $ "failed") $) NIL (|has| |#1| (-343)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1712 (((-1081 |#1|) $) NIL) (((-1081 $) $ (-850)) NIL (|has| |#1| (-343)))) (-2120 (((-850) $) NIL (|has| |#1| (-343)))) (-3074 (((-1081 |#1|) $) NIL (|has| |#1| (-343)))) (-2941 (((-1081 |#1|) $) NIL (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) NIL (|has| |#1| (-343)))) (-1425 (($ $ (-1081 |#1|)) NIL (|has| |#1| (-343)))) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| |#1| (-343)) CONST)) (-2717 (($ (-850)) NIL (|has| |#1| (-343)))) (-2822 (((-108) $) NIL)) (-4151 (((-1032) $) NIL)) (-1383 (($) NIL (|has| |#1| (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL (|has| |#1| (-343)))) (-1916 (((-393 $) $) NIL)) (-2621 (((-770 (-850))) NIL) (((-850)) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3018 (((-708) $) NIL (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-4078 (((-126)) NIL)) (-2157 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2793 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1479 (((-1081 |#1|)) NIL)) (-2581 (($) NIL (|has| |#1| (-343)))) (-1299 (($) NIL (|has| |#1| (-343)))) (-3677 (((-1166 |#1|) $) NIL) (((-628 |#1|) (-1166 $)) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-343)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) NIL)) (-2143 (($ $) NIL (|has| |#1| (-343))) (((-3 $ "failed") $) NIL (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2323 (((-708)) NIL)) (-3855 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-3958 (((-108) $ $) NIL)) (-2351 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-3428 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2213 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-3855 ((|#1| (-1081 |#2|)) 51)))
+(((-331 |#1| |#2|) (-10 -7 (-15 -3855 (|#1| (-1081 |#2|)))) (-13 (-377) (-10 -7 (-15 -2217 (|#1| |#2|)) (-15 -1475 ((-850) |#1|)) (-15 -2905 ((-1166 |#1|) (-850))) (-15 -2938 (|#1| |#1|)))) (-324)) (T -331))
+((-3855 (*1 *2 *3) (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-4 *2 (-13 (-377) (-10 -7 (-15 -2217 (*2 *4)) (-15 -1475 ((-850) *2)) (-15 -2905 ((-1166 *2) (-850))) (-15 -2938 (*2 *2))))) (-5 *1 (-331 *2 *4)))))
+(-10 -7 (-15 -3855 (|#1| (-1081 |#2|))))
+((-1606 (((-886 (-1081 |#1|)) (-1081 |#1|)) 37)) (-3344 (((-1081 |#1|) (-850) (-850)) 110) (((-1081 |#1|) (-850)) 109)) (-2087 (((-108) (-1081 |#1|)) 82)) (-4068 (((-850) (-850)) 72)) (-3285 (((-850) (-850)) 74)) (-4136 (((-850) (-850)) 70)) (-1372 (((-108) (-1081 |#1|)) 86)) (-3834 (((-3 (-1081 |#1|) "failed") (-1081 |#1|)) 98)) (-3857 (((-3 (-1081 |#1|) "failed") (-1081 |#1|)) 101)) (-2036 (((-3 (-1081 |#1|) "failed") (-1081 |#1|)) 100)) (-1573 (((-3 (-1081 |#1|) "failed") (-1081 |#1|)) 99)) (-3765 (((-3 (-1081 |#1|) "failed") (-1081 |#1|)) 95)) (-2110 (((-1081 |#1|) (-1081 |#1|)) 63)) (-2613 (((-1081 |#1|) (-850)) 104)) (-3812 (((-1081 |#1|) (-850)) 107)) (-2789 (((-1081 |#1|) (-850)) 106)) (-1459 (((-1081 |#1|) (-850)) 105)) (-2478 (((-1081 |#1|) (-850)) 102)))
+(((-332 |#1|) (-10 -7 (-15 -2087 ((-108) (-1081 |#1|))) (-15 -1372 ((-108) (-1081 |#1|))) (-15 -4136 ((-850) (-850))) (-15 -4068 ((-850) (-850))) (-15 -3285 ((-850) (-850))) (-15 -2478 ((-1081 |#1|) (-850))) (-15 -2613 ((-1081 |#1|) (-850))) (-15 -1459 ((-1081 |#1|) (-850))) (-15 -2789 ((-1081 |#1|) (-850))) (-15 -3812 ((-1081 |#1|) (-850))) (-15 -3765 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -3834 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -1573 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -2036 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -3857 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -3344 ((-1081 |#1|) (-850))) (-15 -3344 ((-1081 |#1|) (-850) (-850))) (-15 -2110 ((-1081 |#1|) (-1081 |#1|))) (-15 -1606 ((-886 (-1081 |#1|)) (-1081 |#1|)))) (-324)) (T -332))
+((-1606 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-886 (-1081 *4))) (-5 *1 (-332 *4)) (-5 *3 (-1081 *4)))) (-2110 (*1 *2 *2) (-12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))) (-3344 (*1 *2 *3 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-3344 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-3857 (*1 *2 *2) (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))) (-2036 (*1 *2 *2) (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))) (-1573 (*1 *2 *2) (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))) (-3834 (*1 *2 *2) (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))) (-3765 (*1 *2 *2) (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))) (-3812 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-2789 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-1459 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-2613 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-2478 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4)) (-4 *4 (-324)))) (-3285 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-332 *3)) (-4 *3 (-324)))) (-4068 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-332 *3)) (-4 *3 (-324)))) (-4136 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-332 *3)) (-4 *3 (-324)))) (-1372 (*1 *2 *3) (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-108)) (-5 *1 (-332 *4)))) (-2087 (*1 *2 *3) (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-108)) (-5 *1 (-332 *4)))))
+(-10 -7 (-15 -2087 ((-108) (-1081 |#1|))) (-15 -1372 ((-108) (-1081 |#1|))) (-15 -4136 ((-850) (-850))) (-15 -4068 ((-850) (-850))) (-15 -3285 ((-850) (-850))) (-15 -2478 ((-1081 |#1|) (-850))) (-15 -2613 ((-1081 |#1|) (-850))) (-15 -1459 ((-1081 |#1|) (-850))) (-15 -2789 ((-1081 |#1|) (-850))) (-15 -3812 ((-1081 |#1|) (-850))) (-15 -3765 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -3834 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -1573 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -2036 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -3857 ((-3 (-1081 |#1|) "failed") (-1081 |#1|))) (-15 -3344 ((-1081 |#1|) (-850))) (-15 -3344 ((-1081 |#1|) (-850) (-850))) (-15 -2110 ((-1081 |#1|) (-1081 |#1|))) (-15 -1606 ((-886 (-1081 |#1|)) (-1081 |#1|))))
+((-2800 (((-3 (-588 |#3|) "failed") (-588 |#3|) |#3|) 34)))
+(((-333 |#1| |#2| |#3|) (-10 -7 (-15 -2800 ((-3 (-588 |#3|) "failed") (-588 |#3|) |#3|))) (-324) (-1142 |#1|) (-1142 |#2|)) (T -333))
+((-2800 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-324)) (-5 *1 (-333 *4 *5 *3)))))
+(-10 -7 (-15 -2800 ((-3 (-588 |#3|) "failed") (-588 |#3|) |#3|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2400 (((-108) $) NIL)) (-1593 (((-708)) NIL)) (-1945 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-3833 (((-1094 (-850) (-708)) (-522)) NIL (|has| |#1| (-343)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-1685 (((-708)) NIL (|has| |#1| (-343)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL)) (-1478 ((|#1| $) NIL)) (-3225 (($ (-1166 |#1|)) NIL)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-343)))) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| |#1| (-343)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2160 (($) NIL (|has| |#1| (-343)))) (-2087 (((-108) $) NIL (|has| |#1| (-343)))) (-1380 (($ $ (-708)) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2725 (((-108) $) NIL)) (-3872 (((-850) $) NIL (|has| |#1| (-343))) (((-770 (-850)) $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2859 (((-108) $) NIL)) (-3768 (($) NIL (|has| |#1| (-343)))) (-1372 (((-108) $) NIL (|has| |#1| (-343)))) (-1269 ((|#1| $) NIL) (($ $ (-850)) NIL (|has| |#1| (-343)))) (-4208 (((-3 $ "failed") $) NIL (|has| |#1| (-343)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4199 (((-1081 |#1|) $) NIL) (((-1081 $) $ (-850)) NIL (|has| |#1| (-343)))) (-1475 (((-850) $) NIL (|has| |#1| (-343)))) (-3657 (((-1081 |#1|) $) NIL (|has| |#1| (-343)))) (-3723 (((-1081 |#1|) $) NIL (|has| |#1| (-343))) (((-3 (-1081 |#1|) "failed") $ $) NIL (|has| |#1| (-343)))) (-2259 (($ $ (-1081 |#1|)) NIL (|has| |#1| (-343)))) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| |#1| (-343)) CONST)) (-2882 (($ (-850)) NIL (|has| |#1| (-343)))) (-2804 (((-108) $) NIL)) (-4174 (((-1032) $) NIL)) (-1368 (($) NIL (|has| |#1| (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL (|has| |#1| (-343)))) (-2006 (((-393 $) $) NIL)) (-1713 (((-770 (-850))) NIL) (((-850)) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1304 (((-708) $) NIL (|has| |#1| (-343))) (((-3 (-708) "failed") $ $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-3222 (((-126)) NIL)) (-2731 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2487 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1579 (((-1081 |#1|)) NIL)) (-2670 (($) NIL (|has| |#1| (-343)))) (-1705 (($) NIL (|has| |#1| (-343)))) (-3510 (((-1166 |#1|) $) NIL) (((-628 |#1|) (-1166 $)) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-343)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) NIL)) (-3040 (($ $) NIL (|has| |#1| (-343))) (((-3 $ "failed") $) NIL (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2742 (((-708)) NIL)) (-2905 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-1407 (((-108) $ $) NIL)) (-1711 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2938 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-2252 (($ $) NIL (|has| |#1| (-343))) (($ $ (-708)) NIL (|has| |#1| (-343)))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-334 |#1| |#2|) (-304 |#1|) (-324) (-850)) (T -334))
NIL
(-304 |#1|)
-((-3191 (((-108) (-588 (-881 |#1|))) 32)) (-4054 (((-588 (-881 |#1|)) (-588 (-881 |#1|))) 43)) (-1652 (((-3 (-588 (-881 |#1|)) "failed") (-588 (-881 |#1|))) 39)))
-(((-335 |#1| |#2|) (-10 -7 (-15 -3191 ((-108) (-588 (-881 |#1|)))) (-15 -1652 ((-3 (-588 (-881 |#1|)) "failed") (-588 (-881 |#1|)))) (-15 -4054 ((-588 (-881 |#1|)) (-588 (-881 |#1|))))) (-426) (-588 (-1085))) (T -335))
-((-4054 (*1 *2 *2) (-12 (-5 *2 (-588 (-881 *3))) (-4 *3 (-426)) (-5 *1 (-335 *3 *4)) (-14 *4 (-588 (-1085))))) (-1652 (*1 *2 *2) (|partial| -12 (-5 *2 (-588 (-881 *3))) (-4 *3 (-426)) (-5 *1 (-335 *3 *4)) (-14 *4 (-588 (-1085))))) (-3191 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-426)) (-5 *2 (-108)) (-5 *1 (-335 *4 *5)) (-14 *5 (-588 (-1085))))))
-(-10 -7 (-15 -3191 ((-108) (-588 (-881 |#1|)))) (-15 -1652 ((-3 (-588 (-881 |#1|)) "failed") (-588 (-881 |#1|)))) (-15 -4054 ((-588 (-881 |#1|)) (-588 (-881 |#1|)))))
-((-1416 (((-108) $ $) NIL)) (-1629 (((-708) $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL)) (-1484 ((|#1| $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2782 (((-108) $) 14)) (-3750 ((|#1| $ (-522)) NIL)) (-1905 (((-522) $ (-522)) NIL)) (-3896 (($ (-1 |#1| |#1|) $) 32)) (-3941 (($ (-1 (-522) (-522)) $) 24)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 26)) (-4151 (((-1032) $) NIL)) (-2976 (((-588 (-2 (|:| |gen| |#1|) (|:| -3266 (-522)))) $) 28)) (-3122 (($ $ $) NIL)) (-1288 (($ $ $) NIL)) (-2190 (((-792) $) 38) (($ |#1|) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3577 (($) 9 T CONST)) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL) (($ |#1| (-522)) 17)) (* (($ $ $) 43) (($ |#1| $) 21) (($ $ |#1|) 19)))
-(((-336 |#1|) (-13 (-447) (-962 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-522))) (-15 -1629 ((-708) $)) (-15 -1905 ((-522) $ (-522))) (-15 -3750 (|#1| $ (-522))) (-15 -3941 ($ (-1 (-522) (-522)) $)) (-15 -3896 ($ (-1 |#1| |#1|) $)) (-15 -2976 ((-588 (-2 (|:| |gen| |#1|) (|:| -3266 (-522)))) $)))) (-1014)) (T -336))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-336 *2)) (-4 *2 (-1014)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-336 *2)) (-4 *2 (-1014)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-336 *2)) (-4 *2 (-1014)))) (-1629 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-336 *3)) (-4 *3 (-1014)))) (-1905 (*1 *2 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-336 *3)) (-4 *3 (-1014)))) (-3750 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-336 *2)) (-4 *2 (-1014)))) (-3941 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-522) (-522))) (-5 *1 (-336 *3)) (-4 *3 (-1014)))) (-3896 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-336 *3)))) (-2976 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3266 (-522))))) (-5 *1 (-336 *3)) (-4 *3 (-1014)))))
-(-13 (-447) (-962 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-522))) (-15 -1629 ((-708) $)) (-15 -1905 ((-522) $ (-522))) (-15 -3750 (|#1| $ (-522))) (-15 -3941 ($ (-1 (-522) (-522)) $)) (-15 -3896 ($ (-1 |#1| |#1|) $)) (-15 -2976 ((-588 (-2 (|:| |gen| |#1|) (|:| -3266 (-522)))) $))))
-((-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 13)) (-2022 (($ $) 14)) (-3450 (((-393 $) $) 30)) (-2813 (((-108) $) 26)) (-3098 (($ $) 19)) (-2259 (($ $ $) 23) (($ (-588 $)) NIL)) (-1916 (((-393 $) $) 31)) (-2232 (((-3 $ "failed") $ $) 22)) (-3730 (((-708) $) 25)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 35)) (-3958 (((-108) $ $) 16)) (-1620 (($ $ $) 33)))
-(((-337 |#1|) (-10 -8 (-15 -1620 (|#1| |#1| |#1|)) (-15 -3098 (|#1| |#1|)) (-15 -2813 ((-108) |#1|)) (-15 -3450 ((-393 |#1|) |#1|)) (-15 -1916 ((-393 |#1|) |#1|)) (-15 -2752 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -3730 ((-708) |#1|)) (-15 -2259 (|#1| (-588 |#1|))) (-15 -2259 (|#1| |#1| |#1|)) (-15 -3958 ((-108) |#1| |#1|)) (-15 -2022 (|#1| |#1|)) (-15 -2013 ((-2 (|:| -3210 |#1|) (|:| -4225 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#1|))) (-338)) (T -337))
-NIL
-(-10 -8 (-15 -1620 (|#1| |#1| |#1|)) (-15 -3098 (|#1| |#1|)) (-15 -2813 ((-108) |#1|)) (-15 -3450 ((-393 |#1|) |#1|)) (-15 -1916 ((-393 |#1|) |#1|)) (-15 -2752 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -3730 ((-708) |#1|)) (-15 -2259 (|#1| (-588 |#1|))) (-15 -2259 (|#1| |#1| |#1|)) (-15 -3958 ((-108) |#1| |#1|)) (-15 -2022 (|#1| |#1|)) (-15 -2013 ((-2 (|:| -3210 |#1|) (|:| -4225 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 73)) (-3450 (((-393 $) $) 72)) (-1687 (((-108) $ $) 59)) (-3175 (($) 17 T CONST)) (-2277 (($ $ $) 55)) (-2682 (((-3 $ "failed") $) 34)) (-2254 (($ $ $) 56)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-2813 (((-108) $) 71)) (-2782 (((-108) $) 31)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 70)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-1916 (((-393 $) $) 74)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-3730 (((-708) $) 58)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ $) 64)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66)))
+((-2318 (((-108) (-588 (-881 |#1|))) 32)) (-3059 (((-588 (-881 |#1|)) (-588 (-881 |#1|))) 43)) (-2413 (((-3 (-588 (-881 |#1|)) "failed") (-588 (-881 |#1|))) 39)))
+(((-335 |#1| |#2|) (-10 -7 (-15 -2318 ((-108) (-588 (-881 |#1|)))) (-15 -2413 ((-3 (-588 (-881 |#1|)) "failed") (-588 (-881 |#1|)))) (-15 -3059 ((-588 (-881 |#1|)) (-588 (-881 |#1|))))) (-426) (-588 (-1085))) (T -335))
+((-3059 (*1 *2 *2) (-12 (-5 *2 (-588 (-881 *3))) (-4 *3 (-426)) (-5 *1 (-335 *3 *4)) (-14 *4 (-588 (-1085))))) (-2413 (*1 *2 *2) (|partial| -12 (-5 *2 (-588 (-881 *3))) (-4 *3 (-426)) (-5 *1 (-335 *3 *4)) (-14 *4 (-588 (-1085))))) (-2318 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-426)) (-5 *2 (-108)) (-5 *1 (-335 *4 *5)) (-14 *5 (-588 (-1085))))))
+(-10 -7 (-15 -2318 ((-108) (-588 (-881 |#1|)))) (-15 -2413 ((-3 (-588 (-881 |#1|)) "failed") (-588 (-881 |#1|)))) (-15 -3059 ((-588 (-881 |#1|)) (-588 (-881 |#1|)))))
+((-1419 (((-108) $ $) NIL)) (-1685 (((-708) $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL)) (-1478 ((|#1| $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2859 (((-108) $) 14)) (-3108 ((|#1| $ (-522)) NIL)) (-4213 (((-522) $ (-522)) NIL)) (-2007 (($ (-1 |#1| |#1|) $) 32)) (-1250 (($ (-1 (-522) (-522)) $) 24)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 26)) (-4174 (((-1032) $) NIL)) (-4045 (((-588 (-2 (|:| |gen| |#1|) (|:| -3357 (-522)))) $) 28)) (-2983 (($ $ $) NIL)) (-1596 (($ $ $) NIL)) (-2217 (((-792) $) 38) (($ |#1|) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3709 (($) 9 T CONST)) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL) (($ |#1| (-522)) 17)) (* (($ $ $) 43) (($ |#1| $) 21) (($ $ |#1|) 19)))
+(((-336 |#1|) (-13 (-447) (-962 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-522))) (-15 -1685 ((-708) $)) (-15 -4213 ((-522) $ (-522))) (-15 -3108 (|#1| $ (-522))) (-15 -1250 ($ (-1 (-522) (-522)) $)) (-15 -2007 ($ (-1 |#1| |#1|) $)) (-15 -4045 ((-588 (-2 (|:| |gen| |#1|) (|:| -3357 (-522)))) $)))) (-1014)) (T -336))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-336 *2)) (-4 *2 (-1014)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-336 *2)) (-4 *2 (-1014)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-336 *2)) (-4 *2 (-1014)))) (-1685 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-336 *3)) (-4 *3 (-1014)))) (-4213 (*1 *2 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-336 *3)) (-4 *3 (-1014)))) (-3108 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-336 *2)) (-4 *2 (-1014)))) (-1250 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-522) (-522))) (-5 *1 (-336 *3)) (-4 *3 (-1014)))) (-2007 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-336 *3)))) (-4045 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3357 (-522))))) (-5 *1 (-336 *3)) (-4 *3 (-1014)))))
+(-13 (-447) (-962 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-522))) (-15 -1685 ((-708) $)) (-15 -4213 ((-522) $ (-522))) (-15 -3108 (|#1| $ (-522))) (-15 -1250 ($ (-1 (-522) (-522)) $)) (-15 -2007 ($ (-1 |#1| |#1|) $)) (-15 -4045 ((-588 (-2 (|:| |gen| |#1|) (|:| -3357 (-522)))) $))))
+((-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 13)) (-2298 (($ $) 14)) (-3133 (((-393 $) $) 30)) (-2725 (((-108) $) 26)) (-3193 (($ $) 19)) (-2308 (($ $ $) 23) (($ (-588 $)) NIL)) (-2006 (((-393 $) $) 31)) (-2276 (((-3 $ "failed") $ $) 22)) (-4031 (((-708) $) 25)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 35)) (-1407 (((-108) $ $) 16)) (-1682 (($ $ $) 33)))
+(((-337 |#1|) (-10 -8 (-15 -1682 (|#1| |#1| |#1|)) (-15 -3193 (|#1| |#1|)) (-15 -2725 ((-108) |#1|)) (-15 -3133 ((-393 |#1|) |#1|)) (-15 -2006 ((-393 |#1|) |#1|)) (-15 -4164 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -4031 ((-708) |#1|)) (-15 -2308 (|#1| (-588 |#1|))) (-15 -2308 (|#1| |#1| |#1|)) (-15 -1407 ((-108) |#1| |#1|)) (-15 -2298 (|#1| |#1|)) (-15 -3401 ((-2 (|:| -2541 |#1|) (|:| -4225 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#1|))) (-338)) (T -337))
+NIL
+(-10 -8 (-15 -1682 (|#1| |#1| |#1|)) (-15 -3193 (|#1| |#1|)) (-15 -2725 ((-108) |#1|)) (-15 -3133 ((-393 |#1|) |#1|)) (-15 -2006 ((-393 |#1|) |#1|)) (-15 -4164 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -4031 ((-708) |#1|)) (-15 -2308 (|#1| (-588 |#1|))) (-15 -2308 (|#1| |#1| |#1|)) (-15 -1407 ((-108) |#1| |#1|)) (-15 -2298 (|#1| |#1|)) (-15 -3401 ((-2 (|:| -2541 |#1|) (|:| -4225 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 73)) (-3133 (((-393 $) $) 72)) (-2805 (((-108) $ $) 59)) (-3367 (($) 17 T CONST)) (-2333 (($ $ $) 55)) (-3920 (((-3 $ "failed") $) 34)) (-2303 (($ $ $) 56)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-2725 (((-108) $) 71)) (-2859 (((-108) $) 31)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 70)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-2006 (((-393 $) $) 74)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-4031 (((-708) $) 58)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ $) 64)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66)))
(((-338) (-1197)) (T -338))
-((-1620 (*1 *1 *1 *1) (-4 *1 (-338))))
-(-13 (-283) (-1124) (-220) (-10 -8 (-15 -1620 ($ $ $)) (-6 -4236) (-6 -4230)))
+((-1682 (*1 *1 *1 *1) (-4 *1 (-338))))
+(-13 (-283) (-1124) (-220) (-10 -8 (-15 -1682 ($ $ $)) (-6 -4236) (-6 -4230)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-157) . T) ((-220) . T) ((-266) . T) ((-283) . T) ((-426) . T) ((-514) . T) ((-590 #0#) . T) ((-590 $) . T) ((-655 #0#) . T) ((-655 $) . T) ((-664) . T) ((-849) . T) ((-977 #0#) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) . T))
-((-1416 (((-108) $ $) 7)) (-1270 ((|#2| $ |#2|) 13)) (-2563 (($ $ (-1068)) 18)) (-4045 ((|#2| $) 14)) (-1544 (($ |#1|) 20) (($ |#1| (-1068)) 19)) (-2888 ((|#1| $) 16)) (-2385 (((-1068) $) 9)) (-3469 (((-1068) $) 15)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-2152 (($ $) 17)) (-1531 (((-108) $ $) 6)))
+((-1419 (((-108) $ $) 7)) (-2710 ((|#2| $ |#2|) 13)) (-3813 (($ $ (-1068)) 18)) (-2982 ((|#2| $) 14)) (-1566 (($ |#1|) 20) (($ |#1| (-1068)) 19)) (-3015 ((|#1| $) 16)) (-2311 (((-1068) $) 9)) (-3270 (((-1068) $) 15)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3116 (($ $) 17)) (-1562 (((-108) $ $) 6)))
(((-339 |#1| |#2|) (-1197) (-1014) (-1014)) (T -339))
-((-1544 (*1 *1 *2) (-12 (-4 *1 (-339 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-1544 (*1 *1 *2 *3) (-12 (-5 *3 (-1068)) (-4 *1 (-339 *2 *4)) (-4 *2 (-1014)) (-4 *4 (-1014)))) (-2563 (*1 *1 *1 *2) (-12 (-5 *2 (-1068)) (-4 *1 (-339 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-2152 (*1 *1 *1) (-12 (-4 *1 (-339 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-2888 (*1 *2 *1) (-12 (-4 *1 (-339 *2 *3)) (-4 *3 (-1014)) (-4 *2 (-1014)))) (-3469 (*1 *2 *1) (-12 (-4 *1 (-339 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-5 *2 (-1068)))) (-4045 (*1 *2 *1) (-12 (-4 *1 (-339 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))) (-1270 (*1 *2 *1 *2) (-12 (-4 *1 (-339 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))))
-(-13 (-1014) (-10 -8 (-15 -1544 ($ |t#1|)) (-15 -1544 ($ |t#1| (-1068))) (-15 -2563 ($ $ (-1068))) (-15 -2152 ($ $)) (-15 -2888 (|t#1| $)) (-15 -3469 ((-1068) $)) (-15 -4045 (|t#2| $)) (-15 -1270 (|t#2| $ |t#2|))))
+((-1566 (*1 *1 *2) (-12 (-4 *1 (-339 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-1566 (*1 *1 *2 *3) (-12 (-5 *3 (-1068)) (-4 *1 (-339 *2 *4)) (-4 *2 (-1014)) (-4 *4 (-1014)))) (-3813 (*1 *1 *1 *2) (-12 (-5 *2 (-1068)) (-4 *1 (-339 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-3116 (*1 *1 *1) (-12 (-4 *1 (-339 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-3015 (*1 *2 *1) (-12 (-4 *1 (-339 *2 *3)) (-4 *3 (-1014)) (-4 *2 (-1014)))) (-3270 (*1 *2 *1) (-12 (-4 *1 (-339 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-5 *2 (-1068)))) (-2982 (*1 *2 *1) (-12 (-4 *1 (-339 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))) (-2710 (*1 *2 *1 *2) (-12 (-4 *1 (-339 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))))
+(-13 (-1014) (-10 -8 (-15 -1566 ($ |t#1|)) (-15 -1566 ($ |t#1| (-1068))) (-15 -3813 ($ $ (-1068))) (-15 -3116 ($ $)) (-15 -3015 (|t#1| $)) (-15 -3270 ((-1068) $)) (-15 -2982 (|t#2| $)) (-15 -2710 (|t#2| $ |t#2|))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-1270 ((|#1| $ |#1|) 29)) (-2563 (($ $ (-1068)) 22)) (-1789 (((-3 |#1| "failed") $) 28)) (-4045 ((|#1| $) 26)) (-1544 (($ (-363)) 21) (($ (-363) (-1068)) 20)) (-2888 (((-363) $) 24)) (-2385 (((-1068) $) NIL)) (-3469 (((-1068) $) 25)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 19)) (-2152 (($ $) 23)) (-1531 (((-108) $ $) 18)))
-(((-340 |#1|) (-13 (-339 (-363) |#1|) (-10 -8 (-15 -1789 ((-3 |#1| "failed") $)))) (-1014)) (T -340))
-((-1789 (*1 *2 *1) (|partial| -12 (-5 *1 (-340 *2)) (-4 *2 (-1014)))))
-(-13 (-339 (-363) |#1|) (-10 -8 (-15 -1789 ((-3 |#1| "failed") $))))
-((-1588 (((-1166 (-628 |#2|)) (-1166 $)) 61)) (-1771 (((-628 |#2|) (-1166 $)) 119)) (-3594 ((|#2| $) 32)) (-2828 (((-628 |#2|) $ (-1166 $)) 123)) (-3637 (((-3 $ "failed") $) 75)) (-3076 ((|#2| $) 35)) (-2992 (((-1081 |#2|) $) 83)) (-2975 ((|#2| (-1166 $)) 106)) (-4014 (((-1081 |#2|) $) 28)) (-2878 (((-108)) 100)) (-3766 (($ (-1166 |#2|) (-1166 $)) 113)) (-2682 (((-3 $ "failed") $) 79)) (-1427 (((-108)) 95)) (-2552 (((-108)) 90)) (-2678 (((-108)) 53)) (-1943 (((-628 |#2|) (-1166 $)) 117)) (-1546 ((|#2| $) 31)) (-4142 (((-628 |#2|) $ (-1166 $)) 122)) (-2231 (((-3 $ "failed") $) 73)) (-1505 ((|#2| $) 34)) (-3630 (((-1081 |#2|) $) 82)) (-2475 ((|#2| (-1166 $)) 104)) (-2302 (((-1081 |#2|) $) 26)) (-3003 (((-108)) 99)) (-3710 (((-108)) 92)) (-3026 (((-108)) 51)) (-3055 (((-108)) 87)) (-2889 (((-108)) 101)) (-3677 (((-1166 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) (-1166 $) (-1166 $)) 111)) (-4034 (((-108)) 97)) (-2901 (((-588 (-1166 |#2|))) 86)) (-2928 (((-108)) 98)) (-3065 (((-108)) 96)) (-3856 (((-108)) 46)) (-3877 (((-108)) 102)))
-(((-341 |#1| |#2|) (-10 -8 (-15 -2992 ((-1081 |#2|) |#1|)) (-15 -3630 ((-1081 |#2|) |#1|)) (-15 -2901 ((-588 (-1166 |#2|)))) (-15 -3637 ((-3 |#1| "failed") |#1|)) (-15 -2231 ((-3 |#1| "failed") |#1|)) (-15 -2682 ((-3 |#1| "failed") |#1|)) (-15 -2552 ((-108))) (-15 -3710 ((-108))) (-15 -1427 ((-108))) (-15 -3026 ((-108))) (-15 -2678 ((-108))) (-15 -3055 ((-108))) (-15 -3877 ((-108))) (-15 -2889 ((-108))) (-15 -2878 ((-108))) (-15 -3003 ((-108))) (-15 -3856 ((-108))) (-15 -2928 ((-108))) (-15 -3065 ((-108))) (-15 -4034 ((-108))) (-15 -4014 ((-1081 |#2|) |#1|)) (-15 -2302 ((-1081 |#2|) |#1|)) (-15 -1771 ((-628 |#2|) (-1166 |#1|))) (-15 -1943 ((-628 |#2|) (-1166 |#1|))) (-15 -2975 (|#2| (-1166 |#1|))) (-15 -2475 (|#2| (-1166 |#1|))) (-15 -3766 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -3076 (|#2| |#1|)) (-15 -1505 (|#2| |#1|)) (-15 -3594 (|#2| |#1|)) (-15 -1546 (|#2| |#1|)) (-15 -2828 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -4142 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -1588 ((-1166 (-628 |#2|)) (-1166 |#1|)))) (-342 |#2|) (-157)) (T -341))
-((-4034 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3065 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-2928 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3856 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3003 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-2878 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-2889 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3877 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3055 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-2678 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3026 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-1427 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3710 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-2552 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-2901 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-588 (-1166 *4))) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))))
-(-10 -8 (-15 -2992 ((-1081 |#2|) |#1|)) (-15 -3630 ((-1081 |#2|) |#1|)) (-15 -2901 ((-588 (-1166 |#2|)))) (-15 -3637 ((-3 |#1| "failed") |#1|)) (-15 -2231 ((-3 |#1| "failed") |#1|)) (-15 -2682 ((-3 |#1| "failed") |#1|)) (-15 -2552 ((-108))) (-15 -3710 ((-108))) (-15 -1427 ((-108))) (-15 -3026 ((-108))) (-15 -2678 ((-108))) (-15 -3055 ((-108))) (-15 -3877 ((-108))) (-15 -2889 ((-108))) (-15 -2878 ((-108))) (-15 -3003 ((-108))) (-15 -3856 ((-108))) (-15 -2928 ((-108))) (-15 -3065 ((-108))) (-15 -4034 ((-108))) (-15 -4014 ((-1081 |#2|) |#1|)) (-15 -2302 ((-1081 |#2|) |#1|)) (-15 -1771 ((-628 |#2|) (-1166 |#1|))) (-15 -1943 ((-628 |#2|) (-1166 |#1|))) (-15 -2975 (|#2| (-1166 |#1|))) (-15 -2475 (|#2| (-1166 |#1|))) (-15 -3766 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -3076 (|#2| |#1|)) (-15 -1505 (|#2| |#1|)) (-15 -3594 (|#2| |#1|)) (-15 -1546 (|#2| |#1|)) (-15 -2828 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -4142 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -1588 ((-1166 (-628 |#2|)) (-1166 |#1|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-3210 (((-3 $ "failed")) 37 (|has| |#1| (-514)))) (-1233 (((-3 $ "failed") $ $) 19)) (-1588 (((-1166 (-628 |#1|)) (-1166 $)) 78)) (-1681 (((-1166 $)) 81)) (-3175 (($) 17 T CONST)) (-1868 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) 40 (|has| |#1| (-514)))) (-3130 (((-3 $ "failed")) 38 (|has| |#1| (-514)))) (-1771 (((-628 |#1|) (-1166 $)) 65)) (-3594 ((|#1| $) 74)) (-2828 (((-628 |#1|) $ (-1166 $)) 76)) (-3637 (((-3 $ "failed") $) 45 (|has| |#1| (-514)))) (-1679 (($ $ (-850)) 28)) (-3076 ((|#1| $) 72)) (-2992 (((-1081 |#1|) $) 42 (|has| |#1| (-514)))) (-2975 ((|#1| (-1166 $)) 67)) (-4014 (((-1081 |#1|) $) 63)) (-2878 (((-108)) 57)) (-3766 (($ (-1166 |#1|) (-1166 $)) 69)) (-2682 (((-3 $ "failed") $) 47 (|has| |#1| (-514)))) (-3166 (((-850)) 80)) (-2666 (((-108)) 54)) (-1882 (($ $ (-850)) 33)) (-1427 (((-108)) 50)) (-2552 (((-108)) 48)) (-2678 (((-108)) 52)) (-3505 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) 41 (|has| |#1| (-514)))) (-2007 (((-3 $ "failed")) 39 (|has| |#1| (-514)))) (-1943 (((-628 |#1|) (-1166 $)) 66)) (-1546 ((|#1| $) 75)) (-4142 (((-628 |#1|) $ (-1166 $)) 77)) (-2231 (((-3 $ "failed") $) 46 (|has| |#1| (-514)))) (-3277 (($ $ (-850)) 29)) (-1505 ((|#1| $) 73)) (-3630 (((-1081 |#1|) $) 43 (|has| |#1| (-514)))) (-2475 ((|#1| (-1166 $)) 68)) (-2302 (((-1081 |#1|) $) 64)) (-3003 (((-108)) 58)) (-2385 (((-1068) $) 9)) (-3710 (((-108)) 49)) (-3026 (((-108)) 51)) (-3055 (((-108)) 53)) (-4151 (((-1032) $) 10)) (-2889 (((-108)) 56)) (-3677 (((-1166 |#1|) $ (-1166 $)) 71) (((-628 |#1|) (-1166 $) (-1166 $)) 70)) (-2656 (((-588 (-881 |#1|)) (-1166 $)) 79)) (-1288 (($ $ $) 25)) (-4034 (((-108)) 62)) (-2190 (((-792) $) 11)) (-2901 (((-588 (-1166 |#1|))) 44 (|has| |#1| (-514)))) (-3610 (($ $ $ $) 26)) (-2928 (((-108)) 60)) (-3024 (($ $ $) 24)) (-3065 (((-108)) 61)) (-3856 (((-108)) 59)) (-3877 (((-108)) 55)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 30)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+((-1419 (((-108) $ $) NIL)) (-2710 ((|#1| $ |#1|) 29)) (-3813 (($ $ (-1068)) 22)) (-3688 (((-3 |#1| "failed") $) 28)) (-2982 ((|#1| $) 26)) (-1566 (($ (-363)) 21) (($ (-363) (-1068)) 20)) (-3015 (((-363) $) 24)) (-2311 (((-1068) $) NIL)) (-3270 (((-1068) $) 25)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 19)) (-3116 (($ $) 23)) (-1562 (((-108) $ $) 18)))
+(((-340 |#1|) (-13 (-339 (-363) |#1|) (-10 -8 (-15 -3688 ((-3 |#1| "failed") $)))) (-1014)) (T -340))
+((-3688 (*1 *2 *1) (|partial| -12 (-5 *1 (-340 *2)) (-4 *2 (-1014)))))
+(-13 (-339 (-363) |#1|) (-10 -8 (-15 -3688 ((-3 |#1| "failed") $))))
+((-3690 (((-1166 (-628 |#2|)) (-1166 $)) 61)) (-3531 (((-628 |#2|) (-1166 $)) 119)) (-2046 ((|#2| $) 32)) (-2853 (((-628 |#2|) $ (-1166 $)) 123)) (-1279 (((-3 $ "failed") $) 75)) (-3676 ((|#2| $) 35)) (-4080 (((-1081 |#2|) $) 83)) (-4035 ((|#2| (-1166 $)) 106)) (-3767 (((-1081 |#2|) $) 28)) (-1340 (((-108)) 100)) (-3225 (($ (-1166 |#2|) (-1166 $)) 113)) (-3920 (((-3 $ "failed") $) 79)) (-2287 (((-108)) 95)) (-3702 (((-108)) 90)) (-3868 (((-108)) 53)) (-1521 (((-628 |#2|) (-1166 $)) 117)) (-3411 ((|#2| $) 31)) (-2734 (((-628 |#2|) $ (-1166 $)) 122)) (-3070 (((-3 $ "failed") $) 73)) (-1819 ((|#2| $) 34)) (-1216 (((-1081 |#2|) $) 82)) (-3020 ((|#2| (-1166 $)) 104)) (-2724 (((-1081 |#2|) $) 26)) (-4197 (((-108)) 99)) (-3823 (((-108)) 92)) (-1388 (((-108)) 51)) (-3509 (((-108)) 87)) (-1427 (((-108)) 101)) (-3510 (((-1166 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) (-1166 $) (-1166 $)) 111)) (-3990 (((-108)) 97)) (-1548 (((-588 (-1166 |#2|))) 86)) (-3597 (((-108)) 98)) (-3578 (((-108)) 96)) (-2912 (((-108)) 46)) (-1855 (((-108)) 102)))
+(((-341 |#1| |#2|) (-10 -8 (-15 -4080 ((-1081 |#2|) |#1|)) (-15 -1216 ((-1081 |#2|) |#1|)) (-15 -1548 ((-588 (-1166 |#2|)))) (-15 -1279 ((-3 |#1| "failed") |#1|)) (-15 -3070 ((-3 |#1| "failed") |#1|)) (-15 -3920 ((-3 |#1| "failed") |#1|)) (-15 -3702 ((-108))) (-15 -3823 ((-108))) (-15 -2287 ((-108))) (-15 -1388 ((-108))) (-15 -3868 ((-108))) (-15 -3509 ((-108))) (-15 -1855 ((-108))) (-15 -1427 ((-108))) (-15 -1340 ((-108))) (-15 -4197 ((-108))) (-15 -2912 ((-108))) (-15 -3597 ((-108))) (-15 -3578 ((-108))) (-15 -3990 ((-108))) (-15 -3767 ((-1081 |#2|) |#1|)) (-15 -2724 ((-1081 |#2|) |#1|)) (-15 -3531 ((-628 |#2|) (-1166 |#1|))) (-15 -1521 ((-628 |#2|) (-1166 |#1|))) (-15 -4035 (|#2| (-1166 |#1|))) (-15 -3020 (|#2| (-1166 |#1|))) (-15 -3225 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -3676 (|#2| |#1|)) (-15 -1819 (|#2| |#1|)) (-15 -2046 (|#2| |#1|)) (-15 -3411 (|#2| |#1|)) (-15 -2853 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -2734 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -3690 ((-1166 (-628 |#2|)) (-1166 |#1|)))) (-342 |#2|) (-157)) (T -341))
+((-3990 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3578 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3597 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-2912 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-4197 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-1340 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-1427 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-1855 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3509 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3868 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-1388 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-2287 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3823 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-3702 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))) (-1548 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-588 (-1166 *4))) (-5 *1 (-341 *3 *4)) (-4 *3 (-342 *4)))))
+(-10 -8 (-15 -4080 ((-1081 |#2|) |#1|)) (-15 -1216 ((-1081 |#2|) |#1|)) (-15 -1548 ((-588 (-1166 |#2|)))) (-15 -1279 ((-3 |#1| "failed") |#1|)) (-15 -3070 ((-3 |#1| "failed") |#1|)) (-15 -3920 ((-3 |#1| "failed") |#1|)) (-15 -3702 ((-108))) (-15 -3823 ((-108))) (-15 -2287 ((-108))) (-15 -1388 ((-108))) (-15 -3868 ((-108))) (-15 -3509 ((-108))) (-15 -1855 ((-108))) (-15 -1427 ((-108))) (-15 -1340 ((-108))) (-15 -4197 ((-108))) (-15 -2912 ((-108))) (-15 -3597 ((-108))) (-15 -3578 ((-108))) (-15 -3990 ((-108))) (-15 -3767 ((-1081 |#2|) |#1|)) (-15 -2724 ((-1081 |#2|) |#1|)) (-15 -3531 ((-628 |#2|) (-1166 |#1|))) (-15 -1521 ((-628 |#2|) (-1166 |#1|))) (-15 -4035 (|#2| (-1166 |#1|))) (-15 -3020 (|#2| (-1166 |#1|))) (-15 -3225 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -3676 (|#2| |#1|)) (-15 -1819 (|#2| |#1|)) (-15 -2046 (|#2| |#1|)) (-15 -3411 (|#2| |#1|)) (-15 -2853 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -2734 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -3690 ((-1166 (-628 |#2|)) (-1166 |#1|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2541 (((-3 $ "failed")) 37 (|has| |#1| (-514)))) (-2265 (((-3 $ "failed") $ $) 19)) (-3690 (((-1166 (-628 |#1|)) (-1166 $)) 78)) (-2726 (((-1166 $)) 81)) (-3367 (($) 17 T CONST)) (-2722 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) 40 (|has| |#1| (-514)))) (-3050 (((-3 $ "failed")) 38 (|has| |#1| (-514)))) (-3531 (((-628 |#1|) (-1166 $)) 65)) (-2046 ((|#1| $) 74)) (-2853 (((-628 |#1|) $ (-1166 $)) 76)) (-1279 (((-3 $ "failed") $) 45 (|has| |#1| (-514)))) (-2698 (($ $ (-850)) 28)) (-3676 ((|#1| $) 72)) (-4080 (((-1081 |#1|) $) 42 (|has| |#1| (-514)))) (-4035 ((|#1| (-1166 $)) 67)) (-3767 (((-1081 |#1|) $) 63)) (-1340 (((-108)) 57)) (-3225 (($ (-1166 |#1|) (-1166 $)) 69)) (-3920 (((-3 $ "failed") $) 47 (|has| |#1| (-514)))) (-1692 (((-850)) 80)) (-2134 (((-108)) 54)) (-2870 (($ $ (-850)) 33)) (-2287 (((-108)) 50)) (-3702 (((-108)) 48)) (-3868 (((-108)) 52)) (-2439 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) 41 (|has| |#1| (-514)))) (-3351 (((-3 $ "failed")) 39 (|has| |#1| (-514)))) (-1521 (((-628 |#1|) (-1166 $)) 66)) (-3411 ((|#1| $) 75)) (-2734 (((-628 |#1|) $ (-1166 $)) 77)) (-3070 (((-3 $ "failed") $) 46 (|has| |#1| (-514)))) (-1946 (($ $ (-850)) 29)) (-1819 ((|#1| $) 73)) (-1216 (((-1081 |#1|) $) 43 (|has| |#1| (-514)))) (-3020 ((|#1| (-1166 $)) 68)) (-2724 (((-1081 |#1|) $) 64)) (-4197 (((-108)) 58)) (-2311 (((-1068) $) 9)) (-3823 (((-108)) 49)) (-1388 (((-108)) 51)) (-3509 (((-108)) 53)) (-4174 (((-1032) $) 10)) (-1427 (((-108)) 56)) (-3510 (((-1166 |#1|) $ (-1166 $)) 71) (((-628 |#1|) (-1166 $) (-1166 $)) 70)) (-1777 (((-588 (-881 |#1|)) (-1166 $)) 79)) (-1596 (($ $ $) 25)) (-3990 (((-108)) 62)) (-2217 (((-792) $) 11)) (-1548 (((-588 (-1166 |#1|))) 44 (|has| |#1| (-514)))) (-2185 (($ $ $ $) 26)) (-3597 (((-108)) 60)) (-1369 (($ $ $) 24)) (-3578 (((-108)) 61)) (-2912 (((-108)) 59)) (-1855 (((-108)) 55)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 30)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
(((-342 |#1|) (-1197) (-157)) (T -342))
-((-1681 (*1 *2) (-12 (-4 *3 (-157)) (-5 *2 (-1166 *1)) (-4 *1 (-342 *3)))) (-3166 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-850)))) (-2656 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-588 (-881 *4))))) (-1588 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-1166 (-628 *4))))) (-4142 (*1 *2 *1 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-628 *4)))) (-2828 (*1 *2 *1 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-628 *4)))) (-1546 (*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))) (-3594 (*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))) (-1505 (*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))) (-3076 (*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))) (-3677 (*1 *2 *1 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-1166 *4)))) (-3677 (*1 *2 *3 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-628 *4)))) (-3766 (*1 *1 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1166 *1)) (-4 *4 (-157)) (-4 *1 (-342 *4)))) (-2475 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *2)) (-4 *2 (-157)))) (-2975 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *2)) (-4 *2 (-157)))) (-1943 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-628 *4)))) (-1771 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-628 *4)))) (-2302 (*1 *2 *1) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-1081 *3)))) (-4014 (*1 *2 *1) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-1081 *3)))) (-4034 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3065 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-2928 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3856 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3003 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-2878 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-2889 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3877 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-2666 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3055 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-2678 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3026 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-1427 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3710 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-2552 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-2682 (*1 *1 *1) (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-157)) (-4 *2 (-514)))) (-2231 (*1 *1 *1) (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-157)) (-4 *2 (-514)))) (-3637 (*1 *1 *1) (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-157)) (-4 *2 (-514)))) (-2901 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-4 *3 (-514)) (-5 *2 (-588 (-1166 *3))))) (-3630 (*1 *2 *1) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-4 *3 (-514)) (-5 *2 (-1081 *3)))) (-2992 (*1 *2 *1) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-4 *3 (-514)) (-5 *2 (-1081 *3)))) (-3505 (*1 *2) (|partial| -12 (-4 *3 (-514)) (-4 *3 (-157)) (-5 *2 (-2 (|:| |particular| *1) (|:| -3855 (-588 *1)))) (-4 *1 (-342 *3)))) (-1868 (*1 *2) (|partial| -12 (-4 *3 (-514)) (-4 *3 (-157)) (-5 *2 (-2 (|:| |particular| *1) (|:| -3855 (-588 *1)))) (-4 *1 (-342 *3)))) (-2007 (*1 *1) (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-514)) (-4 *2 (-157)))) (-3130 (*1 *1) (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-514)) (-4 *2 (-157)))) (-3210 (*1 *1) (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-514)) (-4 *2 (-157)))))
-(-13 (-682 |t#1|) (-10 -8 (-15 -1681 ((-1166 $))) (-15 -3166 ((-850))) (-15 -2656 ((-588 (-881 |t#1|)) (-1166 $))) (-15 -1588 ((-1166 (-628 |t#1|)) (-1166 $))) (-15 -4142 ((-628 |t#1|) $ (-1166 $))) (-15 -2828 ((-628 |t#1|) $ (-1166 $))) (-15 -1546 (|t#1| $)) (-15 -3594 (|t#1| $)) (-15 -1505 (|t#1| $)) (-15 -3076 (|t#1| $)) (-15 -3677 ((-1166 |t#1|) $ (-1166 $))) (-15 -3677 ((-628 |t#1|) (-1166 $) (-1166 $))) (-15 -3766 ($ (-1166 |t#1|) (-1166 $))) (-15 -2475 (|t#1| (-1166 $))) (-15 -2975 (|t#1| (-1166 $))) (-15 -1943 ((-628 |t#1|) (-1166 $))) (-15 -1771 ((-628 |t#1|) (-1166 $))) (-15 -2302 ((-1081 |t#1|) $)) (-15 -4014 ((-1081 |t#1|) $)) (-15 -4034 ((-108))) (-15 -3065 ((-108))) (-15 -2928 ((-108))) (-15 -3856 ((-108))) (-15 -3003 ((-108))) (-15 -2878 ((-108))) (-15 -2889 ((-108))) (-15 -3877 ((-108))) (-15 -2666 ((-108))) (-15 -3055 ((-108))) (-15 -2678 ((-108))) (-15 -3026 ((-108))) (-15 -1427 ((-108))) (-15 -3710 ((-108))) (-15 -2552 ((-108))) (IF (|has| |t#1| (-514)) (PROGN (-15 -2682 ((-3 $ "failed") $)) (-15 -2231 ((-3 $ "failed") $)) (-15 -3637 ((-3 $ "failed") $)) (-15 -2901 ((-588 (-1166 |t#1|)))) (-15 -3630 ((-1081 |t#1|) $)) (-15 -2992 ((-1081 |t#1|) $)) (-15 -3505 ((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed"))) (-15 -1868 ((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed"))) (-15 -2007 ((-3 $ "failed"))) (-15 -3130 ((-3 $ "failed"))) (-15 -3210 ((-3 $ "failed"))) (-6 -4235)) |%noBranch|)))
+((-2726 (*1 *2) (-12 (-4 *3 (-157)) (-5 *2 (-1166 *1)) (-4 *1 (-342 *3)))) (-1692 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-850)))) (-1777 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-588 (-881 *4))))) (-3690 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-1166 (-628 *4))))) (-2734 (*1 *2 *1 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-628 *4)))) (-2853 (*1 *2 *1 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-628 *4)))) (-3411 (*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))) (-2046 (*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))) (-1819 (*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))) (-3676 (*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))) (-3510 (*1 *2 *1 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-1166 *4)))) (-3510 (*1 *2 *3 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-628 *4)))) (-3225 (*1 *1 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1166 *1)) (-4 *4 (-157)) (-4 *1 (-342 *4)))) (-3020 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *2)) (-4 *2 (-157)))) (-4035 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *2)) (-4 *2 (-157)))) (-1521 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-628 *4)))) (-3531 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157)) (-5 *2 (-628 *4)))) (-2724 (*1 *2 *1) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-1081 *3)))) (-3767 (*1 *2 *1) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-1081 *3)))) (-3990 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3578 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3597 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-2912 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-4197 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-1340 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-1427 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-1855 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-2134 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3509 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3868 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-1388 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-2287 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3823 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3702 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))) (-3920 (*1 *1 *1) (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-157)) (-4 *2 (-514)))) (-3070 (*1 *1 *1) (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-157)) (-4 *2 (-514)))) (-1279 (*1 *1 *1) (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-157)) (-4 *2 (-514)))) (-1548 (*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-4 *3 (-514)) (-5 *2 (-588 (-1166 *3))))) (-1216 (*1 *2 *1) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-4 *3 (-514)) (-5 *2 (-1081 *3)))) (-4080 (*1 *2 *1) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-4 *3 (-514)) (-5 *2 (-1081 *3)))) (-2439 (*1 *2) (|partial| -12 (-4 *3 (-514)) (-4 *3 (-157)) (-5 *2 (-2 (|:| |particular| *1) (|:| -2905 (-588 *1)))) (-4 *1 (-342 *3)))) (-2722 (*1 *2) (|partial| -12 (-4 *3 (-514)) (-4 *3 (-157)) (-5 *2 (-2 (|:| |particular| *1) (|:| -2905 (-588 *1)))) (-4 *1 (-342 *3)))) (-3351 (*1 *1) (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-514)) (-4 *2 (-157)))) (-3050 (*1 *1) (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-514)) (-4 *2 (-157)))) (-2541 (*1 *1) (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-514)) (-4 *2 (-157)))))
+(-13 (-682 |t#1|) (-10 -8 (-15 -2726 ((-1166 $))) (-15 -1692 ((-850))) (-15 -1777 ((-588 (-881 |t#1|)) (-1166 $))) (-15 -3690 ((-1166 (-628 |t#1|)) (-1166 $))) (-15 -2734 ((-628 |t#1|) $ (-1166 $))) (-15 -2853 ((-628 |t#1|) $ (-1166 $))) (-15 -3411 (|t#1| $)) (-15 -2046 (|t#1| $)) (-15 -1819 (|t#1| $)) (-15 -3676 (|t#1| $)) (-15 -3510 ((-1166 |t#1|) $ (-1166 $))) (-15 -3510 ((-628 |t#1|) (-1166 $) (-1166 $))) (-15 -3225 ($ (-1166 |t#1|) (-1166 $))) (-15 -3020 (|t#1| (-1166 $))) (-15 -4035 (|t#1| (-1166 $))) (-15 -1521 ((-628 |t#1|) (-1166 $))) (-15 -3531 ((-628 |t#1|) (-1166 $))) (-15 -2724 ((-1081 |t#1|) $)) (-15 -3767 ((-1081 |t#1|) $)) (-15 -3990 ((-108))) (-15 -3578 ((-108))) (-15 -3597 ((-108))) (-15 -2912 ((-108))) (-15 -4197 ((-108))) (-15 -1340 ((-108))) (-15 -1427 ((-108))) (-15 -1855 ((-108))) (-15 -2134 ((-108))) (-15 -3509 ((-108))) (-15 -3868 ((-108))) (-15 -1388 ((-108))) (-15 -2287 ((-108))) (-15 -3823 ((-108))) (-15 -3702 ((-108))) (IF (|has| |t#1| (-514)) (PROGN (-15 -3920 ((-3 $ "failed") $)) (-15 -3070 ((-3 $ "failed") $)) (-15 -1279 ((-3 $ "failed") $)) (-15 -1548 ((-588 (-1166 |t#1|)))) (-15 -1216 ((-1081 |t#1|) $)) (-15 -4080 ((-1081 |t#1|) $)) (-15 -2439 ((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed"))) (-15 -2722 ((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed"))) (-15 -3351 ((-3 $ "failed"))) (-15 -3050 ((-3 $ "failed"))) (-15 -2541 ((-3 $ "failed"))) (-6 -4235)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#1|) . T) ((-655 |#1|) . T) ((-658) . T) ((-682 |#1|) . T) ((-699) . T) ((-977 |#1|) . T) ((-1014) . T))
-((-1416 (((-108) $ $) 7)) (-1629 (((-708)) 16)) (-3255 (($) 13)) (-2120 (((-850) $) 14)) (-2385 (((-1068) $) 9)) (-2717 (($ (-850)) 15)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-1531 (((-108) $ $) 6)))
+((-1419 (((-108) $ $) 7)) (-1685 (((-708)) 16)) (-3344 (($) 13)) (-1475 (((-850) $) 14)) (-2311 (((-1068) $) 9)) (-2882 (($ (-850)) 15)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-1562 (((-108) $ $) 6)))
(((-343) (-1197)) (T -343))
-((-1629 (*1 *2) (-12 (-4 *1 (-343)) (-5 *2 (-708)))) (-2717 (*1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-343)))) (-2120 (*1 *2 *1) (-12 (-4 *1 (-343)) (-5 *2 (-850)))) (-3255 (*1 *1) (-4 *1 (-343))))
-(-13 (-1014) (-10 -8 (-15 -1629 ((-708))) (-15 -2717 ($ (-850))) (-15 -2120 ((-850) $)) (-15 -3255 ($))))
+((-1685 (*1 *2) (-12 (-4 *1 (-343)) (-5 *2 (-708)))) (-2882 (*1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-343)))) (-1475 (*1 *2 *1) (-12 (-4 *1 (-343)) (-5 *2 (-850)))) (-3344 (*1 *1) (-4 *1 (-343))))
+(-13 (-1014) (-10 -8 (-15 -1685 ((-708))) (-15 -2882 ($ (-850))) (-15 -1475 ((-850) $)) (-15 -3344 ($))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-3174 (((-628 |#2|) (-1166 $)) 40)) (-3766 (($ (-1166 |#2|) (-1166 $)) 35)) (-2109 (((-628 |#2|) $ (-1166 $)) 43)) (-2769 ((|#2| (-1166 $)) 13)) (-3677 (((-1166 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) (-1166 $) (-1166 $)) 25)))
-(((-344 |#1| |#2| |#3|) (-10 -8 (-15 -3174 ((-628 |#2|) (-1166 |#1|))) (-15 -2769 (|#2| (-1166 |#1|))) (-15 -3766 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -2109 ((-628 |#2|) |#1| (-1166 |#1|)))) (-345 |#2| |#3|) (-157) (-1142 |#2|)) (T -344))
+((-3356 (((-628 |#2|) (-1166 $)) 40)) (-3225 (($ (-1166 |#2|) (-1166 $)) 35)) (-1359 (((-628 |#2|) $ (-1166 $)) 43)) (-1615 ((|#2| (-1166 $)) 13)) (-3510 (((-1166 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) (-1166 $) (-1166 $)) 25)))
+(((-344 |#1| |#2| |#3|) (-10 -8 (-15 -3356 ((-628 |#2|) (-1166 |#1|))) (-15 -1615 (|#2| (-1166 |#1|))) (-15 -3225 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -1359 ((-628 |#2|) |#1| (-1166 |#1|)))) (-345 |#2| |#3|) (-157) (-1142 |#2|)) (T -344))
NIL
-(-10 -8 (-15 -3174 ((-628 |#2|) (-1166 |#1|))) (-15 -2769 (|#2| (-1166 |#1|))) (-15 -3766 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -2109 ((-628 |#2|) |#1| (-1166 |#1|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-3174 (((-628 |#1|) (-1166 $)) 46)) (-1865 ((|#1| $) 52)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-3766 (($ (-1166 |#1|) (-1166 $)) 48)) (-2109 (((-628 |#1|) $ (-1166 $)) 53)) (-2682 (((-3 $ "failed") $) 34)) (-3166 (((-850)) 54)) (-2782 (((-108) $) 31)) (-2100 ((|#1| $) 51)) (-1712 ((|#2| $) 44 (|has| |#1| (-338)))) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2769 ((|#1| (-1166 $)) 47)) (-3677 (((-1166 |#1|) $ (-1166 $)) 50) (((-628 |#1|) (-1166 $) (-1166 $)) 49)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37)) (-2143 (((-3 $ "failed") $) 43 (|has| |#1| (-133)))) (-2051 ((|#2| $) 45)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
+(-10 -8 (-15 -3356 ((-628 |#2|) (-1166 |#1|))) (-15 -1615 (|#2| (-1166 |#1|))) (-15 -3225 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -1359 ((-628 |#2|) |#1| (-1166 |#1|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3356 (((-628 |#1|) (-1166 $)) 46)) (-1945 ((|#1| $) 52)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3225 (($ (-1166 |#1|) (-1166 $)) 48)) (-1359 (((-628 |#1|) $ (-1166 $)) 53)) (-3920 (((-3 $ "failed") $) 34)) (-1692 (((-850)) 54)) (-2859 (((-108) $) 31)) (-1269 ((|#1| $) 51)) (-4199 ((|#2| $) 44 (|has| |#1| (-338)))) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1615 ((|#1| (-1166 $)) 47)) (-3510 (((-1166 |#1|) $ (-1166 $)) 50) (((-628 |#1|) (-1166 $) (-1166 $)) 49)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37)) (-3040 (((-3 $ "failed") $) 43 (|has| |#1| (-133)))) (-2645 ((|#2| $) 45)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
(((-345 |#1| |#2|) (-1197) (-157) (-1142 |t#1|)) (T -345))
-((-3166 (*1 *2) (-12 (-4 *1 (-345 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-850)))) (-2109 (*1 *2 *1 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *4 *5)) (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-628 *4)))) (-1865 (*1 *2 *1) (-12 (-4 *1 (-345 *2 *3)) (-4 *3 (-1142 *2)) (-4 *2 (-157)))) (-2100 (*1 *2 *1) (-12 (-4 *1 (-345 *2 *3)) (-4 *3 (-1142 *2)) (-4 *2 (-157)))) (-3677 (*1 *2 *1 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *4 *5)) (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-1166 *4)))) (-3677 (*1 *2 *3 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *4 *5)) (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-628 *4)))) (-3766 (*1 *1 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1166 *1)) (-4 *4 (-157)) (-4 *1 (-345 *4 *5)) (-4 *5 (-1142 *4)))) (-2769 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *2 *4)) (-4 *4 (-1142 *2)) (-4 *2 (-157)))) (-3174 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *4 *5)) (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-628 *4)))) (-2051 (*1 *2 *1) (-12 (-4 *1 (-345 *3 *2)) (-4 *3 (-157)) (-4 *2 (-1142 *3)))) (-1712 (*1 *2 *1) (-12 (-4 *1 (-345 *3 *2)) (-4 *3 (-157)) (-4 *3 (-338)) (-4 *2 (-1142 *3)))))
-(-13 (-37 |t#1|) (-10 -8 (-15 -3166 ((-850))) (-15 -2109 ((-628 |t#1|) $ (-1166 $))) (-15 -1865 (|t#1| $)) (-15 -2100 (|t#1| $)) (-15 -3677 ((-1166 |t#1|) $ (-1166 $))) (-15 -3677 ((-628 |t#1|) (-1166 $) (-1166 $))) (-15 -3766 ($ (-1166 |t#1|) (-1166 $))) (-15 -2769 (|t#1| (-1166 $))) (-15 -3174 ((-628 |t#1|) (-1166 $))) (-15 -2051 (|t#2| $)) (IF (|has| |t#1| (-338)) (-15 -1712 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|)))
+((-1692 (*1 *2) (-12 (-4 *1 (-345 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-850)))) (-1359 (*1 *2 *1 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *4 *5)) (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-628 *4)))) (-1945 (*1 *2 *1) (-12 (-4 *1 (-345 *2 *3)) (-4 *3 (-1142 *2)) (-4 *2 (-157)))) (-1269 (*1 *2 *1) (-12 (-4 *1 (-345 *2 *3)) (-4 *3 (-1142 *2)) (-4 *2 (-157)))) (-3510 (*1 *2 *1 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *4 *5)) (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-1166 *4)))) (-3510 (*1 *2 *3 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *4 *5)) (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-628 *4)))) (-3225 (*1 *1 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1166 *1)) (-4 *4 (-157)) (-4 *1 (-345 *4 *5)) (-4 *5 (-1142 *4)))) (-1615 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *2 *4)) (-4 *4 (-1142 *2)) (-4 *2 (-157)))) (-3356 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *4 *5)) (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-628 *4)))) (-2645 (*1 *2 *1) (-12 (-4 *1 (-345 *3 *2)) (-4 *3 (-157)) (-4 *2 (-1142 *3)))) (-4199 (*1 *2 *1) (-12 (-4 *1 (-345 *3 *2)) (-4 *3 (-157)) (-4 *3 (-338)) (-4 *2 (-1142 *3)))))
+(-13 (-37 |t#1|) (-10 -8 (-15 -1692 ((-850))) (-15 -1359 ((-628 |t#1|) $ (-1166 $))) (-15 -1945 (|t#1| $)) (-15 -1269 (|t#1| $)) (-15 -3510 ((-1166 |t#1|) $ (-1166 $))) (-15 -3510 ((-628 |t#1|) (-1166 $) (-1166 $))) (-15 -3225 ($ (-1166 |t#1|) (-1166 $))) (-15 -1615 (|t#1| (-1166 $))) (-15 -3356 ((-628 |t#1|) (-1166 $))) (-15 -2645 (|t#2| $)) (IF (|has| |t#1| (-338)) (-15 -4199 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-655 |#1|) . T) ((-664) . T) ((-977 |#1|) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-3690 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 23)) (-3864 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 15)) (-1391 ((|#4| (-1 |#3| |#1|) |#2|) 21)))
-(((-346 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1391 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3864 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3690 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1120) (-348 |#1|) (-1120) (-348 |#3|)) (T -346))
-((-3690 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1120)) (-4 *5 (-1120)) (-4 *2 (-348 *5)) (-5 *1 (-346 *6 *4 *5 *2)) (-4 *4 (-348 *6)))) (-3864 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1120)) (-4 *2 (-1120)) (-5 *1 (-346 *5 *4 *2 *6)) (-4 *4 (-348 *5)) (-4 *6 (-348 *2)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-4 *2 (-348 *6)) (-5 *1 (-346 *5 *4 *6 *2)) (-4 *4 (-348 *5)))))
-(-10 -7 (-15 -1391 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3864 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3690 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-4187 (((-108) (-1 (-108) |#2| |#2|) $) NIL) (((-108) $) 18)) (-3537 (($ (-1 (-108) |#2| |#2|) $) NIL) (($ $) 28)) (-3216 (($ (-1 (-108) |#2| |#2|) $) 27) (($ $) 22)) (-1862 (($ $) 25)) (-3238 (((-522) (-1 (-108) |#2|) $) NIL) (((-522) |#2| $) 11) (((-522) |#2| $ (-522)) NIL)) (-2160 (($ (-1 (-108) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
-(((-347 |#1| |#2|) (-10 -8 (-15 -3537 (|#1| |#1|)) (-15 -3537 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -4187 ((-108) |#1|)) (-15 -3216 (|#1| |#1|)) (-15 -2160 (|#1| |#1| |#1|)) (-15 -3238 ((-522) |#2| |#1| (-522))) (-15 -3238 ((-522) |#2| |#1|)) (-15 -3238 ((-522) (-1 (-108) |#2|) |#1|)) (-15 -4187 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3216 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -1862 (|#1| |#1|)) (-15 -2160 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|))) (-348 |#2|) (-1120)) (T -347))
-NIL
-(-10 -8 (-15 -3537 (|#1| |#1|)) (-15 -3537 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -4187 ((-108) |#1|)) (-15 -3216 (|#1| |#1|)) (-15 -2160 (|#1| |#1| |#1|)) (-15 -3238 ((-522) |#2| |#1| (-522))) (-15 -3238 ((-522) |#2| |#1|)) (-15 -3238 ((-522) (-1 (-108) |#2|) |#1|)) (-15 -4187 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3216 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -1862 (|#1| |#1|)) (-15 -2160 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2679 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-784)))) (-3537 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4239))) (($ $) 88 (-12 (|has| |#1| (-784)) (|has| $ (-6 -4239))))) (-3216 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-784)))) (-4141 (((-108) $ (-708)) 8)) (-2379 ((|#1| $ (-522) |#1|) 52 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 58 (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-3509 (($ $) 90 (|has| $ (-6 -4239)))) (-1862 (($ $) 100)) (-2333 (($ $) 78 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#1| $) 77 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) 51)) (-3238 (((-522) (-1 (-108) |#1|) $) 97) (((-522) |#1| $) 96 (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) 95 (|has| |#1| (-1014)))) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1811 (($ (-708) |#1|) 69)) (-3352 (((-108) $ (-708)) 9)) (-1359 (((-522) $) 43 (|has| (-522) (-784)))) (-2814 (($ $ $) 87 (|has| |#1| (-784)))) (-2160 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 44 (|has| (-522) (-784)))) (-2446 (($ $ $) 86 (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1661 (($ |#1| $ (-522)) 60) (($ $ $ (-522)) 59)) (-3604 (((-588 (-522)) $) 46)) (-1405 (((-108) (-522) $) 47)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2294 ((|#1| $) 42 (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-2602 (($ $ |#1|) 41 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) 48)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ (-522) |#1|) 50) ((|#1| $ (-522)) 49) (($ $ (-1133 (-522))) 63)) (-3696 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1577 (($ $ $ (-522)) 91 (|has| $ (-6 -4239)))) (-2404 (($ $) 13)) (-1431 (((-498) $) 79 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 70)) (-4165 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) 84 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 83 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-1566 (((-108) $ $) 85 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 82 (|has| |#1| (-784)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-3639 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 23)) (-2153 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 15)) (-3810 ((|#4| (-1 |#3| |#1|) |#2|) 21)))
+(((-346 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3810 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2153 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3639 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1120) (-348 |#1|) (-1120) (-348 |#3|)) (T -346))
+((-3639 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1120)) (-4 *5 (-1120)) (-4 *2 (-348 *5)) (-5 *1 (-346 *6 *4 *5 *2)) (-4 *4 (-348 *6)))) (-2153 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1120)) (-4 *2 (-1120)) (-5 *1 (-346 *5 *4 *2 *6)) (-4 *4 (-348 *5)) (-4 *6 (-348 *2)))) (-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-4 *2 (-348 *6)) (-5 *1 (-346 *5 *4 *6 *2)) (-4 *4 (-348 *5)))))
+(-10 -7 (-15 -3810 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2153 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3639 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-1866 (((-108) (-1 (-108) |#2| |#2|) $) NIL) (((-108) $) 18)) (-2806 (($ (-1 (-108) |#2| |#2|) $) NIL) (($ $) 28)) (-3296 (($ (-1 (-108) |#2| |#2|) $) 27) (($ $) 22)) (-1939 (($ $) 25)) (-3314 (((-522) (-1 (-108) |#2|) $) NIL) (((-522) |#2| $) 11) (((-522) |#2| $ (-522)) NIL)) (-3164 (($ (-1 (-108) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
+(((-347 |#1| |#2|) (-10 -8 (-15 -2806 (|#1| |#1|)) (-15 -2806 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -1866 ((-108) |#1|)) (-15 -3296 (|#1| |#1|)) (-15 -3164 (|#1| |#1| |#1|)) (-15 -3314 ((-522) |#2| |#1| (-522))) (-15 -3314 ((-522) |#2| |#1|)) (-15 -3314 ((-522) (-1 (-108) |#2|) |#1|)) (-15 -1866 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3296 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -1939 (|#1| |#1|)) (-15 -3164 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|))) (-348 |#2|) (-1120)) (T -347))
+NIL
+(-10 -8 (-15 -2806 (|#1| |#1|)) (-15 -2806 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -1866 ((-108) |#1|)) (-15 -3296 (|#1| |#1|)) (-15 -3164 (|#1| |#1| |#1|)) (-15 -3314 ((-522) |#2| |#1| (-522))) (-15 -3314 ((-522) |#2| |#1|)) (-15 -3314 ((-522) (-1 (-108) |#2|) |#1|)) (-15 -1866 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3296 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -1939 (|#1| |#1|)) (-15 -3164 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3883 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-784)))) (-2806 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4239))) (($ $) 88 (-12 (|has| |#1| (-784)) (|has| $ (-6 -4239))))) (-3296 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-784)))) (-2717 (((-108) $ (-708)) 8)) (-2437 ((|#1| $ (-522) |#1|) 52 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 58 (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-2465 (($ $) 90 (|has| $ (-6 -4239)))) (-1939 (($ $) 100)) (-2379 (($ $) 78 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#1| $) 77 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) 51)) (-3314 (((-522) (-1 (-108) |#1|) $) 97) (((-522) |#1| $) 96 (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) 95 (|has| |#1| (-1014)))) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1893 (($ (-708) |#1|) 69)) (-1480 (((-108) $ (-708)) 9)) (-3496 (((-522) $) 43 (|has| (-522) (-784)))) (-1308 (($ $ $) 87 (|has| |#1| (-784)))) (-3164 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 44 (|has| (-522) (-784)))) (-2524 (($ $ $) 86 (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1731 (($ |#1| $ (-522)) 60) (($ $ $ (-522)) 59)) (-2130 (((-588 (-522)) $) 46)) (-2103 (((-108) (-522) $) 47)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2337 ((|#1| $) 42 (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-1972 (($ $ |#1|) 41 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) 48)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ (-522) |#1|) 50) ((|#1| $ (-522)) 49) (($ $ (-1133 (-522))) 63)) (-3835 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3629 (($ $ $ (-522)) 91 (|has| $ (-6 -4239)))) (-2463 (($ $) 13)) (-3873 (((-498) $) 79 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 70)) (-4170 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) 84 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 83 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-1609 (((-108) $ $) 85 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 82 (|has| |#1| (-784)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-348 |#1|) (-1197) (-1120)) (T -348))
-((-2160 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-348 *3)) (-4 *3 (-1120)))) (-1862 (*1 *1 *1) (-12 (-4 *1 (-348 *2)) (-4 *2 (-1120)))) (-3216 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-348 *3)) (-4 *3 (-1120)))) (-4187 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *1 (-348 *4)) (-4 *4 (-1120)) (-5 *2 (-108)))) (-3238 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (-4 *1 (-348 *4)) (-4 *4 (-1120)) (-5 *2 (-522)))) (-3238 (*1 *2 *3 *1) (-12 (-4 *1 (-348 *3)) (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-522)))) (-3238 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-348 *3)) (-4 *3 (-1120)) (-4 *3 (-1014)))) (-2160 (*1 *1 *1 *1) (-12 (-4 *1 (-348 *2)) (-4 *2 (-1120)) (-4 *2 (-784)))) (-3216 (*1 *1 *1) (-12 (-4 *1 (-348 *2)) (-4 *2 (-1120)) (-4 *2 (-784)))) (-4187 (*1 *2 *1) (-12 (-4 *1 (-348 *3)) (-4 *3 (-1120)) (-4 *3 (-784)) (-5 *2 (-108)))) (-1577 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-522)) (|has| *1 (-6 -4239)) (-4 *1 (-348 *3)) (-4 *3 (-1120)))) (-3509 (*1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-348 *2)) (-4 *2 (-1120)))) (-3537 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (|has| *1 (-6 -4239)) (-4 *1 (-348 *3)) (-4 *3 (-1120)))) (-3537 (*1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-348 *2)) (-4 *2 (-1120)) (-4 *2 (-784)))))
-(-13 (-593 |t#1|) (-10 -8 (-6 -4238) (-15 -2160 ($ (-1 (-108) |t#1| |t#1|) $ $)) (-15 -1862 ($ $)) (-15 -3216 ($ (-1 (-108) |t#1| |t#1|) $)) (-15 -4187 ((-108) (-1 (-108) |t#1| |t#1|) $)) (-15 -3238 ((-522) (-1 (-108) |t#1|) $)) (IF (|has| |t#1| (-1014)) (PROGN (-15 -3238 ((-522) |t#1| $)) (-15 -3238 ((-522) |t#1| $ (-522)))) |%noBranch|) (IF (|has| |t#1| (-784)) (PROGN (-6 (-784)) (-15 -2160 ($ $ $)) (-15 -3216 ($ $)) (-15 -4187 ((-108) $))) |%noBranch|) (IF (|has| $ (-6 -4239)) (PROGN (-15 -1577 ($ $ $ (-522))) (-15 -3509 ($ $)) (-15 -3537 ($ (-1 (-108) |t#1| |t#1|) $)) (IF (|has| |t#1| (-784)) (-15 -3537 ($ $)) |%noBranch|)) |%noBranch|)))
-(((-33) . T) ((-97) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-784) |has| |#1| (-784)) ((-1014) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-1120) . T))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4106 (((-588 |#1|) $) 32)) (-2613 (($ $ (-708)) 33)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-1200 (((-1188 |#1| |#2|) (-1188 |#1| |#2|) $) 36)) (-1225 (($ $) 34)) (-2987 (((-1188 |#1| |#2|) (-1188 |#1| |#2|) $) 37)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2289 (($ $ |#1| $) 31) (($ $ (-588 |#1|) (-588 $)) 30)) (-2793 (((-708) $) 38)) (-2201 (($ $ $) 29)) (-2190 (((-792) $) 11) (($ |#1|) 41) (((-1179 |#1| |#2|) $) 40) (((-1188 |#1| |#2|) $) 39)) (-2977 ((|#2| (-1188 |#1| |#2|) $) 42)) (-3566 (($) 18 T CONST)) (-2131 (($ (-613 |#1|)) 35)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#2|) 28 (|has| |#2| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#2| $) 23) (($ $ |#2|) 26)))
+((-3164 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-348 *3)) (-4 *3 (-1120)))) (-1939 (*1 *1 *1) (-12 (-4 *1 (-348 *2)) (-4 *2 (-1120)))) (-3296 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-348 *3)) (-4 *3 (-1120)))) (-1866 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *1 (-348 *4)) (-4 *4 (-1120)) (-5 *2 (-108)))) (-3314 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (-4 *1 (-348 *4)) (-4 *4 (-1120)) (-5 *2 (-522)))) (-3314 (*1 *2 *3 *1) (-12 (-4 *1 (-348 *3)) (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-522)))) (-3314 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-348 *3)) (-4 *3 (-1120)) (-4 *3 (-1014)))) (-3164 (*1 *1 *1 *1) (-12 (-4 *1 (-348 *2)) (-4 *2 (-1120)) (-4 *2 (-784)))) (-3296 (*1 *1 *1) (-12 (-4 *1 (-348 *2)) (-4 *2 (-1120)) (-4 *2 (-784)))) (-1866 (*1 *2 *1) (-12 (-4 *1 (-348 *3)) (-4 *3 (-1120)) (-4 *3 (-784)) (-5 *2 (-108)))) (-3629 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-522)) (|has| *1 (-6 -4239)) (-4 *1 (-348 *3)) (-4 *3 (-1120)))) (-2465 (*1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-348 *2)) (-4 *2 (-1120)))) (-2806 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3 *3)) (|has| *1 (-6 -4239)) (-4 *1 (-348 *3)) (-4 *3 (-1120)))) (-2806 (*1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-348 *2)) (-4 *2 (-1120)) (-4 *2 (-784)))))
+(-13 (-593 |t#1|) (-10 -8 (-6 -4238) (-15 -3164 ($ (-1 (-108) |t#1| |t#1|) $ $)) (-15 -1939 ($ $)) (-15 -3296 ($ (-1 (-108) |t#1| |t#1|) $)) (-15 -1866 ((-108) (-1 (-108) |t#1| |t#1|) $)) (-15 -3314 ((-522) (-1 (-108) |t#1|) $)) (IF (|has| |t#1| (-1014)) (PROGN (-15 -3314 ((-522) |t#1| $)) (-15 -3314 ((-522) |t#1| $ (-522)))) |%noBranch|) (IF (|has| |t#1| (-784)) (PROGN (-6 (-784)) (-15 -3164 ($ $ $)) (-15 -3296 ($ $)) (-15 -1866 ((-108) $))) |%noBranch|) (IF (|has| $ (-6 -4239)) (PROGN (-15 -3629 ($ $ $ (-522))) (-15 -2465 ($ $)) (-15 -2806 ($ (-1 (-108) |t#1| |t#1|) $)) (IF (|has| |t#1| (-784)) (-15 -2806 ($ $)) |%noBranch|)) |%noBranch|)))
+(((-33) . T) ((-97) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-784) |has| |#1| (-784)) ((-1014) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-1120) . T))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-4127 (((-588 |#1|) $) 32)) (-3331 (($ $ (-708)) 33)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-1745 (((-1188 |#1| |#2|) (-1188 |#1| |#2|) $) 36)) (-2182 (($ $) 34)) (-4038 (((-1188 |#1| |#2|) (-1188 |#1| |#2|) $) 37)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2330 (($ $ |#1| $) 31) (($ $ (-588 |#1|) (-588 $)) 30)) (-2487 (((-708) $) 38)) (-2227 (($ $ $) 29)) (-2217 (((-792) $) 11) (($ |#1|) 41) (((-1179 |#1| |#2|) $) 40) (((-1188 |#1| |#2|) $) 39)) (-3112 ((|#2| (-1188 |#1| |#2|) $) 42)) (-3697 (($) 18 T CONST)) (-1612 (($ (-613 |#1|)) 35)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#2|) 28 (|has| |#2| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#2| $) 23) (($ $ |#2|) 26)))
(((-349 |#1| |#2|) (-1197) (-784) (-157)) (T -349))
-((-2977 (*1 *2 *3 *1) (-12 (-5 *3 (-1188 *4 *2)) (-4 *1 (-349 *4 *2)) (-4 *4 (-784)) (-4 *2 (-157)))) (-2190 (*1 *1 *2) (-12 (-4 *1 (-349 *2 *3)) (-4 *2 (-784)) (-4 *3 (-157)))) (-2190 (*1 *2 *1) (-12 (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)) (-5 *2 (-1179 *3 *4)))) (-2190 (*1 *2 *1) (-12 (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)) (-5 *2 (-1188 *3 *4)))) (-2793 (*1 *2 *1) (-12 (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)) (-5 *2 (-708)))) (-2987 (*1 *2 *2 *1) (-12 (-5 *2 (-1188 *3 *4)) (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-1200 (*1 *2 *2 *1) (-12 (-5 *2 (-1188 *3 *4)) (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-2131 (*1 *1 *2) (-12 (-5 *2 (-613 *3)) (-4 *3 (-784)) (-4 *1 (-349 *3 *4)) (-4 *4 (-157)))) (-1225 (*1 *1 *1) (-12 (-4 *1 (-349 *2 *3)) (-4 *2 (-784)) (-4 *3 (-157)))) (-2613 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-4106 (*1 *2 *1) (-12 (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)) (-5 *2 (-588 *3)))) (-2289 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-349 *2 *3)) (-4 *2 (-784)) (-4 *3 (-157)))) (-2289 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *4)) (-5 *3 (-588 *1)) (-4 *1 (-349 *4 *5)) (-4 *4 (-784)) (-4 *5 (-157)))))
-(-13 (-579 |t#2|) (-10 -8 (-15 -2977 (|t#2| (-1188 |t#1| |t#2|) $)) (-15 -2190 ($ |t#1|)) (-15 -2190 ((-1179 |t#1| |t#2|) $)) (-15 -2190 ((-1188 |t#1| |t#2|) $)) (-15 -2793 ((-708) $)) (-15 -2987 ((-1188 |t#1| |t#2|) (-1188 |t#1| |t#2|) $)) (-15 -1200 ((-1188 |t#1| |t#2|) (-1188 |t#1| |t#2|) $)) (-15 -2131 ($ (-613 |t#1|))) (-15 -1225 ($ $)) (-15 -2613 ($ $ (-708))) (-15 -4106 ((-588 |t#1|) $)) (-15 -2289 ($ $ |t#1| $)) (-15 -2289 ($ $ (-588 |t#1|) (-588 $)))))
+((-3112 (*1 *2 *3 *1) (-12 (-5 *3 (-1188 *4 *2)) (-4 *1 (-349 *4 *2)) (-4 *4 (-784)) (-4 *2 (-157)))) (-2217 (*1 *1 *2) (-12 (-4 *1 (-349 *2 *3)) (-4 *2 (-784)) (-4 *3 (-157)))) (-2217 (*1 *2 *1) (-12 (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)) (-5 *2 (-1179 *3 *4)))) (-2217 (*1 *2 *1) (-12 (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)) (-5 *2 (-1188 *3 *4)))) (-2487 (*1 *2 *1) (-12 (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)) (-5 *2 (-708)))) (-4038 (*1 *2 *2 *1) (-12 (-5 *2 (-1188 *3 *4)) (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-1745 (*1 *2 *2 *1) (-12 (-5 *2 (-1188 *3 *4)) (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-1612 (*1 *1 *2) (-12 (-5 *2 (-613 *3)) (-4 *3 (-784)) (-4 *1 (-349 *3 *4)) (-4 *4 (-157)))) (-2182 (*1 *1 *1) (-12 (-4 *1 (-349 *2 *3)) (-4 *2 (-784)) (-4 *3 (-157)))) (-3331 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-4127 (*1 *2 *1) (-12 (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)) (-5 *2 (-588 *3)))) (-2330 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-349 *2 *3)) (-4 *2 (-784)) (-4 *3 (-157)))) (-2330 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *4)) (-5 *3 (-588 *1)) (-4 *1 (-349 *4 *5)) (-4 *4 (-784)) (-4 *5 (-157)))))
+(-13 (-579 |t#2|) (-10 -8 (-15 -3112 (|t#2| (-1188 |t#1| |t#2|) $)) (-15 -2217 ($ |t#1|)) (-15 -2217 ((-1179 |t#1| |t#2|) $)) (-15 -2217 ((-1188 |t#1| |t#2|) $)) (-15 -2487 ((-708) $)) (-15 -4038 ((-1188 |t#1| |t#2|) (-1188 |t#1| |t#2|) $)) (-15 -1745 ((-1188 |t#1| |t#2|) (-1188 |t#1| |t#2|) $)) (-15 -1612 ($ (-613 |t#1|))) (-15 -2182 ($ $)) (-15 -3331 ($ $ (-708))) (-15 -4127 ((-588 |t#1|) $)) (-15 -2330 ($ $ |t#1| $)) (-15 -2330 ($ $ (-588 |t#1|) (-588 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#2| |#2|) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#2|) . T) ((-579 |#2|) . T) ((-655 |#2|) . T) ((-977 |#2|) . T) ((-1014) . T))
-((-3834 ((|#2| (-1 (-108) |#1| |#1|) |#2|) 24)) (-1618 ((|#2| (-1 (-108) |#1| |#1|) |#2|) 12)) (-2055 ((|#2| (-1 (-108) |#1| |#1|) |#2|) 21)))
-(((-350 |#1| |#2|) (-10 -7 (-15 -1618 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -2055 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -3834 (|#2| (-1 (-108) |#1| |#1|) |#2|))) (-1120) (-13 (-348 |#1|) (-10 -7 (-6 -4239)))) (T -350))
-((-3834 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-350 *4 *2)) (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))))) (-2055 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-350 *4 *2)) (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))))) (-1618 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-350 *4 *2)) (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))))))
-(-10 -7 (-15 -1618 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -2055 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -3834 (|#2| (-1 (-108) |#1| |#1|) |#2|)))
-((-2096 (((-628 |#2|) (-628 $)) NIL) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 19) (((-628 (-522)) (-628 $)) 13)))
-(((-351 |#1| |#2|) (-10 -8 (-15 -2096 ((-628 (-522)) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-628 |#2|) (-628 |#1|)))) (-352 |#2|) (-971)) (T -351))
-NIL
-(-10 -8 (-15 -2096 ((-628 (-522)) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-628 |#2|) (-628 |#1|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2096 (((-628 |#1|) (-628 $)) 36) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 35) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 43 (|has| |#1| (-584 (-522)))) (((-628 (-522)) (-628 $)) 42 (|has| |#1| (-584 (-522))))) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ (-522)) 28)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-2768 ((|#2| (-1 (-108) |#1| |#1|) |#2|) 24)) (-3911 ((|#2| (-1 (-108) |#1| |#1|) |#2|) 12)) (-2696 ((|#2| (-1 (-108) |#1| |#1|) |#2|) 21)))
+(((-350 |#1| |#2|) (-10 -7 (-15 -3911 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -2696 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -2768 (|#2| (-1 (-108) |#1| |#1|) |#2|))) (-1120) (-13 (-348 |#1|) (-10 -7 (-6 -4239)))) (T -350))
+((-2768 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-350 *4 *2)) (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))))) (-2696 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-350 *4 *2)) (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))))) (-3911 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-350 *4 *2)) (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))))))
+(-10 -7 (-15 -3911 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -2696 (|#2| (-1 (-108) |#1| |#1|) |#2|)) (-15 -2768 (|#2| (-1 (-108) |#1| |#1|) |#2|)))
+((-1226 (((-628 |#2|) (-628 $)) NIL) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 19) (((-628 (-522)) (-628 $)) 13)))
+(((-351 |#1| |#2|) (-10 -8 (-15 -1226 ((-628 (-522)) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-628 |#2|) (-628 |#1|)))) (-352 |#2|) (-971)) (T -351))
+NIL
+(-10 -8 (-15 -1226 ((-628 (-522)) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-628 |#2|) (-628 |#1|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-1226 (((-628 |#1|) (-628 $)) 36) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 35) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 43 (|has| |#1| (-584 (-522)))) (((-628 (-522)) (-628 $)) 42 (|has| |#1| (-584 (-522))))) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ (-522)) 28)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-352 |#1|) (-1197) (-971)) (T -352))
NIL
(-13 (-584 |t#1|) (-10 -7 (IF (|has| |t#1| (-584 (-522))) (-6 (-584 (-522))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-664) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-2669 (((-588 (-270 (-881 (-154 |#1|)))) (-270 (-382 (-881 (-154 (-522))))) |#1|) 50) (((-588 (-270 (-881 (-154 |#1|)))) (-382 (-881 (-154 (-522)))) |#1|) 49) (((-588 (-588 (-270 (-881 (-154 |#1|))))) (-588 (-270 (-382 (-881 (-154 (-522)))))) |#1|) 45) (((-588 (-588 (-270 (-881 (-154 |#1|))))) (-588 (-382 (-881 (-154 (-522))))) |#1|) 39)) (-2559 (((-588 (-588 (-154 |#1|))) (-588 (-382 (-881 (-154 (-522))))) (-588 (-1085)) |#1|) 27) (((-588 (-154 |#1|)) (-382 (-881 (-154 (-522)))) |#1|) 15)))
-(((-353 |#1|) (-10 -7 (-15 -2669 ((-588 (-588 (-270 (-881 (-154 |#1|))))) (-588 (-382 (-881 (-154 (-522))))) |#1|)) (-15 -2669 ((-588 (-588 (-270 (-881 (-154 |#1|))))) (-588 (-270 (-382 (-881 (-154 (-522)))))) |#1|)) (-15 -2669 ((-588 (-270 (-881 (-154 |#1|)))) (-382 (-881 (-154 (-522)))) |#1|)) (-15 -2669 ((-588 (-270 (-881 (-154 |#1|)))) (-270 (-382 (-881 (-154 (-522))))) |#1|)) (-15 -2559 ((-588 (-154 |#1|)) (-382 (-881 (-154 (-522)))) |#1|)) (-15 -2559 ((-588 (-588 (-154 |#1|))) (-588 (-382 (-881 (-154 (-522))))) (-588 (-1085)) |#1|))) (-13 (-338) (-782))) (T -353))
-((-2559 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 (-382 (-881 (-154 (-522)))))) (-5 *4 (-588 (-1085))) (-5 *2 (-588 (-588 (-154 *5)))) (-5 *1 (-353 *5)) (-4 *5 (-13 (-338) (-782))))) (-2559 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 (-154 (-522))))) (-5 *2 (-588 (-154 *4))) (-5 *1 (-353 *4)) (-4 *4 (-13 (-338) (-782))))) (-2669 (*1 *2 *3 *4) (-12 (-5 *3 (-270 (-382 (-881 (-154 (-522)))))) (-5 *2 (-588 (-270 (-881 (-154 *4))))) (-5 *1 (-353 *4)) (-4 *4 (-13 (-338) (-782))))) (-2669 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 (-154 (-522))))) (-5 *2 (-588 (-270 (-881 (-154 *4))))) (-5 *1 (-353 *4)) (-4 *4 (-13 (-338) (-782))))) (-2669 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-270 (-382 (-881 (-154 (-522))))))) (-5 *2 (-588 (-588 (-270 (-881 (-154 *4)))))) (-5 *1 (-353 *4)) (-4 *4 (-13 (-338) (-782))))) (-2669 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-382 (-881 (-154 (-522)))))) (-5 *2 (-588 (-588 (-270 (-881 (-154 *4)))))) (-5 *1 (-353 *4)) (-4 *4 (-13 (-338) (-782))))))
-(-10 -7 (-15 -2669 ((-588 (-588 (-270 (-881 (-154 |#1|))))) (-588 (-382 (-881 (-154 (-522))))) |#1|)) (-15 -2669 ((-588 (-588 (-270 (-881 (-154 |#1|))))) (-588 (-270 (-382 (-881 (-154 (-522)))))) |#1|)) (-15 -2669 ((-588 (-270 (-881 (-154 |#1|)))) (-382 (-881 (-154 (-522)))) |#1|)) (-15 -2669 ((-588 (-270 (-881 (-154 |#1|)))) (-270 (-382 (-881 (-154 (-522))))) |#1|)) (-15 -2559 ((-588 (-154 |#1|)) (-382 (-881 (-154 (-522)))) |#1|)) (-15 -2559 ((-588 (-588 (-154 |#1|))) (-588 (-382 (-881 (-154 (-522))))) (-588 (-1085)) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 33)) (-2229 (((-522) $) 55)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-2789 (($ $) 110)) (-2908 (($ $) 82)) (-2772 (($ $) 71)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1929 (($ $) 44)) (-1687 (((-108) $ $) NIL)) (-2884 (($ $) 80)) (-2748 (($ $) 69)) (-1341 (((-522) $) 64)) (-1662 (($ $ (-522)) 62)) (-2930 (($ $) NIL)) (-2794 (($ $) NIL)) (-3175 (($) NIL T CONST)) (-2599 (($ $) 112)) (-1297 (((-3 (-522) "failed") $) 188) (((-3 (-382 (-522)) "failed") $) 184)) (-1484 (((-522) $) 186) (((-382 (-522)) $) 182)) (-2277 (($ $ $) NIL)) (-3382 (((-522) $ $) 102)) (-2682 (((-3 $ "failed") $) 114)) (-4202 (((-382 (-522)) $ (-708)) 189) (((-382 (-522)) $ (-708) (-708)) 181)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-2175 (((-850)) 73) (((-850) (-850)) 98 (|has| $ (-6 -4229)))) (-3687 (((-108) $) 106)) (-2838 (($) 40)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL)) (-3490 (((-1171) (-708)) 151)) (-3002 (((-1171)) 156) (((-1171) (-708)) 157)) (-1923 (((-1171)) 158) (((-1171) (-708)) 159)) (-1803 (((-1171)) 154) (((-1171) (-708)) 155)) (-3714 (((-522) $) 58)) (-2782 (((-108) $) 104)) (-1504 (($ $ (-522)) NIL)) (-2305 (($ $) 48)) (-2100 (($ $) NIL)) (-2556 (((-108) $) 35)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2814 (($ $ $) NIL) (($) NIL (-12 (-2401 (|has| $ (-6 -4221))) (-2401 (|has| $ (-6 -4229)))))) (-2446 (($ $ $) NIL) (($) 99 (-12 (-2401 (|has| $ (-6 -4221))) (-2401 (|has| $ (-6 -4229)))))) (-3357 (((-522) $) 17)) (-3248 (($) 87) (($ $) 92)) (-3167 (($) 91) (($ $) 93)) (-1254 (($ $) 83)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 116)) (-1941 (((-850) (-522)) 43 (|has| $ (-6 -4229)))) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3933 (($ $) 53)) (-3686 (($ $) 109)) (-3071 (($ (-522) (-522)) 107) (($ (-522) (-522) (-850)) 108)) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1400 (((-522) $) 19)) (-3131 (($) 94)) (-3266 (($ $) 79)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2615 (((-850)) 100) (((-850) (-850)) 101 (|has| $ (-6 -4229)))) (-2157 (($ $ (-708)) NIL) (($ $) 115)) (-2349 (((-850) (-522)) 47 (|has| $ (-6 -4229)))) (-1738 (($ $) NIL)) (-2804 (($ $) NIL)) (-2919 (($ $) NIL)) (-2784 (($ $) NIL)) (-2896 (($ $) 81)) (-2761 (($ $) 70)) (-1431 (((-354) $) 174) (((-202) $) 176) (((-821 (-354)) $) NIL) (((-1068) $) 161) (((-498) $) 172) (($ (-202)) 180)) (-2190 (((-792) $) 163) (($ (-522)) 185) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-522)) 185) (($ (-382 (-522))) NIL) (((-202) $) 177)) (-2323 (((-708)) NIL)) (-3025 (($ $) 111)) (-3836 (((-850)) 54) (((-850) (-850)) 66 (|has| $ (-6 -4229)))) (-3355 (((-850)) 103)) (-1759 (($ $) 86)) (-2836 (($ $) 46) (($ $ $) 52)) (-3958 (((-108) $ $) NIL)) (-1745 (($ $) 84)) (-2815 (($ $) 37)) (-1776 (($ $) NIL)) (-2860 (($ $) NIL)) (-3924 (($ $) NIL)) (-2872 (($ $) NIL)) (-1768 (($ $) NIL)) (-2848 (($ $) NIL)) (-1752 (($ $) 85)) (-2825 (($ $) 49)) (-2241 (($ $) 51)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 34 T CONST)) (-3577 (($) 38 T CONST)) (-4149 (((-1068) $) 27) (((-1068) $ (-108)) 29) (((-1171) (-759) $) 30) (((-1171) (-759) $ (-108)) 31)) (-2213 (($ $ (-708)) NIL) (($ $) NIL)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 39)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 42)) (-1620 (($ $ $) 45) (($ $ (-522)) 41)) (-1612 (($ $) 36) (($ $ $) 50)) (-1602 (($ $ $) 61)) (** (($ $ (-850)) 67) (($ $ (-708)) NIL) (($ $ (-522)) 88) (($ $ (-382 (-522))) 125) (($ $ $) 117)) (* (($ (-850) $) 65) (($ (-708) $) NIL) (($ (-522) $) 68) (($ $ $) 60) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
-(((-354) (-13 (-379) (-210) (-563 (-1068)) (-765) (-562 (-202)) (-1106) (-563 (-498)) (-10 -8 (-15 -1620 ($ $ (-522))) (-15 ** ($ $ $)) (-15 -2305 ($ $)) (-15 -3382 ((-522) $ $)) (-15 -1662 ($ $ (-522))) (-15 -4202 ((-382 (-522)) $ (-708))) (-15 -4202 ((-382 (-522)) $ (-708) (-708))) (-15 -3248 ($)) (-15 -3167 ($)) (-15 -3131 ($)) (-15 -2836 ($ $ $)) (-15 -3248 ($ $)) (-15 -3167 ($ $)) (-15 -1431 ($ (-202))) (-15 -1923 ((-1171))) (-15 -1923 ((-1171) (-708))) (-15 -1803 ((-1171))) (-15 -1803 ((-1171) (-708))) (-15 -3002 ((-1171))) (-15 -3002 ((-1171) (-708))) (-15 -3490 ((-1171) (-708))) (-6 -4229) (-6 -4221)))) (T -354))
-((** (*1 *1 *1 *1) (-5 *1 (-354))) (-1620 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-354)))) (-2305 (*1 *1 *1) (-5 *1 (-354))) (-3382 (*1 *2 *1 *1) (-12 (-5 *2 (-522)) (-5 *1 (-354)))) (-1662 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-354)))) (-4202 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-354)))) (-4202 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-354)))) (-3248 (*1 *1) (-5 *1 (-354))) (-3167 (*1 *1) (-5 *1 (-354))) (-3131 (*1 *1) (-5 *1 (-354))) (-2836 (*1 *1 *1 *1) (-5 *1 (-354))) (-3248 (*1 *1 *1) (-5 *1 (-354))) (-3167 (*1 *1 *1) (-5 *1 (-354))) (-1431 (*1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-354)))) (-1923 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-354)))) (-1923 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354)))) (-1803 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-354)))) (-1803 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354)))) (-3002 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-354)))) (-3002 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354)))) (-3490 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354)))))
-(-13 (-379) (-210) (-563 (-1068)) (-765) (-562 (-202)) (-1106) (-563 (-498)) (-10 -8 (-15 -1620 ($ $ (-522))) (-15 ** ($ $ $)) (-15 -2305 ($ $)) (-15 -3382 ((-522) $ $)) (-15 -1662 ($ $ (-522))) (-15 -4202 ((-382 (-522)) $ (-708))) (-15 -4202 ((-382 (-522)) $ (-708) (-708))) (-15 -3248 ($)) (-15 -3167 ($)) (-15 -3131 ($)) (-15 -2836 ($ $ $)) (-15 -3248 ($ $)) (-15 -3167 ($ $)) (-15 -1431 ($ (-202))) (-15 -1923 ((-1171))) (-15 -1923 ((-1171) (-708))) (-15 -1803 ((-1171))) (-15 -1803 ((-1171) (-708))) (-15 -3002 ((-1171))) (-15 -3002 ((-1171) (-708))) (-15 -3490 ((-1171) (-708))) (-6 -4229) (-6 -4221)))
-((-3426 (((-588 (-270 (-881 |#1|))) (-270 (-382 (-881 (-522)))) |#1|) 46) (((-588 (-270 (-881 |#1|))) (-382 (-881 (-522))) |#1|) 45) (((-588 (-588 (-270 (-881 |#1|)))) (-588 (-270 (-382 (-881 (-522))))) |#1|) 41) (((-588 (-588 (-270 (-881 |#1|)))) (-588 (-382 (-881 (-522)))) |#1|) 35)) (-3330 (((-588 |#1|) (-382 (-881 (-522))) |#1|) 19) (((-588 (-588 |#1|)) (-588 (-382 (-881 (-522)))) (-588 (-1085)) |#1|) 30)))
-(((-355 |#1|) (-10 -7 (-15 -3426 ((-588 (-588 (-270 (-881 |#1|)))) (-588 (-382 (-881 (-522)))) |#1|)) (-15 -3426 ((-588 (-588 (-270 (-881 |#1|)))) (-588 (-270 (-382 (-881 (-522))))) |#1|)) (-15 -3426 ((-588 (-270 (-881 |#1|))) (-382 (-881 (-522))) |#1|)) (-15 -3426 ((-588 (-270 (-881 |#1|))) (-270 (-382 (-881 (-522)))) |#1|)) (-15 -3330 ((-588 (-588 |#1|)) (-588 (-382 (-881 (-522)))) (-588 (-1085)) |#1|)) (-15 -3330 ((-588 |#1|) (-382 (-881 (-522))) |#1|))) (-13 (-782) (-338))) (T -355))
-((-3330 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 (-522)))) (-5 *2 (-588 *4)) (-5 *1 (-355 *4)) (-4 *4 (-13 (-782) (-338))))) (-3330 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 (-382 (-881 (-522))))) (-5 *4 (-588 (-1085))) (-5 *2 (-588 (-588 *5))) (-5 *1 (-355 *5)) (-4 *5 (-13 (-782) (-338))))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-270 (-382 (-881 (-522))))) (-5 *2 (-588 (-270 (-881 *4)))) (-5 *1 (-355 *4)) (-4 *4 (-13 (-782) (-338))))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 (-522)))) (-5 *2 (-588 (-270 (-881 *4)))) (-5 *1 (-355 *4)) (-4 *4 (-13 (-782) (-338))))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-270 (-382 (-881 (-522)))))) (-5 *2 (-588 (-588 (-270 (-881 *4))))) (-5 *1 (-355 *4)) (-4 *4 (-13 (-782) (-338))))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-382 (-881 (-522))))) (-5 *2 (-588 (-588 (-270 (-881 *4))))) (-5 *1 (-355 *4)) (-4 *4 (-13 (-782) (-338))))))
-(-10 -7 (-15 -3426 ((-588 (-588 (-270 (-881 |#1|)))) (-588 (-382 (-881 (-522)))) |#1|)) (-15 -3426 ((-588 (-588 (-270 (-881 |#1|)))) (-588 (-270 (-382 (-881 (-522))))) |#1|)) (-15 -3426 ((-588 (-270 (-881 |#1|))) (-382 (-881 (-522))) |#1|)) (-15 -3426 ((-588 (-270 (-881 |#1|))) (-270 (-382 (-881 (-522)))) |#1|)) (-15 -3330 ((-588 (-588 |#1|)) (-588 (-382 (-881 (-522)))) (-588 (-1085)) |#1|)) (-15 -3330 ((-588 |#1|) (-382 (-881 (-522))) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#2| "failed") $) 25)) (-1484 ((|#2| $) 27)) (-3156 (($ $) NIL)) (-2112 (((-708) $) 10)) (-4052 (((-588 $) $) 20)) (-3340 (((-108) $) NIL)) (-2518 (($ |#2| |#1|) 18)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2834 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 14)) (-3128 ((|#2| $) 15)) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 44) (($ |#2|) 26)) (-3916 (((-588 |#1|) $) 17)) (-3243 ((|#1| $ |#2|) 46)) (-3566 (($) 28 T CONST)) (-2238 (((-588 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 13)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#1| $) 31) (($ $ |#1|) 32) (($ |#1| |#2|) 34) (($ |#2| |#1|) 35)))
+((-3771 (((-588 (-270 (-881 (-154 |#1|)))) (-270 (-382 (-881 (-154 (-522))))) |#1|) 50) (((-588 (-270 (-881 (-154 |#1|)))) (-382 (-881 (-154 (-522)))) |#1|) 49) (((-588 (-588 (-270 (-881 (-154 |#1|))))) (-588 (-270 (-382 (-881 (-154 (-522)))))) |#1|) 45) (((-588 (-588 (-270 (-881 (-154 |#1|))))) (-588 (-382 (-881 (-154 (-522))))) |#1|) 39)) (-3769 (((-588 (-588 (-154 |#1|))) (-588 (-382 (-881 (-154 (-522))))) (-588 (-1085)) |#1|) 27) (((-588 (-154 |#1|)) (-382 (-881 (-154 (-522)))) |#1|) 15)))
+(((-353 |#1|) (-10 -7 (-15 -3771 ((-588 (-588 (-270 (-881 (-154 |#1|))))) (-588 (-382 (-881 (-154 (-522))))) |#1|)) (-15 -3771 ((-588 (-588 (-270 (-881 (-154 |#1|))))) (-588 (-270 (-382 (-881 (-154 (-522)))))) |#1|)) (-15 -3771 ((-588 (-270 (-881 (-154 |#1|)))) (-382 (-881 (-154 (-522)))) |#1|)) (-15 -3771 ((-588 (-270 (-881 (-154 |#1|)))) (-270 (-382 (-881 (-154 (-522))))) |#1|)) (-15 -3769 ((-588 (-154 |#1|)) (-382 (-881 (-154 (-522)))) |#1|)) (-15 -3769 ((-588 (-588 (-154 |#1|))) (-588 (-382 (-881 (-154 (-522))))) (-588 (-1085)) |#1|))) (-13 (-338) (-782))) (T -353))
+((-3769 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 (-382 (-881 (-154 (-522)))))) (-5 *4 (-588 (-1085))) (-5 *2 (-588 (-588 (-154 *5)))) (-5 *1 (-353 *5)) (-4 *5 (-13 (-338) (-782))))) (-3769 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 (-154 (-522))))) (-5 *2 (-588 (-154 *4))) (-5 *1 (-353 *4)) (-4 *4 (-13 (-338) (-782))))) (-3771 (*1 *2 *3 *4) (-12 (-5 *3 (-270 (-382 (-881 (-154 (-522)))))) (-5 *2 (-588 (-270 (-881 (-154 *4))))) (-5 *1 (-353 *4)) (-4 *4 (-13 (-338) (-782))))) (-3771 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 (-154 (-522))))) (-5 *2 (-588 (-270 (-881 (-154 *4))))) (-5 *1 (-353 *4)) (-4 *4 (-13 (-338) (-782))))) (-3771 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-270 (-382 (-881 (-154 (-522))))))) (-5 *2 (-588 (-588 (-270 (-881 (-154 *4)))))) (-5 *1 (-353 *4)) (-4 *4 (-13 (-338) (-782))))) (-3771 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-382 (-881 (-154 (-522)))))) (-5 *2 (-588 (-588 (-270 (-881 (-154 *4)))))) (-5 *1 (-353 *4)) (-4 *4 (-13 (-338) (-782))))))
+(-10 -7 (-15 -3771 ((-588 (-588 (-270 (-881 (-154 |#1|))))) (-588 (-382 (-881 (-154 (-522))))) |#1|)) (-15 -3771 ((-588 (-588 (-270 (-881 (-154 |#1|))))) (-588 (-270 (-382 (-881 (-154 (-522)))))) |#1|)) (-15 -3771 ((-588 (-270 (-881 (-154 |#1|)))) (-382 (-881 (-154 (-522)))) |#1|)) (-15 -3771 ((-588 (-270 (-881 (-154 |#1|)))) (-270 (-382 (-881 (-154 (-522))))) |#1|)) (-15 -3769 ((-588 (-154 |#1|)) (-382 (-881 (-154 (-522)))) |#1|)) (-15 -3769 ((-588 (-588 (-154 |#1|))) (-588 (-382 (-881 (-154 (-522))))) (-588 (-1085)) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 33)) (-3049 (((-522) $) 55)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-3495 (($ $) 110)) (-3044 (($ $) 82)) (-2923 (($ $) 71)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2016 (($ $) 44)) (-2805 (((-108) $ $) NIL)) (-3023 (($ $) 80)) (-2906 (($ $) 69)) (-3355 (((-522) $) 64)) (-1736 (($ $ (-522)) 62)) (-3066 (($ $) NIL)) (-2936 (($ $) NIL)) (-3367 (($) NIL T CONST)) (-1943 (($ $) 112)) (-3700 (((-3 (-522) "failed") $) 188) (((-3 (-382 (-522)) "failed") $) 184)) (-1478 (((-522) $) 186) (((-382 (-522)) $) 182)) (-2333 (($ $ $) NIL)) (-3583 (((-522) $ $) 102)) (-3920 (((-3 $ "failed") $) 114)) (-2012 (((-382 (-522)) $ (-708)) 189) (((-382 (-522)) $ (-708) (-708)) 181)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3684 (((-850)) 73) (((-850) (-850)) 98 (|has| $ (-6 -4229)))) (-3603 (((-108) $) 106)) (-2980 (($) 40)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL)) (-2242 (((-1171) (-708)) 151)) (-4188 (((-1171)) 156) (((-1171) (-708)) 157)) (-1341 (((-1171)) 158) (((-1171) (-708)) 159)) (-3795 (((-1171)) 154) (((-1171) (-708)) 155)) (-3872 (((-522) $) 58)) (-2859 (((-108) $) 104)) (-1811 (($ $ (-522)) NIL)) (-2774 (($ $) 48)) (-1269 (($ $) NIL)) (-3740 (((-108) $) 35)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1308 (($ $ $) NIL) (($) NIL (-12 (-2473 (|has| $ (-6 -4221))) (-2473 (|has| $ (-6 -4229)))))) (-2524 (($ $ $) NIL) (($) 99 (-12 (-2473 (|has| $ (-6 -4221))) (-2473 (|has| $ (-6 -4229)))))) (-3451 (((-522) $) 17)) (-1686 (($) 87) (($ $) 92)) (-3297 (($) 91) (($ $) 93)) (-1238 (($ $) 83)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 116)) (-1494 (((-850) (-522)) 43 (|has| $ (-6 -4229)))) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4194 (($ $) 53)) (-3592 (($ $) 109)) (-3173 (($ (-522) (-522)) 107) (($ (-522) (-522) (-850)) 108)) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3858 (((-522) $) 19)) (-3061 (($) 94)) (-3357 (($ $) 79)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-3353 (((-850)) 100) (((-850) (-850)) 101 (|has| $ (-6 -4229)))) (-2731 (($ $ (-708)) NIL) (($ $) 115)) (-1688 (((-850) (-522)) 47 (|has| $ (-6 -4229)))) (-1831 (($ $) NIL)) (-2946 (($ $) NIL)) (-3054 (($ $) NIL)) (-2928 (($ $) NIL)) (-3035 (($ $) 81)) (-2915 (($ $) 70)) (-3873 (((-354) $) 174) (((-202) $) 176) (((-821 (-354)) $) NIL) (((-1068) $) 161) (((-498) $) 172) (($ (-202)) 180)) (-2217 (((-792) $) 163) (($ (-522)) 185) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-522)) 185) (($ (-382 (-522))) NIL) (((-202) $) 177)) (-2742 (((-708)) NIL)) (-1379 (($ $) 111)) (-2780 (((-850)) 54) (((-850) (-850)) 66 (|has| $ (-6 -4229)))) (-1897 (((-850)) 103)) (-1856 (($ $) 86)) (-2976 (($ $) 46) (($ $ $) 52)) (-1407 (((-108) $ $) NIL)) (-1839 (($ $) 84)) (-2957 (($ $) 37)) (-1873 (($ $) NIL)) (-3001 (($ $) NIL)) (-2476 (($ $) NIL)) (-3011 (($ $) NIL)) (-1864 (($ $) NIL)) (-2989 (($ $) NIL)) (-1849 (($ $) 85)) (-2966 (($ $) 49)) (-4126 (($ $) 51)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 34 T CONST)) (-3709 (($) 38 T CONST)) (-2810 (((-1068) $) 27) (((-1068) $ (-108)) 29) (((-1171) (-759) $) 30) (((-1171) (-759) $ (-108)) 31)) (-2252 (($ $ (-708)) NIL) (($ $) NIL)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 39)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 42)) (-1682 (($ $ $) 45) (($ $ (-522)) 41)) (-1672 (($ $) 36) (($ $ $) 50)) (-1661 (($ $ $) 61)) (** (($ $ (-850)) 67) (($ $ (-708)) NIL) (($ $ (-522)) 88) (($ $ (-382 (-522))) 125) (($ $ $) 117)) (* (($ (-850) $) 65) (($ (-708) $) NIL) (($ (-522) $) 68) (($ $ $) 60) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
+(((-354) (-13 (-379) (-210) (-563 (-1068)) (-765) (-562 (-202)) (-1106) (-563 (-498)) (-10 -8 (-15 -1682 ($ $ (-522))) (-15 ** ($ $ $)) (-15 -2774 ($ $)) (-15 -3583 ((-522) $ $)) (-15 -1736 ($ $ (-522))) (-15 -2012 ((-382 (-522)) $ (-708))) (-15 -2012 ((-382 (-522)) $ (-708) (-708))) (-15 -1686 ($)) (-15 -3297 ($)) (-15 -3061 ($)) (-15 -2976 ($ $ $)) (-15 -1686 ($ $)) (-15 -3297 ($ $)) (-15 -3873 ($ (-202))) (-15 -1341 ((-1171))) (-15 -1341 ((-1171) (-708))) (-15 -3795 ((-1171))) (-15 -3795 ((-1171) (-708))) (-15 -4188 ((-1171))) (-15 -4188 ((-1171) (-708))) (-15 -2242 ((-1171) (-708))) (-6 -4229) (-6 -4221)))) (T -354))
+((** (*1 *1 *1 *1) (-5 *1 (-354))) (-1682 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-354)))) (-2774 (*1 *1 *1) (-5 *1 (-354))) (-3583 (*1 *2 *1 *1) (-12 (-5 *2 (-522)) (-5 *1 (-354)))) (-1736 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-354)))) (-2012 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-354)))) (-2012 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-354)))) (-1686 (*1 *1) (-5 *1 (-354))) (-3297 (*1 *1) (-5 *1 (-354))) (-3061 (*1 *1) (-5 *1 (-354))) (-2976 (*1 *1 *1 *1) (-5 *1 (-354))) (-1686 (*1 *1 *1) (-5 *1 (-354))) (-3297 (*1 *1 *1) (-5 *1 (-354))) (-3873 (*1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-354)))) (-1341 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-354)))) (-1341 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354)))) (-3795 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-354)))) (-3795 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354)))) (-4188 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-354)))) (-4188 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354)))) (-2242 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354)))))
+(-13 (-379) (-210) (-563 (-1068)) (-765) (-562 (-202)) (-1106) (-563 (-498)) (-10 -8 (-15 -1682 ($ $ (-522))) (-15 ** ($ $ $)) (-15 -2774 ($ $)) (-15 -3583 ((-522) $ $)) (-15 -1736 ($ $ (-522))) (-15 -2012 ((-382 (-522)) $ (-708))) (-15 -2012 ((-382 (-522)) $ (-708) (-708))) (-15 -1686 ($)) (-15 -3297 ($)) (-15 -3061 ($)) (-15 -2976 ($ $ $)) (-15 -1686 ($ $)) (-15 -3297 ($ $)) (-15 -3873 ($ (-202))) (-15 -1341 ((-1171))) (-15 -1341 ((-1171) (-708))) (-15 -3795 ((-1171))) (-15 -3795 ((-1171) (-708))) (-15 -4188 ((-1171))) (-15 -4188 ((-1171) (-708))) (-15 -2242 ((-1171) (-708))) (-6 -4229) (-6 -4221)))
+((-2925 (((-588 (-270 (-881 |#1|))) (-270 (-382 (-881 (-522)))) |#1|) 46) (((-588 (-270 (-881 |#1|))) (-382 (-881 (-522))) |#1|) 45) (((-588 (-588 (-270 (-881 |#1|)))) (-588 (-270 (-382 (-881 (-522))))) |#1|) 41) (((-588 (-588 (-270 (-881 |#1|)))) (-588 (-382 (-881 (-522)))) |#1|) 35)) (-1281 (((-588 |#1|) (-382 (-881 (-522))) |#1|) 19) (((-588 (-588 |#1|)) (-588 (-382 (-881 (-522)))) (-588 (-1085)) |#1|) 30)))
+(((-355 |#1|) (-10 -7 (-15 -2925 ((-588 (-588 (-270 (-881 |#1|)))) (-588 (-382 (-881 (-522)))) |#1|)) (-15 -2925 ((-588 (-588 (-270 (-881 |#1|)))) (-588 (-270 (-382 (-881 (-522))))) |#1|)) (-15 -2925 ((-588 (-270 (-881 |#1|))) (-382 (-881 (-522))) |#1|)) (-15 -2925 ((-588 (-270 (-881 |#1|))) (-270 (-382 (-881 (-522)))) |#1|)) (-15 -1281 ((-588 (-588 |#1|)) (-588 (-382 (-881 (-522)))) (-588 (-1085)) |#1|)) (-15 -1281 ((-588 |#1|) (-382 (-881 (-522))) |#1|))) (-13 (-782) (-338))) (T -355))
+((-1281 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 (-522)))) (-5 *2 (-588 *4)) (-5 *1 (-355 *4)) (-4 *4 (-13 (-782) (-338))))) (-1281 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 (-382 (-881 (-522))))) (-5 *4 (-588 (-1085))) (-5 *2 (-588 (-588 *5))) (-5 *1 (-355 *5)) (-4 *5 (-13 (-782) (-338))))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-270 (-382 (-881 (-522))))) (-5 *2 (-588 (-270 (-881 *4)))) (-5 *1 (-355 *4)) (-4 *4 (-13 (-782) (-338))))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 (-522)))) (-5 *2 (-588 (-270 (-881 *4)))) (-5 *1 (-355 *4)) (-4 *4 (-13 (-782) (-338))))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-270 (-382 (-881 (-522)))))) (-5 *2 (-588 (-588 (-270 (-881 *4))))) (-5 *1 (-355 *4)) (-4 *4 (-13 (-782) (-338))))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-382 (-881 (-522))))) (-5 *2 (-588 (-588 (-270 (-881 *4))))) (-5 *1 (-355 *4)) (-4 *4 (-13 (-782) (-338))))))
+(-10 -7 (-15 -2925 ((-588 (-588 (-270 (-881 |#1|)))) (-588 (-382 (-881 (-522)))) |#1|)) (-15 -2925 ((-588 (-588 (-270 (-881 |#1|)))) (-588 (-270 (-382 (-881 (-522))))) |#1|)) (-15 -2925 ((-588 (-270 (-881 |#1|))) (-382 (-881 (-522))) |#1|)) (-15 -2925 ((-588 (-270 (-881 |#1|))) (-270 (-382 (-881 (-522)))) |#1|)) (-15 -1281 ((-588 (-588 |#1|)) (-588 (-382 (-881 (-522)))) (-588 (-1085)) |#1|)) (-15 -1281 ((-588 |#1|) (-382 (-881 (-522))) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#2| "failed") $) 25)) (-1478 ((|#2| $) 27)) (-3241 (($ $) NIL)) (-1391 (((-708) $) 10)) (-3038 (((-588 $) $) 20)) (-1374 (((-108) $) NIL)) (-2623 (($ |#2| |#1|) 18)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-2893 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 14)) (-3216 ((|#2| $) 15)) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 44) (($ |#2|) 26)) (-2180 (((-588 |#1|) $) 17)) (-1643 ((|#1| $ |#2|) 46)) (-3697 (($) 28 T CONST)) (-1738 (((-588 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 13)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#1| $) 31) (($ $ |#1|) 32) (($ |#1| |#2|) 34) (($ |#2| |#1|) 35)))
(((-356 |#1| |#2|) (-13 (-357 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|)))) (-971) (-784)) (T -356))
((* (*1 *1 *2 *3) (-12 (-5 *1 (-356 *3 *2)) (-4 *3 (-971)) (-4 *2 (-784)))))
(-13 (-357 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-1297 (((-3 |#2| "failed") $) 44)) (-1484 ((|#2| $) 43)) (-3156 (($ $) 30)) (-2112 (((-708) $) 34)) (-4052 (((-588 $) $) 35)) (-3340 (((-108) $) 38)) (-2518 (($ |#2| |#1|) 39)) (-1391 (($ (-1 |#1| |#1|) $) 40)) (-2834 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 31)) (-3128 ((|#2| $) 33)) (-3138 ((|#1| $) 32)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ |#2|) 45)) (-3916 (((-588 |#1|) $) 36)) (-3243 ((|#1| $ |#2|) 41)) (-3566 (($) 18 T CONST)) (-2238 (((-588 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 37)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26) (($ |#1| |#2|) 42)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3700 (((-3 |#2| "failed") $) 44)) (-1478 ((|#2| $) 43)) (-3241 (($ $) 30)) (-1391 (((-708) $) 34)) (-3038 (((-588 $) $) 35)) (-1374 (((-108) $) 38)) (-2623 (($ |#2| |#1|) 39)) (-3810 (($ (-1 |#1| |#1|) $) 40)) (-2893 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 31)) (-3216 ((|#2| $) 33)) (-3224 ((|#1| $) 32)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ |#2|) 45)) (-2180 (((-588 |#1|) $) 36)) (-1643 ((|#1| $ |#2|) 41)) (-3697 (($) 18 T CONST)) (-1738 (((-588 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 37)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26) (($ |#1| |#2|) 42)))
(((-357 |#1| |#2|) (-1197) (-971) (-1014)) (T -357))
-((* (*1 *1 *2 *3) (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-971)) (-4 *3 (-1014)))) (-3243 (*1 *2 *1 *3) (-12 (-4 *1 (-357 *2 *3)) (-4 *3 (-1014)) (-4 *2 (-971)))) (-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014)))) (-2518 (*1 *1 *2 *3) (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1014)))) (-3340 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-108)))) (-2238 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-588 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-3916 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-588 *3)))) (-4052 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-588 *1)) (-4 *1 (-357 *3 *4)))) (-2112 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-708)))) (-3128 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1014)))) (-3138 (*1 *2 *1) (-12 (-4 *1 (-357 *2 *3)) (-4 *3 (-1014)) (-4 *2 (-971)))) (-2834 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-3156 (*1 *1 *1) (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-971)) (-4 *3 (-1014)))))
-(-13 (-107 |t#1| |t#1|) (-962 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -3243 (|t#1| $ |t#2|)) (-15 -1391 ($ (-1 |t#1| |t#1|) $)) (-15 -2518 ($ |t#2| |t#1|)) (-15 -3340 ((-108) $)) (-15 -2238 ((-588 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -3916 ((-588 |t#1|) $)) (-15 -4052 ((-588 $) $)) (-15 -2112 ((-708) $)) (-15 -3128 (|t#2| $)) (-15 -3138 (|t#1| $)) (-15 -2834 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -3156 ($ $)) (IF (|has| |t#1| (-157)) (-6 (-655 |t#1|)) |%noBranch|)))
+((* (*1 *1 *2 *3) (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-971)) (-4 *3 (-1014)))) (-1643 (*1 *2 *1 *3) (-12 (-4 *1 (-357 *2 *3)) (-4 *3 (-1014)) (-4 *2 (-971)))) (-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014)))) (-2623 (*1 *1 *2 *3) (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1014)))) (-1374 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-108)))) (-1738 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-588 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-2180 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-588 *3)))) (-3038 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-588 *1)) (-4 *1 (-357 *3 *4)))) (-1391 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-708)))) (-3216 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1014)))) (-3224 (*1 *2 *1) (-12 (-4 *1 (-357 *2 *3)) (-4 *3 (-1014)) (-4 *2 (-971)))) (-2893 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-3241 (*1 *1 *1) (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-971)) (-4 *3 (-1014)))))
+(-13 (-107 |t#1| |t#1|) (-962 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -1643 (|t#1| $ |t#2|)) (-15 -3810 ($ (-1 |t#1| |t#1|) $)) (-15 -2623 ($ |t#2| |t#1|)) (-15 -1374 ((-108) $)) (-15 -1738 ((-588 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -2180 ((-588 |t#1|) $)) (-15 -3038 ((-588 $) $)) (-15 -1391 ((-708) $)) (-15 -3216 (|t#2| $)) (-15 -3224 (|t#1| $)) (-15 -2893 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -3241 ($ $)) (IF (|has| |t#1| (-157)) (-6 (-655 |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#1|) . T) ((-655 |#1|) |has| |#1| (-157)) ((-962 |#2|) . T) ((-977 |#1|) . T) ((-1014) . T))
-((-2009 (((-1171) $) 7)) (-2190 (((-792) $) 8) (($ (-628 (-637))) 14) (($ (-588 (-305))) 13) (($ (-305)) 12) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 11)))
+((-2550 (((-1171) $) 7)) (-2217 (((-792) $) 8) (($ (-628 (-637))) 14) (($ (-588 (-305))) 13) (($ (-305)) 12) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 11)))
(((-358) (-1197)) (T -358))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-628 (-637))) (-4 *1 (-358)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-358)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-358)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) (-4 *1 (-358)))))
-(-13 (-370) (-10 -8 (-15 -2190 ($ (-628 (-637)))) (-15 -2190 ($ (-588 (-305)))) (-15 -2190 ($ (-305))) (-15 -2190 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))))))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-628 (-637))) (-4 *1 (-358)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-358)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-358)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) (-4 *1 (-358)))))
+(-13 (-370) (-10 -8 (-15 -2217 ($ (-628 (-637)))) (-15 -2217 ($ (-588 (-305)))) (-15 -2217 ($ (-305))) (-15 -2217 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))))))
(((-562 (-792)) . T) ((-370) . T) ((-1120) . T))
-((-1297 (((-3 $ "failed") (-628 (-291 (-354)))) 21) (((-3 $ "failed") (-628 (-291 (-522)))) 19) (((-3 $ "failed") (-628 (-881 (-354)))) 17) (((-3 $ "failed") (-628 (-881 (-522)))) 15) (((-3 $ "failed") (-628 (-382 (-881 (-354))))) 13) (((-3 $ "failed") (-628 (-382 (-881 (-522))))) 11)) (-1484 (($ (-628 (-291 (-354)))) 22) (($ (-628 (-291 (-522)))) 20) (($ (-628 (-881 (-354)))) 18) (($ (-628 (-881 (-522)))) 16) (($ (-628 (-382 (-881 (-354))))) 14) (($ (-628 (-382 (-881 (-522))))) 12)) (-2009 (((-1171) $) 7)) (-2190 (((-792) $) 8) (($ (-588 (-305))) 25) (($ (-305)) 24) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 23)))
+((-3700 (((-3 $ "failed") (-628 (-291 (-354)))) 21) (((-3 $ "failed") (-628 (-291 (-522)))) 19) (((-3 $ "failed") (-628 (-881 (-354)))) 17) (((-3 $ "failed") (-628 (-881 (-522)))) 15) (((-3 $ "failed") (-628 (-382 (-881 (-354))))) 13) (((-3 $ "failed") (-628 (-382 (-881 (-522))))) 11)) (-1478 (($ (-628 (-291 (-354)))) 22) (($ (-628 (-291 (-522)))) 20) (($ (-628 (-881 (-354)))) 18) (($ (-628 (-881 (-522)))) 16) (($ (-628 (-382 (-881 (-354))))) 14) (($ (-628 (-382 (-881 (-522))))) 12)) (-2550 (((-1171) $) 7)) (-2217 (((-792) $) 8) (($ (-588 (-305))) 25) (($ (-305)) 24) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 23)))
(((-359) (-1197)) (T -359))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-359)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-359)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) (-4 *1 (-359)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-628 (-291 (-354)))) (-4 *1 (-359)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-628 (-291 (-354)))) (-4 *1 (-359)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-628 (-291 (-522)))) (-4 *1 (-359)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-628 (-291 (-522)))) (-4 *1 (-359)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-628 (-881 (-354)))) (-4 *1 (-359)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-628 (-881 (-354)))) (-4 *1 (-359)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-628 (-881 (-522)))) (-4 *1 (-359)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-628 (-881 (-522)))) (-4 *1 (-359)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-628 (-382 (-881 (-354))))) (-4 *1 (-359)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-628 (-382 (-881 (-354))))) (-4 *1 (-359)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-628 (-382 (-881 (-522))))) (-4 *1 (-359)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-628 (-382 (-881 (-522))))) (-4 *1 (-359)))))
-(-13 (-370) (-10 -8 (-15 -2190 ($ (-588 (-305)))) (-15 -2190 ($ (-305))) (-15 -2190 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305)))))) (-15 -1484 ($ (-628 (-291 (-354))))) (-15 -1297 ((-3 $ "failed") (-628 (-291 (-354))))) (-15 -1484 ($ (-628 (-291 (-522))))) (-15 -1297 ((-3 $ "failed") (-628 (-291 (-522))))) (-15 -1484 ($ (-628 (-881 (-354))))) (-15 -1297 ((-3 $ "failed") (-628 (-881 (-354))))) (-15 -1484 ($ (-628 (-881 (-522))))) (-15 -1297 ((-3 $ "failed") (-628 (-881 (-522))))) (-15 -1484 ($ (-628 (-382 (-881 (-354)))))) (-15 -1297 ((-3 $ "failed") (-628 (-382 (-881 (-354)))))) (-15 -1484 ($ (-628 (-382 (-881 (-522)))))) (-15 -1297 ((-3 $ "failed") (-628 (-382 (-881 (-522))))))))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-359)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-359)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) (-4 *1 (-359)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-628 (-291 (-354)))) (-4 *1 (-359)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-628 (-291 (-354)))) (-4 *1 (-359)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-628 (-291 (-522)))) (-4 *1 (-359)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-628 (-291 (-522)))) (-4 *1 (-359)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-628 (-881 (-354)))) (-4 *1 (-359)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-628 (-881 (-354)))) (-4 *1 (-359)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-628 (-881 (-522)))) (-4 *1 (-359)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-628 (-881 (-522)))) (-4 *1 (-359)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-628 (-382 (-881 (-354))))) (-4 *1 (-359)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-628 (-382 (-881 (-354))))) (-4 *1 (-359)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-628 (-382 (-881 (-522))))) (-4 *1 (-359)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-628 (-382 (-881 (-522))))) (-4 *1 (-359)))))
+(-13 (-370) (-10 -8 (-15 -2217 ($ (-588 (-305)))) (-15 -2217 ($ (-305))) (-15 -2217 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305)))))) (-15 -1478 ($ (-628 (-291 (-354))))) (-15 -3700 ((-3 $ "failed") (-628 (-291 (-354))))) (-15 -1478 ($ (-628 (-291 (-522))))) (-15 -3700 ((-3 $ "failed") (-628 (-291 (-522))))) (-15 -1478 ($ (-628 (-881 (-354))))) (-15 -3700 ((-3 $ "failed") (-628 (-881 (-354))))) (-15 -1478 ($ (-628 (-881 (-522))))) (-15 -3700 ((-3 $ "failed") (-628 (-881 (-522))))) (-15 -1478 ($ (-628 (-382 (-881 (-354)))))) (-15 -3700 ((-3 $ "failed") (-628 (-382 (-881 (-354)))))) (-15 -1478 ($ (-628 (-382 (-881 (-522)))))) (-15 -3700 ((-3 $ "failed") (-628 (-382 (-881 (-522))))))))
(((-562 (-792)) . T) ((-370) . T) ((-1120) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3156 (($ $) NIL)) (-4049 (($ |#1| |#2|) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-1207 ((|#2| $) NIL)) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 28)) (-3566 (($) 12 T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#1| $) 16) (($ $ |#1|) 19)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3241 (($ $) NIL)) (-3500 (($ |#1| |#2|) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1801 ((|#2| $) NIL)) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 28)) (-3697 (($) 12 T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#1| $) 16) (($ $ |#1|) 19)))
(((-360 |#1| |#2|) (-13 (-107 |#1| |#1|) (-478 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-157)) (-6 (-655 |#1|)) |%noBranch|))) (-971) (-784)) (T -360))
NIL
(-13 (-107 |#1| |#1|) (-478 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-157)) (-6 (-655 |#1|)) |%noBranch|)))
-((-1416 (((-108) $ $) NIL)) (-1629 (((-708) $) 57)) (-3175 (($) NIL T CONST)) (-1200 (((-3 $ "failed") $ $) 59)) (-1297 (((-3 |#1| "failed") $) NIL)) (-1484 ((|#1| $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-4124 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 53)) (-2782 (((-108) $) 14)) (-3750 ((|#1| $ (-522)) NIL)) (-1905 (((-708) $ (-522)) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3896 (($ (-1 |#1| |#1|) $) 37)) (-3941 (($ (-1 (-708) (-708)) $) 34)) (-2987 (((-3 $ "failed") $ $) 50)) (-2385 (((-1068) $) NIL)) (-3599 (($ $ $) 25)) (-1671 (($ $ $) 23)) (-4151 (((-1032) $) NIL)) (-2976 (((-588 (-2 (|:| |gen| |#1|) (|:| -3266 (-708)))) $) 31)) (-2752 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 56)) (-2190 (((-792) $) 21) (($ |#1|) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3577 (($) 9 T CONST)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) 41)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) 61 (|has| |#1| (-784)))) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ |#1| (-708)) 40)) (* (($ $ $) 47) (($ |#1| $) 29) (($ $ |#1|) 27)))
-(((-361 |#1|) (-13 (-664) (-962 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-708))) (-15 -1671 ($ $ $)) (-15 -3599 ($ $ $)) (-15 -2987 ((-3 $ "failed") $ $)) (-15 -1200 ((-3 $ "failed") $ $)) (-15 -2752 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -4124 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1629 ((-708) $)) (-15 -2976 ((-588 (-2 (|:| |gen| |#1|) (|:| -3266 (-708)))) $)) (-15 -1905 ((-708) $ (-522))) (-15 -3750 (|#1| $ (-522))) (-15 -3941 ($ (-1 (-708) (-708)) $)) (-15 -3896 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-784)) (-6 (-784)) |%noBranch|))) (-1014)) (T -361))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (-1671 (*1 *1 *1 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (-3599 (*1 *1 *1 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (-2987 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (-1200 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (-2752 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-361 *3)) (|:| |rm| (-361 *3)))) (-5 *1 (-361 *3)) (-4 *3 (-1014)))) (-4124 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-361 *3)) (|:| |mm| (-361 *3)) (|:| |rm| (-361 *3)))) (-5 *1 (-361 *3)) (-4 *3 (-1014)))) (-1629 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-361 *3)) (-4 *3 (-1014)))) (-2976 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3266 (-708))))) (-5 *1 (-361 *3)) (-4 *3 (-1014)))) (-1905 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-708)) (-5 *1 (-361 *4)) (-4 *4 (-1014)))) (-3750 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (-3941 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-708) (-708))) (-5 *1 (-361 *3)) (-4 *3 (-1014)))) (-3896 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-361 *3)))))
-(-13 (-664) (-962 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-708))) (-15 -1671 ($ $ $)) (-15 -3599 ($ $ $)) (-15 -2987 ((-3 $ "failed") $ $)) (-15 -1200 ((-3 $ "failed") $ $)) (-15 -2752 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -4124 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1629 ((-708) $)) (-15 -2976 ((-588 (-2 (|:| |gen| |#1|) (|:| -3266 (-708)))) $)) (-15 -1905 ((-708) $ (-522))) (-15 -3750 (|#1| $ (-522))) (-15 -3941 ($ (-1 (-708) (-708)) $)) (-15 -3896 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-784)) (-6 (-784)) |%noBranch|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-1297 (((-3 (-522) "failed") $) 47)) (-1484 (((-522) $) 46)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2814 (($ $ $) 54)) (-2446 (($ $ $) 53)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2232 (((-3 $ "failed") $ $) 42)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-522)) 48)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1574 (((-108) $ $) 51)) (-1558 (((-108) $ $) 50)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 52)) (-1549 (((-108) $ $) 49)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-1419 (((-108) $ $) NIL)) (-1685 (((-708) $) 57)) (-3367 (($) NIL T CONST)) (-1745 (((-3 $ "failed") $ $) 59)) (-3700 (((-3 |#1| "failed") $) NIL)) (-1478 ((|#1| $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2496 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 53)) (-2859 (((-108) $) 14)) (-3108 ((|#1| $ (-522)) NIL)) (-4213 (((-708) $ (-522)) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2007 (($ (-1 |#1| |#1|) $) 37)) (-1250 (($ (-1 (-708) (-708)) $) 34)) (-4038 (((-3 $ "failed") $ $) 50)) (-2311 (((-1068) $) NIL)) (-2089 (($ $ $) 25)) (-2629 (($ $ $) 23)) (-4174 (((-1032) $) NIL)) (-4045 (((-588 (-2 (|:| |gen| |#1|) (|:| -3357 (-708)))) $) 31)) (-4164 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 56)) (-2217 (((-792) $) 21) (($ |#1|) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3709 (($) 9 T CONST)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) 41)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) 61 (|has| |#1| (-784)))) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ |#1| (-708)) 40)) (* (($ $ $) 47) (($ |#1| $) 29) (($ $ |#1|) 27)))
+(((-361 |#1|) (-13 (-664) (-962 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-708))) (-15 -2629 ($ $ $)) (-15 -2089 ($ $ $)) (-15 -4038 ((-3 $ "failed") $ $)) (-15 -1745 ((-3 $ "failed") $ $)) (-15 -4164 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2496 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1685 ((-708) $)) (-15 -4045 ((-588 (-2 (|:| |gen| |#1|) (|:| -3357 (-708)))) $)) (-15 -4213 ((-708) $ (-522))) (-15 -3108 (|#1| $ (-522))) (-15 -1250 ($ (-1 (-708) (-708)) $)) (-15 -2007 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-784)) (-6 (-784)) |%noBranch|))) (-1014)) (T -361))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (-2629 (*1 *1 *1 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (-2089 (*1 *1 *1 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (-4038 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (-1745 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (-4164 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-361 *3)) (|:| |rm| (-361 *3)))) (-5 *1 (-361 *3)) (-4 *3 (-1014)))) (-2496 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-361 *3)) (|:| |mm| (-361 *3)) (|:| |rm| (-361 *3)))) (-5 *1 (-361 *3)) (-4 *3 (-1014)))) (-1685 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-361 *3)) (-4 *3 (-1014)))) (-4045 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3357 (-708))))) (-5 *1 (-361 *3)) (-4 *3 (-1014)))) (-4213 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-708)) (-5 *1 (-361 *4)) (-4 *4 (-1014)))) (-3108 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-361 *2)) (-4 *2 (-1014)))) (-1250 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-708) (-708))) (-5 *1 (-361 *3)) (-4 *3 (-1014)))) (-2007 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-361 *3)))))
+(-13 (-664) (-962 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-708))) (-15 -2629 ($ $ $)) (-15 -2089 ($ $ $)) (-15 -4038 ((-3 $ "failed") $ $)) (-15 -1745 ((-3 $ "failed") $ $)) (-15 -4164 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2496 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1685 ((-708) $)) (-15 -4045 ((-588 (-2 (|:| |gen| |#1|) (|:| -3357 (-708)))) $)) (-15 -4213 ((-708) $ (-522))) (-15 -3108 (|#1| $ (-522))) (-15 -1250 ($ (-1 (-708) (-708)) $)) (-15 -2007 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-784)) (-6 (-784)) |%noBranch|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3700 (((-3 (-522) "failed") $) 47)) (-1478 (((-522) $) 46)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-1308 (($ $ $) 54)) (-2524 (($ $ $) 53)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2276 (((-3 $ "failed") $ $) 42)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-522)) 48)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1623 (((-108) $ $) 51)) (-1597 (((-108) $ $) 50)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 52)) (-1587 (((-108) $ $) 49)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-362) (-1197)) (T -362))
NIL
(-13 (-514) (-784) (-962 (-522)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-157) . T) ((-266) . T) ((-514) . T) ((-590 $) . T) ((-655 $) . T) ((-664) . T) ((-784) . T) ((-962 (-522)) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-1852 (((-108) $) 20)) (-4030 (((-108) $) 19)) (-1811 (($ (-1068) (-1068) (-1068)) 21)) (-2888 (((-1068) $) 16)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2554 (($ (-1068) (-1068) (-1068)) 14)) (-1334 (((-1068) $) 17)) (-2661 (((-108) $) 18)) (-3123 (((-1068) $) 15)) (-2190 (((-792) $) 12) (($ (-1068)) 13) (((-1068) $) 9)) (-1531 (((-108) $ $) 7)))
+((-1419 (((-108) $ $) NIL)) (-2526 (((-108) $) 20)) (-3952 (((-108) $) 19)) (-1893 (($ (-1068) (-1068) (-1068)) 21)) (-3015 (((-1068) $) 16)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2687 (($ (-1068) (-1068) (-1068)) 14)) (-2028 (((-1068) $) 17)) (-1820 (((-108) $) 18)) (-3211 (((-1068) $) 15)) (-2217 (((-792) $) 12) (($ (-1068)) 13) (((-1068) $) 9)) (-1562 (((-108) $ $) 7)))
(((-363) (-364)) (T -363))
NIL
(-364)
-((-1416 (((-108) $ $) 7)) (-1852 (((-108) $) 14)) (-4030 (((-108) $) 15)) (-1811 (($ (-1068) (-1068) (-1068)) 13)) (-2888 (((-1068) $) 18)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2554 (($ (-1068) (-1068) (-1068)) 20)) (-1334 (((-1068) $) 17)) (-2661 (((-108) $) 16)) (-3123 (((-1068) $) 19)) (-2190 (((-792) $) 11) (($ (-1068)) 22) (((-1068) $) 21)) (-1531 (((-108) $ $) 6)))
+((-1419 (((-108) $ $) 7)) (-2526 (((-108) $) 14)) (-3952 (((-108) $) 15)) (-1893 (($ (-1068) (-1068) (-1068)) 13)) (-3015 (((-1068) $) 18)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2687 (($ (-1068) (-1068) (-1068)) 20)) (-2028 (((-1068) $) 17)) (-1820 (((-108) $) 16)) (-3211 (((-1068) $) 19)) (-2217 (((-792) $) 11) (($ (-1068)) 22) (((-1068) $) 21)) (-1562 (((-108) $ $) 6)))
(((-364) (-1197)) (T -364))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-4 *1 (-364)))) (-2190 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-1068)))) (-2554 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1068)) (-4 *1 (-364)))) (-3123 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-1068)))) (-2888 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-1068)))) (-1334 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-1068)))) (-2661 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-108)))) (-4030 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-108)))) (-1852 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-108)))) (-1811 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1068)) (-4 *1 (-364)))))
-(-13 (-1014) (-10 -8 (-15 -2190 ($ (-1068))) (-15 -2190 ((-1068) $)) (-15 -2554 ($ (-1068) (-1068) (-1068))) (-15 -3123 ((-1068) $)) (-15 -2888 ((-1068) $)) (-15 -1334 ((-1068) $)) (-15 -2661 ((-108) $)) (-15 -4030 ((-108) $)) (-15 -1852 ((-108) $)) (-15 -1811 ($ (-1068) (-1068) (-1068)))))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-4 *1 (-364)))) (-2217 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-1068)))) (-2687 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1068)) (-4 *1 (-364)))) (-3211 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-1068)))) (-3015 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-1068)))) (-2028 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-1068)))) (-1820 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-108)))) (-3952 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-108)))) (-2526 (*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-108)))) (-1893 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1068)) (-4 *1 (-364)))))
+(-13 (-1014) (-10 -8 (-15 -2217 ($ (-1068))) (-15 -2217 ((-1068) $)) (-15 -2687 ($ (-1068) (-1068) (-1068))) (-15 -3211 ((-1068) $)) (-15 -3015 ((-1068) $)) (-15 -2028 ((-1068) $)) (-15 -1820 ((-108) $)) (-15 -3952 ((-108) $)) (-15 -2526 ((-108) $)) (-15 -1893 ($ (-1068) (-1068) (-1068)))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-2422 (((-792) $) 50)) (-3175 (($) NIL T CONST)) (-1679 (($ $ (-850)) NIL)) (-1882 (($ $ (-850)) NIL)) (-3277 (($ $ (-850)) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1383 (($ (-708)) 26)) (-4078 (((-708)) 15)) (-1358 (((-792) $) 52)) (-1288 (($ $ $) NIL)) (-2190 (((-792) $) NIL)) (-3610 (($ $ $ $) NIL)) (-3024 (($ $ $) NIL)) (-3566 (($) 20 T CONST)) (-1531 (((-108) $ $) 28)) (-1612 (($ $) 34) (($ $ $) 36)) (-1602 (($ $ $) 37)) (** (($ $ (-850)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 38) (($ $ |#3|) NIL) (($ |#3| $) 33)))
-(((-365 |#1| |#2| |#3|) (-13 (-682 |#3|) (-10 -8 (-15 -4078 ((-708))) (-15 -1358 ((-792) $)) (-15 -2422 ((-792) $)) (-15 -1383 ($ (-708))))) (-708) (-708) (-157)) (T -365))
-((-4078 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-157)))) (-1358 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 (-708)) (-14 *4 (-708)) (-4 *5 (-157)))) (-2422 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 (-708)) (-14 *4 (-708)) (-4 *5 (-157)))) (-1383 (*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-157)))))
-(-13 (-682 |#3|) (-10 -8 (-15 -4078 ((-708))) (-15 -1358 ((-792) $)) (-15 -2422 ((-792) $)) (-15 -1383 ($ (-708)))))
-((-3252 (((-1068)) 10)) (-3997 (((-1057 (-1068))) 28)) (-1981 (((-1171) (-1068)) 25) (((-1171) (-363)) 24)) (-1995 (((-1171)) 26)) (-3395 (((-1057 (-1068))) 27)))
-(((-366) (-10 -7 (-15 -3395 ((-1057 (-1068)))) (-15 -3997 ((-1057 (-1068)))) (-15 -1995 ((-1171))) (-15 -1981 ((-1171) (-363))) (-15 -1981 ((-1171) (-1068))) (-15 -3252 ((-1068))))) (T -366))
-((-3252 (*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-366)))) (-1981 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-366)))) (-1981 (*1 *2 *3) (-12 (-5 *3 (-363)) (-5 *2 (-1171)) (-5 *1 (-366)))) (-1995 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-366)))) (-3997 (*1 *2) (-12 (-5 *2 (-1057 (-1068))) (-5 *1 (-366)))) (-3395 (*1 *2) (-12 (-5 *2 (-1057 (-1068))) (-5 *1 (-366)))))
-(-10 -7 (-15 -3395 ((-1057 (-1068)))) (-15 -3997 ((-1057 (-1068)))) (-15 -1995 ((-1171))) (-15 -1981 ((-1171) (-363))) (-15 -1981 ((-1171) (-1068))) (-15 -3252 ((-1068))))
-((-3714 (((-708) (-311 |#1| |#2| |#3| |#4|)) 16)))
-(((-367 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3714 ((-708) (-311 |#1| |#2| |#3| |#4|)))) (-13 (-343) (-338)) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|)) (T -367))
-((-3714 (*1 *2 *3) (-12 (-5 *3 (-311 *4 *5 *6 *7)) (-4 *4 (-13 (-343) (-338))) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-4 *7 (-317 *4 *5 *6)) (-5 *2 (-708)) (-5 *1 (-367 *4 *5 *6 *7)))))
-(-10 -7 (-15 -3714 ((-708) (-311 |#1| |#2| |#3| |#4|))))
-((-2190 (((-369) |#1|) 11)))
-(((-368 |#1|) (-10 -7 (-15 -2190 ((-369) |#1|))) (-1014)) (T -368))
-((-2190 (*1 *2 *3) (-12 (-5 *2 (-369)) (-5 *1 (-368 *3)) (-4 *3 (-1014)))))
-(-10 -7 (-15 -2190 ((-369) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2301 (((-588 (-1068)) $ (-588 (-1068))) 37)) (-2688 (((-588 (-1068)) $ (-588 (-1068))) 38)) (-3900 (((-588 (-1068)) $ (-588 (-1068))) 39)) (-2536 (((-588 (-1068)) $) 34)) (-1811 (($) 23)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1382 (((-588 (-1068)) $) 35)) (-2185 (((-588 (-1068)) $) 36)) (-1678 (((-1171) $ (-522)) 32) (((-1171) $) 33)) (-1431 (($ (-792) (-522)) 29)) (-2190 (((-792) $) 41) (($ (-792)) 25)) (-1531 (((-108) $ $) NIL)))
-(((-369) (-13 (-1014) (-10 -8 (-15 -2190 ($ (-792))) (-15 -1431 ($ (-792) (-522))) (-15 -1678 ((-1171) $ (-522))) (-15 -1678 ((-1171) $)) (-15 -2185 ((-588 (-1068)) $)) (-15 -1382 ((-588 (-1068)) $)) (-15 -1811 ($)) (-15 -2536 ((-588 (-1068)) $)) (-15 -3900 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2688 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2301 ((-588 (-1068)) $ (-588 (-1068))))))) (T -369))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-792)) (-5 *1 (-369)))) (-1431 (*1 *1 *2 *3) (-12 (-5 *2 (-792)) (-5 *3 (-522)) (-5 *1 (-369)))) (-1678 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-369)))) (-1678 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-369)))) (-2185 (*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))) (-1382 (*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))) (-1811 (*1 *1) (-5 *1 (-369))) (-2536 (*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))) (-3900 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))) (-2688 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))) (-2301 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))))
-(-13 (-1014) (-10 -8 (-15 -2190 ($ (-792))) (-15 -1431 ($ (-792) (-522))) (-15 -1678 ((-1171) $ (-522))) (-15 -1678 ((-1171) $)) (-15 -2185 ((-588 (-1068)) $)) (-15 -1382 ((-588 (-1068)) $)) (-15 -1811 ($)) (-15 -2536 ((-588 (-1068)) $)) (-15 -3900 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2688 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2301 ((-588 (-1068)) $ (-588 (-1068))))))
-((-2009 (((-1171) $) 7)) (-2190 (((-792) $) 8)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3263 (((-792) $) 50)) (-3367 (($) NIL T CONST)) (-2698 (($ $ (-850)) NIL)) (-2870 (($ $ (-850)) NIL)) (-1946 (($ $ (-850)) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1368 (($ (-708)) 26)) (-3222 (((-708)) 15)) (-3486 (((-792) $) 52)) (-1596 (($ $ $) NIL)) (-2217 (((-792) $) NIL)) (-2185 (($ $ $ $) NIL)) (-1369 (($ $ $) NIL)) (-3697 (($) 20 T CONST)) (-1562 (((-108) $ $) 28)) (-1672 (($ $) 34) (($ $ $) 36)) (-1661 (($ $ $) 37)) (** (($ $ (-850)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 38) (($ $ |#3|) NIL) (($ |#3| $) 33)))
+(((-365 |#1| |#2| |#3|) (-13 (-682 |#3|) (-10 -8 (-15 -3222 ((-708))) (-15 -3486 ((-792) $)) (-15 -3263 ((-792) $)) (-15 -1368 ($ (-708))))) (-708) (-708) (-157)) (T -365))
+((-3222 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-157)))) (-3486 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 (-708)) (-14 *4 (-708)) (-4 *5 (-157)))) (-3263 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 (-708)) (-14 *4 (-708)) (-4 *5 (-157)))) (-1368 (*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-157)))))
+(-13 (-682 |#3|) (-10 -8 (-15 -3222 ((-708))) (-15 -3486 ((-792) $)) (-15 -3263 ((-792) $)) (-15 -1368 ($ (-708)))))
+((-1730 (((-1068)) 10)) (-3608 (((-1057 (-1068))) 28)) (-2518 (((-1171) (-1068)) 25) (((-1171) (-363)) 24)) (-2531 (((-1171)) 26)) (-3712 (((-1057 (-1068))) 27)))
+(((-366) (-10 -7 (-15 -3712 ((-1057 (-1068)))) (-15 -3608 ((-1057 (-1068)))) (-15 -2531 ((-1171))) (-15 -2518 ((-1171) (-363))) (-15 -2518 ((-1171) (-1068))) (-15 -1730 ((-1068))))) (T -366))
+((-1730 (*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-366)))) (-2518 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-366)))) (-2518 (*1 *2 *3) (-12 (-5 *3 (-363)) (-5 *2 (-1171)) (-5 *1 (-366)))) (-2531 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-366)))) (-3608 (*1 *2) (-12 (-5 *2 (-1057 (-1068))) (-5 *1 (-366)))) (-3712 (*1 *2) (-12 (-5 *2 (-1057 (-1068))) (-5 *1 (-366)))))
+(-10 -7 (-15 -3712 ((-1057 (-1068)))) (-15 -3608 ((-1057 (-1068)))) (-15 -2531 ((-1171))) (-15 -2518 ((-1171) (-363))) (-15 -2518 ((-1171) (-1068))) (-15 -1730 ((-1068))))
+((-3872 (((-708) (-311 |#1| |#2| |#3| |#4|)) 16)))
+(((-367 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3872 ((-708) (-311 |#1| |#2| |#3| |#4|)))) (-13 (-343) (-338)) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|)) (T -367))
+((-3872 (*1 *2 *3) (-12 (-5 *3 (-311 *4 *5 *6 *7)) (-4 *4 (-13 (-343) (-338))) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-4 *7 (-317 *4 *5 *6)) (-5 *2 (-708)) (-5 *1 (-367 *4 *5 *6 *7)))))
+(-10 -7 (-15 -3872 ((-708) (-311 |#1| |#2| |#3| |#4|))))
+((-2217 (((-369) |#1|) 11)))
+(((-368 |#1|) (-10 -7 (-15 -2217 ((-369) |#1|))) (-1014)) (T -368))
+((-2217 (*1 *2 *3) (-12 (-5 *2 (-369)) (-5 *1 (-368 *3)) (-4 *3 (-1014)))))
+(-10 -7 (-15 -2217 ((-369) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2716 (((-588 (-1068)) $ (-588 (-1068))) 37)) (-2140 (((-588 (-1068)) $ (-588 (-1068))) 38)) (-2034 (((-588 (-1068)) $ (-588 (-1068))) 39)) (-3506 (((-588 (-1068)) $) 34)) (-1893 (($) 23)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2914 (((-588 (-1068)) $) 35)) (-3359 (((-588 (-1068)) $) 36)) (-1757 (((-1171) $ (-522)) 32) (((-1171) $) 33)) (-3873 (($ (-792) (-522)) 29)) (-2217 (((-792) $) 41) (($ (-792)) 25)) (-1562 (((-108) $ $) NIL)))
+(((-369) (-13 (-1014) (-10 -8 (-15 -2217 ($ (-792))) (-15 -3873 ($ (-792) (-522))) (-15 -1757 ((-1171) $ (-522))) (-15 -1757 ((-1171) $)) (-15 -3359 ((-588 (-1068)) $)) (-15 -2914 ((-588 (-1068)) $)) (-15 -1893 ($)) (-15 -3506 ((-588 (-1068)) $)) (-15 -2034 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2140 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2716 ((-588 (-1068)) $ (-588 (-1068))))))) (T -369))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-792)) (-5 *1 (-369)))) (-3873 (*1 *1 *2 *3) (-12 (-5 *2 (-792)) (-5 *3 (-522)) (-5 *1 (-369)))) (-1757 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-369)))) (-1757 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-369)))) (-3359 (*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))) (-2914 (*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))) (-1893 (*1 *1) (-5 *1 (-369))) (-3506 (*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))) (-2034 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))) (-2140 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))) (-2716 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))))
+(-13 (-1014) (-10 -8 (-15 -2217 ($ (-792))) (-15 -3873 ($ (-792) (-522))) (-15 -1757 ((-1171) $ (-522))) (-15 -1757 ((-1171) $)) (-15 -3359 ((-588 (-1068)) $)) (-15 -2914 ((-588 (-1068)) $)) (-15 -1893 ($)) (-15 -3506 ((-588 (-1068)) $)) (-15 -2034 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2140 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2716 ((-588 (-1068)) $ (-588 (-1068))))))
+((-2550 (((-1171) $) 7)) (-2217 (((-792) $) 8)))
(((-370) (-1197)) (T -370))
-((-2009 (*1 *2 *1) (-12 (-4 *1 (-370)) (-5 *2 (-1171)))))
-(-13 (-1120) (-562 (-792)) (-10 -8 (-15 -2009 ((-1171) $))))
+((-2550 (*1 *2 *1) (-12 (-4 *1 (-370)) (-5 *2 (-1171)))))
+(-13 (-1120) (-562 (-792)) (-10 -8 (-15 -2550 ((-1171) $))))
(((-562 (-792)) . T) ((-1120) . T))
-((-1297 (((-3 $ "failed") (-291 (-354))) 21) (((-3 $ "failed") (-291 (-522))) 19) (((-3 $ "failed") (-881 (-354))) 17) (((-3 $ "failed") (-881 (-522))) 15) (((-3 $ "failed") (-382 (-881 (-354)))) 13) (((-3 $ "failed") (-382 (-881 (-522)))) 11)) (-1484 (($ (-291 (-354))) 22) (($ (-291 (-522))) 20) (($ (-881 (-354))) 18) (($ (-881 (-522))) 16) (($ (-382 (-881 (-354)))) 14) (($ (-382 (-881 (-522)))) 12)) (-2009 (((-1171) $) 7)) (-2190 (((-792) $) 8) (($ (-588 (-305))) 25) (($ (-305)) 24) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 23)))
+((-3700 (((-3 $ "failed") (-291 (-354))) 21) (((-3 $ "failed") (-291 (-522))) 19) (((-3 $ "failed") (-881 (-354))) 17) (((-3 $ "failed") (-881 (-522))) 15) (((-3 $ "failed") (-382 (-881 (-354)))) 13) (((-3 $ "failed") (-382 (-881 (-522)))) 11)) (-1478 (($ (-291 (-354))) 22) (($ (-291 (-522))) 20) (($ (-881 (-354))) 18) (($ (-881 (-522))) 16) (($ (-382 (-881 (-354)))) 14) (($ (-382 (-881 (-522)))) 12)) (-2550 (((-1171) $) 7)) (-2217 (((-792) $) 8) (($ (-588 (-305))) 25) (($ (-305)) 24) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 23)))
(((-371) (-1197)) (T -371))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-371)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-371)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) (-4 *1 (-371)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-291 (-354))) (-4 *1 (-371)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-291 (-354))) (-4 *1 (-371)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-291 (-522))) (-4 *1 (-371)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-291 (-522))) (-4 *1 (-371)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-881 (-354))) (-4 *1 (-371)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-354))) (-4 *1 (-371)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-881 (-522))) (-4 *1 (-371)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-522))) (-4 *1 (-371)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-382 (-881 (-354)))) (-4 *1 (-371)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-382 (-881 (-354)))) (-4 *1 (-371)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-382 (-881 (-522)))) (-4 *1 (-371)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-382 (-881 (-522)))) (-4 *1 (-371)))))
-(-13 (-370) (-10 -8 (-15 -2190 ($ (-588 (-305)))) (-15 -2190 ($ (-305))) (-15 -2190 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305)))))) (-15 -1484 ($ (-291 (-354)))) (-15 -1297 ((-3 $ "failed") (-291 (-354)))) (-15 -1484 ($ (-291 (-522)))) (-15 -1297 ((-3 $ "failed") (-291 (-522)))) (-15 -1484 ($ (-881 (-354)))) (-15 -1297 ((-3 $ "failed") (-881 (-354)))) (-15 -1484 ($ (-881 (-522)))) (-15 -1297 ((-3 $ "failed") (-881 (-522)))) (-15 -1484 ($ (-382 (-881 (-354))))) (-15 -1297 ((-3 $ "failed") (-382 (-881 (-354))))) (-15 -1484 ($ (-382 (-881 (-522))))) (-15 -1297 ((-3 $ "failed") (-382 (-881 (-522)))))))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-371)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-371)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) (-4 *1 (-371)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-291 (-354))) (-4 *1 (-371)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-291 (-354))) (-4 *1 (-371)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-291 (-522))) (-4 *1 (-371)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-291 (-522))) (-4 *1 (-371)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-881 (-354))) (-4 *1 (-371)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-354))) (-4 *1 (-371)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-881 (-522))) (-4 *1 (-371)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-522))) (-4 *1 (-371)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-382 (-881 (-354)))) (-4 *1 (-371)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-382 (-881 (-354)))) (-4 *1 (-371)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-382 (-881 (-522)))) (-4 *1 (-371)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-382 (-881 (-522)))) (-4 *1 (-371)))))
+(-13 (-370) (-10 -8 (-15 -2217 ($ (-588 (-305)))) (-15 -2217 ($ (-305))) (-15 -2217 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305)))))) (-15 -1478 ($ (-291 (-354)))) (-15 -3700 ((-3 $ "failed") (-291 (-354)))) (-15 -1478 ($ (-291 (-522)))) (-15 -3700 ((-3 $ "failed") (-291 (-522)))) (-15 -1478 ($ (-881 (-354)))) (-15 -3700 ((-3 $ "failed") (-881 (-354)))) (-15 -1478 ($ (-881 (-522)))) (-15 -3700 ((-3 $ "failed") (-881 (-522)))) (-15 -1478 ($ (-382 (-881 (-354))))) (-15 -3700 ((-3 $ "failed") (-382 (-881 (-354))))) (-15 -1478 ($ (-382 (-881 (-522))))) (-15 -3700 ((-3 $ "failed") (-382 (-881 (-522)))))))
(((-562 (-792)) . T) ((-370) . T) ((-1120) . T))
-((-2502 (((-588 (-1068)) (-588 (-1068))) 8)) (-2009 (((-1171) (-363)) 27)) (-1716 (((-1018) (-1085) (-588 (-1085)) (-1088) (-588 (-1085))) 59) (((-1018) (-1085) (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085)))) (-588 (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085))))) (-588 (-1085)) (-1085)) 35) (((-1018) (-1085) (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085)))) (-588 (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085))))) (-588 (-1085))) 34)))
-(((-372) (-10 -7 (-15 -1716 ((-1018) (-1085) (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085)))) (-588 (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085))))) (-588 (-1085)))) (-15 -1716 ((-1018) (-1085) (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085)))) (-588 (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085))))) (-588 (-1085)) (-1085))) (-15 -1716 ((-1018) (-1085) (-588 (-1085)) (-1088) (-588 (-1085)))) (-15 -2009 ((-1171) (-363))) (-15 -2502 ((-588 (-1068)) (-588 (-1068)))))) (T -372))
-((-2502 (*1 *2 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-372)))) (-2009 (*1 *2 *3) (-12 (-5 *3 (-363)) (-5 *2 (-1171)) (-5 *1 (-372)))) (-1716 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-588 (-1085))) (-5 *5 (-1088)) (-5 *3 (-1085)) (-5 *2 (-1018)) (-5 *1 (-372)))) (-1716 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-588 (-588 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-588 (-3 (|:| |array| (-588 *3)) (|:| |scalar| (-1085))))) (-5 *6 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1018)) (-5 *1 (-372)))) (-1716 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-588 (-588 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-588 (-3 (|:| |array| (-588 *3)) (|:| |scalar| (-1085))))) (-5 *6 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1018)) (-5 *1 (-372)))))
-(-10 -7 (-15 -1716 ((-1018) (-1085) (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085)))) (-588 (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085))))) (-588 (-1085)))) (-15 -1716 ((-1018) (-1085) (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085)))) (-588 (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085))))) (-588 (-1085)) (-1085))) (-15 -1716 ((-1018) (-1085) (-588 (-1085)) (-1088) (-588 (-1085)))) (-15 -2009 ((-1171) (-363))) (-15 -2502 ((-588 (-1068)) (-588 (-1068)))))
-((-2009 (((-1171) $) 37)) (-2190 (((-792) $) 89) (($ (-305)) 92) (($ (-588 (-305))) 91) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 88) (($ (-291 (-639))) 52) (($ (-291 (-637))) 66) (($ (-291 (-632))) 78) (($ (-270 (-291 (-639)))) 62) (($ (-270 (-291 (-637)))) 74) (($ (-270 (-291 (-632)))) 86) (($ (-291 (-522))) 96) (($ (-291 (-354))) 108) (($ (-291 (-154 (-354)))) 120) (($ (-270 (-291 (-522)))) 104) (($ (-270 (-291 (-354)))) 116) (($ (-270 (-291 (-154 (-354))))) 128)))
-(((-373 |#1| |#2| |#3| |#4|) (-13 (-370) (-10 -8 (-15 -2190 ($ (-305))) (-15 -2190 ($ (-588 (-305)))) (-15 -2190 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305)))))) (-15 -2190 ($ (-291 (-639)))) (-15 -2190 ($ (-291 (-637)))) (-15 -2190 ($ (-291 (-632)))) (-15 -2190 ($ (-270 (-291 (-639))))) (-15 -2190 ($ (-270 (-291 (-637))))) (-15 -2190 ($ (-270 (-291 (-632))))) (-15 -2190 ($ (-291 (-522)))) (-15 -2190 ($ (-291 (-354)))) (-15 -2190 ($ (-291 (-154 (-354))))) (-15 -2190 ($ (-270 (-291 (-522))))) (-15 -2190 ($ (-270 (-291 (-354))))) (-15 -2190 ($ (-270 (-291 (-154 (-354)))))))) (-1085) (-3 (|:| |fst| (-409)) (|:| -1367 "void")) (-588 (-1085)) (-1089)) (T -373))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-305)) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-291 (-639))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-291 (-637))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-291 (-632))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-270 (-291 (-639)))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-270 (-291 (-637)))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-270 (-291 (-632)))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-291 (-522))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-291 (-354))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-291 (-154 (-354)))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-270 (-291 (-522)))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-270 (-291 (-354)))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-270 (-291 (-154 (-354))))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))))
-(-13 (-370) (-10 -8 (-15 -2190 ($ (-305))) (-15 -2190 ($ (-588 (-305)))) (-15 -2190 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305)))))) (-15 -2190 ($ (-291 (-639)))) (-15 -2190 ($ (-291 (-637)))) (-15 -2190 ($ (-291 (-632)))) (-15 -2190 ($ (-270 (-291 (-639))))) (-15 -2190 ($ (-270 (-291 (-637))))) (-15 -2190 ($ (-270 (-291 (-632))))) (-15 -2190 ($ (-291 (-522)))) (-15 -2190 ($ (-291 (-354)))) (-15 -2190 ($ (-291 (-154 (-354))))) (-15 -2190 ($ (-270 (-291 (-522))))) (-15 -2190 ($ (-270 (-291 (-354))))) (-15 -2190 ($ (-270 (-291 (-154 (-354))))))))
-((-1416 (((-108) $ $) NIL)) (-2012 ((|#2| $) 36)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2638 (($ (-382 |#2|)) 84)) (-1320 (((-588 (-2 (|:| -1400 (-708)) (|:| -1893 |#2|) (|:| |num| |#2|))) $) 37)) (-2157 (($ $) 32) (($ $ (-708)) 34)) (-1431 (((-382 |#2|) $) 46)) (-2201 (($ (-588 (-2 (|:| -1400 (-708)) (|:| -1893 |#2|) (|:| |num| |#2|)))) 31)) (-2190 (((-792) $) 120)) (-2213 (($ $) 33) (($ $ (-708)) 35)) (-1531 (((-108) $ $) NIL)) (-1602 (($ |#2| $) 39)))
-(((-374 |#1| |#2|) (-13 (-1014) (-563 (-382 |#2|)) (-10 -8 (-15 -1602 ($ |#2| $)) (-15 -2638 ($ (-382 |#2|))) (-15 -2012 (|#2| $)) (-15 -1320 ((-588 (-2 (|:| -1400 (-708)) (|:| -1893 |#2|) (|:| |num| |#2|))) $)) (-15 -2201 ($ (-588 (-2 (|:| -1400 (-708)) (|:| -1893 |#2|) (|:| |num| |#2|))))) (-15 -2157 ($ $)) (-15 -2213 ($ $)) (-15 -2157 ($ $ (-708))) (-15 -2213 ($ $ (-708))))) (-13 (-338) (-135)) (-1142 |#1|)) (T -374))
-((-1602 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *2)) (-4 *2 (-1142 *3)))) (-2638 (*1 *1 *2) (-12 (-5 *2 (-382 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *4)))) (-2012 (*1 *2 *1) (-12 (-4 *2 (-1142 *3)) (-5 *1 (-374 *3 *2)) (-4 *3 (-13 (-338) (-135))))) (-1320 (*1 *2 *1) (-12 (-4 *3 (-13 (-338) (-135))) (-5 *2 (-588 (-2 (|:| -1400 (-708)) (|:| -1893 *4) (|:| |num| *4)))) (-5 *1 (-374 *3 *4)) (-4 *4 (-1142 *3)))) (-2201 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -1400 (-708)) (|:| -1893 *4) (|:| |num| *4)))) (-4 *4 (-1142 *3)) (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *4)))) (-2157 (*1 *1 *1) (-12 (-4 *2 (-13 (-338) (-135))) (-5 *1 (-374 *2 *3)) (-4 *3 (-1142 *2)))) (-2213 (*1 *1 *1) (-12 (-4 *2 (-13 (-338) (-135))) (-5 *1 (-374 *2 *3)) (-4 *3 (-1142 *2)))) (-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *4)) (-4 *4 (-1142 *3)))) (-2213 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *4)) (-4 *4 (-1142 *3)))))
-(-13 (-1014) (-563 (-382 |#2|)) (-10 -8 (-15 -1602 ($ |#2| $)) (-15 -2638 ($ (-382 |#2|))) (-15 -2012 (|#2| $)) (-15 -1320 ((-588 (-2 (|:| -1400 (-708)) (|:| -1893 |#2|) (|:| |num| |#2|))) $)) (-15 -2201 ($ (-588 (-2 (|:| -1400 (-708)) (|:| -1893 |#2|) (|:| |num| |#2|))))) (-15 -2157 ($ $)) (-15 -2213 ($ $)) (-15 -2157 ($ $ (-708))) (-15 -2213 ($ $ (-708)))))
-((-1416 (((-108) $ $) 9 (-3708 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))))) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 15 (|has| |#1| (-815 (-354)))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 14 (|has| |#1| (-815 (-522))))) (-2385 (((-1068) $) 13 (-3708 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))))) (-4151 (((-1032) $) 12 (-3708 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))))) (-2190 (((-792) $) 11 (-3708 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))))) (-1531 (((-108) $ $) 10 (-3708 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))))))
+((-4207 (((-588 (-1068)) (-588 (-1068))) 8)) (-2550 (((-1171) (-363)) 27)) (-1214 (((-1018) (-1085) (-588 (-1085)) (-1088) (-588 (-1085))) 59) (((-1018) (-1085) (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085)))) (-588 (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085))))) (-588 (-1085)) (-1085)) 35) (((-1018) (-1085) (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085)))) (-588 (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085))))) (-588 (-1085))) 34)))
+(((-372) (-10 -7 (-15 -1214 ((-1018) (-1085) (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085)))) (-588 (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085))))) (-588 (-1085)))) (-15 -1214 ((-1018) (-1085) (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085)))) (-588 (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085))))) (-588 (-1085)) (-1085))) (-15 -1214 ((-1018) (-1085) (-588 (-1085)) (-1088) (-588 (-1085)))) (-15 -2550 ((-1171) (-363))) (-15 -4207 ((-588 (-1068)) (-588 (-1068)))))) (T -372))
+((-4207 (*1 *2 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-372)))) (-2550 (*1 *2 *3) (-12 (-5 *3 (-363)) (-5 *2 (-1171)) (-5 *1 (-372)))) (-1214 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-588 (-1085))) (-5 *5 (-1088)) (-5 *3 (-1085)) (-5 *2 (-1018)) (-5 *1 (-372)))) (-1214 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-588 (-588 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-588 (-3 (|:| |array| (-588 *3)) (|:| |scalar| (-1085))))) (-5 *6 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1018)) (-5 *1 (-372)))) (-1214 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-588 (-588 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-588 (-3 (|:| |array| (-588 *3)) (|:| |scalar| (-1085))))) (-5 *6 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1018)) (-5 *1 (-372)))))
+(-10 -7 (-15 -1214 ((-1018) (-1085) (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085)))) (-588 (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085))))) (-588 (-1085)))) (-15 -1214 ((-1018) (-1085) (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085)))) (-588 (-588 (-3 (|:| |array| (-588 (-1085))) (|:| |scalar| (-1085))))) (-588 (-1085)) (-1085))) (-15 -1214 ((-1018) (-1085) (-588 (-1085)) (-1088) (-588 (-1085)))) (-15 -2550 ((-1171) (-363))) (-15 -4207 ((-588 (-1068)) (-588 (-1068)))))
+((-2550 (((-1171) $) 37)) (-2217 (((-792) $) 89) (($ (-305)) 92) (($ (-588 (-305))) 91) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 88) (($ (-291 (-639))) 52) (($ (-291 (-637))) 66) (($ (-291 (-632))) 78) (($ (-270 (-291 (-639)))) 62) (($ (-270 (-291 (-637)))) 74) (($ (-270 (-291 (-632)))) 86) (($ (-291 (-522))) 96) (($ (-291 (-354))) 108) (($ (-291 (-154 (-354)))) 120) (($ (-270 (-291 (-522)))) 104) (($ (-270 (-291 (-354)))) 116) (($ (-270 (-291 (-154 (-354))))) 128)))
+(((-373 |#1| |#2| |#3| |#4|) (-13 (-370) (-10 -8 (-15 -2217 ($ (-305))) (-15 -2217 ($ (-588 (-305)))) (-15 -2217 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305)))))) (-15 -2217 ($ (-291 (-639)))) (-15 -2217 ($ (-291 (-637)))) (-15 -2217 ($ (-291 (-632)))) (-15 -2217 ($ (-270 (-291 (-639))))) (-15 -2217 ($ (-270 (-291 (-637))))) (-15 -2217 ($ (-270 (-291 (-632))))) (-15 -2217 ($ (-291 (-522)))) (-15 -2217 ($ (-291 (-354)))) (-15 -2217 ($ (-291 (-154 (-354))))) (-15 -2217 ($ (-270 (-291 (-522))))) (-15 -2217 ($ (-270 (-291 (-354))))) (-15 -2217 ($ (-270 (-291 (-154 (-354)))))))) (-1085) (-3 (|:| |fst| (-409)) (|:| -1350 "void")) (-588 (-1085)) (-1089)) (T -373))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-305)) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-291 (-639))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-291 (-637))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-291 (-632))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-270 (-291 (-639)))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-270 (-291 (-637)))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-270 (-291 (-632)))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-291 (-522))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-291 (-354))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-291 (-154 (-354)))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-270 (-291 (-522)))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-270 (-291 (-354)))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-270 (-291 (-154 (-354))))) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-14 *5 (-588 (-1085))) (-14 *6 (-1089)))))
+(-13 (-370) (-10 -8 (-15 -2217 ($ (-305))) (-15 -2217 ($ (-588 (-305)))) (-15 -2217 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305)))))) (-15 -2217 ($ (-291 (-639)))) (-15 -2217 ($ (-291 (-637)))) (-15 -2217 ($ (-291 (-632)))) (-15 -2217 ($ (-270 (-291 (-639))))) (-15 -2217 ($ (-270 (-291 (-637))))) (-15 -2217 ($ (-270 (-291 (-632))))) (-15 -2217 ($ (-291 (-522)))) (-15 -2217 ($ (-291 (-354)))) (-15 -2217 ($ (-291 (-154 (-354))))) (-15 -2217 ($ (-270 (-291 (-522))))) (-15 -2217 ($ (-270 (-291 (-354))))) (-15 -2217 ($ (-270 (-291 (-154 (-354))))))))
+((-1419 (((-108) $ $) NIL)) (-3389 ((|#2| $) 36)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2444 (($ (-382 |#2|)) 84)) (-1898 (((-588 (-2 (|:| -3858 (-708)) (|:| -1980 |#2|) (|:| |num| |#2|))) $) 37)) (-2731 (($ $) 32) (($ $ (-708)) 34)) (-3873 (((-382 |#2|) $) 46)) (-2227 (($ (-588 (-2 (|:| -3858 (-708)) (|:| -1980 |#2|) (|:| |num| |#2|)))) 31)) (-2217 (((-792) $) 120)) (-2252 (($ $) 33) (($ $ (-708)) 35)) (-1562 (((-108) $ $) NIL)) (-1661 (($ |#2| $) 39)))
+(((-374 |#1| |#2|) (-13 (-1014) (-563 (-382 |#2|)) (-10 -8 (-15 -1661 ($ |#2| $)) (-15 -2444 ($ (-382 |#2|))) (-15 -3389 (|#2| $)) (-15 -1898 ((-588 (-2 (|:| -3858 (-708)) (|:| -1980 |#2|) (|:| |num| |#2|))) $)) (-15 -2227 ($ (-588 (-2 (|:| -3858 (-708)) (|:| -1980 |#2|) (|:| |num| |#2|))))) (-15 -2731 ($ $)) (-15 -2252 ($ $)) (-15 -2731 ($ $ (-708))) (-15 -2252 ($ $ (-708))))) (-13 (-338) (-135)) (-1142 |#1|)) (T -374))
+((-1661 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *2)) (-4 *2 (-1142 *3)))) (-2444 (*1 *1 *2) (-12 (-5 *2 (-382 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *4)))) (-3389 (*1 *2 *1) (-12 (-4 *2 (-1142 *3)) (-5 *1 (-374 *3 *2)) (-4 *3 (-13 (-338) (-135))))) (-1898 (*1 *2 *1) (-12 (-4 *3 (-13 (-338) (-135))) (-5 *2 (-588 (-2 (|:| -3858 (-708)) (|:| -1980 *4) (|:| |num| *4)))) (-5 *1 (-374 *3 *4)) (-4 *4 (-1142 *3)))) (-2227 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -3858 (-708)) (|:| -1980 *4) (|:| |num| *4)))) (-4 *4 (-1142 *3)) (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *4)))) (-2731 (*1 *1 *1) (-12 (-4 *2 (-13 (-338) (-135))) (-5 *1 (-374 *2 *3)) (-4 *3 (-1142 *2)))) (-2252 (*1 *1 *1) (-12 (-4 *2 (-13 (-338) (-135))) (-5 *1 (-374 *2 *3)) (-4 *3 (-1142 *2)))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *4)) (-4 *4 (-1142 *3)))) (-2252 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *4)) (-4 *4 (-1142 *3)))))
+(-13 (-1014) (-563 (-382 |#2|)) (-10 -8 (-15 -1661 ($ |#2| $)) (-15 -2444 ($ (-382 |#2|))) (-15 -3389 (|#2| $)) (-15 -1898 ((-588 (-2 (|:| -3858 (-708)) (|:| -1980 |#2|) (|:| |num| |#2|))) $)) (-15 -2227 ($ (-588 (-2 (|:| -3858 (-708)) (|:| -1980 |#2|) (|:| |num| |#2|))))) (-15 -2731 ($ $)) (-15 -2252 ($ $)) (-15 -2731 ($ $ (-708))) (-15 -2252 ($ $ (-708)))))
+((-1419 (((-108) $ $) 9 (-3844 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))))) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 15 (|has| |#1| (-815 (-354)))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 14 (|has| |#1| (-815 (-522))))) (-2311 (((-1068) $) 13 (-3844 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))))) (-4174 (((-1032) $) 12 (-3844 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))))) (-2217 (((-792) $) 11 (-3844 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))))) (-1562 (((-108) $ $) 10 (-3844 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))))))
(((-375 |#1|) (-1197) (-1120)) (T -375))
NIL
(-13 (-1120) (-10 -7 (IF (|has| |t#1| (-815 (-522))) (-6 (-815 (-522))) |%noBranch|) (IF (|has| |t#1| (-815 (-354))) (-6 (-815 (-354))) |%noBranch|)))
-(((-97) -3708 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))) ((-562 (-792)) -3708 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))) ((-815 (-354)) |has| |#1| (-815 (-354))) ((-815 (-522)) |has| |#1| (-815 (-522))) ((-1014) -3708 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))) ((-1120) . T))
-((-2111 (($ $) 10) (($ $ (-708)) 11)))
-(((-376 |#1|) (-10 -8 (-15 -2111 (|#1| |#1| (-708))) (-15 -2111 (|#1| |#1|))) (-377)) (T -376))
+(((-97) -3844 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))) ((-562 (-792)) -3844 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))) ((-815 (-354)) |has| |#1| (-815 (-354))) ((-815 (-522)) |has| |#1| (-815 (-522))) ((-1014) -3844 (|has| |#1| (-815 (-522))) (|has| |#1| (-815 (-354)))) ((-1120) . T))
+((-1380 (($ $) 10) (($ $ (-708)) 11)))
+(((-376 |#1|) (-10 -8 (-15 -1380 (|#1| |#1| (-708))) (-15 -1380 (|#1| |#1|))) (-377)) (T -376))
NIL
-(-10 -8 (-15 -2111 (|#1| |#1| (-708))) (-15 -2111 (|#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 73)) (-3450 (((-393 $) $) 72)) (-1687 (((-108) $ $) 59)) (-3175 (($) 17 T CONST)) (-2277 (($ $ $) 55)) (-2682 (((-3 $ "failed") $) 34)) (-2254 (($ $ $) 56)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-2111 (($ $) 79) (($ $ (-708)) 78)) (-2813 (((-108) $) 71)) (-3714 (((-770 (-850)) $) 81)) (-2782 (((-108) $) 31)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 70)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-1916 (((-393 $) $) 74)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-3730 (((-708) $) 58)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57)) (-3018 (((-3 (-708) "failed") $ $) 80)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65)) (-2143 (((-3 $ "failed") $) 82)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ $) 64)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66)))
+(-10 -8 (-15 -1380 (|#1| |#1| (-708))) (-15 -1380 (|#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 73)) (-3133 (((-393 $) $) 72)) (-2805 (((-108) $ $) 59)) (-3367 (($) 17 T CONST)) (-2333 (($ $ $) 55)) (-3920 (((-3 $ "failed") $) 34)) (-2303 (($ $ $) 56)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-1380 (($ $) 79) (($ $ (-708)) 78)) (-2725 (((-108) $) 71)) (-3872 (((-770 (-850)) $) 81)) (-2859 (((-108) $) 31)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 70)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-2006 (((-393 $) $) 74)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-4031 (((-708) $) 58)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57)) (-1304 (((-3 (-708) "failed") $ $) 80)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65)) (-3040 (((-3 $ "failed") $) 82)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ $) 64)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66)))
(((-377) (-1197)) (T -377))
-((-3714 (*1 *2 *1) (-12 (-4 *1 (-377)) (-5 *2 (-770 (-850))))) (-3018 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-377)) (-5 *2 (-708)))) (-2111 (*1 *1 *1) (-4 *1 (-377))) (-2111 (*1 *1 *1 *2) (-12 (-4 *1 (-377)) (-5 *2 (-708)))))
-(-13 (-338) (-133) (-10 -8 (-15 -3714 ((-770 (-850)) $)) (-15 -3018 ((-3 (-708) "failed") $ $)) (-15 -2111 ($ $)) (-15 -2111 ($ $ (-708)))))
+((-3872 (*1 *2 *1) (-12 (-4 *1 (-377)) (-5 *2 (-770 (-850))))) (-1304 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-377)) (-5 *2 (-708)))) (-1380 (*1 *1 *1) (-4 *1 (-377))) (-1380 (*1 *1 *1 *2) (-12 (-4 *1 (-377)) (-5 *2 (-708)))))
+(-13 (-338) (-133) (-10 -8 (-15 -3872 ((-770 (-850)) $)) (-15 -1304 ((-3 (-708) "failed") $ $)) (-15 -1380 ($ $)) (-15 -1380 ($ $ (-708)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-133) . T) ((-562 (-792)) . T) ((-157) . T) ((-220) . T) ((-266) . T) ((-283) . T) ((-338) . T) ((-426) . T) ((-514) . T) ((-590 #0#) . T) ((-590 $) . T) ((-655 #0#) . T) ((-655 $) . T) ((-664) . T) ((-849) . T) ((-977 #0#) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) . T))
-((-3071 (($ (-522) (-522)) 11) (($ (-522) (-522) (-850)) NIL)) (-2615 (((-850)) 16) (((-850) (-850)) NIL)))
-(((-378 |#1|) (-10 -8 (-15 -2615 ((-850) (-850))) (-15 -2615 ((-850))) (-15 -3071 (|#1| (-522) (-522) (-850))) (-15 -3071 (|#1| (-522) (-522)))) (-379)) (T -378))
-((-2615 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-378 *3)) (-4 *3 (-379)))) (-2615 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-378 *3)) (-4 *3 (-379)))))
-(-10 -8 (-15 -2615 ((-850) (-850))) (-15 -2615 ((-850))) (-15 -3071 (|#1| (-522) (-522) (-850))) (-15 -3071 (|#1| (-522) (-522))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2229 (((-522) $) 89)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-2789 (($ $) 87)) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 73)) (-3450 (((-393 $) $) 72)) (-1929 (($ $) 97)) (-1687 (((-108) $ $) 59)) (-1341 (((-522) $) 114)) (-3175 (($) 17 T CONST)) (-2599 (($ $) 86)) (-1297 (((-3 (-522) "failed") $) 102) (((-3 (-382 (-522)) "failed") $) 99)) (-1484 (((-522) $) 101) (((-382 (-522)) $) 98)) (-2277 (($ $ $) 55)) (-2682 (((-3 $ "failed") $) 34)) (-2254 (($ $ $) 56)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-2813 (((-108) $) 71)) (-2175 (((-850)) 130) (((-850) (-850)) 127 (|has| $ (-6 -4229)))) (-3687 (((-108) $) 112)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 93)) (-3714 (((-522) $) 136)) (-2782 (((-108) $) 31)) (-1504 (($ $ (-522)) 96)) (-2100 (($ $) 92)) (-2556 (((-108) $) 113)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2814 (($ $ $) 111) (($) 124 (-12 (-2401 (|has| $ (-6 -4229))) (-2401 (|has| $ (-6 -4221)))))) (-2446 (($ $ $) 110) (($) 123 (-12 (-2401 (|has| $ (-6 -4229))) (-2401 (|has| $ (-6 -4221)))))) (-3357 (((-522) $) 133)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 70)) (-1941 (((-850) (-522)) 126 (|has| $ (-6 -4229)))) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-3933 (($ $) 88)) (-3686 (($ $) 90)) (-3071 (($ (-522) (-522)) 138) (($ (-522) (-522) (-850)) 137)) (-1916 (((-393 $) $) 74)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-1400 (((-522) $) 134)) (-3730 (((-708) $) 58)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57)) (-2615 (((-850)) 131) (((-850) (-850)) 128 (|has| $ (-6 -4229)))) (-2349 (((-850) (-522)) 125 (|has| $ (-6 -4229)))) (-1431 (((-354) $) 105) (((-202) $) 104) (((-821 (-354)) $) 94)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65) (($ (-522)) 103) (($ (-382 (-522))) 100)) (-2323 (((-708)) 29)) (-3025 (($ $) 91)) (-3836 (((-850)) 132) (((-850) (-850)) 129 (|has| $ (-6 -4229)))) (-3355 (((-850)) 135)) (-3958 (((-108) $ $) 39)) (-2241 (($ $) 115)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1574 (((-108) $ $) 108)) (-1558 (((-108) $ $) 107)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 109)) (-1549 (((-108) $ $) 106)) (-1620 (($ $ $) 64)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68) (($ $ (-382 (-522))) 95)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66)))
+((-3173 (($ (-522) (-522)) 11) (($ (-522) (-522) (-850)) NIL)) (-3353 (((-850)) 16) (((-850) (-850)) NIL)))
+(((-378 |#1|) (-10 -8 (-15 -3353 ((-850) (-850))) (-15 -3353 ((-850))) (-15 -3173 (|#1| (-522) (-522) (-850))) (-15 -3173 (|#1| (-522) (-522)))) (-379)) (T -378))
+((-3353 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-378 *3)) (-4 *3 (-379)))) (-3353 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-378 *3)) (-4 *3 (-379)))))
+(-10 -8 (-15 -3353 ((-850) (-850))) (-15 -3353 ((-850))) (-15 -3173 (|#1| (-522) (-522) (-850))) (-15 -3173 (|#1| (-522) (-522))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3049 (((-522) $) 89)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-3495 (($ $) 87)) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 73)) (-3133 (((-393 $) $) 72)) (-2016 (($ $) 97)) (-2805 (((-108) $ $) 59)) (-3355 (((-522) $) 114)) (-3367 (($) 17 T CONST)) (-1943 (($ $) 86)) (-3700 (((-3 (-522) "failed") $) 102) (((-3 (-382 (-522)) "failed") $) 99)) (-1478 (((-522) $) 101) (((-382 (-522)) $) 98)) (-2333 (($ $ $) 55)) (-3920 (((-3 $ "failed") $) 34)) (-2303 (($ $ $) 56)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-2725 (((-108) $) 71)) (-3684 (((-850)) 130) (((-850) (-850)) 127 (|has| $ (-6 -4229)))) (-3603 (((-108) $) 112)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 93)) (-3872 (((-522) $) 136)) (-2859 (((-108) $) 31)) (-1811 (($ $ (-522)) 96)) (-1269 (($ $) 92)) (-3740 (((-108) $) 113)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-1308 (($ $ $) 111) (($) 124 (-12 (-2473 (|has| $ (-6 -4229))) (-2473 (|has| $ (-6 -4221)))))) (-2524 (($ $ $) 110) (($) 123 (-12 (-2473 (|has| $ (-6 -4229))) (-2473 (|has| $ (-6 -4221)))))) (-3451 (((-522) $) 133)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 70)) (-1494 (((-850) (-522)) 126 (|has| $ (-6 -4229)))) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-4194 (($ $) 88)) (-3592 (($ $) 90)) (-3173 (($ (-522) (-522)) 138) (($ (-522) (-522) (-850)) 137)) (-2006 (((-393 $) $) 74)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-3858 (((-522) $) 134)) (-4031 (((-708) $) 58)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57)) (-3353 (((-850)) 131) (((-850) (-850)) 128 (|has| $ (-6 -4229)))) (-1688 (((-850) (-522)) 125 (|has| $ (-6 -4229)))) (-3873 (((-354) $) 105) (((-202) $) 104) (((-821 (-354)) $) 94)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65) (($ (-522)) 103) (($ (-382 (-522))) 100)) (-2742 (((-708)) 29)) (-1379 (($ $) 91)) (-2780 (((-850)) 132) (((-850) (-850)) 129 (|has| $ (-6 -4229)))) (-1897 (((-850)) 135)) (-1407 (((-108) $ $) 39)) (-4126 (($ $) 115)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1623 (((-108) $ $) 108)) (-1597 (((-108) $ $) 107)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 109)) (-1587 (((-108) $ $) 106)) (-1682 (($ $ $) 64)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68) (($ $ (-382 (-522))) 95)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66)))
(((-379) (-1197)) (T -379))
-((-3071 (*1 *1 *2 *2) (-12 (-5 *2 (-522)) (-4 *1 (-379)))) (-3071 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-522)) (-5 *3 (-850)) (-4 *1 (-379)))) (-3714 (*1 *2 *1) (-12 (-4 *1 (-379)) (-5 *2 (-522)))) (-3355 (*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850)))) (-1400 (*1 *2 *1) (-12 (-4 *1 (-379)) (-5 *2 (-522)))) (-3357 (*1 *2 *1) (-12 (-4 *1 (-379)) (-5 *2 (-522)))) (-3836 (*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850)))) (-2615 (*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850)))) (-2175 (*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850)))) (-3836 (*1 *2 *2) (-12 (-5 *2 (-850)) (|has| *1 (-6 -4229)) (-4 *1 (-379)))) (-2615 (*1 *2 *2) (-12 (-5 *2 (-850)) (|has| *1 (-6 -4229)) (-4 *1 (-379)))) (-2175 (*1 *2 *2) (-12 (-5 *2 (-850)) (|has| *1 (-6 -4229)) (-4 *1 (-379)))) (-1941 (*1 *2 *3) (-12 (-5 *3 (-522)) (|has| *1 (-6 -4229)) (-4 *1 (-379)) (-5 *2 (-850)))) (-2349 (*1 *2 *3) (-12 (-5 *3 (-522)) (|has| *1 (-6 -4229)) (-4 *1 (-379)) (-5 *2 (-850)))) (-2814 (*1 *1) (-12 (-4 *1 (-379)) (-2401 (|has| *1 (-6 -4229))) (-2401 (|has| *1 (-6 -4221))))) (-2446 (*1 *1) (-12 (-4 *1 (-379)) (-2401 (|has| *1 (-6 -4229))) (-2401 (|has| *1 (-6 -4221))))))
-(-13 (-980) (-10 -8 (-6 -3898) (-15 -3071 ($ (-522) (-522))) (-15 -3071 ($ (-522) (-522) (-850))) (-15 -3714 ((-522) $)) (-15 -3355 ((-850))) (-15 -1400 ((-522) $)) (-15 -3357 ((-522) $)) (-15 -3836 ((-850))) (-15 -2615 ((-850))) (-15 -2175 ((-850))) (IF (|has| $ (-6 -4229)) (PROGN (-15 -3836 ((-850) (-850))) (-15 -2615 ((-850) (-850))) (-15 -2175 ((-850) (-850))) (-15 -1941 ((-850) (-522))) (-15 -2349 ((-850) (-522)))) |%noBranch|) (IF (|has| $ (-6 -4221)) |%noBranch| (IF (|has| $ (-6 -4229)) |%noBranch| (PROGN (-15 -2814 ($)) (-15 -2446 ($)))))))
+((-3173 (*1 *1 *2 *2) (-12 (-5 *2 (-522)) (-4 *1 (-379)))) (-3173 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-522)) (-5 *3 (-850)) (-4 *1 (-379)))) (-3872 (*1 *2 *1) (-12 (-4 *1 (-379)) (-5 *2 (-522)))) (-1897 (*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850)))) (-3858 (*1 *2 *1) (-12 (-4 *1 (-379)) (-5 *2 (-522)))) (-3451 (*1 *2 *1) (-12 (-4 *1 (-379)) (-5 *2 (-522)))) (-2780 (*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850)))) (-3353 (*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850)))) (-3684 (*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850)))) (-2780 (*1 *2 *2) (-12 (-5 *2 (-850)) (|has| *1 (-6 -4229)) (-4 *1 (-379)))) (-3353 (*1 *2 *2) (-12 (-5 *2 (-850)) (|has| *1 (-6 -4229)) (-4 *1 (-379)))) (-3684 (*1 *2 *2) (-12 (-5 *2 (-850)) (|has| *1 (-6 -4229)) (-4 *1 (-379)))) (-1494 (*1 *2 *3) (-12 (-5 *3 (-522)) (|has| *1 (-6 -4229)) (-4 *1 (-379)) (-5 *2 (-850)))) (-1688 (*1 *2 *3) (-12 (-5 *3 (-522)) (|has| *1 (-6 -4229)) (-4 *1 (-379)) (-5 *2 (-850)))) (-1308 (*1 *1) (-12 (-4 *1 (-379)) (-2473 (|has| *1 (-6 -4229))) (-2473 (|has| *1 (-6 -4221))))) (-2524 (*1 *1) (-12 (-4 *1 (-379)) (-2473 (|has| *1 (-6 -4229))) (-2473 (|has| *1 (-6 -4221))))))
+(-13 (-980) (-10 -8 (-6 -3996) (-15 -3173 ($ (-522) (-522))) (-15 -3173 ($ (-522) (-522) (-850))) (-15 -3872 ((-522) $)) (-15 -1897 ((-850))) (-15 -3858 ((-522) $)) (-15 -3451 ((-522) $)) (-15 -2780 ((-850))) (-15 -3353 ((-850))) (-15 -3684 ((-850))) (IF (|has| $ (-6 -4229)) (PROGN (-15 -2780 ((-850) (-850))) (-15 -3353 ((-850) (-850))) (-15 -3684 ((-850) (-850))) (-15 -1494 ((-850) (-522))) (-15 -1688 ((-850) (-522)))) |%noBranch|) (IF (|has| $ (-6 -4221)) |%noBranch| (IF (|has| $ (-6 -4229)) |%noBranch| (PROGN (-15 -1308 ($)) (-15 -2524 ($)))))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-135) . T) ((-562 (-792)) . T) ((-157) . T) ((-563 (-202)) . T) ((-563 (-354)) . T) ((-563 (-821 (-354))) . T) ((-220) . T) ((-266) . T) ((-283) . T) ((-338) . T) ((-426) . T) ((-514) . T) ((-590 #0#) . T) ((-590 $) . T) ((-655 #0#) . T) ((-655 $) . T) ((-664) . T) ((-728) . T) ((-729) . T) ((-731) . T) ((-732) . T) ((-782) . T) ((-784) . T) ((-815 (-354)) . T) ((-849) . T) ((-928) . T) ((-947) . T) ((-980) . T) ((-962 (-382 (-522))) . T) ((-962 (-522)) . T) ((-977 #0#) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) . T))
-((-1391 (((-393 |#2|) (-1 |#2| |#1|) (-393 |#1|)) 20)))
-(((-380 |#1| |#2|) (-10 -7 (-15 -1391 ((-393 |#2|) (-1 |#2| |#1|) (-393 |#1|)))) (-514) (-514)) (T -380))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-393 *5)) (-4 *5 (-514)) (-4 *6 (-514)) (-5 *2 (-393 *6)) (-5 *1 (-380 *5 *6)))))
-(-10 -7 (-15 -1391 ((-393 |#2|) (-1 |#2| |#1|) (-393 |#1|))))
-((-1391 (((-382 |#2|) (-1 |#2| |#1|) (-382 |#1|)) 13)))
-(((-381 |#1| |#2|) (-10 -7 (-15 -1391 ((-382 |#2|) (-1 |#2| |#1|) (-382 |#1|)))) (-514) (-514)) (T -381))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-382 *5)) (-4 *5 (-514)) (-4 *6 (-514)) (-5 *2 (-382 *6)) (-5 *1 (-381 *5 *6)))))
-(-10 -7 (-15 -1391 ((-382 |#2|) (-1 |#2| |#1|) (-382 |#1|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 13)) (-2229 ((|#1| $) 21 (|has| |#1| (-283)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL (|has| |#1| (-757)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) 17) (((-3 (-1085) "failed") $) NIL (|has| |#1| (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) 70 (|has| |#1| (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522))))) (-1484 ((|#1| $) 15) (((-1085) $) NIL (|has| |#1| (-962 (-1085)))) (((-382 (-522)) $) 67 (|has| |#1| (-962 (-522)))) (((-522) $) NIL (|has| |#1| (-962 (-522))))) (-2277 (($ $ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) 50)) (-3255 (($) NIL (|has| |#1| (-507)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-3687 (((-108) $) NIL (|has| |#1| (-757)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| |#1| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| |#1| (-815 (-354))))) (-2782 (((-108) $) 64)) (-2902 (($ $) NIL)) (-2805 ((|#1| $) 71)) (-3004 (((-3 $ "failed") $) NIL (|has| |#1| (-1061)))) (-2556 (((-108) $) NIL (|has| |#1| (-757)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| |#1| (-1061)) CONST)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 97)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3933 (($ $) NIL (|has| |#1| (-283)))) (-3686 ((|#1| $) 28 (|has| |#1| (-507)))) (-3729 (((-393 (-1081 $)) (-1081 $)) 133 (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) 129 (|has| |#1| (-838)))) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2289 (($ $ (-588 |#1|) (-588 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) NIL (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-483 (-1085) |#1|)))) (-3730 (((-708) $) NIL)) (-2545 (($ $ |#1|) NIL (|has| |#1| (-262 |#1| |#1|)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2157 (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) 63)) (-3533 (($ $) NIL)) (-2816 ((|#1| $) 73)) (-1431 (((-821 (-522)) $) NIL (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| |#1| (-563 (-821 (-354))))) (((-498) $) NIL (|has| |#1| (-563 (-498)))) (((-354) $) NIL (|has| |#1| (-947))) (((-202) $) NIL (|has| |#1| (-947)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 113 (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) 10) (($ (-1085)) NIL (|has| |#1| (-962 (-1085))))) (-2143 (((-3 $ "failed") $) 99 (-3708 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) 100)) (-3025 ((|#1| $) 26 (|has| |#1| (-507)))) (-3958 (((-108) $ $) NIL)) (-2241 (($ $) NIL (|has| |#1| (-757)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 22 T CONST)) (-3577 (($) 8 T CONST)) (-4149 (((-1068) $) 43 (-12 (|has| |#1| (-507)) (|has| |#1| (-765)))) (((-1068) $ (-108)) 44 (-12 (|has| |#1| (-507)) (|has| |#1| (-765)))) (((-1171) (-759) $) 45 (-12 (|has| |#1| (-507)) (|has| |#1| (-765)))) (((-1171) (-759) $ (-108)) 46 (-12 (|has| |#1| (-507)) (|has| |#1| (-765))))) (-2213 (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) 56)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) 24 (|has| |#1| (-784)))) (-1620 (($ $ $) 124) (($ |#1| |#1|) 52)) (-1612 (($ $) 25) (($ $ $) 55)) (-1602 (($ $ $) 53)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 123)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 60) (($ $ $) 57) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ |#1| $) 61) (($ $ |#1|) 85)))
+((-3810 (((-393 |#2|) (-1 |#2| |#1|) (-393 |#1|)) 20)))
+(((-380 |#1| |#2|) (-10 -7 (-15 -3810 ((-393 |#2|) (-1 |#2| |#1|) (-393 |#1|)))) (-514) (-514)) (T -380))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-393 *5)) (-4 *5 (-514)) (-4 *6 (-514)) (-5 *2 (-393 *6)) (-5 *1 (-380 *5 *6)))))
+(-10 -7 (-15 -3810 ((-393 |#2|) (-1 |#2| |#1|) (-393 |#1|))))
+((-3810 (((-382 |#2|) (-1 |#2| |#1|) (-382 |#1|)) 13)))
+(((-381 |#1| |#2|) (-10 -7 (-15 -3810 ((-382 |#2|) (-1 |#2| |#1|) (-382 |#1|)))) (-514) (-514)) (T -381))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-382 *5)) (-4 *5 (-514)) (-4 *6 (-514)) (-5 *2 (-382 *6)) (-5 *1 (-381 *5 *6)))))
+(-10 -7 (-15 -3810 ((-382 |#2|) (-1 |#2| |#1|) (-382 |#1|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 13)) (-3049 ((|#1| $) 21 (|has| |#1| (-283)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL (|has| |#1| (-757)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) 17) (((-3 (-1085) "failed") $) NIL (|has| |#1| (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) 70 (|has| |#1| (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522))))) (-1478 ((|#1| $) 15) (((-1085) $) NIL (|has| |#1| (-962 (-1085)))) (((-382 (-522)) $) 67 (|has| |#1| (-962 (-522)))) (((-522) $) NIL (|has| |#1| (-962 (-522))))) (-2333 (($ $ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) 50)) (-3344 (($) NIL (|has| |#1| (-507)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3603 (((-108) $) NIL (|has| |#1| (-757)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| |#1| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| |#1| (-815 (-354))))) (-2859 (((-108) $) 64)) (-1558 (($ $) NIL)) (-2947 ((|#1| $) 71)) (-4208 (((-3 $ "failed") $) NIL (|has| |#1| (-1061)))) (-3740 (((-108) $) NIL (|has| |#1| (-757)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| |#1| (-1061)) CONST)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 97)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4194 (($ $) NIL (|has| |#1| (-283)))) (-3592 ((|#1| $) 28 (|has| |#1| (-507)))) (-4022 (((-393 (-1081 $)) (-1081 $)) 133 (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) 129 (|has| |#1| (-838)))) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2330 (($ $ (-588 |#1|) (-588 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) NIL (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-483 (-1085) |#1|)))) (-4031 (((-708) $) NIL)) (-2683 (($ $ |#1|) NIL (|has| |#1| (-262 |#1| |#1|)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2731 (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) 63)) (-2762 (($ $) NIL)) (-2959 ((|#1| $) 73)) (-3873 (((-821 (-522)) $) NIL (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| |#1| (-563 (-821 (-354))))) (((-498) $) NIL (|has| |#1| (-563 (-498)))) (((-354) $) NIL (|has| |#1| (-947))) (((-202) $) NIL (|has| |#1| (-947)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 113 (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) 10) (($ (-1085)) NIL (|has| |#1| (-962 (-1085))))) (-3040 (((-3 $ "failed") $) 99 (-3844 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) 100)) (-1379 ((|#1| $) 26 (|has| |#1| (-507)))) (-1407 (((-108) $ $) NIL)) (-4126 (($ $) NIL (|has| |#1| (-757)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 22 T CONST)) (-3709 (($) 8 T CONST)) (-2810 (((-1068) $) 43 (-12 (|has| |#1| (-507)) (|has| |#1| (-765)))) (((-1068) $ (-108)) 44 (-12 (|has| |#1| (-507)) (|has| |#1| (-765)))) (((-1171) (-759) $) 45 (-12 (|has| |#1| (-507)) (|has| |#1| (-765)))) (((-1171) (-759) $ (-108)) 46 (-12 (|has| |#1| (-507)) (|has| |#1| (-765))))) (-2252 (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) 56)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) 24 (|has| |#1| (-784)))) (-1682 (($ $ $) 124) (($ |#1| |#1|) 52)) (-1672 (($ $) 25) (($ $ $) 55)) (-1661 (($ $ $) 53)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 123)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 60) (($ $ $) 57) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ |#1| $) 61) (($ $ |#1|) 85)))
(((-382 |#1|) (-13 (-919 |#1|) (-10 -7 (IF (|has| |#1| (-507)) (IF (|has| |#1| (-765)) (-6 (-765)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4225)) (IF (|has| |#1| (-426)) (IF (|has| |#1| (-6 -4236)) (-6 -4225) |%noBranch|) |%noBranch|) |%noBranch|))) (-514)) (T -382))
NIL
(-13 (-919 |#1|) (-10 -7 (IF (|has| |#1| (-507)) (IF (|has| |#1| (-765)) (-6 (-765)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4225)) (IF (|has| |#1| (-426)) (IF (|has| |#1| (-6 -4236)) (-6 -4225) |%noBranch|) |%noBranch|) |%noBranch|)))
-((-3174 (((-628 |#2|) (-1166 $)) NIL) (((-628 |#2|)) 18)) (-3766 (($ (-1166 |#2|) (-1166 $)) NIL) (($ (-1166 |#2|)) 26)) (-2109 (((-628 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) $) 22)) (-1712 ((|#3| $) 59)) (-2769 ((|#2| (-1166 $)) NIL) ((|#2|) 20)) (-3677 (((-1166 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) (-1166 $) (-1166 $)) NIL) (((-1166 |#2|) $) NIL) (((-628 |#2|) (-1166 $)) 24)) (-1431 (((-1166 |#2|) $) 11) (($ (-1166 |#2|)) 13)) (-2051 ((|#3| $) 51)))
-(((-383 |#1| |#2| |#3|) (-10 -8 (-15 -2109 ((-628 |#2|) |#1|)) (-15 -2769 (|#2|)) (-15 -3174 ((-628 |#2|))) (-15 -1431 (|#1| (-1166 |#2|))) (-15 -1431 ((-1166 |#2|) |#1|)) (-15 -3766 (|#1| (-1166 |#2|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1|)) (-15 -1712 (|#3| |#1|)) (-15 -2051 (|#3| |#1|)) (-15 -3174 ((-628 |#2|) (-1166 |#1|))) (-15 -2769 (|#2| (-1166 |#1|))) (-15 -3766 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -2109 ((-628 |#2|) |#1| (-1166 |#1|)))) (-384 |#2| |#3|) (-157) (-1142 |#2|)) (T -383))
-((-3174 (*1 *2) (-12 (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-628 *4)) (-5 *1 (-383 *3 *4 *5)) (-4 *3 (-384 *4 *5)))) (-2769 (*1 *2) (-12 (-4 *4 (-1142 *2)) (-4 *2 (-157)) (-5 *1 (-383 *3 *2 *4)) (-4 *3 (-384 *2 *4)))))
-(-10 -8 (-15 -2109 ((-628 |#2|) |#1|)) (-15 -2769 (|#2|)) (-15 -3174 ((-628 |#2|))) (-15 -1431 (|#1| (-1166 |#2|))) (-15 -1431 ((-1166 |#2|) |#1|)) (-15 -3766 (|#1| (-1166 |#2|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1|)) (-15 -1712 (|#3| |#1|)) (-15 -2051 (|#3| |#1|)) (-15 -3174 ((-628 |#2|) (-1166 |#1|))) (-15 -2769 (|#2| (-1166 |#1|))) (-15 -3766 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -2109 ((-628 |#2|) |#1| (-1166 |#1|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-3174 (((-628 |#1|) (-1166 $)) 46) (((-628 |#1|)) 61)) (-1865 ((|#1| $) 52)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-3766 (($ (-1166 |#1|) (-1166 $)) 48) (($ (-1166 |#1|)) 64)) (-2109 (((-628 |#1|) $ (-1166 $)) 53) (((-628 |#1|) $) 59)) (-2682 (((-3 $ "failed") $) 34)) (-3166 (((-850)) 54)) (-2782 (((-108) $) 31)) (-2100 ((|#1| $) 51)) (-1712 ((|#2| $) 44 (|has| |#1| (-338)))) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2769 ((|#1| (-1166 $)) 47) ((|#1|) 60)) (-3677 (((-1166 |#1|) $ (-1166 $)) 50) (((-628 |#1|) (-1166 $) (-1166 $)) 49) (((-1166 |#1|) $) 66) (((-628 |#1|) (-1166 $)) 65)) (-1431 (((-1166 |#1|) $) 63) (($ (-1166 |#1|)) 62)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37)) (-2143 (((-3 $ "failed") $) 43 (|has| |#1| (-133)))) (-2051 ((|#2| $) 45)) (-2323 (((-708)) 29)) (-3855 (((-1166 $)) 67)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
+((-3356 (((-628 |#2|) (-1166 $)) NIL) (((-628 |#2|)) 18)) (-3225 (($ (-1166 |#2|) (-1166 $)) NIL) (($ (-1166 |#2|)) 26)) (-1359 (((-628 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) $) 22)) (-4199 ((|#3| $) 59)) (-1615 ((|#2| (-1166 $)) NIL) ((|#2|) 20)) (-3510 (((-1166 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) (-1166 $) (-1166 $)) NIL) (((-1166 |#2|) $) NIL) (((-628 |#2|) (-1166 $)) 24)) (-3873 (((-1166 |#2|) $) 11) (($ (-1166 |#2|)) 13)) (-2645 ((|#3| $) 51)))
+(((-383 |#1| |#2| |#3|) (-10 -8 (-15 -1359 ((-628 |#2|) |#1|)) (-15 -1615 (|#2|)) (-15 -3356 ((-628 |#2|))) (-15 -3873 (|#1| (-1166 |#2|))) (-15 -3873 ((-1166 |#2|) |#1|)) (-15 -3225 (|#1| (-1166 |#2|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1|)) (-15 -4199 (|#3| |#1|)) (-15 -2645 (|#3| |#1|)) (-15 -3356 ((-628 |#2|) (-1166 |#1|))) (-15 -1615 (|#2| (-1166 |#1|))) (-15 -3225 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -1359 ((-628 |#2|) |#1| (-1166 |#1|)))) (-384 |#2| |#3|) (-157) (-1142 |#2|)) (T -383))
+((-3356 (*1 *2) (-12 (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-628 *4)) (-5 *1 (-383 *3 *4 *5)) (-4 *3 (-384 *4 *5)))) (-1615 (*1 *2) (-12 (-4 *4 (-1142 *2)) (-4 *2 (-157)) (-5 *1 (-383 *3 *2 *4)) (-4 *3 (-384 *2 *4)))))
+(-10 -8 (-15 -1359 ((-628 |#2|) |#1|)) (-15 -1615 (|#2|)) (-15 -3356 ((-628 |#2|))) (-15 -3873 (|#1| (-1166 |#2|))) (-15 -3873 ((-1166 |#2|) |#1|)) (-15 -3225 (|#1| (-1166 |#2|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1|)) (-15 -4199 (|#3| |#1|)) (-15 -2645 (|#3| |#1|)) (-15 -3356 ((-628 |#2|) (-1166 |#1|))) (-15 -1615 (|#2| (-1166 |#1|))) (-15 -3225 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -1359 ((-628 |#2|) |#1| (-1166 |#1|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3356 (((-628 |#1|) (-1166 $)) 46) (((-628 |#1|)) 61)) (-1945 ((|#1| $) 52)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3225 (($ (-1166 |#1|) (-1166 $)) 48) (($ (-1166 |#1|)) 64)) (-1359 (((-628 |#1|) $ (-1166 $)) 53) (((-628 |#1|) $) 59)) (-3920 (((-3 $ "failed") $) 34)) (-1692 (((-850)) 54)) (-2859 (((-108) $) 31)) (-1269 ((|#1| $) 51)) (-4199 ((|#2| $) 44 (|has| |#1| (-338)))) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1615 ((|#1| (-1166 $)) 47) ((|#1|) 60)) (-3510 (((-1166 |#1|) $ (-1166 $)) 50) (((-628 |#1|) (-1166 $) (-1166 $)) 49) (((-1166 |#1|) $) 66) (((-628 |#1|) (-1166 $)) 65)) (-3873 (((-1166 |#1|) $) 63) (($ (-1166 |#1|)) 62)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37)) (-3040 (((-3 $ "failed") $) 43 (|has| |#1| (-133)))) (-2645 ((|#2| $) 45)) (-2742 (((-708)) 29)) (-2905 (((-1166 $)) 67)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
(((-384 |#1| |#2|) (-1197) (-157) (-1142 |t#1|)) (T -384))
-((-3855 (*1 *2) (-12 (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-1166 *1)) (-4 *1 (-384 *3 *4)))) (-3677 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-1166 *3)))) (-3677 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-384 *4 *5)) (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-628 *4)))) (-3766 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-384 *3 *4)) (-4 *4 (-1142 *3)))) (-1431 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-1166 *3)))) (-1431 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-384 *3 *4)) (-4 *4 (-1142 *3)))) (-3174 (*1 *2) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-628 *3)))) (-2769 (*1 *2) (-12 (-4 *1 (-384 *2 *3)) (-4 *3 (-1142 *2)) (-4 *2 (-157)))) (-2109 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-628 *3)))))
-(-13 (-345 |t#1| |t#2|) (-10 -8 (-15 -3855 ((-1166 $))) (-15 -3677 ((-1166 |t#1|) $)) (-15 -3677 ((-628 |t#1|) (-1166 $))) (-15 -3766 ($ (-1166 |t#1|))) (-15 -1431 ((-1166 |t#1|) $)) (-15 -1431 ($ (-1166 |t#1|))) (-15 -3174 ((-628 |t#1|))) (-15 -2769 (|t#1|)) (-15 -2109 ((-628 |t#1|) $))))
+((-2905 (*1 *2) (-12 (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-1166 *1)) (-4 *1 (-384 *3 *4)))) (-3510 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-1166 *3)))) (-3510 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-384 *4 *5)) (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-628 *4)))) (-3225 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-384 *3 *4)) (-4 *4 (-1142 *3)))) (-3873 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-1166 *3)))) (-3873 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-384 *3 *4)) (-4 *4 (-1142 *3)))) (-3356 (*1 *2) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-628 *3)))) (-1615 (*1 *2) (-12 (-4 *1 (-384 *2 *3)) (-4 *3 (-1142 *2)) (-4 *2 (-157)))) (-1359 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-628 *3)))))
+(-13 (-345 |t#1| |t#2|) (-10 -8 (-15 -2905 ((-1166 $))) (-15 -3510 ((-1166 |t#1|) $)) (-15 -3510 ((-628 |t#1|) (-1166 $))) (-15 -3225 ($ (-1166 |t#1|))) (-15 -3873 ((-1166 |t#1|) $)) (-15 -3873 ($ (-1166 |t#1|))) (-15 -3356 ((-628 |t#1|))) (-15 -1615 (|t#1|)) (-15 -1359 ((-628 |t#1|) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-345 |#1| |#2|) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-655 |#1|) . T) ((-664) . T) ((-977 |#1|) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1297 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) 27) (((-3 (-522) "failed") $) 19)) (-1484 ((|#2| $) NIL) (((-382 (-522)) $) 24) (((-522) $) 14)) (-2190 (($ |#2|) NIL) (($ (-382 (-522))) 22) (($ (-522)) 11)))
-(((-385 |#1| |#2|) (-10 -8 (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -2190 (|#1| (-522))) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 (|#1| |#2|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1484 (|#2| |#1|))) (-386 |#2|) (-1120)) (T -385))
+((-3700 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) 27) (((-3 (-522) "failed") $) 19)) (-1478 ((|#2| $) NIL) (((-382 (-522)) $) 24) (((-522) $) 14)) (-2217 (($ |#2|) NIL) (($ (-382 (-522))) 22) (($ (-522)) 11)))
+(((-385 |#1| |#2|) (-10 -8 (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -2217 (|#1| (-522))) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 (|#1| |#2|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -1478 (|#2| |#1|))) (-386 |#2|) (-1120)) (T -385))
NIL
-(-10 -8 (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -2190 (|#1| (-522))) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 (|#1| |#2|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1484 (|#2| |#1|)))
-((-1297 (((-3 |#1| "failed") $) 7) (((-3 (-382 (-522)) "failed") $) 16 (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) 13 (|has| |#1| (-962 (-522))))) (-1484 ((|#1| $) 8) (((-382 (-522)) $) 15 (|has| |#1| (-962 (-382 (-522))))) (((-522) $) 12 (|has| |#1| (-962 (-522))))) (-2190 (($ |#1|) 6) (($ (-382 (-522))) 17 (|has| |#1| (-962 (-382 (-522))))) (($ (-522)) 14 (|has| |#1| (-962 (-522))))))
+(-10 -8 (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -2217 (|#1| (-522))) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 (|#1| |#2|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -1478 (|#2| |#1|)))
+((-3700 (((-3 |#1| "failed") $) 7) (((-3 (-382 (-522)) "failed") $) 16 (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) 13 (|has| |#1| (-962 (-522))))) (-1478 ((|#1| $) 8) (((-382 (-522)) $) 15 (|has| |#1| (-962 (-382 (-522))))) (((-522) $) 12 (|has| |#1| (-962 (-522))))) (-2217 (($ |#1|) 6) (($ (-382 (-522))) 17 (|has| |#1| (-962 (-382 (-522))))) (($ (-522)) 14 (|has| |#1| (-962 (-522))))))
(((-386 |#1|) (-1197) (-1120)) (T -386))
NIL
(-13 (-962 |t#1|) (-10 -7 (IF (|has| |t#1| (-962 (-522))) (-6 (-962 (-522))) |%noBranch|) (IF (|has| |t#1| (-962 (-382 (-522)))) (-6 (-962 (-382 (-522)))) |%noBranch|)))
(((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T))
-((-1391 (((-388 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-388 |#1| |#2| |#3| |#4|)) 33)))
-(((-387 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1391 ((-388 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-388 |#1| |#2| |#3| |#4|)))) (-283) (-919 |#1|) (-1142 |#2|) (-13 (-384 |#2| |#3|) (-962 |#2|)) (-283) (-919 |#5|) (-1142 |#6|) (-13 (-384 |#6| |#7|) (-962 |#6|))) (T -387))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-388 *5 *6 *7 *8)) (-4 *5 (-283)) (-4 *6 (-919 *5)) (-4 *7 (-1142 *6)) (-4 *8 (-13 (-384 *6 *7) (-962 *6))) (-4 *9 (-283)) (-4 *10 (-919 *9)) (-4 *11 (-1142 *10)) (-5 *2 (-388 *9 *10 *11 *12)) (-5 *1 (-387 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-384 *10 *11) (-962 *10))))))
-(-10 -7 (-15 -1391 ((-388 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-388 |#1| |#2| |#3| |#4|))))
-((-1416 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) NIL)) (-3298 ((|#4| (-708) (-1166 |#4|)) 55)) (-2782 (((-108) $) NIL)) (-2805 (((-1166 |#4|) $) 17)) (-2100 ((|#2| $) 53)) (-1385 (($ $) 136)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 98)) (-2154 (($ (-1166 |#4|)) 97)) (-4151 (((-1032) $) NIL)) (-2816 ((|#1| $) 18)) (-3122 (($ $ $) NIL)) (-1288 (($ $ $) NIL)) (-2190 (((-792) $) 131)) (-3855 (((-1166 |#4|) $) 126)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3577 (($) 11 T CONST)) (-1531 (((-108) $ $) 39)) (-1620 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 119)) (* (($ $ $) 118)))
-(((-388 |#1| |#2| |#3| |#4|) (-13 (-447) (-10 -8 (-15 -2154 ($ (-1166 |#4|))) (-15 -3855 ((-1166 |#4|) $)) (-15 -2100 (|#2| $)) (-15 -2805 ((-1166 |#4|) $)) (-15 -2816 (|#1| $)) (-15 -1385 ($ $)) (-15 -3298 (|#4| (-708) (-1166 |#4|))))) (-283) (-919 |#1|) (-1142 |#2|) (-13 (-384 |#2| |#3|) (-962 |#2|))) (T -388))
-((-2154 (*1 *1 *2) (-12 (-5 *2 (-1166 *6)) (-4 *6 (-13 (-384 *4 *5) (-962 *4))) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-4 *3 (-283)) (-5 *1 (-388 *3 *4 *5 *6)))) (-3855 (*1 *2 *1) (-12 (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-5 *2 (-1166 *6)) (-5 *1 (-388 *3 *4 *5 *6)) (-4 *6 (-13 (-384 *4 *5) (-962 *4))))) (-2100 (*1 *2 *1) (-12 (-4 *4 (-1142 *2)) (-4 *2 (-919 *3)) (-5 *1 (-388 *3 *2 *4 *5)) (-4 *3 (-283)) (-4 *5 (-13 (-384 *2 *4) (-962 *2))))) (-2805 (*1 *2 *1) (-12 (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-5 *2 (-1166 *6)) (-5 *1 (-388 *3 *4 *5 *6)) (-4 *6 (-13 (-384 *4 *5) (-962 *4))))) (-2816 (*1 *2 *1) (-12 (-4 *3 (-919 *2)) (-4 *4 (-1142 *3)) (-4 *2 (-283)) (-5 *1 (-388 *2 *3 *4 *5)) (-4 *5 (-13 (-384 *3 *4) (-962 *3))))) (-1385 (*1 *1 *1) (-12 (-4 *2 (-283)) (-4 *3 (-919 *2)) (-4 *4 (-1142 *3)) (-5 *1 (-388 *2 *3 *4 *5)) (-4 *5 (-13 (-384 *3 *4) (-962 *3))))) (-3298 (*1 *2 *3 *4) (-12 (-5 *3 (-708)) (-5 *4 (-1166 *2)) (-4 *5 (-283)) (-4 *6 (-919 *5)) (-4 *2 (-13 (-384 *6 *7) (-962 *6))) (-5 *1 (-388 *5 *6 *7 *2)) (-4 *7 (-1142 *6)))))
-(-13 (-447) (-10 -8 (-15 -2154 ($ (-1166 |#4|))) (-15 -3855 ((-1166 |#4|) $)) (-15 -2100 (|#2| $)) (-15 -2805 ((-1166 |#4|) $)) (-15 -2816 (|#1| $)) (-15 -1385 ($ $)) (-15 -3298 (|#4| (-708) (-1166 |#4|)))))
-((-1416 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) NIL)) (-2782 (((-108) $) NIL)) (-2100 ((|#2| $) 60)) (-2780 (($ (-1166 |#4|)) 25) (($ (-388 |#1| |#2| |#3| |#4|)) 75 (|has| |#4| (-962 |#2|)))) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 34)) (-3855 (((-1166 |#4|) $) 26)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3577 (($) 23 T CONST)) (-1531 (((-108) $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ $ $) 72)))
-(((-389 |#1| |#2| |#3| |#4| |#5|) (-13 (-664) (-10 -8 (-15 -3855 ((-1166 |#4|) $)) (-15 -2100 (|#2| $)) (-15 -2780 ($ (-1166 |#4|))) (IF (|has| |#4| (-962 |#2|)) (-15 -2780 ($ (-388 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-283) (-919 |#1|) (-1142 |#2|) (-384 |#2| |#3|) (-1166 |#4|)) (T -389))
-((-3855 (*1 *2 *1) (-12 (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-5 *2 (-1166 *6)) (-5 *1 (-389 *3 *4 *5 *6 *7)) (-4 *6 (-384 *4 *5)) (-14 *7 *2))) (-2100 (*1 *2 *1) (-12 (-4 *4 (-1142 *2)) (-4 *2 (-919 *3)) (-5 *1 (-389 *3 *2 *4 *5 *6)) (-4 *3 (-283)) (-4 *5 (-384 *2 *4)) (-14 *6 (-1166 *5)))) (-2780 (*1 *1 *2) (-12 (-5 *2 (-1166 *6)) (-4 *6 (-384 *4 *5)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-4 *3 (-283)) (-5 *1 (-389 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-2780 (*1 *1 *2) (-12 (-5 *2 (-388 *3 *4 *5 *6)) (-4 *6 (-962 *4)) (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-4 *6 (-384 *4 *5)) (-14 *7 (-1166 *6)) (-5 *1 (-389 *3 *4 *5 *6 *7)))))
-(-13 (-664) (-10 -8 (-15 -3855 ((-1166 |#4|) $)) (-15 -2100 (|#2| $)) (-15 -2780 ($ (-1166 |#4|))) (IF (|has| |#4| (-962 |#2|)) (-15 -2780 ($ (-388 |#1| |#2| |#3| |#4|))) |%noBranch|)))
-((-1391 ((|#3| (-1 |#4| |#2|) |#1|) 26)))
-(((-390 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1391 (|#3| (-1 |#4| |#2|) |#1|))) (-392 |#2|) (-157) (-392 |#4|) (-157)) (T -390))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-157)) (-4 *6 (-157)) (-4 *2 (-392 *6)) (-5 *1 (-390 *4 *5 *2 *6)) (-4 *4 (-392 *5)))))
-(-10 -7 (-15 -1391 (|#3| (-1 |#4| |#2|) |#1|)))
-((-3210 (((-3 $ "failed")) 85)) (-1588 (((-1166 (-628 |#2|)) (-1166 $)) NIL) (((-1166 (-628 |#2|))) 90)) (-1868 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) 84)) (-3130 (((-3 $ "failed")) 83)) (-1771 (((-628 |#2|) (-1166 $)) NIL) (((-628 |#2|)) 101)) (-2828 (((-628 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) $) 109)) (-3549 (((-1081 (-881 |#2|))) 54)) (-2975 ((|#2| (-1166 $)) NIL) ((|#2|) 105)) (-3766 (($ (-1166 |#2|) (-1166 $)) NIL) (($ (-1166 |#2|)) 112)) (-3505 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) 82)) (-2007 (((-3 $ "failed")) 74)) (-1943 (((-628 |#2|) (-1166 $)) NIL) (((-628 |#2|)) 99)) (-4142 (((-628 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) $) 107)) (-2497 (((-1081 (-881 |#2|))) 53)) (-2475 ((|#2| (-1166 $)) NIL) ((|#2|) 103)) (-3677 (((-1166 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) (-1166 $) (-1166 $)) NIL) (((-1166 |#2|) $) NIL) (((-628 |#2|) (-1166 $)) 111)) (-1431 (((-1166 |#2|) $) 95) (($ (-1166 |#2|)) 97)) (-2656 (((-588 (-881 |#2|)) (-1166 $)) NIL) (((-588 (-881 |#2|))) 93)) (-1616 (($ (-628 |#2|) $) 89)))
-(((-391 |#1| |#2|) (-10 -8 (-15 -1616 (|#1| (-628 |#2|) |#1|)) (-15 -3549 ((-1081 (-881 |#2|)))) (-15 -2497 ((-1081 (-881 |#2|)))) (-15 -2828 ((-628 |#2|) |#1|)) (-15 -4142 ((-628 |#2|) |#1|)) (-15 -1771 ((-628 |#2|))) (-15 -1943 ((-628 |#2|))) (-15 -2975 (|#2|)) (-15 -2475 (|#2|)) (-15 -1431 (|#1| (-1166 |#2|))) (-15 -1431 ((-1166 |#2|) |#1|)) (-15 -3766 (|#1| (-1166 |#2|))) (-15 -2656 ((-588 (-881 |#2|)))) (-15 -1588 ((-1166 (-628 |#2|)))) (-15 -3677 ((-628 |#2|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1|)) (-15 -3210 ((-3 |#1| "failed"))) (-15 -3130 ((-3 |#1| "failed"))) (-15 -2007 ((-3 |#1| "failed"))) (-15 -1868 ((-3 (-2 (|:| |particular| |#1|) (|:| -3855 (-588 |#1|))) "failed"))) (-15 -3505 ((-3 (-2 (|:| |particular| |#1|) (|:| -3855 (-588 |#1|))) "failed"))) (-15 -1771 ((-628 |#2|) (-1166 |#1|))) (-15 -1943 ((-628 |#2|) (-1166 |#1|))) (-15 -2975 (|#2| (-1166 |#1|))) (-15 -2475 (|#2| (-1166 |#1|))) (-15 -3766 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -2828 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -4142 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -1588 ((-1166 (-628 |#2|)) (-1166 |#1|))) (-15 -2656 ((-588 (-881 |#2|)) (-1166 |#1|)))) (-392 |#2|) (-157)) (T -391))
-((-1588 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-1166 (-628 *4))) (-5 *1 (-391 *3 *4)) (-4 *3 (-392 *4)))) (-2656 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-588 (-881 *4))) (-5 *1 (-391 *3 *4)) (-4 *3 (-392 *4)))) (-2475 (*1 *2) (-12 (-4 *2 (-157)) (-5 *1 (-391 *3 *2)) (-4 *3 (-392 *2)))) (-2975 (*1 *2) (-12 (-4 *2 (-157)) (-5 *1 (-391 *3 *2)) (-4 *3 (-392 *2)))) (-1943 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-628 *4)) (-5 *1 (-391 *3 *4)) (-4 *3 (-392 *4)))) (-1771 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-628 *4)) (-5 *1 (-391 *3 *4)) (-4 *3 (-392 *4)))) (-2497 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-1081 (-881 *4))) (-5 *1 (-391 *3 *4)) (-4 *3 (-392 *4)))) (-3549 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-1081 (-881 *4))) (-5 *1 (-391 *3 *4)) (-4 *3 (-392 *4)))))
-(-10 -8 (-15 -1616 (|#1| (-628 |#2|) |#1|)) (-15 -3549 ((-1081 (-881 |#2|)))) (-15 -2497 ((-1081 (-881 |#2|)))) (-15 -2828 ((-628 |#2|) |#1|)) (-15 -4142 ((-628 |#2|) |#1|)) (-15 -1771 ((-628 |#2|))) (-15 -1943 ((-628 |#2|))) (-15 -2975 (|#2|)) (-15 -2475 (|#2|)) (-15 -1431 (|#1| (-1166 |#2|))) (-15 -1431 ((-1166 |#2|) |#1|)) (-15 -3766 (|#1| (-1166 |#2|))) (-15 -2656 ((-588 (-881 |#2|)))) (-15 -1588 ((-1166 (-628 |#2|)))) (-15 -3677 ((-628 |#2|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1|)) (-15 -3210 ((-3 |#1| "failed"))) (-15 -3130 ((-3 |#1| "failed"))) (-15 -2007 ((-3 |#1| "failed"))) (-15 -1868 ((-3 (-2 (|:| |particular| |#1|) (|:| -3855 (-588 |#1|))) "failed"))) (-15 -3505 ((-3 (-2 (|:| |particular| |#1|) (|:| -3855 (-588 |#1|))) "failed"))) (-15 -1771 ((-628 |#2|) (-1166 |#1|))) (-15 -1943 ((-628 |#2|) (-1166 |#1|))) (-15 -2975 (|#2| (-1166 |#1|))) (-15 -2475 (|#2| (-1166 |#1|))) (-15 -3766 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3677 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3677 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -2828 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -4142 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -1588 ((-1166 (-628 |#2|)) (-1166 |#1|))) (-15 -2656 ((-588 (-881 |#2|)) (-1166 |#1|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-3210 (((-3 $ "failed")) 37 (|has| |#1| (-514)))) (-1233 (((-3 $ "failed") $ $) 19)) (-1588 (((-1166 (-628 |#1|)) (-1166 $)) 78) (((-1166 (-628 |#1|))) 100)) (-1681 (((-1166 $)) 81)) (-3175 (($) 17 T CONST)) (-1868 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) 40 (|has| |#1| (-514)))) (-3130 (((-3 $ "failed")) 38 (|has| |#1| (-514)))) (-1771 (((-628 |#1|) (-1166 $)) 65) (((-628 |#1|)) 92)) (-3594 ((|#1| $) 74)) (-2828 (((-628 |#1|) $ (-1166 $)) 76) (((-628 |#1|) $) 90)) (-3637 (((-3 $ "failed") $) 45 (|has| |#1| (-514)))) (-3549 (((-1081 (-881 |#1|))) 88 (|has| |#1| (-338)))) (-1679 (($ $ (-850)) 28)) (-3076 ((|#1| $) 72)) (-2992 (((-1081 |#1|) $) 42 (|has| |#1| (-514)))) (-2975 ((|#1| (-1166 $)) 67) ((|#1|) 94)) (-4014 (((-1081 |#1|) $) 63)) (-2878 (((-108)) 57)) (-3766 (($ (-1166 |#1|) (-1166 $)) 69) (($ (-1166 |#1|)) 98)) (-2682 (((-3 $ "failed") $) 47 (|has| |#1| (-514)))) (-3166 (((-850)) 80)) (-2666 (((-108)) 54)) (-1882 (($ $ (-850)) 33)) (-1427 (((-108)) 50)) (-2552 (((-108)) 48)) (-2678 (((-108)) 52)) (-3505 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) 41 (|has| |#1| (-514)))) (-2007 (((-3 $ "failed")) 39 (|has| |#1| (-514)))) (-1943 (((-628 |#1|) (-1166 $)) 66) (((-628 |#1|)) 93)) (-1546 ((|#1| $) 75)) (-4142 (((-628 |#1|) $ (-1166 $)) 77) (((-628 |#1|) $) 91)) (-2231 (((-3 $ "failed") $) 46 (|has| |#1| (-514)))) (-2497 (((-1081 (-881 |#1|))) 89 (|has| |#1| (-338)))) (-3277 (($ $ (-850)) 29)) (-1505 ((|#1| $) 73)) (-3630 (((-1081 |#1|) $) 43 (|has| |#1| (-514)))) (-2475 ((|#1| (-1166 $)) 68) ((|#1|) 95)) (-2302 (((-1081 |#1|) $) 64)) (-3003 (((-108)) 58)) (-2385 (((-1068) $) 9)) (-3710 (((-108)) 49)) (-3026 (((-108)) 51)) (-3055 (((-108)) 53)) (-4151 (((-1032) $) 10)) (-2889 (((-108)) 56)) (-2545 ((|#1| $ (-522)) 101)) (-3677 (((-1166 |#1|) $ (-1166 $)) 71) (((-628 |#1|) (-1166 $) (-1166 $)) 70) (((-1166 |#1|) $) 103) (((-628 |#1|) (-1166 $)) 102)) (-1431 (((-1166 |#1|) $) 97) (($ (-1166 |#1|)) 96)) (-2656 (((-588 (-881 |#1|)) (-1166 $)) 79) (((-588 (-881 |#1|))) 99)) (-1288 (($ $ $) 25)) (-4034 (((-108)) 62)) (-2190 (((-792) $) 11)) (-3855 (((-1166 $)) 104)) (-2901 (((-588 (-1166 |#1|))) 44 (|has| |#1| (-514)))) (-3610 (($ $ $ $) 26)) (-2928 (((-108)) 60)) (-1616 (($ (-628 |#1|) $) 87)) (-3024 (($ $ $) 24)) (-3065 (((-108)) 61)) (-3856 (((-108)) 59)) (-3877 (((-108)) 55)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 30)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+((-3810 (((-388 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-388 |#1| |#2| |#3| |#4|)) 33)))
+(((-387 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3810 ((-388 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-388 |#1| |#2| |#3| |#4|)))) (-283) (-919 |#1|) (-1142 |#2|) (-13 (-384 |#2| |#3|) (-962 |#2|)) (-283) (-919 |#5|) (-1142 |#6|) (-13 (-384 |#6| |#7|) (-962 |#6|))) (T -387))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-388 *5 *6 *7 *8)) (-4 *5 (-283)) (-4 *6 (-919 *5)) (-4 *7 (-1142 *6)) (-4 *8 (-13 (-384 *6 *7) (-962 *6))) (-4 *9 (-283)) (-4 *10 (-919 *9)) (-4 *11 (-1142 *10)) (-5 *2 (-388 *9 *10 *11 *12)) (-5 *1 (-387 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-384 *10 *11) (-962 *10))))))
+(-10 -7 (-15 -3810 ((-388 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-388 |#1| |#2| |#3| |#4|))))
+((-1419 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) NIL)) (-2147 ((|#4| (-708) (-1166 |#4|)) 55)) (-2859 (((-108) $) NIL)) (-2947 (((-1166 |#4|) $) 17)) (-1269 ((|#2| $) 53)) (-3695 (($ $) 136)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 98)) (-3129 (($ (-1166 |#4|)) 97)) (-4174 (((-1032) $) NIL)) (-2959 ((|#1| $) 18)) (-2983 (($ $ $) NIL)) (-1596 (($ $ $) NIL)) (-2217 (((-792) $) 131)) (-2905 (((-1166 |#4|) $) 126)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3709 (($) 11 T CONST)) (-1562 (((-108) $ $) 39)) (-1682 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 119)) (* (($ $ $) 118)))
+(((-388 |#1| |#2| |#3| |#4|) (-13 (-447) (-10 -8 (-15 -3129 ($ (-1166 |#4|))) (-15 -2905 ((-1166 |#4|) $)) (-15 -1269 (|#2| $)) (-15 -2947 ((-1166 |#4|) $)) (-15 -2959 (|#1| $)) (-15 -3695 ($ $)) (-15 -2147 (|#4| (-708) (-1166 |#4|))))) (-283) (-919 |#1|) (-1142 |#2|) (-13 (-384 |#2| |#3|) (-962 |#2|))) (T -388))
+((-3129 (*1 *1 *2) (-12 (-5 *2 (-1166 *6)) (-4 *6 (-13 (-384 *4 *5) (-962 *4))) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-4 *3 (-283)) (-5 *1 (-388 *3 *4 *5 *6)))) (-2905 (*1 *2 *1) (-12 (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-5 *2 (-1166 *6)) (-5 *1 (-388 *3 *4 *5 *6)) (-4 *6 (-13 (-384 *4 *5) (-962 *4))))) (-1269 (*1 *2 *1) (-12 (-4 *4 (-1142 *2)) (-4 *2 (-919 *3)) (-5 *1 (-388 *3 *2 *4 *5)) (-4 *3 (-283)) (-4 *5 (-13 (-384 *2 *4) (-962 *2))))) (-2947 (*1 *2 *1) (-12 (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-5 *2 (-1166 *6)) (-5 *1 (-388 *3 *4 *5 *6)) (-4 *6 (-13 (-384 *4 *5) (-962 *4))))) (-2959 (*1 *2 *1) (-12 (-4 *3 (-919 *2)) (-4 *4 (-1142 *3)) (-4 *2 (-283)) (-5 *1 (-388 *2 *3 *4 *5)) (-4 *5 (-13 (-384 *3 *4) (-962 *3))))) (-3695 (*1 *1 *1) (-12 (-4 *2 (-283)) (-4 *3 (-919 *2)) (-4 *4 (-1142 *3)) (-5 *1 (-388 *2 *3 *4 *5)) (-4 *5 (-13 (-384 *3 *4) (-962 *3))))) (-2147 (*1 *2 *3 *4) (-12 (-5 *3 (-708)) (-5 *4 (-1166 *2)) (-4 *5 (-283)) (-4 *6 (-919 *5)) (-4 *2 (-13 (-384 *6 *7) (-962 *6))) (-5 *1 (-388 *5 *6 *7 *2)) (-4 *7 (-1142 *6)))))
+(-13 (-447) (-10 -8 (-15 -3129 ($ (-1166 |#4|))) (-15 -2905 ((-1166 |#4|) $)) (-15 -1269 (|#2| $)) (-15 -2947 ((-1166 |#4|) $)) (-15 -2959 (|#1| $)) (-15 -3695 ($ $)) (-15 -2147 (|#4| (-708) (-1166 |#4|)))))
+((-1419 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) NIL)) (-2859 (((-108) $) NIL)) (-1269 ((|#2| $) 60)) (-2838 (($ (-1166 |#4|)) 25) (($ (-388 |#1| |#2| |#3| |#4|)) 75 (|has| |#4| (-962 |#2|)))) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 34)) (-2905 (((-1166 |#4|) $) 26)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3709 (($) 23 T CONST)) (-1562 (((-108) $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ $ $) 72)))
+(((-389 |#1| |#2| |#3| |#4| |#5|) (-13 (-664) (-10 -8 (-15 -2905 ((-1166 |#4|) $)) (-15 -1269 (|#2| $)) (-15 -2838 ($ (-1166 |#4|))) (IF (|has| |#4| (-962 |#2|)) (-15 -2838 ($ (-388 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-283) (-919 |#1|) (-1142 |#2|) (-384 |#2| |#3|) (-1166 |#4|)) (T -389))
+((-2905 (*1 *2 *1) (-12 (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-5 *2 (-1166 *6)) (-5 *1 (-389 *3 *4 *5 *6 *7)) (-4 *6 (-384 *4 *5)) (-14 *7 *2))) (-1269 (*1 *2 *1) (-12 (-4 *4 (-1142 *2)) (-4 *2 (-919 *3)) (-5 *1 (-389 *3 *2 *4 *5 *6)) (-4 *3 (-283)) (-4 *5 (-384 *2 *4)) (-14 *6 (-1166 *5)))) (-2838 (*1 *1 *2) (-12 (-5 *2 (-1166 *6)) (-4 *6 (-384 *4 *5)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-4 *3 (-283)) (-5 *1 (-389 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-2838 (*1 *1 *2) (-12 (-5 *2 (-388 *3 *4 *5 *6)) (-4 *6 (-962 *4)) (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-4 *6 (-384 *4 *5)) (-14 *7 (-1166 *6)) (-5 *1 (-389 *3 *4 *5 *6 *7)))))
+(-13 (-664) (-10 -8 (-15 -2905 ((-1166 |#4|) $)) (-15 -1269 (|#2| $)) (-15 -2838 ($ (-1166 |#4|))) (IF (|has| |#4| (-962 |#2|)) (-15 -2838 ($ (-388 |#1| |#2| |#3| |#4|))) |%noBranch|)))
+((-3810 ((|#3| (-1 |#4| |#2|) |#1|) 26)))
+(((-390 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3810 (|#3| (-1 |#4| |#2|) |#1|))) (-392 |#2|) (-157) (-392 |#4|) (-157)) (T -390))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-157)) (-4 *6 (-157)) (-4 *2 (-392 *6)) (-5 *1 (-390 *4 *5 *2 *6)) (-4 *4 (-392 *5)))))
+(-10 -7 (-15 -3810 (|#3| (-1 |#4| |#2|) |#1|)))
+((-2541 (((-3 $ "failed")) 85)) (-3690 (((-1166 (-628 |#2|)) (-1166 $)) NIL) (((-1166 (-628 |#2|))) 90)) (-2722 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) 84)) (-3050 (((-3 $ "failed")) 83)) (-3531 (((-628 |#2|) (-1166 $)) NIL) (((-628 |#2|)) 101)) (-2853 (((-628 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) $) 109)) (-1662 (((-1081 (-881 |#2|))) 54)) (-4035 ((|#2| (-1166 $)) NIL) ((|#2|) 105)) (-3225 (($ (-1166 |#2|) (-1166 $)) NIL) (($ (-1166 |#2|)) 112)) (-2439 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) 82)) (-3351 (((-3 $ "failed")) 74)) (-1521 (((-628 |#2|) (-1166 $)) NIL) (((-628 |#2|)) 99)) (-2734 (((-628 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) $) 107)) (-3943 (((-1081 (-881 |#2|))) 53)) (-3020 ((|#2| (-1166 $)) NIL) ((|#2|) 103)) (-3510 (((-1166 |#2|) $ (-1166 $)) NIL) (((-628 |#2|) (-1166 $) (-1166 $)) NIL) (((-1166 |#2|) $) NIL) (((-628 |#2|) (-1166 $)) 111)) (-3873 (((-1166 |#2|) $) 95) (($ (-1166 |#2|)) 97)) (-1777 (((-588 (-881 |#2|)) (-1166 $)) NIL) (((-588 (-881 |#2|))) 93)) (-1664 (($ (-628 |#2|) $) 89)))
+(((-391 |#1| |#2|) (-10 -8 (-15 -1664 (|#1| (-628 |#2|) |#1|)) (-15 -1662 ((-1081 (-881 |#2|)))) (-15 -3943 ((-1081 (-881 |#2|)))) (-15 -2853 ((-628 |#2|) |#1|)) (-15 -2734 ((-628 |#2|) |#1|)) (-15 -3531 ((-628 |#2|))) (-15 -1521 ((-628 |#2|))) (-15 -4035 (|#2|)) (-15 -3020 (|#2|)) (-15 -3873 (|#1| (-1166 |#2|))) (-15 -3873 ((-1166 |#2|) |#1|)) (-15 -3225 (|#1| (-1166 |#2|))) (-15 -1777 ((-588 (-881 |#2|)))) (-15 -3690 ((-1166 (-628 |#2|)))) (-15 -3510 ((-628 |#2|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1|)) (-15 -2541 ((-3 |#1| "failed"))) (-15 -3050 ((-3 |#1| "failed"))) (-15 -3351 ((-3 |#1| "failed"))) (-15 -2722 ((-3 (-2 (|:| |particular| |#1|) (|:| -2905 (-588 |#1|))) "failed"))) (-15 -2439 ((-3 (-2 (|:| |particular| |#1|) (|:| -2905 (-588 |#1|))) "failed"))) (-15 -3531 ((-628 |#2|) (-1166 |#1|))) (-15 -1521 ((-628 |#2|) (-1166 |#1|))) (-15 -4035 (|#2| (-1166 |#1|))) (-15 -3020 (|#2| (-1166 |#1|))) (-15 -3225 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -2853 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -2734 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -3690 ((-1166 (-628 |#2|)) (-1166 |#1|))) (-15 -1777 ((-588 (-881 |#2|)) (-1166 |#1|)))) (-392 |#2|) (-157)) (T -391))
+((-3690 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-1166 (-628 *4))) (-5 *1 (-391 *3 *4)) (-4 *3 (-392 *4)))) (-1777 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-588 (-881 *4))) (-5 *1 (-391 *3 *4)) (-4 *3 (-392 *4)))) (-3020 (*1 *2) (-12 (-4 *2 (-157)) (-5 *1 (-391 *3 *2)) (-4 *3 (-392 *2)))) (-4035 (*1 *2) (-12 (-4 *2 (-157)) (-5 *1 (-391 *3 *2)) (-4 *3 (-392 *2)))) (-1521 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-628 *4)) (-5 *1 (-391 *3 *4)) (-4 *3 (-392 *4)))) (-3531 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-628 *4)) (-5 *1 (-391 *3 *4)) (-4 *3 (-392 *4)))) (-3943 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-1081 (-881 *4))) (-5 *1 (-391 *3 *4)) (-4 *3 (-392 *4)))) (-1662 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-1081 (-881 *4))) (-5 *1 (-391 *3 *4)) (-4 *3 (-392 *4)))))
+(-10 -8 (-15 -1664 (|#1| (-628 |#2|) |#1|)) (-15 -1662 ((-1081 (-881 |#2|)))) (-15 -3943 ((-1081 (-881 |#2|)))) (-15 -2853 ((-628 |#2|) |#1|)) (-15 -2734 ((-628 |#2|) |#1|)) (-15 -3531 ((-628 |#2|))) (-15 -1521 ((-628 |#2|))) (-15 -4035 (|#2|)) (-15 -3020 (|#2|)) (-15 -3873 (|#1| (-1166 |#2|))) (-15 -3873 ((-1166 |#2|) |#1|)) (-15 -3225 (|#1| (-1166 |#2|))) (-15 -1777 ((-588 (-881 |#2|)))) (-15 -3690 ((-1166 (-628 |#2|)))) (-15 -3510 ((-628 |#2|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1|)) (-15 -2541 ((-3 |#1| "failed"))) (-15 -3050 ((-3 |#1| "failed"))) (-15 -3351 ((-3 |#1| "failed"))) (-15 -2722 ((-3 (-2 (|:| |particular| |#1|) (|:| -2905 (-588 |#1|))) "failed"))) (-15 -2439 ((-3 (-2 (|:| |particular| |#1|) (|:| -2905 (-588 |#1|))) "failed"))) (-15 -3531 ((-628 |#2|) (-1166 |#1|))) (-15 -1521 ((-628 |#2|) (-1166 |#1|))) (-15 -4035 (|#2| (-1166 |#1|))) (-15 -3020 (|#2| (-1166 |#1|))) (-15 -3225 (|#1| (-1166 |#2|) (-1166 |#1|))) (-15 -3510 ((-628 |#2|) (-1166 |#1|) (-1166 |#1|))) (-15 -3510 ((-1166 |#2|) |#1| (-1166 |#1|))) (-15 -2853 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -2734 ((-628 |#2|) |#1| (-1166 |#1|))) (-15 -3690 ((-1166 (-628 |#2|)) (-1166 |#1|))) (-15 -1777 ((-588 (-881 |#2|)) (-1166 |#1|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2541 (((-3 $ "failed")) 37 (|has| |#1| (-514)))) (-2265 (((-3 $ "failed") $ $) 19)) (-3690 (((-1166 (-628 |#1|)) (-1166 $)) 78) (((-1166 (-628 |#1|))) 100)) (-2726 (((-1166 $)) 81)) (-3367 (($) 17 T CONST)) (-2722 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) 40 (|has| |#1| (-514)))) (-3050 (((-3 $ "failed")) 38 (|has| |#1| (-514)))) (-3531 (((-628 |#1|) (-1166 $)) 65) (((-628 |#1|)) 92)) (-2046 ((|#1| $) 74)) (-2853 (((-628 |#1|) $ (-1166 $)) 76) (((-628 |#1|) $) 90)) (-1279 (((-3 $ "failed") $) 45 (|has| |#1| (-514)))) (-1662 (((-1081 (-881 |#1|))) 88 (|has| |#1| (-338)))) (-2698 (($ $ (-850)) 28)) (-3676 ((|#1| $) 72)) (-4080 (((-1081 |#1|) $) 42 (|has| |#1| (-514)))) (-4035 ((|#1| (-1166 $)) 67) ((|#1|) 94)) (-3767 (((-1081 |#1|) $) 63)) (-1340 (((-108)) 57)) (-3225 (($ (-1166 |#1|) (-1166 $)) 69) (($ (-1166 |#1|)) 98)) (-3920 (((-3 $ "failed") $) 47 (|has| |#1| (-514)))) (-1692 (((-850)) 80)) (-2134 (((-108)) 54)) (-2870 (($ $ (-850)) 33)) (-2287 (((-108)) 50)) (-3702 (((-108)) 48)) (-3868 (((-108)) 52)) (-2439 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) 41 (|has| |#1| (-514)))) (-3351 (((-3 $ "failed")) 39 (|has| |#1| (-514)))) (-1521 (((-628 |#1|) (-1166 $)) 66) (((-628 |#1|)) 93)) (-3411 ((|#1| $) 75)) (-2734 (((-628 |#1|) $ (-1166 $)) 77) (((-628 |#1|) $) 91)) (-3070 (((-3 $ "failed") $) 46 (|has| |#1| (-514)))) (-3943 (((-1081 (-881 |#1|))) 89 (|has| |#1| (-338)))) (-1946 (($ $ (-850)) 29)) (-1819 ((|#1| $) 73)) (-1216 (((-1081 |#1|) $) 43 (|has| |#1| (-514)))) (-3020 ((|#1| (-1166 $)) 68) ((|#1|) 95)) (-2724 (((-1081 |#1|) $) 64)) (-4197 (((-108)) 58)) (-2311 (((-1068) $) 9)) (-3823 (((-108)) 49)) (-1388 (((-108)) 51)) (-3509 (((-108)) 53)) (-4174 (((-1032) $) 10)) (-1427 (((-108)) 56)) (-2683 ((|#1| $ (-522)) 101)) (-3510 (((-1166 |#1|) $ (-1166 $)) 71) (((-628 |#1|) (-1166 $) (-1166 $)) 70) (((-1166 |#1|) $) 103) (((-628 |#1|) (-1166 $)) 102)) (-3873 (((-1166 |#1|) $) 97) (($ (-1166 |#1|)) 96)) (-1777 (((-588 (-881 |#1|)) (-1166 $)) 79) (((-588 (-881 |#1|))) 99)) (-1596 (($ $ $) 25)) (-3990 (((-108)) 62)) (-2217 (((-792) $) 11)) (-2905 (((-1166 $)) 104)) (-1548 (((-588 (-1166 |#1|))) 44 (|has| |#1| (-514)))) (-2185 (($ $ $ $) 26)) (-3597 (((-108)) 60)) (-1664 (($ (-628 |#1|) $) 87)) (-1369 (($ $ $) 24)) (-3578 (((-108)) 61)) (-2912 (((-108)) 59)) (-1855 (((-108)) 55)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 30)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
(((-392 |#1|) (-1197) (-157)) (T -392))
-((-3855 (*1 *2) (-12 (-4 *3 (-157)) (-5 *2 (-1166 *1)) (-4 *1 (-392 *3)))) (-3677 (*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-1166 *3)))) (-3677 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-392 *4)) (-4 *4 (-157)) (-5 *2 (-628 *4)))) (-2545 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-392 *2)) (-4 *2 (-157)))) (-1588 (*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-1166 (-628 *3))))) (-2656 (*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-588 (-881 *3))))) (-3766 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-392 *3)))) (-1431 (*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-1166 *3)))) (-1431 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-392 *3)))) (-2475 (*1 *2) (-12 (-4 *1 (-392 *2)) (-4 *2 (-157)))) (-2975 (*1 *2) (-12 (-4 *1 (-392 *2)) (-4 *2 (-157)))) (-1943 (*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))) (-1771 (*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))) (-4142 (*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))) (-2828 (*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))) (-2497 (*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-4 *3 (-338)) (-5 *2 (-1081 (-881 *3))))) (-3549 (*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-4 *3 (-338)) (-5 *2 (-1081 (-881 *3))))) (-1616 (*1 *1 *2 *1) (-12 (-5 *2 (-628 *3)) (-4 *1 (-392 *3)) (-4 *3 (-157)))))
-(-13 (-342 |t#1|) (-10 -8 (-15 -3855 ((-1166 $))) (-15 -3677 ((-1166 |t#1|) $)) (-15 -3677 ((-628 |t#1|) (-1166 $))) (-15 -2545 (|t#1| $ (-522))) (-15 -1588 ((-1166 (-628 |t#1|)))) (-15 -2656 ((-588 (-881 |t#1|)))) (-15 -3766 ($ (-1166 |t#1|))) (-15 -1431 ((-1166 |t#1|) $)) (-15 -1431 ($ (-1166 |t#1|))) (-15 -2475 (|t#1|)) (-15 -2975 (|t#1|)) (-15 -1943 ((-628 |t#1|))) (-15 -1771 ((-628 |t#1|))) (-15 -4142 ((-628 |t#1|) $)) (-15 -2828 ((-628 |t#1|) $)) (IF (|has| |t#1| (-338)) (PROGN (-15 -2497 ((-1081 (-881 |t#1|)))) (-15 -3549 ((-1081 (-881 |t#1|))))) |%noBranch|) (-15 -1616 ($ (-628 |t#1|) $))))
+((-2905 (*1 *2) (-12 (-4 *3 (-157)) (-5 *2 (-1166 *1)) (-4 *1 (-392 *3)))) (-3510 (*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-1166 *3)))) (-3510 (*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-392 *4)) (-4 *4 (-157)) (-5 *2 (-628 *4)))) (-2683 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-392 *2)) (-4 *2 (-157)))) (-3690 (*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-1166 (-628 *3))))) (-1777 (*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-588 (-881 *3))))) (-3225 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-392 *3)))) (-3873 (*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-1166 *3)))) (-3873 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-392 *3)))) (-3020 (*1 *2) (-12 (-4 *1 (-392 *2)) (-4 *2 (-157)))) (-4035 (*1 *2) (-12 (-4 *1 (-392 *2)) (-4 *2 (-157)))) (-1521 (*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))) (-3531 (*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))) (-2734 (*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))) (-2853 (*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))) (-3943 (*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-4 *3 (-338)) (-5 *2 (-1081 (-881 *3))))) (-1662 (*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-4 *3 (-338)) (-5 *2 (-1081 (-881 *3))))) (-1664 (*1 *1 *2 *1) (-12 (-5 *2 (-628 *3)) (-4 *1 (-392 *3)) (-4 *3 (-157)))))
+(-13 (-342 |t#1|) (-10 -8 (-15 -2905 ((-1166 $))) (-15 -3510 ((-1166 |t#1|) $)) (-15 -3510 ((-628 |t#1|) (-1166 $))) (-15 -2683 (|t#1| $ (-522))) (-15 -3690 ((-1166 (-628 |t#1|)))) (-15 -1777 ((-588 (-881 |t#1|)))) (-15 -3225 ($ (-1166 |t#1|))) (-15 -3873 ((-1166 |t#1|) $)) (-15 -3873 ($ (-1166 |t#1|))) (-15 -3020 (|t#1|)) (-15 -4035 (|t#1|)) (-15 -1521 ((-628 |t#1|))) (-15 -3531 ((-628 |t#1|))) (-15 -2734 ((-628 |t#1|) $)) (-15 -2853 ((-628 |t#1|) $)) (IF (|has| |t#1| (-338)) (PROGN (-15 -3943 ((-1081 (-881 |t#1|)))) (-15 -1662 ((-1081 (-881 |t#1|))))) |%noBranch|) (-15 -1664 ($ (-628 |t#1|) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-562 (-792)) . T) ((-342 |#1|) . T) ((-590 |#1|) . T) ((-655 |#1|) . T) ((-658) . T) ((-682 |#1|) . T) ((-699) . T) ((-977 |#1|) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 41)) (-3019 (($ $) 56)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 143)) (-2022 (($ $) NIL)) (-3739 (((-108) $) 35)) (-3210 ((|#1| $) 12)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL (|has| |#1| (-1124)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-1124)))) (-4159 (($ |#1| (-522)) 30)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 113)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 54)) (-2682 (((-3 $ "failed") $) 128)) (-1664 (((-3 (-382 (-522)) "failed") $) 62 (|has| |#1| (-507)))) (-1770 (((-108) $) 58 (|has| |#1| (-507)))) (-1492 (((-382 (-522)) $) 60 (|has| |#1| (-507)))) (-2827 (($ |#1| (-522)) 32)) (-2813 (((-108) $) 149 (|has| |#1| (-1124)))) (-2782 (((-108) $) 42)) (-2785 (((-708) $) 37)) (-2729 (((-3 "nil" "sqfr" "irred" "prime") $ (-522)) 134)) (-3750 ((|#1| $ (-522)) 133)) (-3809 (((-522) $ (-522)) 132)) (-3365 (($ |#1| (-522)) 29)) (-1391 (($ (-1 |#1| |#1|) $) 140)) (-2473 (($ |#1| (-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-522))))) 57)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2385 (((-1068) $) NIL)) (-2546 (($ |#1| (-522)) 31)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) 144 (|has| |#1| (-426)))) (-2991 (($ |#1| (-522) (-3 "nil" "sqfr" "irred" "prime")) 28)) (-2976 (((-588 (-2 (|:| -1916 |#1|) (|:| -1400 (-522)))) $) 53)) (-3931 (((-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-522)))) $) 11)) (-1916 (((-393 $) $) NIL (|has| |#1| (-1124)))) (-2232 (((-3 $ "failed") $ $) 135)) (-1400 (((-522) $) 129)) (-1604 ((|#1| $) 55)) (-2289 (($ $ (-588 |#1|) (-588 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) 77 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 82 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) $) NIL (|has| |#1| (-483 (-1085) $))) (($ $ (-588 (-1085)) (-588 $)) 83 (|has| |#1| (-483 (-1085) $))) (($ $ (-588 (-270 $))) 79 (|has| |#1| (-285 $))) (($ $ (-270 $)) NIL (|has| |#1| (-285 $))) (($ $ $ $) NIL (|has| |#1| (-285 $))) (($ $ (-588 $) (-588 $)) NIL (|has| |#1| (-285 $)))) (-2545 (($ $ |#1|) 69 (|has| |#1| (-262 |#1| |#1|))) (($ $ $) 70 (|has| |#1| (-262 $ $)))) (-2157 (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) 139)) (-1431 (((-498) $) 26 (|has| |#1| (-563 (-498)))) (((-354) $) 89 (|has| |#1| (-947))) (((-202) $) 92 (|has| |#1| (-947)))) (-2190 (((-792) $) 111) (($ (-522)) 45) (($ $) NIL) (($ |#1|) 44) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522)))))) (-2323 (((-708)) 47)) (-3958 (((-108) $ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 39 T CONST)) (-3577 (($) 38 T CONST)) (-2213 (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1531 (((-108) $ $) 93)) (-1612 (($ $) 125) (($ $ $) NIL)) (-1602 (($ $ $) 137)) (** (($ $ (-850)) NIL) (($ $ (-708)) 99)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 49) (($ $ $) 48) (($ |#1| $) 50) (($ $ |#1|) NIL)))
-(((-393 |#1|) (-13 (-514) (-208 |#1|) (-37 |#1|) (-313 |#1|) (-386 |#1|) (-10 -8 (-15 -1604 (|#1| $)) (-15 -1400 ((-522) $)) (-15 -2473 ($ |#1| (-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-522)))))) (-15 -3931 ((-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-522)))) $)) (-15 -3365 ($ |#1| (-522))) (-15 -2976 ((-588 (-2 (|:| -1916 |#1|) (|:| -1400 (-522)))) $)) (-15 -2546 ($ |#1| (-522))) (-15 -3809 ((-522) $ (-522))) (-15 -3750 (|#1| $ (-522))) (-15 -2729 ((-3 "nil" "sqfr" "irred" "prime") $ (-522))) (-15 -2785 ((-708) $)) (-15 -2827 ($ |#1| (-522))) (-15 -4159 ($ |#1| (-522))) (-15 -2991 ($ |#1| (-522) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -3210 (|#1| $)) (-15 -3019 ($ $)) (-15 -1391 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-426)) (-6 (-426)) |%noBranch|) (IF (|has| |#1| (-947)) (-6 (-947)) |%noBranch|) (IF (|has| |#1| (-1124)) (-6 (-1124)) |%noBranch|) (IF (|has| |#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |#1| (-507)) (PROGN (-15 -1770 ((-108) $)) (-15 -1492 ((-382 (-522)) $)) (-15 -1664 ((-3 (-382 (-522)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-262 $ $)) (-6 (-262 $ $)) |%noBranch|) (IF (|has| |#1| (-285 $)) (-6 (-285 $)) |%noBranch|) (IF (|has| |#1| (-483 (-1085) $)) (-6 (-483 (-1085) $)) |%noBranch|))) (-514)) (T -393))
-((-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-514)) (-5 *1 (-393 *3)))) (-1604 (*1 *2 *1) (-12 (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-1400 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-393 *3)) (-4 *3 (-514)))) (-2473 (*1 *1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-522))))) (-4 *2 (-514)) (-5 *1 (-393 *2)))) (-3931 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-522))))) (-5 *1 (-393 *3)) (-4 *3 (-514)))) (-3365 (*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-2976 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| -1916 *3) (|:| -1400 (-522))))) (-5 *1 (-393 *3)) (-4 *3 (-514)))) (-2546 (*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-3809 (*1 *2 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-393 *3)) (-4 *3 (-514)))) (-3750 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-2729 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-393 *4)) (-4 *4 (-514)))) (-2785 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-393 *3)) (-4 *3 (-514)))) (-2827 (*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-4159 (*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-2991 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-522)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-3210 (*1 *2 *1) (-12 (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-3019 (*1 *1 *1) (-12 (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-1770 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-393 *3)) (-4 *3 (-507)) (-4 *3 (-514)))) (-1492 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-393 *3)) (-4 *3 (-507)) (-4 *3 (-514)))) (-1664 (*1 *2 *1) (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-393 *3)) (-4 *3 (-507)) (-4 *3 (-514)))))
-(-13 (-514) (-208 |#1|) (-37 |#1|) (-313 |#1|) (-386 |#1|) (-10 -8 (-15 -1604 (|#1| $)) (-15 -1400 ((-522) $)) (-15 -2473 ($ |#1| (-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-522)))))) (-15 -3931 ((-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-522)))) $)) (-15 -3365 ($ |#1| (-522))) (-15 -2976 ((-588 (-2 (|:| -1916 |#1|) (|:| -1400 (-522)))) $)) (-15 -2546 ($ |#1| (-522))) (-15 -3809 ((-522) $ (-522))) (-15 -3750 (|#1| $ (-522))) (-15 -2729 ((-3 "nil" "sqfr" "irred" "prime") $ (-522))) (-15 -2785 ((-708) $)) (-15 -2827 ($ |#1| (-522))) (-15 -4159 ($ |#1| (-522))) (-15 -2991 ($ |#1| (-522) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -3210 (|#1| $)) (-15 -3019 ($ $)) (-15 -1391 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-426)) (-6 (-426)) |%noBranch|) (IF (|has| |#1| (-947)) (-6 (-947)) |%noBranch|) (IF (|has| |#1| (-1124)) (-6 (-1124)) |%noBranch|) (IF (|has| |#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |#1| (-507)) (PROGN (-15 -1770 ((-108) $)) (-15 -1492 ((-382 (-522)) $)) (-15 -1664 ((-3 (-382 (-522)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-262 $ $)) (-6 (-262 $ $)) |%noBranch|) (IF (|has| |#1| (-285 $)) (-6 (-285 $)) |%noBranch|) (IF (|has| |#1| (-483 (-1085) $)) (-6 (-483 (-1085) $)) |%noBranch|)))
-((-1499 (((-393 |#1|) (-393 |#1|) (-1 (-393 |#1|) |#1|)) 20)) (-1736 (((-393 |#1|) (-393 |#1|) (-393 |#1|)) 15)))
-(((-394 |#1|) (-10 -7 (-15 -1499 ((-393 |#1|) (-393 |#1|) (-1 (-393 |#1|) |#1|))) (-15 -1736 ((-393 |#1|) (-393 |#1|) (-393 |#1|)))) (-514)) (T -394))
-((-1736 (*1 *2 *2 *2) (-12 (-5 *2 (-393 *3)) (-4 *3 (-514)) (-5 *1 (-394 *3)))) (-1499 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-393 *4) *4)) (-4 *4 (-514)) (-5 *2 (-393 *4)) (-5 *1 (-394 *4)))))
-(-10 -7 (-15 -1499 ((-393 |#1|) (-393 |#1|) (-1 (-393 |#1|) |#1|))) (-15 -1736 ((-393 |#1|) (-393 |#1|) (-393 |#1|))))
-((-3745 ((|#2| |#2|) 161)) (-2439 (((-3 (|:| |%expansion| (-288 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108)) 55)))
-(((-395 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2439 ((-3 (|:| |%expansion| (-288 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108))) (-15 -3745 (|#2| |#2|))) (-13 (-426) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|)) (-1085) |#2|) (T -395))
-((-3745 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-395 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1106) (-405 *3))) (-14 *4 (-1085)) (-14 *5 *2))) (-2439 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |%expansion| (-288 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068)))))) (-5 *1 (-395 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1106) (-405 *5))) (-14 *6 (-1085)) (-14 *7 *3))))
-(-10 -7 (-15 -2439 ((-3 (|:| |%expansion| (-288 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108))) (-15 -3745 (|#2| |#2|)))
-((-1391 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
-(((-396 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1391 (|#4| (-1 |#3| |#1|) |#2|))) (-13 (-971) (-784)) (-405 |#1|) (-13 (-971) (-784)) (-405 |#3|)) (T -396))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-971) (-784))) (-4 *6 (-13 (-971) (-784))) (-4 *2 (-405 *6)) (-5 *1 (-396 *5 *4 *6 *2)) (-4 *4 (-405 *5)))))
-(-10 -7 (-15 -1391 (|#4| (-1 |#3| |#1|) |#2|)))
-((-3745 ((|#2| |#2|) 88)) (-2775 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108) (-1068)) 46)) (-1907 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108) (-1068)) 153)))
-(((-397 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2775 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108) (-1068))) (-15 -1907 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108) (-1068))) (-15 -3745 (|#2| |#2|))) (-13 (-426) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|) (-10 -8 (-15 -2190 ($ |#3|)))) (-782) (-13 (-1144 |#2| |#3|) (-338) (-1106) (-10 -8 (-15 -2157 ($ $)) (-15 -1858 ($ $)))) (-910 |#4|) (-1085)) (T -397))
-((-3745 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-4 *2 (-13 (-27) (-1106) (-405 *3) (-10 -8 (-15 -2190 ($ *4))))) (-4 *4 (-782)) (-4 *5 (-13 (-1144 *2 *4) (-338) (-1106) (-10 -8 (-15 -2157 ($ $)) (-15 -1858 ($ $))))) (-5 *1 (-397 *3 *2 *4 *5 *6 *7)) (-4 *6 (-910 *5)) (-14 *7 (-1085)))) (-1907 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-108)) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-4 *3 (-13 (-27) (-1106) (-405 *6) (-10 -8 (-15 -2190 ($ *7))))) (-4 *7 (-782)) (-4 *8 (-13 (-1144 *3 *7) (-338) (-1106) (-10 -8 (-15 -2157 ($ $)) (-15 -1858 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068)))))) (-5 *1 (-397 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1068)) (-4 *9 (-910 *8)) (-14 *10 (-1085)))) (-2775 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-108)) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-4 *3 (-13 (-27) (-1106) (-405 *6) (-10 -8 (-15 -2190 ($ *7))))) (-4 *7 (-782)) (-4 *8 (-13 (-1144 *3 *7) (-338) (-1106) (-10 -8 (-15 -2157 ($ $)) (-15 -1858 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068)))))) (-5 *1 (-397 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1068)) (-4 *9 (-910 *8)) (-14 *10 (-1085)))))
-(-10 -7 (-15 -2775 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108) (-1068))) (-15 -1907 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108) (-1068))) (-15 -3745 (|#2| |#2|)))
-((-3690 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-3864 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-1391 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
-(((-398 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1391 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3864 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3690 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1014) (-400 |#1|) (-1014) (-400 |#3|)) (T -398))
-((-3690 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1014)) (-4 *5 (-1014)) (-4 *2 (-400 *5)) (-5 *1 (-398 *6 *4 *5 *2)) (-4 *4 (-400 *6)))) (-3864 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1014)) (-4 *2 (-1014)) (-5 *1 (-398 *5 *4 *2 *6)) (-4 *4 (-400 *5)) (-4 *6 (-400 *2)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-400 *6)) (-5 *1 (-398 *5 *4 *6 *2)) (-4 *4 (-400 *5)))))
-(-10 -7 (-15 -1391 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3864 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3690 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-1579 (($) 44)) (-2270 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 40)) (-2079 (($ $ $) 39)) (-3557 (((-108) $ $) 28)) (-1629 (((-708)) 47)) (-1764 (($ (-588 |#2|)) 20) (($) NIL)) (-3255 (($) 53)) (-2814 ((|#2| $) 61)) (-2446 ((|#2| $) 59)) (-2120 (((-850) $) 55)) (-2416 (($ $ $) 35)) (-2717 (($ (-850)) 50)) (-3417 (($ $ |#2|) NIL) (($ $ $) 38)) (-4168 (((-708) (-1 (-108) |#2|) $) NIL) (((-708) |#2| $) 26)) (-2201 (($ (-588 |#2|)) 24)) (-3763 (($ $) 46)) (-2190 (((-792) $) 33)) (-2067 (((-708) $) 21)) (-3392 (($ (-588 |#2|)) 19) (($) NIL)) (-1531 (((-108) $ $) 16)) (-1549 (((-108) $ $) 13)))
-(((-399 |#1| |#2|) (-10 -8 (-15 -1629 ((-708))) (-15 -2717 (|#1| (-850))) (-15 -2120 ((-850) |#1|)) (-15 -3255 (|#1|)) (-15 -2814 (|#2| |#1|)) (-15 -2446 (|#2| |#1|)) (-15 -1579 (|#1|)) (-15 -3763 (|#1| |#1|)) (-15 -2067 ((-708) |#1|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -2190 ((-792) |#1|)) (-15 -1549 ((-108) |#1| |#1|)) (-15 -3392 (|#1|)) (-15 -3392 (|#1| (-588 |#2|))) (-15 -1764 (|#1|)) (-15 -1764 (|#1| (-588 |#2|))) (-15 -2416 (|#1| |#1| |#1|)) (-15 -3417 (|#1| |#1| |#1|)) (-15 -3417 (|#1| |#1| |#2|)) (-15 -2079 (|#1| |#1| |#1|)) (-15 -3557 ((-108) |#1| |#1|)) (-15 -2270 (|#1| |#1| |#1|)) (-15 -2270 (|#1| |#1| |#2|)) (-15 -2270 (|#1| |#2| |#1|)) (-15 -2201 (|#1| (-588 |#2|))) (-15 -4168 ((-708) |#2| |#1|)) (-15 -4168 ((-708) (-1 (-108) |#2|) |#1|))) (-400 |#2|) (-1014)) (T -399))
-((-1629 (*1 *2) (-12 (-4 *4 (-1014)) (-5 *2 (-708)) (-5 *1 (-399 *3 *4)) (-4 *3 (-400 *4)))))
-(-10 -8 (-15 -1629 ((-708))) (-15 -2717 (|#1| (-850))) (-15 -2120 ((-850) |#1|)) (-15 -3255 (|#1|)) (-15 -2814 (|#2| |#1|)) (-15 -2446 (|#2| |#1|)) (-15 -1579 (|#1|)) (-15 -3763 (|#1| |#1|)) (-15 -2067 ((-708) |#1|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -2190 ((-792) |#1|)) (-15 -1549 ((-108) |#1| |#1|)) (-15 -3392 (|#1|)) (-15 -3392 (|#1| (-588 |#2|))) (-15 -1764 (|#1|)) (-15 -1764 (|#1| (-588 |#2|))) (-15 -2416 (|#1| |#1| |#1|)) (-15 -3417 (|#1| |#1| |#1|)) (-15 -3417 (|#1| |#1| |#2|)) (-15 -2079 (|#1| |#1| |#1|)) (-15 -3557 ((-108) |#1| |#1|)) (-15 -2270 (|#1| |#1| |#1|)) (-15 -2270 (|#1| |#1| |#2|)) (-15 -2270 (|#1| |#2| |#1|)) (-15 -2201 (|#1| (-588 |#2|))) (-15 -4168 ((-708) |#2| |#1|)) (-15 -4168 ((-708) (-1 (-108) |#2|) |#1|)))
-((-1416 (((-108) $ $) 19)) (-1579 (($) 67 (|has| |#1| (-343)))) (-2270 (($ |#1| $) 82) (($ $ |#1|) 81) (($ $ $) 80)) (-2079 (($ $ $) 78)) (-3557 (((-108) $ $) 79)) (-4141 (((-108) $ (-708)) 8)) (-1629 (((-708)) 61 (|has| |#1| (-343)))) (-1764 (($ (-588 |#1|)) 74) (($) 73)) (-2790 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-2333 (($ $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3859 (($ |#1| $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4238)))) (-1423 (($ |#1| $) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4238)))) (-3255 (($) 64 (|has| |#1| (-343)))) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-2814 ((|#1| $) 65 (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2446 ((|#1| $) 66 (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2120 (((-850) $) 63 (|has| |#1| (-343)))) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22)) (-2416 (($ $ $) 75)) (-2116 ((|#1| $) 39)) (-4095 (($ |#1| $) 40)) (-2717 (($ (-850)) 62 (|has| |#1| (-343)))) (-4151 (((-1032) $) 21)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-4087 ((|#1| $) 41)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-3417 (($ $ |#1|) 77) (($ $ $) 76)) (-3990 (($) 49) (($ (-588 |#1|)) 48)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-1431 (((-498) $) 59 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 50)) (-3763 (($ $) 68 (|has| |#1| (-343)))) (-2190 (((-792) $) 18)) (-2067 (((-708) $) 69)) (-3392 (($ (-588 |#1|)) 72) (($) 71)) (-2795 (($ (-588 |#1|)) 42)) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20)) (-1549 (((-108) $ $) 70)) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 41)) (-1313 (($ $) 56)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 143)) (-2298 (($ $) NIL)) (-3007 (((-108) $) 35)) (-2541 ((|#1| $) 12)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL (|has| |#1| (-1124)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-1124)))) (-2884 (($ |#1| (-522)) 30)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 113)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 54)) (-3920 (((-3 $ "failed") $) 128)) (-2549 (((-3 (-382 (-522)) "failed") $) 62 (|has| |#1| (-507)))) (-3519 (((-108) $) 58 (|has| |#1| (-507)))) (-1699 (((-382 (-522)) $) 60 (|has| |#1| (-507)))) (-2844 (($ |#1| (-522)) 32)) (-2725 (((-108) $) 149 (|has| |#1| (-1124)))) (-2859 (((-108) $) 42)) (-4152 (((-708) $) 37)) (-3472 (((-3 "nil" "sqfr" "irred" "prime") $ (-522)) 134)) (-3108 ((|#1| $ (-522)) 133)) (-2448 (((-522) $ (-522)) 132)) (-3439 (($ |#1| (-522)) 29)) (-3810 (($ (-1 |#1| |#1|) $) 140)) (-2865 (($ |#1| (-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-522))))) 57)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2311 (((-1068) $) NIL)) (-3574 (($ |#1| (-522)) 31)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) 144 (|has| |#1| (-426)))) (-4073 (($ |#1| (-522) (-3 "nil" "sqfr" "irred" "prime")) 28)) (-4045 (((-588 (-2 (|:| -2006 |#1|) (|:| -3858 (-522)))) $) 53)) (-4166 (((-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-522)))) $) 11)) (-2006 (((-393 $) $) NIL (|has| |#1| (-1124)))) (-2276 (((-3 $ "failed") $ $) 135)) (-3858 (((-522) $) 129)) (-1663 ((|#1| $) 55)) (-2330 (($ $ (-588 |#1|) (-588 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) 77 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 82 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) $) NIL (|has| |#1| (-483 (-1085) $))) (($ $ (-588 (-1085)) (-588 $)) 83 (|has| |#1| (-483 (-1085) $))) (($ $ (-588 (-270 $))) 79 (|has| |#1| (-285 $))) (($ $ (-270 $)) NIL (|has| |#1| (-285 $))) (($ $ $ $) NIL (|has| |#1| (-285 $))) (($ $ (-588 $) (-588 $)) NIL (|has| |#1| (-285 $)))) (-2683 (($ $ |#1|) 69 (|has| |#1| (-262 |#1| |#1|))) (($ $ $) 70 (|has| |#1| (-262 $ $)))) (-2731 (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) 139)) (-3873 (((-498) $) 26 (|has| |#1| (-563 (-498)))) (((-354) $) 89 (|has| |#1| (-947))) (((-202) $) 92 (|has| |#1| (-947)))) (-2217 (((-792) $) 111) (($ (-522)) 45) (($ $) NIL) (($ |#1|) 44) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522)))))) (-2742 (((-708)) 47)) (-1407 (((-108) $ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 39 T CONST)) (-3709 (($) 38 T CONST)) (-2252 (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1562 (((-108) $ $) 93)) (-1672 (($ $) 125) (($ $ $) NIL)) (-1661 (($ $ $) 137)) (** (($ $ (-850)) NIL) (($ $ (-708)) 99)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 49) (($ $ $) 48) (($ |#1| $) 50) (($ $ |#1|) NIL)))
+(((-393 |#1|) (-13 (-514) (-208 |#1|) (-37 |#1|) (-313 |#1|) (-386 |#1|) (-10 -8 (-15 -1663 (|#1| $)) (-15 -3858 ((-522) $)) (-15 -2865 ($ |#1| (-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-522)))))) (-15 -4166 ((-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-522)))) $)) (-15 -3439 ($ |#1| (-522))) (-15 -4045 ((-588 (-2 (|:| -2006 |#1|) (|:| -3858 (-522)))) $)) (-15 -3574 ($ |#1| (-522))) (-15 -2448 ((-522) $ (-522))) (-15 -3108 (|#1| $ (-522))) (-15 -3472 ((-3 "nil" "sqfr" "irred" "prime") $ (-522))) (-15 -4152 ((-708) $)) (-15 -2844 ($ |#1| (-522))) (-15 -2884 ($ |#1| (-522))) (-15 -4073 ($ |#1| (-522) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -2541 (|#1| $)) (-15 -1313 ($ $)) (-15 -3810 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-426)) (-6 (-426)) |%noBranch|) (IF (|has| |#1| (-947)) (-6 (-947)) |%noBranch|) (IF (|has| |#1| (-1124)) (-6 (-1124)) |%noBranch|) (IF (|has| |#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |#1| (-507)) (PROGN (-15 -3519 ((-108) $)) (-15 -1699 ((-382 (-522)) $)) (-15 -2549 ((-3 (-382 (-522)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-262 $ $)) (-6 (-262 $ $)) |%noBranch|) (IF (|has| |#1| (-285 $)) (-6 (-285 $)) |%noBranch|) (IF (|has| |#1| (-483 (-1085) $)) (-6 (-483 (-1085) $)) |%noBranch|))) (-514)) (T -393))
+((-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-514)) (-5 *1 (-393 *3)))) (-1663 (*1 *2 *1) (-12 (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-3858 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-393 *3)) (-4 *3 (-514)))) (-2865 (*1 *1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-522))))) (-4 *2 (-514)) (-5 *1 (-393 *2)))) (-4166 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-522))))) (-5 *1 (-393 *3)) (-4 *3 (-514)))) (-3439 (*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-4045 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| -2006 *3) (|:| -3858 (-522))))) (-5 *1 (-393 *3)) (-4 *3 (-514)))) (-3574 (*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-2448 (*1 *2 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-393 *3)) (-4 *3 (-514)))) (-3108 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-3472 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-393 *4)) (-4 *4 (-514)))) (-4152 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-393 *3)) (-4 *3 (-514)))) (-2844 (*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-2884 (*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-4073 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-522)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-2541 (*1 *2 *1) (-12 (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-1313 (*1 *1 *1) (-12 (-5 *1 (-393 *2)) (-4 *2 (-514)))) (-3519 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-393 *3)) (-4 *3 (-507)) (-4 *3 (-514)))) (-1699 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-393 *3)) (-4 *3 (-507)) (-4 *3 (-514)))) (-2549 (*1 *2 *1) (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-393 *3)) (-4 *3 (-507)) (-4 *3 (-514)))))
+(-13 (-514) (-208 |#1|) (-37 |#1|) (-313 |#1|) (-386 |#1|) (-10 -8 (-15 -1663 (|#1| $)) (-15 -3858 ((-522) $)) (-15 -2865 ($ |#1| (-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-522)))))) (-15 -4166 ((-588 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-522)))) $)) (-15 -3439 ($ |#1| (-522))) (-15 -4045 ((-588 (-2 (|:| -2006 |#1|) (|:| -3858 (-522)))) $)) (-15 -3574 ($ |#1| (-522))) (-15 -2448 ((-522) $ (-522))) (-15 -3108 (|#1| $ (-522))) (-15 -3472 ((-3 "nil" "sqfr" "irred" "prime") $ (-522))) (-15 -4152 ((-708) $)) (-15 -2844 ($ |#1| (-522))) (-15 -2884 ($ |#1| (-522))) (-15 -4073 ($ |#1| (-522) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -2541 (|#1| $)) (-15 -1313 ($ $)) (-15 -3810 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-426)) (-6 (-426)) |%noBranch|) (IF (|has| |#1| (-947)) (-6 (-947)) |%noBranch|) (IF (|has| |#1| (-1124)) (-6 (-1124)) |%noBranch|) (IF (|has| |#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |#1| (-507)) (PROGN (-15 -3519 ((-108) $)) (-15 -1699 ((-382 (-522)) $)) (-15 -2549 ((-3 (-382 (-522)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-262 $ $)) (-6 (-262 $ $)) |%noBranch|) (IF (|has| |#1| (-285 $)) (-6 (-285 $)) |%noBranch|) (IF (|has| |#1| (-483 (-1085) $)) (-6 (-483 (-1085) $)) |%noBranch|)))
+((-1776 (((-393 |#1|) (-393 |#1|) (-1 (-393 |#1|) |#1|)) 20)) (-1399 (((-393 |#1|) (-393 |#1|) (-393 |#1|)) 15)))
+(((-394 |#1|) (-10 -7 (-15 -1776 ((-393 |#1|) (-393 |#1|) (-1 (-393 |#1|) |#1|))) (-15 -1399 ((-393 |#1|) (-393 |#1|) (-393 |#1|)))) (-514)) (T -394))
+((-1399 (*1 *2 *2 *2) (-12 (-5 *2 (-393 *3)) (-4 *3 (-514)) (-5 *1 (-394 *3)))) (-1776 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-393 *4) *4)) (-4 *4 (-514)) (-5 *2 (-393 *4)) (-5 *1 (-394 *4)))))
+(-10 -7 (-15 -1776 ((-393 |#1|) (-393 |#1|) (-1 (-393 |#1|) |#1|))) (-15 -1399 ((-393 |#1|) (-393 |#1|) (-393 |#1|))))
+((-3062 ((|#2| |#2|) 161)) (-3588 (((-3 (|:| |%expansion| (-288 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108)) 55)))
+(((-395 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3588 ((-3 (|:| |%expansion| (-288 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108))) (-15 -3062 (|#2| |#2|))) (-13 (-426) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|)) (-1085) |#2|) (T -395))
+((-3062 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-395 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1106) (-405 *3))) (-14 *4 (-1085)) (-14 *5 *2))) (-3588 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (|:| |%expansion| (-288 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068)))))) (-5 *1 (-395 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1106) (-405 *5))) (-14 *6 (-1085)) (-14 *7 *3))))
+(-10 -7 (-15 -3588 ((-3 (|:| |%expansion| (-288 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108))) (-15 -3062 (|#2| |#2|)))
+((-3810 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
+(((-396 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3810 (|#4| (-1 |#3| |#1|) |#2|))) (-13 (-971) (-784)) (-405 |#1|) (-13 (-971) (-784)) (-405 |#3|)) (T -396))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-971) (-784))) (-4 *6 (-13 (-971) (-784))) (-4 *2 (-405 *6)) (-5 *1 (-396 *5 *4 *6 *2)) (-4 *4 (-405 *5)))))
+(-10 -7 (-15 -3810 (|#4| (-1 |#3| |#1|) |#2|)))
+((-3062 ((|#2| |#2|) 88)) (-1909 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108) (-1068)) 46)) (-1200 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108) (-1068)) 153)))
+(((-397 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1909 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108) (-1068))) (-15 -1200 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108) (-1068))) (-15 -3062 (|#2| |#2|))) (-13 (-426) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|) (-10 -8 (-15 -2217 ($ |#3|)))) (-782) (-13 (-1144 |#2| |#3|) (-338) (-1106) (-10 -8 (-15 -2731 ($ $)) (-15 -2611 ($ $)))) (-910 |#4|) (-1085)) (T -397))
+((-3062 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-4 *2 (-13 (-27) (-1106) (-405 *3) (-10 -8 (-15 -2217 ($ *4))))) (-4 *4 (-782)) (-4 *5 (-13 (-1144 *2 *4) (-338) (-1106) (-10 -8 (-15 -2731 ($ $)) (-15 -2611 ($ $))))) (-5 *1 (-397 *3 *2 *4 *5 *6 *7)) (-4 *6 (-910 *5)) (-14 *7 (-1085)))) (-1200 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-108)) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-4 *3 (-13 (-27) (-1106) (-405 *6) (-10 -8 (-15 -2217 ($ *7))))) (-4 *7 (-782)) (-4 *8 (-13 (-1144 *3 *7) (-338) (-1106) (-10 -8 (-15 -2731 ($ $)) (-15 -2611 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068)))))) (-5 *1 (-397 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1068)) (-4 *9 (-910 *8)) (-14 *10 (-1085)))) (-1909 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-108)) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-4 *3 (-13 (-27) (-1106) (-405 *6) (-10 -8 (-15 -2217 ($ *7))))) (-4 *7 (-782)) (-4 *8 (-13 (-1144 *3 *7) (-338) (-1106) (-10 -8 (-15 -2731 ($ $)) (-15 -2611 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068)))))) (-5 *1 (-397 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1068)) (-4 *9 (-910 *8)) (-14 *10 (-1085)))))
+(-10 -7 (-15 -1909 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108) (-1068))) (-15 -1200 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))) |#2| (-108) (-1068))) (-15 -3062 (|#2| |#2|)))
+((-3639 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-2153 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-3810 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
+(((-398 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3810 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2153 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3639 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1014) (-400 |#1|) (-1014) (-400 |#3|)) (T -398))
+((-3639 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1014)) (-4 *5 (-1014)) (-4 *2 (-400 *5)) (-5 *1 (-398 *6 *4 *5 *2)) (-4 *4 (-400 *6)))) (-2153 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1014)) (-4 *2 (-1014)) (-5 *1 (-398 *5 *4 *2 *6)) (-4 *4 (-400 *5)) (-4 *6 (-400 *2)))) (-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-400 *6)) (-5 *1 (-398 *5 *4 *6 *2)) (-4 *4 (-400 *5)))))
+(-10 -7 (-15 -3810 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2153 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3639 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-3641 (($) 44)) (-2323 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 40)) (-4099 (($ $ $) 39)) (-1751 (((-108) $ $) 28)) (-1685 (((-708)) 47)) (-1852 (($ (-588 |#2|)) 20) (($) NIL)) (-3344 (($) 53)) (-1308 ((|#2| $) 61)) (-2524 ((|#2| $) 59)) (-1475 (((-850) $) 55)) (-2251 (($ $ $) 35)) (-2882 (($ (-850)) 50)) (-3962 (($ $ |#2|) NIL) (($ $ $) 38)) (-4187 (((-708) (-1 (-108) |#2|) $) NIL) (((-708) |#2| $) 26)) (-2227 (($ (-588 |#2|)) 24)) (-3201 (($ $) 46)) (-2217 (((-792) $) 33)) (-2847 (((-708) $) 21)) (-3482 (($ (-588 |#2|)) 19) (($) NIL)) (-1562 (((-108) $ $) 16)) (-1587 (((-108) $ $) 13)))
+(((-399 |#1| |#2|) (-10 -8 (-15 -1685 ((-708))) (-15 -2882 (|#1| (-850))) (-15 -1475 ((-850) |#1|)) (-15 -3344 (|#1|)) (-15 -1308 (|#2| |#1|)) (-15 -2524 (|#2| |#1|)) (-15 -3641 (|#1|)) (-15 -3201 (|#1| |#1|)) (-15 -2847 ((-708) |#1|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -2217 ((-792) |#1|)) (-15 -1587 ((-108) |#1| |#1|)) (-15 -3482 (|#1|)) (-15 -3482 (|#1| (-588 |#2|))) (-15 -1852 (|#1|)) (-15 -1852 (|#1| (-588 |#2|))) (-15 -2251 (|#1| |#1| |#1|)) (-15 -3962 (|#1| |#1| |#1|)) (-15 -3962 (|#1| |#1| |#2|)) (-15 -4099 (|#1| |#1| |#1|)) (-15 -1751 ((-108) |#1| |#1|)) (-15 -2323 (|#1| |#1| |#1|)) (-15 -2323 (|#1| |#1| |#2|)) (-15 -2323 (|#1| |#2| |#1|)) (-15 -2227 (|#1| (-588 |#2|))) (-15 -4187 ((-708) |#2| |#1|)) (-15 -4187 ((-708) (-1 (-108) |#2|) |#1|))) (-400 |#2|) (-1014)) (T -399))
+((-1685 (*1 *2) (-12 (-4 *4 (-1014)) (-5 *2 (-708)) (-5 *1 (-399 *3 *4)) (-4 *3 (-400 *4)))))
+(-10 -8 (-15 -1685 ((-708))) (-15 -2882 (|#1| (-850))) (-15 -1475 ((-850) |#1|)) (-15 -3344 (|#1|)) (-15 -1308 (|#2| |#1|)) (-15 -2524 (|#2| |#1|)) (-15 -3641 (|#1|)) (-15 -3201 (|#1| |#1|)) (-15 -2847 ((-708) |#1|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -2217 ((-792) |#1|)) (-15 -1587 ((-108) |#1| |#1|)) (-15 -3482 (|#1|)) (-15 -3482 (|#1| (-588 |#2|))) (-15 -1852 (|#1|)) (-15 -1852 (|#1| (-588 |#2|))) (-15 -2251 (|#1| |#1| |#1|)) (-15 -3962 (|#1| |#1| |#1|)) (-15 -3962 (|#1| |#1| |#2|)) (-15 -4099 (|#1| |#1| |#1|)) (-15 -1751 ((-108) |#1| |#1|)) (-15 -2323 (|#1| |#1| |#1|)) (-15 -2323 (|#1| |#1| |#2|)) (-15 -2323 (|#1| |#2| |#1|)) (-15 -2227 (|#1| (-588 |#2|))) (-15 -4187 ((-708) |#2| |#1|)) (-15 -4187 ((-708) (-1 (-108) |#2|) |#1|)))
+((-1419 (((-108) $ $) 19)) (-3641 (($) 67 (|has| |#1| (-343)))) (-2323 (($ |#1| $) 82) (($ $ |#1|) 81) (($ $ $) 80)) (-4099 (($ $ $) 78)) (-1751 (((-108) $ $) 79)) (-2717 (((-108) $ (-708)) 8)) (-1685 (((-708)) 61 (|has| |#1| (-343)))) (-1852 (($ (-588 |#1|)) 74) (($) 73)) (-1213 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-2379 (($ $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1700 (($ |#1| $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4238)))) (-1424 (($ |#1| $) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4238)))) (-3344 (($) 64 (|has| |#1| (-343)))) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-1308 ((|#1| $) 65 (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2524 ((|#1| $) 66 (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-1475 (((-850) $) 63 (|has| |#1| (-343)))) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22)) (-2251 (($ $ $) 75)) (-1431 ((|#1| $) 39)) (-3365 (($ |#1| $) 40)) (-2882 (($ (-850)) 62 (|has| |#1| (-343)))) (-4174 (((-1032) $) 21)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-3295 ((|#1| $) 41)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-3962 (($ $ |#1|) 77) (($ $ $) 76)) (-3546 (($) 49) (($ (-588 |#1|)) 48)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-3873 (((-498) $) 59 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 50)) (-3201 (($ $) 68 (|has| |#1| (-343)))) (-2217 (((-792) $) 18)) (-2847 (((-708) $) 69)) (-3482 (($ (-588 |#1|)) 72) (($) 71)) (-2501 (($ (-588 |#1|)) 42)) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20)) (-1587 (((-108) $ $) 70)) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-400 |#1|) (-1197) (-1014)) (T -400))
-((-2067 (*1 *2 *1) (-12 (-4 *1 (-400 *3)) (-4 *3 (-1014)) (-5 *2 (-708)))) (-3763 (*1 *1 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-1014)) (-4 *2 (-343)))) (-1579 (*1 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-343)) (-4 *2 (-1014)))) (-2446 (*1 *2 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-1014)) (-4 *2 (-784)))) (-2814 (*1 *2 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-1014)) (-4 *2 (-784)))))
-(-13 (-206 |t#1|) (-1012 |t#1|) (-10 -8 (-6 -4238) (-15 -2067 ((-708) $)) (IF (|has| |t#1| (-343)) (PROGN (-6 (-343)) (-15 -3763 ($ $)) (-15 -1579 ($))) |%noBranch|) (IF (|has| |t#1| (-784)) (PROGN (-15 -2446 (|t#1| $)) (-15 -2814 (|t#1| $))) |%noBranch|)))
+((-2847 (*1 *2 *1) (-12 (-4 *1 (-400 *3)) (-4 *3 (-1014)) (-5 *2 (-708)))) (-3201 (*1 *1 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-1014)) (-4 *2 (-343)))) (-3641 (*1 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-343)) (-4 *2 (-1014)))) (-2524 (*1 *2 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-1014)) (-4 *2 (-784)))) (-1308 (*1 *2 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-1014)) (-4 *2 (-784)))))
+(-13 (-206 |t#1|) (-1012 |t#1|) (-10 -8 (-6 -4238) (-15 -2847 ((-708) $)) (IF (|has| |t#1| (-343)) (PROGN (-6 (-343)) (-15 -3201 ($ $)) (-15 -3641 ($))) |%noBranch|) (IF (|has| |t#1| (-784)) (PROGN (-15 -2524 (|t#1| $)) (-15 -1308 (|t#1| $))) |%noBranch|)))
(((-33) . T) ((-102 |#1|) . T) ((-97) . T) ((-562 (-792)) . T) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-206 |#1|) . T) ((-212 |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-343) |has| |#1| (-343)) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1012 |#1|) . T) ((-1014) . T) ((-1120) . T))
-((-3282 (((-539 |#2|) |#2| (-1085)) 35)) (-3113 (((-539 |#2|) |#2| (-1085)) 19)) (-1594 ((|#2| |#2| (-1085)) 24)))
-(((-401 |#1| |#2|) (-10 -7 (-15 -3113 ((-539 |#2|) |#2| (-1085))) (-15 -3282 ((-539 |#2|) |#2| (-1085))) (-15 -1594 (|#2| |#2| (-1085)))) (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-29 |#1|))) (T -401))
-((-1594 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *1 (-401 *4 *2)) (-4 *2 (-13 (-1106) (-29 *4))))) (-3282 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-539 *3)) (-5 *1 (-401 *5 *3)) (-4 *3 (-13 (-1106) (-29 *5))))) (-3113 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-539 *3)) (-5 *1 (-401 *5 *3)) (-4 *3 (-13 (-1106) (-29 *5))))))
-(-10 -7 (-15 -3113 ((-539 |#2|) |#2| (-1085))) (-15 -3282 ((-539 |#2|) |#2| (-1085))) (-15 -1594 (|#2| |#2| (-1085))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) NIL)) (-2782 (((-108) $) NIL)) (-1330 (($ |#2| |#1|) 35)) (-3641 (($ |#2| |#1|) 33)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-306 |#2|)) 25)) (-2323 (((-708)) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 10 T CONST)) (-3577 (($) 16 T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 34)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 36) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-402 |#1| |#2|) (-13 (-37 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4225)) (IF (|has| |#1| (-6 -4225)) (-6 -4225) |%noBranch|) |%noBranch|) (-15 -2190 ($ |#1|)) (-15 -2190 ($ (-306 |#2|))) (-15 -1330 ($ |#2| |#1|)) (-15 -3641 ($ |#2| |#1|)))) (-13 (-157) (-37 (-382 (-522)))) (-13 (-784) (-21))) (T -402))
-((-2190 (*1 *1 *2) (-12 (-5 *1 (-402 *2 *3)) (-4 *2 (-13 (-157) (-37 (-382 (-522))))) (-4 *3 (-13 (-784) (-21))))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-306 *4)) (-4 *4 (-13 (-784) (-21))) (-5 *1 (-402 *3 *4)) (-4 *3 (-13 (-157) (-37 (-382 (-522))))))) (-1330 (*1 *1 *2 *3) (-12 (-5 *1 (-402 *3 *2)) (-4 *3 (-13 (-157) (-37 (-382 (-522))))) (-4 *2 (-13 (-784) (-21))))) (-3641 (*1 *1 *2 *3) (-12 (-5 *1 (-402 *3 *2)) (-4 *3 (-13 (-157) (-37 (-382 (-522))))) (-4 *2 (-13 (-784) (-21))))))
-(-13 (-37 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4225)) (IF (|has| |#1| (-6 -4225)) (-6 -4225) |%noBranch|) |%noBranch|) (-15 -2190 ($ |#1|)) (-15 -2190 ($ (-306 |#2|))) (-15 -1330 ($ |#2| |#1|)) (-15 -3641 ($ |#2| |#1|))))
-((-1858 (((-3 |#2| (-588 |#2|)) |#2| (-1085)) 105)))
-(((-403 |#1| |#2|) (-10 -7 (-15 -1858 ((-3 |#2| (-588 |#2|)) |#2| (-1085)))) (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-887) (-29 |#1|))) (T -403))
-((-1858 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 *3 (-588 *3))) (-5 *1 (-403 *5 *3)) (-4 *3 (-13 (-1106) (-887) (-29 *5))))))
-(-10 -7 (-15 -1858 ((-3 |#2| (-588 |#2|)) |#2| (-1085))))
-((-4090 (((-588 (-1085)) $) 72)) (-1282 (((-382 (-1081 $)) $ (-561 $)) 269)) (-3305 (($ $ (-270 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-588 (-561 $)) (-588 $)) 234)) (-1297 (((-3 (-561 $) "failed") $) NIL) (((-3 (-1085) "failed") $) 75) (((-3 (-522) "failed") $) NIL) (((-3 |#2| "failed") $) 230) (((-3 (-382 (-881 |#2|)) "failed") $) 320) (((-3 (-881 |#2|) "failed") $) 232) (((-3 (-382 (-522)) "failed") $) NIL)) (-1484 (((-561 $) $) NIL) (((-1085) $) 30) (((-522) $) NIL) ((|#2| $) 228) (((-382 (-881 |#2|)) $) 301) (((-881 |#2|) $) 229) (((-382 (-522)) $) NIL)) (-2626 (((-110) (-110)) 47)) (-2902 (($ $) 87)) (-3993 (((-3 (-561 $) "failed") $) 225)) (-1267 (((-588 (-561 $)) $) 226)) (-2462 (((-3 (-588 $) "failed") $) 244)) (-2170 (((-3 (-2 (|:| |val| $) (|:| -1400 (-522))) "failed") $) 251)) (-4193 (((-3 (-588 $) "failed") $) 242)) (-1241 (((-3 (-2 (|:| -2977 (-522)) (|:| |var| (-561 $))) "failed") $) 260)) (-3285 (((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $) 248) (((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $ (-110)) 215) (((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $ (-1085)) 217)) (-3108 (((-108) $) 19)) (-3118 ((|#2| $) 21)) (-2289 (($ $ (-561 $) $) NIL) (($ $ (-588 (-561 $)) (-588 $)) 233) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) 96) (($ $ (-1085) (-1 $ (-588 $))) NIL) (($ $ (-1085) (-1 $ $)) NIL) (($ $ (-588 (-110)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-110) (-1 $ (-588 $))) NIL) (($ $ (-110) (-1 $ $)) NIL) (($ $ (-1085)) 57) (($ $ (-588 (-1085))) 237) (($ $) 238) (($ $ (-110) $ (-1085)) 60) (($ $ (-588 (-110)) (-588 $) (-1085)) 67) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ $))) 107) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ (-588 $)))) 239) (($ $ (-1085) (-708) (-1 $ (-588 $))) 94) (($ $ (-1085) (-708) (-1 $ $)) 93)) (-2545 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-588 $)) 106)) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) 235)) (-3533 (($ $) 280)) (-1431 (((-821 (-522)) $) 254) (((-821 (-354)) $) 257) (($ (-393 $)) 316) (((-498) $) NIL)) (-2190 (((-792) $) 236) (($ (-561 $)) 84) (($ (-1085)) 26) (($ |#2|) NIL) (($ (-1037 |#2| (-561 $))) NIL) (($ (-382 |#2|)) 285) (($ (-881 (-382 |#2|))) 325) (($ (-382 (-881 (-382 |#2|)))) 297) (($ (-382 (-881 |#2|))) 291) (($ $) NIL) (($ (-881 |#2|)) 184) (($ (-382 (-522))) 330) (($ (-522)) NIL)) (-2323 (((-708)) 79)) (-3614 (((-108) (-110)) 41)) (-1805 (($ (-1085) $) 33) (($ (-1085) $ $) 34) (($ (-1085) $ $ $) 35) (($ (-1085) $ $ $ $) 36) (($ (-1085) (-588 $)) 39)) (* (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL) (($ |#2| $) 262) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-522) $) NIL) (($ (-708) $) NIL) (($ (-850) $) NIL)))
-(((-404 |#1| |#2|) (-10 -8 (-15 * (|#1| (-850) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2323 ((-708))) (-15 -2190 (|#1| (-522))) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -1431 ((-498) |#1|)) (-15 -1484 ((-881 |#2|) |#1|)) (-15 -1297 ((-3 (-881 |#2|) "failed") |#1|)) (-15 -2190 (|#1| (-881 |#2|))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2190 (|#1| |#1|)) (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -1484 ((-382 (-881 |#2|)) |#1|)) (-15 -1297 ((-3 (-382 (-881 |#2|)) "failed") |#1|)) (-15 -2190 (|#1| (-382 (-881 |#2|)))) (-15 -1282 ((-382 (-1081 |#1|)) |#1| (-561 |#1|))) (-15 -2190 (|#1| (-382 (-881 (-382 |#2|))))) (-15 -2190 (|#1| (-881 (-382 |#2|)))) (-15 -2190 (|#1| (-382 |#2|))) (-15 -3533 (|#1| |#1|)) (-15 -1431 (|#1| (-393 |#1|))) (-15 -2289 (|#1| |#1| (-1085) (-708) (-1 |#1| |#1|))) (-15 -2289 (|#1| |#1| (-1085) (-708) (-1 |#1| (-588 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 (-708)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 (-708)) (-588 (-1 |#1| |#1|)))) (-15 -2170 ((-3 (-2 (|:| |val| |#1|) (|:| -1400 (-522))) "failed") |#1|)) (-15 -3285 ((-3 (-2 (|:| |var| (-561 |#1|)) (|:| -1400 (-522))) "failed") |#1| (-1085))) (-15 -3285 ((-3 (-2 (|:| |var| (-561 |#1|)) (|:| -1400 (-522))) "failed") |#1| (-110))) (-15 -2902 (|#1| |#1|)) (-15 -2190 (|#1| (-1037 |#2| (-561 |#1|)))) (-15 -1241 ((-3 (-2 (|:| -2977 (-522)) (|:| |var| (-561 |#1|))) "failed") |#1|)) (-15 -4193 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -3285 ((-3 (-2 (|:| |var| (-561 |#1|)) (|:| -1400 (-522))) "failed") |#1|)) (-15 -2462 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -2289 (|#1| |#1| (-588 (-110)) (-588 |#1|) (-1085))) (-15 -2289 (|#1| |#1| (-110) |#1| (-1085))) (-15 -2289 (|#1| |#1|)) (-15 -2289 (|#1| |#1| (-588 (-1085)))) (-15 -2289 (|#1| |#1| (-1085))) (-15 -1805 (|#1| (-1085) (-588 |#1|))) (-15 -1805 (|#1| (-1085) |#1| |#1| |#1| |#1|)) (-15 -1805 (|#1| (-1085) |#1| |#1| |#1|)) (-15 -1805 (|#1| (-1085) |#1| |#1|)) (-15 -1805 (|#1| (-1085) |#1|)) (-15 -4090 ((-588 (-1085)) |#1|)) (-15 -3118 (|#2| |#1|)) (-15 -3108 ((-108) |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -1431 ((-821 (-354)) |#1|)) (-15 -1431 ((-821 (-522)) |#1|)) (-15 -1484 ((-1085) |#1|)) (-15 -1297 ((-3 (-1085) "failed") |#1|)) (-15 -2190 (|#1| (-1085))) (-15 -2289 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -2289 (|#1| |#1| (-110) (-1 |#1| (-588 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2289 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| |#1|)))) (-15 -2289 (|#1| |#1| (-1085) (-1 |#1| |#1|))) (-15 -2289 (|#1| |#1| (-1085) (-1 |#1| (-588 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| |#1|)))) (-15 -3614 ((-108) (-110))) (-15 -2626 ((-110) (-110))) (-15 -1267 ((-588 (-561 |#1|)) |#1|)) (-15 -3993 ((-3 (-561 |#1|) "failed") |#1|)) (-15 -3305 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -3305 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -3305 (|#1| |#1| (-270 |#1|))) (-15 -2545 (|#1| (-110) (-588 |#1|))) (-15 -2545 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -2545 (|#1| (-110) |#1| |#1| |#1|)) (-15 -2545 (|#1| (-110) |#1| |#1|)) (-15 -2545 (|#1| (-110) |#1|)) (-15 -2289 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#1| |#1|)) (-15 -2289 (|#1| |#1| (-270 |#1|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -2289 (|#1| |#1| (-561 |#1|) |#1|)) (-15 -1484 ((-561 |#1|) |#1|)) (-15 -1297 ((-3 (-561 |#1|) "failed") |#1|)) (-15 -2190 (|#1| (-561 |#1|))) (-15 -2190 ((-792) |#1|))) (-405 |#2|) (-784)) (T -404))
-((-2626 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *4 (-784)) (-5 *1 (-404 *3 *4)) (-4 *3 (-405 *4)))) (-3614 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-404 *4 *5)) (-4 *4 (-405 *5)))) (-2323 (*1 *2) (-12 (-4 *4 (-784)) (-5 *2 (-708)) (-5 *1 (-404 *3 *4)) (-4 *3 (-405 *4)))))
-(-10 -8 (-15 * (|#1| (-850) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2323 ((-708))) (-15 -2190 (|#1| (-522))) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -1431 ((-498) |#1|)) (-15 -1484 ((-881 |#2|) |#1|)) (-15 -1297 ((-3 (-881 |#2|) "failed") |#1|)) (-15 -2190 (|#1| (-881 |#2|))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2190 (|#1| |#1|)) (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -1484 ((-382 (-881 |#2|)) |#1|)) (-15 -1297 ((-3 (-382 (-881 |#2|)) "failed") |#1|)) (-15 -2190 (|#1| (-382 (-881 |#2|)))) (-15 -1282 ((-382 (-1081 |#1|)) |#1| (-561 |#1|))) (-15 -2190 (|#1| (-382 (-881 (-382 |#2|))))) (-15 -2190 (|#1| (-881 (-382 |#2|)))) (-15 -2190 (|#1| (-382 |#2|))) (-15 -3533 (|#1| |#1|)) (-15 -1431 (|#1| (-393 |#1|))) (-15 -2289 (|#1| |#1| (-1085) (-708) (-1 |#1| |#1|))) (-15 -2289 (|#1| |#1| (-1085) (-708) (-1 |#1| (-588 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 (-708)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 (-708)) (-588 (-1 |#1| |#1|)))) (-15 -2170 ((-3 (-2 (|:| |val| |#1|) (|:| -1400 (-522))) "failed") |#1|)) (-15 -3285 ((-3 (-2 (|:| |var| (-561 |#1|)) (|:| -1400 (-522))) "failed") |#1| (-1085))) (-15 -3285 ((-3 (-2 (|:| |var| (-561 |#1|)) (|:| -1400 (-522))) "failed") |#1| (-110))) (-15 -2902 (|#1| |#1|)) (-15 -2190 (|#1| (-1037 |#2| (-561 |#1|)))) (-15 -1241 ((-3 (-2 (|:| -2977 (-522)) (|:| |var| (-561 |#1|))) "failed") |#1|)) (-15 -4193 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -3285 ((-3 (-2 (|:| |var| (-561 |#1|)) (|:| -1400 (-522))) "failed") |#1|)) (-15 -2462 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -2289 (|#1| |#1| (-588 (-110)) (-588 |#1|) (-1085))) (-15 -2289 (|#1| |#1| (-110) |#1| (-1085))) (-15 -2289 (|#1| |#1|)) (-15 -2289 (|#1| |#1| (-588 (-1085)))) (-15 -2289 (|#1| |#1| (-1085))) (-15 -1805 (|#1| (-1085) (-588 |#1|))) (-15 -1805 (|#1| (-1085) |#1| |#1| |#1| |#1|)) (-15 -1805 (|#1| (-1085) |#1| |#1| |#1|)) (-15 -1805 (|#1| (-1085) |#1| |#1|)) (-15 -1805 (|#1| (-1085) |#1|)) (-15 -4090 ((-588 (-1085)) |#1|)) (-15 -3118 (|#2| |#1|)) (-15 -3108 ((-108) |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -1431 ((-821 (-354)) |#1|)) (-15 -1431 ((-821 (-522)) |#1|)) (-15 -1484 ((-1085) |#1|)) (-15 -1297 ((-3 (-1085) "failed") |#1|)) (-15 -2190 (|#1| (-1085))) (-15 -2289 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -2289 (|#1| |#1| (-110) (-1 |#1| (-588 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2289 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| |#1|)))) (-15 -2289 (|#1| |#1| (-1085) (-1 |#1| |#1|))) (-15 -2289 (|#1| |#1| (-1085) (-1 |#1| (-588 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2289 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| |#1|)))) (-15 -3614 ((-108) (-110))) (-15 -2626 ((-110) (-110))) (-15 -1267 ((-588 (-561 |#1|)) |#1|)) (-15 -3993 ((-3 (-561 |#1|) "failed") |#1|)) (-15 -3305 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -3305 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -3305 (|#1| |#1| (-270 |#1|))) (-15 -2545 (|#1| (-110) (-588 |#1|))) (-15 -2545 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -2545 (|#1| (-110) |#1| |#1| |#1|)) (-15 -2545 (|#1| (-110) |#1| |#1|)) (-15 -2545 (|#1| (-110) |#1|)) (-15 -2289 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#1| |#1|)) (-15 -2289 (|#1| |#1| (-270 |#1|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2289 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -2289 (|#1| |#1| (-561 |#1|) |#1|)) (-15 -1484 ((-561 |#1|) |#1|)) (-15 -1297 ((-3 (-561 |#1|) "failed") |#1|)) (-15 -2190 (|#1| (-561 |#1|))) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 116 (|has| |#1| (-25)))) (-4090 (((-588 (-1085)) $) 203)) (-1282 (((-382 (-1081 $)) $ (-561 $)) 171 (|has| |#1| (-514)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 143 (|has| |#1| (-514)))) (-2022 (($ $) 144 (|has| |#1| (-514)))) (-3739 (((-108) $) 146 (|has| |#1| (-514)))) (-1886 (((-588 (-561 $)) $) 44)) (-1233 (((-3 $ "failed") $ $) 118 (|has| |#1| (-21)))) (-3305 (($ $ (-270 $)) 56) (($ $ (-588 (-270 $))) 55) (($ $ (-588 (-561 $)) (-588 $)) 54)) (-3119 (($ $) 163 (|has| |#1| (-514)))) (-3450 (((-393 $) $) 164 (|has| |#1| (-514)))) (-1687 (((-108) $ $) 154 (|has| |#1| (-514)))) (-3175 (($) 102 (-3708 (|has| |#1| (-1026)) (|has| |#1| (-25))) CONST)) (-1297 (((-3 (-561 $) "failed") $) 69) (((-3 (-1085) "failed") $) 216) (((-3 (-522) "failed") $) 209 (|has| |#1| (-962 (-522)))) (((-3 |#1| "failed") $) 207) (((-3 (-382 (-881 |#1|)) "failed") $) 169 (|has| |#1| (-514))) (((-3 (-881 |#1|) "failed") $) 123 (|has| |#1| (-971))) (((-3 (-382 (-522)) "failed") $) 95 (-3708 (-12 (|has| |#1| (-962 (-522))) (|has| |#1| (-514))) (|has| |#1| (-962 (-382 (-522))))))) (-1484 (((-561 $) $) 68) (((-1085) $) 215) (((-522) $) 210 (|has| |#1| (-962 (-522)))) ((|#1| $) 206) (((-382 (-881 |#1|)) $) 168 (|has| |#1| (-514))) (((-881 |#1|) $) 122 (|has| |#1| (-971))) (((-382 (-522)) $) 94 (-3708 (-12 (|has| |#1| (-962 (-522))) (|has| |#1| (-514))) (|has| |#1| (-962 (-382 (-522))))))) (-2277 (($ $ $) 158 (|has| |#1| (-514)))) (-2096 (((-628 (-522)) (-628 $)) 137 (-4015 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 136 (-4015 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 135 (|has| |#1| (-971))) (((-628 |#1|) (-628 $)) 134 (|has| |#1| (-971)))) (-2682 (((-3 $ "failed") $) 105 (|has| |#1| (-1026)))) (-2254 (($ $ $) 157 (|has| |#1| (-514)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 152 (|has| |#1| (-514)))) (-2813 (((-108) $) 165 (|has| |#1| (-514)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 212 (|has| |#1| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 211 (|has| |#1| (-815 (-354))))) (-1953 (($ $) 51) (($ (-588 $)) 50)) (-4161 (((-588 (-110)) $) 43)) (-2626 (((-110) (-110)) 42)) (-2782 (((-108) $) 103 (|has| |#1| (-1026)))) (-2591 (((-108) $) 22 (|has| $ (-962 (-522))))) (-2902 (($ $) 186 (|has| |#1| (-971)))) (-2805 (((-1037 |#1| (-561 $)) $) 187 (|has| |#1| (-971)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 161 (|has| |#1| (-514)))) (-1711 (((-1081 $) (-561 $)) 25 (|has| $ (-971)))) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-1391 (($ (-1 $ $) (-561 $)) 36)) (-3993 (((-3 (-561 $) "failed") $) 46)) (-2224 (($ (-588 $)) 150 (|has| |#1| (-514))) (($ $ $) 149 (|has| |#1| (-514)))) (-2385 (((-1068) $) 9)) (-1267 (((-588 (-561 $)) $) 45)) (-2909 (($ (-110) $) 38) (($ (-110) (-588 $)) 37)) (-2462 (((-3 (-588 $) "failed") $) 192 (|has| |#1| (-1026)))) (-2170 (((-3 (-2 (|:| |val| $) (|:| -1400 (-522))) "failed") $) 183 (|has| |#1| (-971)))) (-4193 (((-3 (-588 $) "failed") $) 190 (|has| |#1| (-25)))) (-1241 (((-3 (-2 (|:| -2977 (-522)) (|:| |var| (-561 $))) "failed") $) 189 (|has| |#1| (-25)))) (-3285 (((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $) 191 (|has| |#1| (-1026))) (((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $ (-110)) 185 (|has| |#1| (-971))) (((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $ (-1085)) 184 (|has| |#1| (-971)))) (-2249 (((-108) $ (-110)) 40) (((-108) $ (-1085)) 39)) (-3098 (($ $) 107 (-3708 (|has| |#1| (-447)) (|has| |#1| (-514))))) (-4155 (((-708) $) 47)) (-4151 (((-1032) $) 10)) (-3108 (((-108) $) 205)) (-3118 ((|#1| $) 204)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 151 (|has| |#1| (-514)))) (-2259 (($ (-588 $)) 148 (|has| |#1| (-514))) (($ $ $) 147 (|has| |#1| (-514)))) (-1648 (((-108) $ $) 35) (((-108) $ (-1085)) 34)) (-1916 (((-393 $) $) 162 (|has| |#1| (-514)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 160 (|has| |#1| (-514))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 159 (|has| |#1| (-514)))) (-2232 (((-3 $ "failed") $ $) 142 (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 153 (|has| |#1| (-514)))) (-1263 (((-108) $) 23 (|has| $ (-962 (-522))))) (-2289 (($ $ (-561 $) $) 67) (($ $ (-588 (-561 $)) (-588 $)) 66) (($ $ (-588 (-270 $))) 65) (($ $ (-270 $)) 64) (($ $ $ $) 63) (($ $ (-588 $) (-588 $)) 62) (($ $ (-588 (-1085)) (-588 (-1 $ $))) 33) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) 32) (($ $ (-1085) (-1 $ (-588 $))) 31) (($ $ (-1085) (-1 $ $)) 30) (($ $ (-588 (-110)) (-588 (-1 $ $))) 29) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) 28) (($ $ (-110) (-1 $ (-588 $))) 27) (($ $ (-110) (-1 $ $)) 26) (($ $ (-1085)) 197 (|has| |#1| (-563 (-498)))) (($ $ (-588 (-1085))) 196 (|has| |#1| (-563 (-498)))) (($ $) 195 (|has| |#1| (-563 (-498)))) (($ $ (-110) $ (-1085)) 194 (|has| |#1| (-563 (-498)))) (($ $ (-588 (-110)) (-588 $) (-1085)) 193 (|has| |#1| (-563 (-498)))) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ $))) 182 (|has| |#1| (-971))) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ (-588 $)))) 181 (|has| |#1| (-971))) (($ $ (-1085) (-708) (-1 $ (-588 $))) 180 (|has| |#1| (-971))) (($ $ (-1085) (-708) (-1 $ $)) 179 (|has| |#1| (-971)))) (-3730 (((-708) $) 155 (|has| |#1| (-514)))) (-2545 (($ (-110) $) 61) (($ (-110) $ $) 60) (($ (-110) $ $ $) 59) (($ (-110) $ $ $ $) 58) (($ (-110) (-588 $)) 57)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 156 (|has| |#1| (-514)))) (-3043 (($ $) 49) (($ $ $) 48)) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) 128 (|has| |#1| (-971))) (($ $ (-1085) (-708)) 127 (|has| |#1| (-971))) (($ $ (-588 (-1085))) 126 (|has| |#1| (-971))) (($ $ (-1085)) 125 (|has| |#1| (-971)))) (-3533 (($ $) 176 (|has| |#1| (-514)))) (-2816 (((-1037 |#1| (-561 $)) $) 177 (|has| |#1| (-514)))) (-1479 (($ $) 24 (|has| $ (-971)))) (-1431 (((-821 (-522)) $) 214 (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) 213 (|has| |#1| (-563 (-821 (-354))))) (($ (-393 $)) 178 (|has| |#1| (-514))) (((-498) $) 97 (|has| |#1| (-563 (-498))))) (-3122 (($ $ $) 111 (|has| |#1| (-447)))) (-1288 (($ $ $) 112 (|has| |#1| (-447)))) (-2190 (((-792) $) 11) (($ (-561 $)) 70) (($ (-1085)) 217) (($ |#1|) 208) (($ (-1037 |#1| (-561 $))) 188 (|has| |#1| (-971))) (($ (-382 |#1|)) 174 (|has| |#1| (-514))) (($ (-881 (-382 |#1|))) 173 (|has| |#1| (-514))) (($ (-382 (-881 (-382 |#1|)))) 172 (|has| |#1| (-514))) (($ (-382 (-881 |#1|))) 170 (|has| |#1| (-514))) (($ $) 141 (|has| |#1| (-514))) (($ (-881 |#1|)) 124 (|has| |#1| (-971))) (($ (-382 (-522))) 96 (-3708 (|has| |#1| (-514)) (-12 (|has| |#1| (-962 (-522))) (|has| |#1| (-514))) (|has| |#1| (-962 (-382 (-522)))))) (($ (-522)) 93 (-3708 (|has| |#1| (-971)) (|has| |#1| (-962 (-522)))))) (-2143 (((-3 $ "failed") $) 138 (|has| |#1| (-133)))) (-2323 (((-708)) 133 (|has| |#1| (-971)))) (-2308 (($ $) 53) (($ (-588 $)) 52)) (-3614 (((-108) (-110)) 41)) (-3958 (((-108) $ $) 145 (|has| |#1| (-514)))) (-1805 (($ (-1085) $) 202) (($ (-1085) $ $) 201) (($ (-1085) $ $ $) 200) (($ (-1085) $ $ $ $) 199) (($ (-1085) (-588 $)) 198)) (-3510 (($ $ (-522)) 110 (-3708 (|has| |#1| (-447)) (|has| |#1| (-514)))) (($ $ (-708)) 104 (|has| |#1| (-1026))) (($ $ (-850)) 100 (|has| |#1| (-1026)))) (-3566 (($) 115 (|has| |#1| (-25)) CONST)) (-3577 (($) 101 (|has| |#1| (-1026)) CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) 132 (|has| |#1| (-971))) (($ $ (-1085) (-708)) 131 (|has| |#1| (-971))) (($ $ (-588 (-1085))) 130 (|has| |#1| (-971))) (($ $ (-1085)) 129 (|has| |#1| (-971)))) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)) (-1620 (($ (-1037 |#1| (-561 $)) (-1037 |#1| (-561 $))) 175 (|has| |#1| (-514))) (($ $ $) 108 (-3708 (|has| |#1| (-447)) (|has| |#1| (-514))))) (-1612 (($ $ $) 120 (|has| |#1| (-21))) (($ $) 119 (|has| |#1| (-21)))) (-1602 (($ $ $) 113 (|has| |#1| (-25)))) (** (($ $ (-522)) 109 (-3708 (|has| |#1| (-447)) (|has| |#1| (-514)))) (($ $ (-708)) 106 (|has| |#1| (-1026))) (($ $ (-850)) 99 (|has| |#1| (-1026)))) (* (($ (-382 (-522)) $) 167 (|has| |#1| (-514))) (($ $ (-382 (-522))) 166 (|has| |#1| (-514))) (($ |#1| $) 140 (|has| |#1| (-157))) (($ $ |#1|) 139 (|has| |#1| (-157))) (($ (-522) $) 121 (|has| |#1| (-21))) (($ (-708) $) 117 (|has| |#1| (-25))) (($ (-850) $) 114 (|has| |#1| (-25))) (($ $ $) 98 (|has| |#1| (-1026)))))
+((-1996 (((-539 |#2|) |#2| (-1085)) 35)) (-2919 (((-539 |#2|) |#2| (-1085)) 19)) (-3746 ((|#2| |#2| (-1085)) 24)))
+(((-401 |#1| |#2|) (-10 -7 (-15 -2919 ((-539 |#2|) |#2| (-1085))) (-15 -1996 ((-539 |#2|) |#2| (-1085))) (-15 -3746 (|#2| |#2| (-1085)))) (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-29 |#1|))) (T -401))
+((-3746 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *1 (-401 *4 *2)) (-4 *2 (-13 (-1106) (-29 *4))))) (-1996 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-539 *3)) (-5 *1 (-401 *5 *3)) (-4 *3 (-13 (-1106) (-29 *5))))) (-2919 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-539 *3)) (-5 *1 (-401 *5 *3)) (-4 *3 (-13 (-1106) (-29 *5))))))
+(-10 -7 (-15 -2919 ((-539 |#2|) |#2| (-1085))) (-15 -1996 ((-539 |#2|) |#2| (-1085))) (-15 -3746 (|#2| |#2| (-1085))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) NIL)) (-2859 (((-108) $) NIL)) (-1987 (($ |#2| |#1|) 35)) (-1306 (($ |#2| |#1|) 33)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-306 |#2|)) 25)) (-2742 (((-708)) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 10 T CONST)) (-3709 (($) 16 T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 34)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 36) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-402 |#1| |#2|) (-13 (-37 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4225)) (IF (|has| |#1| (-6 -4225)) (-6 -4225) |%noBranch|) |%noBranch|) (-15 -2217 ($ |#1|)) (-15 -2217 ($ (-306 |#2|))) (-15 -1987 ($ |#2| |#1|)) (-15 -1306 ($ |#2| |#1|)))) (-13 (-157) (-37 (-382 (-522)))) (-13 (-784) (-21))) (T -402))
+((-2217 (*1 *1 *2) (-12 (-5 *1 (-402 *2 *3)) (-4 *2 (-13 (-157) (-37 (-382 (-522))))) (-4 *3 (-13 (-784) (-21))))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-306 *4)) (-4 *4 (-13 (-784) (-21))) (-5 *1 (-402 *3 *4)) (-4 *3 (-13 (-157) (-37 (-382 (-522))))))) (-1987 (*1 *1 *2 *3) (-12 (-5 *1 (-402 *3 *2)) (-4 *3 (-13 (-157) (-37 (-382 (-522))))) (-4 *2 (-13 (-784) (-21))))) (-1306 (*1 *1 *2 *3) (-12 (-5 *1 (-402 *3 *2)) (-4 *3 (-13 (-157) (-37 (-382 (-522))))) (-4 *2 (-13 (-784) (-21))))))
+(-13 (-37 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4225)) (IF (|has| |#1| (-6 -4225)) (-6 -4225) |%noBranch|) |%noBranch|) (-15 -2217 ($ |#1|)) (-15 -2217 ($ (-306 |#2|))) (-15 -1987 ($ |#2| |#1|)) (-15 -1306 ($ |#2| |#1|))))
+((-2611 (((-3 |#2| (-588 |#2|)) |#2| (-1085)) 105)))
+(((-403 |#1| |#2|) (-10 -7 (-15 -2611 ((-3 |#2| (-588 |#2|)) |#2| (-1085)))) (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-887) (-29 |#1|))) (T -403))
+((-2611 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 *3 (-588 *3))) (-5 *1 (-403 *5 *3)) (-4 *3 (-13 (-1106) (-887) (-29 *5))))))
+(-10 -7 (-15 -2611 ((-3 |#2| (-588 |#2|)) |#2| (-1085))))
+((-3533 (((-588 (-1085)) $) 72)) (-1264 (((-382 (-1081 $)) $ (-561 $)) 269)) (-1847 (($ $ (-270 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-588 (-561 $)) (-588 $)) 234)) (-3700 (((-3 (-561 $) "failed") $) NIL) (((-3 (-1085) "failed") $) 75) (((-3 (-522) "failed") $) NIL) (((-3 |#2| "failed") $) 230) (((-3 (-382 (-881 |#2|)) "failed") $) 320) (((-3 (-881 |#2|) "failed") $) 232) (((-3 (-382 (-522)) "failed") $) NIL)) (-1478 (((-561 $) $) NIL) (((-1085) $) 30) (((-522) $) NIL) ((|#2| $) 228) (((-382 (-881 |#2|)) $) 301) (((-881 |#2|) $) 229) (((-382 (-522)) $) NIL)) (-1771 (((-110) (-110)) 47)) (-1558 (($ $) 87)) (-3562 (((-3 (-561 $) "failed") $) 225)) (-1249 (((-588 (-561 $)) $) 226)) (-2760 (((-3 (-588 $) "failed") $) 244)) (-3242 (((-3 (-2 (|:| |val| $) (|:| -3858 (-522))) "failed") $) 251)) (-1919 (((-3 (-588 $) "failed") $) 242)) (-2367 (((-3 (-2 (|:| -3112 (-522)) (|:| |var| (-561 $))) "failed") $) 260)) (-2024 (((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $) 248) (((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $ (-110)) 215) (((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $ (-1085)) 217)) (-3199 (((-108) $) 19)) (-3207 ((|#2| $) 21)) (-2330 (($ $ (-561 $) $) NIL) (($ $ (-588 (-561 $)) (-588 $)) 233) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) 96) (($ $ (-1085) (-1 $ (-588 $))) NIL) (($ $ (-1085) (-1 $ $)) NIL) (($ $ (-588 (-110)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-110) (-1 $ (-588 $))) NIL) (($ $ (-110) (-1 $ $)) NIL) (($ $ (-1085)) 57) (($ $ (-588 (-1085))) 237) (($ $) 238) (($ $ (-110) $ (-1085)) 60) (($ $ (-588 (-110)) (-588 $) (-1085)) 67) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ $))) 107) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ (-588 $)))) 239) (($ $ (-1085) (-708) (-1 $ (-588 $))) 94) (($ $ (-1085) (-708) (-1 $ $)) 93)) (-2683 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-588 $)) 106)) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) 235)) (-2762 (($ $) 280)) (-3873 (((-821 (-522)) $) 254) (((-821 (-354)) $) 257) (($ (-393 $)) 316) (((-498) $) NIL)) (-2217 (((-792) $) 236) (($ (-561 $)) 84) (($ (-1085)) 26) (($ |#2|) NIL) (($ (-1037 |#2| (-561 $))) NIL) (($ (-382 |#2|)) 285) (($ (-881 (-382 |#2|))) 325) (($ (-382 (-881 (-382 |#2|)))) 297) (($ (-382 (-881 |#2|))) 291) (($ $) NIL) (($ (-881 |#2|)) 184) (($ (-382 (-522))) 330) (($ (-522)) NIL)) (-2742 (((-708)) 79)) (-4082 (((-108) (-110)) 41)) (-1899 (($ (-1085) $) 33) (($ (-1085) $ $) 34) (($ (-1085) $ $ $) 35) (($ (-1085) $ $ $ $) 36) (($ (-1085) (-588 $)) 39)) (* (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL) (($ |#2| $) 262) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-522) $) NIL) (($ (-708) $) NIL) (($ (-850) $) NIL)))
+(((-404 |#1| |#2|) (-10 -8 (-15 * (|#1| (-850) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2742 ((-708))) (-15 -2217 (|#1| (-522))) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -3873 ((-498) |#1|)) (-15 -1478 ((-881 |#2|) |#1|)) (-15 -3700 ((-3 (-881 |#2|) "failed") |#1|)) (-15 -2217 (|#1| (-881 |#2|))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2217 (|#1| |#1|)) (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -1478 ((-382 (-881 |#2|)) |#1|)) (-15 -3700 ((-3 (-382 (-881 |#2|)) "failed") |#1|)) (-15 -2217 (|#1| (-382 (-881 |#2|)))) (-15 -1264 ((-382 (-1081 |#1|)) |#1| (-561 |#1|))) (-15 -2217 (|#1| (-382 (-881 (-382 |#2|))))) (-15 -2217 (|#1| (-881 (-382 |#2|)))) (-15 -2217 (|#1| (-382 |#2|))) (-15 -2762 (|#1| |#1|)) (-15 -3873 (|#1| (-393 |#1|))) (-15 -2330 (|#1| |#1| (-1085) (-708) (-1 |#1| |#1|))) (-15 -2330 (|#1| |#1| (-1085) (-708) (-1 |#1| (-588 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 (-708)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 (-708)) (-588 (-1 |#1| |#1|)))) (-15 -3242 ((-3 (-2 (|:| |val| |#1|) (|:| -3858 (-522))) "failed") |#1|)) (-15 -2024 ((-3 (-2 (|:| |var| (-561 |#1|)) (|:| -3858 (-522))) "failed") |#1| (-1085))) (-15 -2024 ((-3 (-2 (|:| |var| (-561 |#1|)) (|:| -3858 (-522))) "failed") |#1| (-110))) (-15 -1558 (|#1| |#1|)) (-15 -2217 (|#1| (-1037 |#2| (-561 |#1|)))) (-15 -2367 ((-3 (-2 (|:| -3112 (-522)) (|:| |var| (-561 |#1|))) "failed") |#1|)) (-15 -1919 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -2024 ((-3 (-2 (|:| |var| (-561 |#1|)) (|:| -3858 (-522))) "failed") |#1|)) (-15 -2760 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -2330 (|#1| |#1| (-588 (-110)) (-588 |#1|) (-1085))) (-15 -2330 (|#1| |#1| (-110) |#1| (-1085))) (-15 -2330 (|#1| |#1|)) (-15 -2330 (|#1| |#1| (-588 (-1085)))) (-15 -2330 (|#1| |#1| (-1085))) (-15 -1899 (|#1| (-1085) (-588 |#1|))) (-15 -1899 (|#1| (-1085) |#1| |#1| |#1| |#1|)) (-15 -1899 (|#1| (-1085) |#1| |#1| |#1|)) (-15 -1899 (|#1| (-1085) |#1| |#1|)) (-15 -1899 (|#1| (-1085) |#1|)) (-15 -3533 ((-588 (-1085)) |#1|)) (-15 -3207 (|#2| |#1|)) (-15 -3199 ((-108) |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -3873 ((-821 (-354)) |#1|)) (-15 -3873 ((-821 (-522)) |#1|)) (-15 -1478 ((-1085) |#1|)) (-15 -3700 ((-3 (-1085) "failed") |#1|)) (-15 -2217 (|#1| (-1085))) (-15 -2330 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -2330 (|#1| |#1| (-110) (-1 |#1| (-588 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2330 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| |#1|)))) (-15 -2330 (|#1| |#1| (-1085) (-1 |#1| |#1|))) (-15 -2330 (|#1| |#1| (-1085) (-1 |#1| (-588 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| |#1|)))) (-15 -4082 ((-108) (-110))) (-15 -1771 ((-110) (-110))) (-15 -1249 ((-588 (-561 |#1|)) |#1|)) (-15 -3562 ((-3 (-561 |#1|) "failed") |#1|)) (-15 -1847 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -1847 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -1847 (|#1| |#1| (-270 |#1|))) (-15 -2683 (|#1| (-110) (-588 |#1|))) (-15 -2683 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -2683 (|#1| (-110) |#1| |#1| |#1|)) (-15 -2683 (|#1| (-110) |#1| |#1|)) (-15 -2683 (|#1| (-110) |#1|)) (-15 -2330 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#1| |#1|)) (-15 -2330 (|#1| |#1| (-270 |#1|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -2330 (|#1| |#1| (-561 |#1|) |#1|)) (-15 -1478 ((-561 |#1|) |#1|)) (-15 -3700 ((-3 (-561 |#1|) "failed") |#1|)) (-15 -2217 (|#1| (-561 |#1|))) (-15 -2217 ((-792) |#1|))) (-405 |#2|) (-784)) (T -404))
+((-1771 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *4 (-784)) (-5 *1 (-404 *3 *4)) (-4 *3 (-405 *4)))) (-4082 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-404 *4 *5)) (-4 *4 (-405 *5)))) (-2742 (*1 *2) (-12 (-4 *4 (-784)) (-5 *2 (-708)) (-5 *1 (-404 *3 *4)) (-4 *3 (-405 *4)))))
+(-10 -8 (-15 * (|#1| (-850) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2742 ((-708))) (-15 -2217 (|#1| (-522))) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -3873 ((-498) |#1|)) (-15 -1478 ((-881 |#2|) |#1|)) (-15 -3700 ((-3 (-881 |#2|) "failed") |#1|)) (-15 -2217 (|#1| (-881 |#2|))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2217 (|#1| |#1|)) (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -1478 ((-382 (-881 |#2|)) |#1|)) (-15 -3700 ((-3 (-382 (-881 |#2|)) "failed") |#1|)) (-15 -2217 (|#1| (-382 (-881 |#2|)))) (-15 -1264 ((-382 (-1081 |#1|)) |#1| (-561 |#1|))) (-15 -2217 (|#1| (-382 (-881 (-382 |#2|))))) (-15 -2217 (|#1| (-881 (-382 |#2|)))) (-15 -2217 (|#1| (-382 |#2|))) (-15 -2762 (|#1| |#1|)) (-15 -3873 (|#1| (-393 |#1|))) (-15 -2330 (|#1| |#1| (-1085) (-708) (-1 |#1| |#1|))) (-15 -2330 (|#1| |#1| (-1085) (-708) (-1 |#1| (-588 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 (-708)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 (-708)) (-588 (-1 |#1| |#1|)))) (-15 -3242 ((-3 (-2 (|:| |val| |#1|) (|:| -3858 (-522))) "failed") |#1|)) (-15 -2024 ((-3 (-2 (|:| |var| (-561 |#1|)) (|:| -3858 (-522))) "failed") |#1| (-1085))) (-15 -2024 ((-3 (-2 (|:| |var| (-561 |#1|)) (|:| -3858 (-522))) "failed") |#1| (-110))) (-15 -1558 (|#1| |#1|)) (-15 -2217 (|#1| (-1037 |#2| (-561 |#1|)))) (-15 -2367 ((-3 (-2 (|:| -3112 (-522)) (|:| |var| (-561 |#1|))) "failed") |#1|)) (-15 -1919 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -2024 ((-3 (-2 (|:| |var| (-561 |#1|)) (|:| -3858 (-522))) "failed") |#1|)) (-15 -2760 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -2330 (|#1| |#1| (-588 (-110)) (-588 |#1|) (-1085))) (-15 -2330 (|#1| |#1| (-110) |#1| (-1085))) (-15 -2330 (|#1| |#1|)) (-15 -2330 (|#1| |#1| (-588 (-1085)))) (-15 -2330 (|#1| |#1| (-1085))) (-15 -1899 (|#1| (-1085) (-588 |#1|))) (-15 -1899 (|#1| (-1085) |#1| |#1| |#1| |#1|)) (-15 -1899 (|#1| (-1085) |#1| |#1| |#1|)) (-15 -1899 (|#1| (-1085) |#1| |#1|)) (-15 -1899 (|#1| (-1085) |#1|)) (-15 -3533 ((-588 (-1085)) |#1|)) (-15 -3207 (|#2| |#1|)) (-15 -3199 ((-108) |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -3873 ((-821 (-354)) |#1|)) (-15 -3873 ((-821 (-522)) |#1|)) (-15 -1478 ((-1085) |#1|)) (-15 -3700 ((-3 (-1085) "failed") |#1|)) (-15 -2217 (|#1| (-1085))) (-15 -2330 (|#1| |#1| (-110) (-1 |#1| |#1|))) (-15 -2330 (|#1| |#1| (-110) (-1 |#1| (-588 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2330 (|#1| |#1| (-588 (-110)) (-588 (-1 |#1| |#1|)))) (-15 -2330 (|#1| |#1| (-1085) (-1 |#1| |#1|))) (-15 -2330 (|#1| |#1| (-1085) (-1 |#1| (-588 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| (-588 |#1|))))) (-15 -2330 (|#1| |#1| (-588 (-1085)) (-588 (-1 |#1| |#1|)))) (-15 -4082 ((-108) (-110))) (-15 -1771 ((-110) (-110))) (-15 -1249 ((-588 (-561 |#1|)) |#1|)) (-15 -3562 ((-3 (-561 |#1|) "failed") |#1|)) (-15 -1847 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -1847 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -1847 (|#1| |#1| (-270 |#1|))) (-15 -2683 (|#1| (-110) (-588 |#1|))) (-15 -2683 (|#1| (-110) |#1| |#1| |#1| |#1|)) (-15 -2683 (|#1| (-110) |#1| |#1| |#1|)) (-15 -2683 (|#1| (-110) |#1| |#1|)) (-15 -2683 (|#1| (-110) |#1|)) (-15 -2330 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#1| |#1|)) (-15 -2330 (|#1| |#1| (-270 |#1|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2330 (|#1| |#1| (-588 (-561 |#1|)) (-588 |#1|))) (-15 -2330 (|#1| |#1| (-561 |#1|) |#1|)) (-15 -1478 ((-561 |#1|) |#1|)) (-15 -3700 ((-3 (-561 |#1|) "failed") |#1|)) (-15 -2217 (|#1| (-561 |#1|))) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 116 (|has| |#1| (-25)))) (-3533 (((-588 (-1085)) $) 203)) (-1264 (((-382 (-1081 $)) $ (-561 $)) 171 (|has| |#1| (-514)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 143 (|has| |#1| (-514)))) (-2298 (($ $) 144 (|has| |#1| (-514)))) (-3007 (((-108) $) 146 (|has| |#1| (-514)))) (-1974 (((-588 (-561 $)) $) 44)) (-2265 (((-3 $ "failed") $ $) 118 (|has| |#1| (-21)))) (-1847 (($ $ (-270 $)) 56) (($ $ (-588 (-270 $))) 55) (($ $ (-588 (-561 $)) (-588 $)) 54)) (-2961 (($ $) 163 (|has| |#1| (-514)))) (-3133 (((-393 $) $) 164 (|has| |#1| (-514)))) (-2805 (((-108) $ $) 154 (|has| |#1| (-514)))) (-3367 (($) 102 (-3844 (|has| |#1| (-1026)) (|has| |#1| (-25))) CONST)) (-3700 (((-3 (-561 $) "failed") $) 69) (((-3 (-1085) "failed") $) 216) (((-3 (-522) "failed") $) 209 (|has| |#1| (-962 (-522)))) (((-3 |#1| "failed") $) 207) (((-3 (-382 (-881 |#1|)) "failed") $) 169 (|has| |#1| (-514))) (((-3 (-881 |#1|) "failed") $) 123 (|has| |#1| (-971))) (((-3 (-382 (-522)) "failed") $) 95 (-3844 (-12 (|has| |#1| (-962 (-522))) (|has| |#1| (-514))) (|has| |#1| (-962 (-382 (-522))))))) (-1478 (((-561 $) $) 68) (((-1085) $) 215) (((-522) $) 210 (|has| |#1| (-962 (-522)))) ((|#1| $) 206) (((-382 (-881 |#1|)) $) 168 (|has| |#1| (-514))) (((-881 |#1|) $) 122 (|has| |#1| (-971))) (((-382 (-522)) $) 94 (-3844 (-12 (|has| |#1| (-962 (-522))) (|has| |#1| (-514))) (|has| |#1| (-962 (-382 (-522))))))) (-2333 (($ $ $) 158 (|has| |#1| (-514)))) (-1226 (((-628 (-522)) (-628 $)) 137 (-4079 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 136 (-4079 (|has| |#1| (-584 (-522))) (|has| |#1| (-971)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 135 (|has| |#1| (-971))) (((-628 |#1|) (-628 $)) 134 (|has| |#1| (-971)))) (-3920 (((-3 $ "failed") $) 105 (|has| |#1| (-1026)))) (-2303 (($ $ $) 157 (|has| |#1| (-514)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 152 (|has| |#1| (-514)))) (-2725 (((-108) $) 165 (|has| |#1| (-514)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 212 (|has| |#1| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 211 (|has| |#1| (-815 (-354))))) (-2930 (($ $) 51) (($ (-588 $)) 50)) (-2896 (((-588 (-110)) $) 43)) (-1771 (((-110) (-110)) 42)) (-2859 (((-108) $) 103 (|has| |#1| (-1026)))) (-3077 (((-108) $) 22 (|has| $ (-962 (-522))))) (-1558 (($ $) 186 (|has| |#1| (-971)))) (-2947 (((-1037 |#1| (-561 $)) $) 187 (|has| |#1| (-971)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 161 (|has| |#1| (-514)))) (-4185 (((-1081 $) (-561 $)) 25 (|has| $ (-971)))) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-3810 (($ (-1 $ $) (-561 $)) 36)) (-3562 (((-3 (-561 $) "failed") $) 46)) (-2267 (($ (-588 $)) 150 (|has| |#1| (-514))) (($ $ $) 149 (|has| |#1| (-514)))) (-2311 (((-1068) $) 9)) (-1249 (((-588 (-561 $)) $) 45)) (-3043 (($ (-110) $) 38) (($ (-110) (-588 $)) 37)) (-2760 (((-3 (-588 $) "failed") $) 192 (|has| |#1| (-1026)))) (-3242 (((-3 (-2 (|:| |val| $) (|:| -3858 (-522))) "failed") $) 183 (|has| |#1| (-971)))) (-1919 (((-3 (-588 $) "failed") $) 190 (|has| |#1| (-25)))) (-2367 (((-3 (-2 (|:| -3112 (-522)) (|:| |var| (-561 $))) "failed") $) 189 (|has| |#1| (-25)))) (-2024 (((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $) 191 (|has| |#1| (-1026))) (((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $ (-110)) 185 (|has| |#1| (-971))) (((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $ (-1085)) 184 (|has| |#1| (-971)))) (-2935 (((-108) $ (-110)) 40) (((-108) $ (-1085)) 39)) (-3193 (($ $) 107 (-3844 (|has| |#1| (-447)) (|has| |#1| (-514))))) (-4179 (((-708) $) 47)) (-4174 (((-1032) $) 10)) (-3199 (((-108) $) 205)) (-3207 ((|#1| $) 204)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 151 (|has| |#1| (-514)))) (-2308 (($ (-588 $)) 148 (|has| |#1| (-514))) (($ $ $) 147 (|has| |#1| (-514)))) (-2368 (((-108) $ $) 35) (((-108) $ (-1085)) 34)) (-2006 (((-393 $) $) 162 (|has| |#1| (-514)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 160 (|has| |#1| (-514))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 159 (|has| |#1| (-514)))) (-2276 (((-3 $ "failed") $ $) 142 (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 153 (|has| |#1| (-514)))) (-2626 (((-108) $) 23 (|has| $ (-962 (-522))))) (-2330 (($ $ (-561 $) $) 67) (($ $ (-588 (-561 $)) (-588 $)) 66) (($ $ (-588 (-270 $))) 65) (($ $ (-270 $)) 64) (($ $ $ $) 63) (($ $ (-588 $) (-588 $)) 62) (($ $ (-588 (-1085)) (-588 (-1 $ $))) 33) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) 32) (($ $ (-1085) (-1 $ (-588 $))) 31) (($ $ (-1085) (-1 $ $)) 30) (($ $ (-588 (-110)) (-588 (-1 $ $))) 29) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) 28) (($ $ (-110) (-1 $ (-588 $))) 27) (($ $ (-110) (-1 $ $)) 26) (($ $ (-1085)) 197 (|has| |#1| (-563 (-498)))) (($ $ (-588 (-1085))) 196 (|has| |#1| (-563 (-498)))) (($ $) 195 (|has| |#1| (-563 (-498)))) (($ $ (-110) $ (-1085)) 194 (|has| |#1| (-563 (-498)))) (($ $ (-588 (-110)) (-588 $) (-1085)) 193 (|has| |#1| (-563 (-498)))) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ $))) 182 (|has| |#1| (-971))) (($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ (-588 $)))) 181 (|has| |#1| (-971))) (($ $ (-1085) (-708) (-1 $ (-588 $))) 180 (|has| |#1| (-971))) (($ $ (-1085) (-708) (-1 $ $)) 179 (|has| |#1| (-971)))) (-4031 (((-708) $) 155 (|has| |#1| (-514)))) (-2683 (($ (-110) $) 61) (($ (-110) $ $) 60) (($ (-110) $ $ $) 59) (($ (-110) $ $ $ $) 58) (($ (-110) (-588 $)) 57)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 156 (|has| |#1| (-514)))) (-3406 (($ $) 49) (($ $ $) 48)) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) 128 (|has| |#1| (-971))) (($ $ (-1085) (-708)) 127 (|has| |#1| (-971))) (($ $ (-588 (-1085))) 126 (|has| |#1| (-971))) (($ $ (-1085)) 125 (|has| |#1| (-971)))) (-2762 (($ $) 176 (|has| |#1| (-514)))) (-2959 (((-1037 |#1| (-561 $)) $) 177 (|has| |#1| (-514)))) (-1579 (($ $) 24 (|has| $ (-971)))) (-3873 (((-821 (-522)) $) 214 (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) 213 (|has| |#1| (-563 (-821 (-354))))) (($ (-393 $)) 178 (|has| |#1| (-514))) (((-498) $) 97 (|has| |#1| (-563 (-498))))) (-2983 (($ $ $) 111 (|has| |#1| (-447)))) (-1596 (($ $ $) 112 (|has| |#1| (-447)))) (-2217 (((-792) $) 11) (($ (-561 $)) 70) (($ (-1085)) 217) (($ |#1|) 208) (($ (-1037 |#1| (-561 $))) 188 (|has| |#1| (-971))) (($ (-382 |#1|)) 174 (|has| |#1| (-514))) (($ (-881 (-382 |#1|))) 173 (|has| |#1| (-514))) (($ (-382 (-881 (-382 |#1|)))) 172 (|has| |#1| (-514))) (($ (-382 (-881 |#1|))) 170 (|has| |#1| (-514))) (($ $) 141 (|has| |#1| (-514))) (($ (-881 |#1|)) 124 (|has| |#1| (-971))) (($ (-382 (-522))) 96 (-3844 (|has| |#1| (-514)) (-12 (|has| |#1| (-962 (-522))) (|has| |#1| (-514))) (|has| |#1| (-962 (-382 (-522)))))) (($ (-522)) 93 (-3844 (|has| |#1| (-971)) (|has| |#1| (-962 (-522)))))) (-3040 (((-3 $ "failed") $) 138 (|has| |#1| (-133)))) (-2742 (((-708)) 133 (|has| |#1| (-971)))) (-3811 (($ $) 53) (($ (-588 $)) 52)) (-4082 (((-108) (-110)) 41)) (-1407 (((-108) $ $) 145 (|has| |#1| (-514)))) (-1899 (($ (-1085) $) 202) (($ (-1085) $ $) 201) (($ (-1085) $ $ $) 200) (($ (-1085) $ $ $ $) 199) (($ (-1085) (-588 $)) 198)) (-3622 (($ $ (-522)) 110 (-3844 (|has| |#1| (-447)) (|has| |#1| (-514)))) (($ $ (-708)) 104 (|has| |#1| (-1026))) (($ $ (-850)) 100 (|has| |#1| (-1026)))) (-3697 (($) 115 (|has| |#1| (-25)) CONST)) (-3709 (($) 101 (|has| |#1| (-1026)) CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) 132 (|has| |#1| (-971))) (($ $ (-1085) (-708)) 131 (|has| |#1| (-971))) (($ $ (-588 (-1085))) 130 (|has| |#1| (-971))) (($ $ (-1085)) 129 (|has| |#1| (-971)))) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)) (-1682 (($ (-1037 |#1| (-561 $)) (-1037 |#1| (-561 $))) 175 (|has| |#1| (-514))) (($ $ $) 108 (-3844 (|has| |#1| (-447)) (|has| |#1| (-514))))) (-1672 (($ $ $) 120 (|has| |#1| (-21))) (($ $) 119 (|has| |#1| (-21)))) (-1661 (($ $ $) 113 (|has| |#1| (-25)))) (** (($ $ (-522)) 109 (-3844 (|has| |#1| (-447)) (|has| |#1| (-514)))) (($ $ (-708)) 106 (|has| |#1| (-1026))) (($ $ (-850)) 99 (|has| |#1| (-1026)))) (* (($ (-382 (-522)) $) 167 (|has| |#1| (-514))) (($ $ (-382 (-522))) 166 (|has| |#1| (-514))) (($ |#1| $) 140 (|has| |#1| (-157))) (($ $ |#1|) 139 (|has| |#1| (-157))) (($ (-522) $) 121 (|has| |#1| (-21))) (($ (-708) $) 117 (|has| |#1| (-25))) (($ (-850) $) 114 (|has| |#1| (-25))) (($ $ $) 98 (|has| |#1| (-1026)))))
(((-405 |#1|) (-1197) (-784)) (T -405))
-((-3108 (*1 *2 *1) (-12 (-4 *1 (-405 *3)) (-4 *3 (-784)) (-5 *2 (-108)))) (-3118 (*1 *2 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)))) (-4090 (*1 *2 *1) (-12 (-4 *1 (-405 *3)) (-4 *3 (-784)) (-5 *2 (-588 (-1085))))) (-1805 (*1 *1 *2 *1) (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784)))) (-1805 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784)))) (-1805 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784)))) (-1805 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784)))) (-1805 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-588 *1)) (-4 *1 (-405 *4)) (-4 *4 (-784)))) (-2289 (*1 *1 *1 *2) (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784)) (-4 *3 (-563 (-498))))) (-2289 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-1085))) (-4 *1 (-405 *3)) (-4 *3 (-784)) (-4 *3 (-563 (-498))))) (-2289 (*1 *1 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)) (-4 *2 (-563 (-498))))) (-2289 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1085)) (-4 *1 (-405 *4)) (-4 *4 (-784)) (-4 *4 (-563 (-498))))) (-2289 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-588 (-110))) (-5 *3 (-588 *1)) (-5 *4 (-1085)) (-4 *1 (-405 *5)) (-4 *5 (-784)) (-4 *5 (-563 (-498))))) (-2462 (*1 *2 *1) (|partial| -12 (-4 *3 (-1026)) (-4 *3 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-405 *3)))) (-3285 (*1 *2 *1) (|partial| -12 (-4 *3 (-1026)) (-4 *3 (-784)) (-5 *2 (-2 (|:| |var| (-561 *1)) (|:| -1400 (-522)))) (-4 *1 (-405 *3)))) (-4193 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-405 *3)))) (-1241 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-784)) (-5 *2 (-2 (|:| -2977 (-522)) (|:| |var| (-561 *1)))) (-4 *1 (-405 *3)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1037 *3 (-561 *1))) (-4 *3 (-971)) (-4 *3 (-784)) (-4 *1 (-405 *3)))) (-2805 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *3 (-784)) (-5 *2 (-1037 *3 (-561 *1))) (-4 *1 (-405 *3)))) (-2902 (*1 *1 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)) (-4 *2 (-971)))) (-3285 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-110)) (-4 *4 (-971)) (-4 *4 (-784)) (-5 *2 (-2 (|:| |var| (-561 *1)) (|:| -1400 (-522)))) (-4 *1 (-405 *4)))) (-3285 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1085)) (-4 *4 (-971)) (-4 *4 (-784)) (-5 *2 (-2 (|:| |var| (-561 *1)) (|:| -1400 (-522)))) (-4 *1 (-405 *4)))) (-2170 (*1 *2 *1) (|partial| -12 (-4 *3 (-971)) (-4 *3 (-784)) (-5 *2 (-2 (|:| |val| *1) (|:| -1400 (-522)))) (-4 *1 (-405 *3)))) (-2289 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-588 (-708))) (-5 *4 (-588 (-1 *1 *1))) (-4 *1 (-405 *5)) (-4 *5 (-784)) (-4 *5 (-971)))) (-2289 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-588 (-708))) (-5 *4 (-588 (-1 *1 (-588 *1)))) (-4 *1 (-405 *5)) (-4 *5 (-784)) (-4 *5 (-971)))) (-2289 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-708)) (-5 *4 (-1 *1 (-588 *1))) (-4 *1 (-405 *5)) (-4 *5 (-784)) (-4 *5 (-971)))) (-2289 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-708)) (-5 *4 (-1 *1 *1)) (-4 *1 (-405 *5)) (-4 *5 (-784)) (-4 *5 (-971)))) (-1431 (*1 *1 *2) (-12 (-5 *2 (-393 *1)) (-4 *1 (-405 *3)) (-4 *3 (-514)) (-4 *3 (-784)))) (-2816 (*1 *2 *1) (-12 (-4 *3 (-514)) (-4 *3 (-784)) (-5 *2 (-1037 *3 (-561 *1))) (-4 *1 (-405 *3)))) (-3533 (*1 *1 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)) (-4 *2 (-514)))) (-1620 (*1 *1 *2 *2) (-12 (-5 *2 (-1037 *3 (-561 *1))) (-4 *3 (-514)) (-4 *3 (-784)) (-4 *1 (-405 *3)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-382 *3)) (-4 *3 (-514)) (-4 *3 (-784)) (-4 *1 (-405 *3)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-881 (-382 *3))) (-4 *3 (-514)) (-4 *3 (-784)) (-4 *1 (-405 *3)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-382 (-881 (-382 *3)))) (-4 *3 (-514)) (-4 *3 (-784)) (-4 *1 (-405 *3)))) (-1282 (*1 *2 *1 *3) (-12 (-5 *3 (-561 *1)) (-4 *1 (-405 *4)) (-4 *4 (-784)) (-4 *4 (-514)) (-5 *2 (-382 (-1081 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-405 *3)) (-4 *3 (-784)) (-4 *3 (-1026)))))
-(-13 (-278) (-962 (-1085)) (-813 |t#1|) (-375 |t#1|) (-386 |t#1|) (-10 -8 (-15 -3108 ((-108) $)) (-15 -3118 (|t#1| $)) (-15 -4090 ((-588 (-1085)) $)) (-15 -1805 ($ (-1085) $)) (-15 -1805 ($ (-1085) $ $)) (-15 -1805 ($ (-1085) $ $ $)) (-15 -1805 ($ (-1085) $ $ $ $)) (-15 -1805 ($ (-1085) (-588 $))) (IF (|has| |t#1| (-563 (-498))) (PROGN (-6 (-563 (-498))) (-15 -2289 ($ $ (-1085))) (-15 -2289 ($ $ (-588 (-1085)))) (-15 -2289 ($ $)) (-15 -2289 ($ $ (-110) $ (-1085))) (-15 -2289 ($ $ (-588 (-110)) (-588 $) (-1085)))) |%noBranch|) (IF (|has| |t#1| (-1026)) (PROGN (-6 (-664)) (-15 ** ($ $ (-708))) (-15 -2462 ((-3 (-588 $) "failed") $)) (-15 -3285 ((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-447)) (-6 (-447)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -4193 ((-3 (-588 $) "failed") $)) (-15 -1241 ((-3 (-2 (|:| -2977 (-522)) (|:| |var| (-561 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-971)) (PROGN (-6 (-971)) (-6 (-962 (-881 |t#1|))) (-6 (-829 (-1085))) (-6 (-352 |t#1|)) (-15 -2190 ($ (-1037 |t#1| (-561 $)))) (-15 -2805 ((-1037 |t#1| (-561 $)) $)) (-15 -2902 ($ $)) (-15 -3285 ((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $ (-110))) (-15 -3285 ((-3 (-2 (|:| |var| (-561 $)) (|:| -1400 (-522))) "failed") $ (-1085))) (-15 -2170 ((-3 (-2 (|:| |val| $) (|:| -1400 (-522))) "failed") $)) (-15 -2289 ($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ $)))) (-15 -2289 ($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ (-588 $))))) (-15 -2289 ($ $ (-1085) (-708) (-1 $ (-588 $)))) (-15 -2289 ($ $ (-1085) (-708) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |t#1| (-157)) (-6 (-37 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-514)) (PROGN (-6 (-338)) (-6 (-962 (-382 (-881 |t#1|)))) (-15 -1431 ($ (-393 $))) (-15 -2816 ((-1037 |t#1| (-561 $)) $)) (-15 -3533 ($ $)) (-15 -1620 ($ (-1037 |t#1| (-561 $)) (-1037 |t#1| (-561 $)))) (-15 -2190 ($ (-382 |t#1|))) (-15 -2190 ($ (-881 (-382 |t#1|)))) (-15 -2190 ($ (-382 (-881 (-382 |t#1|))))) (-15 -1282 ((-382 (-1081 $)) $ (-561 $))) (IF (|has| |t#1| (-962 (-522))) (-6 (-962 (-382 (-522)))) |%noBranch|)) |%noBranch|)))
-(((-21) -3708 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133)) (|has| |#1| (-21))) ((-23) -3708 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -3708 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-37 #0=(-382 (-522))) |has| |#1| (-514)) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-514)) ((-107 |#1| |#1|) |has| |#1| (-157)) ((-107 $ $) |has| |#1| (-514)) ((-124) -3708 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133)) (|has| |#1| (-21))) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) |has| |#1| (-514)) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-563 (-821 (-354))) |has| |#1| (-563 (-821 (-354)))) ((-563 (-821 (-522))) |has| |#1| (-563 (-821 (-522)))) ((-220) |has| |#1| (-514)) ((-266) |has| |#1| (-514)) ((-283) |has| |#1| (-514)) ((-285 $) . T) ((-278) . T) ((-338) |has| |#1| (-514)) ((-352 |#1|) |has| |#1| (-971)) ((-375 |#1|) . T) ((-386 |#1|) . T) ((-426) |has| |#1| (-514)) ((-447) |has| |#1| (-447)) ((-483 (-561 $) $) . T) ((-483 $ $) . T) ((-514) |has| |#1| (-514)) ((-590 #0#) |has| |#1| (-514)) ((-590 |#1|) |has| |#1| (-157)) ((-590 $) -3708 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133))) ((-584 (-522)) -12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) ((-584 |#1|) |has| |#1| (-971)) ((-655 #0#) |has| |#1| (-514)) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) -3708 (|has| |#1| (-1026)) (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-447)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133))) ((-784) . T) ((-829 (-1085)) |has| |#1| (-971)) ((-815 (-354)) |has| |#1| (-815 (-354))) ((-815 (-522)) |has| |#1| (-815 (-522))) ((-813 |#1|) . T) ((-849) |has| |#1| (-514)) ((-962 (-382 (-522))) -3708 (|has| |#1| (-962 (-382 (-522)))) (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522))))) ((-962 (-382 (-881 |#1|))) |has| |#1| (-514)) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 (-561 $)) . T) ((-962 (-881 |#1|)) |has| |#1| (-971)) ((-962 (-1085)) . T) ((-962 |#1|) . T) ((-977 #0#) |has| |#1| (-514)) ((-977 |#1|) |has| |#1| (-157)) ((-977 $) |has| |#1| (-514)) ((-971) -3708 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133))) ((-978) -3708 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133))) ((-1026) -3708 (|has| |#1| (-1026)) (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-447)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133))) ((-1014) . T) ((-1120) . T) ((-1124) |has| |#1| (-514)))
-((-1967 ((|#2| |#2| |#2|) 33)) (-2626 (((-110) (-110)) 44)) (-2166 ((|#2| |#2|) 66)) (-3759 ((|#2| |#2|) 69)) (-3236 ((|#2| |#2|) 32)) (-1829 ((|#2| |#2| |#2|) 35)) (-2709 ((|#2| |#2| |#2|) 37)) (-2477 ((|#2| |#2| |#2|) 34)) (-4205 ((|#2| |#2| |#2|) 36)) (-3614 (((-108) (-110)) 42)) (-1601 ((|#2| |#2|) 39)) (-2607 ((|#2| |#2|) 38)) (-2241 ((|#2| |#2|) 27)) (-2018 ((|#2| |#2| |#2|) 30) ((|#2| |#2|) 28)) (-2627 ((|#2| |#2| |#2|) 31)))
-(((-406 |#1| |#2|) (-10 -7 (-15 -3614 ((-108) (-110))) (-15 -2626 ((-110) (-110))) (-15 -2241 (|#2| |#2|)) (-15 -2018 (|#2| |#2|)) (-15 -2018 (|#2| |#2| |#2|)) (-15 -2627 (|#2| |#2| |#2|)) (-15 -3236 (|#2| |#2|)) (-15 -1967 (|#2| |#2| |#2|)) (-15 -2477 (|#2| |#2| |#2|)) (-15 -1829 (|#2| |#2| |#2|)) (-15 -4205 (|#2| |#2| |#2|)) (-15 -2709 (|#2| |#2| |#2|)) (-15 -2607 (|#2| |#2|)) (-15 -1601 (|#2| |#2|)) (-15 -3759 (|#2| |#2|)) (-15 -2166 (|#2| |#2|))) (-13 (-784) (-514)) (-405 |#1|)) (T -406))
-((-2166 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-3759 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-1601 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2607 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2709 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-4205 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-1829 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2477 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-1967 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-3236 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2627 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2018 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2018 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2241 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2626 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *4)) (-4 *4 (-405 *3)))) (-3614 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-406 *4 *5)) (-4 *5 (-405 *4)))))
-(-10 -7 (-15 -3614 ((-108) (-110))) (-15 -2626 ((-110) (-110))) (-15 -2241 (|#2| |#2|)) (-15 -2018 (|#2| |#2|)) (-15 -2018 (|#2| |#2| |#2|)) (-15 -2627 (|#2| |#2| |#2|)) (-15 -3236 (|#2| |#2|)) (-15 -1967 (|#2| |#2| |#2|)) (-15 -2477 (|#2| |#2| |#2|)) (-15 -1829 (|#2| |#2| |#2|)) (-15 -4205 (|#2| |#2| |#2|)) (-15 -2709 (|#2| |#2| |#2|)) (-15 -2607 (|#2| |#2|)) (-15 -1601 (|#2| |#2|)) (-15 -3759 (|#2| |#2|)) (-15 -2166 (|#2| |#2|)))
-((-1223 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1081 |#2|)) (|:| |pol2| (-1081 |#2|)) (|:| |prim| (-1081 |#2|))) |#2| |#2|) 94 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-588 (-1081 |#2|))) (|:| |prim| (-1081 |#2|))) (-588 |#2|)) 58)))
-(((-407 |#1| |#2|) (-10 -7 (-15 -1223 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-588 (-1081 |#2|))) (|:| |prim| (-1081 |#2|))) (-588 |#2|))) (IF (|has| |#2| (-27)) (-15 -1223 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1081 |#2|)) (|:| |pol2| (-1081 |#2|)) (|:| |prim| (-1081 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-514) (-784) (-135)) (-405 |#1|)) (T -407))
-((-1223 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-514) (-784) (-135))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1081 *3)) (|:| |pol2| (-1081 *3)) (|:| |prim| (-1081 *3)))) (-5 *1 (-407 *4 *3)) (-4 *3 (-27)) (-4 *3 (-405 *4)))) (-1223 (*1 *2 *3) (-12 (-5 *3 (-588 *5)) (-4 *5 (-405 *4)) (-4 *4 (-13 (-514) (-784) (-135))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-588 (-1081 *5))) (|:| |prim| (-1081 *5)))) (-5 *1 (-407 *4 *5)))))
-(-10 -7 (-15 -1223 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-588 (-1081 |#2|))) (|:| |prim| (-1081 |#2|))) (-588 |#2|))) (IF (|has| |#2| (-27)) (-15 -1223 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1081 |#2|)) (|:| |pol2| (-1081 |#2|)) (|:| |prim| (-1081 |#2|))) |#2| |#2|)) |%noBranch|))
-((-1668 (((-1171)) 18)) (-2622 (((-1081 (-382 (-522))) |#2| (-561 |#2|)) 40) (((-382 (-522)) |#2|) 23)))
-(((-408 |#1| |#2|) (-10 -7 (-15 -2622 ((-382 (-522)) |#2|)) (-15 -2622 ((-1081 (-382 (-522))) |#2| (-561 |#2|))) (-15 -1668 ((-1171)))) (-13 (-784) (-514) (-962 (-522))) (-405 |#1|)) (T -408))
-((-1668 (*1 *2) (-12 (-4 *3 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-1171)) (-5 *1 (-408 *3 *4)) (-4 *4 (-405 *3)))) (-2622 (*1 *2 *3 *4) (-12 (-5 *4 (-561 *3)) (-4 *3 (-405 *5)) (-4 *5 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-408 *5 *3)))) (-2622 (*1 *2 *3) (-12 (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-382 (-522))) (-5 *1 (-408 *4 *3)) (-4 *3 (-405 *4)))))
-(-10 -7 (-15 -2622 ((-382 (-522)) |#2|)) (-15 -2622 ((-1081 (-382 (-522))) |#2| (-561 |#2|))) (-15 -1668 ((-1171))))
-((-2405 (((-108) $) 28)) (-3552 (((-108) $) 30)) (-3096 (((-108) $) 31)) (-2189 (((-108) $) 34)) (-2221 (((-108) $) 29)) (-2214 (((-108) $) 33)) (-2190 (((-792) $) 18) (($ (-1068)) 27) (($ (-1085)) 23) (((-1085) $) 22) (((-1018) $) 21)) (-1217 (((-108) $) 32)) (-1531 (((-108) $ $) 15)))
-(((-409) (-13 (-562 (-792)) (-10 -8 (-15 -2190 ($ (-1068))) (-15 -2190 ($ (-1085))) (-15 -2190 ((-1085) $)) (-15 -2190 ((-1018) $)) (-15 -2405 ((-108) $)) (-15 -2221 ((-108) $)) (-15 -3096 ((-108) $)) (-15 -2214 ((-108) $)) (-15 -2189 ((-108) $)) (-15 -1217 ((-108) $)) (-15 -3552 ((-108) $)) (-15 -1531 ((-108) $ $))))) (T -409))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-409)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-409)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-409)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-409)))) (-2405 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-2221 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-3096 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-2214 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-2189 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-1217 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-3552 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-1531 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))))
-(-13 (-562 (-792)) (-10 -8 (-15 -2190 ($ (-1068))) (-15 -2190 ($ (-1085))) (-15 -2190 ((-1085) $)) (-15 -2190 ((-1018) $)) (-15 -2405 ((-108) $)) (-15 -2221 ((-108) $)) (-15 -3096 ((-108) $)) (-15 -2214 ((-108) $)) (-15 -2189 ((-108) $)) (-15 -1217 ((-108) $)) (-15 -3552 ((-108) $)) (-15 -1531 ((-108) $ $))))
-((-2597 (((-3 (-393 (-1081 (-382 (-522)))) "failed") |#3|) 69)) (-4144 (((-393 |#3|) |#3|) 33)) (-2197 (((-3 (-393 (-1081 (-47))) "failed") |#3|) 27 (|has| |#2| (-962 (-47))))) (-1621 (((-3 (|:| |overq| (-1081 (-382 (-522)))) (|:| |overan| (-1081 (-47))) (|:| -3083 (-108))) |#3|) 35)))
-(((-410 |#1| |#2| |#3|) (-10 -7 (-15 -4144 ((-393 |#3|) |#3|)) (-15 -2597 ((-3 (-393 (-1081 (-382 (-522)))) "failed") |#3|)) (-15 -1621 ((-3 (|:| |overq| (-1081 (-382 (-522)))) (|:| |overan| (-1081 (-47))) (|:| -3083 (-108))) |#3|)) (IF (|has| |#2| (-962 (-47))) (-15 -2197 ((-3 (-393 (-1081 (-47))) "failed") |#3|)) |%noBranch|)) (-13 (-514) (-784) (-962 (-522))) (-405 |#1|) (-1142 |#2|)) (T -410))
-((-2197 (*1 *2 *3) (|partial| -12 (-4 *5 (-962 (-47))) (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4)) (-5 *2 (-393 (-1081 (-47)))) (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))) (-1621 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4)) (-5 *2 (-3 (|:| |overq| (-1081 (-382 (-522)))) (|:| |overan| (-1081 (-47))) (|:| -3083 (-108)))) (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))) (-2597 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4)) (-5 *2 (-393 (-1081 (-382 (-522))))) (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))) (-4144 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4)) (-5 *2 (-393 *3)) (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))))
-(-10 -7 (-15 -4144 ((-393 |#3|) |#3|)) (-15 -2597 ((-3 (-393 (-1081 (-382 (-522)))) "failed") |#3|)) (-15 -1621 ((-3 (|:| |overq| (-1081 (-382 (-522)))) (|:| |overan| (-1081 (-47))) (|:| -3083 (-108))) |#3|)) (IF (|has| |#2| (-962 (-47))) (-15 -2197 ((-3 (-393 (-1081 (-47))) "failed") |#3|)) |%noBranch|))
-((-1416 (((-108) $ $) NIL)) (-1270 (((-1068) $ (-1068)) NIL)) (-2563 (($ $ (-1068)) NIL)) (-4045 (((-1068) $) NIL)) (-2080 (((-363) (-363) (-363)) 17) (((-363) (-363)) 15)) (-1544 (($ (-363)) NIL) (($ (-363) (-1068)) NIL)) (-2888 (((-363) $) NIL)) (-2385 (((-1068) $) NIL)) (-3469 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-3988 (((-1171) (-1068)) 9)) (-1944 (((-1171) (-1068)) 10)) (-1301 (((-1171)) 11)) (-2190 (((-792) $) NIL)) (-2152 (($ $) 35)) (-1531 (((-108) $ $) NIL)))
-(((-411) (-13 (-339 (-363) (-1068)) (-10 -7 (-15 -2080 ((-363) (-363) (-363))) (-15 -2080 ((-363) (-363))) (-15 -3988 ((-1171) (-1068))) (-15 -1944 ((-1171) (-1068))) (-15 -1301 ((-1171)))))) (T -411))
-((-2080 (*1 *2 *2 *2) (-12 (-5 *2 (-363)) (-5 *1 (-411)))) (-2080 (*1 *2 *2) (-12 (-5 *2 (-363)) (-5 *1 (-411)))) (-3988 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-411)))) (-1944 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-411)))) (-1301 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-411)))))
-(-13 (-339 (-363) (-1068)) (-10 -7 (-15 -2080 ((-363) (-363) (-363))) (-15 -2080 ((-363) (-363))) (-15 -3988 ((-1171) (-1068))) (-15 -1944 ((-1171) (-1068))) (-15 -1301 ((-1171)))))
-((-1416 (((-108) $ $) NIL)) (-3600 (((-3 (|:| |fst| (-409)) (|:| -1367 "void")) $) 10)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1677 (($) 31)) (-2296 (($) 37)) (-2649 (($) 33)) (-4113 (($) 35)) (-1649 (($) 32)) (-3503 (($) 34)) (-3473 (($) 36)) (-3797 (((-108) $) 8)) (-2832 (((-588 (-881 (-522))) $) 16)) (-2201 (($ (-3 (|:| |fst| (-409)) (|:| -1367 "void")) (-588 (-1085)) (-108)) 25) (($ (-3 (|:| |fst| (-409)) (|:| -1367 "void")) (-588 (-881 (-522))) (-108)) 26)) (-2190 (((-792) $) 21) (($ (-409)) 28)) (-1531 (((-108) $ $) NIL)))
-(((-412) (-13 (-1014) (-10 -8 (-15 -2190 ((-792) $)) (-15 -2190 ($ (-409))) (-15 -3600 ((-3 (|:| |fst| (-409)) (|:| -1367 "void")) $)) (-15 -2832 ((-588 (-881 (-522))) $)) (-15 -3797 ((-108) $)) (-15 -2201 ($ (-3 (|:| |fst| (-409)) (|:| -1367 "void")) (-588 (-1085)) (-108))) (-15 -2201 ($ (-3 (|:| |fst| (-409)) (|:| -1367 "void")) (-588 (-881 (-522))) (-108))) (-15 -1677 ($)) (-15 -1649 ($)) (-15 -2649 ($)) (-15 -2296 ($)) (-15 -3503 ($)) (-15 -4113 ($)) (-15 -3473 ($))))) (T -412))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-412)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-409)) (-5 *1 (-412)))) (-3600 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-5 *1 (-412)))) (-2832 (*1 *2 *1) (-12 (-5 *2 (-588 (-881 (-522)))) (-5 *1 (-412)))) (-3797 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))) (-2201 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-5 *3 (-588 (-1085))) (-5 *4 (-108)) (-5 *1 (-412)))) (-2201 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-108)) (-5 *1 (-412)))) (-1677 (*1 *1) (-5 *1 (-412))) (-1649 (*1 *1) (-5 *1 (-412))) (-2649 (*1 *1) (-5 *1 (-412))) (-2296 (*1 *1) (-5 *1 (-412))) (-3503 (*1 *1) (-5 *1 (-412))) (-4113 (*1 *1) (-5 *1 (-412))) (-3473 (*1 *1) (-5 *1 (-412))))
-(-13 (-1014) (-10 -8 (-15 -2190 ((-792) $)) (-15 -2190 ($ (-409))) (-15 -3600 ((-3 (|:| |fst| (-409)) (|:| -1367 "void")) $)) (-15 -2832 ((-588 (-881 (-522))) $)) (-15 -3797 ((-108) $)) (-15 -2201 ($ (-3 (|:| |fst| (-409)) (|:| -1367 "void")) (-588 (-1085)) (-108))) (-15 -2201 ($ (-3 (|:| |fst| (-409)) (|:| -1367 "void")) (-588 (-881 (-522))) (-108))) (-15 -1677 ($)) (-15 -1649 ($)) (-15 -2649 ($)) (-15 -2296 ($)) (-15 -3503 ($)) (-15 -4113 ($)) (-15 -3473 ($))))
-((-1416 (((-108) $ $) NIL)) (-2888 (((-1085) $) 8)) (-2385 (((-1068) $) 16)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 11)) (-1531 (((-108) $ $) 13)))
-(((-413 |#1|) (-13 (-1014) (-10 -8 (-15 -2888 ((-1085) $)))) (-1085)) (T -413))
-((-2888 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-413 *3)) (-14 *3 *2))))
-(-13 (-1014) (-10 -8 (-15 -2888 ((-1085) $))))
-((-2009 (((-1171) $) 7)) (-2190 (((-792) $) 8) (($ (-1166 (-637))) 14) (($ (-588 (-305))) 13) (($ (-305)) 12) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 11)))
+((-3199 (*1 *2 *1) (-12 (-4 *1 (-405 *3)) (-4 *3 (-784)) (-5 *2 (-108)))) (-3207 (*1 *2 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)))) (-3533 (*1 *2 *1) (-12 (-4 *1 (-405 *3)) (-4 *3 (-784)) (-5 *2 (-588 (-1085))))) (-1899 (*1 *1 *2 *1) (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784)))) (-1899 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784)))) (-1899 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784)))) (-1899 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784)))) (-1899 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-588 *1)) (-4 *1 (-405 *4)) (-4 *4 (-784)))) (-2330 (*1 *1 *1 *2) (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784)) (-4 *3 (-563 (-498))))) (-2330 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-1085))) (-4 *1 (-405 *3)) (-4 *3 (-784)) (-4 *3 (-563 (-498))))) (-2330 (*1 *1 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)) (-4 *2 (-563 (-498))))) (-2330 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-110)) (-5 *3 (-1085)) (-4 *1 (-405 *4)) (-4 *4 (-784)) (-4 *4 (-563 (-498))))) (-2330 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-588 (-110))) (-5 *3 (-588 *1)) (-5 *4 (-1085)) (-4 *1 (-405 *5)) (-4 *5 (-784)) (-4 *5 (-563 (-498))))) (-2760 (*1 *2 *1) (|partial| -12 (-4 *3 (-1026)) (-4 *3 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-405 *3)))) (-2024 (*1 *2 *1) (|partial| -12 (-4 *3 (-1026)) (-4 *3 (-784)) (-5 *2 (-2 (|:| |var| (-561 *1)) (|:| -3858 (-522)))) (-4 *1 (-405 *3)))) (-1919 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-405 *3)))) (-2367 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-784)) (-5 *2 (-2 (|:| -3112 (-522)) (|:| |var| (-561 *1)))) (-4 *1 (-405 *3)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1037 *3 (-561 *1))) (-4 *3 (-971)) (-4 *3 (-784)) (-4 *1 (-405 *3)))) (-2947 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *3 (-784)) (-5 *2 (-1037 *3 (-561 *1))) (-4 *1 (-405 *3)))) (-1558 (*1 *1 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)) (-4 *2 (-971)))) (-2024 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-110)) (-4 *4 (-971)) (-4 *4 (-784)) (-5 *2 (-2 (|:| |var| (-561 *1)) (|:| -3858 (-522)))) (-4 *1 (-405 *4)))) (-2024 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1085)) (-4 *4 (-971)) (-4 *4 (-784)) (-5 *2 (-2 (|:| |var| (-561 *1)) (|:| -3858 (-522)))) (-4 *1 (-405 *4)))) (-3242 (*1 *2 *1) (|partial| -12 (-4 *3 (-971)) (-4 *3 (-784)) (-5 *2 (-2 (|:| |val| *1) (|:| -3858 (-522)))) (-4 *1 (-405 *3)))) (-2330 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-588 (-708))) (-5 *4 (-588 (-1 *1 *1))) (-4 *1 (-405 *5)) (-4 *5 (-784)) (-4 *5 (-971)))) (-2330 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-588 (-708))) (-5 *4 (-588 (-1 *1 (-588 *1)))) (-4 *1 (-405 *5)) (-4 *5 (-784)) (-4 *5 (-971)))) (-2330 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-708)) (-5 *4 (-1 *1 (-588 *1))) (-4 *1 (-405 *5)) (-4 *5 (-784)) (-4 *5 (-971)))) (-2330 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-708)) (-5 *4 (-1 *1 *1)) (-4 *1 (-405 *5)) (-4 *5 (-784)) (-4 *5 (-971)))) (-3873 (*1 *1 *2) (-12 (-5 *2 (-393 *1)) (-4 *1 (-405 *3)) (-4 *3 (-514)) (-4 *3 (-784)))) (-2959 (*1 *2 *1) (-12 (-4 *3 (-514)) (-4 *3 (-784)) (-5 *2 (-1037 *3 (-561 *1))) (-4 *1 (-405 *3)))) (-2762 (*1 *1 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)) (-4 *2 (-514)))) (-1682 (*1 *1 *2 *2) (-12 (-5 *2 (-1037 *3 (-561 *1))) (-4 *3 (-514)) (-4 *3 (-784)) (-4 *1 (-405 *3)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-382 *3)) (-4 *3 (-514)) (-4 *3 (-784)) (-4 *1 (-405 *3)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-881 (-382 *3))) (-4 *3 (-514)) (-4 *3 (-784)) (-4 *1 (-405 *3)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-382 (-881 (-382 *3)))) (-4 *3 (-514)) (-4 *3 (-784)) (-4 *1 (-405 *3)))) (-1264 (*1 *2 *1 *3) (-12 (-5 *3 (-561 *1)) (-4 *1 (-405 *4)) (-4 *4 (-784)) (-4 *4 (-514)) (-5 *2 (-382 (-1081 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-405 *3)) (-4 *3 (-784)) (-4 *3 (-1026)))))
+(-13 (-278) (-962 (-1085)) (-813 |t#1|) (-375 |t#1|) (-386 |t#1|) (-10 -8 (-15 -3199 ((-108) $)) (-15 -3207 (|t#1| $)) (-15 -3533 ((-588 (-1085)) $)) (-15 -1899 ($ (-1085) $)) (-15 -1899 ($ (-1085) $ $)) (-15 -1899 ($ (-1085) $ $ $)) (-15 -1899 ($ (-1085) $ $ $ $)) (-15 -1899 ($ (-1085) (-588 $))) (IF (|has| |t#1| (-563 (-498))) (PROGN (-6 (-563 (-498))) (-15 -2330 ($ $ (-1085))) (-15 -2330 ($ $ (-588 (-1085)))) (-15 -2330 ($ $)) (-15 -2330 ($ $ (-110) $ (-1085))) (-15 -2330 ($ $ (-588 (-110)) (-588 $) (-1085)))) |%noBranch|) (IF (|has| |t#1| (-1026)) (PROGN (-6 (-664)) (-15 ** ($ $ (-708))) (-15 -2760 ((-3 (-588 $) "failed") $)) (-15 -2024 ((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-447)) (-6 (-447)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -1919 ((-3 (-588 $) "failed") $)) (-15 -2367 ((-3 (-2 (|:| -3112 (-522)) (|:| |var| (-561 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-971)) (PROGN (-6 (-971)) (-6 (-962 (-881 |t#1|))) (-6 (-829 (-1085))) (-6 (-352 |t#1|)) (-15 -2217 ($ (-1037 |t#1| (-561 $)))) (-15 -2947 ((-1037 |t#1| (-561 $)) $)) (-15 -1558 ($ $)) (-15 -2024 ((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $ (-110))) (-15 -2024 ((-3 (-2 (|:| |var| (-561 $)) (|:| -3858 (-522))) "failed") $ (-1085))) (-15 -3242 ((-3 (-2 (|:| |val| $) (|:| -3858 (-522))) "failed") $)) (-15 -2330 ($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ $)))) (-15 -2330 ($ $ (-588 (-1085)) (-588 (-708)) (-588 (-1 $ (-588 $))))) (-15 -2330 ($ $ (-1085) (-708) (-1 $ (-588 $)))) (-15 -2330 ($ $ (-1085) (-708) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |t#1| (-157)) (-6 (-37 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-514)) (PROGN (-6 (-338)) (-6 (-962 (-382 (-881 |t#1|)))) (-15 -3873 ($ (-393 $))) (-15 -2959 ((-1037 |t#1| (-561 $)) $)) (-15 -2762 ($ $)) (-15 -1682 ($ (-1037 |t#1| (-561 $)) (-1037 |t#1| (-561 $)))) (-15 -2217 ($ (-382 |t#1|))) (-15 -2217 ($ (-881 (-382 |t#1|)))) (-15 -2217 ($ (-382 (-881 (-382 |t#1|))))) (-15 -1264 ((-382 (-1081 $)) $ (-561 $))) (IF (|has| |t#1| (-962 (-522))) (-6 (-962 (-382 (-522)))) |%noBranch|)) |%noBranch|)))
+(((-21) -3844 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133)) (|has| |#1| (-21))) ((-23) -3844 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -3844 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-37 #0=(-382 (-522))) |has| |#1| (-514)) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-514)) ((-107 |#1| |#1|) |has| |#1| (-157)) ((-107 $ $) |has| |#1| (-514)) ((-124) -3844 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133)) (|has| |#1| (-21))) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) |has| |#1| (-514)) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-563 (-821 (-354))) |has| |#1| (-563 (-821 (-354)))) ((-563 (-821 (-522))) |has| |#1| (-563 (-821 (-522)))) ((-220) |has| |#1| (-514)) ((-266) |has| |#1| (-514)) ((-283) |has| |#1| (-514)) ((-285 $) . T) ((-278) . T) ((-338) |has| |#1| (-514)) ((-352 |#1|) |has| |#1| (-971)) ((-375 |#1|) . T) ((-386 |#1|) . T) ((-426) |has| |#1| (-514)) ((-447) |has| |#1| (-447)) ((-483 (-561 $) $) . T) ((-483 $ $) . T) ((-514) |has| |#1| (-514)) ((-590 #0#) |has| |#1| (-514)) ((-590 |#1|) |has| |#1| (-157)) ((-590 $) -3844 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133))) ((-584 (-522)) -12 (|has| |#1| (-584 (-522))) (|has| |#1| (-971))) ((-584 |#1|) |has| |#1| (-971)) ((-655 #0#) |has| |#1| (-514)) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) -3844 (|has| |#1| (-1026)) (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-447)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133))) ((-784) . T) ((-829 (-1085)) |has| |#1| (-971)) ((-815 (-354)) |has| |#1| (-815 (-354))) ((-815 (-522)) |has| |#1| (-815 (-522))) ((-813 |#1|) . T) ((-849) |has| |#1| (-514)) ((-962 (-382 (-522))) -3844 (|has| |#1| (-962 (-382 (-522)))) (-12 (|has| |#1| (-514)) (|has| |#1| (-962 (-522))))) ((-962 (-382 (-881 |#1|))) |has| |#1| (-514)) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 (-561 $)) . T) ((-962 (-881 |#1|)) |has| |#1| (-971)) ((-962 (-1085)) . T) ((-962 |#1|) . T) ((-977 #0#) |has| |#1| (-514)) ((-977 |#1|) |has| |#1| (-157)) ((-977 $) |has| |#1| (-514)) ((-971) -3844 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133))) ((-978) -3844 (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133))) ((-1026) -3844 (|has| |#1| (-1026)) (|has| |#1| (-971)) (|has| |#1| (-514)) (|has| |#1| (-447)) (|has| |#1| (-157)) (|has| |#1| (-135)) (|has| |#1| (-133))) ((-1014) . T) ((-1120) . T) ((-1124) |has| |#1| (-514)))
+((-3056 ((|#2| |#2| |#2|) 33)) (-1771 (((-110) (-110)) 44)) (-3210 ((|#2| |#2|) 66)) (-3171 ((|#2| |#2|) 69)) (-2852 ((|#2| |#2|) 32)) (-2248 ((|#2| |#2| |#2|) 35)) (-1551 ((|#2| |#2| |#2|) 37)) (-3047 ((|#2| |#2| |#2|) 34)) (-2039 ((|#2| |#2| |#2|) 36)) (-4082 (((-108) (-110)) 42)) (-3799 ((|#2| |#2|) 39)) (-2022 ((|#2| |#2|) 38)) (-4126 ((|#2| |#2|) 27)) (-2245 ((|#2| |#2| |#2|) 30) ((|#2| |#2|) 28)) (-2288 ((|#2| |#2| |#2|) 31)))
+(((-406 |#1| |#2|) (-10 -7 (-15 -4082 ((-108) (-110))) (-15 -1771 ((-110) (-110))) (-15 -4126 (|#2| |#2|)) (-15 -2245 (|#2| |#2|)) (-15 -2245 (|#2| |#2| |#2|)) (-15 -2288 (|#2| |#2| |#2|)) (-15 -2852 (|#2| |#2|)) (-15 -3056 (|#2| |#2| |#2|)) (-15 -3047 (|#2| |#2| |#2|)) (-15 -2248 (|#2| |#2| |#2|)) (-15 -2039 (|#2| |#2| |#2|)) (-15 -1551 (|#2| |#2| |#2|)) (-15 -2022 (|#2| |#2|)) (-15 -3799 (|#2| |#2|)) (-15 -3171 (|#2| |#2|)) (-15 -3210 (|#2| |#2|))) (-13 (-784) (-514)) (-405 |#1|)) (T -406))
+((-3210 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-3171 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-3799 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2022 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-1551 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2039 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2248 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-3047 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-3056 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2852 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2288 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2245 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-2245 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-4126 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2)) (-4 *2 (-405 *3)))) (-1771 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *4)) (-4 *4 (-405 *3)))) (-4082 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-406 *4 *5)) (-4 *5 (-405 *4)))))
+(-10 -7 (-15 -4082 ((-108) (-110))) (-15 -1771 ((-110) (-110))) (-15 -4126 (|#2| |#2|)) (-15 -2245 (|#2| |#2|)) (-15 -2245 (|#2| |#2| |#2|)) (-15 -2288 (|#2| |#2| |#2|)) (-15 -2852 (|#2| |#2|)) (-15 -3056 (|#2| |#2| |#2|)) (-15 -3047 (|#2| |#2| |#2|)) (-15 -2248 (|#2| |#2| |#2|)) (-15 -2039 (|#2| |#2| |#2|)) (-15 -1551 (|#2| |#2| |#2|)) (-15 -2022 (|#2| |#2|)) (-15 -3799 (|#2| |#2|)) (-15 -3171 (|#2| |#2|)) (-15 -3210 (|#2| |#2|)))
+((-2160 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1081 |#2|)) (|:| |pol2| (-1081 |#2|)) (|:| |prim| (-1081 |#2|))) |#2| |#2|) 94 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-588 (-1081 |#2|))) (|:| |prim| (-1081 |#2|))) (-588 |#2|)) 58)))
+(((-407 |#1| |#2|) (-10 -7 (-15 -2160 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-588 (-1081 |#2|))) (|:| |prim| (-1081 |#2|))) (-588 |#2|))) (IF (|has| |#2| (-27)) (-15 -2160 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1081 |#2|)) (|:| |pol2| (-1081 |#2|)) (|:| |prim| (-1081 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-514) (-784) (-135)) (-405 |#1|)) (T -407))
+((-2160 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-514) (-784) (-135))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1081 *3)) (|:| |pol2| (-1081 *3)) (|:| |prim| (-1081 *3)))) (-5 *1 (-407 *4 *3)) (-4 *3 (-27)) (-4 *3 (-405 *4)))) (-2160 (*1 *2 *3) (-12 (-5 *3 (-588 *5)) (-4 *5 (-405 *4)) (-4 *4 (-13 (-514) (-784) (-135))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-588 (-1081 *5))) (|:| |prim| (-1081 *5)))) (-5 *1 (-407 *4 *5)))))
+(-10 -7 (-15 -2160 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-588 (-1081 |#2|))) (|:| |prim| (-1081 |#2|))) (-588 |#2|))) (IF (|has| |#2| (-27)) (-15 -2160 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1081 |#2|)) (|:| |pol2| (-1081 |#2|)) (|:| |prim| (-1081 |#2|))) |#2| |#2|)) |%noBranch|))
+((-2589 (((-1171)) 18)) (-1724 (((-1081 (-382 (-522))) |#2| (-561 |#2|)) 40) (((-382 (-522)) |#2|) 23)))
+(((-408 |#1| |#2|) (-10 -7 (-15 -1724 ((-382 (-522)) |#2|)) (-15 -1724 ((-1081 (-382 (-522))) |#2| (-561 |#2|))) (-15 -2589 ((-1171)))) (-13 (-784) (-514) (-962 (-522))) (-405 |#1|)) (T -408))
+((-2589 (*1 *2) (-12 (-4 *3 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-1171)) (-5 *1 (-408 *3 *4)) (-4 *4 (-405 *3)))) (-1724 (*1 *2 *3 *4) (-12 (-5 *4 (-561 *3)) (-4 *3 (-405 *5)) (-4 *5 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-408 *5 *3)))) (-1724 (*1 *2 *3) (-12 (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-382 (-522))) (-5 *1 (-408 *4 *3)) (-4 *3 (-405 *4)))))
+(-10 -7 (-15 -1724 ((-382 (-522)) |#2|)) (-15 -1724 ((-1081 (-382 (-522))) |#2| (-561 |#2|))) (-15 -2589 ((-1171))))
+((-1408 (((-108) $) 28)) (-1695 (((-108) $) 30)) (-3871 (((-108) $) 31)) (-3396 (((-108) $) 34)) (-3923 (((-108) $) 29)) (-1491 (((-108) $) 33)) (-2217 (((-792) $) 18) (($ (-1068)) 27) (($ (-1085)) 23) (((-1085) $) 22) (((-1018) $) 21)) (-2097 (((-108) $) 32)) (-1562 (((-108) $ $) 15)))
+(((-409) (-13 (-562 (-792)) (-10 -8 (-15 -2217 ($ (-1068))) (-15 -2217 ($ (-1085))) (-15 -2217 ((-1085) $)) (-15 -2217 ((-1018) $)) (-15 -1408 ((-108) $)) (-15 -3923 ((-108) $)) (-15 -3871 ((-108) $)) (-15 -1491 ((-108) $)) (-15 -3396 ((-108) $)) (-15 -2097 ((-108) $)) (-15 -1695 ((-108) $)) (-15 -1562 ((-108) $ $))))) (T -409))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-409)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-409)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-409)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-409)))) (-1408 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-3923 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-3871 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-1491 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-3396 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-2097 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-1695 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))) (-1562 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))))
+(-13 (-562 (-792)) (-10 -8 (-15 -2217 ($ (-1068))) (-15 -2217 ($ (-1085))) (-15 -2217 ((-1085) $)) (-15 -2217 ((-1018) $)) (-15 -1408 ((-108) $)) (-15 -3923 ((-108) $)) (-15 -3871 ((-108) $)) (-15 -1491 ((-108) $)) (-15 -3396 ((-108) $)) (-15 -2097 ((-108) $)) (-15 -1695 ((-108) $)) (-15 -1562 ((-108) $ $))))
+((-1921 (((-3 (-393 (-1081 (-382 (-522)))) "failed") |#3|) 69)) (-2763 (((-393 |#3|) |#3|) 33)) (-2263 (((-3 (-393 (-1081 (-47))) "failed") |#3|) 27 (|has| |#2| (-962 (-47))))) (-3938 (((-3 (|:| |overq| (-1081 (-382 (-522)))) (|:| |overan| (-1081 (-47))) (|:| -3181 (-108))) |#3|) 35)))
+(((-410 |#1| |#2| |#3|) (-10 -7 (-15 -2763 ((-393 |#3|) |#3|)) (-15 -1921 ((-3 (-393 (-1081 (-382 (-522)))) "failed") |#3|)) (-15 -3938 ((-3 (|:| |overq| (-1081 (-382 (-522)))) (|:| |overan| (-1081 (-47))) (|:| -3181 (-108))) |#3|)) (IF (|has| |#2| (-962 (-47))) (-15 -2263 ((-3 (-393 (-1081 (-47))) "failed") |#3|)) |%noBranch|)) (-13 (-514) (-784) (-962 (-522))) (-405 |#1|) (-1142 |#2|)) (T -410))
+((-2263 (*1 *2 *3) (|partial| -12 (-4 *5 (-962 (-47))) (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4)) (-5 *2 (-393 (-1081 (-47)))) (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))) (-3938 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4)) (-5 *2 (-3 (|:| |overq| (-1081 (-382 (-522)))) (|:| |overan| (-1081 (-47))) (|:| -3181 (-108)))) (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))) (-1921 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4)) (-5 *2 (-393 (-1081 (-382 (-522))))) (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))) (-2763 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4)) (-5 *2 (-393 *3)) (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))))
+(-10 -7 (-15 -2763 ((-393 |#3|) |#3|)) (-15 -1921 ((-3 (-393 (-1081 (-382 (-522)))) "failed") |#3|)) (-15 -3938 ((-3 (|:| |overq| (-1081 (-382 (-522)))) (|:| |overan| (-1081 (-47))) (|:| -3181 (-108))) |#3|)) (IF (|has| |#2| (-962 (-47))) (-15 -2263 ((-3 (-393 (-1081 (-47))) "failed") |#3|)) |%noBranch|))
+((-1419 (((-108) $ $) NIL)) (-2710 (((-1068) $ (-1068)) NIL)) (-3813 (($ $ (-1068)) NIL)) (-2982 (((-1068) $) NIL)) (-4108 (((-363) (-363) (-363)) 17) (((-363) (-363)) 15)) (-1566 (($ (-363)) NIL) (($ (-363) (-1068)) NIL)) (-3015 (((-363) $) NIL)) (-2311 (((-1068) $) NIL)) (-3270 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3524 (((-1171) (-1068)) 9)) (-1534 (((-1171) (-1068)) 10)) (-1725 (((-1171)) 11)) (-2217 (((-792) $) NIL)) (-3116 (($ $) 35)) (-1562 (((-108) $ $) NIL)))
+(((-411) (-13 (-339 (-363) (-1068)) (-10 -7 (-15 -4108 ((-363) (-363) (-363))) (-15 -4108 ((-363) (-363))) (-15 -3524 ((-1171) (-1068))) (-15 -1534 ((-1171) (-1068))) (-15 -1725 ((-1171)))))) (T -411))
+((-4108 (*1 *2 *2 *2) (-12 (-5 *2 (-363)) (-5 *1 (-411)))) (-4108 (*1 *2 *2) (-12 (-5 *2 (-363)) (-5 *1 (-411)))) (-3524 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-411)))) (-1534 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-411)))) (-1725 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-411)))))
+(-13 (-339 (-363) (-1068)) (-10 -7 (-15 -4108 ((-363) (-363) (-363))) (-15 -4108 ((-363) (-363))) (-15 -3524 ((-1171) (-1068))) (-15 -1534 ((-1171) (-1068))) (-15 -1725 ((-1171)))))
+((-1419 (((-108) $ $) NIL)) (-2099 (((-3 (|:| |fst| (-409)) (|:| -1350 "void")) $) 10)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2681 (($) 31)) (-2545 (($) 37)) (-1697 (($) 33)) (-2344 (($) 35)) (-2383 (($) 32)) (-2414 (($) 34)) (-3311 (($) 36)) (-2305 (((-108) $) 8)) (-2878 (((-588 (-881 (-522))) $) 16)) (-2227 (($ (-3 (|:| |fst| (-409)) (|:| -1350 "void")) (-588 (-1085)) (-108)) 25) (($ (-3 (|:| |fst| (-409)) (|:| -1350 "void")) (-588 (-881 (-522))) (-108)) 26)) (-2217 (((-792) $) 21) (($ (-409)) 28)) (-1562 (((-108) $ $) NIL)))
+(((-412) (-13 (-1014) (-10 -8 (-15 -2217 ((-792) $)) (-15 -2217 ($ (-409))) (-15 -2099 ((-3 (|:| |fst| (-409)) (|:| -1350 "void")) $)) (-15 -2878 ((-588 (-881 (-522))) $)) (-15 -2305 ((-108) $)) (-15 -2227 ($ (-3 (|:| |fst| (-409)) (|:| -1350 "void")) (-588 (-1085)) (-108))) (-15 -2227 ($ (-3 (|:| |fst| (-409)) (|:| -1350 "void")) (-588 (-881 (-522))) (-108))) (-15 -2681 ($)) (-15 -2383 ($)) (-15 -1697 ($)) (-15 -2545 ($)) (-15 -2414 ($)) (-15 -2344 ($)) (-15 -3311 ($))))) (T -412))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-412)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-409)) (-5 *1 (-412)))) (-2099 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-5 *1 (-412)))) (-2878 (*1 *2 *1) (-12 (-5 *2 (-588 (-881 (-522)))) (-5 *1 (-412)))) (-2305 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))) (-2227 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-5 *3 (-588 (-1085))) (-5 *4 (-108)) (-5 *1 (-412)))) (-2227 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-108)) (-5 *1 (-412)))) (-2681 (*1 *1) (-5 *1 (-412))) (-2383 (*1 *1) (-5 *1 (-412))) (-1697 (*1 *1) (-5 *1 (-412))) (-2545 (*1 *1) (-5 *1 (-412))) (-2414 (*1 *1) (-5 *1 (-412))) (-2344 (*1 *1) (-5 *1 (-412))) (-3311 (*1 *1) (-5 *1 (-412))))
+(-13 (-1014) (-10 -8 (-15 -2217 ((-792) $)) (-15 -2217 ($ (-409))) (-15 -2099 ((-3 (|:| |fst| (-409)) (|:| -1350 "void")) $)) (-15 -2878 ((-588 (-881 (-522))) $)) (-15 -2305 ((-108) $)) (-15 -2227 ($ (-3 (|:| |fst| (-409)) (|:| -1350 "void")) (-588 (-1085)) (-108))) (-15 -2227 ($ (-3 (|:| |fst| (-409)) (|:| -1350 "void")) (-588 (-881 (-522))) (-108))) (-15 -2681 ($)) (-15 -2383 ($)) (-15 -1697 ($)) (-15 -2545 ($)) (-15 -2414 ($)) (-15 -2344 ($)) (-15 -3311 ($))))
+((-1419 (((-108) $ $) NIL)) (-3015 (((-1085) $) 8)) (-2311 (((-1068) $) 16)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 11)) (-1562 (((-108) $ $) 13)))
+(((-413 |#1|) (-13 (-1014) (-10 -8 (-15 -3015 ((-1085) $)))) (-1085)) (T -413))
+((-3015 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-413 *3)) (-14 *3 *2))))
+(-13 (-1014) (-10 -8 (-15 -3015 ((-1085) $))))
+((-2550 (((-1171) $) 7)) (-2217 (((-792) $) 8) (($ (-1166 (-637))) 14) (($ (-588 (-305))) 13) (($ (-305)) 12) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 11)))
(((-414) (-1197)) (T -414))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-637))) (-4 *1 (-414)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-414)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-414)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) (-4 *1 (-414)))))
-(-13 (-370) (-10 -8 (-15 -2190 ($ (-1166 (-637)))) (-15 -2190 ($ (-588 (-305)))) (-15 -2190 ($ (-305))) (-15 -2190 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))))))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-637))) (-4 *1 (-414)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-414)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-414)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) (-4 *1 (-414)))))
+(-13 (-370) (-10 -8 (-15 -2217 ($ (-1166 (-637)))) (-15 -2217 ($ (-588 (-305)))) (-15 -2217 ($ (-305))) (-15 -2217 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))))))
(((-562 (-792)) . T) ((-370) . T) ((-1120) . T))
-((-1297 (((-3 $ "failed") (-1166 (-291 (-354)))) 21) (((-3 $ "failed") (-1166 (-291 (-522)))) 19) (((-3 $ "failed") (-1166 (-881 (-354)))) 17) (((-3 $ "failed") (-1166 (-881 (-522)))) 15) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 13) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 11)) (-1484 (($ (-1166 (-291 (-354)))) 22) (($ (-1166 (-291 (-522)))) 20) (($ (-1166 (-881 (-354)))) 18) (($ (-1166 (-881 (-522)))) 16) (($ (-1166 (-382 (-881 (-354))))) 14) (($ (-1166 (-382 (-881 (-522))))) 12)) (-2009 (((-1171) $) 7)) (-2190 (((-792) $) 8) (($ (-588 (-305))) 25) (($ (-305)) 24) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) 23)))
+((-3700 (((-3 $ "failed") (-1166 (-291 (-354)))) 21) (((-3 $ "failed") (-1166 (-291 (-522)))) 19) (((-3 $ "failed") (-1166 (-881 (-354)))) 17) (((-3 $ "failed") (-1166 (-881 (-522)))) 15) (((-3 $ "failed") (-1166 (-382 (-881 (-354))))) 13) (((-3 $ "failed") (-1166 (-382 (-881 (-522))))) 11)) (-1478 (($ (-1166 (-291 (-354)))) 22) (($ (-1166 (-291 (-522)))) 20) (($ (-1166 (-881 (-354)))) 18) (($ (-1166 (-881 (-522)))) 16) (($ (-1166 (-382 (-881 (-354))))) 14) (($ (-1166 (-382 (-881 (-522))))) 12)) (-2550 (((-1171) $) 7)) (-2217 (((-792) $) 8) (($ (-588 (-305))) 25) (($ (-305)) 24) (($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) 23)))
(((-415) (-1197)) (T -415))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-415)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-415)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305))))) (-4 *1 (-415)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-1166 (-291 (-354)))) (-4 *1 (-415)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-1166 (-291 (-354)))) (-4 *1 (-415)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-1166 (-291 (-522)))) (-4 *1 (-415)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-1166 (-291 (-522)))) (-4 *1 (-415)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-1166 (-881 (-354)))) (-4 *1 (-415)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-1166 (-881 (-354)))) (-4 *1 (-415)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-1166 (-881 (-522)))) (-4 *1 (-415)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-1166 (-881 (-522)))) (-4 *1 (-415)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-1166 (-382 (-881 (-354))))) (-4 *1 (-415)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-1166 (-382 (-881 (-354))))) (-4 *1 (-415)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-1166 (-382 (-881 (-522))))) (-4 *1 (-415)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-1166 (-382 (-881 (-522))))) (-4 *1 (-415)))))
-(-13 (-370) (-10 -8 (-15 -2190 ($ (-588 (-305)))) (-15 -2190 ($ (-305))) (-15 -2190 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305)))))) (-15 -1484 ($ (-1166 (-291 (-354))))) (-15 -1297 ((-3 $ "failed") (-1166 (-291 (-354))))) (-15 -1484 ($ (-1166 (-291 (-522))))) (-15 -1297 ((-3 $ "failed") (-1166 (-291 (-522))))) (-15 -1484 ($ (-1166 (-881 (-354))))) (-15 -1297 ((-3 $ "failed") (-1166 (-881 (-354))))) (-15 -1484 ($ (-1166 (-881 (-522))))) (-15 -1297 ((-3 $ "failed") (-1166 (-881 (-522))))) (-15 -1484 ($ (-1166 (-382 (-881 (-354)))))) (-15 -1297 ((-3 $ "failed") (-1166 (-382 (-881 (-354)))))) (-15 -1484 ($ (-1166 (-382 (-881 (-522)))))) (-15 -1297 ((-3 $ "failed") (-1166 (-382 (-881 (-522))))))))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-415)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-415)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305))))) (-4 *1 (-415)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-1166 (-291 (-354)))) (-4 *1 (-415)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-1166 (-291 (-354)))) (-4 *1 (-415)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-1166 (-291 (-522)))) (-4 *1 (-415)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-1166 (-291 (-522)))) (-4 *1 (-415)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-1166 (-881 (-354)))) (-4 *1 (-415)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-1166 (-881 (-354)))) (-4 *1 (-415)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-1166 (-881 (-522)))) (-4 *1 (-415)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-1166 (-881 (-522)))) (-4 *1 (-415)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-1166 (-382 (-881 (-354))))) (-4 *1 (-415)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-1166 (-382 (-881 (-354))))) (-4 *1 (-415)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-1166 (-382 (-881 (-522))))) (-4 *1 (-415)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-1166 (-382 (-881 (-522))))) (-4 *1 (-415)))))
+(-13 (-370) (-10 -8 (-15 -2217 ($ (-588 (-305)))) (-15 -2217 ($ (-305))) (-15 -2217 ($ (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305)))))) (-15 -1478 ($ (-1166 (-291 (-354))))) (-15 -3700 ((-3 $ "failed") (-1166 (-291 (-354))))) (-15 -1478 ($ (-1166 (-291 (-522))))) (-15 -3700 ((-3 $ "failed") (-1166 (-291 (-522))))) (-15 -1478 ($ (-1166 (-881 (-354))))) (-15 -3700 ((-3 $ "failed") (-1166 (-881 (-354))))) (-15 -1478 ($ (-1166 (-881 (-522))))) (-15 -3700 ((-3 $ "failed") (-1166 (-881 (-522))))) (-15 -1478 ($ (-1166 (-382 (-881 (-354)))))) (-15 -3700 ((-3 $ "failed") (-1166 (-382 (-881 (-354)))))) (-15 -1478 ($ (-1166 (-382 (-881 (-522)))))) (-15 -3700 ((-3 $ "failed") (-1166 (-382 (-881 (-522))))))))
(((-562 (-792)) . T) ((-370) . T) ((-1120) . T))
-((-1571 (((-108)) 17)) (-2667 (((-108) (-108)) 18)) (-2037 (((-108)) 13)) (-1914 (((-108) (-108)) 14)) (-3066 (((-108)) 15)) (-3342 (((-108) (-108)) 16)) (-2343 (((-850) (-850)) 21) (((-850)) 20)) (-2785 (((-708) (-588 (-2 (|:| -1916 |#1|) (|:| -2793 (-522))))) 42)) (-2528 (((-850) (-850)) 23) (((-850)) 22)) (-2715 (((-2 (|:| -3717 (-522)) (|:| -2976 (-588 |#1|))) |#1|) 62)) (-2473 (((-393 |#1|) (-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| |#1|) (|:| -2245 (-522))))))) 124)) (-3168 (((-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| |#1|) (|:| -2245 (-522)))))) |#1| (-108)) 150)) (-2571 (((-393 |#1|) |#1| (-708) (-708)) 163) (((-393 |#1|) |#1| (-588 (-708)) (-708)) 160) (((-393 |#1|) |#1| (-588 (-708))) 162) (((-393 |#1|) |#1| (-708)) 161) (((-393 |#1|) |#1|) 159)) (-3540 (((-3 |#1| "failed") (-850) |#1| (-588 (-708)) (-708) (-108)) 165) (((-3 |#1| "failed") (-850) |#1| (-588 (-708)) (-708)) 166) (((-3 |#1| "failed") (-850) |#1| (-588 (-708))) 168) (((-3 |#1| "failed") (-850) |#1| (-708)) 167) (((-3 |#1| "failed") (-850) |#1|) 169)) (-1916 (((-393 |#1|) |#1| (-708) (-708)) 158) (((-393 |#1|) |#1| (-588 (-708)) (-708)) 154) (((-393 |#1|) |#1| (-588 (-708))) 156) (((-393 |#1|) |#1| (-708)) 155) (((-393 |#1|) |#1|) 153)) (-4131 (((-108) |#1|) 37)) (-2933 (((-675 (-708)) (-588 (-2 (|:| -1916 |#1|) (|:| -2793 (-522))))) 67)) (-3274 (((-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| |#1|) (|:| -2245 (-522)))))) |#1| (-108) (-1016 (-708)) (-708)) 152)))
-(((-416 |#1|) (-10 -7 (-15 -2473 ((-393 |#1|) (-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| |#1|) (|:| -2245 (-522)))))))) (-15 -2933 ((-675 (-708)) (-588 (-2 (|:| -1916 |#1|) (|:| -2793 (-522)))))) (-15 -2528 ((-850))) (-15 -2528 ((-850) (-850))) (-15 -2343 ((-850))) (-15 -2343 ((-850) (-850))) (-15 -2785 ((-708) (-588 (-2 (|:| -1916 |#1|) (|:| -2793 (-522)))))) (-15 -2715 ((-2 (|:| -3717 (-522)) (|:| -2976 (-588 |#1|))) |#1|)) (-15 -1571 ((-108))) (-15 -2667 ((-108) (-108))) (-15 -2037 ((-108))) (-15 -1914 ((-108) (-108))) (-15 -4131 ((-108) |#1|)) (-15 -3066 ((-108))) (-15 -3342 ((-108) (-108))) (-15 -1916 ((-393 |#1|) |#1|)) (-15 -1916 ((-393 |#1|) |#1| (-708))) (-15 -1916 ((-393 |#1|) |#1| (-588 (-708)))) (-15 -1916 ((-393 |#1|) |#1| (-588 (-708)) (-708))) (-15 -1916 ((-393 |#1|) |#1| (-708) (-708))) (-15 -2571 ((-393 |#1|) |#1|)) (-15 -2571 ((-393 |#1|) |#1| (-708))) (-15 -2571 ((-393 |#1|) |#1| (-588 (-708)))) (-15 -2571 ((-393 |#1|) |#1| (-588 (-708)) (-708))) (-15 -2571 ((-393 |#1|) |#1| (-708) (-708))) (-15 -3540 ((-3 |#1| "failed") (-850) |#1|)) (-15 -3540 ((-3 |#1| "failed") (-850) |#1| (-708))) (-15 -3540 ((-3 |#1| "failed") (-850) |#1| (-588 (-708)))) (-15 -3540 ((-3 |#1| "failed") (-850) |#1| (-588 (-708)) (-708))) (-15 -3540 ((-3 |#1| "failed") (-850) |#1| (-588 (-708)) (-708) (-108))) (-15 -3168 ((-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| |#1|) (|:| -2245 (-522)))))) |#1| (-108))) (-15 -3274 ((-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| |#1|) (|:| -2245 (-522)))))) |#1| (-108) (-1016 (-708)) (-708)))) (-1142 (-522))) (T -416))
-((-3274 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-108)) (-5 *5 (-1016 (-708))) (-5 *6 (-708)) (-5 *2 (-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| *3) (|:| -2245 (-522))))))) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3168 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-5 *2 (-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| *3) (|:| -2245 (-522))))))) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3540 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-850)) (-5 *4 (-588 (-708))) (-5 *5 (-708)) (-5 *6 (-108)) (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522))))) (-3540 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-850)) (-5 *4 (-588 (-708))) (-5 *5 (-708)) (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522))))) (-3540 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-850)) (-5 *4 (-588 (-708))) (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522))))) (-3540 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-850)) (-5 *4 (-708)) (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522))))) (-3540 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-850)) (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522))))) (-2571 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2571 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-588 (-708))) (-5 *5 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2571 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-708))) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2571 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2571 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-1916 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-1916 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-588 (-708))) (-5 *5 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-1916 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-708))) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-1916 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-1916 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3342 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3066 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-4131 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-1914 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2037 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2667 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-1571 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2715 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -3717 (-522)) (|:| -2976 (-588 *3)))) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2785 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -1916 *4) (|:| -2793 (-522))))) (-4 *4 (-1142 (-522))) (-5 *2 (-708)) (-5 *1 (-416 *4)))) (-2343 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2343 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2528 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2528 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2933 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -1916 *4) (|:| -2793 (-522))))) (-4 *4 (-1142 (-522))) (-5 *2 (-675 (-708))) (-5 *1 (-416 *4)))) (-2473 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| *4) (|:| -2245 (-522))))))) (-4 *4 (-1142 (-522))) (-5 *2 (-393 *4)) (-5 *1 (-416 *4)))))
-(-10 -7 (-15 -2473 ((-393 |#1|) (-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| |#1|) (|:| -2245 (-522)))))))) (-15 -2933 ((-675 (-708)) (-588 (-2 (|:| -1916 |#1|) (|:| -2793 (-522)))))) (-15 -2528 ((-850))) (-15 -2528 ((-850) (-850))) (-15 -2343 ((-850))) (-15 -2343 ((-850) (-850))) (-15 -2785 ((-708) (-588 (-2 (|:| -1916 |#1|) (|:| -2793 (-522)))))) (-15 -2715 ((-2 (|:| -3717 (-522)) (|:| -2976 (-588 |#1|))) |#1|)) (-15 -1571 ((-108))) (-15 -2667 ((-108) (-108))) (-15 -2037 ((-108))) (-15 -1914 ((-108) (-108))) (-15 -4131 ((-108) |#1|)) (-15 -3066 ((-108))) (-15 -3342 ((-108) (-108))) (-15 -1916 ((-393 |#1|) |#1|)) (-15 -1916 ((-393 |#1|) |#1| (-708))) (-15 -1916 ((-393 |#1|) |#1| (-588 (-708)))) (-15 -1916 ((-393 |#1|) |#1| (-588 (-708)) (-708))) (-15 -1916 ((-393 |#1|) |#1| (-708) (-708))) (-15 -2571 ((-393 |#1|) |#1|)) (-15 -2571 ((-393 |#1|) |#1| (-708))) (-15 -2571 ((-393 |#1|) |#1| (-588 (-708)))) (-15 -2571 ((-393 |#1|) |#1| (-588 (-708)) (-708))) (-15 -2571 ((-393 |#1|) |#1| (-708) (-708))) (-15 -3540 ((-3 |#1| "failed") (-850) |#1|)) (-15 -3540 ((-3 |#1| "failed") (-850) |#1| (-708))) (-15 -3540 ((-3 |#1| "failed") (-850) |#1| (-588 (-708)))) (-15 -3540 ((-3 |#1| "failed") (-850) |#1| (-588 (-708)) (-708))) (-15 -3540 ((-3 |#1| "failed") (-850) |#1| (-588 (-708)) (-708) (-108))) (-15 -3168 ((-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| |#1|) (|:| -2245 (-522)))))) |#1| (-108))) (-15 -3274 ((-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| |#1|) (|:| -2245 (-522)))))) |#1| (-108) (-1016 (-708)) (-708))))
-((-2335 (((-522) |#2|) 48) (((-522) |#2| (-708)) 47)) (-3082 (((-522) |#2|) 55)) (-3233 ((|#3| |#2|) 25)) (-2100 ((|#3| |#2| (-850)) 14)) (-2517 ((|#3| |#2|) 15)) (-2707 ((|#3| |#2|) 9)) (-4155 ((|#3| |#2|) 10)) (-2391 ((|#3| |#2| (-850)) 62) ((|#3| |#2|) 30)) (-1790 (((-522) |#2|) 57)))
-(((-417 |#1| |#2| |#3|) (-10 -7 (-15 -1790 ((-522) |#2|)) (-15 -2391 (|#3| |#2|)) (-15 -2391 (|#3| |#2| (-850))) (-15 -3082 ((-522) |#2|)) (-15 -2335 ((-522) |#2| (-708))) (-15 -2335 ((-522) |#2|)) (-15 -2100 (|#3| |#2| (-850))) (-15 -3233 (|#3| |#2|)) (-15 -2707 (|#3| |#2|)) (-15 -4155 (|#3| |#2|)) (-15 -2517 (|#3| |#2|))) (-971) (-1142 |#1|) (-13 (-379) (-962 |#1|) (-338) (-1106) (-260))) (T -417))
-((-2517 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260))) (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))) (-4155 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260))) (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))) (-2707 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260))) (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))) (-3233 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260))) (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))) (-2100 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-4 *5 (-971)) (-4 *2 (-13 (-379) (-962 *5) (-338) (-1106) (-260))) (-5 *1 (-417 *5 *3 *2)) (-4 *3 (-1142 *5)))) (-2335 (*1 *2 *3) (-12 (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *4 *3 *5)) (-4 *3 (-1142 *4)) (-4 *5 (-13 (-379) (-962 *4) (-338) (-1106) (-260))))) (-2335 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *5 *3 *6)) (-4 *3 (-1142 *5)) (-4 *6 (-13 (-379) (-962 *5) (-338) (-1106) (-260))))) (-3082 (*1 *2 *3) (-12 (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *4 *3 *5)) (-4 *3 (-1142 *4)) (-4 *5 (-13 (-379) (-962 *4) (-338) (-1106) (-260))))) (-2391 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-4 *5 (-971)) (-4 *2 (-13 (-379) (-962 *5) (-338) (-1106) (-260))) (-5 *1 (-417 *5 *3 *2)) (-4 *3 (-1142 *5)))) (-2391 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260))) (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))) (-1790 (*1 *2 *3) (-12 (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *4 *3 *5)) (-4 *3 (-1142 *4)) (-4 *5 (-13 (-379) (-962 *4) (-338) (-1106) (-260))))))
-(-10 -7 (-15 -1790 ((-522) |#2|)) (-15 -2391 (|#3| |#2|)) (-15 -2391 (|#3| |#2| (-850))) (-15 -3082 ((-522) |#2|)) (-15 -2335 ((-522) |#2| (-708))) (-15 -2335 ((-522) |#2|)) (-15 -2100 (|#3| |#2| (-850))) (-15 -3233 (|#3| |#2|)) (-15 -2707 (|#3| |#2|)) (-15 -4155 (|#3| |#2|)) (-15 -2517 (|#3| |#2|)))
-((-4204 ((|#2| (-1166 |#1|)) 36)) (-3001 ((|#2| |#2| |#1|) 49)) (-3810 ((|#2| |#2| |#1|) 41)) (-1862 ((|#2| |#2|) 38)) (-3012 (((-108) |#2|) 30)) (-2609 (((-588 |#2|) (-850) (-393 |#2|)) 16)) (-3540 ((|#2| (-850) (-393 |#2|)) 21)) (-2933 (((-675 (-708)) (-393 |#2|)) 25)))
-(((-418 |#1| |#2|) (-10 -7 (-15 -3012 ((-108) |#2|)) (-15 -4204 (|#2| (-1166 |#1|))) (-15 -1862 (|#2| |#2|)) (-15 -3810 (|#2| |#2| |#1|)) (-15 -3001 (|#2| |#2| |#1|)) (-15 -2933 ((-675 (-708)) (-393 |#2|))) (-15 -3540 (|#2| (-850) (-393 |#2|))) (-15 -2609 ((-588 |#2|) (-850) (-393 |#2|)))) (-971) (-1142 |#1|)) (T -418))
-((-2609 (*1 *2 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-393 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-971)) (-5 *2 (-588 *6)) (-5 *1 (-418 *5 *6)))) (-3540 (*1 *2 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-393 *2)) (-4 *2 (-1142 *5)) (-5 *1 (-418 *5 *2)) (-4 *5 (-971)))) (-2933 (*1 *2 *3) (-12 (-5 *3 (-393 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-971)) (-5 *2 (-675 (-708))) (-5 *1 (-418 *4 *5)))) (-3001 (*1 *2 *2 *3) (-12 (-4 *3 (-971)) (-5 *1 (-418 *3 *2)) (-4 *2 (-1142 *3)))) (-3810 (*1 *2 *2 *3) (-12 (-4 *3 (-971)) (-5 *1 (-418 *3 *2)) (-4 *2 (-1142 *3)))) (-1862 (*1 *2 *2) (-12 (-4 *3 (-971)) (-5 *1 (-418 *3 *2)) (-4 *2 (-1142 *3)))) (-4204 (*1 *2 *3) (-12 (-5 *3 (-1166 *4)) (-4 *4 (-971)) (-4 *2 (-1142 *4)) (-5 *1 (-418 *4 *2)))) (-3012 (*1 *2 *3) (-12 (-4 *4 (-971)) (-5 *2 (-108)) (-5 *1 (-418 *4 *3)) (-4 *3 (-1142 *4)))))
-(-10 -7 (-15 -3012 ((-108) |#2|)) (-15 -4204 (|#2| (-1166 |#1|))) (-15 -1862 (|#2| |#2|)) (-15 -3810 (|#2| |#2| |#1|)) (-15 -3001 (|#2| |#2| |#1|)) (-15 -2933 ((-675 (-708)) (-393 |#2|))) (-15 -3540 (|#2| (-850) (-393 |#2|))) (-15 -2609 ((-588 |#2|) (-850) (-393 |#2|))))
-((-1722 (((-708)) 41)) (-3688 (((-708)) 23 (|has| |#1| (-379))) (((-708) (-708)) 22 (|has| |#1| (-379)))) (-2770 (((-522) |#1|) 18 (|has| |#1| (-379)))) (-2844 (((-522) |#1|) 20 (|has| |#1| (-379)))) (-2424 (((-708)) 40) (((-708) (-708)) 39)) (-1261 ((|#1| (-708) (-522)) 29)) (-3551 (((-1171)) 43)))
-(((-419 |#1|) (-10 -7 (-15 -1261 (|#1| (-708) (-522))) (-15 -2424 ((-708) (-708))) (-15 -2424 ((-708))) (-15 -1722 ((-708))) (-15 -3551 ((-1171))) (IF (|has| |#1| (-379)) (PROGN (-15 -2844 ((-522) |#1|)) (-15 -2770 ((-522) |#1|)) (-15 -3688 ((-708) (-708))) (-15 -3688 ((-708)))) |%noBranch|)) (-971)) (T -419))
-((-3688 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))) (-3688 (*1 *2 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))) (-2770 (*1 *2 *3) (-12 (-5 *2 (-522)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))) (-2844 (*1 *2 *3) (-12 (-5 *2 (-522)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))) (-3551 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-419 *3)) (-4 *3 (-971)))) (-1722 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-971)))) (-2424 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-971)))) (-2424 (*1 *2 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-971)))) (-1261 (*1 *2 *3 *4) (-12 (-5 *3 (-708)) (-5 *4 (-522)) (-5 *1 (-419 *2)) (-4 *2 (-971)))))
-(-10 -7 (-15 -1261 (|#1| (-708) (-522))) (-15 -2424 ((-708) (-708))) (-15 -2424 ((-708))) (-15 -1722 ((-708))) (-15 -3551 ((-1171))) (IF (|has| |#1| (-379)) (PROGN (-15 -2844 ((-522) |#1|)) (-15 -2770 ((-522) |#1|)) (-15 -3688 ((-708) (-708))) (-15 -3688 ((-708)))) |%noBranch|))
-((-2046 (((-588 (-522)) (-522)) 59)) (-2813 (((-108) (-154 (-522))) 63)) (-1916 (((-393 (-154 (-522))) (-154 (-522))) 58)))
-(((-420) (-10 -7 (-15 -1916 ((-393 (-154 (-522))) (-154 (-522)))) (-15 -2046 ((-588 (-522)) (-522))) (-15 -2813 ((-108) (-154 (-522)))))) (T -420))
-((-2813 (*1 *2 *3) (-12 (-5 *3 (-154 (-522))) (-5 *2 (-108)) (-5 *1 (-420)))) (-2046 (*1 *2 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-420)) (-5 *3 (-522)))) (-1916 (*1 *2 *3) (-12 (-5 *2 (-393 (-154 (-522)))) (-5 *1 (-420)) (-5 *3 (-154 (-522))))))
-(-10 -7 (-15 -1916 ((-393 (-154 (-522))) (-154 (-522)))) (-15 -2046 ((-588 (-522)) (-522))) (-15 -2813 ((-108) (-154 (-522)))))
-((-3918 ((|#4| |#4| (-588 |#4|)) 59)) (-3840 (((-588 |#4|) (-588 |#4|) (-1068) (-1068)) 17) (((-588 |#4|) (-588 |#4|) (-1068)) 16) (((-588 |#4|) (-588 |#4|)) 11)))
-(((-421 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3918 (|#4| |#4| (-588 |#4|))) (-15 -3840 ((-588 |#4|) (-588 |#4|))) (-15 -3840 ((-588 |#4|) (-588 |#4|) (-1068))) (-15 -3840 ((-588 |#4|) (-588 |#4|) (-1068) (-1068)))) (-283) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -421))
-((-3840 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-283)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-421 *4 *5 *6 *7)))) (-3840 (*1 *2 *2 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-283)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-421 *4 *5 *6 *7)))) (-3840 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-283)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-421 *3 *4 *5 *6)))) (-3918 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-283)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-421 *4 *5 *6 *2)))))
-(-10 -7 (-15 -3918 (|#4| |#4| (-588 |#4|))) (-15 -3840 ((-588 |#4|) (-588 |#4|))) (-15 -3840 ((-588 |#4|) (-588 |#4|) (-1068))) (-15 -3840 ((-588 |#4|) (-588 |#4|) (-1068) (-1068))))
-((-1988 (((-588 (-588 |#4|)) (-588 |#4|) (-108)) 71) (((-588 (-588 |#4|)) (-588 |#4|)) 70) (((-588 (-588 |#4|)) (-588 |#4|) (-588 |#4|) (-108)) 64) (((-588 (-588 |#4|)) (-588 |#4|) (-588 |#4|)) 65)) (-2658 (((-588 (-588 |#4|)) (-588 |#4|) (-108)) 41) (((-588 (-588 |#4|)) (-588 |#4|)) 61)))
-(((-422 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2658 ((-588 (-588 |#4|)) (-588 |#4|))) (-15 -2658 ((-588 (-588 |#4|)) (-588 |#4|) (-108))) (-15 -1988 ((-588 (-588 |#4|)) (-588 |#4|) (-588 |#4|))) (-15 -1988 ((-588 (-588 |#4|)) (-588 |#4|) (-588 |#4|) (-108))) (-15 -1988 ((-588 (-588 |#4|)) (-588 |#4|))) (-15 -1988 ((-588 (-588 |#4|)) (-588 |#4|) (-108)))) (-13 (-283) (-135)) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -422))
-((-1988 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-588 (-588 *8))) (-5 *1 (-422 *5 *6 *7 *8)) (-5 *3 (-588 *8)))) (-1988 (*1 *2 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-588 (-588 *7))) (-5 *1 (-422 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-1988 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-588 (-588 *8))) (-5 *1 (-422 *5 *6 *7 *8)) (-5 *3 (-588 *8)))) (-1988 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-588 (-588 *7))) (-5 *1 (-422 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-2658 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-588 (-588 *8))) (-5 *1 (-422 *5 *6 *7 *8)) (-5 *3 (-588 *8)))) (-2658 (*1 *2 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-588 (-588 *7))) (-5 *1 (-422 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
-(-10 -7 (-15 -2658 ((-588 (-588 |#4|)) (-588 |#4|))) (-15 -2658 ((-588 (-588 |#4|)) (-588 |#4|) (-108))) (-15 -1988 ((-588 (-588 |#4|)) (-588 |#4|) (-588 |#4|))) (-15 -1988 ((-588 (-588 |#4|)) (-588 |#4|) (-588 |#4|) (-108))) (-15 -1988 ((-588 (-588 |#4|)) (-588 |#4|))) (-15 -1988 ((-588 (-588 |#4|)) (-588 |#4|) (-108))))
-((-3217 (((-708) |#4|) 12)) (-2205 (((-588 (-2 (|:| |totdeg| (-708)) (|:| -3892 |#4|))) |#4| (-708) (-588 (-2 (|:| |totdeg| (-708)) (|:| -3892 |#4|)))) 31)) (-2841 (((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 38)) (-1271 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 39)) (-4172 ((|#4| |#4| (-588 |#4|)) 40)) (-2210 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-588 |#4|)) 69)) (-1802 (((-1171) |#4|) 42)) (-1424 (((-1171) (-588 |#4|)) 51)) (-1903 (((-522) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-522) (-522) (-522)) 48)) (-3314 (((-1171) (-522)) 77)) (-3705 (((-588 |#4|) (-588 |#4|)) 75)) (-2749 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-708)) (|:| -3892 |#4|)) |#4| (-708)) 25)) (-1956 (((-522) |#4|) 76)) (-1729 ((|#4| |#4|) 29)) (-2167 (((-588 |#4|) (-588 |#4|) (-522) (-522)) 55)) (-1295 (((-522) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-522) (-522) (-522) (-522)) 87)) (-1881 (((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 16)) (-3629 (((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 58)) (-3315 (((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 57)) (-3363 (((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 36)) (-1762 (((-108) |#2| |#2|) 56)) (-4061 (((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 37)) (-2248 (((-108) |#2| |#2| |#2| |#2|) 59)) (-4081 ((|#4| |#4| (-588 |#4|)) 70)))
-(((-423 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4081 (|#4| |#4| (-588 |#4|))) (-15 -4172 (|#4| |#4| (-588 |#4|))) (-15 -2167 ((-588 |#4|) (-588 |#4|) (-522) (-522))) (-15 -3629 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -1762 ((-108) |#2| |#2|)) (-15 -2248 ((-108) |#2| |#2| |#2| |#2|)) (-15 -4061 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3363 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3315 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2210 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-588 |#4|))) (-15 -1729 (|#4| |#4|)) (-15 -2205 ((-588 (-2 (|:| |totdeg| (-708)) (|:| -3892 |#4|))) |#4| (-708) (-588 (-2 (|:| |totdeg| (-708)) (|:| -3892 |#4|))))) (-15 -1271 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2841 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3705 ((-588 |#4|) (-588 |#4|))) (-15 -1956 ((-522) |#4|)) (-15 -1802 ((-1171) |#4|)) (-15 -1903 ((-522) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-522) (-522) (-522))) (-15 -1295 ((-522) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-522) (-522) (-522) (-522))) (-15 -1424 ((-1171) (-588 |#4|))) (-15 -3314 ((-1171) (-522))) (-15 -1881 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2749 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-708)) (|:| -3892 |#4|)) |#4| (-708))) (-15 -3217 ((-708) |#4|))) (-426) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -423))
-((-3217 (*1 *2 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-708)) (-5 *1 (-423 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))) (-2749 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-708)) (|:| -3892 *4))) (-5 *5 (-708)) (-4 *4 (-878 *6 *7 *8)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-423 *6 *7 *8 *4)))) (-1881 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-730)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-423 *4 *5 *6 *7)))) (-3314 (*1 *2 *3) (-12 (-5 *3 (-522)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1171)) (-5 *1 (-423 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))) (-1424 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1171)) (-5 *1 (-423 *4 *5 *6 *7)))) (-1295 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-708)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-730)) (-4 *4 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *7 (-784)) (-5 *1 (-423 *5 *6 *7 *4)))) (-1903 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-708)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-730)) (-4 *4 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *7 (-784)) (-5 *1 (-423 *5 *6 *7 *4)))) (-1802 (*1 *2 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1171)) (-5 *1 (-423 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))) (-1956 (*1 *2 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-522)) (-5 *1 (-423 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))) (-3705 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-423 *3 *4 *5 *6)))) (-2841 (*1 *2 *2 *2) (-12 (-5 *2 (-588 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-708)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-730)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426)) (-4 *5 (-784)) (-5 *1 (-423 *3 *4 *5 *6)))) (-1271 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-730)) (-4 *2 (-878 *4 *5 *6)) (-5 *1 (-423 *4 *5 *6 *2)) (-4 *4 (-426)) (-4 *6 (-784)))) (-2205 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-588 (-2 (|:| |totdeg| (-708)) (|:| -3892 *3)))) (-5 *4 (-708)) (-4 *3 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-423 *5 *6 *7 *3)))) (-1729 (*1 *2 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-423 *3 *4 *5 *2)) (-4 *2 (-878 *3 *4 *5)))) (-2210 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-423 *5 *6 *7 *3)))) (-3315 (*1 *2 *3 *2) (-12 (-5 *2 (-588 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-708)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-730)) (-4 *6 (-878 *4 *3 *5)) (-4 *4 (-426)) (-4 *5 (-784)) (-5 *1 (-423 *4 *3 *5 *6)))) (-3363 (*1 *2 *2) (-12 (-5 *2 (-588 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-708)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-730)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426)) (-4 *5 (-784)) (-5 *1 (-423 *3 *4 *5 *6)))) (-4061 (*1 *2 *3 *2) (-12 (-5 *2 (-588 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-730)) (-4 *3 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *6 (-784)) (-5 *1 (-423 *4 *5 *6 *3)))) (-2248 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-426)) (-4 *3 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-423 *4 *3 *5 *6)) (-4 *6 (-878 *4 *3 *5)))) (-1762 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *3 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-423 *4 *3 *5 *6)) (-4 *6 (-878 *4 *3 *5)))) (-3629 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-730)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-423 *4 *5 *6 *7)))) (-2167 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-522)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-423 *4 *5 *6 *7)))) (-4172 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-423 *4 *5 *6 *2)))) (-4081 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-423 *4 *5 *6 *2)))))
-(-10 -7 (-15 -4081 (|#4| |#4| (-588 |#4|))) (-15 -4172 (|#4| |#4| (-588 |#4|))) (-15 -2167 ((-588 |#4|) (-588 |#4|) (-522) (-522))) (-15 -3629 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -1762 ((-108) |#2| |#2|)) (-15 -2248 ((-108) |#2| |#2| |#2| |#2|)) (-15 -4061 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3363 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3315 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2210 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-588 |#4|))) (-15 -1729 (|#4| |#4|)) (-15 -2205 ((-588 (-2 (|:| |totdeg| (-708)) (|:| -3892 |#4|))) |#4| (-708) (-588 (-2 (|:| |totdeg| (-708)) (|:| -3892 |#4|))))) (-15 -1271 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2841 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3705 ((-588 |#4|) (-588 |#4|))) (-15 -1956 ((-522) |#4|)) (-15 -1802 ((-1171) |#4|)) (-15 -1903 ((-522) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-522) (-522) (-522))) (-15 -1295 ((-522) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-522) (-522) (-522) (-522))) (-15 -1424 ((-1171) (-588 |#4|))) (-15 -3314 ((-1171) (-522))) (-15 -1881 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2749 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-708)) (|:| -3892 |#4|)) |#4| (-708))) (-15 -3217 ((-708) |#4|)))
-((-3904 ((|#4| |#4| (-588 |#4|)) 22 (|has| |#1| (-338)))) (-4054 (((-588 |#4|) (-588 |#4|) (-1068) (-1068)) 42) (((-588 |#4|) (-588 |#4|) (-1068)) 41) (((-588 |#4|) (-588 |#4|)) 36)))
-(((-424 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4054 ((-588 |#4|) (-588 |#4|))) (-15 -4054 ((-588 |#4|) (-588 |#4|) (-1068))) (-15 -4054 ((-588 |#4|) (-588 |#4|) (-1068) (-1068))) (IF (|has| |#1| (-338)) (-15 -3904 (|#4| |#4| (-588 |#4|))) |%noBranch|)) (-426) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -424))
-((-3904 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-338)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-424 *4 *5 *6 *2)))) (-4054 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-424 *4 *5 *6 *7)))) (-4054 (*1 *2 *2 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-424 *4 *5 *6 *7)))) (-4054 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-424 *3 *4 *5 *6)))))
-(-10 -7 (-15 -4054 ((-588 |#4|) (-588 |#4|))) (-15 -4054 ((-588 |#4|) (-588 |#4|) (-1068))) (-15 -4054 ((-588 |#4|) (-588 |#4|) (-1068) (-1068))) (IF (|has| |#1| (-338)) (-15 -3904 (|#4| |#4| (-588 |#4|))) |%noBranch|))
-((-2224 (($ $ $) 14) (($ (-588 $)) 21)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 41)) (-2259 (($ $ $) NIL) (($ (-588 $)) 22)))
-(((-425 |#1|) (-10 -8 (-15 -1307 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))) (-15 -2224 (|#1| (-588 |#1|))) (-15 -2224 (|#1| |#1| |#1|)) (-15 -2259 (|#1| (-588 |#1|))) (-15 -2259 (|#1| |#1| |#1|))) (-426)) (T -425))
-NIL
-(-10 -8 (-15 -1307 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))) (-15 -2224 (|#1| (-588 |#1|))) (-15 -2224 (|#1| |#1| |#1|)) (-15 -2259 (|#1| (-588 |#1|))) (-15 -2259 (|#1| |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-2232 (((-3 $ "failed") $ $) 42)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-3582 (((-108)) 17)) (-3751 (((-108) (-108)) 18)) (-2479 (((-108)) 13)) (-1260 (((-108) (-108)) 14)) (-3590 (((-108)) 15)) (-1394 (((-108) (-108)) 16)) (-1618 (((-850) (-850)) 21) (((-850)) 20)) (-4152 (((-708) (-588 (-2 (|:| -2006 |#1|) (|:| -2487 (-522))))) 42)) (-2218 (((-850) (-850)) 23) (((-850)) 22)) (-2757 (((-2 (|:| -3909 (-522)) (|:| -4045 (-588 |#1|))) |#1|) 62)) (-2865 (((-393 |#1|) (-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| |#1|) (|:| -4160 (-522))))))) 124)) (-3306 (((-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| |#1|) (|:| -4160 (-522)))))) |#1| (-108)) 150)) (-3903 (((-393 |#1|) |#1| (-708) (-708)) 163) (((-393 |#1|) |#1| (-588 (-708)) (-708)) 160) (((-393 |#1|) |#1| (-588 (-708))) 162) (((-393 |#1|) |#1| (-708)) 161) (((-393 |#1|) |#1|) 159)) (-2839 (((-3 |#1| "failed") (-850) |#1| (-588 (-708)) (-708) (-108)) 165) (((-3 |#1| "failed") (-850) |#1| (-588 (-708)) (-708)) 166) (((-3 |#1| "failed") (-850) |#1| (-588 (-708))) 168) (((-3 |#1| "failed") (-850) |#1| (-708)) 167) (((-3 |#1| "failed") (-850) |#1|) 169)) (-2006 (((-393 |#1|) |#1| (-708) (-708)) 158) (((-393 |#1|) |#1| (-588 (-708)) (-708)) 154) (((-393 |#1|) |#1| (-588 (-708))) 156) (((-393 |#1|) |#1| (-708)) 155) (((-393 |#1|) |#1|) 153)) (-2582 (((-108) |#1|) 37)) (-3644 (((-675 (-708)) (-588 (-2 (|:| -2006 |#1|) (|:| -2487 (-522))))) 67)) (-1914 (((-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| |#1|) (|:| -4160 (-522)))))) |#1| (-108) (-1016 (-708)) (-708)) 152)))
+(((-416 |#1|) (-10 -7 (-15 -2865 ((-393 |#1|) (-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| |#1|) (|:| -4160 (-522)))))))) (-15 -3644 ((-675 (-708)) (-588 (-2 (|:| -2006 |#1|) (|:| -2487 (-522)))))) (-15 -2218 ((-850))) (-15 -2218 ((-850) (-850))) (-15 -1618 ((-850))) (-15 -1618 ((-850) (-850))) (-15 -4152 ((-708) (-588 (-2 (|:| -2006 |#1|) (|:| -2487 (-522)))))) (-15 -2757 ((-2 (|:| -3909 (-522)) (|:| -4045 (-588 |#1|))) |#1|)) (-15 -3582 ((-108))) (-15 -3751 ((-108) (-108))) (-15 -2479 ((-108))) (-15 -1260 ((-108) (-108))) (-15 -2582 ((-108) |#1|)) (-15 -3590 ((-108))) (-15 -1394 ((-108) (-108))) (-15 -2006 ((-393 |#1|) |#1|)) (-15 -2006 ((-393 |#1|) |#1| (-708))) (-15 -2006 ((-393 |#1|) |#1| (-588 (-708)))) (-15 -2006 ((-393 |#1|) |#1| (-588 (-708)) (-708))) (-15 -2006 ((-393 |#1|) |#1| (-708) (-708))) (-15 -3903 ((-393 |#1|) |#1|)) (-15 -3903 ((-393 |#1|) |#1| (-708))) (-15 -3903 ((-393 |#1|) |#1| (-588 (-708)))) (-15 -3903 ((-393 |#1|) |#1| (-588 (-708)) (-708))) (-15 -3903 ((-393 |#1|) |#1| (-708) (-708))) (-15 -2839 ((-3 |#1| "failed") (-850) |#1|)) (-15 -2839 ((-3 |#1| "failed") (-850) |#1| (-708))) (-15 -2839 ((-3 |#1| "failed") (-850) |#1| (-588 (-708)))) (-15 -2839 ((-3 |#1| "failed") (-850) |#1| (-588 (-708)) (-708))) (-15 -2839 ((-3 |#1| "failed") (-850) |#1| (-588 (-708)) (-708) (-108))) (-15 -3306 ((-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| |#1|) (|:| -4160 (-522)))))) |#1| (-108))) (-15 -1914 ((-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| |#1|) (|:| -4160 (-522)))))) |#1| (-108) (-1016 (-708)) (-708)))) (-1142 (-522))) (T -416))
+((-1914 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-108)) (-5 *5 (-1016 (-708))) (-5 *6 (-708)) (-5 *2 (-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| *3) (|:| -4160 (-522))))))) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3306 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-5 *2 (-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| *3) (|:| -4160 (-522))))))) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2839 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-850)) (-5 *4 (-588 (-708))) (-5 *5 (-708)) (-5 *6 (-108)) (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522))))) (-2839 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-850)) (-5 *4 (-588 (-708))) (-5 *5 (-708)) (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522))))) (-2839 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-850)) (-5 *4 (-588 (-708))) (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522))))) (-2839 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-850)) (-5 *4 (-708)) (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522))))) (-2839 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-850)) (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522))))) (-3903 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3903 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-588 (-708))) (-5 *5 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3903 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-708))) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3903 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3903 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2006 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2006 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-588 (-708))) (-5 *5 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2006 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-708))) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2006 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2006 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-1394 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3590 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2582 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-1260 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2479 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3751 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3582 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2757 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -3909 (-522)) (|:| -4045 (-588 *3)))) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-4152 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -2006 *4) (|:| -2487 (-522))))) (-4 *4 (-1142 (-522))) (-5 *2 (-708)) (-5 *1 (-416 *4)))) (-1618 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-1618 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2218 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-2218 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))) (-3644 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -2006 *4) (|:| -2487 (-522))))) (-4 *4 (-1142 (-522))) (-5 *2 (-675 (-708))) (-5 *1 (-416 *4)))) (-2865 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| *4) (|:| -4160 (-522))))))) (-4 *4 (-1142 (-522))) (-5 *2 (-393 *4)) (-5 *1 (-416 *4)))))
+(-10 -7 (-15 -2865 ((-393 |#1|) (-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| |#1|) (|:| -4160 (-522)))))))) (-15 -3644 ((-675 (-708)) (-588 (-2 (|:| -2006 |#1|) (|:| -2487 (-522)))))) (-15 -2218 ((-850))) (-15 -2218 ((-850) (-850))) (-15 -1618 ((-850))) (-15 -1618 ((-850) (-850))) (-15 -4152 ((-708) (-588 (-2 (|:| -2006 |#1|) (|:| -2487 (-522)))))) (-15 -2757 ((-2 (|:| -3909 (-522)) (|:| -4045 (-588 |#1|))) |#1|)) (-15 -3582 ((-108))) (-15 -3751 ((-108) (-108))) (-15 -2479 ((-108))) (-15 -1260 ((-108) (-108))) (-15 -2582 ((-108) |#1|)) (-15 -3590 ((-108))) (-15 -1394 ((-108) (-108))) (-15 -2006 ((-393 |#1|) |#1|)) (-15 -2006 ((-393 |#1|) |#1| (-708))) (-15 -2006 ((-393 |#1|) |#1| (-588 (-708)))) (-15 -2006 ((-393 |#1|) |#1| (-588 (-708)) (-708))) (-15 -2006 ((-393 |#1|) |#1| (-708) (-708))) (-15 -3903 ((-393 |#1|) |#1|)) (-15 -3903 ((-393 |#1|) |#1| (-708))) (-15 -3903 ((-393 |#1|) |#1| (-588 (-708)))) (-15 -3903 ((-393 |#1|) |#1| (-588 (-708)) (-708))) (-15 -3903 ((-393 |#1|) |#1| (-708) (-708))) (-15 -2839 ((-3 |#1| "failed") (-850) |#1|)) (-15 -2839 ((-3 |#1| "failed") (-850) |#1| (-708))) (-15 -2839 ((-3 |#1| "failed") (-850) |#1| (-588 (-708)))) (-15 -2839 ((-3 |#1| "failed") (-850) |#1| (-588 (-708)) (-708))) (-15 -2839 ((-3 |#1| "failed") (-850) |#1| (-588 (-708)) (-708) (-108))) (-15 -3306 ((-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| |#1|) (|:| -4160 (-522)))))) |#1| (-108))) (-15 -1914 ((-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| |#1|) (|:| -4160 (-522)))))) |#1| (-108) (-1016 (-708)) (-708))))
+((-1929 (((-522) |#2|) 48) (((-522) |#2| (-708)) 47)) (-3731 (((-522) |#2|) 55)) (-2821 ((|#3| |#2|) 25)) (-1269 ((|#3| |#2| (-850)) 14)) (-4030 ((|#3| |#2|) 15)) (-1526 ((|#3| |#2|) 9)) (-4179 ((|#3| |#2|) 10)) (-2384 ((|#3| |#2| (-850)) 62) ((|#3| |#2|) 30)) (-3696 (((-522) |#2|) 57)))
+(((-417 |#1| |#2| |#3|) (-10 -7 (-15 -3696 ((-522) |#2|)) (-15 -2384 (|#3| |#2|)) (-15 -2384 (|#3| |#2| (-850))) (-15 -3731 ((-522) |#2|)) (-15 -1929 ((-522) |#2| (-708))) (-15 -1929 ((-522) |#2|)) (-15 -1269 (|#3| |#2| (-850))) (-15 -2821 (|#3| |#2|)) (-15 -1526 (|#3| |#2|)) (-15 -4179 (|#3| |#2|)) (-15 -4030 (|#3| |#2|))) (-971) (-1142 |#1|) (-13 (-379) (-962 |#1|) (-338) (-1106) (-260))) (T -417))
+((-4030 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260))) (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))) (-4179 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260))) (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))) (-1526 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260))) (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))) (-2821 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260))) (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))) (-1269 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-4 *5 (-971)) (-4 *2 (-13 (-379) (-962 *5) (-338) (-1106) (-260))) (-5 *1 (-417 *5 *3 *2)) (-4 *3 (-1142 *5)))) (-1929 (*1 *2 *3) (-12 (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *4 *3 *5)) (-4 *3 (-1142 *4)) (-4 *5 (-13 (-379) (-962 *4) (-338) (-1106) (-260))))) (-1929 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *5 *3 *6)) (-4 *3 (-1142 *5)) (-4 *6 (-13 (-379) (-962 *5) (-338) (-1106) (-260))))) (-3731 (*1 *2 *3) (-12 (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *4 *3 *5)) (-4 *3 (-1142 *4)) (-4 *5 (-13 (-379) (-962 *4) (-338) (-1106) (-260))))) (-2384 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-4 *5 (-971)) (-4 *2 (-13 (-379) (-962 *5) (-338) (-1106) (-260))) (-5 *1 (-417 *5 *3 *2)) (-4 *3 (-1142 *5)))) (-2384 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260))) (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))) (-3696 (*1 *2 *3) (-12 (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *4 *3 *5)) (-4 *3 (-1142 *4)) (-4 *5 (-13 (-379) (-962 *4) (-338) (-1106) (-260))))))
+(-10 -7 (-15 -3696 ((-522) |#2|)) (-15 -2384 (|#3| |#2|)) (-15 -2384 (|#3| |#2| (-850))) (-15 -3731 ((-522) |#2|)) (-15 -1929 ((-522) |#2| (-708))) (-15 -1929 ((-522) |#2|)) (-15 -1269 (|#3| |#2| (-850))) (-15 -2821 (|#3| |#2|)) (-15 -1526 (|#3| |#2|)) (-15 -4179 (|#3| |#2|)) (-15 -4030 (|#3| |#2|)))
+((-2030 ((|#2| (-1166 |#1|)) 36)) (-4173 ((|#2| |#2| |#1|) 49)) (-2461 ((|#2| |#2| |#1|) 41)) (-1939 ((|#2| |#2|) 38)) (-1257 (((-108) |#2|) 30)) (-3291 (((-588 |#2|) (-850) (-393 |#2|)) 16)) (-2839 ((|#2| (-850) (-393 |#2|)) 21)) (-3644 (((-675 (-708)) (-393 |#2|)) 25)))
+(((-418 |#1| |#2|) (-10 -7 (-15 -1257 ((-108) |#2|)) (-15 -2030 (|#2| (-1166 |#1|))) (-15 -1939 (|#2| |#2|)) (-15 -2461 (|#2| |#2| |#1|)) (-15 -4173 (|#2| |#2| |#1|)) (-15 -3644 ((-675 (-708)) (-393 |#2|))) (-15 -2839 (|#2| (-850) (-393 |#2|))) (-15 -3291 ((-588 |#2|) (-850) (-393 |#2|)))) (-971) (-1142 |#1|)) (T -418))
+((-3291 (*1 *2 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-393 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-971)) (-5 *2 (-588 *6)) (-5 *1 (-418 *5 *6)))) (-2839 (*1 *2 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-393 *2)) (-4 *2 (-1142 *5)) (-5 *1 (-418 *5 *2)) (-4 *5 (-971)))) (-3644 (*1 *2 *3) (-12 (-5 *3 (-393 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-971)) (-5 *2 (-675 (-708))) (-5 *1 (-418 *4 *5)))) (-4173 (*1 *2 *2 *3) (-12 (-4 *3 (-971)) (-5 *1 (-418 *3 *2)) (-4 *2 (-1142 *3)))) (-2461 (*1 *2 *2 *3) (-12 (-4 *3 (-971)) (-5 *1 (-418 *3 *2)) (-4 *2 (-1142 *3)))) (-1939 (*1 *2 *2) (-12 (-4 *3 (-971)) (-5 *1 (-418 *3 *2)) (-4 *2 (-1142 *3)))) (-2030 (*1 *2 *3) (-12 (-5 *3 (-1166 *4)) (-4 *4 (-971)) (-4 *2 (-1142 *4)) (-5 *1 (-418 *4 *2)))) (-1257 (*1 *2 *3) (-12 (-4 *4 (-971)) (-5 *2 (-108)) (-5 *1 (-418 *4 *3)) (-4 *3 (-1142 *4)))))
+(-10 -7 (-15 -1257 ((-108) |#2|)) (-15 -2030 (|#2| (-1166 |#1|))) (-15 -1939 (|#2| |#2|)) (-15 -2461 (|#2| |#2| |#1|)) (-15 -4173 (|#2| |#2| |#1|)) (-15 -3644 ((-675 (-708)) (-393 |#2|))) (-15 -2839 (|#2| (-850) (-393 |#2|))) (-15 -3291 ((-588 |#2|) (-850) (-393 |#2|))))
+((-1267 (((-708)) 41)) (-3615 (((-708)) 23 (|has| |#1| (-379))) (((-708) (-708)) 22 (|has| |#1| (-379)))) (-1624 (((-522) |#1|) 18 (|has| |#1| (-379)))) (-4104 (((-522) |#1|) 20 (|has| |#1| (-379)))) (-3280 (((-708)) 40) (((-708) (-708)) 39)) (-2602 ((|#1| (-708) (-522)) 29)) (-1683 (((-1171)) 43)))
+(((-419 |#1|) (-10 -7 (-15 -2602 (|#1| (-708) (-522))) (-15 -3280 ((-708) (-708))) (-15 -3280 ((-708))) (-15 -1267 ((-708))) (-15 -1683 ((-1171))) (IF (|has| |#1| (-379)) (PROGN (-15 -4104 ((-522) |#1|)) (-15 -1624 ((-522) |#1|)) (-15 -3615 ((-708) (-708))) (-15 -3615 ((-708)))) |%noBranch|)) (-971)) (T -419))
+((-3615 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))) (-3615 (*1 *2 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))) (-1624 (*1 *2 *3) (-12 (-5 *2 (-522)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))) (-4104 (*1 *2 *3) (-12 (-5 *2 (-522)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))) (-1683 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-419 *3)) (-4 *3 (-971)))) (-1267 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-971)))) (-3280 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-971)))) (-3280 (*1 *2 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-971)))) (-2602 (*1 *2 *3 *4) (-12 (-5 *3 (-708)) (-5 *4 (-522)) (-5 *1 (-419 *2)) (-4 *2 (-971)))))
+(-10 -7 (-15 -2602 (|#1| (-708) (-522))) (-15 -3280 ((-708) (-708))) (-15 -3280 ((-708))) (-15 -1267 ((-708))) (-15 -1683 ((-1171))) (IF (|has| |#1| (-379)) (PROGN (-15 -4104 ((-522) |#1|)) (-15 -1624 ((-522) |#1|)) (-15 -3615 ((-708) (-708))) (-15 -3615 ((-708)))) |%noBranch|))
+((-2605 (((-588 (-522)) (-522)) 59)) (-2725 (((-108) (-154 (-522))) 63)) (-2006 (((-393 (-154 (-522))) (-154 (-522))) 58)))
+(((-420) (-10 -7 (-15 -2006 ((-393 (-154 (-522))) (-154 (-522)))) (-15 -2605 ((-588 (-522)) (-522))) (-15 -2725 ((-108) (-154 (-522)))))) (T -420))
+((-2725 (*1 *2 *3) (-12 (-5 *3 (-154 (-522))) (-5 *2 (-108)) (-5 *1 (-420)))) (-2605 (*1 *2 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-420)) (-5 *3 (-522)))) (-2006 (*1 *2 *3) (-12 (-5 *2 (-393 (-154 (-522)))) (-5 *1 (-420)) (-5 *3 (-154 (-522))))))
+(-10 -7 (-15 -2006 ((-393 (-154 (-522))) (-154 (-522)))) (-15 -2605 ((-588 (-522)) (-522))) (-15 -2725 ((-108) (-154 (-522)))))
+((-2197 ((|#4| |#4| (-588 |#4|)) 59)) (-2792 (((-588 |#4|) (-588 |#4|) (-1068) (-1068)) 17) (((-588 |#4|) (-588 |#4|) (-1068)) 16) (((-588 |#4|) (-588 |#4|)) 11)))
+(((-421 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2197 (|#4| |#4| (-588 |#4|))) (-15 -2792 ((-588 |#4|) (-588 |#4|))) (-15 -2792 ((-588 |#4|) (-588 |#4|) (-1068))) (-15 -2792 ((-588 |#4|) (-588 |#4|) (-1068) (-1068)))) (-283) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -421))
+((-2792 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-283)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-421 *4 *5 *6 *7)))) (-2792 (*1 *2 *2 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-283)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-421 *4 *5 *6 *7)))) (-2792 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-283)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-421 *3 *4 *5 *6)))) (-2197 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-283)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-421 *4 *5 *6 *2)))))
+(-10 -7 (-15 -2197 (|#4| |#4| (-588 |#4|))) (-15 -2792 ((-588 |#4|) (-588 |#4|))) (-15 -2792 ((-588 |#4|) (-588 |#4|) (-1068))) (-15 -2792 ((-588 |#4|) (-588 |#4|) (-1068) (-1068))))
+((-3204 (((-588 (-588 |#4|)) (-588 |#4|) (-108)) 71) (((-588 (-588 |#4|)) (-588 |#4|)) 70) (((-588 (-588 |#4|)) (-588 |#4|) (-588 |#4|) (-108)) 64) (((-588 (-588 |#4|)) (-588 |#4|) (-588 |#4|)) 65)) (-1792 (((-588 (-588 |#4|)) (-588 |#4|) (-108)) 41) (((-588 (-588 |#4|)) (-588 |#4|)) 61)))
+(((-422 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1792 ((-588 (-588 |#4|)) (-588 |#4|))) (-15 -1792 ((-588 (-588 |#4|)) (-588 |#4|) (-108))) (-15 -3204 ((-588 (-588 |#4|)) (-588 |#4|) (-588 |#4|))) (-15 -3204 ((-588 (-588 |#4|)) (-588 |#4|) (-588 |#4|) (-108))) (-15 -3204 ((-588 (-588 |#4|)) (-588 |#4|))) (-15 -3204 ((-588 (-588 |#4|)) (-588 |#4|) (-108)))) (-13 (-283) (-135)) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -422))
+((-3204 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-588 (-588 *8))) (-5 *1 (-422 *5 *6 *7 *8)) (-5 *3 (-588 *8)))) (-3204 (*1 *2 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-588 (-588 *7))) (-5 *1 (-422 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-3204 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-588 (-588 *8))) (-5 *1 (-422 *5 *6 *7 *8)) (-5 *3 (-588 *8)))) (-3204 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-588 (-588 *7))) (-5 *1 (-422 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-1792 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-588 (-588 *8))) (-5 *1 (-422 *5 *6 *7 *8)) (-5 *3 (-588 *8)))) (-1792 (*1 *2 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-588 (-588 *7))) (-5 *1 (-422 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
+(-10 -7 (-15 -1792 ((-588 (-588 |#4|)) (-588 |#4|))) (-15 -1792 ((-588 (-588 |#4|)) (-588 |#4|) (-108))) (-15 -3204 ((-588 (-588 |#4|)) (-588 |#4|) (-588 |#4|))) (-15 -3204 ((-588 (-588 |#4|)) (-588 |#4|) (-588 |#4|) (-108))) (-15 -3204 ((-588 (-588 |#4|)) (-588 |#4|))) (-15 -3204 ((-588 (-588 |#4|)) (-588 |#4|) (-108))))
+((-2610 (((-708) |#4|) 12)) (-2345 (((-588 (-2 (|:| |totdeg| (-708)) (|:| -1976 |#4|))) |#4| (-708) (-588 (-2 (|:| |totdeg| (-708)) (|:| -1976 |#4|)))) 31)) (-2921 (((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 38)) (-2728 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 39)) (-1741 ((|#4| |#4| (-588 |#4|)) 40)) (-2422 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-588 |#4|)) 69)) (-3782 (((-1171) |#4|) 42)) (-2246 (((-1171) (-588 |#4|)) 51)) (-4192 (((-522) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-522) (-522) (-522)) 48)) (-4142 (((-1171) (-522)) 77)) (-3775 (((-588 |#4|) (-588 |#4|)) 75)) (-4151 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-708)) (|:| -1976 |#4|)) |#4| (-708)) 25)) (-2943 (((-522) |#4|) 76)) (-1323 ((|#4| |#4|) 29)) (-3218 (((-588 |#4|) (-588 |#4|) (-522) (-522)) 55)) (-1680 (((-522) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-522) (-522) (-522) (-522)) 87)) (-2861 (((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 16)) (-1206 (((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 58)) (-4153 (((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 57)) (-3420 (((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 36)) (-3460 (((-108) |#2| |#2|) 56)) (-3113 (((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 37)) (-4198 (((-108) |#2| |#2| |#2| |#2|) 59)) (-3249 ((|#4| |#4| (-588 |#4|)) 70)))
+(((-423 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3249 (|#4| |#4| (-588 |#4|))) (-15 -1741 (|#4| |#4| (-588 |#4|))) (-15 -3218 ((-588 |#4|) (-588 |#4|) (-522) (-522))) (-15 -1206 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3460 ((-108) |#2| |#2|)) (-15 -4198 ((-108) |#2| |#2| |#2| |#2|)) (-15 -3113 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3420 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4153 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2422 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-588 |#4|))) (-15 -1323 (|#4| |#4|)) (-15 -2345 ((-588 (-2 (|:| |totdeg| (-708)) (|:| -1976 |#4|))) |#4| (-708) (-588 (-2 (|:| |totdeg| (-708)) (|:| -1976 |#4|))))) (-15 -2728 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2921 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3775 ((-588 |#4|) (-588 |#4|))) (-15 -2943 ((-522) |#4|)) (-15 -3782 ((-1171) |#4|)) (-15 -4192 ((-522) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-522) (-522) (-522))) (-15 -1680 ((-522) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-522) (-522) (-522) (-522))) (-15 -2246 ((-1171) (-588 |#4|))) (-15 -4142 ((-1171) (-522))) (-15 -2861 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -4151 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-708)) (|:| -1976 |#4|)) |#4| (-708))) (-15 -2610 ((-708) |#4|))) (-426) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -423))
+((-2610 (*1 *2 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-708)) (-5 *1 (-423 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))) (-4151 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-708)) (|:| -1976 *4))) (-5 *5 (-708)) (-4 *4 (-878 *6 *7 *8)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-423 *6 *7 *8 *4)))) (-2861 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-730)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-423 *4 *5 *6 *7)))) (-4142 (*1 *2 *3) (-12 (-5 *3 (-522)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1171)) (-5 *1 (-423 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))) (-2246 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1171)) (-5 *1 (-423 *4 *5 *6 *7)))) (-1680 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-708)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-730)) (-4 *4 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *7 (-784)) (-5 *1 (-423 *5 *6 *7 *4)))) (-4192 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-708)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-730)) (-4 *4 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *7 (-784)) (-5 *1 (-423 *5 *6 *7 *4)))) (-3782 (*1 *2 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1171)) (-5 *1 (-423 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))) (-2943 (*1 *2 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-522)) (-5 *1 (-423 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))) (-3775 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-423 *3 *4 *5 *6)))) (-2921 (*1 *2 *2 *2) (-12 (-5 *2 (-588 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-708)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-730)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426)) (-4 *5 (-784)) (-5 *1 (-423 *3 *4 *5 *6)))) (-2728 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-730)) (-4 *2 (-878 *4 *5 *6)) (-5 *1 (-423 *4 *5 *6 *2)) (-4 *4 (-426)) (-4 *6 (-784)))) (-2345 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-588 (-2 (|:| |totdeg| (-708)) (|:| -1976 *3)))) (-5 *4 (-708)) (-4 *3 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-423 *5 *6 *7 *3)))) (-1323 (*1 *2 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-423 *3 *4 *5 *2)) (-4 *2 (-878 *3 *4 *5)))) (-2422 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-423 *5 *6 *7 *3)))) (-4153 (*1 *2 *3 *2) (-12 (-5 *2 (-588 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-708)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-730)) (-4 *6 (-878 *4 *3 *5)) (-4 *4 (-426)) (-4 *5 (-784)) (-5 *1 (-423 *4 *3 *5 *6)))) (-3420 (*1 *2 *2) (-12 (-5 *2 (-588 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-708)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-730)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426)) (-4 *5 (-784)) (-5 *1 (-423 *3 *4 *5 *6)))) (-3113 (*1 *2 *3 *2) (-12 (-5 *2 (-588 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-730)) (-4 *3 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *6 (-784)) (-5 *1 (-423 *4 *5 *6 *3)))) (-4198 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-426)) (-4 *3 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-423 *4 *3 *5 *6)) (-4 *6 (-878 *4 *3 *5)))) (-3460 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *3 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-423 *4 *3 *5 *6)) (-4 *6 (-878 *4 *3 *5)))) (-1206 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-730)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-423 *4 *5 *6 *7)))) (-3218 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-522)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-423 *4 *5 *6 *7)))) (-1741 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-423 *4 *5 *6 *2)))) (-3249 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-423 *4 *5 *6 *2)))))
+(-10 -7 (-15 -3249 (|#4| |#4| (-588 |#4|))) (-15 -1741 (|#4| |#4| (-588 |#4|))) (-15 -3218 ((-588 |#4|) (-588 |#4|) (-522) (-522))) (-15 -1206 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3460 ((-108) |#2| |#2|)) (-15 -4198 ((-108) |#2| |#2| |#2| |#2|)) (-15 -3113 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3420 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4153 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2422 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-588 |#4|))) (-15 -1323 (|#4| |#4|)) (-15 -2345 ((-588 (-2 (|:| |totdeg| (-708)) (|:| -1976 |#4|))) |#4| (-708) (-588 (-2 (|:| |totdeg| (-708)) (|:| -1976 |#4|))))) (-15 -2728 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2921 ((-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-588 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3775 ((-588 |#4|) (-588 |#4|))) (-15 -2943 ((-522) |#4|)) (-15 -3782 ((-1171) |#4|)) (-15 -4192 ((-522) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-522) (-522) (-522))) (-15 -1680 ((-522) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-522) (-522) (-522) (-522))) (-15 -2246 ((-1171) (-588 |#4|))) (-15 -4142 ((-1171) (-522))) (-15 -2861 ((-108) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -4151 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-708)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-708)) (|:| -1976 |#4|)) |#4| (-708))) (-15 -2610 ((-708) |#4|)))
+((-2068 ((|#4| |#4| (-588 |#4|)) 22 (|has| |#1| (-338)))) (-3059 (((-588 |#4|) (-588 |#4|) (-1068) (-1068)) 42) (((-588 |#4|) (-588 |#4|) (-1068)) 41) (((-588 |#4|) (-588 |#4|)) 36)))
+(((-424 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3059 ((-588 |#4|) (-588 |#4|))) (-15 -3059 ((-588 |#4|) (-588 |#4|) (-1068))) (-15 -3059 ((-588 |#4|) (-588 |#4|) (-1068) (-1068))) (IF (|has| |#1| (-338)) (-15 -2068 (|#4| |#4| (-588 |#4|))) |%noBranch|)) (-426) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -424))
+((-2068 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-338)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-424 *4 *5 *6 *2)))) (-3059 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-424 *4 *5 *6 *7)))) (-3059 (*1 *2 *2 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-424 *4 *5 *6 *7)))) (-3059 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-424 *3 *4 *5 *6)))))
+(-10 -7 (-15 -3059 ((-588 |#4|) (-588 |#4|))) (-15 -3059 ((-588 |#4|) (-588 |#4|) (-1068))) (-15 -3059 ((-588 |#4|) (-588 |#4|) (-1068) (-1068))) (IF (|has| |#1| (-338)) (-15 -2068 (|#4| |#4| (-588 |#4|))) |%noBranch|))
+((-2267 (($ $ $) 14) (($ (-588 $)) 21)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 41)) (-2308 (($ $ $) NIL) (($ (-588 $)) 22)))
+(((-425 |#1|) (-10 -8 (-15 -1789 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))) (-15 -2267 (|#1| (-588 |#1|))) (-15 -2267 (|#1| |#1| |#1|)) (-15 -2308 (|#1| (-588 |#1|))) (-15 -2308 (|#1| |#1| |#1|))) (-426)) (T -425))
+NIL
+(-10 -8 (-15 -1789 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))) (-15 -2267 (|#1| (-588 |#1|))) (-15 -2267 (|#1| |#1| |#1|)) (-15 -2308 (|#1| (-588 |#1|))) (-15 -2308 (|#1| |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-2276 (((-3 $ "failed") $ $) 42)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-426) (-1197)) (T -426))
-((-2259 (*1 *1 *1 *1) (-4 *1 (-426))) (-2259 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-426)))) (-2224 (*1 *1 *1 *1) (-4 *1 (-426))) (-2224 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-426)))) (-1307 (*1 *2 *2 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-426)))))
-(-13 (-514) (-10 -8 (-15 -2259 ($ $ $)) (-15 -2259 ($ (-588 $))) (-15 -2224 ($ $ $)) (-15 -2224 ($ (-588 $))) (-15 -1307 ((-1081 $) (-1081 $) (-1081 $)))))
+((-2308 (*1 *1 *1 *1) (-4 *1 (-426))) (-2308 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-426)))) (-2267 (*1 *1 *1 *1) (-4 *1 (-426))) (-2267 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-426)))) (-1789 (*1 *2 *2 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-426)))))
+(-13 (-514) (-10 -8 (-15 -2308 ($ $ $)) (-15 -2308 ($ (-588 $))) (-15 -2267 ($ $ $)) (-15 -2267 ($ (-588 $))) (-15 -1789 ((-1081 $) (-1081 $) (-1081 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-157) . T) ((-266) . T) ((-514) . T) ((-590 $) . T) ((-655 $) . T) ((-664) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-3210 (((-3 $ "failed")) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1588 (((-1166 (-628 (-382 (-881 |#1|)))) (-1166 $)) NIL) (((-1166 (-628 (-382 (-881 |#1|))))) NIL)) (-1681 (((-1166 $)) NIL)) (-3175 (($) NIL T CONST)) (-1868 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) NIL)) (-3130 (((-3 $ "failed")) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-1771 (((-628 (-382 (-881 |#1|))) (-1166 $)) NIL) (((-628 (-382 (-881 |#1|)))) NIL)) (-3594 (((-382 (-881 |#1|)) $) NIL)) (-2828 (((-628 (-382 (-881 |#1|))) $ (-1166 $)) NIL) (((-628 (-382 (-881 |#1|))) $) NIL)) (-3637 (((-3 $ "failed") $) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-3549 (((-1081 (-881 (-382 (-881 |#1|))))) NIL (|has| (-382 (-881 |#1|)) (-338))) (((-1081 (-382 (-881 |#1|)))) 79 (|has| |#1| (-514)))) (-1679 (($ $ (-850)) NIL)) (-3076 (((-382 (-881 |#1|)) $) NIL)) (-2992 (((-1081 (-382 (-881 |#1|))) $) 77 (|has| (-382 (-881 |#1|)) (-514)))) (-2975 (((-382 (-881 |#1|)) (-1166 $)) NIL) (((-382 (-881 |#1|))) NIL)) (-4014 (((-1081 (-382 (-881 |#1|))) $) NIL)) (-2878 (((-108)) NIL)) (-3766 (($ (-1166 (-382 (-881 |#1|))) (-1166 $)) 97) (($ (-1166 (-382 (-881 |#1|)))) NIL)) (-2682 (((-3 $ "failed") $) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-3166 (((-850)) NIL)) (-2666 (((-108)) NIL)) (-1882 (($ $ (-850)) NIL)) (-1427 (((-108)) NIL)) (-2552 (((-108)) NIL)) (-2678 (((-108)) NIL)) (-3505 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) NIL)) (-2007 (((-3 $ "failed")) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-1943 (((-628 (-382 (-881 |#1|))) (-1166 $)) NIL) (((-628 (-382 (-881 |#1|)))) NIL)) (-1546 (((-382 (-881 |#1|)) $) NIL)) (-4142 (((-628 (-382 (-881 |#1|))) $ (-1166 $)) NIL) (((-628 (-382 (-881 |#1|))) $) NIL)) (-2231 (((-3 $ "failed") $) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-2497 (((-1081 (-881 (-382 (-881 |#1|))))) NIL (|has| (-382 (-881 |#1|)) (-338))) (((-1081 (-382 (-881 |#1|)))) 78 (|has| |#1| (-514)))) (-3277 (($ $ (-850)) NIL)) (-1505 (((-382 (-881 |#1|)) $) NIL)) (-3630 (((-1081 (-382 (-881 |#1|))) $) 72 (|has| (-382 (-881 |#1|)) (-514)))) (-2475 (((-382 (-881 |#1|)) (-1166 $)) NIL) (((-382 (-881 |#1|))) NIL)) (-2302 (((-1081 (-382 (-881 |#1|))) $) NIL)) (-3003 (((-108)) NIL)) (-2385 (((-1068) $) NIL)) (-3710 (((-108)) NIL)) (-3026 (((-108)) NIL)) (-3055 (((-108)) NIL)) (-4151 (((-1032) $) NIL)) (-1458 (((-382 (-881 |#1|)) $ $) 66 (|has| |#1| (-514)))) (-1526 (((-382 (-881 |#1|)) $) 65 (|has| |#1| (-514)))) (-3386 (((-382 (-881 |#1|)) $) 89 (|has| |#1| (-514)))) (-1795 (((-1081 (-382 (-881 |#1|))) $) 83 (|has| |#1| (-514)))) (-3887 (((-382 (-881 |#1|))) 67 (|has| |#1| (-514)))) (-3379 (((-382 (-881 |#1|)) $ $) 54 (|has| |#1| (-514)))) (-1500 (((-382 (-881 |#1|)) $) 53 (|has| |#1| (-514)))) (-1926 (((-382 (-881 |#1|)) $) 88 (|has| |#1| (-514)))) (-3664 (((-1081 (-382 (-881 |#1|))) $) 82 (|has| |#1| (-514)))) (-3689 (((-382 (-881 |#1|))) 64 (|has| |#1| (-514)))) (-2317 (($) 95) (($ (-1085)) 101) (($ (-1166 (-1085))) 100) (($ (-1166 $)) 90) (($ (-1085) (-1166 $)) 99) (($ (-1166 (-1085)) (-1166 $)) 98)) (-2889 (((-108)) NIL)) (-2545 (((-382 (-881 |#1|)) $ (-522)) NIL)) (-3677 (((-1166 (-382 (-881 |#1|))) $ (-1166 $)) 92) (((-628 (-382 (-881 |#1|))) (-1166 $) (-1166 $)) NIL) (((-1166 (-382 (-881 |#1|))) $) 37) (((-628 (-382 (-881 |#1|))) (-1166 $)) NIL)) (-1431 (((-1166 (-382 (-881 |#1|))) $) NIL) (($ (-1166 (-382 (-881 |#1|)))) 34)) (-2656 (((-588 (-881 (-382 (-881 |#1|)))) (-1166 $)) NIL) (((-588 (-881 (-382 (-881 |#1|))))) NIL) (((-588 (-881 |#1|)) (-1166 $)) 93 (|has| |#1| (-514))) (((-588 (-881 |#1|))) 94 (|has| |#1| (-514)))) (-1288 (($ $ $) NIL)) (-4034 (((-108)) NIL)) (-2190 (((-792) $) NIL) (($ (-1166 (-382 (-881 |#1|)))) NIL)) (-3855 (((-1166 $)) 56)) (-2901 (((-588 (-1166 (-382 (-881 |#1|))))) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-3610 (($ $ $ $) NIL)) (-2928 (((-108)) NIL)) (-1616 (($ (-628 (-382 (-881 |#1|))) $) NIL)) (-3024 (($ $ $) NIL)) (-3065 (((-108)) NIL)) (-3856 (((-108)) NIL)) (-3877 (((-108)) NIL)) (-3566 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) 91)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 52) (($ $ (-382 (-881 |#1|))) NIL) (($ (-382 (-881 |#1|)) $) NIL) (($ (-1052 |#2| (-382 (-881 |#1|))) $) NIL)))
-(((-427 |#1| |#2| |#3| |#4|) (-13 (-392 (-382 (-881 |#1|))) (-590 (-1052 |#2| (-382 (-881 |#1|)))) (-10 -8 (-15 -2190 ($ (-1166 (-382 (-881 |#1|))))) (-15 -3505 ((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed"))) (-15 -1868 ((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed"))) (-15 -2317 ($)) (-15 -2317 ($ (-1085))) (-15 -2317 ($ (-1166 (-1085)))) (-15 -2317 ($ (-1166 $))) (-15 -2317 ($ (-1085) (-1166 $))) (-15 -2317 ($ (-1166 (-1085)) (-1166 $))) (IF (|has| |#1| (-514)) (PROGN (-15 -2497 ((-1081 (-382 (-881 |#1|))))) (-15 -3664 ((-1081 (-382 (-881 |#1|))) $)) (-15 -1500 ((-382 (-881 |#1|)) $)) (-15 -1926 ((-382 (-881 |#1|)) $)) (-15 -3549 ((-1081 (-382 (-881 |#1|))))) (-15 -1795 ((-1081 (-382 (-881 |#1|))) $)) (-15 -1526 ((-382 (-881 |#1|)) $)) (-15 -3386 ((-382 (-881 |#1|)) $)) (-15 -3379 ((-382 (-881 |#1|)) $ $)) (-15 -3689 ((-382 (-881 |#1|)))) (-15 -1458 ((-382 (-881 |#1|)) $ $)) (-15 -3887 ((-382 (-881 |#1|)))) (-15 -2656 ((-588 (-881 |#1|)) (-1166 $))) (-15 -2656 ((-588 (-881 |#1|))))) |%noBranch|))) (-157) (-850) (-588 (-1085)) (-1166 (-628 |#1|))) (T -427))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1166 (-382 (-881 *3)))) (-4 *3 (-157)) (-14 *6 (-1166 (-628 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))))) (-3505 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-427 *3 *4 *5 *6)) (|:| -3855 (-588 (-427 *3 *4 *5 *6))))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1868 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-427 *3 *4 *5 *6)) (|:| -3855 (-588 (-427 *3 *4 *5 *6))))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-2317 (*1 *1) (-12 (-5 *1 (-427 *2 *3 *4 *5)) (-4 *2 (-157)) (-14 *3 (-850)) (-14 *4 (-588 (-1085))) (-14 *5 (-1166 (-628 *2))))) (-2317 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 *2)) (-14 *6 (-1166 (-628 *3))))) (-2317 (*1 *1 *2) (-12 (-5 *2 (-1166 (-1085))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-2317 (*1 *1 *2) (-12 (-5 *2 (-1166 (-427 *3 *4 *5 *6))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-2317 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-427 *4 *5 *6 *7))) (-5 *1 (-427 *4 *5 *6 *7)) (-4 *4 (-157)) (-14 *5 (-850)) (-14 *6 (-588 *2)) (-14 *7 (-1166 (-628 *4))))) (-2317 (*1 *1 *2 *3) (-12 (-5 *2 (-1166 (-1085))) (-5 *3 (-1166 (-427 *4 *5 *6 *7))) (-5 *1 (-427 *4 *5 *6 *7)) (-4 *4 (-157)) (-14 *5 (-850)) (-14 *6 (-588 (-1085))) (-14 *7 (-1166 (-628 *4))))) (-2497 (*1 *2) (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-3664 (*1 *2 *1) (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1500 (*1 *2 *1) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1926 (*1 *2 *1) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-3549 (*1 *2) (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1795 (*1 *2 *1) (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1526 (*1 *2 *1) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-3386 (*1 *2 *1) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-3379 (*1 *2 *1 *1) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-3689 (*1 *2) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1458 (*1 *2 *1 *1) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-3887 (*1 *2) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-2656 (*1 *2 *3) (-12 (-5 *3 (-1166 (-427 *4 *5 *6 *7))) (-5 *2 (-588 (-881 *4))) (-5 *1 (-427 *4 *5 *6 *7)) (-4 *4 (-514)) (-4 *4 (-157)) (-14 *5 (-850)) (-14 *6 (-588 (-1085))) (-14 *7 (-1166 (-628 *4))))) (-2656 (*1 *2) (-12 (-5 *2 (-588 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(-13 (-392 (-382 (-881 |#1|))) (-590 (-1052 |#2| (-382 (-881 |#1|)))) (-10 -8 (-15 -2190 ($ (-1166 (-382 (-881 |#1|))))) (-15 -3505 ((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed"))) (-15 -1868 ((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed"))) (-15 -2317 ($)) (-15 -2317 ($ (-1085))) (-15 -2317 ($ (-1166 (-1085)))) (-15 -2317 ($ (-1166 $))) (-15 -2317 ($ (-1085) (-1166 $))) (-15 -2317 ($ (-1166 (-1085)) (-1166 $))) (IF (|has| |#1| (-514)) (PROGN (-15 -2497 ((-1081 (-382 (-881 |#1|))))) (-15 -3664 ((-1081 (-382 (-881 |#1|))) $)) (-15 -1500 ((-382 (-881 |#1|)) $)) (-15 -1926 ((-382 (-881 |#1|)) $)) (-15 -3549 ((-1081 (-382 (-881 |#1|))))) (-15 -1795 ((-1081 (-382 (-881 |#1|))) $)) (-15 -1526 ((-382 (-881 |#1|)) $)) (-15 -3386 ((-382 (-881 |#1|)) $)) (-15 -3379 ((-382 (-881 |#1|)) $ $)) (-15 -3689 ((-382 (-881 |#1|)))) (-15 -1458 ((-382 (-881 |#1|)) $ $)) (-15 -3887 ((-382 (-881 |#1|)))) (-15 -2656 ((-588 (-881 |#1|)) (-1166 $))) (-15 -2656 ((-588 (-881 |#1|))))) |%noBranch|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 13)) (-4090 (((-588 (-794 |#1|)) $) 74)) (-1282 (((-1081 $) $ (-794 |#1|)) 46) (((-1081 |#2|) $) 116)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#2| (-514)))) (-2022 (($ $) NIL (|has| |#2| (-514)))) (-3739 (((-108) $) NIL (|has| |#2| (-514)))) (-3781 (((-708) $) 21) (((-708) $ (-588 (-794 |#1|))) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3119 (($ $) NIL (|has| |#2| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#2| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#2| "failed") $) 44) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-794 |#1|) "failed") $) NIL)) (-1484 ((|#2| $) 42) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-794 |#1|) $) NIL)) (-1950 (($ $ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2388 (($ $ (-588 (-522))) 79)) (-3156 (($ $) 68)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#2| (-838)))) (-2671 (($ $ |#2| |#3| $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) 58)) (-4073 (($ (-1081 |#2|) (-794 |#1|)) 121) (($ (-1081 $) (-794 |#1|)) 52)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) 59)) (-4049 (($ |#2| |#3|) 28) (($ $ (-794 |#1|) (-708)) 30) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ (-794 |#1|)) NIL)) (-2925 ((|#3| $) NIL) (((-708) $ (-794 |#1|)) 50) (((-588 (-708)) $ (-588 (-794 |#1|))) 57)) (-2814 (($ $ $) NIL (|has| |#2| (-784)))) (-2446 (($ $ $) NIL (|has| |#2| (-784)))) (-3861 (($ (-1 |#3| |#3|) $) NIL)) (-1391 (($ (-1 |#2| |#2|) $) NIL)) (-3145 (((-3 (-794 |#1|) "failed") $) 39)) (-3128 (($ $) NIL)) (-3138 ((|#2| $) 41)) (-2224 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-2385 (((-1068) $) NIL)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-794 |#1|)) (|:| -1400 (-708))) "failed") $) NIL)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) 40)) (-3118 ((|#2| $) 114)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#2| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) 126 (|has| |#2| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#2| (-838)))) (-2232 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-514)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-794 |#1|) |#2|) 86) (($ $ (-588 (-794 |#1|)) (-588 |#2|)) 89) (($ $ (-794 |#1|) $) 84) (($ $ (-588 (-794 |#1|)) (-588 $)) 105)) (-2769 (($ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2157 (($ $ (-794 |#1|)) 53) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2793 ((|#3| $) 67) (((-708) $ (-794 |#1|)) 37) (((-588 (-708)) $ (-588 (-794 |#1|))) 56)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-794 |#1|) (-563 (-498))) (|has| |#2| (-563 (-498)))))) (-2255 ((|#2| $) 123 (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838))))) (-2190 (((-792) $) 142) (($ (-522)) NIL) (($ |#2|) 85) (($ (-794 |#1|)) 31) (($ (-382 (-522))) NIL (-3708 (|has| |#2| (-37 (-382 (-522)))) (|has| |#2| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#2| (-514)))) (-3916 (((-588 |#2|) $) NIL)) (-3243 ((|#2| $ |#3|) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#2| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#2| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#2| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 16 T CONST)) (-3577 (($) 25 T CONST)) (-2213 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-1574 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1620 (($ $ |#2|) 64 (|has| |#2| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 110)) (** (($ $ (-850)) NIL) (($ $ (-708)) 108)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 29) (($ $ (-382 (-522))) NIL (|has| |#2| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#2| (-37 (-382 (-522))))) (($ |#2| $) 63) (($ $ |#2|) NIL)))
-(((-428 |#1| |#2| |#3|) (-13 (-878 |#2| |#3| (-794 |#1|)) (-10 -8 (-15 -2388 ($ $ (-588 (-522)))))) (-588 (-1085)) (-971) (-215 (-3480 |#1|) (-708))) (T -428))
-((-2388 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-14 *3 (-588 (-1085))) (-5 *1 (-428 *3 *4 *5)) (-4 *4 (-971)) (-4 *5 (-215 (-3480 *3) (-708))))))
-(-13 (-878 |#2| |#3| (-794 |#1|)) (-10 -8 (-15 -2388 ($ $ (-588 (-522))))))
-((-2119 (((-108) |#1| (-588 |#2|)) 66)) (-3049 (((-3 (-1166 (-588 |#2|)) "failed") (-708) |#1| (-588 |#2|)) 75)) (-2042 (((-3 (-588 |#2|) "failed") |#2| |#1| (-1166 (-588 |#2|))) 77)) (-4048 ((|#2| |#2| |#1|) 28)) (-3057 (((-708) |#2| (-588 |#2|)) 20)))
-(((-429 |#1| |#2|) (-10 -7 (-15 -4048 (|#2| |#2| |#1|)) (-15 -3057 ((-708) |#2| (-588 |#2|))) (-15 -3049 ((-3 (-1166 (-588 |#2|)) "failed") (-708) |#1| (-588 |#2|))) (-15 -2042 ((-3 (-588 |#2|) "failed") |#2| |#1| (-1166 (-588 |#2|)))) (-15 -2119 ((-108) |#1| (-588 |#2|)))) (-283) (-1142 |#1|)) (T -429))
-((-2119 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *5)) (-4 *5 (-1142 *3)) (-4 *3 (-283)) (-5 *2 (-108)) (-5 *1 (-429 *3 *5)))) (-2042 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1166 (-588 *3))) (-4 *4 (-283)) (-5 *2 (-588 *3)) (-5 *1 (-429 *4 *3)) (-4 *3 (-1142 *4)))) (-3049 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-708)) (-4 *4 (-283)) (-4 *6 (-1142 *4)) (-5 *2 (-1166 (-588 *6))) (-5 *1 (-429 *4 *6)) (-5 *5 (-588 *6)))) (-3057 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-283)) (-5 *2 (-708)) (-5 *1 (-429 *5 *3)))) (-4048 (*1 *2 *2 *3) (-12 (-4 *3 (-283)) (-5 *1 (-429 *3 *2)) (-4 *2 (-1142 *3)))))
-(-10 -7 (-15 -4048 (|#2| |#2| |#1|)) (-15 -3057 ((-708) |#2| (-588 |#2|))) (-15 -3049 ((-3 (-1166 (-588 |#2|)) "failed") (-708) |#1| (-588 |#2|))) (-15 -2042 ((-3 (-588 |#2|) "failed") |#2| |#1| (-1166 (-588 |#2|)))) (-15 -2119 ((-108) |#1| (-588 |#2|))))
-((-1916 (((-393 |#5|) |#5|) 24)))
-(((-430 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1916 ((-393 |#5|) |#5|))) (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $)) (-15 -1611 ((-3 $ "failed") (-1085))))) (-730) (-514) (-514) (-878 |#4| |#2| |#1|)) (T -430))
-((-1916 (*1 *2 *3) (-12 (-4 *4 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $)) (-15 -1611 ((-3 $ "failed") (-1085)))))) (-4 *5 (-730)) (-4 *7 (-514)) (-5 *2 (-393 *3)) (-5 *1 (-430 *4 *5 *6 *7 *3)) (-4 *6 (-514)) (-4 *3 (-878 *7 *5 *4)))))
-(-10 -7 (-15 -1916 ((-393 |#5|) |#5|)))
-((-2986 ((|#3|) 36)) (-1307 (((-1081 |#4|) (-1081 |#4|) (-1081 |#4|)) 32)))
-(((-431 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1307 ((-1081 |#4|) (-1081 |#4|) (-1081 |#4|))) (-15 -2986 (|#3|))) (-730) (-784) (-838) (-878 |#3| |#1| |#2|)) (T -431))
-((-2986 (*1 *2) (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-838)) (-5 *1 (-431 *3 *4 *2 *5)) (-4 *5 (-878 *2 *3 *4)))) (-1307 (*1 *2 *2 *2) (-12 (-5 *2 (-1081 *6)) (-4 *6 (-878 *5 *3 *4)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-838)) (-5 *1 (-431 *3 *4 *5 *6)))))
-(-10 -7 (-15 -1307 ((-1081 |#4|) (-1081 |#4|) (-1081 |#4|))) (-15 -2986 (|#3|)))
-((-1916 (((-393 (-1081 |#1|)) (-1081 |#1|)) 41)))
-(((-432 |#1|) (-10 -7 (-15 -1916 ((-393 (-1081 |#1|)) (-1081 |#1|)))) (-283)) (T -432))
-((-1916 (*1 *2 *3) (-12 (-4 *4 (-283)) (-5 *2 (-393 (-1081 *4))) (-5 *1 (-432 *4)) (-5 *3 (-1081 *4)))))
-(-10 -7 (-15 -1916 ((-393 (-1081 |#1|)) (-1081 |#1|))))
-((-3058 (((-51) |#2| (-1085) (-270 |#2|) (-1133 (-708))) 42) (((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-708))) 41) (((-51) |#2| (-1085) (-270 |#2|)) 35) (((-51) (-1 |#2| (-522)) (-270 |#2|)) 27)) (-2773 (((-51) |#2| (-1085) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522))) 80) (((-51) (-1 |#2| (-382 (-522))) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522))) 79) (((-51) |#2| (-1085) (-270 |#2|) (-1133 (-522))) 78) (((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-522))) 77) (((-51) |#2| (-1085) (-270 |#2|)) 72) (((-51) (-1 |#2| (-522)) (-270 |#2|)) 71)) (-3079 (((-51) |#2| (-1085) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522))) 66) (((-51) (-1 |#2| (-382 (-522))) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522))) 64)) (-3068 (((-51) |#2| (-1085) (-270 |#2|) (-1133 (-522))) 48) (((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-522))) 47)))
-(((-433 |#1| |#2|) (-10 -7 (-15 -3058 ((-51) (-1 |#2| (-522)) (-270 |#2|))) (-15 -3058 ((-51) |#2| (-1085) (-270 |#2|))) (-15 -3058 ((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-708)))) (-15 -3058 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-708)))) (-15 -3068 ((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-522)))) (-15 -3068 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-522)))) (-15 -3079 ((-51) (-1 |#2| (-382 (-522))) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))) (-15 -3079 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))) (-15 -2773 ((-51) (-1 |#2| (-522)) (-270 |#2|))) (-15 -2773 ((-51) |#2| (-1085) (-270 |#2|))) (-15 -2773 ((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-522)))) (-15 -2773 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-522)))) (-15 -2773 ((-51) (-1 |#2| (-382 (-522))) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))) (-15 -2773 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522))))) (-13 (-514) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -433))
-((-2773 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-382 (-522)))) (-5 *7 (-382 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *8))) (-4 *8 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *8 *3)))) (-2773 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-382 (-522)))) (-5 *4 (-270 *8)) (-5 *5 (-1133 (-382 (-522)))) (-5 *6 (-382 (-522))) (-4 *8 (-13 (-27) (-1106) (-405 *7))) (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *7 *8)))) (-2773 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *7))) (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *7 *3)))) (-2773 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-522))) (-5 *4 (-270 *7)) (-5 *5 (-1133 (-522))) (-4 *7 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *6 *7)))) (-2773 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *6 *3)))) (-2773 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-522))) (-5 *4 (-270 *6)) (-4 *6 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *5 *6)))) (-3079 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-382 (-522)))) (-5 *7 (-382 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *8))) (-4 *8 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *8 *3)))) (-3079 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-382 (-522)))) (-5 *4 (-270 *8)) (-5 *5 (-1133 (-382 (-522)))) (-5 *6 (-382 (-522))) (-4 *8 (-13 (-27) (-1106) (-405 *7))) (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *7 *8)))) (-3068 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *7))) (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *7 *3)))) (-3068 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-522))) (-5 *4 (-270 *7)) (-5 *5 (-1133 (-522))) (-4 *7 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *6 *7)))) (-3058 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-708))) (-4 *3 (-13 (-27) (-1106) (-405 *7))) (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *7 *3)))) (-3058 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-522))) (-5 *4 (-270 *7)) (-5 *5 (-1133 (-708))) (-4 *7 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *6 *7)))) (-3058 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *6 *3)))) (-3058 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-522))) (-5 *4 (-270 *6)) (-4 *6 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *5 *6)))))
-(-10 -7 (-15 -3058 ((-51) (-1 |#2| (-522)) (-270 |#2|))) (-15 -3058 ((-51) |#2| (-1085) (-270 |#2|))) (-15 -3058 ((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-708)))) (-15 -3058 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-708)))) (-15 -3068 ((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-522)))) (-15 -3068 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-522)))) (-15 -3079 ((-51) (-1 |#2| (-382 (-522))) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))) (-15 -3079 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))) (-15 -2773 ((-51) (-1 |#2| (-522)) (-270 |#2|))) (-15 -2773 ((-51) |#2| (-1085) (-270 |#2|))) (-15 -2773 ((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-522)))) (-15 -2773 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-522)))) (-15 -2773 ((-51) (-1 |#2| (-382 (-522))) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))) (-15 -2773 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))))
-((-4048 ((|#2| |#2| |#1|) 15)) (-2421 (((-588 |#2|) |#2| (-588 |#2|) |#1| (-850)) 69)) (-3913 (((-2 (|:| |plist| (-588 |#2|)) (|:| |modulo| |#1|)) |#2| (-588 |#2|) |#1| (-850)) 60)))
-(((-434 |#1| |#2|) (-10 -7 (-15 -3913 ((-2 (|:| |plist| (-588 |#2|)) (|:| |modulo| |#1|)) |#2| (-588 |#2|) |#1| (-850))) (-15 -2421 ((-588 |#2|) |#2| (-588 |#2|) |#1| (-850))) (-15 -4048 (|#2| |#2| |#1|))) (-283) (-1142 |#1|)) (T -434))
-((-4048 (*1 *2 *2 *3) (-12 (-4 *3 (-283)) (-5 *1 (-434 *3 *2)) (-4 *2 (-1142 *3)))) (-2421 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-588 *3)) (-5 *5 (-850)) (-4 *3 (-1142 *4)) (-4 *4 (-283)) (-5 *1 (-434 *4 *3)))) (-3913 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-850)) (-4 *5 (-283)) (-4 *3 (-1142 *5)) (-5 *2 (-2 (|:| |plist| (-588 *3)) (|:| |modulo| *5))) (-5 *1 (-434 *5 *3)) (-5 *4 (-588 *3)))))
-(-10 -7 (-15 -3913 ((-2 (|:| |plist| (-588 |#2|)) (|:| |modulo| |#1|)) |#2| (-588 |#2|) |#1| (-850))) (-15 -2421 ((-588 |#2|) |#2| (-588 |#2|) |#1| (-850))) (-15 -4048 (|#2| |#2| |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 28)) (-2468 (($ |#3|) 25)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3156 (($ $) 32)) (-4105 (($ |#2| |#4| $) 33)) (-4049 (($ |#2| (-651 |#3| |#4| |#5|)) 24)) (-3128 (((-651 |#3| |#4| |#5|) $) 15)) (-2322 ((|#3| $) 19)) (-2082 ((|#4| $) 17)) (-3138 ((|#2| $) 29)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-1306 (($ |#2| |#3| |#4|) 26)) (-3566 (($) 36 T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 34)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-435 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-655 |#6|) (-655 |#2|) (-10 -8 (-15 -3138 (|#2| $)) (-15 -3128 ((-651 |#3| |#4| |#5|) $)) (-15 -2082 (|#4| $)) (-15 -2322 (|#3| $)) (-15 -3156 ($ $)) (-15 -4049 ($ |#2| (-651 |#3| |#4| |#5|))) (-15 -2468 ($ |#3|)) (-15 -1306 ($ |#2| |#3| |#4|)) (-15 -4105 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-588 (-1085)) (-157) (-784) (-215 (-3480 |#1|) (-708)) (-1 (-108) (-2 (|:| -2717 |#3|) (|:| -1400 |#4|)) (-2 (|:| -2717 |#3|) (|:| -1400 |#4|))) (-878 |#2| |#4| (-794 |#1|))) (T -435))
-((* (*1 *1 *2 *1) (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157)) (-4 *6 (-215 (-3480 *3) (-708))) (-14 *7 (-1 (-108) (-2 (|:| -2717 *5) (|:| -1400 *6)) (-2 (|:| -2717 *5) (|:| -1400 *6)))) (-5 *1 (-435 *3 *4 *5 *6 *7 *2)) (-4 *5 (-784)) (-4 *2 (-878 *4 *6 (-794 *3))))) (-3138 (*1 *2 *1) (-12 (-14 *3 (-588 (-1085))) (-4 *5 (-215 (-3480 *3) (-708))) (-14 *6 (-1 (-108) (-2 (|:| -2717 *4) (|:| -1400 *5)) (-2 (|:| -2717 *4) (|:| -1400 *5)))) (-4 *2 (-157)) (-5 *1 (-435 *3 *2 *4 *5 *6 *7)) (-4 *4 (-784)) (-4 *7 (-878 *2 *5 (-794 *3))))) (-3128 (*1 *2 *1) (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157)) (-4 *6 (-215 (-3480 *3) (-708))) (-14 *7 (-1 (-108) (-2 (|:| -2717 *5) (|:| -1400 *6)) (-2 (|:| -2717 *5) (|:| -1400 *6)))) (-5 *2 (-651 *5 *6 *7)) (-5 *1 (-435 *3 *4 *5 *6 *7 *8)) (-4 *5 (-784)) (-4 *8 (-878 *4 *6 (-794 *3))))) (-2082 (*1 *2 *1) (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157)) (-14 *6 (-1 (-108) (-2 (|:| -2717 *5) (|:| -1400 *2)) (-2 (|:| -2717 *5) (|:| -1400 *2)))) (-4 *2 (-215 (-3480 *3) (-708))) (-5 *1 (-435 *3 *4 *5 *2 *6 *7)) (-4 *5 (-784)) (-4 *7 (-878 *4 *2 (-794 *3))))) (-2322 (*1 *2 *1) (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157)) (-4 *5 (-215 (-3480 *3) (-708))) (-14 *6 (-1 (-108) (-2 (|:| -2717 *2) (|:| -1400 *5)) (-2 (|:| -2717 *2) (|:| -1400 *5)))) (-4 *2 (-784)) (-5 *1 (-435 *3 *4 *2 *5 *6 *7)) (-4 *7 (-878 *4 *5 (-794 *3))))) (-3156 (*1 *1 *1) (-12 (-14 *2 (-588 (-1085))) (-4 *3 (-157)) (-4 *5 (-215 (-3480 *2) (-708))) (-14 *6 (-1 (-108) (-2 (|:| -2717 *4) (|:| -1400 *5)) (-2 (|:| -2717 *4) (|:| -1400 *5)))) (-5 *1 (-435 *2 *3 *4 *5 *6 *7)) (-4 *4 (-784)) (-4 *7 (-878 *3 *5 (-794 *2))))) (-4049 (*1 *1 *2 *3) (-12 (-5 *3 (-651 *5 *6 *7)) (-4 *5 (-784)) (-4 *6 (-215 (-3480 *4) (-708))) (-14 *7 (-1 (-108) (-2 (|:| -2717 *5) (|:| -1400 *6)) (-2 (|:| -2717 *5) (|:| -1400 *6)))) (-14 *4 (-588 (-1085))) (-4 *2 (-157)) (-5 *1 (-435 *4 *2 *5 *6 *7 *8)) (-4 *8 (-878 *2 *6 (-794 *4))))) (-2468 (*1 *1 *2) (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157)) (-4 *5 (-215 (-3480 *3) (-708))) (-14 *6 (-1 (-108) (-2 (|:| -2717 *2) (|:| -1400 *5)) (-2 (|:| -2717 *2) (|:| -1400 *5)))) (-5 *1 (-435 *3 *4 *2 *5 *6 *7)) (-4 *2 (-784)) (-4 *7 (-878 *4 *5 (-794 *3))))) (-1306 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-588 (-1085))) (-4 *2 (-157)) (-4 *4 (-215 (-3480 *5) (-708))) (-14 *6 (-1 (-108) (-2 (|:| -2717 *3) (|:| -1400 *4)) (-2 (|:| -2717 *3) (|:| -1400 *4)))) (-5 *1 (-435 *5 *2 *3 *4 *6 *7)) (-4 *3 (-784)) (-4 *7 (-878 *2 *4 (-794 *5))))) (-4105 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-588 (-1085))) (-4 *2 (-157)) (-4 *3 (-215 (-3480 *4) (-708))) (-14 *6 (-1 (-108) (-2 (|:| -2717 *5) (|:| -1400 *3)) (-2 (|:| -2717 *5) (|:| -1400 *3)))) (-5 *1 (-435 *4 *2 *5 *3 *6 *7)) (-4 *5 (-784)) (-4 *7 (-878 *2 *3 (-794 *4))))))
-(-13 (-655 |#6|) (-655 |#2|) (-10 -8 (-15 -3138 (|#2| $)) (-15 -3128 ((-651 |#3| |#4| |#5|) $)) (-15 -2082 (|#4| $)) (-15 -2322 (|#3| $)) (-15 -3156 ($ $)) (-15 -4049 ($ |#2| (-651 |#3| |#4| |#5|))) (-15 -2468 ($ |#3|)) (-15 -1306 ($ |#2| |#3| |#4|)) (-15 -4105 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
-((-3779 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 35)))
-(((-436 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3779 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-730) (-784) (-514) (-878 |#3| |#1| |#2|) (-13 (-962 (-382 (-522))) (-338) (-10 -8 (-15 -2190 ($ |#4|)) (-15 -2805 (|#4| $)) (-15 -2816 (|#4| $))))) (T -436))
-((-3779 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-784)) (-4 *5 (-730)) (-4 *6 (-514)) (-4 *7 (-878 *6 *5 *3)) (-5 *1 (-436 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-962 (-382 (-522))) (-338) (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $))))))))
-(-10 -7 (-15 -3779 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
-((-1416 (((-108) $ $) NIL)) (-4090 (((-588 |#3|) $) 41)) (-2690 (((-108) $) NIL)) (-4140 (((-108) $) NIL (|has| |#1| (-514)))) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |#3|) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-1628 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3639 (((-108) $) NIL (|has| |#1| (-514)))) (-3982 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3996 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3538 (((-108) $) NIL (|has| |#1| (-514)))) (-3050 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-1787 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-1297 (((-3 $ "failed") (-588 |#4|)) 47)) (-1484 (($ (-588 |#4|)) NIL)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-1423 (($ |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-3421 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-3864 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4238)))) (-3837 (((-588 |#4|) $) 18 (|has| $ (-6 -4238)))) (-1521 ((|#3| $) 45)) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#4|) $) 14 (|has| $ (-6 -4238)))) (-2246 (((-108) |#4| $) 26 (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-3838 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#4| |#4|) $) 21)) (-2458 (((-588 |#3|) $) NIL)) (-1606 (((-108) |#3| $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-2039 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-4151 (((-1032) $) NIL)) (-1414 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-3053 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#4|) (-588 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 39)) (-3775 (($) 17)) (-4168 (((-708) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (((-708) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) 16)) (-1431 (((-498) $) NIL (|has| |#4| (-563 (-498)))) (($ (-588 |#4|)) 49)) (-2201 (($ (-588 |#4|)) 13)) (-2020 (($ $ |#3|) NIL)) (-3606 (($ $ |#3|) NIL)) (-2463 (($ $ |#3|) NIL)) (-2190 (((-792) $) 38) (((-588 |#4|) $) 48)) (-3648 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 30)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-437 |#1| |#2| |#3| |#4|) (-13 (-903 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1431 ($ (-588 |#4|))) (-6 -4238) (-6 -4239))) (-971) (-730) (-784) (-985 |#1| |#2| |#3|)) (T -437))
-((-1431 (*1 *1 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-437 *3 *4 *5 *6)))))
-(-13 (-903 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1431 ($ (-588 |#4|))) (-6 -4238) (-6 -4239)))
-((-3566 (($) 11)) (-3577 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
-(((-438 |#1| |#2| |#3|) (-10 -8 (-15 -3577 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3566 (|#1|))) (-439 |#2| |#3|) (-157) (-23)) (T -438))
-NIL
-(-10 -8 (-15 -3577 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3566 (|#1|)))
-((-1416 (((-108) $ $) 7)) (-1297 (((-3 |#1| "failed") $) 26)) (-1484 ((|#1| $) 25)) (-1372 (($ $ $) 23)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2793 ((|#2| $) 19)) (-2190 (((-792) $) 11) (($ |#1|) 27)) (-3566 (($) 18 T CONST)) (-3577 (($) 24 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 15) (($ $ $) 13)) (-1602 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2541 (((-3 $ "failed")) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3690 (((-1166 (-628 (-382 (-881 |#1|)))) (-1166 $)) NIL) (((-1166 (-628 (-382 (-881 |#1|))))) NIL)) (-2726 (((-1166 $)) NIL)) (-3367 (($) NIL T CONST)) (-2722 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) NIL)) (-3050 (((-3 $ "failed")) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-3531 (((-628 (-382 (-881 |#1|))) (-1166 $)) NIL) (((-628 (-382 (-881 |#1|)))) NIL)) (-2046 (((-382 (-881 |#1|)) $) NIL)) (-2853 (((-628 (-382 (-881 |#1|))) $ (-1166 $)) NIL) (((-628 (-382 (-881 |#1|))) $) NIL)) (-1279 (((-3 $ "failed") $) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-1662 (((-1081 (-881 (-382 (-881 |#1|))))) NIL (|has| (-382 (-881 |#1|)) (-338))) (((-1081 (-382 (-881 |#1|)))) 79 (|has| |#1| (-514)))) (-2698 (($ $ (-850)) NIL)) (-3676 (((-382 (-881 |#1|)) $) NIL)) (-4080 (((-1081 (-382 (-881 |#1|))) $) 77 (|has| (-382 (-881 |#1|)) (-514)))) (-4035 (((-382 (-881 |#1|)) (-1166 $)) NIL) (((-382 (-881 |#1|))) NIL)) (-3767 (((-1081 (-382 (-881 |#1|))) $) NIL)) (-1340 (((-108)) NIL)) (-3225 (($ (-1166 (-382 (-881 |#1|))) (-1166 $)) 97) (($ (-1166 (-382 (-881 |#1|)))) NIL)) (-3920 (((-3 $ "failed") $) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-1692 (((-850)) NIL)) (-2134 (((-108)) NIL)) (-2870 (($ $ (-850)) NIL)) (-2287 (((-108)) NIL)) (-3702 (((-108)) NIL)) (-3868 (((-108)) NIL)) (-2439 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) NIL)) (-3351 (((-3 $ "failed")) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-1521 (((-628 (-382 (-881 |#1|))) (-1166 $)) NIL) (((-628 (-382 (-881 |#1|)))) NIL)) (-3411 (((-382 (-881 |#1|)) $) NIL)) (-2734 (((-628 (-382 (-881 |#1|))) $ (-1166 $)) NIL) (((-628 (-382 (-881 |#1|))) $) NIL)) (-3070 (((-3 $ "failed") $) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-3943 (((-1081 (-881 (-382 (-881 |#1|))))) NIL (|has| (-382 (-881 |#1|)) (-338))) (((-1081 (-382 (-881 |#1|)))) 78 (|has| |#1| (-514)))) (-1946 (($ $ (-850)) NIL)) (-1819 (((-382 (-881 |#1|)) $) NIL)) (-1216 (((-1081 (-382 (-881 |#1|))) $) 72 (|has| (-382 (-881 |#1|)) (-514)))) (-3020 (((-382 (-881 |#1|)) (-1166 $)) NIL) (((-382 (-881 |#1|))) NIL)) (-2724 (((-1081 (-382 (-881 |#1|))) $) NIL)) (-4197 (((-108)) NIL)) (-2311 (((-1068) $) NIL)) (-3823 (((-108)) NIL)) (-1388 (((-108)) NIL)) (-3509 (((-108)) NIL)) (-4174 (((-1032) $) NIL)) (-2633 (((-382 (-881 |#1|)) $ $) 66 (|has| |#1| (-514)))) (-1983 (((-382 (-881 |#1|)) $) 65 (|has| |#1| (-514)))) (-3632 (((-382 (-881 |#1|)) $) 89 (|has| |#1| (-514)))) (-3742 (((-1081 (-382 (-881 |#1|))) $) 83 (|has| |#1| (-514)))) (-1935 (((-382 (-881 |#1|))) 67 (|has| |#1| (-514)))) (-3553 (((-382 (-881 |#1|)) $ $) 54 (|has| |#1| (-514)))) (-1784 (((-382 (-881 |#1|)) $) 53 (|has| |#1| (-514)))) (-1362 (((-382 (-881 |#1|)) $) 88 (|has| |#1| (-514)))) (-1552 (((-1081 (-382 (-881 |#1|))) $) 82 (|has| |#1| (-514)))) (-3627 (((-382 (-881 |#1|))) 64 (|has| |#1| (-514)))) (-2667 (($) 95) (($ (-1085)) 101) (($ (-1166 (-1085))) 100) (($ (-1166 $)) 90) (($ (-1085) (-1166 $)) 99) (($ (-1166 (-1085)) (-1166 $)) 98)) (-1427 (((-108)) NIL)) (-2683 (((-382 (-881 |#1|)) $ (-522)) NIL)) (-3510 (((-1166 (-382 (-881 |#1|))) $ (-1166 $)) 92) (((-628 (-382 (-881 |#1|))) (-1166 $) (-1166 $)) NIL) (((-1166 (-382 (-881 |#1|))) $) 37) (((-628 (-382 (-881 |#1|))) (-1166 $)) NIL)) (-3873 (((-1166 (-382 (-881 |#1|))) $) NIL) (($ (-1166 (-382 (-881 |#1|)))) 34)) (-1777 (((-588 (-881 (-382 (-881 |#1|)))) (-1166 $)) NIL) (((-588 (-881 (-382 (-881 |#1|))))) NIL) (((-588 (-881 |#1|)) (-1166 $)) 93 (|has| |#1| (-514))) (((-588 (-881 |#1|))) 94 (|has| |#1| (-514)))) (-1596 (($ $ $) NIL)) (-3990 (((-108)) NIL)) (-2217 (((-792) $) NIL) (($ (-1166 (-382 (-881 |#1|)))) NIL)) (-2905 (((-1166 $)) 56)) (-1548 (((-588 (-1166 (-382 (-881 |#1|))))) NIL (|has| (-382 (-881 |#1|)) (-514)))) (-2185 (($ $ $ $) NIL)) (-3597 (((-108)) NIL)) (-1664 (($ (-628 (-382 (-881 |#1|))) $) NIL)) (-1369 (($ $ $) NIL)) (-3578 (((-108)) NIL)) (-2912 (((-108)) NIL)) (-1855 (((-108)) NIL)) (-3697 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) 91)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 52) (($ $ (-382 (-881 |#1|))) NIL) (($ (-382 (-881 |#1|)) $) NIL) (($ (-1052 |#2| (-382 (-881 |#1|))) $) NIL)))
+(((-427 |#1| |#2| |#3| |#4|) (-13 (-392 (-382 (-881 |#1|))) (-590 (-1052 |#2| (-382 (-881 |#1|)))) (-10 -8 (-15 -2217 ($ (-1166 (-382 (-881 |#1|))))) (-15 -2439 ((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed"))) (-15 -2722 ((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed"))) (-15 -2667 ($)) (-15 -2667 ($ (-1085))) (-15 -2667 ($ (-1166 (-1085)))) (-15 -2667 ($ (-1166 $))) (-15 -2667 ($ (-1085) (-1166 $))) (-15 -2667 ($ (-1166 (-1085)) (-1166 $))) (IF (|has| |#1| (-514)) (PROGN (-15 -3943 ((-1081 (-382 (-881 |#1|))))) (-15 -1552 ((-1081 (-382 (-881 |#1|))) $)) (-15 -1784 ((-382 (-881 |#1|)) $)) (-15 -1362 ((-382 (-881 |#1|)) $)) (-15 -1662 ((-1081 (-382 (-881 |#1|))))) (-15 -3742 ((-1081 (-382 (-881 |#1|))) $)) (-15 -1983 ((-382 (-881 |#1|)) $)) (-15 -3632 ((-382 (-881 |#1|)) $)) (-15 -3553 ((-382 (-881 |#1|)) $ $)) (-15 -3627 ((-382 (-881 |#1|)))) (-15 -2633 ((-382 (-881 |#1|)) $ $)) (-15 -1935 ((-382 (-881 |#1|)))) (-15 -1777 ((-588 (-881 |#1|)) (-1166 $))) (-15 -1777 ((-588 (-881 |#1|))))) |%noBranch|))) (-157) (-850) (-588 (-1085)) (-1166 (-628 |#1|))) (T -427))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1166 (-382 (-881 *3)))) (-4 *3 (-157)) (-14 *6 (-1166 (-628 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))))) (-2439 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-427 *3 *4 *5 *6)) (|:| -2905 (-588 (-427 *3 *4 *5 *6))))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-2722 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-427 *3 *4 *5 *6)) (|:| -2905 (-588 (-427 *3 *4 *5 *6))))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-2667 (*1 *1) (-12 (-5 *1 (-427 *2 *3 *4 *5)) (-4 *2 (-157)) (-14 *3 (-850)) (-14 *4 (-588 (-1085))) (-14 *5 (-1166 (-628 *2))))) (-2667 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 *2)) (-14 *6 (-1166 (-628 *3))))) (-2667 (*1 *1 *2) (-12 (-5 *2 (-1166 (-1085))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-2667 (*1 *1 *2) (-12 (-5 *2 (-1166 (-427 *3 *4 *5 *6))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-2667 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-427 *4 *5 *6 *7))) (-5 *1 (-427 *4 *5 *6 *7)) (-4 *4 (-157)) (-14 *5 (-850)) (-14 *6 (-588 *2)) (-14 *7 (-1166 (-628 *4))))) (-2667 (*1 *1 *2 *3) (-12 (-5 *2 (-1166 (-1085))) (-5 *3 (-1166 (-427 *4 *5 *6 *7))) (-5 *1 (-427 *4 *5 *6 *7)) (-4 *4 (-157)) (-14 *5 (-850)) (-14 *6 (-588 (-1085))) (-14 *7 (-1166 (-628 *4))))) (-3943 (*1 *2) (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1552 (*1 *2 *1) (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1784 (*1 *2 *1) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1362 (*1 *2 *1) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1662 (*1 *2) (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-3742 (*1 *2 *1) (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1983 (*1 *2 *1) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-3632 (*1 *2 *1) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-3553 (*1 *2 *1 *1) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-3627 (*1 *2) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-2633 (*1 *2 *1 *1) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1935 (*1 *2) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))) (-1777 (*1 *2 *3) (-12 (-5 *3 (-1166 (-427 *4 *5 *6 *7))) (-5 *2 (-588 (-881 *4))) (-5 *1 (-427 *4 *5 *6 *7)) (-4 *4 (-514)) (-4 *4 (-157)) (-14 *5 (-850)) (-14 *6 (-588 (-1085))) (-14 *7 (-1166 (-628 *4))))) (-1777 (*1 *2) (-12 (-5 *2 (-588 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
+(-13 (-392 (-382 (-881 |#1|))) (-590 (-1052 |#2| (-382 (-881 |#1|)))) (-10 -8 (-15 -2217 ($ (-1166 (-382 (-881 |#1|))))) (-15 -2439 ((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed"))) (-15 -2722 ((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed"))) (-15 -2667 ($)) (-15 -2667 ($ (-1085))) (-15 -2667 ($ (-1166 (-1085)))) (-15 -2667 ($ (-1166 $))) (-15 -2667 ($ (-1085) (-1166 $))) (-15 -2667 ($ (-1166 (-1085)) (-1166 $))) (IF (|has| |#1| (-514)) (PROGN (-15 -3943 ((-1081 (-382 (-881 |#1|))))) (-15 -1552 ((-1081 (-382 (-881 |#1|))) $)) (-15 -1784 ((-382 (-881 |#1|)) $)) (-15 -1362 ((-382 (-881 |#1|)) $)) (-15 -1662 ((-1081 (-382 (-881 |#1|))))) (-15 -3742 ((-1081 (-382 (-881 |#1|))) $)) (-15 -1983 ((-382 (-881 |#1|)) $)) (-15 -3632 ((-382 (-881 |#1|)) $)) (-15 -3553 ((-382 (-881 |#1|)) $ $)) (-15 -3627 ((-382 (-881 |#1|)))) (-15 -2633 ((-382 (-881 |#1|)) $ $)) (-15 -1935 ((-382 (-881 |#1|)))) (-15 -1777 ((-588 (-881 |#1|)) (-1166 $))) (-15 -1777 ((-588 (-881 |#1|))))) |%noBranch|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 13)) (-3533 (((-588 (-794 |#1|)) $) 74)) (-1264 (((-1081 $) $ (-794 |#1|)) 46) (((-1081 |#2|) $) 116)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#2| (-514)))) (-2298 (($ $) NIL (|has| |#2| (-514)))) (-3007 (((-108) $) NIL (|has| |#2| (-514)))) (-3358 (((-708) $) 21) (((-708) $ (-588 (-794 |#1|))) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2961 (($ $) NIL (|has| |#2| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#2| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#2| "failed") $) 44) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-794 |#1|) "failed") $) NIL)) (-1478 ((|#2| $) 42) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-794 |#1|) $) NIL)) (-2908 (($ $ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2354 (($ $ (-588 (-522))) 79)) (-3241 (($ $) 68)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#2| (-838)))) (-3792 (($ $ |#2| |#3| $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) 58)) (-3520 (($ (-1081 |#2|) (-794 |#1|)) 121) (($ (-1081 $) (-794 |#1|)) 52)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) 59)) (-3500 (($ |#2| |#3|) 28) (($ $ (-794 |#1|) (-708)) 30) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ (-794 |#1|)) NIL)) (-3564 ((|#3| $) NIL) (((-708) $ (-794 |#1|)) 50) (((-588 (-708)) $ (-588 (-794 |#1|))) 57)) (-1308 (($ $ $) NIL (|has| |#2| (-784)))) (-2524 (($ $ $) NIL (|has| |#2| (-784)))) (-1723 (($ (-1 |#3| |#3|) $) NIL)) (-3810 (($ (-1 |#2| |#2|) $) NIL)) (-3155 (((-3 (-794 |#1|) "failed") $) 39)) (-3216 (($ $) NIL)) (-3224 ((|#2| $) 41)) (-2267 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-2311 (((-1068) $) NIL)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| (-794 |#1|)) (|:| -3858 (-708))) "failed") $) NIL)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) 40)) (-3207 ((|#2| $) 114)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#2| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) 126 (|has| |#2| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#2| (-838)))) (-2276 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-514)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-794 |#1|) |#2|) 86) (($ $ (-588 (-794 |#1|)) (-588 |#2|)) 89) (($ $ (-794 |#1|) $) 84) (($ $ (-588 (-794 |#1|)) (-588 $)) 105)) (-1615 (($ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2731 (($ $ (-794 |#1|)) 53) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2487 ((|#3| $) 67) (((-708) $ (-794 |#1|)) 37) (((-588 (-708)) $ (-588 (-794 |#1|))) 56)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-794 |#1|) (-563 (-498))) (|has| |#2| (-563 (-498)))))) (-2988 ((|#2| $) 123 (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838))))) (-2217 (((-792) $) 142) (($ (-522)) NIL) (($ |#2|) 85) (($ (-794 |#1|)) 31) (($ (-382 (-522))) NIL (-3844 (|has| |#2| (-37 (-382 (-522)))) (|has| |#2| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#2| (-514)))) (-2180 (((-588 |#2|) $) NIL)) (-1643 ((|#2| $ |#3|) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#2| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#2| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#2| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 16 T CONST)) (-3709 (($) 25 T CONST)) (-2252 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-1623 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1682 (($ $ |#2|) 64 (|has| |#2| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 110)) (** (($ $ (-850)) NIL) (($ $ (-708)) 108)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 29) (($ $ (-382 (-522))) NIL (|has| |#2| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#2| (-37 (-382 (-522))))) (($ |#2| $) 63) (($ $ |#2|) NIL)))
+(((-428 |#1| |#2| |#3|) (-13 (-878 |#2| |#3| (-794 |#1|)) (-10 -8 (-15 -2354 ($ $ (-588 (-522)))))) (-588 (-1085)) (-971) (-215 (-3591 |#1|) (-708))) (T -428))
+((-2354 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-14 *3 (-588 (-1085))) (-5 *1 (-428 *3 *4 *5)) (-4 *4 (-971)) (-4 *5 (-215 (-3591 *3) (-708))))))
+(-13 (-878 |#2| |#3| (-794 |#1|)) (-10 -8 (-15 -2354 ($ $ (-588 (-522))))))
+((-1462 (((-108) |#1| (-588 |#2|)) 66)) (-3449 (((-3 (-1166 (-588 |#2|)) "failed") (-708) |#1| (-588 |#2|)) 75)) (-2551 (((-3 (-588 |#2|) "failed") |#2| |#1| (-1166 (-588 |#2|))) 77)) (-3004 ((|#2| |#2| |#1|) 28)) (-3516 (((-708) |#2| (-588 |#2|)) 20)))
+(((-429 |#1| |#2|) (-10 -7 (-15 -3004 (|#2| |#2| |#1|)) (-15 -3516 ((-708) |#2| (-588 |#2|))) (-15 -3449 ((-3 (-1166 (-588 |#2|)) "failed") (-708) |#1| (-588 |#2|))) (-15 -2551 ((-3 (-588 |#2|) "failed") |#2| |#1| (-1166 (-588 |#2|)))) (-15 -1462 ((-108) |#1| (-588 |#2|)))) (-283) (-1142 |#1|)) (T -429))
+((-1462 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *5)) (-4 *5 (-1142 *3)) (-4 *3 (-283)) (-5 *2 (-108)) (-5 *1 (-429 *3 *5)))) (-2551 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1166 (-588 *3))) (-4 *4 (-283)) (-5 *2 (-588 *3)) (-5 *1 (-429 *4 *3)) (-4 *3 (-1142 *4)))) (-3449 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-708)) (-4 *4 (-283)) (-4 *6 (-1142 *4)) (-5 *2 (-1166 (-588 *6))) (-5 *1 (-429 *4 *6)) (-5 *5 (-588 *6)))) (-3516 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-283)) (-5 *2 (-708)) (-5 *1 (-429 *5 *3)))) (-3004 (*1 *2 *2 *3) (-12 (-4 *3 (-283)) (-5 *1 (-429 *3 *2)) (-4 *2 (-1142 *3)))))
+(-10 -7 (-15 -3004 (|#2| |#2| |#1|)) (-15 -3516 ((-708) |#2| (-588 |#2|))) (-15 -3449 ((-3 (-1166 (-588 |#2|)) "failed") (-708) |#1| (-588 |#2|))) (-15 -2551 ((-3 (-588 |#2|) "failed") |#2| |#1| (-1166 (-588 |#2|)))) (-15 -1462 ((-108) |#1| (-588 |#2|))))
+((-2006 (((-393 |#5|) |#5|) 24)))
+(((-430 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2006 ((-393 |#5|) |#5|))) (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $)) (-15 -1660 ((-3 $ "failed") (-1085))))) (-730) (-514) (-514) (-878 |#4| |#2| |#1|)) (T -430))
+((-2006 (*1 *2 *3) (-12 (-4 *4 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $)) (-15 -1660 ((-3 $ "failed") (-1085)))))) (-4 *5 (-730)) (-4 *7 (-514)) (-5 *2 (-393 *3)) (-5 *1 (-430 *4 *5 *6 *7 *3)) (-4 *6 (-514)) (-4 *3 (-878 *7 *5 *4)))))
+(-10 -7 (-15 -2006 ((-393 |#5|) |#5|)))
+((-4028 ((|#3|) 36)) (-1789 (((-1081 |#4|) (-1081 |#4|) (-1081 |#4|)) 32)))
+(((-431 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1789 ((-1081 |#4|) (-1081 |#4|) (-1081 |#4|))) (-15 -4028 (|#3|))) (-730) (-784) (-838) (-878 |#3| |#1| |#2|)) (T -431))
+((-4028 (*1 *2) (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-838)) (-5 *1 (-431 *3 *4 *2 *5)) (-4 *5 (-878 *2 *3 *4)))) (-1789 (*1 *2 *2 *2) (-12 (-5 *2 (-1081 *6)) (-4 *6 (-878 *5 *3 *4)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-838)) (-5 *1 (-431 *3 *4 *5 *6)))))
+(-10 -7 (-15 -1789 ((-1081 |#4|) (-1081 |#4|) (-1081 |#4|))) (-15 -4028 (|#3|)))
+((-2006 (((-393 (-1081 |#1|)) (-1081 |#1|)) 41)))
+(((-432 |#1|) (-10 -7 (-15 -2006 ((-393 (-1081 |#1|)) (-1081 |#1|)))) (-283)) (T -432))
+((-2006 (*1 *2 *3) (-12 (-4 *4 (-283)) (-5 *2 (-393 (-1081 *4))) (-5 *1 (-432 *4)) (-5 *3 (-1081 *4)))))
+(-10 -7 (-15 -2006 ((-393 (-1081 |#1|)) (-1081 |#1|))))
+((-3162 (((-51) |#2| (-1085) (-270 |#2|) (-1133 (-708))) 42) (((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-708))) 41) (((-51) |#2| (-1085) (-270 |#2|)) 35) (((-51) (-1 |#2| (-522)) (-270 |#2|)) 27)) (-1270 (((-51) |#2| (-1085) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522))) 80) (((-51) (-1 |#2| (-382 (-522))) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522))) 79) (((-51) |#2| (-1085) (-270 |#2|) (-1133 (-522))) 78) (((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-522))) 77) (((-51) |#2| (-1085) (-270 |#2|)) 72) (((-51) (-1 |#2| (-522)) (-270 |#2|)) 71)) (-3178 (((-51) |#2| (-1085) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522))) 66) (((-51) (-1 |#2| (-382 (-522))) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522))) 64)) (-3170 (((-51) |#2| (-1085) (-270 |#2|) (-1133 (-522))) 48) (((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-522))) 47)))
+(((-433 |#1| |#2|) (-10 -7 (-15 -3162 ((-51) (-1 |#2| (-522)) (-270 |#2|))) (-15 -3162 ((-51) |#2| (-1085) (-270 |#2|))) (-15 -3162 ((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-708)))) (-15 -3162 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-708)))) (-15 -3170 ((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-522)))) (-15 -3170 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-522)))) (-15 -3178 ((-51) (-1 |#2| (-382 (-522))) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))) (-15 -3178 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))) (-15 -1270 ((-51) (-1 |#2| (-522)) (-270 |#2|))) (-15 -1270 ((-51) |#2| (-1085) (-270 |#2|))) (-15 -1270 ((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-522)))) (-15 -1270 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-522)))) (-15 -1270 ((-51) (-1 |#2| (-382 (-522))) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))) (-15 -1270 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522))))) (-13 (-514) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -433))
+((-1270 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-382 (-522)))) (-5 *7 (-382 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *8))) (-4 *8 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *8 *3)))) (-1270 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-382 (-522)))) (-5 *4 (-270 *8)) (-5 *5 (-1133 (-382 (-522)))) (-5 *6 (-382 (-522))) (-4 *8 (-13 (-27) (-1106) (-405 *7))) (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *7 *8)))) (-1270 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *7))) (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *7 *3)))) (-1270 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-522))) (-5 *4 (-270 *7)) (-5 *5 (-1133 (-522))) (-4 *7 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *6 *7)))) (-1270 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *6 *3)))) (-1270 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-522))) (-5 *4 (-270 *6)) (-4 *6 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *5 *6)))) (-3178 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-382 (-522)))) (-5 *7 (-382 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *8))) (-4 *8 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *8 *3)))) (-3178 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-382 (-522)))) (-5 *4 (-270 *8)) (-5 *5 (-1133 (-382 (-522)))) (-5 *6 (-382 (-522))) (-4 *8 (-13 (-27) (-1106) (-405 *7))) (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *7 *8)))) (-3170 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *7))) (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *7 *3)))) (-3170 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-522))) (-5 *4 (-270 *7)) (-5 *5 (-1133 (-522))) (-4 *7 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *6 *7)))) (-3162 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-708))) (-4 *3 (-13 (-27) (-1106) (-405 *7))) (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *7 *3)))) (-3162 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-522))) (-5 *4 (-270 *7)) (-5 *5 (-1133 (-708))) (-4 *7 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *6 *7)))) (-3162 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *6 *3)))) (-3162 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-522))) (-5 *4 (-270 *6)) (-4 *6 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-51)) (-5 *1 (-433 *5 *6)))))
+(-10 -7 (-15 -3162 ((-51) (-1 |#2| (-522)) (-270 |#2|))) (-15 -3162 ((-51) |#2| (-1085) (-270 |#2|))) (-15 -3162 ((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-708)))) (-15 -3162 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-708)))) (-15 -3170 ((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-522)))) (-15 -3170 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-522)))) (-15 -3178 ((-51) (-1 |#2| (-382 (-522))) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))) (-15 -3178 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))) (-15 -1270 ((-51) (-1 |#2| (-522)) (-270 |#2|))) (-15 -1270 ((-51) |#2| (-1085) (-270 |#2|))) (-15 -1270 ((-51) (-1 |#2| (-522)) (-270 |#2|) (-1133 (-522)))) (-15 -1270 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-522)))) (-15 -1270 ((-51) (-1 |#2| (-382 (-522))) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))) (-15 -1270 ((-51) |#2| (-1085) (-270 |#2|) (-1133 (-382 (-522))) (-382 (-522)))))
+((-3004 ((|#2| |#2| |#1|) 15)) (-3254 (((-588 |#2|) |#2| (-588 |#2|) |#1| (-850)) 69)) (-2148 (((-2 (|:| |plist| (-588 |#2|)) (|:| |modulo| |#1|)) |#2| (-588 |#2|) |#1| (-850)) 60)))
+(((-434 |#1| |#2|) (-10 -7 (-15 -2148 ((-2 (|:| |plist| (-588 |#2|)) (|:| |modulo| |#1|)) |#2| (-588 |#2|) |#1| (-850))) (-15 -3254 ((-588 |#2|) |#2| (-588 |#2|) |#1| (-850))) (-15 -3004 (|#2| |#2| |#1|))) (-283) (-1142 |#1|)) (T -434))
+((-3004 (*1 *2 *2 *3) (-12 (-4 *3 (-283)) (-5 *1 (-434 *3 *2)) (-4 *2 (-1142 *3)))) (-3254 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-588 *3)) (-5 *5 (-850)) (-4 *3 (-1142 *4)) (-4 *4 (-283)) (-5 *1 (-434 *4 *3)))) (-2148 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-850)) (-4 *5 (-283)) (-4 *3 (-1142 *5)) (-5 *2 (-2 (|:| |plist| (-588 *3)) (|:| |modulo| *5))) (-5 *1 (-434 *5 *3)) (-5 *4 (-588 *3)))))
+(-10 -7 (-15 -2148 ((-2 (|:| |plist| (-588 |#2|)) (|:| |modulo| |#1|)) |#2| (-588 |#2|) |#1| (-850))) (-15 -3254 ((-588 |#2|) |#2| (-588 |#2|) |#1| (-850))) (-15 -3004 (|#2| |#2| |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 28)) (-2826 (($ |#3|) 25)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3241 (($ $) 32)) (-3448 (($ |#2| |#4| $) 33)) (-3500 (($ |#2| (-651 |#3| |#4| |#5|)) 24)) (-3216 (((-651 |#3| |#4| |#5|) $) 15)) (-2727 ((|#3| $) 19)) (-4114 ((|#4| $) 17)) (-3224 ((|#2| $) 29)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-1780 (($ |#2| |#3| |#4|) 26)) (-3697 (($) 36 T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 34)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-435 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-655 |#6|) (-655 |#2|) (-10 -8 (-15 -3224 (|#2| $)) (-15 -3216 ((-651 |#3| |#4| |#5|) $)) (-15 -4114 (|#4| $)) (-15 -2727 (|#3| $)) (-15 -3241 ($ $)) (-15 -3500 ($ |#2| (-651 |#3| |#4| |#5|))) (-15 -2826 ($ |#3|)) (-15 -1780 ($ |#2| |#3| |#4|)) (-15 -3448 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-588 (-1085)) (-157) (-784) (-215 (-3591 |#1|) (-708)) (-1 (-108) (-2 (|:| -2882 |#3|) (|:| -3858 |#4|)) (-2 (|:| -2882 |#3|) (|:| -3858 |#4|))) (-878 |#2| |#4| (-794 |#1|))) (T -435))
+((* (*1 *1 *2 *1) (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157)) (-4 *6 (-215 (-3591 *3) (-708))) (-14 *7 (-1 (-108) (-2 (|:| -2882 *5) (|:| -3858 *6)) (-2 (|:| -2882 *5) (|:| -3858 *6)))) (-5 *1 (-435 *3 *4 *5 *6 *7 *2)) (-4 *5 (-784)) (-4 *2 (-878 *4 *6 (-794 *3))))) (-3224 (*1 *2 *1) (-12 (-14 *3 (-588 (-1085))) (-4 *5 (-215 (-3591 *3) (-708))) (-14 *6 (-1 (-108) (-2 (|:| -2882 *4) (|:| -3858 *5)) (-2 (|:| -2882 *4) (|:| -3858 *5)))) (-4 *2 (-157)) (-5 *1 (-435 *3 *2 *4 *5 *6 *7)) (-4 *4 (-784)) (-4 *7 (-878 *2 *5 (-794 *3))))) (-3216 (*1 *2 *1) (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157)) (-4 *6 (-215 (-3591 *3) (-708))) (-14 *7 (-1 (-108) (-2 (|:| -2882 *5) (|:| -3858 *6)) (-2 (|:| -2882 *5) (|:| -3858 *6)))) (-5 *2 (-651 *5 *6 *7)) (-5 *1 (-435 *3 *4 *5 *6 *7 *8)) (-4 *5 (-784)) (-4 *8 (-878 *4 *6 (-794 *3))))) (-4114 (*1 *2 *1) (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157)) (-14 *6 (-1 (-108) (-2 (|:| -2882 *5) (|:| -3858 *2)) (-2 (|:| -2882 *5) (|:| -3858 *2)))) (-4 *2 (-215 (-3591 *3) (-708))) (-5 *1 (-435 *3 *4 *5 *2 *6 *7)) (-4 *5 (-784)) (-4 *7 (-878 *4 *2 (-794 *3))))) (-2727 (*1 *2 *1) (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157)) (-4 *5 (-215 (-3591 *3) (-708))) (-14 *6 (-1 (-108) (-2 (|:| -2882 *2) (|:| -3858 *5)) (-2 (|:| -2882 *2) (|:| -3858 *5)))) (-4 *2 (-784)) (-5 *1 (-435 *3 *4 *2 *5 *6 *7)) (-4 *7 (-878 *4 *5 (-794 *3))))) (-3241 (*1 *1 *1) (-12 (-14 *2 (-588 (-1085))) (-4 *3 (-157)) (-4 *5 (-215 (-3591 *2) (-708))) (-14 *6 (-1 (-108) (-2 (|:| -2882 *4) (|:| -3858 *5)) (-2 (|:| -2882 *4) (|:| -3858 *5)))) (-5 *1 (-435 *2 *3 *4 *5 *6 *7)) (-4 *4 (-784)) (-4 *7 (-878 *3 *5 (-794 *2))))) (-3500 (*1 *1 *2 *3) (-12 (-5 *3 (-651 *5 *6 *7)) (-4 *5 (-784)) (-4 *6 (-215 (-3591 *4) (-708))) (-14 *7 (-1 (-108) (-2 (|:| -2882 *5) (|:| -3858 *6)) (-2 (|:| -2882 *5) (|:| -3858 *6)))) (-14 *4 (-588 (-1085))) (-4 *2 (-157)) (-5 *1 (-435 *4 *2 *5 *6 *7 *8)) (-4 *8 (-878 *2 *6 (-794 *4))))) (-2826 (*1 *1 *2) (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157)) (-4 *5 (-215 (-3591 *3) (-708))) (-14 *6 (-1 (-108) (-2 (|:| -2882 *2) (|:| -3858 *5)) (-2 (|:| -2882 *2) (|:| -3858 *5)))) (-5 *1 (-435 *3 *4 *2 *5 *6 *7)) (-4 *2 (-784)) (-4 *7 (-878 *4 *5 (-794 *3))))) (-1780 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-588 (-1085))) (-4 *2 (-157)) (-4 *4 (-215 (-3591 *5) (-708))) (-14 *6 (-1 (-108) (-2 (|:| -2882 *3) (|:| -3858 *4)) (-2 (|:| -2882 *3) (|:| -3858 *4)))) (-5 *1 (-435 *5 *2 *3 *4 *6 *7)) (-4 *3 (-784)) (-4 *7 (-878 *2 *4 (-794 *5))))) (-3448 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-588 (-1085))) (-4 *2 (-157)) (-4 *3 (-215 (-3591 *4) (-708))) (-14 *6 (-1 (-108) (-2 (|:| -2882 *5) (|:| -3858 *3)) (-2 (|:| -2882 *5) (|:| -3858 *3)))) (-5 *1 (-435 *4 *2 *5 *3 *6 *7)) (-4 *5 (-784)) (-4 *7 (-878 *2 *3 (-794 *4))))))
+(-13 (-655 |#6|) (-655 |#2|) (-10 -8 (-15 -3224 (|#2| $)) (-15 -3216 ((-651 |#3| |#4| |#5|) $)) (-15 -4114 (|#4| $)) (-15 -2727 (|#3| $)) (-15 -3241 ($ $)) (-15 -3500 ($ |#2| (-651 |#3| |#4| |#5|))) (-15 -2826 ($ |#3|)) (-15 -1780 ($ |#2| |#3| |#4|)) (-15 -3448 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
+((-3337 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 35)))
+(((-436 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3337 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-730) (-784) (-514) (-878 |#3| |#1| |#2|) (-13 (-962 (-382 (-522))) (-338) (-10 -8 (-15 -2217 ($ |#4|)) (-15 -2947 (|#4| $)) (-15 -2959 (|#4| $))))) (T -436))
+((-3337 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-784)) (-4 *5 (-730)) (-4 *6 (-514)) (-4 *7 (-878 *6 *5 *3)) (-5 *1 (-436 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-962 (-382 (-522))) (-338) (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $))))))))
+(-10 -7 (-15 -3337 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
+((-1419 (((-108) $ $) NIL)) (-3533 (((-588 |#3|) $) 41)) (-2161 (((-108) $) NIL)) (-2702 (((-108) $) NIL (|has| |#1| (-514)))) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |#3|) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1696 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-1298 (((-108) $) NIL (|has| |#1| (-514)))) (-1657 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3598 (((-108) $ $) NIL (|has| |#1| (-514)))) (-2818 (((-108) $) NIL (|has| |#1| (-514)))) (-3461 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-3668 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-3700 (((-3 $ "failed") (-588 |#4|)) 47)) (-1478 (($ (-588 |#4|)) NIL)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-1424 (($ |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-4002 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-2153 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4238)))) (-2395 (((-588 |#4|) $) 18 (|has| $ (-6 -4238)))) (-1933 ((|#3| $) 45)) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#4|) $) 14 (|has| $ (-6 -4238)))) (-4176 (((-108) |#4| $) 26 (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-2397 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#4| |#4|) $) 21)) (-2714 (((-588 |#3|) $) NIL)) (-3826 (((-108) |#3| $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-2507 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-4174 (((-1032) $) NIL)) (-2187 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-3487 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#4|) (-588 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 39)) (-3298 (($) 17)) (-4187 (((-708) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (((-708) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) 16)) (-3873 (((-498) $) NIL (|has| |#4| (-563 (-498)))) (($ (-588 |#4|)) 49)) (-2227 (($ (-588 |#4|)) 13)) (-2271 (($ $ |#3|) NIL)) (-2154 (($ $ |#3|) NIL)) (-2773 (($ $ |#3|) NIL)) (-2217 (((-792) $) 38) (((-588 |#4|) $) 48)) (-1381 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 30)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-437 |#1| |#2| |#3| |#4|) (-13 (-903 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3873 ($ (-588 |#4|))) (-6 -4238) (-6 -4239))) (-971) (-730) (-784) (-985 |#1| |#2| |#3|)) (T -437))
+((-3873 (*1 *1 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-437 *3 *4 *5 *6)))))
+(-13 (-903 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3873 ($ (-588 |#4|))) (-6 -4238) (-6 -4239)))
+((-3697 (($) 11)) (-3709 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
+(((-438 |#1| |#2| |#3|) (-10 -8 (-15 -3709 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3697 (|#1|))) (-439 |#2| |#3|) (-157) (-23)) (T -438))
+NIL
+(-10 -8 (-15 -3709 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3697 (|#1|)))
+((-1419 (((-108) $ $) 7)) (-3700 (((-3 |#1| "failed") $) 26)) (-1478 ((|#1| $) 25)) (-3589 (($ $ $) 23)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2487 ((|#2| $) 19)) (-2217 (((-792) $) 11) (($ |#1|) 27)) (-3697 (($) 18 T CONST)) (-3709 (($) 24 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 15) (($ $ $) 13)) (-1661 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
(((-439 |#1| |#2|) (-1197) (-157) (-23)) (T -439))
-((-3577 (*1 *1) (-12 (-4 *1 (-439 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))) (-1372 (*1 *1 *1 *1) (-12 (-4 *1 (-439 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))))
-(-13 (-444 |t#1| |t#2|) (-962 |t#1|) (-10 -8 (-15 (-3577) ($) -2677) (-15 -1372 ($ $ $))))
+((-3709 (*1 *1) (-12 (-4 *1 (-439 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))) (-3589 (*1 *1 *1 *1) (-12 (-4 *1 (-439 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))))
+(-13 (-444 |t#1| |t#2|) (-962 |t#1|) (-10 -8 (-15 (-3709) ($) -2855) (-15 -3589 ($ $ $))))
(((-97) . T) ((-562 (-792)) . T) ((-444 |#1| |#2|) . T) ((-962 |#1|) . T) ((-1014) . T))
-((-3367 (((-1166 (-1166 (-522))) (-1166 (-1166 (-522))) (-850)) 18)) (-4200 (((-1166 (-1166 (-522))) (-850)) 16)))
-(((-440) (-10 -7 (-15 -3367 ((-1166 (-1166 (-522))) (-1166 (-1166 (-522))) (-850))) (-15 -4200 ((-1166 (-1166 (-522))) (-850))))) (T -440))
-((-4200 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1166 (-1166 (-522)))) (-5 *1 (-440)))) (-3367 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 (-1166 (-522)))) (-5 *3 (-850)) (-5 *1 (-440)))))
-(-10 -7 (-15 -3367 ((-1166 (-1166 (-522))) (-1166 (-1166 (-522))) (-850))) (-15 -4200 ((-1166 (-1166 (-522))) (-850))))
-((-4017 (((-522) (-522)) 30) (((-522)) 22)) (-3511 (((-522) (-522)) 26) (((-522)) 18)) (-4082 (((-522) (-522)) 28) (((-522)) 20)) (-1470 (((-108) (-108)) 12) (((-108)) 10)) (-3436 (((-108) (-108)) 11) (((-108)) 9)) (-1202 (((-108) (-108)) 24) (((-108)) 15)))
-(((-441) (-10 -7 (-15 -3436 ((-108))) (-15 -1470 ((-108))) (-15 -3436 ((-108) (-108))) (-15 -1470 ((-108) (-108))) (-15 -1202 ((-108))) (-15 -4082 ((-522))) (-15 -3511 ((-522))) (-15 -4017 ((-522))) (-15 -1202 ((-108) (-108))) (-15 -4082 ((-522) (-522))) (-15 -3511 ((-522) (-522))) (-15 -4017 ((-522) (-522))))) (T -441))
-((-4017 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441)))) (-3511 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441)))) (-4082 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441)))) (-1202 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))) (-4017 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441)))) (-3511 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441)))) (-4082 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441)))) (-1202 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))) (-1470 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))) (-3436 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))) (-1470 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))) (-3436 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))))
-(-10 -7 (-15 -3436 ((-108))) (-15 -1470 ((-108))) (-15 -3436 ((-108) (-108))) (-15 -1470 ((-108) (-108))) (-15 -1202 ((-108))) (-15 -4082 ((-522))) (-15 -3511 ((-522))) (-15 -4017 ((-522))) (-15 -1202 ((-108) (-108))) (-15 -4082 ((-522) (-522))) (-15 -3511 ((-522) (-522))) (-15 -4017 ((-522) (-522))))
-((-1416 (((-108) $ $) NIL)) (-1968 (((-588 (-354)) $) 27) (((-588 (-354)) $ (-588 (-354))) 91)) (-3085 (((-588 (-1009 (-354))) $) 14) (((-588 (-1009 (-354))) $ (-588 (-1009 (-354)))) 88)) (-2399 (((-588 (-588 (-872 (-202)))) (-588 (-588 (-872 (-202)))) (-588 (-803))) 42)) (-2863 (((-588 (-588 (-872 (-202)))) $) 84)) (-2736 (((-1171) $ (-872 (-202)) (-803)) 104)) (-2433 (($ $) 83) (($ (-588 (-588 (-872 (-202))))) 94) (($ (-588 (-588 (-872 (-202)))) (-588 (-803)) (-588 (-803)) (-588 (-850))) 93) (($ (-588 (-588 (-872 (-202)))) (-588 (-803)) (-588 (-803)) (-588 (-850)) (-588 (-239))) 95)) (-2385 (((-1068) $) NIL)) (-2530 (((-522) $) 66)) (-4151 (((-1032) $) NIL)) (-1832 (($) 92)) (-2808 (((-588 (-202)) (-588 (-588 (-872 (-202))))) 52)) (-2871 (((-1171) $ (-588 (-872 (-202))) (-803) (-803) (-850)) 98) (((-1171) $ (-872 (-202))) 100) (((-1171) $ (-872 (-202)) (-803) (-803) (-850)) 99)) (-2190 (((-792) $) 110) (($ (-588 (-588 (-872 (-202))))) 105)) (-2148 (((-1171) $ (-872 (-202))) 103)) (-1531 (((-108) $ $) NIL)))
-(((-442) (-13 (-1014) (-10 -8 (-15 -1832 ($)) (-15 -2433 ($ $)) (-15 -2433 ($ (-588 (-588 (-872 (-202)))))) (-15 -2433 ($ (-588 (-588 (-872 (-202)))) (-588 (-803)) (-588 (-803)) (-588 (-850)))) (-15 -2433 ($ (-588 (-588 (-872 (-202)))) (-588 (-803)) (-588 (-803)) (-588 (-850)) (-588 (-239)))) (-15 -2863 ((-588 (-588 (-872 (-202)))) $)) (-15 -2530 ((-522) $)) (-15 -3085 ((-588 (-1009 (-354))) $)) (-15 -3085 ((-588 (-1009 (-354))) $ (-588 (-1009 (-354))))) (-15 -1968 ((-588 (-354)) $)) (-15 -1968 ((-588 (-354)) $ (-588 (-354)))) (-15 -2871 ((-1171) $ (-588 (-872 (-202))) (-803) (-803) (-850))) (-15 -2871 ((-1171) $ (-872 (-202)))) (-15 -2871 ((-1171) $ (-872 (-202)) (-803) (-803) (-850))) (-15 -2148 ((-1171) $ (-872 (-202)))) (-15 -2736 ((-1171) $ (-872 (-202)) (-803))) (-15 -2190 ($ (-588 (-588 (-872 (-202)))))) (-15 -2190 ((-792) $)) (-15 -2399 ((-588 (-588 (-872 (-202)))) (-588 (-588 (-872 (-202)))) (-588 (-803)))) (-15 -2808 ((-588 (-202)) (-588 (-588 (-872 (-202))))))))) (T -442))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-442)))) (-1832 (*1 *1) (-5 *1 (-442))) (-2433 (*1 *1 *1) (-5 *1 (-442))) (-2433 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-442)))) (-2433 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *3 (-588 (-803))) (-5 *4 (-588 (-850))) (-5 *1 (-442)))) (-2433 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *3 (-588 (-803))) (-5 *4 (-588 (-850))) (-5 *5 (-588 (-239))) (-5 *1 (-442)))) (-2863 (*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-442)))) (-2530 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-442)))) (-3085 (*1 *2 *1) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-442)))) (-3085 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-442)))) (-1968 (*1 *2 *1) (-12 (-5 *2 (-588 (-354))) (-5 *1 (-442)))) (-1968 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-354))) (-5 *1 (-442)))) (-2871 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-588 (-872 (-202)))) (-5 *4 (-803)) (-5 *5 (-850)) (-5 *2 (-1171)) (-5 *1 (-442)))) (-2871 (*1 *2 *1 *3) (-12 (-5 *3 (-872 (-202))) (-5 *2 (-1171)) (-5 *1 (-442)))) (-2871 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-872 (-202))) (-5 *4 (-803)) (-5 *5 (-850)) (-5 *2 (-1171)) (-5 *1 (-442)))) (-2148 (*1 *2 *1 *3) (-12 (-5 *3 (-872 (-202))) (-5 *2 (-1171)) (-5 *1 (-442)))) (-2736 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-872 (-202))) (-5 *4 (-803)) (-5 *2 (-1171)) (-5 *1 (-442)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-442)))) (-2399 (*1 *2 *2 *3) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *3 (-588 (-803))) (-5 *1 (-442)))) (-2808 (*1 *2 *3) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *2 (-588 (-202))) (-5 *1 (-442)))))
-(-13 (-1014) (-10 -8 (-15 -1832 ($)) (-15 -2433 ($ $)) (-15 -2433 ($ (-588 (-588 (-872 (-202)))))) (-15 -2433 ($ (-588 (-588 (-872 (-202)))) (-588 (-803)) (-588 (-803)) (-588 (-850)))) (-15 -2433 ($ (-588 (-588 (-872 (-202)))) (-588 (-803)) (-588 (-803)) (-588 (-850)) (-588 (-239)))) (-15 -2863 ((-588 (-588 (-872 (-202)))) $)) (-15 -2530 ((-522) $)) (-15 -3085 ((-588 (-1009 (-354))) $)) (-15 -3085 ((-588 (-1009 (-354))) $ (-588 (-1009 (-354))))) (-15 -1968 ((-588 (-354)) $)) (-15 -1968 ((-588 (-354)) $ (-588 (-354)))) (-15 -2871 ((-1171) $ (-588 (-872 (-202))) (-803) (-803) (-850))) (-15 -2871 ((-1171) $ (-872 (-202)))) (-15 -2871 ((-1171) $ (-872 (-202)) (-803) (-803) (-850))) (-15 -2148 ((-1171) $ (-872 (-202)))) (-15 -2736 ((-1171) $ (-872 (-202)) (-803))) (-15 -2190 ($ (-588 (-588 (-872 (-202)))))) (-15 -2190 ((-792) $)) (-15 -2399 ((-588 (-588 (-872 (-202)))) (-588 (-588 (-872 (-202)))) (-588 (-803)))) (-15 -2808 ((-588 (-202)) (-588 (-588 (-872 (-202))))))))
-((-1612 (($ $) NIL) (($ $ $) 11)))
-(((-443 |#1| |#2| |#3|) (-10 -8 (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|))) (-444 |#2| |#3|) (-157) (-23)) (T -443))
-NIL
-(-10 -8 (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2793 ((|#2| $) 19)) (-2190 (((-792) $) 11)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 15) (($ $ $) 13)) (-1602 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
+((-3457 (((-1166 (-1166 (-522))) (-1166 (-1166 (-522))) (-850)) 18)) (-1991 (((-1166 (-1166 (-522))) (-850)) 16)))
+(((-440) (-10 -7 (-15 -3457 ((-1166 (-1166 (-522))) (-1166 (-1166 (-522))) (-850))) (-15 -1991 ((-1166 (-1166 (-522))) (-850))))) (T -440))
+((-1991 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1166 (-1166 (-522)))) (-5 *1 (-440)))) (-3457 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 (-1166 (-522)))) (-5 *3 (-850)) (-5 *1 (-440)))))
+(-10 -7 (-15 -3457 ((-1166 (-1166 (-522))) (-1166 (-1166 (-522))) (-850))) (-15 -1991 ((-1166 (-1166 (-522))) (-850))))
+((-3791 (((-522) (-522)) 30) (((-522)) 22)) (-2481 (((-522) (-522)) 26) (((-522)) 18)) (-3258 (((-522) (-522)) 28) (((-522)) 20)) (-2777 (((-108) (-108)) 12) (((-108)) 10)) (-3009 (((-108) (-108)) 11) (((-108)) 9)) (-1768 (((-108) (-108)) 24) (((-108)) 15)))
+(((-441) (-10 -7 (-15 -3009 ((-108))) (-15 -2777 ((-108))) (-15 -3009 ((-108) (-108))) (-15 -2777 ((-108) (-108))) (-15 -1768 ((-108))) (-15 -3258 ((-522))) (-15 -2481 ((-522))) (-15 -3791 ((-522))) (-15 -1768 ((-108) (-108))) (-15 -3258 ((-522) (-522))) (-15 -2481 ((-522) (-522))) (-15 -3791 ((-522) (-522))))) (T -441))
+((-3791 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441)))) (-2481 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441)))) (-3258 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441)))) (-1768 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))) (-3791 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441)))) (-2481 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441)))) (-3258 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441)))) (-1768 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))) (-2777 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))) (-3009 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))) (-2777 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))) (-3009 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))))
+(-10 -7 (-15 -3009 ((-108))) (-15 -2777 ((-108))) (-15 -3009 ((-108) (-108))) (-15 -2777 ((-108) (-108))) (-15 -1768 ((-108))) (-15 -3258 ((-522))) (-15 -2481 ((-522))) (-15 -3791 ((-522))) (-15 -1768 ((-108) (-108))) (-15 -3258 ((-522) (-522))) (-15 -2481 ((-522) (-522))) (-15 -3791 ((-522) (-522))))
+((-1419 (((-108) $ $) NIL)) (-2035 (((-588 (-354)) $) 27) (((-588 (-354)) $ (-588 (-354))) 91)) (-3753 (((-588 (-1009 (-354))) $) 14) (((-588 (-1009 (-354))) $ (-588 (-1009 (-354)))) 88)) (-1387 (((-588 (-588 (-872 (-202)))) (-588 (-588 (-872 (-202)))) (-588 (-803))) 42)) (-1222 (((-588 (-588 (-872 (-202)))) $) 84)) (-1239 (((-1171) $ (-872 (-202)) (-803)) 104)) (-3362 (($ $) 83) (($ (-588 (-588 (-872 (-202))))) 94) (($ (-588 (-588 (-872 (-202)))) (-588 (-803)) (-588 (-803)) (-588 (-850))) 93) (($ (-588 (-588 (-872 (-202)))) (-588 (-803)) (-588 (-803)) (-588 (-850)) (-588 (-239))) 95)) (-2311 (((-1068) $) NIL)) (-2644 (((-522) $) 66)) (-4174 (((-1032) $) NIL)) (-2273 (($) 92)) (-2650 (((-588 (-202)) (-588 (-588 (-872 (-202))))) 52)) (-1302 (((-1171) $ (-588 (-872 (-202))) (-803) (-803) (-850)) 98) (((-1171) $ (-872 (-202))) 100) (((-1171) $ (-872 (-202)) (-803) (-803) (-850)) 99)) (-2217 (((-792) $) 110) (($ (-588 (-588 (-872 (-202))))) 105)) (-3080 (((-1171) $ (-872 (-202))) 103)) (-1562 (((-108) $ $) NIL)))
+(((-442) (-13 (-1014) (-10 -8 (-15 -2273 ($)) (-15 -3362 ($ $)) (-15 -3362 ($ (-588 (-588 (-872 (-202)))))) (-15 -3362 ($ (-588 (-588 (-872 (-202)))) (-588 (-803)) (-588 (-803)) (-588 (-850)))) (-15 -3362 ($ (-588 (-588 (-872 (-202)))) (-588 (-803)) (-588 (-803)) (-588 (-850)) (-588 (-239)))) (-15 -1222 ((-588 (-588 (-872 (-202)))) $)) (-15 -2644 ((-522) $)) (-15 -3753 ((-588 (-1009 (-354))) $)) (-15 -3753 ((-588 (-1009 (-354))) $ (-588 (-1009 (-354))))) (-15 -2035 ((-588 (-354)) $)) (-15 -2035 ((-588 (-354)) $ (-588 (-354)))) (-15 -1302 ((-1171) $ (-588 (-872 (-202))) (-803) (-803) (-850))) (-15 -1302 ((-1171) $ (-872 (-202)))) (-15 -1302 ((-1171) $ (-872 (-202)) (-803) (-803) (-850))) (-15 -3080 ((-1171) $ (-872 (-202)))) (-15 -1239 ((-1171) $ (-872 (-202)) (-803))) (-15 -2217 ($ (-588 (-588 (-872 (-202)))))) (-15 -2217 ((-792) $)) (-15 -1387 ((-588 (-588 (-872 (-202)))) (-588 (-588 (-872 (-202)))) (-588 (-803)))) (-15 -2650 ((-588 (-202)) (-588 (-588 (-872 (-202))))))))) (T -442))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-442)))) (-2273 (*1 *1) (-5 *1 (-442))) (-3362 (*1 *1 *1) (-5 *1 (-442))) (-3362 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-442)))) (-3362 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *3 (-588 (-803))) (-5 *4 (-588 (-850))) (-5 *1 (-442)))) (-3362 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *3 (-588 (-803))) (-5 *4 (-588 (-850))) (-5 *5 (-588 (-239))) (-5 *1 (-442)))) (-1222 (*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-442)))) (-2644 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-442)))) (-3753 (*1 *2 *1) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-442)))) (-3753 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-442)))) (-2035 (*1 *2 *1) (-12 (-5 *2 (-588 (-354))) (-5 *1 (-442)))) (-2035 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-354))) (-5 *1 (-442)))) (-1302 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-588 (-872 (-202)))) (-5 *4 (-803)) (-5 *5 (-850)) (-5 *2 (-1171)) (-5 *1 (-442)))) (-1302 (*1 *2 *1 *3) (-12 (-5 *3 (-872 (-202))) (-5 *2 (-1171)) (-5 *1 (-442)))) (-1302 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-872 (-202))) (-5 *4 (-803)) (-5 *5 (-850)) (-5 *2 (-1171)) (-5 *1 (-442)))) (-3080 (*1 *2 *1 *3) (-12 (-5 *3 (-872 (-202))) (-5 *2 (-1171)) (-5 *1 (-442)))) (-1239 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-872 (-202))) (-5 *4 (-803)) (-5 *2 (-1171)) (-5 *1 (-442)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-442)))) (-1387 (*1 *2 *2 *3) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *3 (-588 (-803))) (-5 *1 (-442)))) (-2650 (*1 *2 *3) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *2 (-588 (-202))) (-5 *1 (-442)))))
+(-13 (-1014) (-10 -8 (-15 -2273 ($)) (-15 -3362 ($ $)) (-15 -3362 ($ (-588 (-588 (-872 (-202)))))) (-15 -3362 ($ (-588 (-588 (-872 (-202)))) (-588 (-803)) (-588 (-803)) (-588 (-850)))) (-15 -3362 ($ (-588 (-588 (-872 (-202)))) (-588 (-803)) (-588 (-803)) (-588 (-850)) (-588 (-239)))) (-15 -1222 ((-588 (-588 (-872 (-202)))) $)) (-15 -2644 ((-522) $)) (-15 -3753 ((-588 (-1009 (-354))) $)) (-15 -3753 ((-588 (-1009 (-354))) $ (-588 (-1009 (-354))))) (-15 -2035 ((-588 (-354)) $)) (-15 -2035 ((-588 (-354)) $ (-588 (-354)))) (-15 -1302 ((-1171) $ (-588 (-872 (-202))) (-803) (-803) (-850))) (-15 -1302 ((-1171) $ (-872 (-202)))) (-15 -1302 ((-1171) $ (-872 (-202)) (-803) (-803) (-850))) (-15 -3080 ((-1171) $ (-872 (-202)))) (-15 -1239 ((-1171) $ (-872 (-202)) (-803))) (-15 -2217 ($ (-588 (-588 (-872 (-202)))))) (-15 -2217 ((-792) $)) (-15 -1387 ((-588 (-588 (-872 (-202)))) (-588 (-588 (-872 (-202)))) (-588 (-803)))) (-15 -2650 ((-588 (-202)) (-588 (-588 (-872 (-202))))))))
+((-1672 (($ $) NIL) (($ $ $) 11)))
+(((-443 |#1| |#2| |#3|) (-10 -8 (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|))) (-444 |#2| |#3|) (-157) (-23)) (T -443))
+NIL
+(-10 -8 (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2487 ((|#2| $) 19)) (-2217 (((-792) $) 11)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 15) (($ $ $) 13)) (-1661 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
(((-444 |#1| |#2|) (-1197) (-157) (-23)) (T -444))
-((-2793 (*1 *2 *1) (-12 (-4 *1 (-444 *3 *2)) (-4 *3 (-157)) (-4 *2 (-23)))) (-3566 (*1 *1) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))) (-1612 (*1 *1 *1) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))) (-1602 (*1 *1 *1 *1) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))) (-1612 (*1 *1 *1 *1) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))))
-(-13 (-1014) (-10 -8 (-15 -2793 (|t#2| $)) (-15 (-3566) ($) -2677) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -1612 ($ $)) (-15 -1602 ($ $ $)) (-15 -1612 ($ $ $))))
+((-2487 (*1 *2 *1) (-12 (-4 *1 (-444 *3 *2)) (-4 *3 (-157)) (-4 *2 (-23)))) (-3697 (*1 *1) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))) (-1672 (*1 *1 *1) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))) (-1661 (*1 *1 *1 *1) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))) (-1672 (*1 *1 *1 *1) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23)))))
+(-13 (-1014) (-10 -8 (-15 -2487 (|t#2| $)) (-15 (-3697) ($) -2855) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -1672 ($ $)) (-15 -1661 ($ $ $)) (-15 -1672 ($ $ $))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-3731 (((-3 (-588 (-454 |#1| |#2|)) "failed") (-588 (-454 |#1| |#2|)) (-588 (-794 |#1|))) 90)) (-4093 (((-588 (-588 (-224 |#1| |#2|))) (-588 (-224 |#1| |#2|)) (-588 (-794 |#1|))) 88)) (-3587 (((-2 (|:| |dpolys| (-588 (-224 |#1| |#2|))) (|:| |coords| (-588 (-522)))) (-588 (-224 |#1| |#2|)) (-588 (-794 |#1|))) 58)))
-(((-445 |#1| |#2| |#3|) (-10 -7 (-15 -4093 ((-588 (-588 (-224 |#1| |#2|))) (-588 (-224 |#1| |#2|)) (-588 (-794 |#1|)))) (-15 -3731 ((-3 (-588 (-454 |#1| |#2|)) "failed") (-588 (-454 |#1| |#2|)) (-588 (-794 |#1|)))) (-15 -3587 ((-2 (|:| |dpolys| (-588 (-224 |#1| |#2|))) (|:| |coords| (-588 (-522)))) (-588 (-224 |#1| |#2|)) (-588 (-794 |#1|))))) (-588 (-1085)) (-426) (-426)) (T -445))
-((-3587 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-794 *5))) (-14 *5 (-588 (-1085))) (-4 *6 (-426)) (-5 *2 (-2 (|:| |dpolys| (-588 (-224 *5 *6))) (|:| |coords| (-588 (-522))))) (-5 *1 (-445 *5 *6 *7)) (-5 *3 (-588 (-224 *5 *6))) (-4 *7 (-426)))) (-3731 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-454 *4 *5))) (-5 *3 (-588 (-794 *4))) (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *1 (-445 *4 *5 *6)) (-4 *6 (-426)))) (-4093 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-794 *5))) (-14 *5 (-588 (-1085))) (-4 *6 (-426)) (-5 *2 (-588 (-588 (-224 *5 *6)))) (-5 *1 (-445 *5 *6 *7)) (-5 *3 (-588 (-224 *5 *6))) (-4 *7 (-426)))))
-(-10 -7 (-15 -4093 ((-588 (-588 (-224 |#1| |#2|))) (-588 (-224 |#1| |#2|)) (-588 (-794 |#1|)))) (-15 -3731 ((-3 (-588 (-454 |#1| |#2|)) "failed") (-588 (-454 |#1| |#2|)) (-588 (-794 |#1|)))) (-15 -3587 ((-2 (|:| |dpolys| (-588 (-224 |#1| |#2|))) (|:| |coords| (-588 (-522)))) (-588 (-224 |#1| |#2|)) (-588 (-794 |#1|)))))
-((-2682 (((-3 $ "failed") $) 11)) (-3122 (($ $ $) 20)) (-1288 (($ $ $) 21)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 14)) (-1620 (($ $ $) 9)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 19)))
-(((-446 |#1|) (-10 -8 (-15 -1288 (|#1| |#1| |#1|)) (-15 -3122 (|#1| |#1| |#1|)) (-15 -3510 (|#1| |#1| (-522))) (-15 ** (|#1| |#1| (-522))) (-15 -1620 (|#1| |#1| |#1|)) (-15 -2682 ((-3 |#1| "failed") |#1|)) (-15 -3510 (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-708))) (-15 -3510 (|#1| |#1| (-850))) (-15 ** (|#1| |#1| (-850)))) (-447)) (T -446))
-NIL
-(-10 -8 (-15 -1288 (|#1| |#1| |#1|)) (-15 -3122 (|#1| |#1| |#1|)) (-15 -3510 (|#1| |#1| (-522))) (-15 ** (|#1| |#1| (-522))) (-15 -1620 (|#1| |#1| |#1|)) (-15 -2682 ((-3 |#1| "failed") |#1|)) (-15 -3510 (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-708))) (-15 -3510 (|#1| |#1| (-850))) (-15 ** (|#1| |#1| (-850))))
-((-1416 (((-108) $ $) 7)) (-3175 (($) 20 T CONST)) (-2682 (((-3 $ "failed") $) 16)) (-2782 (((-108) $) 19)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 27)) (-4151 (((-1032) $) 10)) (-3122 (($ $ $) 23)) (-1288 (($ $ $) 22)) (-2190 (((-792) $) 11)) (-3510 (($ $ (-850)) 13) (($ $ (-708)) 17) (($ $ (-522)) 24)) (-3577 (($) 21 T CONST)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ $) 26)) (** (($ $ (-850)) 14) (($ $ (-708)) 18) (($ $ (-522)) 25)) (* (($ $ $) 15)))
+((-4040 (((-3 (-588 (-454 |#1| |#2|)) "failed") (-588 (-454 |#1| |#2|)) (-588 (-794 |#1|))) 90)) (-3343 (((-588 (-588 (-224 |#1| |#2|))) (-588 (-224 |#1| |#2|)) (-588 (-794 |#1|))) 88)) (-2011 (((-2 (|:| |dpolys| (-588 (-224 |#1| |#2|))) (|:| |coords| (-588 (-522)))) (-588 (-224 |#1| |#2|)) (-588 (-794 |#1|))) 58)))
+(((-445 |#1| |#2| |#3|) (-10 -7 (-15 -3343 ((-588 (-588 (-224 |#1| |#2|))) (-588 (-224 |#1| |#2|)) (-588 (-794 |#1|)))) (-15 -4040 ((-3 (-588 (-454 |#1| |#2|)) "failed") (-588 (-454 |#1| |#2|)) (-588 (-794 |#1|)))) (-15 -2011 ((-2 (|:| |dpolys| (-588 (-224 |#1| |#2|))) (|:| |coords| (-588 (-522)))) (-588 (-224 |#1| |#2|)) (-588 (-794 |#1|))))) (-588 (-1085)) (-426) (-426)) (T -445))
+((-2011 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-794 *5))) (-14 *5 (-588 (-1085))) (-4 *6 (-426)) (-5 *2 (-2 (|:| |dpolys| (-588 (-224 *5 *6))) (|:| |coords| (-588 (-522))))) (-5 *1 (-445 *5 *6 *7)) (-5 *3 (-588 (-224 *5 *6))) (-4 *7 (-426)))) (-4040 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-454 *4 *5))) (-5 *3 (-588 (-794 *4))) (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *1 (-445 *4 *5 *6)) (-4 *6 (-426)))) (-3343 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-794 *5))) (-14 *5 (-588 (-1085))) (-4 *6 (-426)) (-5 *2 (-588 (-588 (-224 *5 *6)))) (-5 *1 (-445 *5 *6 *7)) (-5 *3 (-588 (-224 *5 *6))) (-4 *7 (-426)))))
+(-10 -7 (-15 -3343 ((-588 (-588 (-224 |#1| |#2|))) (-588 (-224 |#1| |#2|)) (-588 (-794 |#1|)))) (-15 -4040 ((-3 (-588 (-454 |#1| |#2|)) "failed") (-588 (-454 |#1| |#2|)) (-588 (-794 |#1|)))) (-15 -2011 ((-2 (|:| |dpolys| (-588 (-224 |#1| |#2|))) (|:| |coords| (-588 (-522)))) (-588 (-224 |#1| |#2|)) (-588 (-794 |#1|)))))
+((-3920 (((-3 $ "failed") $) 11)) (-2983 (($ $ $) 20)) (-1596 (($ $ $) 21)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 14)) (-1682 (($ $ $) 9)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 19)))
+(((-446 |#1|) (-10 -8 (-15 -1596 (|#1| |#1| |#1|)) (-15 -2983 (|#1| |#1| |#1|)) (-15 -3622 (|#1| |#1| (-522))) (-15 ** (|#1| |#1| (-522))) (-15 -1682 (|#1| |#1| |#1|)) (-15 -3920 ((-3 |#1| "failed") |#1|)) (-15 -3622 (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-708))) (-15 -3622 (|#1| |#1| (-850))) (-15 ** (|#1| |#1| (-850)))) (-447)) (T -446))
+NIL
+(-10 -8 (-15 -1596 (|#1| |#1| |#1|)) (-15 -2983 (|#1| |#1| |#1|)) (-15 -3622 (|#1| |#1| (-522))) (-15 ** (|#1| |#1| (-522))) (-15 -1682 (|#1| |#1| |#1|)) (-15 -3920 ((-3 |#1| "failed") |#1|)) (-15 -3622 (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-708))) (-15 -3622 (|#1| |#1| (-850))) (-15 ** (|#1| |#1| (-850))))
+((-1419 (((-108) $ $) 7)) (-3367 (($) 20 T CONST)) (-3920 (((-3 $ "failed") $) 16)) (-2859 (((-108) $) 19)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 27)) (-4174 (((-1032) $) 10)) (-2983 (($ $ $) 23)) (-1596 (($ $ $) 22)) (-2217 (((-792) $) 11)) (-3622 (($ $ (-850)) 13) (($ $ (-708)) 17) (($ $ (-522)) 24)) (-3709 (($) 21 T CONST)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ $) 26)) (** (($ $ (-850)) 14) (($ $ (-708)) 18) (($ $ (-522)) 25)) (* (($ $ $) 15)))
(((-447) (-1197)) (T -447))
-((-3098 (*1 *1 *1) (-4 *1 (-447))) (-1620 (*1 *1 *1 *1) (-4 *1 (-447))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-447)) (-5 *2 (-522)))) (-3510 (*1 *1 *1 *2) (-12 (-4 *1 (-447)) (-5 *2 (-522)))) (-3122 (*1 *1 *1 *1) (-4 *1 (-447))) (-1288 (*1 *1 *1 *1) (-4 *1 (-447))))
-(-13 (-664) (-10 -8 (-15 -3098 ($ $)) (-15 -1620 ($ $ $)) (-15 ** ($ $ (-522))) (-15 -3510 ($ $ (-522))) (-6 -4235) (-15 -3122 ($ $ $)) (-15 -1288 ($ $ $))))
+((-3193 (*1 *1 *1) (-4 *1 (-447))) (-1682 (*1 *1 *1 *1) (-4 *1 (-447))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-447)) (-5 *2 (-522)))) (-3622 (*1 *1 *1 *2) (-12 (-4 *1 (-447)) (-5 *2 (-522)))) (-2983 (*1 *1 *1 *1) (-4 *1 (-447))) (-1596 (*1 *1 *1 *1) (-4 *1 (-447))))
+(-13 (-664) (-10 -8 (-15 -3193 ($ $)) (-15 -1682 ($ $ $)) (-15 ** ($ $ (-522))) (-15 -3622 ($ $ (-522))) (-6 -4235) (-15 -2983 ($ $ $)) (-15 -1596 ($ $ $))))
(((-97) . T) ((-562 (-792)) . T) ((-664) . T) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4090 (((-588 (-999)) $) NIL)) (-1611 (((-1085) $) 17)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-2789 (($ $ (-382 (-522))) NIL) (($ $ (-382 (-522)) (-382 (-522))) NIL)) (-2258 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) NIL)) (-2908 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL (|has| |#1| (-338)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1929 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-2884 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2773 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) NIL)) (-2930 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) NIL T CONST)) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2813 (((-108) $) NIL (|has| |#1| (-338)))) (-3390 (((-108) $) NIL)) (-2838 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-382 (-522)) $) NIL) (((-382 (-522)) $ (-382 (-522))) NIL)) (-2782 (((-108) $) NIL)) (-1504 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2073 (($ $ (-850)) NIL) (($ $ (-382 (-522))) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-382 (-522))) NIL) (($ $ (-999) (-382 (-522))) NIL) (($ $ (-588 (-999)) (-588 (-382 (-522)))) NIL)) (-1391 (($ (-1 |#1| |#1|) $) 22)) (-1254 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL (|has| |#1| (-338)))) (-1858 (($ $) 26 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 33 (-3708 (-12 (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 27 (|has| |#1| (-37 (-382 (-522)))))) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3719 (($ $ (-382 (-522))) NIL)) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3266 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-3730 (((-708) $) NIL (|has| |#1| (-338)))) (-2545 ((|#1| $ (-382 (-522))) NIL) (($ $ $) NIL (|has| (-382 (-522)) (-1026)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) 25 (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 13 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $ (-1162 |#2|)) 15)) (-2793 (((-382 (-522)) $) NIL)) (-1738 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ (-1162 |#2|)) NIL) (($ (-1151 |#1| |#2| |#3|)) 9) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514)))) (-3243 ((|#1| $ (-382 (-522))) NIL)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-1893 ((|#1| $) 18)) (-1759 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1745 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-382 (-522))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) 24)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 23) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
-(((-448 |#1| |#2| |#3|) (-13 (-1147 |#1|) (-10 -8 (-15 -2190 ($ (-1162 |#2|))) (-15 -2190 ($ (-1151 |#1| |#2| |#3|))) (-15 -2157 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -448))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-448 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1151 *3 *4 *5)) (-4 *3 (-971)) (-14 *4 (-1085)) (-14 *5 *3) (-5 *1 (-448 *3 *4 *5)))) (-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-448 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-1858 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-448 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
-(-13 (-1147 |#1|) (-10 -8 (-15 -2190 ($ (-1162 |#2|))) (-15 -2190 ($ (-1151 |#1| |#2| |#3|))) (-15 -2157 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|)))
-((-1416 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1800 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2679 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#2| $ |#1| |#2|) 18)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2750 (((-3 |#2| "failed") |#1| $) 19)) (-3175 (($) NIL T CONST)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-3859 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) 16)) (-1423 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#2| $ |#1|) NIL)) (-3837 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 ((|#1| $) NIL (|has| |#1| (-784)))) (-3308 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2014 ((|#1| $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2966 (((-588 |#1|) $) NIL)) (-1231 (((-108) |#1| $) NIL)) (-2116 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-4095 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3604 (((-588 |#1|) $) NIL)) (-1405 (((-108) |#1| $) NIL)) (-4151 (((-1032) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2294 ((|#2| $) NIL (|has| |#1| (-784)))) (-1414 (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL)) (-2602 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1525 (((-588 |#2|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-3990 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2190 (((-792) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-2795 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3533 (((-588 (-999)) $) NIL)) (-1660 (((-1085) $) 17)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3495 (($ $ (-382 (-522))) NIL) (($ $ (-382 (-522)) (-382 (-522))) NIL)) (-3024 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) NIL)) (-3044 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL (|has| |#1| (-338)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-338)))) (-2016 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-3023 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1270 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) NIL)) (-3066 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) NIL T CONST)) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2725 (((-108) $) NIL (|has| |#1| (-338)))) (-3672 (((-108) $) NIL)) (-2980 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-382 (-522)) $) NIL) (((-382 (-522)) $ (-382 (-522))) NIL)) (-2859 (((-108) $) NIL)) (-1811 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2895 (($ $ (-850)) NIL) (($ $ (-382 (-522))) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-382 (-522))) NIL) (($ $ (-999) (-382 (-522))) NIL) (($ $ (-588 (-999)) (-588 (-382 (-522)))) NIL)) (-3810 (($ (-1 |#1| |#1|) $) 22)) (-1238 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL (|has| |#1| (-338)))) (-2611 (($ $) 26 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 33 (-3844 (-12 (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 27 (|has| |#1| (-37 (-382 (-522)))))) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-3934 (($ $ (-382 (-522))) NIL)) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3357 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-4031 (((-708) $) NIL (|has| |#1| (-338)))) (-2683 ((|#1| $ (-382 (-522))) NIL) (($ $ $) NIL (|has| (-382 (-522)) (-1026)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) 25 (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 13 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $ (-1162 |#2|)) 15)) (-2487 (((-382 (-522)) $) NIL)) (-1831 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ (-1162 |#2|)) NIL) (($ (-1151 |#1| |#2| |#3|)) 9) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514)))) (-1643 ((|#1| $ (-382 (-522))) NIL)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-1980 ((|#1| $) 18)) (-1856 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1839 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-382 (-522))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) 24)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 23) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+(((-448 |#1| |#2| |#3|) (-13 (-1147 |#1|) (-10 -8 (-15 -2217 ($ (-1162 |#2|))) (-15 -2217 ($ (-1151 |#1| |#2| |#3|))) (-15 -2731 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -448))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-448 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1151 *3 *4 *5)) (-4 *3 (-971)) (-14 *4 (-1085)) (-14 *5 *3) (-5 *1 (-448 *3 *4 *5)))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-448 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2611 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-448 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
+(-13 (-1147 |#1|) (-10 -8 (-15 -2217 ($ (-1162 |#2|))) (-15 -2217 ($ (-1151 |#1| |#2| |#3|))) (-15 -2731 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|)))
+((-1419 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1883 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-3883 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#2| $ |#1| |#2|) 18)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-4011 (((-3 |#2| "failed") |#1| $) 19)) (-3367 (($) NIL T CONST)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-1700 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) 16)) (-1424 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#2| $ |#1|) NIL)) (-2395 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 ((|#1| $) NIL (|has| |#1| (-784)))) (-4084 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2201 ((|#1| $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2562 (((-588 |#1|) $) NIL)) (-2241 (((-108) |#1| $) NIL)) (-1431 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3365 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-2130 (((-588 |#1|) $) NIL)) (-2103 (((-108) |#1| $) NIL)) (-4174 (((-1032) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2337 ((|#2| $) NIL (|has| |#1| (-784)))) (-2187 (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL)) (-1972 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1973 (((-588 |#2|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-3546 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-2217 (((-792) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-2501 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-449 |#1| |#2| |#3| |#4|) (-1097 |#1| |#2|) (-1014) (-1014) (-1097 |#1| |#2|) |#2|) (T -449))
NIL
(-1097 |#1| |#2|)
-((-1416 (((-108) $ $) NIL)) (-2950 (((-588 (-2 (|:| -1650 $) (|:| -1544 (-588 |#4|)))) (-588 |#4|)) NIL)) (-4125 (((-588 $) (-588 |#4|)) NIL)) (-4090 (((-588 |#3|) $) NIL)) (-2690 (((-108) $) NIL)) (-4140 (((-108) $) NIL (|has| |#1| (-514)))) (-3575 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-3607 ((|#4| |#4| $) NIL)) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |#3|) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-1628 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3175 (($) NIL T CONST)) (-3639 (((-108) $) 26 (|has| |#1| (-514)))) (-3982 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3996 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3538 (((-108) $) NIL (|has| |#1| (-514)))) (-2149 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3050 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-1787 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-1297 (((-3 $ "failed") (-588 |#4|)) NIL)) (-1484 (($ (-588 |#4|)) NIL)) (-2306 (((-3 $ "failed") $) 39)) (-2806 ((|#4| |#4| $) NIL)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-1423 (($ |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-3421 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-1934 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-4164 ((|#4| |#4| $) NIL)) (-3864 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2091 (((-2 (|:| -1650 (-588 |#4|)) (|:| -1544 (-588 |#4|))) $) NIL)) (-3837 (((-588 |#4|) $) 16 (|has| $ (-6 -4238)))) (-3341 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1521 ((|#3| $) 33)) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#4|) $) 17 (|has| $ (-6 -4238)))) (-2246 (((-108) |#4| $) 25 (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-3838 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#4| |#4|) $) 21)) (-2458 (((-588 |#3|) $) NIL)) (-1606 (((-108) |#3| $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-1442 (((-3 |#4| "failed") $) 37)) (-2242 (((-588 |#4|) $) NIL)) (-3409 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1451 ((|#4| |#4| $) NIL)) (-2123 (((-108) $ $) NIL)) (-2039 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-2230 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2680 ((|#4| |#4| $) NIL)) (-4151 (((-1032) $) NIL)) (-2294 (((-3 |#4| "failed") $) 35)) (-1414 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-3307 (((-3 $ "failed") $ |#4|) 47)) (-3719 (($ $ |#4|) NIL)) (-3053 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#4|) (-588 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 15)) (-3775 (($) 13)) (-2793 (((-708) $) NIL)) (-4168 (((-708) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (((-708) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) 12)) (-1431 (((-498) $) NIL (|has| |#4| (-563 (-498))))) (-2201 (($ (-588 |#4|)) 20)) (-2020 (($ $ |#3|) 42)) (-3606 (($ $ |#3|) 44)) (-3968 (($ $) NIL)) (-2463 (($ $ |#3|) NIL)) (-2190 (((-792) $) 31) (((-588 |#4|) $) 40)) (-1974 (((-708) $) NIL (|has| |#3| (-343)))) (-3989 (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-4212 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) NIL)) (-3648 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2360 (((-588 |#3|) $) NIL)) (-2351 (((-108) |#3| $) NIL)) (-1531 (((-108) $ $) NIL)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-3829 (((-588 (-2 (|:| -1720 $) (|:| -1566 (-588 |#4|)))) (-588 |#4|)) NIL)) (-2510 (((-588 $) (-588 |#4|)) NIL)) (-3533 (((-588 |#3|) $) NIL)) (-2161 (((-108) $) NIL)) (-2702 (((-108) $) NIL (|has| |#1| (-514)))) (-1900 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2163 ((|#4| |#4| $) NIL)) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |#3|) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1696 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3367 (($) NIL T CONST)) (-1298 (((-108) $) 26 (|has| |#1| (-514)))) (-1657 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3598 (((-108) $ $) NIL (|has| |#1| (-514)))) (-2818 (((-108) $) NIL (|has| |#1| (-514)))) (-3090 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3461 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-3668 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-3700 (((-3 $ "failed") (-588 |#4|)) NIL)) (-1478 (($ (-588 |#4|)) NIL)) (-2352 (((-3 $ "failed") $) 39)) (-2625 ((|#4| |#4| $) NIL)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-1424 (($ |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-4002 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-1426 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-2918 ((|#4| |#4| $) NIL)) (-2153 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-1199 (((-2 (|:| -1720 (-588 |#4|)) (|:| -1566 (-588 |#4|))) $) NIL)) (-2395 (((-588 |#4|) $) 16 (|has| $ (-6 -4238)))) (-1384 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1933 ((|#3| $) 33)) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#4|) $) 17 (|has| $ (-6 -4238)))) (-4176 (((-108) |#4| $) 25 (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-2397 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#4| |#4|) $) 21)) (-2714 (((-588 |#3|) $) NIL)) (-3826 (((-108) |#3| $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-1442 (((-3 |#4| "failed") $) 37)) (-4138 (((-588 |#4|) $) NIL)) (-3864 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2556 ((|#4| |#4| $) NIL)) (-1517 (((-108) $ $) NIL)) (-2507 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-3060 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-3896 ((|#4| |#4| $) NIL)) (-4174 (((-1032) $) NIL)) (-2337 (((-3 |#4| "failed") $) 35)) (-2187 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-4078 (((-3 $ "failed") $ |#4|) 47)) (-3934 (($ $ |#4|) NIL)) (-3487 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#4|) (-588 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 15)) (-3298 (($) 13)) (-2487 (((-708) $) NIL)) (-4187 (((-708) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (((-708) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) 12)) (-3873 (((-498) $) NIL (|has| |#4| (-563 (-498))))) (-2227 (($ (-588 |#4|)) 20)) (-2271 (($ $ |#3|) 42)) (-2154 (($ $ |#3|) 44)) (-1524 (($ $) NIL)) (-2773 (($ $ |#3|) NIL)) (-2217 (((-792) $) 31) (((-588 |#4|) $) 40)) (-3111 (((-708) $) NIL (|has| |#3| (-343)))) (-3538 (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2102 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) NIL)) (-1381 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-1982 (((-588 |#3|) $) NIL)) (-1711 (((-108) |#3| $) NIL)) (-1562 (((-108) $ $) NIL)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-450 |#1| |#2| |#3| |#4|) (-1114 |#1| |#2| |#3| |#4|) (-514) (-730) (-784) (-985 |#1| |#2| |#3|)) (T -450))
NIL
(-1114 |#1| |#2| |#3| |#4|)
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL)) (-1484 (((-522) $) NIL) (((-382 (-522)) $) NIL)) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-2838 (($) 18)) (-2782 (((-108) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-1431 (((-354) $) 22) (((-202) $) 25) (((-382 (-1081 (-522))) $) 19) (((-498) $) 53)) (-2190 (((-792) $) 51) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (((-202) $) 24) (((-354) $) 21)) (-2323 (((-708)) NIL)) (-3958 (((-108) $ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 36 T CONST)) (-3577 (($) 11 T CONST)) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
-(((-451) (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))) (-947) (-562 (-202)) (-562 (-354)) (-563 (-382 (-1081 (-522)))) (-563 (-498)) (-10 -8 (-15 -2838 ($))))) (T -451))
-((-2838 (*1 *1) (-5 *1 (-451))))
-(-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))) (-947) (-562 (-202)) (-562 (-354)) (-563 (-382 (-1081 (-522)))) (-563 (-498)) (-10 -8 (-15 -2838 ($))))
-((-1416 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1800 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2679 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#2| $ |#1| |#2|) 16)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2750 (((-3 |#2| "failed") |#1| $) 20)) (-3175 (($) NIL T CONST)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-3859 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) 18)) (-1423 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#2| $ |#1|) NIL)) (-3837 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 ((|#1| $) NIL (|has| |#1| (-784)))) (-3308 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2014 ((|#1| $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2966 (((-588 |#1|) $) 13)) (-1231 (((-108) |#1| $) NIL)) (-2116 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-4095 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3604 (((-588 |#1|) $) NIL)) (-1405 (((-108) |#1| $) NIL)) (-4151 (((-1032) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2294 ((|#2| $) NIL (|has| |#1| (-784)))) (-1414 (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL)) (-2602 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1525 (((-588 |#2|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) 19)) (-2545 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3990 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2190 (((-792) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-2795 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 11 (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3480 (((-708) $) 15 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL)) (-1478 (((-522) $) NIL) (((-382 (-522)) $) NIL)) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-2980 (($) 18)) (-2859 (((-108) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-3873 (((-354) $) 22) (((-202) $) 25) (((-382 (-1081 (-522))) $) 19) (((-498) $) 53)) (-2217 (((-792) $) 51) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (((-202) $) 24) (((-354) $) 21)) (-2742 (((-708)) NIL)) (-1407 (((-108) $ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 36 T CONST)) (-3709 (($) 11 T CONST)) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
+(((-451) (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))) (-947) (-562 (-202)) (-562 (-354)) (-563 (-382 (-1081 (-522)))) (-563 (-498)) (-10 -8 (-15 -2980 ($))))) (T -451))
+((-2980 (*1 *1) (-5 *1 (-451))))
+(-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))) (-947) (-562 (-202)) (-562 (-354)) (-563 (-382 (-1081 (-522)))) (-563 (-498)) (-10 -8 (-15 -2980 ($))))
+((-1419 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1883 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-3883 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#2| $ |#1| |#2|) 16)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-4011 (((-3 |#2| "failed") |#1| $) 20)) (-3367 (($) NIL T CONST)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-1700 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) 18)) (-1424 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#2| $ |#1|) NIL)) (-2395 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 ((|#1| $) NIL (|has| |#1| (-784)))) (-4084 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2201 ((|#1| $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2562 (((-588 |#1|) $) 13)) (-2241 (((-108) |#1| $) NIL)) (-1431 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3365 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-2130 (((-588 |#1|) $) NIL)) (-2103 (((-108) |#1| $) NIL)) (-4174 (((-1032) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2337 ((|#2| $) NIL (|has| |#1| (-784)))) (-2187 (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL)) (-1972 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1973 (((-588 |#2|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) 19)) (-2683 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3546 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-2217 (((-792) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-2501 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 11 (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3591 (((-708) $) 15 (|has| $ (-6 -4238)))))
(((-452 |#1| |#2| |#3|) (-13 (-1097 |#1| |#2|) (-10 -7 (-6 -4238))) (-1014) (-1014) (-1068)) (T -452))
NIL
(-13 (-1097 |#1| |#2|) (-10 -7 (-6 -4238)))
-((-3668 (((-522) (-522) (-522)) 7)) (-2512 (((-108) (-522) (-522) (-522) (-522)) 11)) (-1578 (((-1166 (-588 (-522))) (-708) (-708)) 23)))
-(((-453) (-10 -7 (-15 -3668 ((-522) (-522) (-522))) (-15 -2512 ((-108) (-522) (-522) (-522) (-522))) (-15 -1578 ((-1166 (-588 (-522))) (-708) (-708))))) (T -453))
-((-1578 (*1 *2 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1166 (-588 (-522)))) (-5 *1 (-453)))) (-2512 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-522)) (-5 *2 (-108)) (-5 *1 (-453)))) (-3668 (*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-453)))))
-(-10 -7 (-15 -3668 ((-522) (-522) (-522))) (-15 -2512 ((-108) (-522) (-522) (-522) (-522))) (-15 -1578 ((-1166 (-588 (-522))) (-708) (-708))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4090 (((-588 (-794 |#1|)) $) NIL)) (-1282 (((-1081 $) $ (-794 |#1|)) NIL) (((-1081 |#2|) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#2| (-514)))) (-2022 (($ $) NIL (|has| |#2| (-514)))) (-3739 (((-108) $) NIL (|has| |#2| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 (-794 |#1|))) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3119 (($ $) NIL (|has| |#2| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#2| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-794 |#1|) "failed") $) NIL)) (-1484 ((|#2| $) NIL) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-794 |#1|) $) NIL)) (-1950 (($ $ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2388 (($ $ (-588 (-522))) NIL)) (-3156 (($ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#2| (-838)))) (-2671 (($ $ |#2| (-455 (-3480 |#1|) (-708)) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-4073 (($ (-1081 |#2|) (-794 |#1|)) NIL) (($ (-1081 $) (-794 |#1|)) NIL)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#2| (-455 (-3480 |#1|) (-708))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ (-794 |#1|)) NIL)) (-2925 (((-455 (-3480 |#1|) (-708)) $) NIL) (((-708) $ (-794 |#1|)) NIL) (((-588 (-708)) $ (-588 (-794 |#1|))) NIL)) (-2814 (($ $ $) NIL (|has| |#2| (-784)))) (-2446 (($ $ $) NIL (|has| |#2| (-784)))) (-3861 (($ (-1 (-455 (-3480 |#1|) (-708)) (-455 (-3480 |#1|) (-708))) $) NIL)) (-1391 (($ (-1 |#2| |#2|) $) NIL)) (-3145 (((-3 (-794 |#1|) "failed") $) NIL)) (-3128 (($ $) NIL)) (-3138 ((|#2| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-2385 (((-1068) $) NIL)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-794 |#1|)) (|:| -1400 (-708))) "failed") $) NIL)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) NIL)) (-3118 ((|#2| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#2| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#2| (-838)))) (-2232 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-514)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-794 |#1|) |#2|) NIL) (($ $ (-588 (-794 |#1|)) (-588 |#2|)) NIL) (($ $ (-794 |#1|) $) NIL) (($ $ (-588 (-794 |#1|)) (-588 $)) NIL)) (-2769 (($ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2157 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2793 (((-455 (-3480 |#1|) (-708)) $) NIL) (((-708) $ (-794 |#1|)) NIL) (((-588 (-708)) $ (-588 (-794 |#1|))) NIL)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-794 |#1|) (-563 (-498))) (|has| |#2| (-563 (-498)))))) (-2255 ((|#2| $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) NIL) (($ (-794 |#1|)) NIL) (($ (-382 (-522))) NIL (-3708 (|has| |#2| (-37 (-382 (-522)))) (|has| |#2| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#2| (-514)))) (-3916 (((-588 |#2|) $) NIL)) (-3243 ((|#2| $ (-455 (-3480 |#1|) (-708))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#2| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#2| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#2| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-1574 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1620 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#2| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#2| (-37 (-382 (-522))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-454 |#1| |#2|) (-13 (-878 |#2| (-455 (-3480 |#1|) (-708)) (-794 |#1|)) (-10 -8 (-15 -2388 ($ $ (-588 (-522)))))) (-588 (-1085)) (-971)) (T -454))
-((-2388 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-454 *3 *4)) (-14 *3 (-588 (-1085))) (-4 *4 (-971)))))
-(-13 (-878 |#2| (-455 (-3480 |#1|) (-708)) (-794 |#1|)) (-10 -8 (-15 -2388 ($ $ (-588 (-522))))))
-((-1416 (((-108) $ $) NIL (|has| |#2| (-1014)))) (-2250 (((-108) $) NIL (|has| |#2| (-124)))) (-2468 (($ (-850)) NIL (|has| |#2| (-971)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1210 (($ $ $) NIL (|has| |#2| (-730)))) (-1233 (((-3 $ "failed") $ $) NIL (|has| |#2| (-124)))) (-4141 (((-108) $ (-708)) NIL)) (-1629 (((-708)) NIL (|has| |#2| (-343)))) (-1341 (((-522) $) NIL (|has| |#2| (-782)))) (-2379 ((|#2| $ (-522) |#2|) NIL (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1014)))) (-1484 (((-522) $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-382 (-522)) $) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) ((|#2| $) NIL (|has| |#2| (-1014)))) (-2096 (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL (|has| |#2| (-971))) (((-628 |#2|) (-628 $)) NIL (|has| |#2| (-971)))) (-2682 (((-3 $ "failed") $) NIL (|has| |#2| (-971)))) (-3255 (($) NIL (|has| |#2| (-343)))) (-3854 ((|#2| $ (-522) |#2|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#2| $ (-522)) 11)) (-3687 (((-108) $) NIL (|has| |#2| (-782)))) (-3837 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2782 (((-108) $) NIL (|has| |#2| (-971)))) (-2556 (((-108) $) NIL (|has| |#2| (-782)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-3308 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-3838 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#2| |#2|) $) NIL)) (-2120 (((-850) $) NIL (|has| |#2| (-343)))) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#2| (-1014)))) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-2717 (($ (-850)) NIL (|has| |#2| (-343)))) (-4151 (((-1032) $) NIL (|has| |#2| (-1014)))) (-2294 ((|#2| $) NIL (|has| (-522) (-784)))) (-2602 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1525 (((-588 |#2|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#2| $ (-522) |#2|) NIL) ((|#2| $ (-522)) NIL)) (-1883 ((|#2| $ $) NIL (|has| |#2| (-971)))) (-1962 (($ (-1166 |#2|)) NIL)) (-4078 (((-126)) NIL (|has| |#2| (-338)))) (-2157 (($ $) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-971)))) (-4168 (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-1166 |#2|) $) NIL) (($ (-522)) NIL (-3708 (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014))) (|has| |#2| (-971)))) (($ (-382 (-522))) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (($ |#2|) NIL (|has| |#2| (-1014))) (((-792) $) NIL (|has| |#2| (-562 (-792))))) (-2323 (((-708)) NIL (|has| |#2| (-971)))) (-3648 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2241 (($ $) NIL (|has| |#2| (-782)))) (-3510 (($ $ (-708)) NIL (|has| |#2| (-971))) (($ $ (-850)) NIL (|has| |#2| (-971)))) (-3566 (($) NIL (|has| |#2| (-124)) CONST)) (-3577 (($) NIL (|has| |#2| (-971)) CONST)) (-2213 (($ $) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-971)))) (-1574 (((-108) $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1558 (((-108) $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1531 (((-108) $ $) NIL (|has| |#2| (-1014)))) (-1566 (((-108) $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1549 (((-108) $ $) 15 (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1620 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1612 (($ $ $) NIL (|has| |#2| (-971))) (($ $) NIL (|has| |#2| (-971)))) (-1602 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-708)) NIL (|has| |#2| (-971))) (($ $ (-850)) NIL (|has| |#2| (-971)))) (* (($ $ $) NIL (|has| |#2| (-971))) (($ (-522) $) NIL (|has| |#2| (-971))) (($ $ |#2|) NIL (|has| |#2| (-664))) (($ |#2| $) NIL (|has| |#2| (-664))) (($ (-708) $) NIL (|has| |#2| (-124))) (($ (-850) $) NIL (|has| |#2| (-25)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1598 (((-522) (-522) (-522)) 7)) (-2098 (((-108) (-522) (-522) (-522) (-522)) 11)) (-1626 (((-1166 (-588 (-522))) (-708) (-708)) 23)))
+(((-453) (-10 -7 (-15 -1598 ((-522) (-522) (-522))) (-15 -2098 ((-108) (-522) (-522) (-522) (-522))) (-15 -1626 ((-1166 (-588 (-522))) (-708) (-708))))) (T -453))
+((-1626 (*1 *2 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1166 (-588 (-522)))) (-5 *1 (-453)))) (-2098 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-522)) (-5 *2 (-108)) (-5 *1 (-453)))) (-1598 (*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-453)))))
+(-10 -7 (-15 -1598 ((-522) (-522) (-522))) (-15 -2098 ((-108) (-522) (-522) (-522) (-522))) (-15 -1626 ((-1166 (-588 (-522))) (-708) (-708))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3533 (((-588 (-794 |#1|)) $) NIL)) (-1264 (((-1081 $) $ (-794 |#1|)) NIL) (((-1081 |#2|) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#2| (-514)))) (-2298 (($ $) NIL (|has| |#2| (-514)))) (-3007 (((-108) $) NIL (|has| |#2| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 (-794 |#1|))) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2961 (($ $) NIL (|has| |#2| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#2| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-794 |#1|) "failed") $) NIL)) (-1478 ((|#2| $) NIL) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-794 |#1|) $) NIL)) (-2908 (($ $ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2354 (($ $ (-588 (-522))) NIL)) (-3241 (($ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#2| (-838)))) (-3792 (($ $ |#2| (-455 (-3591 |#1|) (-708)) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-3520 (($ (-1081 |#2|) (-794 |#1|)) NIL) (($ (-1081 $) (-794 |#1|)) NIL)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#2| (-455 (-3591 |#1|) (-708))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ (-794 |#1|)) NIL)) (-3564 (((-455 (-3591 |#1|) (-708)) $) NIL) (((-708) $ (-794 |#1|)) NIL) (((-588 (-708)) $ (-588 (-794 |#1|))) NIL)) (-1308 (($ $ $) NIL (|has| |#2| (-784)))) (-2524 (($ $ $) NIL (|has| |#2| (-784)))) (-1723 (($ (-1 (-455 (-3591 |#1|) (-708)) (-455 (-3591 |#1|) (-708))) $) NIL)) (-3810 (($ (-1 |#2| |#2|) $) NIL)) (-3155 (((-3 (-794 |#1|) "failed") $) NIL)) (-3216 (($ $) NIL)) (-3224 ((|#2| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-2311 (((-1068) $) NIL)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| (-794 |#1|)) (|:| -3858 (-708))) "failed") $) NIL)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) NIL)) (-3207 ((|#2| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#2| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#2| (-838)))) (-2276 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-514)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-794 |#1|) |#2|) NIL) (($ $ (-588 (-794 |#1|)) (-588 |#2|)) NIL) (($ $ (-794 |#1|) $) NIL) (($ $ (-588 (-794 |#1|)) (-588 $)) NIL)) (-1615 (($ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2731 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2487 (((-455 (-3591 |#1|) (-708)) $) NIL) (((-708) $ (-794 |#1|)) NIL) (((-588 (-708)) $ (-588 (-794 |#1|))) NIL)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-794 |#1|) (-563 (-498))) (|has| |#2| (-563 (-498)))))) (-2988 ((|#2| $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) NIL) (($ (-794 |#1|)) NIL) (($ (-382 (-522))) NIL (-3844 (|has| |#2| (-37 (-382 (-522)))) (|has| |#2| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#2| (-514)))) (-2180 (((-588 |#2|) $) NIL)) (-1643 ((|#2| $ (-455 (-3591 |#1|) (-708))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#2| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#2| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#2| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-1623 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1682 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#2| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#2| (-37 (-382 (-522))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-454 |#1| |#2|) (-13 (-878 |#2| (-455 (-3591 |#1|) (-708)) (-794 |#1|)) (-10 -8 (-15 -2354 ($ $ (-588 (-522)))))) (-588 (-1085)) (-971)) (T -454))
+((-2354 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-454 *3 *4)) (-14 *3 (-588 (-1085))) (-4 *4 (-971)))))
+(-13 (-878 |#2| (-455 (-3591 |#1|) (-708)) (-794 |#1|)) (-10 -8 (-15 -2354 ($ $ (-588 (-522))))))
+((-1419 (((-108) $ $) NIL (|has| |#2| (-1014)))) (-2944 (((-108) $) NIL (|has| |#2| (-124)))) (-2826 (($ (-850)) NIL (|has| |#2| (-971)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1827 (($ $ $) NIL (|has| |#2| (-730)))) (-2265 (((-3 $ "failed") $ $) NIL (|has| |#2| (-124)))) (-2717 (((-108) $ (-708)) NIL)) (-1685 (((-708)) NIL (|has| |#2| (-343)))) (-3355 (((-522) $) NIL (|has| |#2| (-782)))) (-2437 ((|#2| $ (-522) |#2|) NIL (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1014)))) (-1478 (((-522) $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-382 (-522)) $) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) ((|#2| $) NIL (|has| |#2| (-1014)))) (-1226 (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL (|has| |#2| (-971))) (((-628 |#2|) (-628 $)) NIL (|has| |#2| (-971)))) (-3920 (((-3 $ "failed") $) NIL (|has| |#2| (-971)))) (-3344 (($) NIL (|has| |#2| (-343)))) (-2411 ((|#2| $ (-522) |#2|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#2| $ (-522)) 11)) (-3603 (((-108) $) NIL (|has| |#2| (-782)))) (-2395 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2859 (((-108) $) NIL (|has| |#2| (-971)))) (-3740 (((-108) $) NIL (|has| |#2| (-782)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-4084 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-2397 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#2| |#2|) $) NIL)) (-1475 (((-850) $) NIL (|has| |#2| (-343)))) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#2| (-1014)))) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-2882 (($ (-850)) NIL (|has| |#2| (-343)))) (-4174 (((-1032) $) NIL (|has| |#2| (-1014)))) (-2337 ((|#2| $) NIL (|has| (-522) (-784)))) (-1972 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1973 (((-588 |#2|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#2| $ (-522) |#2|) NIL) ((|#2| $ (-522)) NIL)) (-4024 ((|#2| $ $) NIL (|has| |#2| (-971)))) (-2041 (($ (-1166 |#2|)) NIL)) (-3222 (((-126)) NIL (|has| |#2| (-338)))) (-2731 (($ $) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-971)))) (-4187 (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-1166 |#2|) $) NIL) (($ (-522)) NIL (-3844 (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014))) (|has| |#2| (-971)))) (($ (-382 (-522))) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (($ |#2|) NIL (|has| |#2| (-1014))) (((-792) $) NIL (|has| |#2| (-562 (-792))))) (-2742 (((-708)) NIL (|has| |#2| (-971)))) (-1381 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-4126 (($ $) NIL (|has| |#2| (-782)))) (-3622 (($ $ (-708)) NIL (|has| |#2| (-971))) (($ $ (-850)) NIL (|has| |#2| (-971)))) (-3697 (($) NIL (|has| |#2| (-124)) CONST)) (-3709 (($) NIL (|has| |#2| (-971)) CONST)) (-2252 (($ $) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-971)))) (-1623 (((-108) $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1597 (((-108) $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1562 (((-108) $ $) NIL (|has| |#2| (-1014)))) (-1609 (((-108) $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1587 (((-108) $ $) 15 (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1682 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1672 (($ $ $) NIL (|has| |#2| (-971))) (($ $) NIL (|has| |#2| (-971)))) (-1661 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-708)) NIL (|has| |#2| (-971))) (($ $ (-850)) NIL (|has| |#2| (-971)))) (* (($ $ $) NIL (|has| |#2| (-971))) (($ (-522) $) NIL (|has| |#2| (-971))) (($ $ |#2|) NIL (|has| |#2| (-664))) (($ |#2| $) NIL (|has| |#2| (-664))) (($ (-708) $) NIL (|has| |#2| (-124))) (($ (-850) $) NIL (|has| |#2| (-25)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-455 |#1| |#2|) (-215 |#1| |#2|) (-708) (-730)) (T -455))
NIL
(-215 |#1| |#2|)
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) NIL)) (-3175 (($) NIL T CONST)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-1369 (($ $ $) 32)) (-2160 (($ $ $) 31)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2446 ((|#1| $) 26)) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-2116 ((|#1| $) 27)) (-4095 (($ |#1| $) 10)) (-4028 (($ (-588 |#1|)) 12)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-4087 ((|#1| $) 23)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) 9)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-2795 (($ (-588 |#1|)) 29)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3480 (((-708) $) 21 (|has| $ (-6 -4238)))))
-(((-456 |#1|) (-13 (-896 |#1|) (-10 -8 (-15 -4028 ($ (-588 |#1|))))) (-784)) (T -456))
-((-4028 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-456 *3)))))
-(-13 (-896 |#1|) (-10 -8 (-15 -4028 ($ (-588 |#1|)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3864 (($ $) 69)) (-2900 (((-108) $) NIL)) (-2385 (((-1068) $) NIL)) (-2154 (((-388 |#2| (-382 |#2|) |#3| |#4|) $) 43)) (-4151 (((-1032) $) NIL)) (-1383 (((-3 |#4| "failed") $) 105)) (-4118 (($ (-388 |#2| (-382 |#2|) |#3| |#4|)) 76) (($ |#4|) 32) (($ |#1| |#1|) 113) (($ |#1| |#1| (-522)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 125)) (-3496 (((-2 (|:| -1781 (-388 |#2| (-382 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 45)) (-2190 (((-792) $) 100)) (-3566 (($) 33 T CONST)) (-1531 (((-108) $ $) 107)) (-1612 (($ $) 72) (($ $ $) NIL)) (-1602 (($ $ $) 70)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 73)))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) NIL)) (-3367 (($) NIL T CONST)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-3557 (($ $ $) 32)) (-3164 (($ $ $) 31)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2524 ((|#1| $) 26)) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1431 ((|#1| $) 27)) (-3365 (($ |#1| $) 10)) (-3924 (($ (-588 |#1|)) 12)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3295 ((|#1| $) 23)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) 9)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-2501 (($ (-588 |#1|)) 29)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3591 (((-708) $) 21 (|has| $ (-6 -4238)))))
+(((-456 |#1|) (-13 (-896 |#1|) (-10 -8 (-15 -3924 ($ (-588 |#1|))))) (-784)) (T -456))
+((-3924 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-456 *3)))))
+(-13 (-896 |#1|) (-10 -8 (-15 -3924 ($ (-588 |#1|)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-2153 (($ $) 69)) (-1536 (((-108) $) NIL)) (-2311 (((-1068) $) NIL)) (-3129 (((-388 |#2| (-382 |#2|) |#3| |#4|) $) 43)) (-4174 (((-1032) $) NIL)) (-1368 (((-3 |#4| "failed") $) 105)) (-2416 (($ (-388 |#2| (-382 |#2|) |#3| |#4|)) 76) (($ |#4|) 32) (($ |#1| |#1|) 113) (($ |#1| |#1| (-522)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 125)) (-2327 (((-2 (|:| -1868 (-388 |#2| (-382 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 45)) (-2217 (((-792) $) 100)) (-3697 (($) 33 T CONST)) (-1562 (((-108) $ $) 107)) (-1672 (($ $) 72) (($ $ $) NIL)) (-1661 (($ $ $) 70)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 73)))
(((-457 |#1| |#2| |#3| |#4|) (-310 |#1| |#2| |#3| |#4|) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|)) (T -457))
NIL
(-310 |#1| |#2| |#3| |#4|)
-((-3414 (((-522) (-588 (-522))) 30)) (-3232 ((|#1| (-588 |#1|)) 56)) (-1853 (((-588 |#1|) (-588 |#1|)) 57)) (-2670 (((-588 |#1|) (-588 |#1|)) 59)) (-2259 ((|#1| (-588 |#1|)) 58)) (-2255 (((-588 (-522)) (-588 |#1|)) 33)))
-(((-458 |#1|) (-10 -7 (-15 -2259 (|#1| (-588 |#1|))) (-15 -3232 (|#1| (-588 |#1|))) (-15 -2670 ((-588 |#1|) (-588 |#1|))) (-15 -1853 ((-588 |#1|) (-588 |#1|))) (-15 -2255 ((-588 (-522)) (-588 |#1|))) (-15 -3414 ((-522) (-588 (-522))))) (-1142 (-522))) (T -458))
-((-3414 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-522)) (-5 *1 (-458 *4)) (-4 *4 (-1142 *2)))) (-2255 (*1 *2 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-1142 (-522))) (-5 *2 (-588 (-522))) (-5 *1 (-458 *4)))) (-1853 (*1 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1142 (-522))) (-5 *1 (-458 *3)))) (-2670 (*1 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1142 (-522))) (-5 *1 (-458 *3)))) (-3232 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-5 *1 (-458 *2)) (-4 *2 (-1142 (-522))))) (-2259 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-5 *1 (-458 *2)) (-4 *2 (-1142 (-522))))))
-(-10 -7 (-15 -2259 (|#1| (-588 |#1|))) (-15 -3232 (|#1| (-588 |#1|))) (-15 -2670 ((-588 |#1|) (-588 |#1|))) (-15 -1853 ((-588 |#1|) (-588 |#1|))) (-15 -2255 ((-588 (-522)) (-588 |#1|))) (-15 -3414 ((-522) (-588 (-522)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2229 (((-522) $) NIL (|has| (-522) (-283)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL (|has| (-522) (-757)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| (-522) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-522) (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| (-522) (-962 (-522))))) (-1484 (((-522) $) NIL) (((-1085) $) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-522) (-962 (-522)))) (((-522) $) NIL (|has| (-522) (-962 (-522))))) (-2277 (($ $ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| (-522) (-507)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-3687 (((-108) $) NIL (|has| (-522) (-757)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-522) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-522) (-815 (-354))))) (-2782 (((-108) $) NIL)) (-2902 (($ $) NIL)) (-2805 (((-522) $) NIL)) (-3004 (((-3 $ "failed") $) NIL (|has| (-522) (-1061)))) (-2556 (((-108) $) NIL (|has| (-522) (-757)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2814 (($ $ $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| (-522) (-784)))) (-1391 (($ (-1 (-522) (-522)) $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| (-522) (-1061)) CONST)) (-2095 (($ (-382 (-522))) 8)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3933 (($ $) NIL (|has| (-522) (-283))) (((-382 (-522)) $) NIL)) (-3686 (((-522) $) NIL (|has| (-522) (-507)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2289 (($ $ (-588 (-522)) (-588 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-522) (-522)) NIL (|has| (-522) (-285 (-522)))) (($ $ (-270 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-270 (-522)))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-1085)) (-588 (-522))) NIL (|has| (-522) (-483 (-1085) (-522)))) (($ $ (-1085) (-522)) NIL (|has| (-522) (-483 (-1085) (-522))))) (-3730 (((-708) $) NIL)) (-2545 (($ $ (-522)) NIL (|has| (-522) (-262 (-522) (-522))))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2157 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-3533 (($ $) NIL)) (-2816 (((-522) $) NIL)) (-1431 (((-821 (-522)) $) NIL (|has| (-522) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-522) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-522) (-563 (-498)))) (((-354) $) NIL (|has| (-522) (-947))) (((-202) $) NIL (|has| (-522) (-947)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-522) (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) 7) (($ (-522)) NIL) (($ (-1085)) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL) (((-930 16) $) 9)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| (-522) (-838))) (|has| (-522) (-133))))) (-2323 (((-708)) NIL)) (-3025 (((-522) $) NIL (|has| (-522) (-507)))) (-3958 (((-108) $ $) NIL)) (-2241 (($ $) NIL (|has| (-522) (-757)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-1574 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1558 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1549 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1620 (($ $ $) NIL) (($ (-522) (-522)) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-522) $) NIL) (($ $ (-522)) NIL)))
-(((-459) (-13 (-919 (-522)) (-10 -8 (-15 -2190 ((-382 (-522)) $)) (-15 -2190 ((-930 16) $)) (-15 -3933 ((-382 (-522)) $)) (-15 -2095 ($ (-382 (-522))))))) (T -459))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-459)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-930 16)) (-5 *1 (-459)))) (-3933 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-459)))) (-2095 (*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-459)))))
-(-13 (-919 (-522)) (-10 -8 (-15 -2190 ((-382 (-522)) $)) (-15 -2190 ((-930 16) $)) (-15 -3933 ((-382 (-522)) $)) (-15 -2095 ($ (-382 (-522))))))
-((-3308 (((-588 |#2|) $) 22)) (-2246 (((-108) |#2| $) 27)) (-3053 (((-108) (-1 (-108) |#2|) $) 20)) (-2289 (($ $ (-588 (-270 |#2|))) 12) (($ $ (-270 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-588 |#2|) (-588 |#2|)) NIL)) (-4168 (((-708) (-1 (-108) |#2|) $) 21) (((-708) |#2| $) 25)) (-2190 (((-792) $) 36)) (-3648 (((-108) (-1 (-108) |#2|) $) 19)) (-1531 (((-108) $ $) 30)) (-3480 (((-708) $) 16)))
-(((-460 |#1| |#2|) (-10 -8 (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -2289 (|#1| |#1| (-588 |#2|) (-588 |#2|))) (-15 -2289 (|#1| |#1| |#2| |#2|)) (-15 -2289 (|#1| |#1| (-270 |#2|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#2|)))) (-15 -2246 ((-108) |#2| |#1|)) (-15 -4168 ((-708) |#2| |#1|)) (-15 -3308 ((-588 |#2|) |#1|)) (-15 -4168 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3053 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3648 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3480 ((-708) |#1|))) (-461 |#2|) (-1120)) (T -460))
-NIL
-(-10 -8 (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -2289 (|#1| |#1| (-588 |#2|) (-588 |#2|))) (-15 -2289 (|#1| |#1| |#2| |#2|)) (-15 -2289 (|#1| |#1| (-270 |#2|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#2|)))) (-15 -2246 ((-108) |#2| |#1|)) (-15 -4168 ((-708) |#2| |#1|)) (-15 -3308 ((-588 |#2|) |#1|)) (-15 -4168 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3053 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3648 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3480 ((-708) |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) 8)) (-3175 (($) 7 T CONST)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-3926 (((-522) (-588 (-522))) 30)) (-2811 ((|#1| (-588 |#1|)) 56)) (-2542 (((-588 |#1|) (-588 |#1|)) 57)) (-3784 (((-588 |#1|) (-588 |#1|)) 59)) (-2308 ((|#1| (-588 |#1|)) 58)) (-2988 (((-588 (-522)) (-588 |#1|)) 33)))
+(((-458 |#1|) (-10 -7 (-15 -2308 (|#1| (-588 |#1|))) (-15 -2811 (|#1| (-588 |#1|))) (-15 -3784 ((-588 |#1|) (-588 |#1|))) (-15 -2542 ((-588 |#1|) (-588 |#1|))) (-15 -2988 ((-588 (-522)) (-588 |#1|))) (-15 -3926 ((-522) (-588 (-522))))) (-1142 (-522))) (T -458))
+((-3926 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-522)) (-5 *1 (-458 *4)) (-4 *4 (-1142 *2)))) (-2988 (*1 *2 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-1142 (-522))) (-5 *2 (-588 (-522))) (-5 *1 (-458 *4)))) (-2542 (*1 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1142 (-522))) (-5 *1 (-458 *3)))) (-3784 (*1 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1142 (-522))) (-5 *1 (-458 *3)))) (-2811 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-5 *1 (-458 *2)) (-4 *2 (-1142 (-522))))) (-2308 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-5 *1 (-458 *2)) (-4 *2 (-1142 (-522))))))
+(-10 -7 (-15 -2308 (|#1| (-588 |#1|))) (-15 -2811 (|#1| (-588 |#1|))) (-15 -3784 ((-588 |#1|) (-588 |#1|))) (-15 -2542 ((-588 |#1|) (-588 |#1|))) (-15 -2988 ((-588 (-522)) (-588 |#1|))) (-15 -3926 ((-522) (-588 (-522)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3049 (((-522) $) NIL (|has| (-522) (-283)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL (|has| (-522) (-757)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| (-522) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-522) (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| (-522) (-962 (-522))))) (-1478 (((-522) $) NIL) (((-1085) $) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-522) (-962 (-522)))) (((-522) $) NIL (|has| (-522) (-962 (-522))))) (-2333 (($ $ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| (-522) (-507)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3603 (((-108) $) NIL (|has| (-522) (-757)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-522) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-522) (-815 (-354))))) (-2859 (((-108) $) NIL)) (-1558 (($ $) NIL)) (-2947 (((-522) $) NIL)) (-4208 (((-3 $ "failed") $) NIL (|has| (-522) (-1061)))) (-3740 (((-108) $) NIL (|has| (-522) (-757)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1308 (($ $ $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| (-522) (-784)))) (-3810 (($ (-1 (-522) (-522)) $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| (-522) (-1061)) CONST)) (-1217 (($ (-382 (-522))) 8)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4194 (($ $) NIL (|has| (-522) (-283))) (((-382 (-522)) $) NIL)) (-3592 (((-522) $) NIL (|has| (-522) (-507)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2330 (($ $ (-588 (-522)) (-588 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-522) (-522)) NIL (|has| (-522) (-285 (-522)))) (($ $ (-270 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-270 (-522)))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-1085)) (-588 (-522))) NIL (|has| (-522) (-483 (-1085) (-522)))) (($ $ (-1085) (-522)) NIL (|has| (-522) (-483 (-1085) (-522))))) (-4031 (((-708) $) NIL)) (-2683 (($ $ (-522)) NIL (|has| (-522) (-262 (-522) (-522))))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2731 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-2762 (($ $) NIL)) (-2959 (((-522) $) NIL)) (-3873 (((-821 (-522)) $) NIL (|has| (-522) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-522) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-522) (-563 (-498)))) (((-354) $) NIL (|has| (-522) (-947))) (((-202) $) NIL (|has| (-522) (-947)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-522) (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) 7) (($ (-522)) NIL) (($ (-1085)) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL) (((-930 16) $) 9)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| (-522) (-838))) (|has| (-522) (-133))))) (-2742 (((-708)) NIL)) (-1379 (((-522) $) NIL (|has| (-522) (-507)))) (-1407 (((-108) $ $) NIL)) (-4126 (($ $) NIL (|has| (-522) (-757)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-1623 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1597 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1587 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1682 (($ $ $) NIL) (($ (-522) (-522)) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-522) $) NIL) (($ $ (-522)) NIL)))
+(((-459) (-13 (-919 (-522)) (-10 -8 (-15 -2217 ((-382 (-522)) $)) (-15 -2217 ((-930 16) $)) (-15 -4194 ((-382 (-522)) $)) (-15 -1217 ($ (-382 (-522))))))) (T -459))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-459)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-930 16)) (-5 *1 (-459)))) (-4194 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-459)))) (-1217 (*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-459)))))
+(-13 (-919 (-522)) (-10 -8 (-15 -2217 ((-382 (-522)) $)) (-15 -2217 ((-930 16) $)) (-15 -4194 ((-382 (-522)) $)) (-15 -1217 ($ (-382 (-522))))))
+((-4084 (((-588 |#2|) $) 22)) (-4176 (((-108) |#2| $) 27)) (-3487 (((-108) (-1 (-108) |#2|) $) 20)) (-2330 (($ $ (-588 (-270 |#2|))) 12) (($ $ (-270 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-588 |#2|) (-588 |#2|)) NIL)) (-4187 (((-708) (-1 (-108) |#2|) $) 21) (((-708) |#2| $) 25)) (-2217 (((-792) $) 36)) (-1381 (((-108) (-1 (-108) |#2|) $) 19)) (-1562 (((-108) $ $) 30)) (-3591 (((-708) $) 16)))
+(((-460 |#1| |#2|) (-10 -8 (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -2330 (|#1| |#1| (-588 |#2|) (-588 |#2|))) (-15 -2330 (|#1| |#1| |#2| |#2|)) (-15 -2330 (|#1| |#1| (-270 |#2|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#2|)))) (-15 -4176 ((-108) |#2| |#1|)) (-15 -4187 ((-708) |#2| |#1|)) (-15 -4084 ((-588 |#2|) |#1|)) (-15 -4187 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3487 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1381 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3591 ((-708) |#1|))) (-461 |#2|) (-1120)) (T -460))
+NIL
+(-10 -8 (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -2330 (|#1| |#1| (-588 |#2|) (-588 |#2|))) (-15 -2330 (|#1| |#1| |#2| |#2|)) (-15 -2330 (|#1| |#1| (-270 |#2|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#2|)))) (-15 -4176 ((-108) |#2| |#1|)) (-15 -4187 ((-708) |#2| |#1|)) (-15 -4084 ((-588 |#2|) |#1|)) (-15 -4187 ((-708) (-1 (-108) |#2|) |#1|)) (-15 -3487 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1381 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3591 ((-708) |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) 8)) (-3367 (($) 7 T CONST)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-461 |#1|) (-1197) (-1120)) (T -461))
-((-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-461 *3)) (-4 *3 (-1120)))) (-3838 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4239)) (-4 *1 (-461 *3)) (-4 *3 (-1120)))) (-3648 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4238)) (-4 *1 (-461 *4)) (-4 *4 (-1120)) (-5 *2 (-108)))) (-3053 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4238)) (-4 *1 (-461 *4)) (-4 *4 (-1120)) (-5 *2 (-108)))) (-4168 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4238)) (-4 *1 (-461 *4)) (-4 *4 (-1120)) (-5 *2 (-708)))) (-3837 (*1 *2 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120)) (-5 *2 (-588 *3)))) (-3308 (*1 *2 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120)) (-5 *2 (-588 *3)))) (-4168 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-708)))) (-2246 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-108)))))
-(-13 (-33) (-10 -8 (IF (|has| |t#1| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) (IF (|has| |t#1| (-1014)) (-6 (-1014)) |%noBranch|) (IF (|has| |t#1| (-1014)) (IF (|has| |t#1| (-285 |t#1|)) (-6 (-285 |t#1|)) |%noBranch|) |%noBranch|) (-15 -1391 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4239)) (-15 -3838 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4238)) (PROGN (-15 -3648 ((-108) (-1 (-108) |t#1|) $)) (-15 -3053 ((-108) (-1 (-108) |t#1|) $)) (-15 -4168 ((-708) (-1 (-108) |t#1|) $)) (-15 -3837 ((-588 |t#1|) $)) (-15 -3308 ((-588 |t#1|) $)) (IF (|has| |t#1| (-1014)) (PROGN (-15 -4168 ((-708) |t#1| $)) (-15 -2246 ((-108) |t#1| $))) |%noBranch|)) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-2908 (($ $) 15)) (-2884 (($ $) 24)) (-2930 (($ $) 12)) (-1738 (($ $) 10)) (-2919 (($ $) 17)) (-2896 (($ $) 22)))
-(((-462 |#1|) (-10 -8 (-15 -2896 (|#1| |#1|)) (-15 -2919 (|#1| |#1|)) (-15 -1738 (|#1| |#1|)) (-15 -2930 (|#1| |#1|)) (-15 -2884 (|#1| |#1|)) (-15 -2908 (|#1| |#1|))) (-463)) (T -462))
-NIL
-(-10 -8 (-15 -2896 (|#1| |#1|)) (-15 -2919 (|#1| |#1|)) (-15 -1738 (|#1| |#1|)) (-15 -2930 (|#1| |#1|)) (-15 -2884 (|#1| |#1|)) (-15 -2908 (|#1| |#1|)))
-((-2908 (($ $) 11)) (-2884 (($ $) 10)) (-2930 (($ $) 9)) (-1738 (($ $) 8)) (-2919 (($ $) 7)) (-2896 (($ $) 6)))
+((-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-461 *3)) (-4 *3 (-1120)))) (-2397 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4239)) (-4 *1 (-461 *3)) (-4 *3 (-1120)))) (-1381 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4238)) (-4 *1 (-461 *4)) (-4 *4 (-1120)) (-5 *2 (-108)))) (-3487 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4238)) (-4 *1 (-461 *4)) (-4 *4 (-1120)) (-5 *2 (-108)))) (-4187 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4238)) (-4 *1 (-461 *4)) (-4 *4 (-1120)) (-5 *2 (-708)))) (-2395 (*1 *2 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120)) (-5 *2 (-588 *3)))) (-4084 (*1 *2 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120)) (-5 *2 (-588 *3)))) (-4187 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-708)))) (-4176 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-108)))))
+(-13 (-33) (-10 -8 (IF (|has| |t#1| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) (IF (|has| |t#1| (-1014)) (-6 (-1014)) |%noBranch|) (IF (|has| |t#1| (-1014)) (IF (|has| |t#1| (-285 |t#1|)) (-6 (-285 |t#1|)) |%noBranch|) |%noBranch|) (-15 -3810 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4239)) (-15 -2397 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4238)) (PROGN (-15 -1381 ((-108) (-1 (-108) |t#1|) $)) (-15 -3487 ((-108) (-1 (-108) |t#1|) $)) (-15 -4187 ((-708) (-1 (-108) |t#1|) $)) (-15 -2395 ((-588 |t#1|) $)) (-15 -4084 ((-588 |t#1|) $)) (IF (|has| |t#1| (-1014)) (PROGN (-15 -4187 ((-708) |t#1| $)) (-15 -4176 ((-108) |t#1| $))) |%noBranch|)) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-3044 (($ $) 15)) (-3023 (($ $) 24)) (-3066 (($ $) 12)) (-1831 (($ $) 10)) (-3054 (($ $) 17)) (-3035 (($ $) 22)))
+(((-462 |#1|) (-10 -8 (-15 -3035 (|#1| |#1|)) (-15 -3054 (|#1| |#1|)) (-15 -1831 (|#1| |#1|)) (-15 -3066 (|#1| |#1|)) (-15 -3023 (|#1| |#1|)) (-15 -3044 (|#1| |#1|))) (-463)) (T -462))
+NIL
+(-10 -8 (-15 -3035 (|#1| |#1|)) (-15 -3054 (|#1| |#1|)) (-15 -1831 (|#1| |#1|)) (-15 -3066 (|#1| |#1|)) (-15 -3023 (|#1| |#1|)) (-15 -3044 (|#1| |#1|)))
+((-3044 (($ $) 11)) (-3023 (($ $) 10)) (-3066 (($ $) 9)) (-1831 (($ $) 8)) (-3054 (($ $) 7)) (-3035 (($ $) 6)))
(((-463) (-1197)) (T -463))
-((-2908 (*1 *1 *1) (-4 *1 (-463))) (-2884 (*1 *1 *1) (-4 *1 (-463))) (-2930 (*1 *1 *1) (-4 *1 (-463))) (-1738 (*1 *1 *1) (-4 *1 (-463))) (-2919 (*1 *1 *1) (-4 *1 (-463))) (-2896 (*1 *1 *1) (-4 *1 (-463))))
-(-13 (-10 -8 (-15 -2896 ($ $)) (-15 -2919 ($ $)) (-15 -1738 ($ $)) (-15 -2930 ($ $)) (-15 -2884 ($ $)) (-15 -2908 ($ $))))
-((-1916 (((-393 |#4|) |#4| (-1 (-393 |#2|) |#2|)) 42)))
-(((-464 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1916 ((-393 |#4|) |#4| (-1 (-393 |#2|) |#2|)))) (-338) (-1142 |#1|) (-13 (-338) (-135) (-662 |#1| |#2|)) (-1142 |#3|)) (T -464))
-((-1916 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338)) (-4 *7 (-13 (-338) (-135) (-662 *5 *6))) (-5 *2 (-393 *3)) (-5 *1 (-464 *5 *6 *7 *3)) (-4 *3 (-1142 *7)))))
-(-10 -7 (-15 -1916 ((-393 |#4|) |#4| (-1 (-393 |#2|) |#2|))))
-((-1416 (((-108) $ $) NIL)) (-1617 (((-588 $) (-1081 $) (-1085)) NIL) (((-588 $) (-1081 $)) NIL) (((-588 $) (-881 $)) NIL)) (-4032 (($ (-1081 $) (-1085)) NIL) (($ (-1081 $)) NIL) (($ (-881 $)) NIL)) (-2250 (((-108) $) 37)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1568 (((-108) $ $) 63)) (-1886 (((-588 (-561 $)) $) 47)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3305 (($ $ (-270 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1929 (($ $) NIL)) (-1687 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-1221 (((-588 $) (-1081 $) (-1085)) NIL) (((-588 $) (-1081 $)) NIL) (((-588 $) (-881 $)) NIL)) (-3944 (($ (-1081 $) (-1085)) NIL) (($ (-1081 $)) NIL) (($ (-881 $)) NIL)) (-1297 (((-3 (-561 $) "failed") $) NIL) (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL)) (-1484 (((-561 $) $) NIL) (((-522) $) NIL) (((-382 (-522)) $) 49)) (-2277 (($ $ $) NIL)) (-2096 (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -1222 (-628 (-382 (-522)))) (|:| |vec| (-1166 (-382 (-522))))) (-628 $) (-1166 $)) NIL) (((-628 (-382 (-522))) (-628 $)) NIL)) (-3864 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-1953 (($ $) NIL) (($ (-588 $)) NIL)) (-4161 (((-588 (-110)) $) NIL)) (-2626 (((-110) (-110)) NIL)) (-2782 (((-108) $) 40)) (-2591 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2805 (((-1037 (-522) (-561 $)) $) 35)) (-1504 (($ $ (-522)) NIL)) (-2100 (((-1081 $) (-1081 $) (-561 $)) 78) (((-1081 $) (-1081 $) (-588 (-561 $))) 54) (($ $ (-561 $)) 67) (($ $ (-588 (-561 $))) 68)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1711 (((-1081 $) (-561 $)) 65 (|has| $ (-971)))) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-1391 (($ (-1 $ $) (-561 $)) NIL)) (-3993 (((-3 (-561 $) "failed") $) NIL)) (-2224 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-1267 (((-588 (-561 $)) $) NIL)) (-2909 (($ (-110) $) NIL) (($ (-110) (-588 $)) NIL)) (-2249 (((-108) $ (-110)) NIL) (((-108) $ (-1085)) NIL)) (-3098 (($ $) NIL)) (-4155 (((-708) $) NIL)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ (-588 $)) NIL) (($ $ $) NIL)) (-1648 (((-108) $ $) NIL) (((-108) $ (-1085)) NIL)) (-1916 (((-393 $) $) NIL)) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1263 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2289 (($ $ (-561 $) $) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-1085) (-1 $ (-588 $))) NIL) (($ $ (-1085) (-1 $ $)) NIL) (($ $ (-588 (-110)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-110) (-1 $ (-588 $))) NIL) (($ $ (-110) (-1 $ $)) NIL)) (-3730 (((-708) $) NIL)) (-2545 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-588 $)) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3043 (($ $) NIL) (($ $ $) NIL)) (-2157 (($ $ (-708)) NIL) (($ $) 34)) (-2816 (((-1037 (-522) (-561 $)) $) 18)) (-1479 (($ $) NIL (|has| $ (-971)))) (-1431 (((-354) $) 92) (((-202) $) 100) (((-154 (-354)) $) 108)) (-2190 (((-792) $) NIL) (($ (-561 $)) NIL) (($ (-382 (-522))) NIL) (($ $) NIL) (($ (-522)) NIL) (($ (-1037 (-522) (-561 $))) 19)) (-2323 (((-708)) NIL)) (-2308 (($ $) NIL) (($ (-588 $)) NIL)) (-3614 (((-108) (-110)) 84)) (-3958 (((-108) $ $) NIL)) (-3510 (($ $ (-522)) NIL) (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3566 (($) 9 T CONST)) (-3577 (($) 20 T CONST)) (-2213 (($ $ (-708)) NIL) (($ $) NIL)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 22)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) NIL)) (-1620 (($ $ $) 42)) (-1612 (($ $ $) NIL) (($ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-382 (-522))) NIL) (($ $ (-522)) 45) (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (* (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL) (($ $ $) 25) (($ (-522) $) NIL) (($ (-708) $) NIL) (($ (-850) $) NIL)))
-(((-465) (-13 (-278) (-27) (-962 (-522)) (-962 (-382 (-522))) (-584 (-522)) (-947) (-584 (-382 (-522))) (-135) (-563 (-154 (-354))) (-210) (-10 -8 (-15 -2190 ($ (-1037 (-522) (-561 $)))) (-15 -2805 ((-1037 (-522) (-561 $)) $)) (-15 -2816 ((-1037 (-522) (-561 $)) $)) (-15 -3864 ($ $)) (-15 -1568 ((-108) $ $)) (-15 -2100 ((-1081 $) (-1081 $) (-561 $))) (-15 -2100 ((-1081 $) (-1081 $) (-588 (-561 $)))) (-15 -2100 ($ $ (-561 $))) (-15 -2100 ($ $ (-588 (-561 $))))))) (T -465))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1037 (-522) (-561 (-465)))) (-5 *1 (-465)))) (-2805 (*1 *2 *1) (-12 (-5 *2 (-1037 (-522) (-561 (-465)))) (-5 *1 (-465)))) (-2816 (*1 *2 *1) (-12 (-5 *2 (-1037 (-522) (-561 (-465)))) (-5 *1 (-465)))) (-3864 (*1 *1 *1) (-5 *1 (-465))) (-1568 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-465)))) (-2100 (*1 *2 *2 *3) (-12 (-5 *2 (-1081 (-465))) (-5 *3 (-561 (-465))) (-5 *1 (-465)))) (-2100 (*1 *2 *2 *3) (-12 (-5 *2 (-1081 (-465))) (-5 *3 (-588 (-561 (-465)))) (-5 *1 (-465)))) (-2100 (*1 *1 *1 *2) (-12 (-5 *2 (-561 (-465))) (-5 *1 (-465)))) (-2100 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-561 (-465)))) (-5 *1 (-465)))))
-(-13 (-278) (-27) (-962 (-522)) (-962 (-382 (-522))) (-584 (-522)) (-947) (-584 (-382 (-522))) (-135) (-563 (-154 (-354))) (-210) (-10 -8 (-15 -2190 ($ (-1037 (-522) (-561 $)))) (-15 -2805 ((-1037 (-522) (-561 $)) $)) (-15 -2816 ((-1037 (-522) (-561 $)) $)) (-15 -3864 ($ $)) (-15 -1568 ((-108) $ $)) (-15 -2100 ((-1081 $) (-1081 $) (-561 $))) (-15 -2100 ((-1081 $) (-1081 $) (-588 (-561 $)))) (-15 -2100 ($ $ (-561 $))) (-15 -2100 ($ $ (-588 (-561 $))))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-3537 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3216 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#1| $ (-522) |#1|) 25 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1423 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) 22 (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) 21)) (-3238 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1811 (($ (-708) |#1|) 14)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) 12 (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2160 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-522) $) 23 (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 16 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 17) (($ (-1 |#1| |#1| |#1|) $ $) 19)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1661 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2294 ((|#1| $) NIL (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2602 (($ $ |#1|) 10 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) 13)) (-2545 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) 24) (($ $ (-1133 (-522))) NIL)) (-3696 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) NIL)) (-4165 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3480 (((-708) $) 9 (|has| $ (-6 -4238)))))
+((-3044 (*1 *1 *1) (-4 *1 (-463))) (-3023 (*1 *1 *1) (-4 *1 (-463))) (-3066 (*1 *1 *1) (-4 *1 (-463))) (-1831 (*1 *1 *1) (-4 *1 (-463))) (-3054 (*1 *1 *1) (-4 *1 (-463))) (-3035 (*1 *1 *1) (-4 *1 (-463))))
+(-13 (-10 -8 (-15 -3035 ($ $)) (-15 -3054 ($ $)) (-15 -1831 ($ $)) (-15 -3066 ($ $)) (-15 -3023 ($ $)) (-15 -3044 ($ $))))
+((-2006 (((-393 |#4|) |#4| (-1 (-393 |#2|) |#2|)) 42)))
+(((-464 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2006 ((-393 |#4|) |#4| (-1 (-393 |#2|) |#2|)))) (-338) (-1142 |#1|) (-13 (-338) (-135) (-662 |#1| |#2|)) (-1142 |#3|)) (T -464))
+((-2006 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338)) (-4 *7 (-13 (-338) (-135) (-662 *5 *6))) (-5 *2 (-393 *3)) (-5 *1 (-464 *5 *6 *7 *3)) (-4 *3 (-1142 *7)))))
+(-10 -7 (-15 -2006 ((-393 |#4|) |#4| (-1 (-393 |#2|) |#2|))))
+((-1419 (((-108) $ $) NIL)) (-3899 (((-588 $) (-1081 $) (-1085)) NIL) (((-588 $) (-1081 $)) NIL) (((-588 $) (-881 $)) NIL)) (-3974 (($ (-1081 $) (-1085)) NIL) (($ (-1081 $)) NIL) (($ (-881 $)) NIL)) (-2944 (((-108) $) 37)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-3561 (((-108) $ $) 63)) (-1974 (((-588 (-561 $)) $) 47)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1847 (($ $ (-270 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2016 (($ $) NIL)) (-2805 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-2136 (((-588 $) (-1081 $) (-1085)) NIL) (((-588 $) (-1081 $)) NIL) (((-588 $) (-881 $)) NIL)) (-1275 (($ (-1081 $) (-1085)) NIL) (($ (-1081 $)) NIL) (($ (-881 $)) NIL)) (-3700 (((-3 (-561 $) "failed") $) NIL) (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL)) (-1478 (((-561 $) $) NIL) (((-522) $) NIL) (((-382 (-522)) $) 49)) (-2333 (($ $ $) NIL)) (-1226 (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -2149 (-628 (-382 (-522)))) (|:| |vec| (-1166 (-382 (-522))))) (-628 $) (-1166 $)) NIL) (((-628 (-382 (-522))) (-628 $)) NIL)) (-2153 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-2930 (($ $) NIL) (($ (-588 $)) NIL)) (-2896 (((-588 (-110)) $) NIL)) (-1771 (((-110) (-110)) NIL)) (-2859 (((-108) $) 40)) (-3077 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2947 (((-1037 (-522) (-561 $)) $) 35)) (-1811 (($ $ (-522)) NIL)) (-1269 (((-1081 $) (-1081 $) (-561 $)) 78) (((-1081 $) (-1081 $) (-588 (-561 $))) 54) (($ $ (-561 $)) 67) (($ $ (-588 (-561 $))) 68)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4185 (((-1081 $) (-561 $)) 65 (|has| $ (-971)))) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-3810 (($ (-1 $ $) (-561 $)) NIL)) (-3562 (((-3 (-561 $) "failed") $) NIL)) (-2267 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-1249 (((-588 (-561 $)) $) NIL)) (-3043 (($ (-110) $) NIL) (($ (-110) (-588 $)) NIL)) (-2935 (((-108) $ (-110)) NIL) (((-108) $ (-1085)) NIL)) (-3193 (($ $) NIL)) (-4179 (((-708) $) NIL)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2368 (((-108) $ $) NIL) (((-108) $ (-1085)) NIL)) (-2006 (((-393 $) $) NIL)) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2626 (((-108) $) NIL (|has| $ (-962 (-522))))) (-2330 (($ $ (-561 $) $) NIL) (($ $ (-588 (-561 $)) (-588 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-1085)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-1085) (-1 $ (-588 $))) NIL) (($ $ (-1085) (-1 $ $)) NIL) (($ $ (-588 (-110)) (-588 (-1 $ $))) NIL) (($ $ (-588 (-110)) (-588 (-1 $ (-588 $)))) NIL) (($ $ (-110) (-1 $ (-588 $))) NIL) (($ $ (-110) (-1 $ $)) NIL)) (-4031 (((-708) $) NIL)) (-2683 (($ (-110) $) NIL) (($ (-110) $ $) NIL) (($ (-110) $ $ $) NIL) (($ (-110) $ $ $ $) NIL) (($ (-110) (-588 $)) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-3406 (($ $) NIL) (($ $ $) NIL)) (-2731 (($ $ (-708)) NIL) (($ $) 34)) (-2959 (((-1037 (-522) (-561 $)) $) 18)) (-1579 (($ $) NIL (|has| $ (-971)))) (-3873 (((-354) $) 92) (((-202) $) 100) (((-154 (-354)) $) 108)) (-2217 (((-792) $) NIL) (($ (-561 $)) NIL) (($ (-382 (-522))) NIL) (($ $) NIL) (($ (-522)) NIL) (($ (-1037 (-522) (-561 $))) 19)) (-2742 (((-708)) NIL)) (-3811 (($ $) NIL) (($ (-588 $)) NIL)) (-4082 (((-108) (-110)) 84)) (-1407 (((-108) $ $) NIL)) (-3622 (($ $ (-522)) NIL) (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3697 (($) 9 T CONST)) (-3709 (($) 20 T CONST)) (-2252 (($ $ (-708)) NIL) (($ $) NIL)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 22)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) NIL)) (-1682 (($ $ $) 42)) (-1672 (($ $ $) NIL) (($ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-382 (-522))) NIL) (($ $ (-522)) 45) (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (* (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL) (($ $ $) 25) (($ (-522) $) NIL) (($ (-708) $) NIL) (($ (-850) $) NIL)))
+(((-465) (-13 (-278) (-27) (-962 (-522)) (-962 (-382 (-522))) (-584 (-522)) (-947) (-584 (-382 (-522))) (-135) (-563 (-154 (-354))) (-210) (-10 -8 (-15 -2217 ($ (-1037 (-522) (-561 $)))) (-15 -2947 ((-1037 (-522) (-561 $)) $)) (-15 -2959 ((-1037 (-522) (-561 $)) $)) (-15 -2153 ($ $)) (-15 -3561 ((-108) $ $)) (-15 -1269 ((-1081 $) (-1081 $) (-561 $))) (-15 -1269 ((-1081 $) (-1081 $) (-588 (-561 $)))) (-15 -1269 ($ $ (-561 $))) (-15 -1269 ($ $ (-588 (-561 $))))))) (T -465))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1037 (-522) (-561 (-465)))) (-5 *1 (-465)))) (-2947 (*1 *2 *1) (-12 (-5 *2 (-1037 (-522) (-561 (-465)))) (-5 *1 (-465)))) (-2959 (*1 *2 *1) (-12 (-5 *2 (-1037 (-522) (-561 (-465)))) (-5 *1 (-465)))) (-2153 (*1 *1 *1) (-5 *1 (-465))) (-3561 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-465)))) (-1269 (*1 *2 *2 *3) (-12 (-5 *2 (-1081 (-465))) (-5 *3 (-561 (-465))) (-5 *1 (-465)))) (-1269 (*1 *2 *2 *3) (-12 (-5 *2 (-1081 (-465))) (-5 *3 (-588 (-561 (-465)))) (-5 *1 (-465)))) (-1269 (*1 *1 *1 *2) (-12 (-5 *2 (-561 (-465))) (-5 *1 (-465)))) (-1269 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-561 (-465)))) (-5 *1 (-465)))))
+(-13 (-278) (-27) (-962 (-522)) (-962 (-382 (-522))) (-584 (-522)) (-947) (-584 (-382 (-522))) (-135) (-563 (-154 (-354))) (-210) (-10 -8 (-15 -2217 ($ (-1037 (-522) (-561 $)))) (-15 -2947 ((-1037 (-522) (-561 $)) $)) (-15 -2959 ((-1037 (-522) (-561 $)) $)) (-15 -2153 ($ $)) (-15 -3561 ((-108) $ $)) (-15 -1269 ((-1081 $) (-1081 $) (-561 $))) (-15 -1269 ((-1081 $) (-1081 $) (-588 (-561 $)))) (-15 -1269 ($ $ (-561 $))) (-15 -1269 ($ $ (-588 (-561 $))))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-2806 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3296 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#1| $ (-522) |#1|) 25 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1424 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) 22 (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) 21)) (-3314 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1893 (($ (-708) |#1|) 14)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) 12 (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-3164 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-522) $) 23 (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 16 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 17) (($ (-1 |#1| |#1| |#1|) $ $) 19)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1731 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2337 ((|#1| $) NIL (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1972 (($ $ |#1|) 10 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) 13)) (-2683 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) 24) (($ $ (-1133 (-522))) NIL)) (-3835 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) NIL)) (-4170 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3591 (((-708) $) 9 (|has| $ (-6 -4238)))))
(((-466 |#1| |#2|) (-19 |#1|) (-1120) (-522)) (T -466))
NIL
(-19 |#1|)
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#1| $ (-522) (-522) |#1|) NIL)) (-2480 (($ $ (-522) (-466 |#1| |#3|)) NIL)) (-1888 (($ $ (-522) (-466 |#1| |#2|)) NIL)) (-3175 (($) NIL T CONST)) (-1860 (((-466 |#1| |#3|) $ (-522)) NIL)) (-3854 ((|#1| $ (-522) (-522) |#1|) NIL)) (-3631 ((|#1| $ (-522) (-522)) NIL)) (-3837 (((-588 |#1|) $) NIL)) (-1411 (((-708) $) NIL)) (-1811 (($ (-708) (-708) |#1|) NIL)) (-1422 (((-708) $) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-2575 (((-522) $) NIL)) (-1885 (((-522) $) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3886 (((-522) $) NIL)) (-4132 (((-522) $) NIL)) (-3838 (($ (-1 |#1| |#1|) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2602 (($ $ |#1|) NIL)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ (-522) (-522)) NIL) ((|#1| $ (-522) (-522) |#1|) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-3488 (((-466 |#1| |#2|) $ (-522)) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#1| $ (-522) (-522) |#1|) NIL)) (-3074 (($ $ (-522) (-466 |#1| |#3|)) NIL)) (-4060 (($ $ (-522) (-466 |#1| |#2|)) NIL)) (-3367 (($) NIL T CONST)) (-2635 (((-466 |#1| |#3|) $ (-522)) NIL)) (-2411 ((|#1| $ (-522) (-522) |#1|) NIL)) (-2186 ((|#1| $ (-522) (-522)) NIL)) (-2395 (((-588 |#1|) $) NIL)) (-2949 (((-708) $) NIL)) (-1893 (($ (-708) (-708) |#1|) NIL)) (-2960 (((-708) $) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-2604 (((-522) $) NIL)) (-4042 (((-522) $) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1925 (((-522) $) NIL)) (-2595 (((-522) $) NIL)) (-2397 (($ (-1 |#1| |#1|) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1972 (($ $ |#1|) NIL)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ (-522) (-522)) NIL) ((|#1| $ (-522) (-522) |#1|) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2223 (((-466 |#1| |#2|) $ (-522)) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-467 |#1| |#2| |#3|) (-55 |#1| (-466 |#1| |#3|) (-466 |#1| |#2|)) (-1120) (-522) (-522)) (T -467))
NIL
(-55 |#1| (-466 |#1| |#3|) (-466 |#1| |#2|))
-((-3525 (((-588 (-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) (-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) (-708) (-708)) 27)) (-3931 (((-588 (-1081 |#1|)) |#1| (-708) (-708) (-708)) 34)) (-1257 (((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) (-588 |#3|) (-588 (-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) (-708)) 84)))
-(((-468 |#1| |#2| |#3|) (-10 -7 (-15 -3931 ((-588 (-1081 |#1|)) |#1| (-708) (-708) (-708))) (-15 -3525 ((-588 (-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) (-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) (-708) (-708))) (-15 -1257 ((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) (-588 |#3|) (-588 (-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) (-708)))) (-324) (-1142 |#1|) (-1142 |#2|)) (T -468))
-((-1257 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 (-2 (|:| -3855 (-628 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-628 *7))))) (-5 *5 (-708)) (-4 *8 (-1142 *7)) (-4 *7 (-1142 *6)) (-4 *6 (-324)) (-5 *2 (-2 (|:| -3855 (-628 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-628 *7)))) (-5 *1 (-468 *6 *7 *8)))) (-3525 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-708)) (-4 *5 (-324)) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-2 (|:| -3855 (-628 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-628 *6))))) (-5 *1 (-468 *5 *6 *7)) (-5 *3 (-2 (|:| -3855 (-628 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-628 *6)))) (-4 *7 (-1142 *6)))) (-3931 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-708)) (-4 *3 (-324)) (-4 *5 (-1142 *3)) (-5 *2 (-588 (-1081 *3))) (-5 *1 (-468 *3 *5 *6)) (-4 *6 (-1142 *5)))))
-(-10 -7 (-15 -3931 ((-588 (-1081 |#1|)) |#1| (-708) (-708) (-708))) (-15 -3525 ((-588 (-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) (-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) (-708) (-708))) (-15 -1257 ((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) (-588 |#3|) (-588 (-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) (-708))))
-((-3241 (((-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) (-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) (-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|)))) 60)) (-3613 ((|#1| (-628 |#1|) |#1| (-708)) 25)) (-3945 (((-708) (-708) (-708)) 30)) (-4120 (((-628 |#1|) (-628 |#1|) (-628 |#1|)) 42)) (-1481 (((-628 |#1|) (-628 |#1|) (-628 |#1|) |#1|) 50) (((-628 |#1|) (-628 |#1|) (-628 |#1|)) 47)) (-1410 ((|#1| (-628 |#1|) (-628 |#1|) |#1| (-522)) 29)) (-1708 ((|#1| (-628 |#1|)) 18)))
-(((-469 |#1| |#2| |#3|) (-10 -7 (-15 -1708 (|#1| (-628 |#1|))) (-15 -3613 (|#1| (-628 |#1|) |#1| (-708))) (-15 -1410 (|#1| (-628 |#1|) (-628 |#1|) |#1| (-522))) (-15 -3945 ((-708) (-708) (-708))) (-15 -1481 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -1481 ((-628 |#1|) (-628 |#1|) (-628 |#1|) |#1|)) (-15 -4120 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -3241 ((-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) (-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) (-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|)))))) (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $)))) (-1142 |#1|) (-384 |#1| |#2|)) (T -469))
-((-3241 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -3855 (-628 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-628 *3)))) (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))) (-4120 (*1 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))) (-1481 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-628 *3)) (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))) (-1481 (*1 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))) (-3945 (*1 *2 *2 *2) (-12 (-5 *2 (-708)) (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))) (-1410 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-628 *2)) (-5 *4 (-522)) (-4 *2 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $))))) (-4 *5 (-1142 *2)) (-5 *1 (-469 *2 *5 *6)) (-4 *6 (-384 *2 *5)))) (-3613 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-628 *2)) (-5 *4 (-708)) (-4 *2 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $))))) (-4 *5 (-1142 *2)) (-5 *1 (-469 *2 *5 *6)) (-4 *6 (-384 *2 *5)))) (-1708 (*1 *2 *3) (-12 (-5 *3 (-628 *2)) (-4 *4 (-1142 *2)) (-4 *2 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $))))) (-5 *1 (-469 *2 *4 *5)) (-4 *5 (-384 *2 *4)))))
-(-10 -7 (-15 -1708 (|#1| (-628 |#1|))) (-15 -3613 (|#1| (-628 |#1|) |#1| (-708))) (-15 -1410 (|#1| (-628 |#1|) (-628 |#1|) |#1| (-522))) (-15 -3945 ((-708) (-708) (-708))) (-15 -1481 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -1481 ((-628 |#1|) (-628 |#1|) (-628 |#1|) |#1|)) (-15 -4120 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -3241 ((-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) (-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) (-2 (|:| -3855 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))))))
-((-1416 (((-108) $ $) NIL)) (-1501 (($ $) NIL)) (-3349 (($ $ $) 35)) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) $) NIL (|has| (-108) (-784))) (((-108) (-1 (-108) (-108) (-108)) $) NIL)) (-3537 (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| (-108) (-784)))) (($ (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4239)))) (-3216 (($ $) NIL (|has| (-108) (-784))) (($ (-1 (-108) (-108) (-108)) $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-2379 (((-108) $ (-1133 (-522)) (-108)) NIL (|has| $ (-6 -4239))) (((-108) $ (-522) (-108)) 36 (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-1423 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238))) (($ (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-3864 (((-108) (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-108) (-108)) $ (-108)) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-108) (-108)) $ (-108) (-108)) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-3854 (((-108) $ (-522) (-108)) NIL (|has| $ (-6 -4239)))) (-3631 (((-108) $ (-522)) NIL)) (-3238 (((-522) (-108) $ (-522)) NIL (|has| (-108) (-1014))) (((-522) (-108) $) NIL (|has| (-108) (-1014))) (((-522) (-1 (-108) (-108)) $) NIL)) (-3837 (((-588 (-108)) $) NIL (|has| $ (-6 -4238)))) (-3999 (($ $ $) 33)) (-2401 (($ $) NIL)) (-2129 (($ $ $) NIL)) (-1811 (($ (-708) (-108)) 23)) (-1920 (($ $ $) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) 8 (|has| (-522) (-784)))) (-2814 (($ $ $) NIL)) (-2160 (($ $ $) NIL (|has| (-108) (-784))) (($ (-1 (-108) (-108) (-108)) $ $) NIL)) (-3308 (((-588 (-108)) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL)) (-3838 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-108) (-108) (-108)) $ $) 30) (($ (-1 (-108) (-108)) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-1661 (($ $ $ (-522)) NIL) (($ (-108) $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL)) (-2294 (((-108) $) NIL (|has| (-522) (-784)))) (-1414 (((-3 (-108) "failed") (-1 (-108) (-108)) $) NIL)) (-2602 (($ $ (-108)) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-108)) (-588 (-108))) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-108) (-108)) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-270 (-108))) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-588 (-270 (-108)))) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-1525 (((-588 (-108)) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) 24)) (-2545 (($ $ (-1133 (-522))) NIL) (((-108) $ (-522)) 18) (((-108) $ (-522) (-108)) NIL)) (-3696 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-4168 (((-708) (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014)))) (((-708) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) 25)) (-1431 (((-498) $) NIL (|has| (-108) (-563 (-498))))) (-2201 (($ (-588 (-108))) NIL)) (-4165 (($ (-588 $)) NIL) (($ $ $) NIL) (($ (-108) $) NIL) (($ $ (-108)) NIL)) (-2190 (((-792) $) 22)) (-3648 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-4015 (($ $ $) 31)) (-3510 (($ $) NIL)) (-2767 (($ $ $) NIL)) (-3506 (($ $ $) 39)) (-3517 (($ $) 37)) (-3498 (($ $ $) 38)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 26)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 27)) (-2324 (($ $ $) NIL)) (-3480 (((-708) $) 10 (|has| $ (-6 -4238)))))
-(((-470 |#1|) (-13 (-119) (-10 -8 (-15 -3517 ($ $)) (-15 -3506 ($ $ $)) (-15 -3498 ($ $ $)))) (-522)) (T -470))
-((-3517 (*1 *1 *1) (-12 (-5 *1 (-470 *2)) (-14 *2 (-522)))) (-3506 (*1 *1 *1 *1) (-12 (-5 *1 (-470 *2)) (-14 *2 (-522)))) (-3498 (*1 *1 *1 *1) (-12 (-5 *1 (-470 *2)) (-14 *2 (-522)))))
-(-13 (-119) (-10 -8 (-15 -3517 ($ $)) (-15 -3506 ($ $ $)) (-15 -3498 ($ $ $))))
-((-3935 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1081 |#4|)) 35)) (-3560 (((-1081 |#4|) (-1 |#4| |#1|) |#2|) 31) ((|#2| (-1 |#1| |#4|) (-1081 |#4|)) 22)) (-1894 (((-3 (-628 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-628 (-1081 |#4|))) 46)) (-1902 (((-1081 (-1081 |#4|)) (-1 |#4| |#1|) |#3|) 55)))
-(((-471 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3560 (|#2| (-1 |#1| |#4|) (-1081 |#4|))) (-15 -3560 ((-1081 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -3935 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1081 |#4|))) (-15 -1894 ((-3 (-628 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-628 (-1081 |#4|)))) (-15 -1902 ((-1081 (-1081 |#4|)) (-1 |#4| |#1|) |#3|))) (-971) (-1142 |#1|) (-1142 |#2|) (-971)) (T -471))
-((-1902 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-971)) (-4 *7 (-971)) (-4 *6 (-1142 *5)) (-5 *2 (-1081 (-1081 *7))) (-5 *1 (-471 *5 *6 *4 *7)) (-4 *4 (-1142 *6)))) (-1894 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-628 (-1081 *8))) (-4 *5 (-971)) (-4 *8 (-971)) (-4 *6 (-1142 *5)) (-5 *2 (-628 *6)) (-5 *1 (-471 *5 *6 *7 *8)) (-4 *7 (-1142 *6)))) (-3935 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1081 *7)) (-4 *5 (-971)) (-4 *7 (-971)) (-4 *2 (-1142 *5)) (-5 *1 (-471 *5 *2 *6 *7)) (-4 *6 (-1142 *2)))) (-3560 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-971)) (-4 *7 (-971)) (-4 *4 (-1142 *5)) (-5 *2 (-1081 *7)) (-5 *1 (-471 *5 *4 *6 *7)) (-4 *6 (-1142 *4)))) (-3560 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1081 *7)) (-4 *5 (-971)) (-4 *7 (-971)) (-4 *2 (-1142 *5)) (-5 *1 (-471 *5 *2 *6 *7)) (-4 *6 (-1142 *2)))))
-(-10 -7 (-15 -3560 (|#2| (-1 |#1| |#4|) (-1081 |#4|))) (-15 -3560 ((-1081 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -3935 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1081 |#4|))) (-15 -1894 ((-3 (-628 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-628 (-1081 |#4|)))) (-15 -1902 ((-1081 (-1081 |#4|)) (-1 |#4| |#1|) |#3|)))
-((-1416 (((-108) $ $) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2664 (((-1171) $) 18)) (-2545 (((-1068) $ (-1085)) 22)) (-1678 (((-1171) $) 14)) (-2190 (((-792) $) 20) (($ (-1068)) 19)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 8)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 7)))
-(((-472) (-13 (-784) (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 ((-1171) $)) (-15 -2664 ((-1171) $)) (-15 -2190 ($ (-1068)))))) (T -472))
-((-2545 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1068)) (-5 *1 (-472)))) (-1678 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-472)))) (-2664 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-472)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-472)))))
-(-13 (-784) (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 ((-1171) $)) (-15 -2664 ((-1171) $)) (-15 -2190 ($ (-1068)))))
-((-2297 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-1847 ((|#1| |#4|) 10)) (-3513 ((|#3| |#4|) 17)))
-(((-473 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1847 (|#1| |#4|)) (-15 -3513 (|#3| |#4|)) (-15 -2297 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-514) (-919 |#1|) (-348 |#1|) (-348 |#2|)) (T -473))
-((-2297 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-919 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-473 *4 *5 *6 *3)) (-4 *6 (-348 *4)) (-4 *3 (-348 *5)))) (-3513 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-919 *4)) (-4 *2 (-348 *4)) (-5 *1 (-473 *4 *5 *2 *3)) (-4 *3 (-348 *5)))) (-1847 (*1 *2 *3) (-12 (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-473 *2 *4 *5 *3)) (-4 *5 (-348 *2)) (-4 *3 (-348 *4)))))
-(-10 -7 (-15 -1847 (|#1| |#4|)) (-15 -3513 (|#3| |#4|)) (-15 -2297 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
-((-1416 (((-108) $ $) NIL)) (-1989 (((-108) $ (-588 |#3|)) 103) (((-108) $) 104)) (-2250 (((-108) $) 146)) (-1945 (($ $ |#4|) 95) (($ $ |#4| (-588 |#3|)) 99)) (-3424 (((-1075 (-588 (-881 |#1|)) (-588 (-270 (-881 |#1|)))) (-588 |#4|)) 139 (|has| |#3| (-563 (-1085))))) (-1353 (($ $ $) 89) (($ $ |#4|) 87)) (-2782 (((-108) $) 145)) (-3504 (($ $) 107)) (-2385 (((-1068) $) NIL)) (-2416 (($ $ $) 81) (($ (-588 $)) 83)) (-1977 (((-108) |#4| $) 106)) (-2140 (((-108) $ $) 70)) (-2154 (($ (-588 |#4|)) 88)) (-4151 (((-1032) $) NIL)) (-3626 (($ (-588 |#4|)) 143)) (-2394 (((-108) $) 144)) (-4054 (($ $) 72)) (-2960 (((-588 |#4|) $) 56)) (-3853 (((-2 (|:| |mval| (-628 |#1|)) (|:| |invmval| (-628 |#1|)) (|:| |genIdeal| $)) $ (-588 |#3|)) NIL)) (-3132 (((-108) |#4| $) 75)) (-4078 (((-522) $ (-588 |#3|)) 108) (((-522) $) 109)) (-2190 (((-792) $) 142) (($ (-588 |#4|)) 84)) (-2329 (($ (-2 (|:| |mval| (-628 |#1|)) (|:| |invmval| (-628 |#1|)) (|:| |genIdeal| $))) NIL)) (-1531 (((-108) $ $) 71)) (-1602 (($ $ $) 91)) (** (($ $ (-708)) 94)) (* (($ $ $) 93)))
-(((-474 |#1| |#2| |#3| |#4|) (-13 (-1014) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-708))) (-15 -1602 ($ $ $)) (-15 -2782 ((-108) $)) (-15 -2250 ((-108) $)) (-15 -3132 ((-108) |#4| $)) (-15 -2140 ((-108) $ $)) (-15 -1977 ((-108) |#4| $)) (-15 -1989 ((-108) $ (-588 |#3|))) (-15 -1989 ((-108) $)) (-15 -2416 ($ $ $)) (-15 -2416 ($ (-588 $))) (-15 -1353 ($ $ $)) (-15 -1353 ($ $ |#4|)) (-15 -4054 ($ $)) (-15 -3853 ((-2 (|:| |mval| (-628 |#1|)) (|:| |invmval| (-628 |#1|)) (|:| |genIdeal| $)) $ (-588 |#3|))) (-15 -2329 ($ (-2 (|:| |mval| (-628 |#1|)) (|:| |invmval| (-628 |#1|)) (|:| |genIdeal| $)))) (-15 -4078 ((-522) $ (-588 |#3|))) (-15 -4078 ((-522) $)) (-15 -3504 ($ $)) (-15 -2154 ($ (-588 |#4|))) (-15 -3626 ($ (-588 |#4|))) (-15 -2394 ((-108) $)) (-15 -2960 ((-588 |#4|) $)) (-15 -2190 ($ (-588 |#4|))) (-15 -1945 ($ $ |#4|)) (-15 -1945 ($ $ |#4| (-588 |#3|))) (IF (|has| |#3| (-563 (-1085))) (-15 -3424 ((-1075 (-588 (-881 |#1|)) (-588 (-270 (-881 |#1|)))) (-588 |#4|))) |%noBranch|))) (-338) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -474))
-((* (*1 *1 *1 *1) (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784)) (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-1602 (*1 *1 *1 *1) (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784)) (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (-2782 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-2250 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-3132 (*1 *2 *3 *1) (-12 (-4 *4 (-338)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))) (-2140 (*1 *2 *1 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-1977 (*1 *2 *3 *1) (-12 (-4 *4 (-338)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))) (-1989 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730)) (-5 *2 (-108)) (-5 *1 (-474 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))) (-1989 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-2416 (*1 *1 *1 *1) (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784)) (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (-2416 (*1 *1 *2) (-12 (-5 *2 (-588 (-474 *3 *4 *5 *6))) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-1353 (*1 *1 *1 *1) (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784)) (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (-1353 (*1 *1 *1 *2) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *2)) (-4 *2 (-878 *3 *4 *5)))) (-4054 (*1 *1 *1) (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784)) (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (-3853 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730)) (-5 *2 (-2 (|:| |mval| (-628 *4)) (|:| |invmval| (-628 *4)) (|:| |genIdeal| (-474 *4 *5 *6 *7)))) (-5 *1 (-474 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))) (-2329 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-628 *3)) (|:| |invmval| (-628 *3)) (|:| |genIdeal| (-474 *3 *4 *5 *6)))) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-4078 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730)) (-5 *2 (-522)) (-5 *1 (-474 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))) (-4078 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-522)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-3504 (*1 *1 *1) (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784)) (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (-2154 (*1 *1 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)))) (-3626 (*1 *1 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)))) (-2394 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-2960 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *6)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)))) (-1945 (*1 *1 *1 *2) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *2)) (-4 *2 (-878 *3 *4 *5)))) (-1945 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730)) (-5 *1 (-474 *4 *5 *6 *2)) (-4 *2 (-878 *4 *5 *6)))) (-3424 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *5 *6)) (-4 *6 (-563 (-1085))) (-4 *4 (-338)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1075 (-588 (-881 *4)) (-588 (-270 (-881 *4))))) (-5 *1 (-474 *4 *5 *6 *7)))))
-(-13 (-1014) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-708))) (-15 -1602 ($ $ $)) (-15 -2782 ((-108) $)) (-15 -2250 ((-108) $)) (-15 -3132 ((-108) |#4| $)) (-15 -2140 ((-108) $ $)) (-15 -1977 ((-108) |#4| $)) (-15 -1989 ((-108) $ (-588 |#3|))) (-15 -1989 ((-108) $)) (-15 -2416 ($ $ $)) (-15 -2416 ($ (-588 $))) (-15 -1353 ($ $ $)) (-15 -1353 ($ $ |#4|)) (-15 -4054 ($ $)) (-15 -3853 ((-2 (|:| |mval| (-628 |#1|)) (|:| |invmval| (-628 |#1|)) (|:| |genIdeal| $)) $ (-588 |#3|))) (-15 -2329 ($ (-2 (|:| |mval| (-628 |#1|)) (|:| |invmval| (-628 |#1|)) (|:| |genIdeal| $)))) (-15 -4078 ((-522) $ (-588 |#3|))) (-15 -4078 ((-522) $)) (-15 -3504 ($ $)) (-15 -2154 ($ (-588 |#4|))) (-15 -3626 ($ (-588 |#4|))) (-15 -2394 ((-108) $)) (-15 -2960 ((-588 |#4|) $)) (-15 -2190 ($ (-588 |#4|))) (-15 -1945 ($ $ |#4|)) (-15 -1945 ($ $ |#4| (-588 |#3|))) (IF (|has| |#3| (-563 (-1085))) (-15 -3424 ((-1075 (-588 (-881 |#1|)) (-588 (-270 (-881 |#1|)))) (-588 |#4|))) |%noBranch|)))
-((-2426 (((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) 146)) (-3721 (((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) 147)) (-2402 (((-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) 105)) (-2813 (((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) NIL)) (-2963 (((-588 (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) 149)) (-3322 (((-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-588 (-794 |#1|))) 161)))
-(((-475 |#1| |#2|) (-10 -7 (-15 -2426 ((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -3721 ((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -2813 ((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -2402 ((-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -2963 ((-588 (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -3322 ((-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-588 (-794 |#1|))))) (-588 (-1085)) (-708)) (T -475))
-((-3322 (*1 *2 *2 *3) (-12 (-5 *2 (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4) (-224 *4 (-382 (-522))))) (-5 *3 (-588 (-794 *4))) (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *1 (-475 *4 *5)))) (-2963 (*1 *2 *3) (-12 (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-588 (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4) (-224 *4 (-382 (-522)))))) (-5 *1 (-475 *4 *5)) (-5 *3 (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4) (-224 *4 (-382 (-522))))))) (-2402 (*1 *2 *2) (-12 (-5 *2 (-474 (-382 (-522)) (-217 *4 (-708)) (-794 *3) (-224 *3 (-382 (-522))))) (-14 *3 (-588 (-1085))) (-14 *4 (-708)) (-5 *1 (-475 *3 *4)))) (-2813 (*1 *2 *3) (-12 (-5 *3 (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4) (-224 *4 (-382 (-522))))) (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-108)) (-5 *1 (-475 *4 *5)))) (-3721 (*1 *2 *3) (-12 (-5 *3 (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4) (-224 *4 (-382 (-522))))) (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-108)) (-5 *1 (-475 *4 *5)))) (-2426 (*1 *2 *3) (-12 (-5 *3 (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4) (-224 *4 (-382 (-522))))) (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-108)) (-5 *1 (-475 *4 *5)))))
-(-10 -7 (-15 -2426 ((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -3721 ((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -2813 ((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -2402 ((-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -2963 ((-588 (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -3322 ((-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-588 (-794 |#1|)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3156 (($ $) NIL)) (-4049 (($ |#1| |#2|) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-1207 ((|#2| $) NIL)) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-3566 (($) 12 T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) 11) (($ $ $) 24)) (-1602 (($ $ $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 19)))
+((-2640 (((-588 (-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) (-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) (-708) (-708)) 27)) (-4166 (((-588 (-1081 |#1|)) |#1| (-708) (-708) (-708)) 34)) (-2546 (((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) (-588 |#3|) (-588 (-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) (-708)) 84)))
+(((-468 |#1| |#2| |#3|) (-10 -7 (-15 -4166 ((-588 (-1081 |#1|)) |#1| (-708) (-708) (-708))) (-15 -2640 ((-588 (-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) (-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) (-708) (-708))) (-15 -2546 ((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) (-588 |#3|) (-588 (-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) (-708)))) (-324) (-1142 |#1|) (-1142 |#2|)) (T -468))
+((-2546 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 (-2 (|:| -2905 (-628 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-628 *7))))) (-5 *5 (-708)) (-4 *8 (-1142 *7)) (-4 *7 (-1142 *6)) (-4 *6 (-324)) (-5 *2 (-2 (|:| -2905 (-628 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-628 *7)))) (-5 *1 (-468 *6 *7 *8)))) (-2640 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-708)) (-4 *5 (-324)) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-2 (|:| -2905 (-628 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-628 *6))))) (-5 *1 (-468 *5 *6 *7)) (-5 *3 (-2 (|:| -2905 (-628 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-628 *6)))) (-4 *7 (-1142 *6)))) (-4166 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-708)) (-4 *3 (-324)) (-4 *5 (-1142 *3)) (-5 *2 (-588 (-1081 *3))) (-5 *1 (-468 *3 *5 *6)) (-4 *6 (-1142 *5)))))
+(-10 -7 (-15 -4166 ((-588 (-1081 |#1|)) |#1| (-708) (-708) (-708))) (-15 -2640 ((-588 (-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) (-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) (-708) (-708))) (-15 -2546 ((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) (-588 |#3|) (-588 (-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) (-708))))
+((-1619 (((-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) (-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) (-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|)))) 60)) (-4075 ((|#1| (-628 |#1|) |#1| (-708)) 25)) (-1282 (((-708) (-708) (-708)) 30)) (-2443 (((-628 |#1|) (-628 |#1|) (-628 |#1|)) 42)) (-1601 (((-628 |#1|) (-628 |#1|) (-628 |#1|) |#1|) 50) (((-628 |#1|) (-628 |#1|) (-628 |#1|)) 47)) (-2157 ((|#1| (-628 |#1|) (-628 |#1|) |#1| (-522)) 29)) (-4147 ((|#1| (-628 |#1|)) 18)))
+(((-469 |#1| |#2| |#3|) (-10 -7 (-15 -4147 (|#1| (-628 |#1|))) (-15 -4075 (|#1| (-628 |#1|) |#1| (-708))) (-15 -2157 (|#1| (-628 |#1|) (-628 |#1|) |#1| (-522))) (-15 -1282 ((-708) (-708) (-708))) (-15 -1601 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -1601 ((-628 |#1|) (-628 |#1|) (-628 |#1|) |#1|)) (-15 -2443 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -1619 ((-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) (-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) (-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|)))))) (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $)))) (-1142 |#1|) (-384 |#1| |#2|)) (T -469))
+((-1619 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -2905 (-628 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-628 *3)))) (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))) (-2443 (*1 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))) (-1601 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-628 *3)) (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))) (-1601 (*1 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))) (-1282 (*1 *2 *2 *2) (-12 (-5 *2 (-708)) (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $))))) (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))) (-2157 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-628 *2)) (-5 *4 (-522)) (-4 *2 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $))))) (-4 *5 (-1142 *2)) (-5 *1 (-469 *2 *5 *6)) (-4 *6 (-384 *2 *5)))) (-4075 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-628 *2)) (-5 *4 (-708)) (-4 *2 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $))))) (-4 *5 (-1142 *2)) (-5 *1 (-469 *2 *5 *6)) (-4 *6 (-384 *2 *5)))) (-4147 (*1 *2 *3) (-12 (-5 *3 (-628 *2)) (-4 *4 (-1142 *2)) (-4 *2 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $))))) (-5 *1 (-469 *2 *4 *5)) (-4 *5 (-384 *2 *4)))))
+(-10 -7 (-15 -4147 (|#1| (-628 |#1|))) (-15 -4075 (|#1| (-628 |#1|) |#1| (-708))) (-15 -2157 (|#1| (-628 |#1|) (-628 |#1|) |#1| (-522))) (-15 -1282 ((-708) (-708) (-708))) (-15 -1601 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -1601 ((-628 |#1|) (-628 |#1|) (-628 |#1|) |#1|)) (-15 -2443 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -1619 ((-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) (-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))) (-2 (|:| -2905 (-628 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-628 |#1|))))))
+((-1419 (((-108) $ $) NIL)) (-1504 (($ $) NIL)) (-3454 (($ $ $) 35)) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) $) NIL (|has| (-108) (-784))) (((-108) (-1 (-108) (-108) (-108)) $) NIL)) (-2806 (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| (-108) (-784)))) (($ (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4239)))) (-3296 (($ $) NIL (|has| (-108) (-784))) (($ (-1 (-108) (-108) (-108)) $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-2437 (((-108) $ (-1133 (-522)) (-108)) NIL (|has| $ (-6 -4239))) (((-108) $ (-522) (-108)) 36 (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-1424 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238))) (($ (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-2153 (((-108) (-1 (-108) (-108) (-108)) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-108) (-108)) $ (-108)) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-108) (-108)) $ (-108) (-108)) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-2411 (((-108) $ (-522) (-108)) NIL (|has| $ (-6 -4239)))) (-2186 (((-108) $ (-522)) NIL)) (-3314 (((-522) (-108) $ (-522)) NIL (|has| (-108) (-1014))) (((-522) (-108) $) NIL (|has| (-108) (-1014))) (((-522) (-1 (-108) (-108)) $) NIL)) (-2395 (((-588 (-108)) $) NIL (|has| $ (-6 -4238)))) (-4070 (($ $ $) 33)) (-2473 (($ $) NIL)) (-1588 (($ $ $) NIL)) (-1893 (($ (-708) (-108)) 23)) (-1309 (($ $ $) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) 8 (|has| (-522) (-784)))) (-1308 (($ $ $) NIL)) (-3164 (($ $ $) NIL (|has| (-108) (-784))) (($ (-1 (-108) (-108) (-108)) $ $) NIL)) (-4084 (((-588 (-108)) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL)) (-2397 (($ (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-108) (-108) (-108)) $ $) 30) (($ (-1 (-108) (-108)) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-1731 (($ $ $ (-522)) NIL) (($ (-108) $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL)) (-2337 (((-108) $) NIL (|has| (-522) (-784)))) (-2187 (((-3 (-108) "failed") (-1 (-108) (-108)) $) NIL)) (-1972 (($ $ (-108)) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-108)) (-588 (-108))) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-108) (-108)) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-270 (-108))) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014)))) (($ $ (-588 (-270 (-108)))) NIL (-12 (|has| (-108) (-285 (-108))) (|has| (-108) (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014))))) (-1973 (((-588 (-108)) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) 24)) (-2683 (($ $ (-1133 (-522))) NIL) (((-108) $ (-522)) 18) (((-108) $ (-522) (-108)) NIL)) (-3835 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-4187 (((-708) (-108) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-108) (-1014)))) (((-708) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) 25)) (-3873 (((-498) $) NIL (|has| (-108) (-563 (-498))))) (-2227 (($ (-588 (-108))) NIL)) (-4170 (($ (-588 $)) NIL) (($ $ $) NIL) (($ (-108) $) NIL) (($ $ (-108)) NIL)) (-2217 (((-792) $) 22)) (-1381 (((-108) (-1 (-108) (-108)) $) NIL (|has| $ (-6 -4238)))) (-4079 (($ $ $) 31)) (-3622 (($ $) NIL)) (-2920 (($ $ $) NIL)) (-3616 (($ $ $) 39)) (-3628 (($ $) 37)) (-3604 (($ $ $) 38)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 26)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 27)) (-2388 (($ $ $) NIL)) (-3591 (((-708) $) 10 (|has| $ (-6 -4238)))))
+(((-470 |#1|) (-13 (-119) (-10 -8 (-15 -3628 ($ $)) (-15 -3616 ($ $ $)) (-15 -3604 ($ $ $)))) (-522)) (T -470))
+((-3628 (*1 *1 *1) (-12 (-5 *1 (-470 *2)) (-14 *2 (-522)))) (-3616 (*1 *1 *1 *1) (-12 (-5 *1 (-470 *2)) (-14 *2 (-522)))) (-3604 (*1 *1 *1 *1) (-12 (-5 *1 (-470 *2)) (-14 *2 (-522)))))
+(-13 (-119) (-10 -8 (-15 -3628 ($ $)) (-15 -3616 ($ $ $)) (-15 -3604 ($ $ $))))
+((-4214 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1081 |#4|)) 35)) (-1781 (((-1081 |#4|) (-1 |#4| |#1|) |#2|) 31) ((|#2| (-1 |#1| |#4|) (-1081 |#4|)) 22)) (-4101 (((-3 (-628 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-628 (-1081 |#4|))) 46)) (-4181 (((-1081 (-1081 |#4|)) (-1 |#4| |#1|) |#3|) 55)))
+(((-471 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1781 (|#2| (-1 |#1| |#4|) (-1081 |#4|))) (-15 -1781 ((-1081 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -4214 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1081 |#4|))) (-15 -4101 ((-3 (-628 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-628 (-1081 |#4|)))) (-15 -4181 ((-1081 (-1081 |#4|)) (-1 |#4| |#1|) |#3|))) (-971) (-1142 |#1|) (-1142 |#2|) (-971)) (T -471))
+((-4181 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-971)) (-4 *7 (-971)) (-4 *6 (-1142 *5)) (-5 *2 (-1081 (-1081 *7))) (-5 *1 (-471 *5 *6 *4 *7)) (-4 *4 (-1142 *6)))) (-4101 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-628 (-1081 *8))) (-4 *5 (-971)) (-4 *8 (-971)) (-4 *6 (-1142 *5)) (-5 *2 (-628 *6)) (-5 *1 (-471 *5 *6 *7 *8)) (-4 *7 (-1142 *6)))) (-4214 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1081 *7)) (-4 *5 (-971)) (-4 *7 (-971)) (-4 *2 (-1142 *5)) (-5 *1 (-471 *5 *2 *6 *7)) (-4 *6 (-1142 *2)))) (-1781 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-971)) (-4 *7 (-971)) (-4 *4 (-1142 *5)) (-5 *2 (-1081 *7)) (-5 *1 (-471 *5 *4 *6 *7)) (-4 *6 (-1142 *4)))) (-1781 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1081 *7)) (-4 *5 (-971)) (-4 *7 (-971)) (-4 *2 (-1142 *5)) (-5 *1 (-471 *5 *2 *6 *7)) (-4 *6 (-1142 *2)))))
+(-10 -7 (-15 -1781 (|#2| (-1 |#1| |#4|) (-1081 |#4|))) (-15 -1781 ((-1081 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -4214 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1081 |#4|))) (-15 -4101 ((-3 (-628 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-628 (-1081 |#4|)))) (-15 -4181 ((-1081 (-1081 |#4|)) (-1 |#4| |#1|) |#3|)))
+((-1419 (((-108) $ $) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2113 (((-1171) $) 18)) (-2683 (((-1068) $ (-1085)) 22)) (-1757 (((-1171) $) 14)) (-2217 (((-792) $) 20) (($ (-1068)) 19)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 8)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 7)))
+(((-472) (-13 (-784) (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 ((-1171) $)) (-15 -2113 ((-1171) $)) (-15 -2217 ($ (-1068)))))) (T -472))
+((-2683 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1068)) (-5 *1 (-472)))) (-1757 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-472)))) (-2113 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-472)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-472)))))
+(-13 (-784) (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 ((-1171) $)) (-15 -2113 ((-1171) $)) (-15 -2217 ($ (-1068)))))
+((-2567 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-2460 ((|#1| |#4|) 10)) (-2508 ((|#3| |#4|) 17)))
+(((-473 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2460 (|#1| |#4|)) (-15 -2508 (|#3| |#4|)) (-15 -2567 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-514) (-919 |#1|) (-348 |#1|) (-348 |#2|)) (T -473))
+((-2567 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-919 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-473 *4 *5 *6 *3)) (-4 *6 (-348 *4)) (-4 *3 (-348 *5)))) (-2508 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-919 *4)) (-4 *2 (-348 *4)) (-5 *1 (-473 *4 *5 *2 *3)) (-4 *3 (-348 *5)))) (-2460 (*1 *2 *3) (-12 (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-473 *2 *4 *5 *3)) (-4 *5 (-348 *2)) (-4 *3 (-348 *4)))))
+(-10 -7 (-15 -2460 (|#1| |#4|)) (-15 -2508 (|#3| |#4|)) (-15 -2567 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
+((-1419 (((-108) $ $) NIL)) (-3212 (((-108) $ (-588 |#3|)) 103) (((-108) $) 104)) (-2944 (((-108) $) 146)) (-1547 (($ $ |#4|) 95) (($ $ |#4| (-588 |#3|)) 99)) (-2916 (((-1075 (-588 (-881 |#1|)) (-588 (-270 (-881 |#1|)))) (-588 |#4|)) 139 (|has| |#3| (-563 (-1085))))) (-3450 (($ $ $) 89) (($ $ |#4|) 87)) (-2859 (((-108) $) 145)) (-2425 (($ $) 107)) (-2311 (((-1068) $) NIL)) (-2251 (($ $ $) 81) (($ (-588 $)) 83)) (-3132 (((-108) |#4| $) 106)) (-3006 (((-108) $ $) 70)) (-3129 (($ (-588 |#4|)) 88)) (-4174 (((-1032) $) NIL)) (-4201 (($ (-588 |#4|)) 143)) (-1333 (((-108) $) 144)) (-3059 (($ $) 72)) (-3915 (((-588 |#4|) $) 56)) (-2898 (((-2 (|:| |mval| (-628 |#1|)) (|:| |invmval| (-628 |#1|)) (|:| |genIdeal| $)) $ (-588 |#3|)) NIL)) (-3071 (((-108) |#4| $) 75)) (-3222 (((-522) $ (-588 |#3|)) 108) (((-522) $) 109)) (-2217 (((-792) $) 142) (($ (-588 |#4|)) 84)) (-2964 (($ (-2 (|:| |mval| (-628 |#1|)) (|:| |invmval| (-628 |#1|)) (|:| |genIdeal| $))) NIL)) (-1562 (((-108) $ $) 71)) (-1661 (($ $ $) 91)) (** (($ $ (-708)) 94)) (* (($ $ $) 93)))
+(((-474 |#1| |#2| |#3| |#4|) (-13 (-1014) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-708))) (-15 -1661 ($ $ $)) (-15 -2859 ((-108) $)) (-15 -2944 ((-108) $)) (-15 -3071 ((-108) |#4| $)) (-15 -3006 ((-108) $ $)) (-15 -3132 ((-108) |#4| $)) (-15 -3212 ((-108) $ (-588 |#3|))) (-15 -3212 ((-108) $)) (-15 -2251 ($ $ $)) (-15 -2251 ($ (-588 $))) (-15 -3450 ($ $ $)) (-15 -3450 ($ $ |#4|)) (-15 -3059 ($ $)) (-15 -2898 ((-2 (|:| |mval| (-628 |#1|)) (|:| |invmval| (-628 |#1|)) (|:| |genIdeal| $)) $ (-588 |#3|))) (-15 -2964 ($ (-2 (|:| |mval| (-628 |#1|)) (|:| |invmval| (-628 |#1|)) (|:| |genIdeal| $)))) (-15 -3222 ((-522) $ (-588 |#3|))) (-15 -3222 ((-522) $)) (-15 -2425 ($ $)) (-15 -3129 ($ (-588 |#4|))) (-15 -4201 ($ (-588 |#4|))) (-15 -1333 ((-108) $)) (-15 -3915 ((-588 |#4|) $)) (-15 -2217 ($ (-588 |#4|))) (-15 -1547 ($ $ |#4|)) (-15 -1547 ($ $ |#4| (-588 |#3|))) (IF (|has| |#3| (-563 (-1085))) (-15 -2916 ((-1075 (-588 (-881 |#1|)) (-588 (-270 (-881 |#1|)))) (-588 |#4|))) |%noBranch|))) (-338) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -474))
+((* (*1 *1 *1 *1) (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784)) (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-1661 (*1 *1 *1 *1) (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784)) (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (-2859 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-2944 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-3071 (*1 *2 *3 *1) (-12 (-4 *4 (-338)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))) (-3006 (*1 *2 *1 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-3132 (*1 *2 *3 *1) (-12 (-4 *4 (-338)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))) (-3212 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730)) (-5 *2 (-108)) (-5 *1 (-474 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))) (-3212 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-2251 (*1 *1 *1 *1) (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784)) (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (-2251 (*1 *1 *2) (-12 (-5 *2 (-588 (-474 *3 *4 *5 *6))) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-3450 (*1 *1 *1 *1) (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784)) (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (-3450 (*1 *1 *1 *2) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *2)) (-4 *2 (-878 *3 *4 *5)))) (-3059 (*1 *1 *1) (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784)) (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (-2898 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730)) (-5 *2 (-2 (|:| |mval| (-628 *4)) (|:| |invmval| (-628 *4)) (|:| |genIdeal| (-474 *4 *5 *6 *7)))) (-5 *1 (-474 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))) (-2964 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-628 *3)) (|:| |invmval| (-628 *3)) (|:| |genIdeal| (-474 *3 *4 *5 *6)))) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-3222 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730)) (-5 *2 (-522)) (-5 *1 (-474 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))) (-3222 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-522)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-2425 (*1 *1 *1) (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784)) (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (-3129 (*1 *1 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)))) (-4201 (*1 *1 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)))) (-1333 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-3915 (*1 *2 *1) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *6)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)))) (-1547 (*1 *1 *1 *2) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *2)) (-4 *2 (-878 *3 *4 *5)))) (-1547 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730)) (-5 *1 (-474 *4 *5 *6 *2)) (-4 *2 (-878 *4 *5 *6)))) (-2916 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *5 *6)) (-4 *6 (-563 (-1085))) (-4 *4 (-338)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1075 (-588 (-881 *4)) (-588 (-270 (-881 *4))))) (-5 *1 (-474 *4 *5 *6 *7)))))
+(-13 (-1014) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-708))) (-15 -1661 ($ $ $)) (-15 -2859 ((-108) $)) (-15 -2944 ((-108) $)) (-15 -3071 ((-108) |#4| $)) (-15 -3006 ((-108) $ $)) (-15 -3132 ((-108) |#4| $)) (-15 -3212 ((-108) $ (-588 |#3|))) (-15 -3212 ((-108) $)) (-15 -2251 ($ $ $)) (-15 -2251 ($ (-588 $))) (-15 -3450 ($ $ $)) (-15 -3450 ($ $ |#4|)) (-15 -3059 ($ $)) (-15 -2898 ((-2 (|:| |mval| (-628 |#1|)) (|:| |invmval| (-628 |#1|)) (|:| |genIdeal| $)) $ (-588 |#3|))) (-15 -2964 ($ (-2 (|:| |mval| (-628 |#1|)) (|:| |invmval| (-628 |#1|)) (|:| |genIdeal| $)))) (-15 -3222 ((-522) $ (-588 |#3|))) (-15 -3222 ((-522) $)) (-15 -2425 ($ $)) (-15 -3129 ($ (-588 |#4|))) (-15 -4201 ($ (-588 |#4|))) (-15 -1333 ((-108) $)) (-15 -3915 ((-588 |#4|) $)) (-15 -2217 ($ (-588 |#4|))) (-15 -1547 ($ $ |#4|)) (-15 -1547 ($ $ |#4| (-588 |#3|))) (IF (|has| |#3| (-563 (-1085))) (-15 -2916 ((-1075 (-588 (-881 |#1|)) (-588 (-270 (-881 |#1|)))) (-588 |#4|))) |%noBranch|)))
+((-3301 (((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) 146)) (-3947 (((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) 147)) (-3904 (((-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) 105)) (-2725 (((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) NIL)) (-3953 (((-588 (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) 149)) (-1208 (((-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-588 (-794 |#1|))) 161)))
+(((-475 |#1| |#2|) (-10 -7 (-15 -3301 ((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -3947 ((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -2725 ((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -3904 ((-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -3953 ((-588 (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -1208 ((-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-588 (-794 |#1|))))) (-588 (-1085)) (-708)) (T -475))
+((-1208 (*1 *2 *2 *3) (-12 (-5 *2 (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4) (-224 *4 (-382 (-522))))) (-5 *3 (-588 (-794 *4))) (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *1 (-475 *4 *5)))) (-3953 (*1 *2 *3) (-12 (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-588 (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4) (-224 *4 (-382 (-522)))))) (-5 *1 (-475 *4 *5)) (-5 *3 (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4) (-224 *4 (-382 (-522))))))) (-3904 (*1 *2 *2) (-12 (-5 *2 (-474 (-382 (-522)) (-217 *4 (-708)) (-794 *3) (-224 *3 (-382 (-522))))) (-14 *3 (-588 (-1085))) (-14 *4 (-708)) (-5 *1 (-475 *3 *4)))) (-2725 (*1 *2 *3) (-12 (-5 *3 (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4) (-224 *4 (-382 (-522))))) (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-108)) (-5 *1 (-475 *4 *5)))) (-3947 (*1 *2 *3) (-12 (-5 *3 (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4) (-224 *4 (-382 (-522))))) (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-108)) (-5 *1 (-475 *4 *5)))) (-3301 (*1 *2 *3) (-12 (-5 *3 (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4) (-224 *4 (-382 (-522))))) (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-108)) (-5 *1 (-475 *4 *5)))))
+(-10 -7 (-15 -3301 ((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -3947 ((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -2725 ((-108) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -3904 ((-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -3953 ((-588 (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522))))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))))) (-15 -1208 ((-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-474 (-382 (-522)) (-217 |#2| (-708)) (-794 |#1|) (-224 |#1| (-382 (-522)))) (-588 (-794 |#1|)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3241 (($ $) NIL)) (-3500 (($ |#1| |#2|) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1801 ((|#2| $) NIL)) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-3697 (($) 12 T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) 11) (($ $ $) 24)) (-1661 (($ $ $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 19)))
(((-476 |#1| |#2|) (-13 (-21) (-478 |#1| |#2|)) (-21) (-784)) (T -476))
NIL
(-13 (-21) (-478 |#1| |#2|))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 12)) (-3175 (($) NIL T CONST)) (-3156 (($ $) 27)) (-4049 (($ |#1| |#2|) 24)) (-1391 (($ (-1 |#1| |#1|) $) 26)) (-1207 ((|#2| $) NIL)) (-3138 ((|#1| $) 28)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-3566 (($) 10 T CONST)) (-1531 (((-108) $ $) NIL)) (-1602 (($ $ $) 18)) (* (($ (-850) $) NIL) (($ (-708) $) 23)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 12)) (-3367 (($) NIL T CONST)) (-3241 (($ $) 27)) (-3500 (($ |#1| |#2|) 24)) (-3810 (($ (-1 |#1| |#1|) $) 26)) (-1801 ((|#2| $) NIL)) (-3224 ((|#1| $) 28)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-3697 (($) 10 T CONST)) (-1562 (((-108) $ $) NIL)) (-1661 (($ $ $) 18)) (* (($ (-850) $) NIL) (($ (-708) $) 23)))
(((-477 |#1| |#2|) (-13 (-23) (-478 |#1| |#2|)) (-23) (-784)) (T -477))
NIL
(-13 (-23) (-478 |#1| |#2|))
-((-1416 (((-108) $ $) 7)) (-3156 (($ $) 13)) (-4049 (($ |#1| |#2|) 16)) (-1391 (($ (-1 |#1| |#1|) $) 17)) (-1207 ((|#2| $) 14)) (-3138 ((|#1| $) 15)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-1531 (((-108) $ $) 6)))
+((-1419 (((-108) $ $) 7)) (-3241 (($ $) 13)) (-3500 (($ |#1| |#2|) 16)) (-3810 (($ (-1 |#1| |#1|) $) 17)) (-1801 ((|#2| $) 14)) (-3224 ((|#1| $) 15)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-1562 (((-108) $ $) 6)))
(((-478 |#1| |#2|) (-1197) (-1014) (-784)) (T -478))
-((-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-478 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-784)))) (-4049 (*1 *1 *2 *3) (-12 (-4 *1 (-478 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-784)))) (-3138 (*1 *2 *1) (-12 (-4 *1 (-478 *2 *3)) (-4 *3 (-784)) (-4 *2 (-1014)))) (-1207 (*1 *2 *1) (-12 (-4 *1 (-478 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-784)))) (-3156 (*1 *1 *1) (-12 (-4 *1 (-478 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-784)))))
-(-13 (-1014) (-10 -8 (-15 -1391 ($ (-1 |t#1| |t#1|) $)) (-15 -4049 ($ |t#1| |t#2|)) (-15 -3138 (|t#1| $)) (-15 -1207 (|t#2| $)) (-15 -3156 ($ $))))
+((-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-478 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-784)))) (-3500 (*1 *1 *2 *3) (-12 (-4 *1 (-478 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-784)))) (-3224 (*1 *2 *1) (-12 (-4 *1 (-478 *2 *3)) (-4 *3 (-784)) (-4 *2 (-1014)))) (-1801 (*1 *2 *1) (-12 (-4 *1 (-478 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-784)))) (-3241 (*1 *1 *1) (-12 (-4 *1 (-478 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-784)))))
+(-13 (-1014) (-10 -8 (-15 -3810 ($ (-1 |t#1| |t#1|) $)) (-15 -3500 ($ |t#1| |t#2|)) (-15 -3224 (|t#1| $)) (-15 -1801 (|t#2| $)) (-15 -3241 ($ $))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-3175 (($) NIL T CONST)) (-3156 (($ $) NIL)) (-4049 (($ |#1| |#2|) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-1207 ((|#2| $) NIL)) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-3566 (($) NIL T CONST)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 13)) (-1602 (($ $ $) NIL)) (* (($ (-708) $) NIL) (($ (-850) $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3367 (($) NIL T CONST)) (-3241 (($ $) NIL)) (-3500 (($ |#1| |#2|) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1801 ((|#2| $) NIL)) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-3697 (($) NIL T CONST)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 13)) (-1661 (($ $ $) NIL)) (* (($ (-708) $) NIL) (($ (-850) $) NIL)))
(((-479 |#1| |#2|) (-13 (-729) (-478 |#1| |#2|)) (-729) (-784)) (T -479))
NIL
(-13 (-729) (-478 |#1| |#2|))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1210 (($ $ $) 16)) (-1233 (((-3 $ "failed") $ $) 13)) (-3175 (($) NIL T CONST)) (-3156 (($ $) NIL)) (-4049 (($ |#1| |#2|) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-1207 ((|#2| $) NIL)) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL)) (-3566 (($) NIL T CONST)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) NIL)) (-1602 (($ $ $) NIL)) (* (($ (-708) $) NIL) (($ (-850) $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-1827 (($ $ $) 16)) (-2265 (((-3 $ "failed") $ $) 13)) (-3367 (($) NIL T CONST)) (-3241 (($ $) NIL)) (-3500 (($ |#1| |#2|) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1801 ((|#2| $) NIL)) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL)) (-3697 (($) NIL T CONST)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) NIL)) (-1661 (($ $ $) NIL)) (* (($ (-708) $) NIL) (($ (-850) $) NIL)))
(((-480 |#1| |#2|) (-13 (-730) (-478 |#1| |#2|)) (-730) (-784)) (T -480))
NIL
(-13 (-730) (-478 |#1| |#2|))
-((-1416 (((-108) $ $) NIL)) (-3156 (($ $) 25)) (-4049 (($ |#1| |#2|) 22)) (-1391 (($ (-1 |#1| |#1|) $) 24)) (-1207 ((|#2| $) 27)) (-3138 ((|#1| $) 26)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 21)) (-1531 (((-108) $ $) 14)))
+((-1419 (((-108) $ $) NIL)) (-3241 (($ $) 25)) (-3500 (($ |#1| |#2|) 22)) (-3810 (($ (-1 |#1| |#1|) $) 24)) (-1801 ((|#2| $) 27)) (-3224 ((|#1| $) 26)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 21)) (-1562 (((-108) $ $) 14)))
(((-481 |#1| |#2|) (-478 |#1| |#2|) (-1014) (-784)) (T -481))
NIL
(-478 |#1| |#2|)
-((-2289 (($ $ (-588 |#2|) (-588 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
-(((-482 |#1| |#2| |#3|) (-10 -8 (-15 -2289 (|#1| |#1| |#2| |#3|)) (-15 -2289 (|#1| |#1| (-588 |#2|) (-588 |#3|)))) (-483 |#2| |#3|) (-1014) (-1120)) (T -482))
+((-2330 (($ $ (-588 |#2|) (-588 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
+(((-482 |#1| |#2| |#3|) (-10 -8 (-15 -2330 (|#1| |#1| |#2| |#3|)) (-15 -2330 (|#1| |#1| (-588 |#2|) (-588 |#3|)))) (-483 |#2| |#3|) (-1014) (-1120)) (T -482))
NIL
-(-10 -8 (-15 -2289 (|#1| |#1| |#2| |#3|)) (-15 -2289 (|#1| |#1| (-588 |#2|) (-588 |#3|))))
-((-2289 (($ $ (-588 |#1|) (-588 |#2|)) 7) (($ $ |#1| |#2|) 6)))
+(-10 -8 (-15 -2330 (|#1| |#1| |#2| |#3|)) (-15 -2330 (|#1| |#1| (-588 |#2|) (-588 |#3|))))
+((-2330 (($ $ (-588 |#1|) (-588 |#2|)) 7) (($ $ |#1| |#2|) 6)))
(((-483 |#1| |#2|) (-1197) (-1014) (-1120)) (T -483))
-((-2289 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *4)) (-5 *3 (-588 *5)) (-4 *1 (-483 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1120)))) (-2289 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-483 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1120)))))
-(-13 (-10 -8 (-15 -2289 ($ $ |t#1| |t#2|)) (-15 -2289 ($ $ (-588 |t#1|) (-588 |t#2|)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 16)) (-2258 (((-588 (-2 (|:| |gen| |#1|) (|:| -3266 |#2|))) $) 18)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1629 (((-708) $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL)) (-1484 ((|#1| $) NIL)) (-3750 ((|#1| $ (-522)) 23)) (-3816 ((|#2| $ (-522)) 21)) (-3896 (($ (-1 |#1| |#1|) $) 46)) (-1564 (($ (-1 |#2| |#2|) $) 43)) (-2385 (((-1068) $) NIL)) (-3443 (($ $ $) 53 (|has| |#2| (-729)))) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 42) (($ |#1|) NIL)) (-3243 ((|#2| |#1| $) 49)) (-3566 (($) 11 T CONST)) (-1531 (((-108) $ $) 29)) (-1602 (($ $ $) 27) (($ |#1| $) 25)) (* (($ (-850) $) NIL) (($ (-708) $) 36) (($ |#2| |#1|) 31)))
+((-2330 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *4)) (-5 *3 (-588 *5)) (-4 *1 (-483 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1120)))) (-2330 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-483 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1120)))))
+(-13 (-10 -8 (-15 -2330 ($ $ |t#1| |t#2|)) (-15 -2330 ($ $ (-588 |t#1|) (-588 |t#2|)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 16)) (-3024 (((-588 (-2 (|:| |gen| |#1|) (|:| -3357 |#2|))) $) 18)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1685 (((-708) $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL)) (-1478 ((|#1| $) NIL)) (-3108 ((|#1| $ (-522)) 23)) (-2544 ((|#2| $ (-522)) 21)) (-2007 (($ (-1 |#1| |#1|) $) 46)) (-3534 (($ (-1 |#2| |#2|) $) 43)) (-2311 (((-1068) $) NIL)) (-3075 (($ $ $) 53 (|has| |#2| (-729)))) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 42) (($ |#1|) NIL)) (-1643 ((|#2| |#1| $) 49)) (-3697 (($) 11 T CONST)) (-1562 (((-108) $ $) 29)) (-1661 (($ $ $) 27) (($ |#1| $) 25)) (* (($ (-850) $) NIL) (($ (-708) $) 36) (($ |#2| |#1|) 31)))
(((-484 |#1| |#2| |#3|) (-298 |#1| |#2|) (-1014) (-124) |#2|) (T -484))
NIL
(-298 |#1| |#2|)
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-3537 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3216 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-4141 (((-108) $ (-708)) NIL)) (-2498 (((-108) (-108)) 24)) (-2379 ((|#1| $ (-522) |#1|) 27 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-2790 (($ (-1 (-108) |#1|) $) 51)) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-3362 (($ $) 55 (|has| |#1| (-1014)))) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3859 (($ |#1| $) NIL (|has| |#1| (-1014))) (($ (-1 (-108) |#1|) $) 43)) (-1423 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) NIL)) (-3238 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-3381 (($ $ (-522)) 13)) (-3260 (((-708) $) 11)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1811 (($ (-708) |#1|) 22)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) 20 (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-1369 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) 34)) (-2160 (($ (-1 (-108) |#1| |#1|) $ $) 35) (($ $ $) NIL (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-522) $) 19 (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4095 (($ $ $ (-522)) 50) (($ |#1| $ (-522)) 36)) (-1661 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3080 (($ (-588 |#1|)) 28)) (-2294 ((|#1| $) NIL (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2602 (($ $ |#1|) 18 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 39)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) 14)) (-2545 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) 32) (($ $ (-1133 (-522))) NIL)) (-3681 (($ $ (-1133 (-522))) 49) (($ $ (-522)) 44)) (-3696 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1577 (($ $ $ (-522)) 40 (|has| $ (-6 -4239)))) (-2404 (($ $) 31)) (-1431 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) NIL)) (-2630 (($ $ $) 41) (($ $ |#1|) 38)) (-4165 (($ $ |#1|) NIL) (($ |#1| $) 37) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3480 (((-708) $) 15 (|has| $ (-6 -4238)))))
-(((-485 |#1| |#2|) (-13 (-19 |#1|) (-258 |#1|) (-10 -8 (-15 -3080 ($ (-588 |#1|))) (-15 -3260 ((-708) $)) (-15 -3381 ($ $ (-522))) (-15 -2498 ((-108) (-108))))) (-1120) (-522)) (T -485))
-((-3080 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-485 *3 *4)) (-14 *4 (-522)))) (-3260 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-485 *3 *4)) (-4 *3 (-1120)) (-14 *4 (-522)))) (-3381 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-485 *3 *4)) (-4 *3 (-1120)) (-14 *4 *2))) (-2498 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-485 *3 *4)) (-4 *3 (-1120)) (-14 *4 (-522)))))
-(-13 (-19 |#1|) (-258 |#1|) (-10 -8 (-15 -3080 ($ (-588 |#1|))) (-15 -3260 ((-708) $)) (-15 -3381 ($ $ (-522))) (-15 -2498 ((-108) (-108)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1651 (((-108) $) NIL)) (-2219 (((-708)) NIL)) (-1865 (((-535 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-535 |#1|) (-343)))) (-1398 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-535 |#1|) (-343)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1629 (((-708)) NIL (|has| (-535 |#1|) (-343)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-535 |#1|) "failed") $) NIL)) (-1484 (((-535 |#1|) $) NIL)) (-3766 (($ (-1166 (-535 |#1|))) NIL)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-535 |#1|) (-343)))) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| (-535 |#1|) (-343)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-1223 (($) NIL (|has| (-535 |#1|) (-343)))) (-2511 (((-108) $) NIL (|has| (-535 |#1|) (-343)))) (-2111 (($ $ (-708)) NIL (-3708 (|has| (-535 |#1|) (-133)) (|has| (-535 |#1|) (-343)))) (($ $) NIL (-3708 (|has| (-535 |#1|) (-133)) (|has| (-535 |#1|) (-343))))) (-2813 (((-108) $) NIL)) (-3714 (((-850) $) NIL (|has| (-535 |#1|) (-343))) (((-770 (-850)) $) NIL (-3708 (|has| (-535 |#1|) (-133)) (|has| (-535 |#1|) (-343))))) (-2782 (((-108) $) NIL)) (-3400 (($) NIL (|has| (-535 |#1|) (-343)))) (-2741 (((-108) $) NIL (|has| (-535 |#1|) (-343)))) (-2100 (((-535 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-535 |#1|) (-343)))) (-3004 (((-3 $ "failed") $) NIL (|has| (-535 |#1|) (-343)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1712 (((-1081 (-535 |#1|)) $) NIL) (((-1081 $) $ (-850)) NIL (|has| (-535 |#1|) (-343)))) (-2120 (((-850) $) NIL (|has| (-535 |#1|) (-343)))) (-3074 (((-1081 (-535 |#1|)) $) NIL (|has| (-535 |#1|) (-343)))) (-2941 (((-1081 (-535 |#1|)) $) NIL (|has| (-535 |#1|) (-343))) (((-3 (-1081 (-535 |#1|)) "failed") $ $) NIL (|has| (-535 |#1|) (-343)))) (-1425 (($ $ (-1081 (-535 |#1|))) NIL (|has| (-535 |#1|) (-343)))) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| (-535 |#1|) (-343)) CONST)) (-2717 (($ (-850)) NIL (|has| (-535 |#1|) (-343)))) (-2822 (((-108) $) NIL)) (-4151 (((-1032) $) NIL)) (-1383 (($) NIL (|has| (-535 |#1|) (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL (|has| (-535 |#1|) (-343)))) (-1916 (((-393 $) $) NIL)) (-2621 (((-770 (-850))) NIL) (((-850)) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3018 (((-708) $) NIL (|has| (-535 |#1|) (-343))) (((-3 (-708) "failed") $ $) NIL (-3708 (|has| (-535 |#1|) (-133)) (|has| (-535 |#1|) (-343))))) (-4078 (((-126)) NIL)) (-2157 (($ $) NIL (|has| (-535 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-535 |#1|) (-343)))) (-2793 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1479 (((-1081 (-535 |#1|))) NIL)) (-2581 (($) NIL (|has| (-535 |#1|) (-343)))) (-1299 (($) NIL (|has| (-535 |#1|) (-343)))) (-3677 (((-1166 (-535 |#1|)) $) NIL) (((-628 (-535 |#1|)) (-1166 $)) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| (-535 |#1|) (-343)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-535 |#1|)) NIL)) (-2143 (($ $) NIL (|has| (-535 |#1|) (-343))) (((-3 $ "failed") $) NIL (-3708 (|has| (-535 |#1|) (-133)) (|has| (-535 |#1|) (-343))))) (-2323 (((-708)) NIL)) (-3855 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-3958 (((-108) $ $) NIL)) (-2351 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-3428 (($ $) NIL (|has| (-535 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-535 |#1|) (-343)))) (-2213 (($ $) NIL (|has| (-535 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-535 |#1|) (-343)))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL) (($ $ (-535 |#1|)) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ (-535 |#1|)) NIL) (($ (-535 |#1|) $) NIL)))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-2806 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3296 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-2717 (((-108) $ (-708)) NIL)) (-4159 (((-108) (-108)) 24)) (-2437 ((|#1| $ (-522) |#1|) 27 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1213 (($ (-1 (-108) |#1|) $) 51)) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-1581 (($ $) 55 (|has| |#1| (-1014)))) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1700 (($ |#1| $) NIL (|has| |#1| (-1014))) (($ (-1 (-108) |#1|) $) 43)) (-1424 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) NIL)) (-3314 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-3573 (($ $ (-522)) 13)) (-1803 (((-708) $) 11)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1893 (($ (-708) |#1|) 22)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) 20 (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-3557 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) 34)) (-3164 (($ (-1 (-108) |#1| |#1|) $ $) 35) (($ $ $) NIL (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-522) $) 19 (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-3365 (($ $ $ (-522)) 50) (($ |#1| $ (-522)) 36)) (-1731 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3706 (($ (-588 |#1|)) 28)) (-2337 ((|#1| $) NIL (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1972 (($ $ |#1|) 18 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 39)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) 14)) (-2683 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) 32) (($ $ (-1133 (-522))) NIL)) (-3551 (($ $ (-1133 (-522))) 49) (($ $ (-522)) 44)) (-3835 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3629 (($ $ $ (-522)) 40 (|has| $ (-6 -4239)))) (-2463 (($ $) 31)) (-3873 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) NIL)) (-2335 (($ $ $) 41) (($ $ |#1|) 38)) (-4170 (($ $ |#1|) NIL) (($ |#1| $) 37) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3591 (((-708) $) 15 (|has| $ (-6 -4238)))))
+(((-485 |#1| |#2|) (-13 (-19 |#1|) (-258 |#1|) (-10 -8 (-15 -3706 ($ (-588 |#1|))) (-15 -1803 ((-708) $)) (-15 -3573 ($ $ (-522))) (-15 -4159 ((-108) (-108))))) (-1120) (-522)) (T -485))
+((-3706 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-485 *3 *4)) (-14 *4 (-522)))) (-1803 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-485 *3 *4)) (-4 *3 (-1120)) (-14 *4 (-522)))) (-3573 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-485 *3 *4)) (-4 *3 (-1120)) (-14 *4 *2))) (-4159 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-485 *3 *4)) (-4 *3 (-1120)) (-14 *4 (-522)))))
+(-13 (-19 |#1|) (-258 |#1|) (-10 -8 (-15 -3706 ($ (-588 |#1|))) (-15 -1803 ((-708) $)) (-15 -3573 ($ $ (-522))) (-15 -4159 ((-108) (-108)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2400 (((-108) $) NIL)) (-1593 (((-708)) NIL)) (-1945 (((-535 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-535 |#1|) (-343)))) (-3833 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-535 |#1|) (-343)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-1685 (((-708)) NIL (|has| (-535 |#1|) (-343)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-535 |#1|) "failed") $) NIL)) (-1478 (((-535 |#1|) $) NIL)) (-3225 (($ (-1166 (-535 |#1|))) NIL)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-535 |#1|) (-343)))) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| (-535 |#1|) (-343)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2160 (($) NIL (|has| (-535 |#1|) (-343)))) (-2087 (((-108) $) NIL (|has| (-535 |#1|) (-343)))) (-1380 (($ $ (-708)) NIL (-3844 (|has| (-535 |#1|) (-133)) (|has| (-535 |#1|) (-343)))) (($ $) NIL (-3844 (|has| (-535 |#1|) (-133)) (|has| (-535 |#1|) (-343))))) (-2725 (((-108) $) NIL)) (-3872 (((-850) $) NIL (|has| (-535 |#1|) (-343))) (((-770 (-850)) $) NIL (-3844 (|has| (-535 |#1|) (-133)) (|has| (-535 |#1|) (-343))))) (-2859 (((-108) $) NIL)) (-3768 (($) NIL (|has| (-535 |#1|) (-343)))) (-1372 (((-108) $) NIL (|has| (-535 |#1|) (-343)))) (-1269 (((-535 |#1|) $) NIL) (($ $ (-850)) NIL (|has| (-535 |#1|) (-343)))) (-4208 (((-3 $ "failed") $) NIL (|has| (-535 |#1|) (-343)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4199 (((-1081 (-535 |#1|)) $) NIL) (((-1081 $) $ (-850)) NIL (|has| (-535 |#1|) (-343)))) (-1475 (((-850) $) NIL (|has| (-535 |#1|) (-343)))) (-3657 (((-1081 (-535 |#1|)) $) NIL (|has| (-535 |#1|) (-343)))) (-3723 (((-1081 (-535 |#1|)) $) NIL (|has| (-535 |#1|) (-343))) (((-3 (-1081 (-535 |#1|)) "failed") $ $) NIL (|has| (-535 |#1|) (-343)))) (-2259 (($ $ (-1081 (-535 |#1|))) NIL (|has| (-535 |#1|) (-343)))) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| (-535 |#1|) (-343)) CONST)) (-2882 (($ (-850)) NIL (|has| (-535 |#1|) (-343)))) (-2804 (((-108) $) NIL)) (-4174 (((-1032) $) NIL)) (-1368 (($) NIL (|has| (-535 |#1|) (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL (|has| (-535 |#1|) (-343)))) (-2006 (((-393 $) $) NIL)) (-1713 (((-770 (-850))) NIL) (((-850)) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1304 (((-708) $) NIL (|has| (-535 |#1|) (-343))) (((-3 (-708) "failed") $ $) NIL (-3844 (|has| (-535 |#1|) (-133)) (|has| (-535 |#1|) (-343))))) (-3222 (((-126)) NIL)) (-2731 (($ $) NIL (|has| (-535 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-535 |#1|) (-343)))) (-2487 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-1579 (((-1081 (-535 |#1|))) NIL)) (-2670 (($) NIL (|has| (-535 |#1|) (-343)))) (-1705 (($) NIL (|has| (-535 |#1|) (-343)))) (-3510 (((-1166 (-535 |#1|)) $) NIL) (((-628 (-535 |#1|)) (-1166 $)) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| (-535 |#1|) (-343)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-535 |#1|)) NIL)) (-3040 (($ $) NIL (|has| (-535 |#1|) (-343))) (((-3 $ "failed") $) NIL (-3844 (|has| (-535 |#1|) (-133)) (|has| (-535 |#1|) (-343))))) (-2742 (((-708)) NIL)) (-2905 (((-1166 $)) NIL) (((-1166 $) (-850)) NIL)) (-1407 (((-108) $ $) NIL)) (-1711 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2938 (($ $) NIL (|has| (-535 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-535 |#1|) (-343)))) (-2252 (($ $) NIL (|has| (-535 |#1|) (-343))) (($ $ (-708)) NIL (|has| (-535 |#1|) (-343)))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL) (($ $ (-535 |#1|)) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ $ (-535 |#1|)) NIL) (($ (-535 |#1|) $) NIL)))
(((-486 |#1| |#2|) (-304 (-535 |#1|)) (-850) (-850)) (T -486))
NIL
(-304 (-535 |#1|))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#1| $ (-522) (-522) |#1|) 33)) (-2480 (($ $ (-522) |#4|) NIL)) (-1888 (($ $ (-522) |#5|) NIL)) (-3175 (($) NIL T CONST)) (-1860 ((|#4| $ (-522)) NIL)) (-3854 ((|#1| $ (-522) (-522) |#1|) 32)) (-3631 ((|#1| $ (-522) (-522)) 30)) (-3837 (((-588 |#1|) $) NIL)) (-1411 (((-708) $) 26)) (-1811 (($ (-708) (-708) |#1|) 23)) (-1422 (((-708) $) 28)) (-3352 (((-108) $ (-708)) NIL)) (-2575 (((-522) $) 24)) (-1885 (((-522) $) 25)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3886 (((-522) $) 27)) (-4132 (((-522) $) 29)) (-3838 (($ (-1 |#1| |#1|) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) 36 (|has| |#1| (-1014)))) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2602 (($ $ |#1|) NIL)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 14)) (-3775 (($) 15)) (-2545 ((|#1| $ (-522) (-522)) 31) ((|#1| $ (-522) (-522) |#1|) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-3488 ((|#5| $ (-522)) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#1| $ (-522) (-522) |#1|) 33)) (-3074 (($ $ (-522) |#4|) NIL)) (-4060 (($ $ (-522) |#5|) NIL)) (-3367 (($) NIL T CONST)) (-2635 ((|#4| $ (-522)) NIL)) (-2411 ((|#1| $ (-522) (-522) |#1|) 32)) (-2186 ((|#1| $ (-522) (-522)) 30)) (-2395 (((-588 |#1|) $) NIL)) (-2949 (((-708) $) 26)) (-1893 (($ (-708) (-708) |#1|) 23)) (-2960 (((-708) $) 28)) (-1480 (((-108) $ (-708)) NIL)) (-2604 (((-522) $) 24)) (-4042 (((-522) $) 25)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1925 (((-522) $) 27)) (-2595 (((-522) $) 29)) (-2397 (($ (-1 |#1| |#1|) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) 36 (|has| |#1| (-1014)))) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1972 (($ $ |#1|) NIL)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 14)) (-3298 (($) 15)) (-2683 ((|#1| $ (-522) (-522)) 31) ((|#1| $ (-522) (-522) |#1|) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2223 ((|#5| $ (-522)) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-487 |#1| |#2| |#3| |#4| |#5|) (-55 |#1| |#4| |#5|) (-1120) (-522) (-522) (-348 |#1|) (-348 |#1|)) (T -487))
NIL
(-55 |#1| |#4| |#5|)
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3435 ((|#1| $) NIL)) (-2093 ((|#1| $) NIL)) (-3835 (($ $) NIL)) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-3487 (($ $ (-522)) 58 (|has| $ (-6 -4239)))) (-4187 (((-108) $) NIL (|has| |#1| (-784))) (((-108) (-1 (-108) |#1| |#1|) $) NIL)) (-3537 (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784)))) (($ (-1 (-108) |#1| |#1|) $) 56 (|has| $ (-6 -4239)))) (-3216 (($ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-3628 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-1243 (($ $ $) 23 (|has| $ (-6 -4239)))) (-2049 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-1346 ((|#1| $ |#1|) 21 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4239))) (($ $ "rest" $) 24 (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-2790 (($ (-1 (-108) |#1|) $) NIL)) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2081 ((|#1| $) NIL)) (-3175 (($) NIL T CONST)) (-3509 (($ $) 28 (|has| $ (-6 -4239)))) (-1862 (($ $) 29)) (-2306 (($ $) 18) (($ $ (-708)) 32)) (-3362 (($ $) 54 (|has| |#1| (-1014)))) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3859 (($ |#1| $) NIL (|has| |#1| (-1014))) (($ (-1 (-108) |#1|) $) NIL)) (-1423 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3854 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) NIL)) (-3069 (((-108) $) NIL)) (-3238 (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014))) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) (-1 (-108) |#1|) $) NIL)) (-3837 (((-588 |#1|) $) 27 (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) NIL)) (-2030 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1811 (($ (-708) |#1|) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) 31 (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-1369 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) 57)) (-2160 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 52 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1580 (($ |#1|) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-1279 (((-588 |#1|) $) NIL)) (-1754 (((-108) $) NIL)) (-2385 (((-1068) $) 51 (|has| |#1| (-1014)))) (-1442 ((|#1| $) NIL) (($ $ (-708)) NIL)) (-4095 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-1661 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2294 ((|#1| $) 13) (($ $ (-708)) NIL)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2602 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-2855 (((-108) $) NIL)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 12)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) 17)) (-3775 (($) 16)) (-2545 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1133 (-522))) NIL) ((|#1| $ (-522)) NIL) ((|#1| $ (-522) |#1|) NIL)) (-2011 (((-522) $ $) NIL)) (-3681 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3696 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3042 (((-108) $) 34)) (-3107 (($ $) NIL)) (-2646 (($ $) NIL (|has| $ (-6 -4239)))) (-2393 (((-708) $) NIL)) (-2122 (($ $) 36)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) 35)) (-1431 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 26)) (-2630 (($ $ $) 53) (($ $ |#1|) NIL)) (-4165 (($ $ $) NIL) (($ |#1| $) 10) (($ (-588 $)) NIL) (($ $ |#1|) NIL)) (-2190 (((-792) $) 46 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) NIL)) (-2425 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) 48 (|has| |#1| (-1014)))) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3480 (((-708) $) 9 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3526 ((|#1| $) NIL)) (-2126 ((|#1| $) NIL)) (-3961 (($ $) NIL)) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-2211 (($ $ (-522)) 58 (|has| $ (-6 -4239)))) (-1866 (((-108) $) NIL (|has| |#1| (-784))) (((-108) (-1 (-108) |#1| |#1|) $) NIL)) (-2806 (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784)))) (($ (-1 (-108) |#1| |#1|) $) 56 (|has| $ (-6 -4239)))) (-3296 (($ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1198 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-2398 (($ $ $) 23 (|has| $ (-6 -4239)))) (-2631 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-3393 ((|#1| $ |#1|) 21 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4239))) (($ $ "rest" $) 24 (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-1213 (($ (-1 (-108) |#1|) $) NIL)) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2116 ((|#1| $) NIL)) (-3367 (($) NIL T CONST)) (-2465 (($ $) 28 (|has| $ (-6 -4239)))) (-1939 (($ $) 29)) (-2352 (($ $) 18) (($ $ (-708)) 32)) (-1581 (($ $) 54 (|has| |#1| (-1014)))) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1700 (($ |#1| $) NIL (|has| |#1| (-1014))) (($ (-1 (-108) |#1|) $) NIL)) (-1424 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2411 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) NIL)) (-3614 (((-108) $) NIL)) (-3314 (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014))) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) (-1 (-108) |#1|) $) NIL)) (-2395 (((-588 |#1|) $) 27 (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) NIL)) (-2402 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1893 (($ (-708) |#1|) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) 31 (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-3557 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) 57)) (-3164 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 52 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1614 (($ |#1|) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2548 (((-588 |#1|) $) NIL)) (-3394 (((-108) $) NIL)) (-2311 (((-1068) $) 51 (|has| |#1| (-1014)))) (-1442 ((|#1| $) NIL) (($ $ (-708)) NIL)) (-3365 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-1731 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2337 ((|#1| $) 13) (($ $ (-708)) NIL)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1972 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-4196 (((-108) $) NIL)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 12)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) 17)) (-3298 (($) 16)) (-2683 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1133 (-522))) NIL) ((|#1| $ (-522)) NIL) ((|#1| $ (-522) |#1|) NIL)) (-3381 (((-522) $ $) NIL)) (-3551 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3835 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3395 (((-108) $) 34)) (-2885 (($ $) NIL)) (-1668 (($ $) NIL (|has| $ (-6 -4239)))) (-1321 (((-708) $) NIL)) (-1502 (($ $) 36)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) 35)) (-3873 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 26)) (-2335 (($ $ $) 53) (($ $ |#1|) NIL)) (-4170 (($ $ $) NIL) (($ |#1| $) 10) (($ (-588 $)) NIL) (($ $ |#1|) NIL)) (-2217 (((-792) $) 46 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) NIL)) (-3294 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) 48 (|has| |#1| (-1014)))) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3591 (((-708) $) 9 (|has| $ (-6 -4238)))))
(((-488 |#1| |#2|) (-608 |#1|) (-1120) (-522)) (T -488))
NIL
(-608 |#1|)
-((-2264 ((|#4| |#4|) 26)) (-3166 (((-708) |#4|) 31)) (-3799 (((-708) |#4|) 32)) (-2064 (((-588 |#3|) |#4|) 38 (|has| |#3| (-6 -4239)))) (-2147 (((-3 |#4| "failed") |#4|) 48)) (-3550 ((|#4| |#4|) 41)) (-3206 ((|#1| |#4|) 40)))
-(((-489 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2264 (|#4| |#4|)) (-15 -3166 ((-708) |#4|)) (-15 -3799 ((-708) |#4|)) (IF (|has| |#3| (-6 -4239)) (-15 -2064 ((-588 |#3|) |#4|)) |%noBranch|) (-15 -3206 (|#1| |#4|)) (-15 -3550 (|#4| |#4|)) (-15 -2147 ((-3 |#4| "failed") |#4|))) (-338) (-348 |#1|) (-348 |#1|) (-626 |#1| |#2| |#3|)) (T -489))
-((-2147 (*1 *2 *2) (|partial| -12 (-4 *3 (-338)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-489 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-3550 (*1 *2 *2) (-12 (-4 *3 (-338)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-489 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-3206 (*1 *2 *3) (-12 (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-338)) (-5 *1 (-489 *2 *4 *5 *3)) (-4 *3 (-626 *2 *4 *5)))) (-2064 (*1 *2 *3) (-12 (|has| *6 (-6 -4239)) (-4 *4 (-338)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-588 *6)) (-5 *1 (-489 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-3799 (*1 *2 *3) (-12 (-4 *4 (-338)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-708)) (-5 *1 (-489 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-3166 (*1 *2 *3) (-12 (-4 *4 (-338)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-708)) (-5 *1 (-489 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-2264 (*1 *2 *2) (-12 (-4 *3 (-338)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-489 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
-(-10 -7 (-15 -2264 (|#4| |#4|)) (-15 -3166 ((-708) |#4|)) (-15 -3799 ((-708) |#4|)) (IF (|has| |#3| (-6 -4239)) (-15 -2064 ((-588 |#3|) |#4|)) |%noBranch|) (-15 -3206 (|#1| |#4|)) (-15 -3550 (|#4| |#4|)) (-15 -2147 ((-3 |#4| "failed") |#4|)))
-((-2264 ((|#8| |#4|) 20)) (-2064 (((-588 |#3|) |#4|) 29 (|has| |#7| (-6 -4239)))) (-2147 (((-3 |#8| "failed") |#4|) 23)))
-(((-490 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2264 (|#8| |#4|)) (-15 -2147 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4239)) (-15 -2064 ((-588 |#3|) |#4|)) |%noBranch|)) (-514) (-348 |#1|) (-348 |#1|) (-626 |#1| |#2| |#3|) (-919 |#1|) (-348 |#5|) (-348 |#5|) (-626 |#5| |#6| |#7|)) (T -490))
-((-2064 (*1 *2 *3) (-12 (|has| *9 (-6 -4239)) (-4 *4 (-514)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-4 *7 (-919 *4)) (-4 *8 (-348 *7)) (-4 *9 (-348 *7)) (-5 *2 (-588 *6)) (-5 *1 (-490 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-626 *4 *5 *6)) (-4 *10 (-626 *7 *8 *9)))) (-2147 (*1 *2 *3) (|partial| -12 (-4 *4 (-514)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-4 *7 (-919 *4)) (-4 *2 (-626 *7 *8 *9)) (-5 *1 (-490 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-626 *4 *5 *6)) (-4 *8 (-348 *7)) (-4 *9 (-348 *7)))) (-2264 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-4 *7 (-919 *4)) (-4 *2 (-626 *7 *8 *9)) (-5 *1 (-490 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-626 *4 *5 *6)) (-4 *8 (-348 *7)) (-4 *9 (-348 *7)))))
-(-10 -7 (-15 -2264 (|#8| |#4|)) (-15 -2147 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4239)) (-15 -2064 ((-588 |#3|) |#4|)) |%noBranch|))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3483 (($ (-708) (-708)) NIL)) (-3437 (($ $ $) NIL)) (-2318 (($ (-553 |#1| |#3|)) NIL) (($ $) NIL)) (-2727 (((-108) $) NIL)) (-2444 (($ $ (-522) (-522)) 12)) (-1327 (($ $ (-522) (-522)) NIL)) (-4183 (($ $ (-522) (-522) (-522) (-522)) NIL)) (-2212 (($ $) NIL)) (-2527 (((-108) $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-3478 (($ $ (-522) (-522) $) NIL)) (-2379 ((|#1| $ (-522) (-522) |#1|) NIL) (($ $ (-588 (-522)) (-588 (-522)) $) NIL)) (-2480 (($ $ (-522) (-553 |#1| |#3|)) NIL)) (-1888 (($ $ (-522) (-553 |#1| |#2|)) NIL)) (-3022 (($ (-708) |#1|) NIL)) (-3175 (($) NIL T CONST)) (-2264 (($ $) 19 (|has| |#1| (-283)))) (-1860 (((-553 |#1| |#3|) $ (-522)) NIL)) (-3166 (((-708) $) 22 (|has| |#1| (-514)))) (-3854 ((|#1| $ (-522) (-522) |#1|) NIL)) (-3631 ((|#1| $ (-522) (-522)) NIL)) (-3837 (((-588 |#1|) $) NIL)) (-3799 (((-708) $) 24 (|has| |#1| (-514)))) (-2064 (((-588 (-553 |#1| |#2|)) $) 27 (|has| |#1| (-514)))) (-1411 (((-708) $) NIL)) (-1811 (($ (-708) (-708) |#1|) NIL)) (-1422 (((-708) $) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-3081 ((|#1| $) 17 (|has| |#1| (-6 (-4240 "*"))))) (-2575 (((-522) $) 10)) (-1885 (((-522) $) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3886 (((-522) $) 11)) (-4132 (((-522) $) NIL)) (-1366 (($ (-588 (-588 |#1|))) NIL)) (-3838 (($ (-1 |#1| |#1|) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3237 (((-588 (-588 |#1|)) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-2147 (((-3 $ "failed") $) 31 (|has| |#1| (-338)))) (-1572 (($ $ $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2602 (($ $ |#1|) NIL)) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ (-522) (-522)) NIL) ((|#1| $ (-522) (-522) |#1|) NIL) (($ $ (-588 (-522)) (-588 (-522))) NIL)) (-4077 (($ (-588 |#1|)) NIL) (($ (-588 $)) NIL)) (-1767 (((-108) $) NIL)) (-3206 ((|#1| $) 15 (|has| |#1| (-6 (-4240 "*"))))) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-3488 (((-553 |#1| |#2|) $ (-522)) NIL)) (-2190 (($ (-553 |#1| |#2|)) NIL) (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1697 (((-108) $) NIL)) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $ $) NIL) (($ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-522) $) NIL) (((-553 |#1| |#2|) $ (-553 |#1| |#2|)) NIL) (((-553 |#1| |#3|) (-553 |#1| |#3|) $) NIL)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-2091 ((|#4| |#4|) 26)) (-1692 (((-708) |#4|) 31)) (-2336 (((-708) |#4|) 32)) (-2819 (((-588 |#3|) |#4|) 38 (|has| |#3| (-6 -4239)))) (-3073 (((-3 |#4| "failed") |#4|) 48)) (-1673 ((|#4| |#4|) 41)) (-2500 ((|#1| |#4|) 40)))
+(((-489 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2091 (|#4| |#4|)) (-15 -1692 ((-708) |#4|)) (-15 -2336 ((-708) |#4|)) (IF (|has| |#3| (-6 -4239)) (-15 -2819 ((-588 |#3|) |#4|)) |%noBranch|) (-15 -2500 (|#1| |#4|)) (-15 -1673 (|#4| |#4|)) (-15 -3073 ((-3 |#4| "failed") |#4|))) (-338) (-348 |#1|) (-348 |#1|) (-626 |#1| |#2| |#3|)) (T -489))
+((-3073 (*1 *2 *2) (|partial| -12 (-4 *3 (-338)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-489 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-1673 (*1 *2 *2) (-12 (-4 *3 (-338)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-489 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-2500 (*1 *2 *3) (-12 (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-338)) (-5 *1 (-489 *2 *4 *5 *3)) (-4 *3 (-626 *2 *4 *5)))) (-2819 (*1 *2 *3) (-12 (|has| *6 (-6 -4239)) (-4 *4 (-338)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-588 *6)) (-5 *1 (-489 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-2336 (*1 *2 *3) (-12 (-4 *4 (-338)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-708)) (-5 *1 (-489 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-1692 (*1 *2 *3) (-12 (-4 *4 (-338)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-708)) (-5 *1 (-489 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-2091 (*1 *2 *2) (-12 (-4 *3 (-338)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-489 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
+(-10 -7 (-15 -2091 (|#4| |#4|)) (-15 -1692 ((-708) |#4|)) (-15 -2336 ((-708) |#4|)) (IF (|has| |#3| (-6 -4239)) (-15 -2819 ((-588 |#3|) |#4|)) |%noBranch|) (-15 -2500 (|#1| |#4|)) (-15 -1673 (|#4| |#4|)) (-15 -3073 ((-3 |#4| "failed") |#4|)))
+((-2091 ((|#8| |#4|) 20)) (-2819 (((-588 |#3|) |#4|) 29 (|has| |#7| (-6 -4239)))) (-3073 (((-3 |#8| "failed") |#4|) 23)))
+(((-490 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2091 (|#8| |#4|)) (-15 -3073 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4239)) (-15 -2819 ((-588 |#3|) |#4|)) |%noBranch|)) (-514) (-348 |#1|) (-348 |#1|) (-626 |#1| |#2| |#3|) (-919 |#1|) (-348 |#5|) (-348 |#5|) (-626 |#5| |#6| |#7|)) (T -490))
+((-2819 (*1 *2 *3) (-12 (|has| *9 (-6 -4239)) (-4 *4 (-514)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-4 *7 (-919 *4)) (-4 *8 (-348 *7)) (-4 *9 (-348 *7)) (-5 *2 (-588 *6)) (-5 *1 (-490 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-626 *4 *5 *6)) (-4 *10 (-626 *7 *8 *9)))) (-3073 (*1 *2 *3) (|partial| -12 (-4 *4 (-514)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-4 *7 (-919 *4)) (-4 *2 (-626 *7 *8 *9)) (-5 *1 (-490 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-626 *4 *5 *6)) (-4 *8 (-348 *7)) (-4 *9 (-348 *7)))) (-2091 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-4 *7 (-919 *4)) (-4 *2 (-626 *7 *8 *9)) (-5 *1 (-490 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-626 *4 *5 *6)) (-4 *8 (-348 *7)) (-4 *9 (-348 *7)))))
+(-10 -7 (-15 -2091 (|#8| |#4|)) (-15 -3073 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4239)) (-15 -2819 ((-588 |#3|) |#4|)) |%noBranch|))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1785 (($ (-708) (-708)) NIL)) (-3021 (($ $ $) NIL)) (-2682 (($ (-553 |#1| |#3|)) NIL) (($ $) NIL)) (-3455 (((-108) $) NIL)) (-3637 (($ $ (-522) (-522)) 12)) (-1957 (($ $ (-522) (-522)) NIL)) (-1834 (($ $ (-522) (-522) (-522) (-522)) NIL)) (-2449 (($ $) NIL)) (-2208 (((-108) $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-3352 (($ $ (-522) (-522) $) NIL)) (-2437 ((|#1| $ (-522) (-522) |#1|) NIL) (($ $ (-588 (-522)) (-588 (-522)) $) NIL)) (-3074 (($ $ (-522) (-553 |#1| |#3|)) NIL)) (-4060 (($ $ (-522) (-553 |#1| |#2|)) NIL)) (-1348 (($ (-708) |#1|) NIL)) (-3367 (($) NIL T CONST)) (-2091 (($ $) 19 (|has| |#1| (-283)))) (-2635 (((-553 |#1| |#3|) $ (-522)) NIL)) (-1692 (((-708) $) 22 (|has| |#1| (-514)))) (-2411 ((|#1| $ (-522) (-522) |#1|) NIL)) (-2186 ((|#1| $ (-522) (-522)) NIL)) (-2395 (((-588 |#1|) $) NIL)) (-2336 (((-708) $) 24 (|has| |#1| (-514)))) (-2819 (((-588 (-553 |#1| |#2|)) $) 27 (|has| |#1| (-514)))) (-2949 (((-708) $) NIL)) (-1893 (($ (-708) (-708) |#1|) NIL)) (-2960 (((-708) $) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3721 ((|#1| $) 17 (|has| |#1| (-6 (-4240 "*"))))) (-2604 (((-522) $) 10)) (-4042 (((-522) $) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1925 (((-522) $) 11)) (-2595 (((-522) $) NIL)) (-1347 (($ (-588 (-588 |#1|))) NIL)) (-2397 (($ (-1 |#1| |#1|) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2862 (((-588 (-588 |#1|)) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-3073 (((-3 $ "failed") $) 31 (|has| |#1| (-338)))) (-3594 (($ $ $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1972 (($ $ |#1|) NIL)) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ (-522) (-522)) NIL) ((|#1| $ (-522) (-522) |#1|) NIL) (($ $ (-588 (-522)) (-588 (-522))) NIL)) (-3215 (($ (-588 |#1|)) NIL) (($ (-588 $)) NIL)) (-3498 (((-108) $) NIL)) (-2500 ((|#1| $) 15 (|has| |#1| (-6 (-4240 "*"))))) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2223 (((-553 |#1| |#2|) $ (-522)) NIL)) (-2217 (($ (-553 |#1| |#2|)) NIL) (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-4047 (((-108) $) NIL)) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $ $) NIL) (($ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-522) $) NIL) (((-553 |#1| |#2|) $ (-553 |#1| |#2|)) NIL) (((-553 |#1| |#3|) (-553 |#1| |#3|) $) NIL)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-491 |#1| |#2| |#3|) (-626 |#1| (-553 |#1| |#3|) (-553 |#1| |#2|)) (-971) (-522) (-522)) (T -491))
NIL
(-626 |#1| (-553 |#1| |#3|) (-553 |#1| |#2|))
-((-2722 (((-1081 |#1|) (-708)) 75)) (-1865 (((-1166 |#1|) (-1166 |#1|) (-850)) 68)) (-3176 (((-1171) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))) |#1|) 83)) (-3170 (((-1166 |#1|) (-1166 |#1|) (-708)) 36)) (-3255 (((-1166 |#1|) (-850)) 70)) (-3868 (((-1166 |#1|) (-1166 |#1|) (-522)) 24)) (-3892 (((-1081 |#1|) (-1166 |#1|)) 76)) (-3400 (((-1166 |#1|) (-850)) 94)) (-2741 (((-108) (-1166 |#1|)) 79)) (-2100 (((-1166 |#1|) (-1166 |#1|) (-850)) 61)) (-1712 (((-1081 |#1|) (-1166 |#1|)) 88)) (-2120 (((-850) (-1166 |#1|)) 58)) (-3098 (((-1166 |#1|) (-1166 |#1|)) 30)) (-2717 (((-1166 |#1|) (-850) (-850)) 96)) (-2193 (((-1166 |#1|) (-1166 |#1|) (-1032) (-1032)) 23)) (-1496 (((-1166 |#1|) (-1166 |#1|) (-708) (-1032)) 37)) (-3855 (((-1166 (-1166 |#1|)) (-850)) 93)) (-1620 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 80)) (** (((-1166 |#1|) (-1166 |#1|) (-522)) 45)) (* (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 25)))
-(((-492 |#1|) (-10 -7 (-15 -3176 ((-1171) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))) |#1|)) (-15 -3255 ((-1166 |#1|) (-850))) (-15 -2717 ((-1166 |#1|) (-850) (-850))) (-15 -3892 ((-1081 |#1|) (-1166 |#1|))) (-15 -2722 ((-1081 |#1|) (-708))) (-15 -1496 ((-1166 |#1|) (-1166 |#1|) (-708) (-1032))) (-15 -3170 ((-1166 |#1|) (-1166 |#1|) (-708))) (-15 -2193 ((-1166 |#1|) (-1166 |#1|) (-1032) (-1032))) (-15 -3868 ((-1166 |#1|) (-1166 |#1|) (-522))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-522))) (-15 * ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1620 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2100 ((-1166 |#1|) (-1166 |#1|) (-850))) (-15 -1865 ((-1166 |#1|) (-1166 |#1|) (-850))) (-15 -3098 ((-1166 |#1|) (-1166 |#1|))) (-15 -2120 ((-850) (-1166 |#1|))) (-15 -2741 ((-108) (-1166 |#1|))) (-15 -3855 ((-1166 (-1166 |#1|)) (-850))) (-15 -3400 ((-1166 |#1|) (-850))) (-15 -1712 ((-1081 |#1|) (-1166 |#1|)))) (-324)) (T -492))
-((-1712 (*1 *2 *3) (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-1081 *4)) (-5 *1 (-492 *4)))) (-3400 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1166 *4)) (-5 *1 (-492 *4)) (-4 *4 (-324)))) (-3855 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1166 (-1166 *4))) (-5 *1 (-492 *4)) (-4 *4 (-324)))) (-2741 (*1 *2 *3) (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-108)) (-5 *1 (-492 *4)))) (-2120 (*1 *2 *3) (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-850)) (-5 *1 (-492 *4)))) (-3098 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-324)) (-5 *1 (-492 *3)))) (-1865 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-850)) (-4 *4 (-324)) (-5 *1 (-492 *4)))) (-2100 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-850)) (-4 *4 (-324)) (-5 *1 (-492 *4)))) (-1620 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-324)) (-5 *1 (-492 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-324)) (-5 *1 (-492 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-522)) (-4 *4 (-324)) (-5 *1 (-492 *4)))) (-3868 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-522)) (-4 *4 (-324)) (-5 *1 (-492 *4)))) (-2193 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1032)) (-4 *4 (-324)) (-5 *1 (-492 *4)))) (-3170 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-492 *4)))) (-1496 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1166 *5)) (-5 *3 (-708)) (-5 *4 (-1032)) (-4 *5 (-324)) (-5 *1 (-492 *5)))) (-2722 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1081 *4)) (-5 *1 (-492 *4)) (-4 *4 (-324)))) (-3892 (*1 *2 *3) (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-1081 *4)) (-5 *1 (-492 *4)))) (-2717 (*1 *2 *3 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1166 *4)) (-5 *1 (-492 *4)) (-4 *4 (-324)))) (-3255 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1166 *4)) (-5 *1 (-492 *4)) (-4 *4 (-324)))) (-3176 (*1 *2 *3 *4) (-12 (-5 *3 (-1166 (-588 (-2 (|:| -3435 *4) (|:| -2717 (-1032)))))) (-4 *4 (-324)) (-5 *2 (-1171)) (-5 *1 (-492 *4)))))
-(-10 -7 (-15 -3176 ((-1171) (-1166 (-588 (-2 (|:| -3435 |#1|) (|:| -2717 (-1032))))) |#1|)) (-15 -3255 ((-1166 |#1|) (-850))) (-15 -2717 ((-1166 |#1|) (-850) (-850))) (-15 -3892 ((-1081 |#1|) (-1166 |#1|))) (-15 -2722 ((-1081 |#1|) (-708))) (-15 -1496 ((-1166 |#1|) (-1166 |#1|) (-708) (-1032))) (-15 -3170 ((-1166 |#1|) (-1166 |#1|) (-708))) (-15 -2193 ((-1166 |#1|) (-1166 |#1|) (-1032) (-1032))) (-15 -3868 ((-1166 |#1|) (-1166 |#1|) (-522))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-522))) (-15 * ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1620 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2100 ((-1166 |#1|) (-1166 |#1|) (-850))) (-15 -1865 ((-1166 |#1|) (-1166 |#1|) (-850))) (-15 -3098 ((-1166 |#1|) (-1166 |#1|))) (-15 -2120 ((-850) (-1166 |#1|))) (-15 -2741 ((-108) (-1166 |#1|))) (-15 -3855 ((-1166 (-1166 |#1|)) (-850))) (-15 -3400 ((-1166 |#1|) (-850))) (-15 -1712 ((-1081 |#1|) (-1166 |#1|))))
-((-1593 (((-1 |#1| |#1|) |#1|) 11)) (-2513 (((-1 |#1| |#1|)) 10)))
-(((-493 |#1|) (-10 -7 (-15 -2513 ((-1 |#1| |#1|))) (-15 -1593 ((-1 |#1| |#1|) |#1|))) (-13 (-664) (-25))) (T -493))
-((-1593 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-493 *3)) (-4 *3 (-13 (-664) (-25))))) (-2513 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-493 *3)) (-4 *3 (-13 (-664) (-25))))))
-(-10 -7 (-15 -2513 ((-1 |#1| |#1|))) (-15 -1593 ((-1 |#1| |#1|) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1210 (($ $ $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3156 (($ $) NIL)) (-4049 (($ (-708) |#1|) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-1391 (($ (-1 (-708) (-708)) $) NIL)) (-1207 ((|#1| $) NIL)) (-3138 (((-708) $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 20)) (-3566 (($) NIL T CONST)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) NIL)) (-1602 (($ $ $) NIL)) (* (($ (-708) $) NIL) (($ (-850) $) NIL)))
+((-3410 (((-1081 |#1|) (-708)) 75)) (-1945 (((-1166 |#1|) (-1166 |#1|) (-850)) 68)) (-2167 (((-1171) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))) |#1|) 83)) (-3317 (((-1166 |#1|) (-1166 |#1|) (-708)) 36)) (-3344 (((-1166 |#1|) (-850)) 70)) (-1779 (((-1166 |#1|) (-1166 |#1|) (-522)) 24)) (-1976 (((-1081 |#1|) (-1166 |#1|)) 76)) (-3768 (((-1166 |#1|) (-850)) 94)) (-1372 (((-108) (-1166 |#1|)) 79)) (-1269 (((-1166 |#1|) (-1166 |#1|) (-850)) 61)) (-4199 (((-1081 |#1|) (-1166 |#1|)) 88)) (-1475 (((-850) (-1166 |#1|)) 58)) (-3193 (((-1166 |#1|) (-1166 |#1|)) 30)) (-2882 (((-1166 |#1|) (-850) (-850)) 96)) (-3427 (((-1166 |#1|) (-1166 |#1|) (-1032) (-1032)) 23)) (-1743 (((-1166 |#1|) (-1166 |#1|) (-708) (-1032)) 37)) (-2905 (((-1166 (-1166 |#1|)) (-850)) 93)) (-1682 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 80)) (** (((-1166 |#1|) (-1166 |#1|) (-522)) 45)) (* (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 25)))
+(((-492 |#1|) (-10 -7 (-15 -2167 ((-1171) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))) |#1|)) (-15 -3344 ((-1166 |#1|) (-850))) (-15 -2882 ((-1166 |#1|) (-850) (-850))) (-15 -1976 ((-1081 |#1|) (-1166 |#1|))) (-15 -3410 ((-1081 |#1|) (-708))) (-15 -1743 ((-1166 |#1|) (-1166 |#1|) (-708) (-1032))) (-15 -3317 ((-1166 |#1|) (-1166 |#1|) (-708))) (-15 -3427 ((-1166 |#1|) (-1166 |#1|) (-1032) (-1032))) (-15 -1779 ((-1166 |#1|) (-1166 |#1|) (-522))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-522))) (-15 * ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1682 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1269 ((-1166 |#1|) (-1166 |#1|) (-850))) (-15 -1945 ((-1166 |#1|) (-1166 |#1|) (-850))) (-15 -3193 ((-1166 |#1|) (-1166 |#1|))) (-15 -1475 ((-850) (-1166 |#1|))) (-15 -1372 ((-108) (-1166 |#1|))) (-15 -2905 ((-1166 (-1166 |#1|)) (-850))) (-15 -3768 ((-1166 |#1|) (-850))) (-15 -4199 ((-1081 |#1|) (-1166 |#1|)))) (-324)) (T -492))
+((-4199 (*1 *2 *3) (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-1081 *4)) (-5 *1 (-492 *4)))) (-3768 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1166 *4)) (-5 *1 (-492 *4)) (-4 *4 (-324)))) (-2905 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1166 (-1166 *4))) (-5 *1 (-492 *4)) (-4 *4 (-324)))) (-1372 (*1 *2 *3) (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-108)) (-5 *1 (-492 *4)))) (-1475 (*1 *2 *3) (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-850)) (-5 *1 (-492 *4)))) (-3193 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-324)) (-5 *1 (-492 *3)))) (-1945 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-850)) (-4 *4 (-324)) (-5 *1 (-492 *4)))) (-1269 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-850)) (-4 *4 (-324)) (-5 *1 (-492 *4)))) (-1682 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-324)) (-5 *1 (-492 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-324)) (-5 *1 (-492 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-522)) (-4 *4 (-324)) (-5 *1 (-492 *4)))) (-1779 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-522)) (-4 *4 (-324)) (-5 *1 (-492 *4)))) (-3427 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1032)) (-4 *4 (-324)) (-5 *1 (-492 *4)))) (-3317 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-492 *4)))) (-1743 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1166 *5)) (-5 *3 (-708)) (-5 *4 (-1032)) (-4 *5 (-324)) (-5 *1 (-492 *5)))) (-3410 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1081 *4)) (-5 *1 (-492 *4)) (-4 *4 (-324)))) (-1976 (*1 *2 *3) (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-1081 *4)) (-5 *1 (-492 *4)))) (-2882 (*1 *2 *3 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1166 *4)) (-5 *1 (-492 *4)) (-4 *4 (-324)))) (-3344 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1166 *4)) (-5 *1 (-492 *4)) (-4 *4 (-324)))) (-2167 (*1 *2 *3 *4) (-12 (-5 *3 (-1166 (-588 (-2 (|:| -3526 *4) (|:| -2882 (-1032)))))) (-4 *4 (-324)) (-5 *2 (-1171)) (-5 *1 (-492 *4)))))
+(-10 -7 (-15 -2167 ((-1171) (-1166 (-588 (-2 (|:| -3526 |#1|) (|:| -2882 (-1032))))) |#1|)) (-15 -3344 ((-1166 |#1|) (-850))) (-15 -2882 ((-1166 |#1|) (-850) (-850))) (-15 -1976 ((-1081 |#1|) (-1166 |#1|))) (-15 -3410 ((-1081 |#1|) (-708))) (-15 -1743 ((-1166 |#1|) (-1166 |#1|) (-708) (-1032))) (-15 -3317 ((-1166 |#1|) (-1166 |#1|) (-708))) (-15 -3427 ((-1166 |#1|) (-1166 |#1|) (-1032) (-1032))) (-15 -1779 ((-1166 |#1|) (-1166 |#1|) (-522))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-522))) (-15 * ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1682 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1269 ((-1166 |#1|) (-1166 |#1|) (-850))) (-15 -1945 ((-1166 |#1|) (-1166 |#1|) (-850))) (-15 -3193 ((-1166 |#1|) (-1166 |#1|))) (-15 -1475 ((-850) (-1166 |#1|))) (-15 -1372 ((-108) (-1166 |#1|))) (-15 -2905 ((-1166 (-1166 |#1|)) (-850))) (-15 -3768 ((-1166 |#1|) (-850))) (-15 -4199 ((-1081 |#1|) (-1166 |#1|))))
+((-1648 (((-1 |#1| |#1|) |#1|) 11)) (-2107 (((-1 |#1| |#1|)) 10)))
+(((-493 |#1|) (-10 -7 (-15 -2107 ((-1 |#1| |#1|))) (-15 -1648 ((-1 |#1| |#1|) |#1|))) (-13 (-664) (-25))) (T -493))
+((-1648 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-493 *3)) (-4 *3 (-13 (-664) (-25))))) (-2107 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-493 *3)) (-4 *3 (-13 (-664) (-25))))))
+(-10 -7 (-15 -2107 ((-1 |#1| |#1|))) (-15 -1648 ((-1 |#1| |#1|) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-1827 (($ $ $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3241 (($ $) NIL)) (-3500 (($ (-708) |#1|) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-3810 (($ (-1 (-708) (-708)) $) NIL)) (-1801 ((|#1| $) NIL)) (-3224 (((-708) $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 20)) (-3697 (($) NIL T CONST)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) NIL)) (-1661 (($ $ $) NIL)) (* (($ (-708) $) NIL) (($ (-850) $) NIL)))
(((-494 |#1|) (-13 (-730) (-478 (-708) |#1|)) (-784)) (T -494))
NIL
(-13 (-730) (-478 (-708) |#1|))
-((-3589 (((-588 |#2|) (-1081 |#1|) |#3|) 83)) (-2847 (((-588 (-2 (|:| |outval| |#2|) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 |#2|))))) (-628 |#1|) |#3| (-1 (-393 (-1081 |#1|)) (-1081 |#1|))) 99)) (-2856 (((-1081 |#1|) (-628 |#1|)) 95)))
-(((-495 |#1| |#2| |#3|) (-10 -7 (-15 -2856 ((-1081 |#1|) (-628 |#1|))) (-15 -3589 ((-588 |#2|) (-1081 |#1|) |#3|)) (-15 -2847 ((-588 (-2 (|:| |outval| |#2|) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 |#2|))))) (-628 |#1|) |#3| (-1 (-393 (-1081 |#1|)) (-1081 |#1|))))) (-338) (-338) (-13 (-338) (-782))) (T -495))
-((-2847 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *6)) (-5 *5 (-1 (-393 (-1081 *6)) (-1081 *6))) (-4 *6 (-338)) (-5 *2 (-588 (-2 (|:| |outval| *7) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 *7)))))) (-5 *1 (-495 *6 *7 *4)) (-4 *7 (-338)) (-4 *4 (-13 (-338) (-782))))) (-3589 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *5)) (-4 *5 (-338)) (-5 *2 (-588 *6)) (-5 *1 (-495 *5 *6 *4)) (-4 *6 (-338)) (-4 *4 (-13 (-338) (-782))))) (-2856 (*1 *2 *3) (-12 (-5 *3 (-628 *4)) (-4 *4 (-338)) (-5 *2 (-1081 *4)) (-5 *1 (-495 *4 *5 *6)) (-4 *5 (-338)) (-4 *6 (-13 (-338) (-782))))))
-(-10 -7 (-15 -2856 ((-1081 |#1|) (-628 |#1|))) (-15 -3589 ((-588 |#2|) (-1081 |#1|) |#3|)) (-15 -2847 ((-588 (-2 (|:| |outval| |#2|) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 |#2|))))) (-628 |#1|) |#3| (-1 (-393 (-1081 |#1|)) (-1081 |#1|)))))
-((-2873 (((-777 (-522))) 11)) (-2886 (((-777 (-522))) 13)) (-2849 (((-770 (-522))) 8)))
-(((-496) (-10 -7 (-15 -2849 ((-770 (-522)))) (-15 -2873 ((-777 (-522)))) (-15 -2886 ((-777 (-522)))))) (T -496))
-((-2886 (*1 *2) (-12 (-5 *2 (-777 (-522))) (-5 *1 (-496)))) (-2873 (*1 *2) (-12 (-5 *2 (-777 (-522))) (-5 *1 (-496)))) (-2849 (*1 *2) (-12 (-5 *2 (-770 (-522))) (-5 *1 (-496)))))
-(-10 -7 (-15 -2849 ((-770 (-522)))) (-15 -2873 ((-777 (-522)))) (-15 -2886 ((-777 (-522)))))
-((-2315 (((-498) (-1085)) 15)) (-1562 ((|#1| (-498)) 20)))
-(((-497 |#1|) (-10 -7 (-15 -2315 ((-498) (-1085))) (-15 -1562 (|#1| (-498)))) (-1120)) (T -497))
-((-1562 (*1 *2 *3) (-12 (-5 *3 (-498)) (-5 *1 (-497 *2)) (-4 *2 (-1120)))) (-2315 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-498)) (-5 *1 (-497 *4)) (-4 *4 (-1120)))))
-(-10 -7 (-15 -2315 ((-498) (-1085))) (-15 -1562 (|#1| (-498))))
-((-1416 (((-108) $ $) NIL)) (-3635 (((-1068) $) 46)) (-2031 (((-108) $) 43)) (-1490 (((-1085) $) 44)) (-2879 (((-108) $) 41)) (-1507 (((-1068) $) 42)) (-1741 (((-108) $) NIL)) (-2045 (((-108) $) NIL)) (-2586 (((-108) $) NIL)) (-2385 (((-1068) $) NIL)) (-1286 (($ $ (-588 (-1085))) 20)) (-1562 (((-51) $) 22)) (-3096 (((-108) $) NIL)) (-1509 (((-522) $) NIL)) (-4151 (((-1032) $) NIL)) (-2094 (($ $ (-588 (-1085)) (-1085)) 58)) (-3151 (((-108) $) NIL)) (-3071 (((-202) $) NIL)) (-3862 (($ $) 38)) (-1575 (((-792) $) NIL)) (-3197 (((-108) $ $) NIL)) (-2545 (($ $ (-522)) NIL) (($ $ (-588 (-522))) NIL)) (-1991 (((-588 $) $) 28)) (-1236 (((-1085) (-588 $)) 47)) (-1431 (($ (-588 $)) 51) (($ (-1068)) NIL) (($ (-1085)) 18) (($ (-522)) 8) (($ (-202)) 25) (($ (-792)) NIL) (((-1018) $) 11) (($ (-1018)) 12)) (-1780 (((-1085) (-1085) (-588 $)) 50)) (-2190 (((-792) $) NIL)) (-3212 (($ $) 49)) (-3201 (($ $) 48)) (-2271 (($ $ (-588 $)) 55)) (-1474 (((-108) $) 27)) (-3566 (($) 9 T CONST)) (-3577 (($) 10 T CONST)) (-1531 (((-108) $ $) 59)) (-1620 (($ $ $) 64)) (-1602 (($ $ $) 60)) (** (($ $ (-708)) 63) (($ $ (-522)) 62)) (* (($ $ $) 61)) (-3480 (((-522) $) NIL)))
-(((-498) (-13 (-1017 (-1068) (-1085) (-522) (-202) (-792)) (-563 (-1018)) (-10 -8 (-15 -1562 ((-51) $)) (-15 -1431 ($ (-1018))) (-15 -2271 ($ $ (-588 $))) (-15 -2094 ($ $ (-588 (-1085)) (-1085))) (-15 -1286 ($ $ (-588 (-1085)))) (-15 -1602 ($ $ $)) (-15 * ($ $ $)) (-15 -1620 ($ $ $)) (-15 ** ($ $ (-708))) (-15 ** ($ $ (-522))) (-15 0 ($) -2677) (-15 1 ($) -2677) (-15 -3862 ($ $)) (-15 -3635 ((-1068) $)) (-15 -1236 ((-1085) (-588 $))) (-15 -1780 ((-1085) (-1085) (-588 $)))))) (T -498))
-((-1562 (*1 *2 *1) (-12 (-5 *2 (-51)) (-5 *1 (-498)))) (-1431 (*1 *1 *2) (-12 (-5 *2 (-1018)) (-5 *1 (-498)))) (-2271 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-498))) (-5 *1 (-498)))) (-2094 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-1085)) (-5 *1 (-498)))) (-1286 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-498)))) (-1602 (*1 *1 *1 *1) (-5 *1 (-498))) (* (*1 *1 *1 *1) (-5 *1 (-498))) (-1620 (*1 *1 *1 *1) (-5 *1 (-498))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-498)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-498)))) (-3566 (*1 *1) (-5 *1 (-498))) (-3577 (*1 *1) (-5 *1 (-498))) (-3862 (*1 *1 *1) (-5 *1 (-498))) (-3635 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-498)))) (-1236 (*1 *2 *3) (-12 (-5 *3 (-588 (-498))) (-5 *2 (-1085)) (-5 *1 (-498)))) (-1780 (*1 *2 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-498))) (-5 *1 (-498)))))
-(-13 (-1017 (-1068) (-1085) (-522) (-202) (-792)) (-563 (-1018)) (-10 -8 (-15 -1562 ((-51) $)) (-15 -1431 ($ (-1018))) (-15 -2271 ($ $ (-588 $))) (-15 -2094 ($ $ (-588 (-1085)) (-1085))) (-15 -1286 ($ $ (-588 (-1085)))) (-15 -1602 ($ $ $)) (-15 * ($ $ $)) (-15 -1620 ($ $ $)) (-15 ** ($ $ (-708))) (-15 ** ($ $ (-522))) (-15 (-3566) ($) -2677) (-15 (-3577) ($) -2677) (-15 -3862 ($ $)) (-15 -3635 ((-1068) $)) (-15 -1236 ((-1085) (-588 $))) (-15 -1780 ((-1085) (-1085) (-588 $)))))
-((-3486 ((|#2| |#2|) 17)) (-2703 ((|#2| |#2|) 13)) (-2927 ((|#2| |#2| (-522) (-522)) 20)) (-2312 ((|#2| |#2|) 15)))
-(((-499 |#1| |#2|) (-10 -7 (-15 -2703 (|#2| |#2|)) (-15 -2312 (|#2| |#2|)) (-15 -3486 (|#2| |#2|)) (-15 -2927 (|#2| |#2| (-522) (-522)))) (-13 (-514) (-135)) (-1157 |#1|)) (T -499))
-((-2927 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-522)) (-4 *4 (-13 (-514) (-135))) (-5 *1 (-499 *4 *2)) (-4 *2 (-1157 *4)))) (-3486 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-499 *3 *2)) (-4 *2 (-1157 *3)))) (-2312 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-499 *3 *2)) (-4 *2 (-1157 *3)))) (-2703 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-499 *3 *2)) (-4 *2 (-1157 *3)))))
-(-10 -7 (-15 -2703 (|#2| |#2|)) (-15 -2312 (|#2| |#2|)) (-15 -3486 (|#2| |#2|)) (-15 -2927 (|#2| |#2| (-522) (-522))))
-((-1665 (((-588 (-270 (-881 |#2|))) (-588 |#2|) (-588 (-1085))) 32)) (-1314 (((-588 |#2|) (-881 |#1|) |#3|) 53) (((-588 |#2|) (-1081 |#1|) |#3|) 52)) (-3005 (((-588 (-588 |#2|)) (-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085)) |#3|) 87)))
-(((-500 |#1| |#2| |#3|) (-10 -7 (-15 -1314 ((-588 |#2|) (-1081 |#1|) |#3|)) (-15 -1314 ((-588 |#2|) (-881 |#1|) |#3|)) (-15 -3005 ((-588 (-588 |#2|)) (-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085)) |#3|)) (-15 -1665 ((-588 (-270 (-881 |#2|))) (-588 |#2|) (-588 (-1085))))) (-426) (-338) (-13 (-338) (-782))) (T -500))
-((-1665 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 (-1085))) (-4 *6 (-338)) (-5 *2 (-588 (-270 (-881 *6)))) (-5 *1 (-500 *5 *6 *7)) (-4 *5 (-426)) (-4 *7 (-13 (-338) (-782))))) (-3005 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-588 (-881 *6))) (-5 *4 (-588 (-1085))) (-4 *6 (-426)) (-5 *2 (-588 (-588 *7))) (-5 *1 (-500 *6 *7 *5)) (-4 *7 (-338)) (-4 *5 (-13 (-338) (-782))))) (-1314 (*1 *2 *3 *4) (-12 (-5 *3 (-881 *5)) (-4 *5 (-426)) (-5 *2 (-588 *6)) (-5 *1 (-500 *5 *6 *4)) (-4 *6 (-338)) (-4 *4 (-13 (-338) (-782))))) (-1314 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *5)) (-4 *5 (-426)) (-5 *2 (-588 *6)) (-5 *1 (-500 *5 *6 *4)) (-4 *6 (-338)) (-4 *4 (-13 (-338) (-782))))))
-(-10 -7 (-15 -1314 ((-588 |#2|) (-1081 |#1|) |#3|)) (-15 -1314 ((-588 |#2|) (-881 |#1|) |#3|)) (-15 -3005 ((-588 (-588 |#2|)) (-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085)) |#3|)) (-15 -1665 ((-588 (-270 (-881 |#2|))) (-588 |#2|) (-588 (-1085)))))
-((-4048 ((|#2| |#2| |#1|) 17)) (-3500 ((|#2| (-588 |#2|)) 27)) (-2830 ((|#2| (-588 |#2|)) 46)))
-(((-501 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3500 (|#2| (-588 |#2|))) (-15 -2830 (|#2| (-588 |#2|))) (-15 -4048 (|#2| |#2| |#1|))) (-283) (-1142 |#1|) |#1| (-1 |#1| |#1| (-708))) (T -501))
-((-4048 (*1 *2 *2 *3) (-12 (-4 *3 (-283)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-708))) (-5 *1 (-501 *3 *2 *4 *5)) (-4 *2 (-1142 *3)))) (-2830 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-501 *4 *2 *5 *6)) (-4 *4 (-283)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-708))))) (-3500 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-501 *4 *2 *5 *6)) (-4 *4 (-283)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-708))))))
-(-10 -7 (-15 -3500 (|#2| (-588 |#2|))) (-15 -2830 (|#2| (-588 |#2|))) (-15 -4048 (|#2| |#2| |#1|)))
-((-1916 (((-393 (-1081 |#4|)) (-1081 |#4|) (-1 (-393 (-1081 |#3|)) (-1081 |#3|))) 79) (((-393 |#4|) |#4| (-1 (-393 (-1081 |#3|)) (-1081 |#3|))) 166)))
-(((-502 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1916 ((-393 |#4|) |#4| (-1 (-393 (-1081 |#3|)) (-1081 |#3|)))) (-15 -1916 ((-393 (-1081 |#4|)) (-1081 |#4|) (-1 (-393 (-1081 |#3|)) (-1081 |#3|))))) (-784) (-730) (-13 (-283) (-135)) (-878 |#3| |#2| |#1|)) (T -502))
-((-1916 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-393 (-1081 *7)) (-1081 *7))) (-4 *7 (-13 (-283) (-135))) (-4 *5 (-784)) (-4 *6 (-730)) (-4 *8 (-878 *7 *6 *5)) (-5 *2 (-393 (-1081 *8))) (-5 *1 (-502 *5 *6 *7 *8)) (-5 *3 (-1081 *8)))) (-1916 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-393 (-1081 *7)) (-1081 *7))) (-4 *7 (-13 (-283) (-135))) (-4 *5 (-784)) (-4 *6 (-730)) (-5 *2 (-393 *3)) (-5 *1 (-502 *5 *6 *7 *3)) (-4 *3 (-878 *7 *6 *5)))))
-(-10 -7 (-15 -1916 ((-393 |#4|) |#4| (-1 (-393 (-1081 |#3|)) (-1081 |#3|)))) (-15 -1916 ((-393 (-1081 |#4|)) (-1081 |#4|) (-1 (-393 (-1081 |#3|)) (-1081 |#3|)))))
-((-3486 ((|#4| |#4|) 74)) (-2703 ((|#4| |#4|) 70)) (-2927 ((|#4| |#4| (-522) (-522)) 76)) (-2312 ((|#4| |#4|) 72)))
-(((-503 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2703 (|#4| |#4|)) (-15 -2312 (|#4| |#4|)) (-15 -3486 (|#4| |#4|)) (-15 -2927 (|#4| |#4| (-522) (-522)))) (-13 (-338) (-343) (-563 (-522))) (-1142 |#1|) (-662 |#1| |#2|) (-1157 |#3|)) (T -503))
-((-2927 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-522)) (-4 *4 (-13 (-338) (-343) (-563 *3))) (-4 *5 (-1142 *4)) (-4 *6 (-662 *4 *5)) (-5 *1 (-503 *4 *5 *6 *2)) (-4 *2 (-1157 *6)))) (-3486 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-4 *4 (-1142 *3)) (-4 *5 (-662 *3 *4)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-1157 *5)))) (-2312 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-4 *4 (-1142 *3)) (-4 *5 (-662 *3 *4)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-1157 *5)))) (-2703 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-4 *4 (-1142 *3)) (-4 *5 (-662 *3 *4)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-1157 *5)))))
-(-10 -7 (-15 -2703 (|#4| |#4|)) (-15 -2312 (|#4| |#4|)) (-15 -3486 (|#4| |#4|)) (-15 -2927 (|#4| |#4| (-522) (-522))))
-((-3486 ((|#2| |#2|) 27)) (-2703 ((|#2| |#2|) 23)) (-2927 ((|#2| |#2| (-522) (-522)) 29)) (-2312 ((|#2| |#2|) 25)))
-(((-504 |#1| |#2|) (-10 -7 (-15 -2703 (|#2| |#2|)) (-15 -2312 (|#2| |#2|)) (-15 -3486 (|#2| |#2|)) (-15 -2927 (|#2| |#2| (-522) (-522)))) (-13 (-338) (-343) (-563 (-522))) (-1157 |#1|)) (T -504))
-((-2927 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-522)) (-4 *4 (-13 (-338) (-343) (-563 *3))) (-5 *1 (-504 *4 *2)) (-4 *2 (-1157 *4)))) (-3486 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-5 *1 (-504 *3 *2)) (-4 *2 (-1157 *3)))) (-2312 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-5 *1 (-504 *3 *2)) (-4 *2 (-1157 *3)))) (-2703 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-5 *1 (-504 *3 *2)) (-4 *2 (-1157 *3)))))
-(-10 -7 (-15 -2703 (|#2| |#2|)) (-15 -2312 (|#2| |#2|)) (-15 -3486 (|#2| |#2|)) (-15 -2927 (|#2| |#2| (-522) (-522))))
-((-2431 (((-3 (-522) "failed") |#2| |#1| (-1 (-3 (-522) "failed") |#1|)) 14) (((-3 (-522) "failed") |#2| |#1| (-522) (-1 (-3 (-522) "failed") |#1|)) 13) (((-3 (-522) "failed") |#2| (-522) (-1 (-3 (-522) "failed") |#1|)) 26)))
-(((-505 |#1| |#2|) (-10 -7 (-15 -2431 ((-3 (-522) "failed") |#2| (-522) (-1 (-3 (-522) "failed") |#1|))) (-15 -2431 ((-3 (-522) "failed") |#2| |#1| (-522) (-1 (-3 (-522) "failed") |#1|))) (-15 -2431 ((-3 (-522) "failed") |#2| |#1| (-1 (-3 (-522) "failed") |#1|)))) (-971) (-1142 |#1|)) (T -505))
-((-2431 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-522) "failed") *4)) (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-505 *4 *3)) (-4 *3 (-1142 *4)))) (-2431 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-522) "failed") *4)) (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-505 *4 *3)) (-4 *3 (-1142 *4)))) (-2431 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-522) "failed") *5)) (-4 *5 (-971)) (-5 *2 (-522)) (-5 *1 (-505 *5 *3)) (-4 *3 (-1142 *5)))))
-(-10 -7 (-15 -2431 ((-3 (-522) "failed") |#2| (-522) (-1 (-3 (-522) "failed") |#1|))) (-15 -2431 ((-3 (-522) "failed") |#2| |#1| (-522) (-1 (-3 (-522) "failed") |#1|))) (-15 -2431 ((-3 (-522) "failed") |#2| |#1| (-1 (-3 (-522) "failed") |#1|))))
-((-3871 (($ $ $) 79)) (-3450 (((-393 $) $) 47)) (-1297 (((-3 (-522) "failed") $) 59)) (-1484 (((-522) $) 37)) (-1664 (((-3 (-382 (-522)) "failed") $) 74)) (-1770 (((-108) $) 24)) (-1492 (((-382 (-522)) $) 72)) (-2813 (((-108) $) 50)) (-2676 (($ $ $ $) 86)) (-3687 (((-108) $) 16)) (-3219 (($ $ $) 57)) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 69)) (-3004 (((-3 $ "failed") $) 64)) (-3893 (($ $) 23)) (-2341 (($ $ $) 84)) (-3802 (($) 60)) (-2868 (($ $) 53)) (-1916 (((-393 $) $) 45)) (-1263 (((-108) $) 14)) (-3730 (((-708) $) 28)) (-2157 (($ $ (-708)) NIL) (($ $) 10)) (-2404 (($ $) 17)) (-1431 (((-522) $) NIL) (((-498) $) 36) (((-821 (-522)) $) 40) (((-354) $) 31) (((-202) $) 33)) (-2323 (((-708)) 8)) (-3558 (((-108) $ $) 20)) (-1480 (($ $ $) 55)))
-(((-506 |#1|) (-10 -8 (-15 -2341 (|#1| |#1| |#1|)) (-15 -2676 (|#1| |#1| |#1| |#1|)) (-15 -3893 (|#1| |#1|)) (-15 -2404 (|#1| |#1|)) (-15 -1664 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1492 ((-382 (-522)) |#1|)) (-15 -1770 ((-108) |#1|)) (-15 -3871 (|#1| |#1| |#1|)) (-15 -3558 ((-108) |#1| |#1|)) (-15 -1263 ((-108) |#1|)) (-15 -3802 (|#1|)) (-15 -3004 ((-3 |#1| "failed") |#1|)) (-15 -1431 ((-202) |#1|)) (-15 -1431 ((-354) |#1|)) (-15 -3219 (|#1| |#1| |#1|)) (-15 -2868 (|#1| |#1|)) (-15 -1480 (|#1| |#1| |#1|)) (-15 -4011 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -1431 ((-821 (-522)) |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1431 ((-522) |#1|)) (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -3687 ((-108) |#1|)) (-15 -3730 ((-708) |#1|)) (-15 -1916 ((-393 |#1|) |#1|)) (-15 -3450 ((-393 |#1|) |#1|)) (-15 -2813 ((-108) |#1|)) (-15 -2323 ((-708)))) (-507)) (T -506))
-((-2323 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-506 *3)) (-4 *3 (-507)))))
-(-10 -8 (-15 -2341 (|#1| |#1| |#1|)) (-15 -2676 (|#1| |#1| |#1| |#1|)) (-15 -3893 (|#1| |#1|)) (-15 -2404 (|#1| |#1|)) (-15 -1664 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1492 ((-382 (-522)) |#1|)) (-15 -1770 ((-108) |#1|)) (-15 -3871 (|#1| |#1| |#1|)) (-15 -3558 ((-108) |#1| |#1|)) (-15 -1263 ((-108) |#1|)) (-15 -3802 (|#1|)) (-15 -3004 ((-3 |#1| "failed") |#1|)) (-15 -1431 ((-202) |#1|)) (-15 -1431 ((-354) |#1|)) (-15 -3219 (|#1| |#1| |#1|)) (-15 -2868 (|#1| |#1|)) (-15 -1480 (|#1| |#1| |#1|)) (-15 -4011 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -1431 ((-821 (-522)) |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1431 ((-522) |#1|)) (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -3687 ((-108) |#1|)) (-15 -3730 ((-708) |#1|)) (-15 -1916 ((-393 |#1|) |#1|)) (-15 -3450 ((-393 |#1|) |#1|)) (-15 -2813 ((-108) |#1|)) (-15 -2323 ((-708))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-3871 (($ $ $) 85)) (-1233 (((-3 $ "failed") $ $) 19)) (-3481 (($ $ $ $) 73)) (-3119 (($ $) 51)) (-3450 (((-393 $) $) 52)) (-1687 (((-108) $ $) 125)) (-1341 (((-522) $) 114)) (-1662 (($ $ $) 88)) (-3175 (($) 17 T CONST)) (-1297 (((-3 (-522) "failed") $) 106)) (-1484 (((-522) $) 105)) (-2277 (($ $ $) 129)) (-2096 (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 104) (((-628 (-522)) (-628 $)) 103)) (-2682 (((-3 $ "failed") $) 34)) (-1664 (((-3 (-382 (-522)) "failed") $) 82)) (-1770 (((-108) $) 84)) (-1492 (((-382 (-522)) $) 83)) (-3255 (($) 81) (($ $) 80)) (-2254 (($ $ $) 128)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 123)) (-2813 (((-108) $) 53)) (-2676 (($ $ $ $) 71)) (-2339 (($ $ $) 86)) (-3687 (((-108) $) 116)) (-3219 (($ $ $) 97)) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 100)) (-2782 (((-108) $) 31)) (-2591 (((-108) $) 92)) (-3004 (((-3 $ "failed") $) 94)) (-2556 (((-108) $) 115)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 132)) (-1335 (($ $ $ $) 72)) (-2814 (($ $ $) 117)) (-2446 (($ $ $) 118)) (-3893 (($ $) 75)) (-2517 (($ $) 89)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-2341 (($ $ $) 70)) (-3802 (($) 93 T CONST)) (-2957 (($ $) 77)) (-4151 (((-1032) $) 10) (($ $) 79)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-2868 (($ $) 98)) (-1916 (((-393 $) $) 50)) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 131) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 130)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 124)) (-1263 (((-108) $) 91)) (-3730 (((-708) $) 126)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 127)) (-2157 (($ $ (-708)) 111) (($ $) 109)) (-3056 (($ $) 76)) (-2404 (($ $) 78)) (-1431 (((-522) $) 108) (((-498) $) 102) (((-821 (-522)) $) 101) (((-354) $) 96) (((-202) $) 95)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-522)) 107)) (-2323 (((-708)) 29)) (-3558 (((-108) $ $) 87)) (-1480 (($ $ $) 99)) (-3355 (($) 90)) (-3958 (((-108) $ $) 39)) (-4004 (($ $ $ $) 74)) (-2241 (($ $) 113)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-708)) 112) (($ $) 110)) (-1574 (((-108) $ $) 120)) (-1558 (((-108) $ $) 121)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 119)) (-1549 (((-108) $ $) 122)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-2029 (((-588 |#2|) (-1081 |#1|) |#3|) 83)) (-4131 (((-588 (-2 (|:| |outval| |#2|) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 |#2|))))) (-628 |#1|) |#3| (-1 (-393 (-1081 |#1|)) (-1081 |#1|))) 99)) (-4206 (((-1081 |#1|) (-628 |#1|)) 95)))
+(((-495 |#1| |#2| |#3|) (-10 -7 (-15 -4206 ((-1081 |#1|) (-628 |#1|))) (-15 -2029 ((-588 |#2|) (-1081 |#1|) |#3|)) (-15 -4131 ((-588 (-2 (|:| |outval| |#2|) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 |#2|))))) (-628 |#1|) |#3| (-1 (-393 (-1081 |#1|)) (-1081 |#1|))))) (-338) (-338) (-13 (-338) (-782))) (T -495))
+((-4131 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *6)) (-5 *5 (-1 (-393 (-1081 *6)) (-1081 *6))) (-4 *6 (-338)) (-5 *2 (-588 (-2 (|:| |outval| *7) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 *7)))))) (-5 *1 (-495 *6 *7 *4)) (-4 *7 (-338)) (-4 *4 (-13 (-338) (-782))))) (-2029 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *5)) (-4 *5 (-338)) (-5 *2 (-588 *6)) (-5 *1 (-495 *5 *6 *4)) (-4 *6 (-338)) (-4 *4 (-13 (-338) (-782))))) (-4206 (*1 *2 *3) (-12 (-5 *3 (-628 *4)) (-4 *4 (-338)) (-5 *2 (-1081 *4)) (-5 *1 (-495 *4 *5 *6)) (-4 *5 (-338)) (-4 *6 (-13 (-338) (-782))))))
+(-10 -7 (-15 -4206 ((-1081 |#1|) (-628 |#1|))) (-15 -2029 ((-588 |#2|) (-1081 |#1|) |#3|)) (-15 -4131 ((-588 (-2 (|:| |outval| |#2|) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 |#2|))))) (-628 |#1|) |#3| (-1 (-393 (-1081 |#1|)) (-1081 |#1|)))))
+((-3012 (((-777 (-522))) 11)) (-3025 (((-777 (-522))) 13)) (-2990 (((-770 (-522))) 8)))
+(((-496) (-10 -7 (-15 -2990 ((-770 (-522)))) (-15 -3012 ((-777 (-522)))) (-15 -3025 ((-777 (-522)))))) (T -496))
+((-3025 (*1 *2) (-12 (-5 *2 (-777 (-522))) (-5 *1 (-496)))) (-3012 (*1 *2) (-12 (-5 *2 (-777 (-522))) (-5 *1 (-496)))) (-2990 (*1 *2) (-12 (-5 *2 (-770 (-522))) (-5 *1 (-496)))))
+(-10 -7 (-15 -2990 ((-770 (-522)))) (-15 -3012 ((-777 (-522)))) (-15 -3025 ((-777 (-522)))))
+((-2639 (((-498) (-1085)) 15)) (-1602 ((|#1| (-498)) 20)))
+(((-497 |#1|) (-10 -7 (-15 -2639 ((-498) (-1085))) (-15 -1602 (|#1| (-498)))) (-1120)) (T -497))
+((-1602 (*1 *2 *3) (-12 (-5 *3 (-498)) (-5 *1 (-497 *2)) (-4 *2 (-1120)))) (-2639 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-498)) (-5 *1 (-497 *4)) (-4 *4 (-1120)))))
+(-10 -7 (-15 -2639 ((-498) (-1085))) (-15 -1602 (|#1| (-498))))
+((-1419 (((-108) $ $) NIL)) (-1258 (((-1068) $) 46)) (-2415 (((-108) $) 43)) (-1488 (((-1085) $) 44)) (-1355 (((-108) $) 41)) (-1513 (((-1068) $) 42)) (-1430 (((-108) $) NIL)) (-2591 (((-108) $) NIL)) (-3037 (((-108) $) NIL)) (-2311 (((-1068) $) NIL)) (-2840 (($ $ (-588 (-1085))) 20)) (-1602 (((-51) $) 22)) (-3871 (((-108) $) NIL)) (-1516 (((-522) $) NIL)) (-4174 (((-1032) $) NIL)) (-2138 (($ $ (-588 (-1085)) (-1085)) 58)) (-3186 (((-108) $) NIL)) (-3173 (((-202) $) NIL)) (-3982 (($ $) 38)) (-1610 (((-792) $) NIL)) (-3277 (((-108) $ $) NIL)) (-2683 (($ $ (-522)) NIL) (($ $ (-588 (-522))) NIL)) (-2058 (((-588 $) $) 28)) (-1227 (((-1085) (-588 $)) 47)) (-3873 (($ (-588 $)) 51) (($ (-1068)) NIL) (($ (-1085)) 18) (($ (-522)) 8) (($ (-202)) 25) (($ (-792)) NIL) (((-1018) $) 11) (($ (-1018)) 12)) (-1876 (((-1085) (-1085) (-588 $)) 50)) (-2217 (((-792) $) NIL)) (-3281 (($ $) 49)) (-3271 (($ $) 48)) (-2155 (($ $ (-588 $)) 55)) (-1519 (((-108) $) 27)) (-3697 (($) 9 T CONST)) (-3709 (($) 10 T CONST)) (-1562 (((-108) $ $) 59)) (-1682 (($ $ $) 64)) (-1661 (($ $ $) 60)) (** (($ $ (-708)) 63) (($ $ (-522)) 62)) (* (($ $ $) 61)) (-3591 (((-522) $) NIL)))
+(((-498) (-13 (-1017 (-1068) (-1085) (-522) (-202) (-792)) (-563 (-1018)) (-10 -8 (-15 -1602 ((-51) $)) (-15 -3873 ($ (-1018))) (-15 -2155 ($ $ (-588 $))) (-15 -2138 ($ $ (-588 (-1085)) (-1085))) (-15 -2840 ($ $ (-588 (-1085)))) (-15 -1661 ($ $ $)) (-15 * ($ $ $)) (-15 -1682 ($ $ $)) (-15 ** ($ $ (-708))) (-15 ** ($ $ (-522))) (-15 0 ($) -2855) (-15 1 ($) -2855) (-15 -3982 ($ $)) (-15 -1258 ((-1068) $)) (-15 -1227 ((-1085) (-588 $))) (-15 -1876 ((-1085) (-1085) (-588 $)))))) (T -498))
+((-1602 (*1 *2 *1) (-12 (-5 *2 (-51)) (-5 *1 (-498)))) (-3873 (*1 *1 *2) (-12 (-5 *2 (-1018)) (-5 *1 (-498)))) (-2155 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-498))) (-5 *1 (-498)))) (-2138 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-1085)) (-5 *1 (-498)))) (-2840 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-498)))) (-1661 (*1 *1 *1 *1) (-5 *1 (-498))) (* (*1 *1 *1 *1) (-5 *1 (-498))) (-1682 (*1 *1 *1 *1) (-5 *1 (-498))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-498)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-498)))) (-3697 (*1 *1) (-5 *1 (-498))) (-3709 (*1 *1) (-5 *1 (-498))) (-3982 (*1 *1 *1) (-5 *1 (-498))) (-1258 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-498)))) (-1227 (*1 *2 *3) (-12 (-5 *3 (-588 (-498))) (-5 *2 (-1085)) (-5 *1 (-498)))) (-1876 (*1 *2 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-498))) (-5 *1 (-498)))))
+(-13 (-1017 (-1068) (-1085) (-522) (-202) (-792)) (-563 (-1018)) (-10 -8 (-15 -1602 ((-51) $)) (-15 -3873 ($ (-1018))) (-15 -2155 ($ $ (-588 $))) (-15 -2138 ($ $ (-588 (-1085)) (-1085))) (-15 -2840 ($ $ (-588 (-1085)))) (-15 -1661 ($ $ $)) (-15 * ($ $ $)) (-15 -1682 ($ $ $)) (-15 ** ($ $ (-708))) (-15 ** ($ $ (-522))) (-15 (-3697) ($) -2855) (-15 (-3709) ($) -2855) (-15 -3982 ($ $)) (-15 -1258 ((-1068) $)) (-15 -1227 ((-1085) (-588 $))) (-15 -1876 ((-1085) (-1085) (-588 $)))))
+((-2202 ((|#2| |#2|) 17)) (-1484 ((|#2| |#2|) 13)) (-3586 ((|#2| |#2| (-522) (-522)) 20)) (-2404 ((|#2| |#2|) 15)))
+(((-499 |#1| |#2|) (-10 -7 (-15 -1484 (|#2| |#2|)) (-15 -2404 (|#2| |#2|)) (-15 -2202 (|#2| |#2|)) (-15 -3586 (|#2| |#2| (-522) (-522)))) (-13 (-514) (-135)) (-1157 |#1|)) (T -499))
+((-3586 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-522)) (-4 *4 (-13 (-514) (-135))) (-5 *1 (-499 *4 *2)) (-4 *2 (-1157 *4)))) (-2202 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-499 *3 *2)) (-4 *2 (-1157 *3)))) (-2404 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-499 *3 *2)) (-4 *2 (-1157 *3)))) (-1484 (*1 *2 *2) (-12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-499 *3 *2)) (-4 *2 (-1157 *3)))))
+(-10 -7 (-15 -1484 (|#2| |#2|)) (-15 -2404 (|#2| |#2|)) (-15 -2202 (|#2| |#2|)) (-15 -3586 (|#2| |#2| (-522) (-522))))
+((-2561 (((-588 (-270 (-881 |#2|))) (-588 |#2|) (-588 (-1085))) 32)) (-1848 (((-588 |#2|) (-881 |#1|) |#3|) 53) (((-588 |#2|) (-1081 |#1|) |#3|) 52)) (-4216 (((-588 (-588 |#2|)) (-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085)) |#3|) 87)))
+(((-500 |#1| |#2| |#3|) (-10 -7 (-15 -1848 ((-588 |#2|) (-1081 |#1|) |#3|)) (-15 -1848 ((-588 |#2|) (-881 |#1|) |#3|)) (-15 -4216 ((-588 (-588 |#2|)) (-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085)) |#3|)) (-15 -2561 ((-588 (-270 (-881 |#2|))) (-588 |#2|) (-588 (-1085))))) (-426) (-338) (-13 (-338) (-782))) (T -500))
+((-2561 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 (-1085))) (-4 *6 (-338)) (-5 *2 (-588 (-270 (-881 *6)))) (-5 *1 (-500 *5 *6 *7)) (-4 *5 (-426)) (-4 *7 (-13 (-338) (-782))))) (-4216 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-588 (-881 *6))) (-5 *4 (-588 (-1085))) (-4 *6 (-426)) (-5 *2 (-588 (-588 *7))) (-5 *1 (-500 *6 *7 *5)) (-4 *7 (-338)) (-4 *5 (-13 (-338) (-782))))) (-1848 (*1 *2 *3 *4) (-12 (-5 *3 (-881 *5)) (-4 *5 (-426)) (-5 *2 (-588 *6)) (-5 *1 (-500 *5 *6 *4)) (-4 *6 (-338)) (-4 *4 (-13 (-338) (-782))))) (-1848 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *5)) (-4 *5 (-426)) (-5 *2 (-588 *6)) (-5 *1 (-500 *5 *6 *4)) (-4 *6 (-338)) (-4 *4 (-13 (-338) (-782))))))
+(-10 -7 (-15 -1848 ((-588 |#2|) (-1081 |#1|) |#3|)) (-15 -1848 ((-588 |#2|) (-881 |#1|) |#3|)) (-15 -4216 ((-588 (-588 |#2|)) (-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085)) |#3|)) (-15 -2561 ((-588 (-270 (-881 |#2|))) (-588 |#2|) (-588 (-1085)))))
+((-3004 ((|#2| |#2| |#1|) 17)) (-2370 ((|#2| (-588 |#2|)) 27)) (-2872 ((|#2| (-588 |#2|)) 46)))
+(((-501 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2370 (|#2| (-588 |#2|))) (-15 -2872 (|#2| (-588 |#2|))) (-15 -3004 (|#2| |#2| |#1|))) (-283) (-1142 |#1|) |#1| (-1 |#1| |#1| (-708))) (T -501))
+((-3004 (*1 *2 *2 *3) (-12 (-4 *3 (-283)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-708))) (-5 *1 (-501 *3 *2 *4 *5)) (-4 *2 (-1142 *3)))) (-2872 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-501 *4 *2 *5 *6)) (-4 *4 (-283)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-708))))) (-2370 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-501 *4 *2 *5 *6)) (-4 *4 (-283)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-708))))))
+(-10 -7 (-15 -2370 (|#2| (-588 |#2|))) (-15 -2872 (|#2| (-588 |#2|))) (-15 -3004 (|#2| |#2| |#1|)))
+((-2006 (((-393 (-1081 |#4|)) (-1081 |#4|) (-1 (-393 (-1081 |#3|)) (-1081 |#3|))) 79) (((-393 |#4|) |#4| (-1 (-393 (-1081 |#3|)) (-1081 |#3|))) 166)))
+(((-502 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2006 ((-393 |#4|) |#4| (-1 (-393 (-1081 |#3|)) (-1081 |#3|)))) (-15 -2006 ((-393 (-1081 |#4|)) (-1081 |#4|) (-1 (-393 (-1081 |#3|)) (-1081 |#3|))))) (-784) (-730) (-13 (-283) (-135)) (-878 |#3| |#2| |#1|)) (T -502))
+((-2006 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-393 (-1081 *7)) (-1081 *7))) (-4 *7 (-13 (-283) (-135))) (-4 *5 (-784)) (-4 *6 (-730)) (-4 *8 (-878 *7 *6 *5)) (-5 *2 (-393 (-1081 *8))) (-5 *1 (-502 *5 *6 *7 *8)) (-5 *3 (-1081 *8)))) (-2006 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-393 (-1081 *7)) (-1081 *7))) (-4 *7 (-13 (-283) (-135))) (-4 *5 (-784)) (-4 *6 (-730)) (-5 *2 (-393 *3)) (-5 *1 (-502 *5 *6 *7 *3)) (-4 *3 (-878 *7 *6 *5)))))
+(-10 -7 (-15 -2006 ((-393 |#4|) |#4| (-1 (-393 (-1081 |#3|)) (-1081 |#3|)))) (-15 -2006 ((-393 (-1081 |#4|)) (-1081 |#4|) (-1 (-393 (-1081 |#3|)) (-1081 |#3|)))))
+((-2202 ((|#4| |#4|) 74)) (-1484 ((|#4| |#4|) 70)) (-3586 ((|#4| |#4| (-522) (-522)) 76)) (-2404 ((|#4| |#4|) 72)))
+(((-503 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1484 (|#4| |#4|)) (-15 -2404 (|#4| |#4|)) (-15 -2202 (|#4| |#4|)) (-15 -3586 (|#4| |#4| (-522) (-522)))) (-13 (-338) (-343) (-563 (-522))) (-1142 |#1|) (-662 |#1| |#2|) (-1157 |#3|)) (T -503))
+((-3586 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-522)) (-4 *4 (-13 (-338) (-343) (-563 *3))) (-4 *5 (-1142 *4)) (-4 *6 (-662 *4 *5)) (-5 *1 (-503 *4 *5 *6 *2)) (-4 *2 (-1157 *6)))) (-2202 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-4 *4 (-1142 *3)) (-4 *5 (-662 *3 *4)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-1157 *5)))) (-2404 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-4 *4 (-1142 *3)) (-4 *5 (-662 *3 *4)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-1157 *5)))) (-1484 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-4 *4 (-1142 *3)) (-4 *5 (-662 *3 *4)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-1157 *5)))))
+(-10 -7 (-15 -1484 (|#4| |#4|)) (-15 -2404 (|#4| |#4|)) (-15 -2202 (|#4| |#4|)) (-15 -3586 (|#4| |#4| (-522) (-522))))
+((-2202 ((|#2| |#2|) 27)) (-1484 ((|#2| |#2|) 23)) (-3586 ((|#2| |#2| (-522) (-522)) 29)) (-2404 ((|#2| |#2|) 25)))
+(((-504 |#1| |#2|) (-10 -7 (-15 -1484 (|#2| |#2|)) (-15 -2404 (|#2| |#2|)) (-15 -2202 (|#2| |#2|)) (-15 -3586 (|#2| |#2| (-522) (-522)))) (-13 (-338) (-343) (-563 (-522))) (-1157 |#1|)) (T -504))
+((-3586 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-522)) (-4 *4 (-13 (-338) (-343) (-563 *3))) (-5 *1 (-504 *4 *2)) (-4 *2 (-1157 *4)))) (-2202 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-5 *1 (-504 *3 *2)) (-4 *2 (-1157 *3)))) (-2404 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-5 *1 (-504 *3 *2)) (-4 *2 (-1157 *3)))) (-1484 (*1 *2 *2) (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-5 *1 (-504 *3 *2)) (-4 *2 (-1157 *3)))))
+(-10 -7 (-15 -1484 (|#2| |#2|)) (-15 -2404 (|#2| |#2|)) (-15 -2202 (|#2| |#2|)) (-15 -3586 (|#2| |#2| (-522) (-522))))
+((-3339 (((-3 (-522) "failed") |#2| |#1| (-1 (-3 (-522) "failed") |#1|)) 14) (((-3 (-522) "failed") |#2| |#1| (-522) (-1 (-3 (-522) "failed") |#1|)) 13) (((-3 (-522) "failed") |#2| (-522) (-1 (-3 (-522) "failed") |#1|)) 26)))
+(((-505 |#1| |#2|) (-10 -7 (-15 -3339 ((-3 (-522) "failed") |#2| (-522) (-1 (-3 (-522) "failed") |#1|))) (-15 -3339 ((-3 (-522) "failed") |#2| |#1| (-522) (-1 (-3 (-522) "failed") |#1|))) (-15 -3339 ((-3 (-522) "failed") |#2| |#1| (-1 (-3 (-522) "failed") |#1|)))) (-971) (-1142 |#1|)) (T -505))
+((-3339 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-522) "failed") *4)) (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-505 *4 *3)) (-4 *3 (-1142 *4)))) (-3339 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-522) "failed") *4)) (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-505 *4 *3)) (-4 *3 (-1142 *4)))) (-3339 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-522) "failed") *5)) (-4 *5 (-971)) (-5 *2 (-522)) (-5 *1 (-505 *5 *3)) (-4 *3 (-1142 *5)))))
+(-10 -7 (-15 -3339 ((-3 (-522) "failed") |#2| (-522) (-1 (-3 (-522) "failed") |#1|))) (-15 -3339 ((-3 (-522) "failed") |#2| |#1| (-522) (-1 (-3 (-522) "failed") |#1|))) (-15 -3339 ((-3 (-522) "failed") |#2| |#1| (-1 (-3 (-522) "failed") |#1|))))
+((-1805 (($ $ $) 79)) (-3133 (((-393 $) $) 47)) (-3700 (((-3 (-522) "failed") $) 59)) (-1478 (((-522) $) 37)) (-2549 (((-3 (-382 (-522)) "failed") $) 74)) (-3519 (((-108) $) 24)) (-1699 (((-382 (-522)) $) 72)) (-2725 (((-108) $) 50)) (-3859 (($ $ $ $) 86)) (-3603 (((-108) $) 16)) (-2634 (($ $ $) 57)) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 69)) (-4208 (((-3 $ "failed") $) 64)) (-4000 (($ $) 23)) (-1988 (($ $ $) 84)) (-3937 (($) 60)) (-1274 (($ $) 53)) (-2006 (((-393 $) $) 45)) (-2626 (((-108) $) 14)) (-4031 (((-708) $) 28)) (-2731 (($ $ (-708)) NIL) (($ $) 10)) (-2463 (($ $) 17)) (-3873 (((-522) $) NIL) (((-498) $) 36) (((-821 (-522)) $) 40) (((-354) $) 31) (((-202) $) 33)) (-2742 (((-708)) 8)) (-1763 (((-108) $ $) 20)) (-1591 (($ $ $) 55)))
+(((-506 |#1|) (-10 -8 (-15 -1988 (|#1| |#1| |#1|)) (-15 -3859 (|#1| |#1| |#1| |#1|)) (-15 -4000 (|#1| |#1|)) (-15 -2463 (|#1| |#1|)) (-15 -2549 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1699 ((-382 (-522)) |#1|)) (-15 -3519 ((-108) |#1|)) (-15 -1805 (|#1| |#1| |#1|)) (-15 -1763 ((-108) |#1| |#1|)) (-15 -2626 ((-108) |#1|)) (-15 -3937 (|#1|)) (-15 -4208 ((-3 |#1| "failed") |#1|)) (-15 -3873 ((-202) |#1|)) (-15 -3873 ((-354) |#1|)) (-15 -2634 (|#1| |#1| |#1|)) (-15 -1274 (|#1| |#1|)) (-15 -1591 (|#1| |#1| |#1|)) (-15 -3738 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -3873 ((-821 (-522)) |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -3873 ((-522) |#1|)) (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -3603 ((-108) |#1|)) (-15 -4031 ((-708) |#1|)) (-15 -2006 ((-393 |#1|) |#1|)) (-15 -3133 ((-393 |#1|) |#1|)) (-15 -2725 ((-108) |#1|)) (-15 -2742 ((-708)))) (-507)) (T -506))
+((-2742 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-506 *3)) (-4 *3 (-507)))))
+(-10 -8 (-15 -1988 (|#1| |#1| |#1|)) (-15 -3859 (|#1| |#1| |#1| |#1|)) (-15 -4000 (|#1| |#1|)) (-15 -2463 (|#1| |#1|)) (-15 -2549 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1699 ((-382 (-522)) |#1|)) (-15 -3519 ((-108) |#1|)) (-15 -1805 (|#1| |#1| |#1|)) (-15 -1763 ((-108) |#1| |#1|)) (-15 -2626 ((-108) |#1|)) (-15 -3937 (|#1|)) (-15 -4208 ((-3 |#1| "failed") |#1|)) (-15 -3873 ((-202) |#1|)) (-15 -3873 ((-354) |#1|)) (-15 -2634 (|#1| |#1| |#1|)) (-15 -1274 (|#1| |#1|)) (-15 -1591 (|#1| |#1| |#1|)) (-15 -3738 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -3873 ((-821 (-522)) |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -3873 ((-522) |#1|)) (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -3603 ((-108) |#1|)) (-15 -4031 ((-708) |#1|)) (-15 -2006 ((-393 |#1|) |#1|)) (-15 -3133 ((-393 |#1|) |#1|)) (-15 -2725 ((-108) |#1|)) (-15 -2742 ((-708))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-1805 (($ $ $) 85)) (-2265 (((-3 $ "failed") $ $) 19)) (-3372 (($ $ $ $) 73)) (-2961 (($ $) 51)) (-3133 (((-393 $) $) 52)) (-2805 (((-108) $ $) 125)) (-3355 (((-522) $) 114)) (-1736 (($ $ $) 88)) (-3367 (($) 17 T CONST)) (-3700 (((-3 (-522) "failed") $) 106)) (-1478 (((-522) $) 105)) (-2333 (($ $ $) 129)) (-1226 (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 104) (((-628 (-522)) (-628 $)) 103)) (-3920 (((-3 $ "failed") $) 34)) (-2549 (((-3 (-382 (-522)) "failed") $) 82)) (-3519 (((-108) $) 84)) (-1699 (((-382 (-522)) $) 83)) (-3344 (($) 81) (($ $) 80)) (-2303 (($ $ $) 128)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 123)) (-2725 (((-108) $) 53)) (-3859 (($ $ $ $) 71)) (-1968 (($ $ $) 86)) (-3603 (((-108) $) 116)) (-2634 (($ $ $) 97)) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 100)) (-2859 (((-108) $) 31)) (-3077 (((-108) $) 92)) (-4208 (((-3 $ "failed") $) 94)) (-3740 (((-108) $) 115)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 132)) (-2037 (($ $ $ $) 72)) (-1308 (($ $ $) 117)) (-2524 (($ $ $) 118)) (-4000 (($ $) 75)) (-4030 (($ $) 89)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-1988 (($ $ $) 70)) (-3937 (($) 93 T CONST)) (-3092 (($ $) 77)) (-4174 (((-1032) $) 10) (($ $) 79)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-1274 (($ $) 98)) (-2006 (((-393 $) $) 50)) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 131) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 130)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 124)) (-2626 (((-108) $) 91)) (-4031 (((-708) $) 126)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 127)) (-2731 (($ $ (-708)) 111) (($ $) 109)) (-3518 (($ $) 76)) (-2463 (($ $) 78)) (-3873 (((-522) $) 108) (((-498) $) 102) (((-821 (-522)) $) 101) (((-354) $) 96) (((-202) $) 95)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-522)) 107)) (-2742 (((-708)) 29)) (-1763 (((-108) $ $) 87)) (-1591 (($ $ $) 99)) (-1897 (($) 90)) (-1407 (((-108) $ $) 39)) (-3673 (($ $ $ $) 74)) (-4126 (($ $) 113)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-708)) 112) (($ $) 110)) (-1623 (((-108) $ $) 120)) (-1597 (((-108) $ $) 121)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 119)) (-1587 (((-108) $ $) 122)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-507) (-1197)) (T -507))
-((-2591 (*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108)))) (-1263 (*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108)))) (-3355 (*1 *1) (-4 *1 (-507))) (-2517 (*1 *1 *1) (-4 *1 (-507))) (-1662 (*1 *1 *1 *1) (-4 *1 (-507))) (-3558 (*1 *2 *1 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108)))) (-2339 (*1 *1 *1 *1) (-4 *1 (-507))) (-3871 (*1 *1 *1 *1) (-4 *1 (-507))) (-1770 (*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108)))) (-1492 (*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-382 (-522))))) (-1664 (*1 *2 *1) (|partial| -12 (-4 *1 (-507)) (-5 *2 (-382 (-522))))) (-3255 (*1 *1) (-4 *1 (-507))) (-3255 (*1 *1 *1) (-4 *1 (-507))) (-4151 (*1 *1 *1) (-4 *1 (-507))) (-2404 (*1 *1 *1) (-4 *1 (-507))) (-2957 (*1 *1 *1) (-4 *1 (-507))) (-3056 (*1 *1 *1) (-4 *1 (-507))) (-3893 (*1 *1 *1) (-4 *1 (-507))) (-4004 (*1 *1 *1 *1 *1) (-4 *1 (-507))) (-3481 (*1 *1 *1 *1 *1) (-4 *1 (-507))) (-1335 (*1 *1 *1 *1 *1) (-4 *1 (-507))) (-2676 (*1 *1 *1 *1 *1) (-4 *1 (-507))) (-2341 (*1 *1 *1 *1) (-4 *1 (-507))))
-(-13 (-1124) (-283) (-757) (-210) (-563 (-522)) (-962 (-522)) (-584 (-522)) (-563 (-498)) (-563 (-821 (-522))) (-815 (-522)) (-131) (-947) (-135) (-1061) (-10 -8 (-15 -2591 ((-108) $)) (-15 -1263 ((-108) $)) (-6 -4237) (-15 -3355 ($)) (-15 -2517 ($ $)) (-15 -1662 ($ $ $)) (-15 -3558 ((-108) $ $)) (-15 -2339 ($ $ $)) (-15 -3871 ($ $ $)) (-15 -1770 ((-108) $)) (-15 -1492 ((-382 (-522)) $)) (-15 -1664 ((-3 (-382 (-522)) "failed") $)) (-15 -3255 ($)) (-15 -3255 ($ $)) (-15 -4151 ($ $)) (-15 -2404 ($ $)) (-15 -2957 ($ $)) (-15 -3056 ($ $)) (-15 -3893 ($ $)) (-15 -4004 ($ $ $ $)) (-15 -3481 ($ $ $ $)) (-15 -1335 ($ $ $ $)) (-15 -2676 ($ $ $ $)) (-15 -2341 ($ $ $)) (-6 -4236)))
+((-3077 (*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108)))) (-2626 (*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108)))) (-1897 (*1 *1) (-4 *1 (-507))) (-4030 (*1 *1 *1) (-4 *1 (-507))) (-1736 (*1 *1 *1 *1) (-4 *1 (-507))) (-1763 (*1 *2 *1 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108)))) (-1968 (*1 *1 *1 *1) (-4 *1 (-507))) (-1805 (*1 *1 *1 *1) (-4 *1 (-507))) (-3519 (*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108)))) (-1699 (*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-382 (-522))))) (-2549 (*1 *2 *1) (|partial| -12 (-4 *1 (-507)) (-5 *2 (-382 (-522))))) (-3344 (*1 *1) (-4 *1 (-507))) (-3344 (*1 *1 *1) (-4 *1 (-507))) (-4174 (*1 *1 *1) (-4 *1 (-507))) (-2463 (*1 *1 *1) (-4 *1 (-507))) (-3092 (*1 *1 *1) (-4 *1 (-507))) (-3518 (*1 *1 *1) (-4 *1 (-507))) (-4000 (*1 *1 *1) (-4 *1 (-507))) (-3673 (*1 *1 *1 *1 *1) (-4 *1 (-507))) (-3372 (*1 *1 *1 *1 *1) (-4 *1 (-507))) (-2037 (*1 *1 *1 *1 *1) (-4 *1 (-507))) (-3859 (*1 *1 *1 *1 *1) (-4 *1 (-507))) (-1988 (*1 *1 *1 *1) (-4 *1 (-507))))
+(-13 (-1124) (-283) (-757) (-210) (-563 (-522)) (-962 (-522)) (-584 (-522)) (-563 (-498)) (-563 (-821 (-522))) (-815 (-522)) (-131) (-947) (-135) (-1061) (-10 -8 (-15 -3077 ((-108) $)) (-15 -2626 ((-108) $)) (-6 -4237) (-15 -1897 ($)) (-15 -4030 ($ $)) (-15 -1736 ($ $ $)) (-15 -1763 ((-108) $ $)) (-15 -1968 ($ $ $)) (-15 -1805 ($ $ $)) (-15 -3519 ((-108) $)) (-15 -1699 ((-382 (-522)) $)) (-15 -2549 ((-3 (-382 (-522)) "failed") $)) (-15 -3344 ($)) (-15 -3344 ($ $)) (-15 -4174 ($ $)) (-15 -2463 ($ $)) (-15 -3092 ($ $)) (-15 -3518 ($ $)) (-15 -4000 ($ $)) (-15 -3673 ($ $ $ $)) (-15 -3372 ($ $ $ $)) (-15 -2037 ($ $ $ $)) (-15 -3859 ($ $ $ $)) (-15 -1988 ($ $ $)) (-6 -4236)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-135) . T) ((-562 (-792)) . T) ((-131) . T) ((-157) . T) ((-563 (-202)) . T) ((-563 (-354)) . T) ((-563 (-498)) . T) ((-563 (-522)) . T) ((-563 (-821 (-522))) . T) ((-210) . T) ((-266) . T) ((-283) . T) ((-426) . T) ((-514) . T) ((-590 $) . T) ((-584 (-522)) . T) ((-655 $) . T) ((-664) . T) ((-728) . T) ((-729) . T) ((-731) . T) ((-732) . T) ((-757) . T) ((-782) . T) ((-784) . T) ((-815 (-522)) . T) ((-849) . T) ((-947) . T) ((-962 (-522)) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) . T) ((-1124) . T))
-((-1416 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1800 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2679 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#2| $ |#1| |#2|) NIL)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2750 (((-3 |#2| "failed") |#1| $) NIL)) (-3175 (($) NIL T CONST)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-3859 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) NIL)) (-1423 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#2| $ |#1|) NIL)) (-3837 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 ((|#1| $) NIL (|has| |#1| (-784)))) (-3308 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2014 ((|#1| $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2966 (((-588 |#1|) $) NIL)) (-1231 (((-108) |#1| $) NIL)) (-2116 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-4095 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3604 (((-588 |#1|) $) NIL)) (-1405 (((-108) |#1| $) NIL)) (-4151 (((-1032) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2294 ((|#2| $) NIL (|has| |#1| (-784)))) (-1414 (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL)) (-2602 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1525 (((-588 |#2|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3990 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2190 (((-792) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-2795 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1883 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-3883 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#2| $ |#1| |#2|) NIL)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-4011 (((-3 |#2| "failed") |#1| $) NIL)) (-3367 (($) NIL T CONST)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-1700 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) NIL)) (-1424 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#2| $ |#1|) NIL)) (-2395 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 ((|#1| $) NIL (|has| |#1| (-784)))) (-4084 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2201 ((|#1| $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2562 (((-588 |#1|) $) NIL)) (-2241 (((-108) |#1| $) NIL)) (-1431 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3365 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-2130 (((-588 |#1|) $) NIL)) (-2103 (((-108) |#1| $) NIL)) (-4174 (((-1032) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2337 ((|#2| $) NIL (|has| |#1| (-784)))) (-2187 (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL)) (-1972 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1973 (((-588 |#2|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3546 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-2217 (((-792) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-2501 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-508 |#1| |#2| |#3|) (-13 (-1097 |#1| |#2|) (-10 -7 (-6 -4238))) (-1014) (-1014) (-13 (-1097 |#1| |#2|) (-10 -7 (-6 -4238)))) (T -508))
NIL
(-13 (-1097 |#1| |#2|) (-10 -7 (-6 -4238)))
-((-3747 (((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) (-1 (-1081 |#2|) (-1081 |#2|))) 49)))
-(((-509 |#1| |#2|) (-10 -7 (-15 -3747 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) (-1 (-1081 |#2|) (-1081 |#2|))))) (-13 (-784) (-514)) (-13 (-27) (-405 |#1|))) (T -509))
-((-3747 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-561 *3)) (-5 *5 (-1 (-1081 *3) (-1081 *3))) (-4 *3 (-13 (-27) (-405 *6))) (-4 *6 (-13 (-784) (-514))) (-5 *2 (-539 *3)) (-5 *1 (-509 *6 *3)))))
-(-10 -7 (-15 -3747 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) (-1 (-1081 |#2|) (-1081 |#2|)))))
-((-4171 (((-539 |#5|) |#5| (-1 |#3| |#3|)) 195)) (-2694 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 191)) (-3954 (((-539 |#5|) |#5| (-1 |#3| |#3|)) 198)))
-(((-510 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3954 ((-539 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4171 ((-539 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2694 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-784) (-514) (-962 (-522))) (-13 (-27) (-405 |#1|)) (-1142 |#2|) (-1142 (-382 |#3|)) (-317 |#2| |#3| |#4|)) (T -510))
-((-2694 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-27) (-405 *4))) (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-4 *7 (-1142 (-382 *6))) (-5 *1 (-510 *4 *5 *6 *7 *2)) (-4 *2 (-317 *5 *6 *7)))) (-4171 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1142 *6)) (-4 *6 (-13 (-27) (-405 *5))) (-4 *5 (-13 (-784) (-514) (-962 (-522)))) (-4 *8 (-1142 (-382 *7))) (-5 *2 (-539 *3)) (-5 *1 (-510 *5 *6 *7 *8 *3)) (-4 *3 (-317 *6 *7 *8)))) (-3954 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1142 *6)) (-4 *6 (-13 (-27) (-405 *5))) (-4 *5 (-13 (-784) (-514) (-962 (-522)))) (-4 *8 (-1142 (-382 *7))) (-5 *2 (-539 *3)) (-5 *1 (-510 *5 *6 *7 *8 *3)) (-4 *3 (-317 *6 *7 *8)))))
-(-10 -7 (-15 -3954 ((-539 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4171 ((-539 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2694 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
-((-3410 (((-108) (-522) (-522)) 10)) (-1947 (((-522) (-522)) 7)) (-2733 (((-522) (-522) (-522)) 8)))
-(((-511) (-10 -7 (-15 -1947 ((-522) (-522))) (-15 -2733 ((-522) (-522) (-522))) (-15 -3410 ((-108) (-522) (-522))))) (T -511))
-((-3410 (*1 *2 *3 *3) (-12 (-5 *3 (-522)) (-5 *2 (-108)) (-5 *1 (-511)))) (-2733 (*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-511)))) (-1947 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-511)))))
-(-10 -7 (-15 -1947 ((-522) (-522))) (-15 -2733 ((-522) (-522) (-522))) (-15 -3410 ((-108) (-522) (-522))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2645 ((|#1| $) 61)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-2908 (($ $) 91)) (-2772 (($ $) 74)) (-1210 ((|#1| $) 62)) (-1233 (((-3 $ "failed") $ $) 19)) (-1929 (($ $) 73)) (-2884 (($ $) 90)) (-2748 (($ $) 75)) (-2930 (($ $) 89)) (-2794 (($ $) 76)) (-3175 (($) 17 T CONST)) (-1297 (((-3 (-522) "failed") $) 69)) (-1484 (((-522) $) 68)) (-2682 (((-3 $ "failed") $) 34)) (-2153 (($ |#1| |#1|) 66)) (-3687 (((-108) $) 60)) (-2838 (($) 101)) (-2782 (((-108) $) 31)) (-1504 (($ $ (-522)) 72)) (-2556 (((-108) $) 59)) (-2814 (($ $ $) 107)) (-2446 (($ $ $) 106)) (-1254 (($ $) 98)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-1514 (($ |#1| |#1|) 67) (($ |#1|) 65) (($ (-382 (-522))) 64)) (-3136 ((|#1| $) 63)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-2232 (((-3 $ "failed") $ $) 42)) (-3266 (($ $) 99)) (-1738 (($ $) 88)) (-2804 (($ $) 77)) (-2919 (($ $) 87)) (-2784 (($ $) 78)) (-2896 (($ $) 86)) (-2761 (($ $) 79)) (-2875 (((-108) $ |#1|) 58)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-522)) 70)) (-2323 (((-708)) 29)) (-1759 (($ $) 97)) (-2836 (($ $) 85)) (-3958 (((-108) $ $) 39)) (-1745 (($ $) 96)) (-2815 (($ $) 84)) (-1776 (($ $) 95)) (-2860 (($ $) 83)) (-3924 (($ $) 94)) (-2872 (($ $) 82)) (-1768 (($ $) 93)) (-2848 (($ $) 81)) (-1752 (($ $) 92)) (-2825 (($ $) 80)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1574 (((-108) $ $) 104)) (-1558 (((-108) $ $) 103)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 105)) (-1549 (((-108) $ $) 102)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ $) 100) (($ $ (-382 (-522))) 71)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-3081 (((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) (-1 (-1081 |#2|) (-1081 |#2|))) 49)))
+(((-509 |#1| |#2|) (-10 -7 (-15 -3081 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) (-1 (-1081 |#2|) (-1081 |#2|))))) (-13 (-784) (-514)) (-13 (-27) (-405 |#1|))) (T -509))
+((-3081 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-561 *3)) (-5 *5 (-1 (-1081 *3) (-1081 *3))) (-4 *3 (-13 (-27) (-405 *6))) (-4 *6 (-13 (-784) (-514))) (-5 *2 (-539 *3)) (-5 *1 (-509 *6 *3)))))
+(-10 -7 (-15 -3081 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) (-1 (-1081 |#2|) (-1081 |#2|)))))
+((-1729 (((-539 |#5|) |#5| (-1 |#3| |#3|)) 195)) (-3593 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 191)) (-1375 (((-539 |#5|) |#5| (-1 |#3| |#3|)) 198)))
+(((-510 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1375 ((-539 |#5|) |#5| (-1 |#3| |#3|))) (-15 -1729 ((-539 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3593 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-784) (-514) (-962 (-522))) (-13 (-27) (-405 |#1|)) (-1142 |#2|) (-1142 (-382 |#3|)) (-317 |#2| |#3| |#4|)) (T -510))
+((-3593 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-27) (-405 *4))) (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-4 *7 (-1142 (-382 *6))) (-5 *1 (-510 *4 *5 *6 *7 *2)) (-4 *2 (-317 *5 *6 *7)))) (-1729 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1142 *6)) (-4 *6 (-13 (-27) (-405 *5))) (-4 *5 (-13 (-784) (-514) (-962 (-522)))) (-4 *8 (-1142 (-382 *7))) (-5 *2 (-539 *3)) (-5 *1 (-510 *5 *6 *7 *8 *3)) (-4 *3 (-317 *6 *7 *8)))) (-1375 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1142 *6)) (-4 *6 (-13 (-27) (-405 *5))) (-4 *5 (-13 (-784) (-514) (-962 (-522)))) (-4 *8 (-1142 (-382 *7))) (-5 *2 (-539 *3)) (-5 *1 (-510 *5 *6 *7 *8 *3)) (-4 *3 (-317 *6 *7 *8)))))
+(-10 -7 (-15 -1375 ((-539 |#5|) |#5| (-1 |#3| |#3|))) (-15 -1729 ((-539 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3593 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
+((-3875 (((-108) (-522) (-522)) 10)) (-1569 (((-522) (-522)) 7)) (-3958 (((-522) (-522) (-522)) 8)))
+(((-511) (-10 -7 (-15 -1569 ((-522) (-522))) (-15 -3958 ((-522) (-522) (-522))) (-15 -3875 ((-108) (-522) (-522))))) (T -511))
+((-3875 (*1 *2 *3 *3) (-12 (-5 *3 (-522)) (-5 *2 (-108)) (-5 *1 (-511)))) (-3958 (*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-511)))) (-1569 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-511)))))
+(-10 -7 (-15 -1569 ((-522) (-522))) (-15 -3958 ((-522) (-522) (-522))) (-15 -3875 ((-108) (-522) (-522))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2815 ((|#1| $) 61)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-3044 (($ $) 91)) (-2923 (($ $) 74)) (-1827 ((|#1| $) 62)) (-2265 (((-3 $ "failed") $ $) 19)) (-2016 (($ $) 73)) (-3023 (($ $) 90)) (-2906 (($ $) 75)) (-3066 (($ $) 89)) (-2936 (($ $) 76)) (-3367 (($) 17 T CONST)) (-3700 (((-3 (-522) "failed") $) 69)) (-1478 (((-522) $) 68)) (-3920 (((-3 $ "failed") $) 34)) (-3122 (($ |#1| |#1|) 66)) (-3603 (((-108) $) 60)) (-2980 (($) 101)) (-2859 (((-108) $) 31)) (-1811 (($ $ (-522)) 72)) (-3740 (((-108) $) 59)) (-1308 (($ $ $) 107)) (-2524 (($ $ $) 106)) (-1238 (($ $) 98)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-1869 (($ |#1| |#1|) 67) (($ |#1|) 65) (($ (-382 (-522))) 64)) (-3099 ((|#1| $) 63)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-2276 (((-3 $ "failed") $ $) 42)) (-3357 (($ $) 99)) (-1831 (($ $) 88)) (-2946 (($ $) 77)) (-3054 (($ $) 87)) (-2928 (($ $) 78)) (-3035 (($ $) 86)) (-2915 (($ $) 79)) (-1311 (((-108) $ |#1|) 58)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-522)) 70)) (-2742 (((-708)) 29)) (-1856 (($ $) 97)) (-2976 (($ $) 85)) (-1407 (((-108) $ $) 39)) (-1839 (($ $) 96)) (-2957 (($ $) 84)) (-1873 (($ $) 95)) (-3001 (($ $) 83)) (-2476 (($ $) 94)) (-3011 (($ $) 82)) (-1864 (($ $) 93)) (-2989 (($ $) 81)) (-1849 (($ $) 92)) (-2966 (($ $) 80)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1623 (((-108) $ $) 104)) (-1597 (((-108) $ $) 103)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 105)) (-1587 (((-108) $ $) 102)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ $) 100) (($ $ (-382 (-522))) 71)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-512 |#1|) (-1197) (-13 (-379) (-1106))) (T -512))
-((-1514 (*1 *1 *2 *2) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))) (-2153 (*1 *1 *2 *2) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))) (-1514 (*1 *1 *2) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))) (-1514 (*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))))) (-3136 (*1 *2 *1) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))) (-1210 (*1 *2 *1) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))) (-2645 (*1 *2 *1) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))) (-3687 (*1 *2 *1) (-12 (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))) (-5 *2 (-108)))) (-2556 (*1 *2 *1) (-12 (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))) (-5 *2 (-108)))) (-2875 (*1 *2 *1 *3) (-12 (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))) (-5 *2 (-108)))))
-(-13 (-426) (-784) (-1106) (-928) (-962 (-522)) (-10 -8 (-6 -3898) (-15 -1514 ($ |t#1| |t#1|)) (-15 -2153 ($ |t#1| |t#1|)) (-15 -1514 ($ |t#1|)) (-15 -1514 ($ (-382 (-522)))) (-15 -3136 (|t#1| $)) (-15 -1210 (|t#1| $)) (-15 -2645 (|t#1| $)) (-15 -3687 ((-108) $)) (-15 -2556 ((-108) $)) (-15 -2875 ((-108) $ |t#1|))))
+((-1869 (*1 *1 *2 *2) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))) (-3122 (*1 *1 *2 *2) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))) (-1869 (*1 *1 *2) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))) (-1869 (*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))))) (-3099 (*1 *2 *1) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))) (-1827 (*1 *2 *1) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))) (-2815 (*1 *2 *1) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))) (-3603 (*1 *2 *1) (-12 (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))) (-5 *2 (-108)))) (-3740 (*1 *2 *1) (-12 (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))) (-5 *2 (-108)))) (-1311 (*1 *2 *1 *3) (-12 (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))) (-5 *2 (-108)))))
+(-13 (-426) (-784) (-1106) (-928) (-962 (-522)) (-10 -8 (-6 -3996) (-15 -1869 ($ |t#1| |t#1|)) (-15 -3122 ($ |t#1| |t#1|)) (-15 -1869 ($ |t#1|)) (-15 -1869 ($ (-382 (-522)))) (-15 -3099 (|t#1| $)) (-15 -1827 (|t#1| $)) (-15 -2815 (|t#1| $)) (-15 -3603 ((-108) $)) (-15 -3740 ((-108) $)) (-15 -1311 ((-108) $ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-34) . T) ((-91) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-157) . T) ((-260) . T) ((-266) . T) ((-426) . T) ((-463) . T) ((-514) . T) ((-590 $) . T) ((-655 $) . T) ((-664) . T) ((-784) . T) ((-928) . T) ((-962 (-522)) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1106) . T) ((-1109) . T))
-((-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 9)) (-2022 (($ $) 11)) (-3739 (((-108) $) 18)) (-2682 (((-3 $ "failed") $) 16)) (-3958 (((-108) $ $) 20)))
-(((-513 |#1|) (-10 -8 (-15 -3739 ((-108) |#1|)) (-15 -3958 ((-108) |#1| |#1|)) (-15 -2022 (|#1| |#1|)) (-15 -2013 ((-2 (|:| -3210 |#1|) (|:| -4225 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2682 ((-3 |#1| "failed") |#1|))) (-514)) (T -513))
+((-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 9)) (-2298 (($ $) 11)) (-3007 (((-108) $) 18)) (-3920 (((-3 $ "failed") $) 16)) (-1407 (((-108) $ $) 20)))
+(((-513 |#1|) (-10 -8 (-15 -3007 ((-108) |#1|)) (-15 -1407 ((-108) |#1| |#1|)) (-15 -2298 (|#1| |#1|)) (-15 -3401 ((-2 (|:| -2541 |#1|) (|:| -4225 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3920 ((-3 |#1| "failed") |#1|))) (-514)) (T -513))
NIL
-(-10 -8 (-15 -3739 ((-108) |#1|)) (-15 -3958 ((-108) |#1| |#1|)) (-15 -2022 (|#1| |#1|)) (-15 -2013 ((-2 (|:| -3210 |#1|) (|:| -4225 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2682 ((-3 |#1| "failed") |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2232 (((-3 $ "failed") $ $) 42)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+(-10 -8 (-15 -3007 ((-108) |#1|)) (-15 -1407 ((-108) |#1| |#1|)) (-15 -2298 (|#1| |#1|)) (-15 -3401 ((-2 (|:| -2541 |#1|) (|:| -4225 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3920 ((-3 |#1| "failed") |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2276 (((-3 $ "failed") $ $) 42)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-514) (-1197)) (T -514))
-((-2232 (*1 *1 *1 *1) (|partial| -4 *1 (-514))) (-2013 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -3210 *1) (|:| -4225 *1) (|:| |associate| *1))) (-4 *1 (-514)))) (-2022 (*1 *1 *1) (-4 *1 (-514))) (-3958 (*1 *2 *1 *1) (-12 (-4 *1 (-514)) (-5 *2 (-108)))) (-3739 (*1 *2 *1) (-12 (-4 *1 (-514)) (-5 *2 (-108)))))
-(-13 (-157) (-37 $) (-266) (-10 -8 (-15 -2232 ((-3 $ "failed") $ $)) (-15 -2013 ((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $)) (-15 -2022 ($ $)) (-15 -3958 ((-108) $ $)) (-15 -3739 ((-108) $))))
+((-2276 (*1 *1 *1 *1) (|partial| -4 *1 (-514))) (-3401 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2541 *1) (|:| -4225 *1) (|:| |associate| *1))) (-4 *1 (-514)))) (-2298 (*1 *1 *1) (-4 *1 (-514))) (-1407 (*1 *2 *1 *1) (-12 (-4 *1 (-514)) (-5 *2 (-108)))) (-3007 (*1 *2 *1) (-12 (-4 *1 (-514)) (-5 *2 (-108)))))
+(-13 (-157) (-37 $) (-266) (-10 -8 (-15 -2276 ((-3 $ "failed") $ $)) (-15 -3401 ((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $)) (-15 -2298 ($ $)) (-15 -1407 ((-108) $ $)) (-15 -3007 ((-108) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-157) . T) ((-266) . T) ((-590 $) . T) ((-655 $) . T) ((-664) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-2267 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1085) (-588 |#2|)) 35)) (-3092 (((-539 |#2|) |#2| (-1085)) 58)) (-2002 (((-3 |#2| "failed") |#2| (-1085)) 149)) (-4027 (((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1085) (-561 |#2|) (-588 (-561 |#2|))) 152)) (-1226 (((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1085) |#2|) 38)))
-(((-515 |#1| |#2|) (-10 -7 (-15 -1226 ((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1085) |#2|)) (-15 -2267 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1085) (-588 |#2|))) (-15 -2002 ((-3 |#2| "failed") |#2| (-1085))) (-15 -3092 ((-539 |#2|) |#2| (-1085))) (-15 -4027 ((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1085) (-561 |#2|) (-588 (-561 |#2|))))) (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -515))
-((-4027 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1085)) (-5 *6 (-588 (-561 *3))) (-5 *5 (-561 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *7))) (-4 *7 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-2 (|:| -1856 *3) (|:| |coeff| *3))) (-5 *1 (-515 *7 *3)))) (-3092 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-539 *3)) (-5 *1 (-515 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-2002 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *1 (-515 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))) (-2267 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-588 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-515 *6 *3)))) (-1226 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1085)) (-4 *5 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-2 (|:| -1856 *3) (|:| |coeff| *3))) (-5 *1 (-515 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
-(-10 -7 (-15 -1226 ((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1085) |#2|)) (-15 -2267 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1085) (-588 |#2|))) (-15 -2002 ((-3 |#2| "failed") |#2| (-1085))) (-15 -3092 ((-539 |#2|) |#2| (-1085))) (-15 -4027 ((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1085) (-561 |#2|) (-588 (-561 |#2|)))))
-((-3450 (((-393 |#1|) |#1|) 18)) (-1916 (((-393 |#1|) |#1|) 33)) (-2839 (((-3 |#1| "failed") |#1|) 44)) (-2567 (((-393 |#1|) |#1|) 51)))
-(((-516 |#1|) (-10 -7 (-15 -1916 ((-393 |#1|) |#1|)) (-15 -3450 ((-393 |#1|) |#1|)) (-15 -2567 ((-393 |#1|) |#1|)) (-15 -2839 ((-3 |#1| "failed") |#1|))) (-507)) (T -516))
-((-2839 (*1 *2 *2) (|partial| -12 (-5 *1 (-516 *2)) (-4 *2 (-507)))) (-2567 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-516 *3)) (-4 *3 (-507)))) (-3450 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-516 *3)) (-4 *3 (-507)))) (-1916 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-516 *3)) (-4 *3 (-507)))))
-(-10 -7 (-15 -1916 ((-393 |#1|) |#1|)) (-15 -3450 ((-393 |#1|) |#1|)) (-15 -2567 ((-393 |#1|) |#1|)) (-15 -2839 ((-3 |#1| "failed") |#1|)))
-((-1647 (($) 9)) (-1321 (((-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 29)) (-2966 (((-588 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) $) 26)) (-4095 (($ (-2 (|:| -2530 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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"))))))) 23)) (-3749 (($ (-588 (-2 (|:| -2530 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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")))))))) 21)) (-3048 (((-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 33)) (-1525 (((-588 (-2 (|:| -2530 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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"))))))) $) 31)) (-2891 (((-1171)) 12)))
-(((-517) (-10 -8 (-15 -1647 ($)) (-15 -2891 ((-1171))) (-15 -2966 ((-588 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) $)) (-15 -3749 ($ (-588 (-2 (|:| -2530 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 -4095 ($ (-2 (|:| -2530 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 -1321 ((-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1525 ((-588 (-2 (|:| -2530 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 -3048 ((-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))) (T -517))
-((-3048 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 (-517)))) (-1525 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| -2530 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 (-517)))) (-1321 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 (-517)))) (-4095 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2530 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 (-517)))) (-3749 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -2530 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 (-517)))) (-2966 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-5 *1 (-517)))) (-2891 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-517)))) (-1647 (*1 *1) (-5 *1 (-517))))
-(-10 -8 (-15 -1647 ($)) (-15 -2891 ((-1171))) (-15 -2966 ((-588 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) $)) (-15 -3749 ($ (-588 (-2 (|:| -2530 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 -4095 ($ (-2 (|:| -2530 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 -1321 ((-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1525 ((-588 (-2 (|:| -2530 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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 -3048 ((-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2386 (-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))
-((-1282 (((-1081 (-382 (-1081 |#2|))) |#2| (-561 |#2|) (-561 |#2|) (-1081 |#2|)) 28)) (-1469 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|))) 96) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|) |#2| (-1081 |#2|)) 106)) (-3089 (((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|))) 78) (((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) |#2| (-1081 |#2|)) 50)) (-3776 (((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2| (-561 |#2|) |#2| (-382 (-1081 |#2|))) 85) (((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2| |#2| (-1081 |#2|)) 105)) (-3259 (((-3 |#2| "failed") |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)) (-561 |#2|) |#2| (-382 (-1081 |#2|))) 101) (((-3 |#2| "failed") |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)) |#2| (-1081 |#2|)) 107)) (-1435 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3855 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|))) 124 (|has| |#3| (-598 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3855 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) |#2| (-1081 |#2|)) 123 (|has| |#3| (-598 |#2|)))) (-4073 ((|#2| (-1081 (-382 (-1081 |#2|))) (-561 |#2|) |#2|) 48)) (-3849 (((-1081 (-382 (-1081 |#2|))) (-1081 |#2|) (-561 |#2|)) 27)))
-(((-518 |#1| |#2| |#3|) (-10 -7 (-15 -3089 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) |#2| (-1081 |#2|))) (-15 -3089 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -3776 ((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2| |#2| (-1081 |#2|))) (-15 -3776 ((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2| (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -1469 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|) |#2| (-1081 |#2|))) (-15 -1469 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -3259 ((-3 |#2| "failed") |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)) |#2| (-1081 |#2|))) (-15 -3259 ((-3 |#2| "failed") |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)) (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -1282 ((-1081 (-382 (-1081 |#2|))) |#2| (-561 |#2|) (-561 |#2|) (-1081 |#2|))) (-15 -4073 (|#2| (-1081 (-382 (-1081 |#2|))) (-561 |#2|) |#2|)) (-15 -3849 ((-1081 (-382 (-1081 |#2|))) (-1081 |#2|) (-561 |#2|))) (IF (|has| |#3| (-598 |#2|)) (PROGN (-15 -1435 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3855 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) |#2| (-1081 |#2|))) (-15 -1435 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3855 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|))))) |%noBranch|)) (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))) (-13 (-405 |#1|) (-27) (-1106)) (-1014)) (T -518))
-((-1435 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-561 *4)) (-5 *6 (-382 (-1081 *4))) (-4 *4 (-13 (-405 *7) (-27) (-1106))) (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4)))) (-5 *1 (-518 *7 *4 *3)) (-4 *3 (-598 *4)) (-4 *3 (-1014)))) (-1435 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-561 *4)) (-5 *6 (-1081 *4)) (-4 *4 (-13 (-405 *7) (-27) (-1106))) (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4)))) (-5 *1 (-518 *7 *4 *3)) (-4 *3 (-598 *4)) (-4 *3 (-1014)))) (-3849 (*1 *2 *3 *4) (-12 (-5 *4 (-561 *6)) (-4 *6 (-13 (-405 *5) (-27) (-1106))) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-1081 (-382 (-1081 *6)))) (-5 *1 (-518 *5 *6 *7)) (-5 *3 (-1081 *6)) (-4 *7 (-1014)))) (-4073 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1081 (-382 (-1081 *2)))) (-5 *4 (-561 *2)) (-4 *2 (-13 (-405 *5) (-27) (-1106))) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *1 (-518 *5 *2 *6)) (-4 *6 (-1014)))) (-1282 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-561 *3)) (-4 *3 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-1081 (-382 (-1081 *3)))) (-5 *1 (-518 *6 *3 *7)) (-5 *5 (-1081 *3)) (-4 *7 (-1014)))) (-3259 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-561 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1085))) (-5 *5 (-382 (-1081 *2))) (-4 *2 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *1 (-518 *6 *2 *7)) (-4 *7 (-1014)))) (-3259 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-561 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1085))) (-5 *5 (-1081 *2)) (-4 *2 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *1 (-518 *6 *2 *7)) (-4 *7 (-1014)))) (-1469 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-588 *3)) (-5 *6 (-382 (-1081 *3))) (-4 *3 (-13 (-405 *7) (-27) (-1106))) (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-518 *7 *3 *8)) (-4 *8 (-1014)))) (-1469 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-588 *3)) (-5 *6 (-1081 *3)) (-4 *3 (-13 (-405 *7) (-27) (-1106))) (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-518 *7 *3 *8)) (-4 *8 (-1014)))) (-3776 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-382 (-1081 *3))) (-4 *3 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| -1856 *3) (|:| |coeff| *3))) (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014)))) (-3776 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-1081 *3)) (-4 *3 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| -1856 *3) (|:| |coeff| *3))) (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014)))) (-3089 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-561 *3)) (-5 *5 (-382 (-1081 *3))) (-4 *3 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-539 *3)) (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014)))) (-3089 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-561 *3)) (-5 *5 (-1081 *3)) (-4 *3 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-539 *3)) (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014)))))
-(-10 -7 (-15 -3089 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) |#2| (-1081 |#2|))) (-15 -3089 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -3776 ((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2| |#2| (-1081 |#2|))) (-15 -3776 ((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2| (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -1469 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|) |#2| (-1081 |#2|))) (-15 -1469 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -3259 ((-3 |#2| "failed") |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)) |#2| (-1081 |#2|))) (-15 -3259 ((-3 |#2| "failed") |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)) (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -1282 ((-1081 (-382 (-1081 |#2|))) |#2| (-561 |#2|) (-561 |#2|) (-1081 |#2|))) (-15 -4073 (|#2| (-1081 (-382 (-1081 |#2|))) (-561 |#2|) |#2|)) (-15 -3849 ((-1081 (-382 (-1081 |#2|))) (-1081 |#2|) (-561 |#2|))) (IF (|has| |#3| (-598 |#2|)) (PROGN (-15 -1435 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3855 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) |#2| (-1081 |#2|))) (-15 -1435 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3855 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|))))) |%noBranch|))
-((-2362 (((-522) (-522) (-708)) 66)) (-4153 (((-522) (-522)) 65)) (-3460 (((-522) (-522)) 64)) (-1339 (((-522) (-522)) 69)) (-3735 (((-522) (-522) (-522)) 49)) (-2531 (((-522) (-522) (-522)) 46)) (-1532 (((-382 (-522)) (-522)) 20)) (-2912 (((-522) (-522)) 21)) (-4050 (((-522) (-522)) 58)) (-3475 (((-522) (-522)) 32)) (-2504 (((-588 (-522)) (-522)) 63)) (-1257 (((-522) (-522) (-522) (-522) (-522)) 44)) (-1763 (((-382 (-522)) (-522)) 41)))
-(((-519) (-10 -7 (-15 -1763 ((-382 (-522)) (-522))) (-15 -1257 ((-522) (-522) (-522) (-522) (-522))) (-15 -2504 ((-588 (-522)) (-522))) (-15 -3475 ((-522) (-522))) (-15 -4050 ((-522) (-522))) (-15 -2912 ((-522) (-522))) (-15 -1532 ((-382 (-522)) (-522))) (-15 -2531 ((-522) (-522) (-522))) (-15 -3735 ((-522) (-522) (-522))) (-15 -1339 ((-522) (-522))) (-15 -3460 ((-522) (-522))) (-15 -4153 ((-522) (-522))) (-15 -2362 ((-522) (-522) (-708))))) (T -519))
-((-2362 (*1 *2 *2 *3) (-12 (-5 *2 (-522)) (-5 *3 (-708)) (-5 *1 (-519)))) (-4153 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-3460 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-1339 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-3735 (*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-2531 (*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-1532 (*1 *2 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-519)) (-5 *3 (-522)))) (-2912 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-4050 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-3475 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-2504 (*1 *2 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-519)) (-5 *3 (-522)))) (-1257 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-1763 (*1 *2 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-519)) (-5 *3 (-522)))))
-(-10 -7 (-15 -1763 ((-382 (-522)) (-522))) (-15 -1257 ((-522) (-522) (-522) (-522) (-522))) (-15 -2504 ((-588 (-522)) (-522))) (-15 -3475 ((-522) (-522))) (-15 -4050 ((-522) (-522))) (-15 -2912 ((-522) (-522))) (-15 -1532 ((-382 (-522)) (-522))) (-15 -2531 ((-522) (-522) (-522))) (-15 -3735 ((-522) (-522) (-522))) (-15 -1339 ((-522) (-522))) (-15 -3460 ((-522) (-522))) (-15 -4153 ((-522) (-522))) (-15 -2362 ((-522) (-522) (-708))))
-((-1370 (((-2 (|:| |answer| |#4|) (|:| -3434 |#4|)) |#4| (-1 |#2| |#2|)) 52)))
-(((-520 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1370 ((-2 (|:| |answer| |#4|) (|:| -3434 |#4|)) |#4| (-1 |#2| |#2|)))) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|)) (T -520))
-((-1370 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338)) (-4 *7 (-1142 (-382 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -3434 *3))) (-5 *1 (-520 *5 *6 *7 *3)) (-4 *3 (-317 *5 *6 *7)))))
-(-10 -7 (-15 -1370 ((-2 (|:| |answer| |#4|) (|:| -3434 |#4|)) |#4| (-1 |#2| |#2|))))
-((-1370 (((-2 (|:| |answer| (-382 |#2|)) (|:| -3434 (-382 |#2|)) (|:| |specpart| (-382 |#2|)) (|:| |polypart| |#2|)) (-382 |#2|) (-1 |#2| |#2|)) 18)))
-(((-521 |#1| |#2|) (-10 -7 (-15 -1370 ((-2 (|:| |answer| (-382 |#2|)) (|:| -3434 (-382 |#2|)) (|:| |specpart| (-382 |#2|)) (|:| |polypart| |#2|)) (-382 |#2|) (-1 |#2| |#2|)))) (-338) (-1142 |#1|)) (T -521))
-((-1370 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| |answer| (-382 *6)) (|:| -3434 (-382 *6)) (|:| |specpart| (-382 *6)) (|:| |polypart| *6))) (-5 *1 (-521 *5 *6)) (-5 *3 (-382 *6)))))
-(-10 -7 (-15 -1370 ((-2 (|:| |answer| (-382 |#2|)) (|:| -3434 (-382 |#2|)) (|:| |specpart| (-382 |#2|)) (|:| |polypart| |#2|)) (-382 |#2|) (-1 |#2| |#2|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 25)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 86)) (-2022 (($ $) 87)) (-3739 (((-108) $) NIL)) (-3871 (($ $ $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3481 (($ $ $ $) 42)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL)) (-1662 (($ $ $) 80)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL)) (-1484 (((-522) $) NIL)) (-2277 (($ $ $) 79)) (-2096 (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 60) (((-628 (-522)) (-628 $)) 57)) (-2682 (((-3 $ "failed") $) 83)) (-1664 (((-3 (-382 (-522)) "failed") $) NIL)) (-1770 (((-108) $) NIL)) (-1492 (((-382 (-522)) $) NIL)) (-3255 (($) 62) (($ $) 63)) (-2254 (($ $ $) 78)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-2676 (($ $ $ $) NIL)) (-2339 (($ $ $) 54)) (-3687 (((-108) $) NIL)) (-3219 (($ $ $) NIL)) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL)) (-2782 (((-108) $) 26)) (-2591 (((-108) $) 73)) (-3004 (((-3 $ "failed") $) NIL)) (-2556 (((-108) $) 34)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1335 (($ $ $ $) 43)) (-2814 (($ $ $) 75)) (-2446 (($ $ $) 74)) (-3893 (($ $) NIL)) (-2517 (($ $) 40)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) 53)) (-2341 (($ $ $) NIL)) (-3802 (($) NIL T CONST)) (-2957 (($ $) 31)) (-4151 (((-1032) $) NIL) (($ $) 33)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 117)) (-2259 (($ $ $) 84) (($ (-588 $)) NIL)) (-2868 (($ $) NIL)) (-1916 (((-393 $) $) 103)) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL)) (-2232 (((-3 $ "failed") $ $) 82)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1263 (((-108) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 77)) (-2157 (($ $ (-708)) NIL) (($ $) NIL)) (-3056 (($ $) 32)) (-2404 (($ $) 30)) (-1431 (((-522) $) 39) (((-498) $) 51) (((-821 (-522)) $) NIL) (((-354) $) 46) (((-202) $) 48) (((-1068) $) 52)) (-2190 (((-792) $) 37) (($ (-522)) 38) (($ $) NIL) (($ (-522)) 38)) (-2323 (((-708)) NIL)) (-3558 (((-108) $ $) NIL)) (-1480 (($ $ $) NIL)) (-3355 (($) 29)) (-3958 (((-108) $ $) NIL)) (-4004 (($ $ $ $) 41)) (-2241 (($ $) 61)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 27 T CONST)) (-3577 (($) 28 T CONST)) (-4149 (((-1068) $) 20) (((-1068) $ (-108)) 22) (((-1171) (-759) $) 23) (((-1171) (-759) $ (-108)) 24)) (-2213 (($ $ (-708)) NIL) (($ $) NIL)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 64)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 65)) (-1612 (($ $) 66) (($ $ $) 68)) (-1602 (($ $ $) 67)) (** (($ $ (-850)) NIL) (($ $ (-708)) 72)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 70) (($ $ $) 69)))
-(((-522) (-13 (-507) (-563 (-1068)) (-765) (-10 -8 (-15 -3255 ($ $)) (-6 -4225) (-6 -4230) (-6 -4226) (-6 -4220)))) (T -522))
-((-3255 (*1 *1 *1) (-5 *1 (-522))))
-(-13 (-507) (-563 (-1068)) (-765) (-10 -8 (-15 -3255 ($ $)) (-6 -4225) (-6 -4230) (-6 -4226) (-6 -4220)))
-((-1798 (((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))) (-706) (-983)) 103) (((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))) (-706)) 105)) (-1858 (((-3 (-960) "failed") (-291 (-354)) (-1007 (-777 (-354))) (-1085)) 168) (((-3 (-960) "failed") (-291 (-354)) (-1007 (-777 (-354))) (-1068)) 167) (((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354) (-354) (-983)) 173) (((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354) (-354)) 174) (((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354)) 175) (((-960) (-291 (-354)) (-588 (-1009 (-777 (-354))))) 176) (((-960) (-291 (-354)) (-1009 (-777 (-354)))) 163) (((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354)) 162) (((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354) (-354)) 158) (((-960) (-706)) 150) (((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354) (-354) (-983)) 157)))
-(((-523) (-10 -7 (-15 -1858 ((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354) (-354) (-983))) (-15 -1858 ((-960) (-706))) (-15 -1858 ((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354) (-354))) (-15 -1858 ((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354))) (-15 -1858 ((-960) (-291 (-354)) (-1009 (-777 (-354))))) (-15 -1858 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))))) (-15 -1858 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354))) (-15 -1858 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354) (-354))) (-15 -1858 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354) (-354) (-983))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))) (-706))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))) (-706) (-983))) (-15 -1858 ((-3 (-960) "failed") (-291 (-354)) (-1007 (-777 (-354))) (-1068))) (-15 -1858 ((-3 (-960) "failed") (-291 (-354)) (-1007 (-777 (-354))) (-1085))))) (T -523))
-((-1858 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-291 (-354))) (-5 *4 (-1007 (-777 (-354)))) (-5 *5 (-1085)) (-5 *2 (-960)) (-5 *1 (-523)))) (-1858 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-291 (-354))) (-5 *4 (-1007 (-777 (-354)))) (-5 *5 (-1068)) (-5 *2 (-960)) (-5 *1 (-523)))) (-1798 (*1 *2 *3 *4) (-12 (-5 *3 (-706)) (-5 *4 (-983)) (-5 *2 (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960)))) (-5 *1 (-523)))) (-1798 (*1 *2 *3) (-12 (-5 *3 (-706)) (-5 *2 (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960)))) (-5 *1 (-523)))) (-1858 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354))))) (-5 *5 (-354)) (-5 *6 (-983)) (-5 *2 (-960)) (-5 *1 (-523)))) (-1858 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354))))) (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523)))) (-1858 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354))))) (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523)))) (-1858 (*1 *2 *3 *4) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354))))) (-5 *2 (-960)) (-5 *1 (-523)))) (-1858 (*1 *2 *3 *4) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354)))) (-5 *2 (-960)) (-5 *1 (-523)))) (-1858 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354)))) (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523)))) (-1858 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354)))) (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523)))) (-1858 (*1 *2 *3) (-12 (-5 *3 (-706)) (-5 *2 (-960)) (-5 *1 (-523)))) (-1858 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354)))) (-5 *5 (-354)) (-5 *6 (-983)) (-5 *2 (-960)) (-5 *1 (-523)))))
-(-10 -7 (-15 -1858 ((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354) (-354) (-983))) (-15 -1858 ((-960) (-706))) (-15 -1858 ((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354) (-354))) (-15 -1858 ((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354))) (-15 -1858 ((-960) (-291 (-354)) (-1009 (-777 (-354))))) (-15 -1858 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))))) (-15 -1858 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354))) (-15 -1858 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354) (-354))) (-15 -1858 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354) (-354) (-983))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))) (-706))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))) (-706) (-983))) (-15 -1858 ((-3 (-960) "failed") (-291 (-354)) (-1007 (-777 (-354))) (-1068))) (-15 -1858 ((-3 (-960) "failed") (-291 (-354)) (-1007 (-777 (-354))) (-1085))))
-((-2672 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|)) 181)) (-3572 (((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|)) 99)) (-3235 (((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2|) 177)) (-3743 (((-3 |#2| "failed") |#2| |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085))) 186)) (-2610 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3855 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) (-1085)) 194 (|has| |#3| (-598 |#2|)))))
-(((-524 |#1| |#2| |#3|) (-10 -7 (-15 -3572 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|))) (-15 -3235 ((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2|)) (-15 -2672 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|))) (-15 -3743 ((-3 |#2| "failed") |#2| |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)))) (IF (|has| |#3| (-598 |#2|)) (-15 -2610 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3855 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) (-1085))) |%noBranch|)) (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))) (-13 (-405 |#1|) (-27) (-1106)) (-1014)) (T -524))
-((-2610 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-561 *4)) (-5 *6 (-1085)) (-4 *4 (-13 (-405 *7) (-27) (-1106))) (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4)))) (-5 *1 (-524 *7 *4 *3)) (-4 *3 (-598 *4)) (-4 *3 (-1014)))) (-3743 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-561 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1085))) (-4 *2 (-13 (-405 *5) (-27) (-1106))) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *1 (-524 *5 *2 *6)) (-4 *6 (-1014)))) (-2672 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-588 *3)) (-4 *3 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-524 *6 *3 *7)) (-4 *7 (-1014)))) (-3235 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-561 *3)) (-4 *3 (-13 (-405 *5) (-27) (-1106))) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| -1856 *3) (|:| |coeff| *3))) (-5 *1 (-524 *5 *3 *6)) (-4 *6 (-1014)))) (-3572 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-561 *3)) (-4 *3 (-13 (-405 *5) (-27) (-1106))) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-539 *3)) (-5 *1 (-524 *5 *3 *6)) (-4 *6 (-1014)))))
-(-10 -7 (-15 -3572 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|))) (-15 -3235 ((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2|)) (-15 -2672 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|))) (-15 -3743 ((-3 |#2| "failed") |#2| |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)))) (IF (|has| |#3| (-598 |#2|)) (-15 -2610 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3855 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) (-1085))) |%noBranch|))
-((-2088 (((-2 (|:| -2286 |#2|) (|:| |nconst| |#2|)) |#2| (-1085)) 62)) (-1660 (((-3 |#2| "failed") |#2| (-1085) (-777 |#2|) (-777 |#2|)) 159 (-12 (|has| |#2| (-1049)) (|has| |#1| (-563 (-821 (-522)))) (|has| |#1| (-815 (-522))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085)) 133 (-12 (|has| |#2| (-574)) (|has| |#1| (-563 (-821 (-522)))) (|has| |#1| (-815 (-522)))))) (-2443 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085)) 142 (-12 (|has| |#2| (-574)) (|has| |#1| (-563 (-821 (-522)))) (|has| |#1| (-815 (-522)))))))
-(((-525 |#1| |#2|) (-10 -7 (-15 -2088 ((-2 (|:| -2286 |#2|) (|:| |nconst| |#2|)) |#2| (-1085))) (IF (|has| |#1| (-563 (-821 (-522)))) (IF (|has| |#1| (-815 (-522))) (PROGN (IF (|has| |#2| (-574)) (PROGN (-15 -2443 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085))) (-15 -1660 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085)))) |%noBranch|) (IF (|has| |#2| (-1049)) (-15 -1660 ((-3 |#2| "failed") |#2| (-1085) (-777 |#2|) (-777 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-784) (-962 (-522)) (-426) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -525))
-((-1660 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1085)) (-5 *4 (-777 *2)) (-4 *2 (-1049)) (-4 *2 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-563 (-821 (-522)))) (-4 *5 (-815 (-522))) (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522)))) (-5 *1 (-525 *5 *2)))) (-1660 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1085)) (-4 *5 (-563 (-821 (-522)))) (-4 *5 (-815 (-522))) (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-525 *5 *3)) (-4 *3 (-574)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-2443 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1085)) (-4 *5 (-563 (-821 (-522)))) (-4 *5 (-815 (-522))) (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-525 *5 *3)) (-4 *3 (-574)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-2088 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522)))) (-5 *2 (-2 (|:| -2286 *3) (|:| |nconst| *3))) (-5 *1 (-525 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
-(-10 -7 (-15 -2088 ((-2 (|:| -2286 |#2|) (|:| |nconst| |#2|)) |#2| (-1085))) (IF (|has| |#1| (-563 (-821 (-522)))) (IF (|has| |#1| (-815 (-522))) (PROGN (IF (|has| |#2| (-574)) (PROGN (-15 -2443 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085))) (-15 -1660 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085)))) |%noBranch|) (IF (|has| |#2| (-1049)) (-15 -1660 ((-3 |#2| "failed") |#2| (-1085) (-777 |#2|) (-777 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-1251 (((-3 (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|)))))) "failed") (-382 |#2|) (-588 (-382 |#2|))) 39)) (-1858 (((-539 (-382 |#2|)) (-382 |#2|)) 27)) (-3733 (((-3 (-382 |#2|) "failed") (-382 |#2|)) 16)) (-1896 (((-3 (-2 (|:| -1856 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-382 |#2|)) 46)))
-(((-526 |#1| |#2|) (-10 -7 (-15 -1858 ((-539 (-382 |#2|)) (-382 |#2|))) (-15 -3733 ((-3 (-382 |#2|) "failed") (-382 |#2|))) (-15 -1896 ((-3 (-2 (|:| -1856 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-382 |#2|))) (-15 -1251 ((-3 (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|)))))) "failed") (-382 |#2|) (-588 (-382 |#2|))))) (-13 (-338) (-135) (-962 (-522))) (-1142 |#1|)) (T -526))
-((-1251 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-588 (-382 *6))) (-5 *3 (-382 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-526 *5 *6)))) (-1896 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-338) (-135) (-962 (-522)))) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| -1856 (-382 *5)) (|:| |coeff| (-382 *5)))) (-5 *1 (-526 *4 *5)) (-5 *3 (-382 *5)))) (-3733 (*1 *2 *2) (|partial| -12 (-5 *2 (-382 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-13 (-338) (-135) (-962 (-522)))) (-5 *1 (-526 *3 *4)))) (-1858 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-135) (-962 (-522)))) (-4 *5 (-1142 *4)) (-5 *2 (-539 (-382 *5))) (-5 *1 (-526 *4 *5)) (-5 *3 (-382 *5)))))
-(-10 -7 (-15 -1858 ((-539 (-382 |#2|)) (-382 |#2|))) (-15 -3733 ((-3 (-382 |#2|) "failed") (-382 |#2|))) (-15 -1896 ((-3 (-2 (|:| -1856 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-382 |#2|))) (-15 -1251 ((-3 (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|)))))) "failed") (-382 |#2|) (-588 (-382 |#2|)))))
-((-2441 (((-3 (-522) "failed") |#1|) 14)) (-3096 (((-108) |#1|) 13)) (-1509 (((-522) |#1|) 9)))
-(((-527 |#1|) (-10 -7 (-15 -1509 ((-522) |#1|)) (-15 -3096 ((-108) |#1|)) (-15 -2441 ((-3 (-522) "failed") |#1|))) (-962 (-522))) (T -527))
-((-2441 (*1 *2 *3) (|partial| -12 (-5 *2 (-522)) (-5 *1 (-527 *3)) (-4 *3 (-962 *2)))) (-3096 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-527 *3)) (-4 *3 (-962 (-522))))) (-1509 (*1 *2 *3) (-12 (-5 *2 (-522)) (-5 *1 (-527 *3)) (-4 *3 (-962 *2)))))
-(-10 -7 (-15 -1509 ((-522) |#1|)) (-15 -3096 ((-108) |#1|)) (-15 -2441 ((-3 (-522) "failed") |#1|)))
-((-3919 (((-3 (-2 (|:| |mainpart| (-382 (-881 |#1|))) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 (-881 |#1|))) (|:| |logand| (-382 (-881 |#1|))))))) "failed") (-382 (-881 |#1|)) (-1085) (-588 (-382 (-881 |#1|)))) 43)) (-3113 (((-539 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-1085)) 25)) (-2951 (((-3 (-382 (-881 |#1|)) "failed") (-382 (-881 |#1|)) (-1085)) 20)) (-2344 (((-3 (-2 (|:| -1856 (-382 (-881 |#1|))) (|:| |coeff| (-382 (-881 |#1|)))) "failed") (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|))) 32)))
-(((-528 |#1|) (-10 -7 (-15 -3113 ((-539 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-1085))) (-15 -2951 ((-3 (-382 (-881 |#1|)) "failed") (-382 (-881 |#1|)) (-1085))) (-15 -3919 ((-3 (-2 (|:| |mainpart| (-382 (-881 |#1|))) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 (-881 |#1|))) (|:| |logand| (-382 (-881 |#1|))))))) "failed") (-382 (-881 |#1|)) (-1085) (-588 (-382 (-881 |#1|))))) (-15 -2344 ((-3 (-2 (|:| -1856 (-382 (-881 |#1|))) (|:| |coeff| (-382 (-881 |#1|)))) "failed") (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|))))) (-13 (-514) (-962 (-522)) (-135))) (T -528))
-((-2344 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-962 (-522)) (-135))) (-5 *2 (-2 (|:| -1856 (-382 (-881 *5))) (|:| |coeff| (-382 (-881 *5))))) (-5 *1 (-528 *5)) (-5 *3 (-382 (-881 *5))))) (-3919 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-588 (-382 (-881 *6)))) (-5 *3 (-382 (-881 *6))) (-4 *6 (-13 (-514) (-962 (-522)) (-135))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-528 *6)))) (-2951 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-382 (-881 *4))) (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-962 (-522)) (-135))) (-5 *1 (-528 *4)))) (-3113 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-962 (-522)) (-135))) (-5 *2 (-539 (-382 (-881 *5)))) (-5 *1 (-528 *5)) (-5 *3 (-382 (-881 *5))))))
-(-10 -7 (-15 -3113 ((-539 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-1085))) (-15 -2951 ((-3 (-382 (-881 |#1|)) "failed") (-382 (-881 |#1|)) (-1085))) (-15 -3919 ((-3 (-2 (|:| |mainpart| (-382 (-881 |#1|))) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 (-881 |#1|))) (|:| |logand| (-382 (-881 |#1|))))))) "failed") (-382 (-881 |#1|)) (-1085) (-588 (-382 (-881 |#1|))))) (-15 -2344 ((-3 (-2 (|:| -1856 (-382 (-881 |#1|))) (|:| |coeff| (-382 (-881 |#1|)))) "failed") (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|)))))
-((-1416 (((-108) $ $) 59)) (-2250 (((-108) $) 36)) (-2645 ((|#1| $) 30)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) 63)) (-2908 (($ $) 123)) (-2772 (($ $) 103)) (-1210 ((|#1| $) 28)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1929 (($ $) NIL)) (-2884 (($ $) 125)) (-2748 (($ $) 99)) (-2930 (($ $) 127)) (-2794 (($ $) 107)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) 78)) (-1484 (((-522) $) 80)) (-2682 (((-3 $ "failed") $) 62)) (-2153 (($ |#1| |#1|) 26)) (-3687 (((-108) $) 33)) (-2838 (($) 89)) (-2782 (((-108) $) 43)) (-1504 (($ $ (-522)) NIL)) (-2556 (((-108) $) 34)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-1254 (($ $) 91)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-1514 (($ |#1| |#1|) 20) (($ |#1|) 25) (($ (-382 (-522))) 77)) (-3136 ((|#1| $) 27)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) 65) (($ (-588 $)) NIL)) (-2232 (((-3 $ "failed") $ $) 64)) (-3266 (($ $) 93)) (-1738 (($ $) 131)) (-2804 (($ $) 105)) (-2919 (($ $) 133)) (-2784 (($ $) 109)) (-2896 (($ $) 129)) (-2761 (($ $) 101)) (-2875 (((-108) $ |#1|) 31)) (-2190 (((-792) $) 85) (($ (-522)) 67) (($ $) NIL) (($ (-522)) 67)) (-2323 (((-708)) 87)) (-1759 (($ $) 145)) (-2836 (($ $) 115)) (-3958 (((-108) $ $) NIL)) (-1745 (($ $) 143)) (-2815 (($ $) 111)) (-1776 (($ $) 141)) (-2860 (($ $) 121)) (-3924 (($ $) 139)) (-2872 (($ $) 119)) (-1768 (($ $) 137)) (-2848 (($ $) 117)) (-1752 (($ $) 135)) (-2825 (($ $) 113)) (-3510 (($ $ (-850)) 55) (($ $ (-708)) NIL)) (-3566 (($) 21 T CONST)) (-3577 (($) 10 T CONST)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 37)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 35)) (-1612 (($ $) 41) (($ $ $) 42)) (-1602 (($ $ $) 40)) (** (($ $ (-850)) 54) (($ $ (-708)) NIL) (($ $ $) 95) (($ $ (-382 (-522))) 147)) (* (($ (-850) $) 51) (($ (-708) $) NIL) (($ (-522) $) 50) (($ $ $) 48)))
+((-2120 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1085) (-588 |#2|)) 35)) (-3817 (((-539 |#2|) |#2| (-1085)) 58)) (-3312 (((-3 |#2| "failed") |#2| (-1085)) 149)) (-3912 (((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1085) (-561 |#2|) (-588 (-561 |#2|))) 152)) (-2192 (((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1085) |#2|) 38)))
+(((-515 |#1| |#2|) (-10 -7 (-15 -2192 ((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1085) |#2|)) (-15 -2120 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1085) (-588 |#2|))) (-15 -3312 ((-3 |#2| "failed") |#2| (-1085))) (-15 -3817 ((-539 |#2|) |#2| (-1085))) (-15 -3912 ((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1085) (-561 |#2|) (-588 (-561 |#2|))))) (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -515))
+((-3912 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1085)) (-5 *6 (-588 (-561 *3))) (-5 *5 (-561 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *7))) (-4 *7 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-2 (|:| -2585 *3) (|:| |coeff| *3))) (-5 *1 (-515 *7 *3)))) (-3817 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-539 *3)) (-5 *1 (-515 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-3312 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *1 (-515 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))) (-2120 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-588 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-515 *6 *3)))) (-2192 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1085)) (-4 *5 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *2 (-2 (|:| -2585 *3) (|:| |coeff| *3))) (-5 *1 (-515 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
+(-10 -7 (-15 -2192 ((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1085) |#2|)) (-15 -2120 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1085) (-588 |#2|))) (-15 -3312 ((-3 |#2| "failed") |#2| (-1085))) (-15 -3817 ((-539 |#2|) |#2| (-1085))) (-15 -3912 ((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1085) (-561 |#2|) (-588 (-561 |#2|)))))
+((-3133 (((-393 |#1|) |#1|) 18)) (-2006 (((-393 |#1|) |#1|) 33)) (-2913 (((-3 |#1| "failed") |#1|) 44)) (-3863 (((-393 |#1|) |#1|) 51)))
+(((-516 |#1|) (-10 -7 (-15 -2006 ((-393 |#1|) |#1|)) (-15 -3133 ((-393 |#1|) |#1|)) (-15 -3863 ((-393 |#1|) |#1|)) (-15 -2913 ((-3 |#1| "failed") |#1|))) (-507)) (T -516))
+((-2913 (*1 *2 *2) (|partial| -12 (-5 *1 (-516 *2)) (-4 *2 (-507)))) (-3863 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-516 *3)) (-4 *3 (-507)))) (-3133 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-516 *3)) (-4 *3 (-507)))) (-2006 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-516 *3)) (-4 *3 (-507)))))
+(-10 -7 (-15 -2006 ((-393 |#1|) |#1|)) (-15 -3133 ((-393 |#1|) |#1|)) (-15 -3863 ((-393 |#1|) |#1|)) (-15 -2913 ((-3 |#1| "failed") |#1|)))
+((-2355 (($) 9)) (-1299 (((-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 29)) (-2562 (((-588 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) $) 26)) (-3365 (($ (-2 (|:| -2644 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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"))))))) 23)) (-3101 (($ (-588 (-2 (|:| -2644 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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")))))))) 21)) (-3149 (((-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 33)) (-1973 (((-588 (-2 (|:| -2644 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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"))))))) $) 31)) (-1447 (((-1171)) 12)))
+(((-517) (-10 -8 (-15 -2355 ($)) (-15 -1447 ((-1171))) (-15 -2562 ((-588 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) $)) (-15 -3101 ($ (-588 (-2 (|:| -2644 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 -3365 ($ (-2 (|:| -2644 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 -1299 ((-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1973 ((-588 (-2 (|:| -2644 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 -3149 ((-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))) (T -517))
+((-3149 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 (-517)))) (-1973 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| -2644 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 (-517)))) (-1299 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 (-517)))) (-3365 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2644 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 (-517)))) (-3101 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -2644 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 (-517)))) (-2562 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-5 *1 (-517)))) (-1447 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-517)))) (-2355 (*1 *1) (-5 *1 (-517))))
+(-10 -8 (-15 -2355 ($)) (-15 -1447 ((-1171))) (-15 -2562 ((-588 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) $)) (-15 -3101 ($ (-588 (-2 (|:| -2644 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 -3365 ($ (-2 (|:| -2644 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 -1299 ((-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1973 ((-588 (-2 (|:| -2644 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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 -3149 ((-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| (-1066 (-202))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2321 (-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| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))
+((-1264 (((-1081 (-382 (-1081 |#2|))) |#2| (-561 |#2|) (-561 |#2|) (-1081 |#2|)) 28)) (-2765 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|))) 96) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|) |#2| (-1081 |#2|)) 106)) (-3785 (((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|))) 78) (((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) |#2| (-1081 |#2|)) 50)) (-3308 (((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2| (-561 |#2|) |#2| (-382 (-1081 |#2|))) 85) (((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2| |#2| (-1081 |#2|)) 105)) (-1794 (((-3 |#2| "failed") |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)) (-561 |#2|) |#2| (-382 (-1081 |#2|))) 101) (((-3 |#2| "failed") |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)) |#2| (-1081 |#2|)) 107)) (-2374 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2905 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|))) 124 (|has| |#3| (-598 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2905 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) |#2| (-1081 |#2|)) 123 (|has| |#3| (-598 |#2|)))) (-3520 ((|#2| (-1081 (-382 (-1081 |#2|))) (-561 |#2|) |#2|) 48)) (-2142 (((-1081 (-382 (-1081 |#2|))) (-1081 |#2|) (-561 |#2|)) 27)))
+(((-518 |#1| |#2| |#3|) (-10 -7 (-15 -3785 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) |#2| (-1081 |#2|))) (-15 -3785 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -3308 ((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2| |#2| (-1081 |#2|))) (-15 -3308 ((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2| (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -2765 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|) |#2| (-1081 |#2|))) (-15 -2765 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -1794 ((-3 |#2| "failed") |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)) |#2| (-1081 |#2|))) (-15 -1794 ((-3 |#2| "failed") |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)) (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -1264 ((-1081 (-382 (-1081 |#2|))) |#2| (-561 |#2|) (-561 |#2|) (-1081 |#2|))) (-15 -3520 (|#2| (-1081 (-382 (-1081 |#2|))) (-561 |#2|) |#2|)) (-15 -2142 ((-1081 (-382 (-1081 |#2|))) (-1081 |#2|) (-561 |#2|))) (IF (|has| |#3| (-598 |#2|)) (PROGN (-15 -2374 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2905 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) |#2| (-1081 |#2|))) (-15 -2374 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2905 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|))))) |%noBranch|)) (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))) (-13 (-405 |#1|) (-27) (-1106)) (-1014)) (T -518))
+((-2374 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-561 *4)) (-5 *6 (-382 (-1081 *4))) (-4 *4 (-13 (-405 *7) (-27) (-1106))) (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4)))) (-5 *1 (-518 *7 *4 *3)) (-4 *3 (-598 *4)) (-4 *3 (-1014)))) (-2374 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-561 *4)) (-5 *6 (-1081 *4)) (-4 *4 (-13 (-405 *7) (-27) (-1106))) (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4)))) (-5 *1 (-518 *7 *4 *3)) (-4 *3 (-598 *4)) (-4 *3 (-1014)))) (-2142 (*1 *2 *3 *4) (-12 (-5 *4 (-561 *6)) (-4 *6 (-13 (-405 *5) (-27) (-1106))) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-1081 (-382 (-1081 *6)))) (-5 *1 (-518 *5 *6 *7)) (-5 *3 (-1081 *6)) (-4 *7 (-1014)))) (-3520 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1081 (-382 (-1081 *2)))) (-5 *4 (-561 *2)) (-4 *2 (-13 (-405 *5) (-27) (-1106))) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *1 (-518 *5 *2 *6)) (-4 *6 (-1014)))) (-1264 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-561 *3)) (-4 *3 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-1081 (-382 (-1081 *3)))) (-5 *1 (-518 *6 *3 *7)) (-5 *5 (-1081 *3)) (-4 *7 (-1014)))) (-1794 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-561 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1085))) (-5 *5 (-382 (-1081 *2))) (-4 *2 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *1 (-518 *6 *2 *7)) (-4 *7 (-1014)))) (-1794 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-561 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1085))) (-5 *5 (-1081 *2)) (-4 *2 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *1 (-518 *6 *2 *7)) (-4 *7 (-1014)))) (-2765 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-588 *3)) (-5 *6 (-382 (-1081 *3))) (-4 *3 (-13 (-405 *7) (-27) (-1106))) (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-518 *7 *3 *8)) (-4 *8 (-1014)))) (-2765 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-588 *3)) (-5 *6 (-1081 *3)) (-4 *3 (-13 (-405 *7) (-27) (-1106))) (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-518 *7 *3 *8)) (-4 *8 (-1014)))) (-3308 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-382 (-1081 *3))) (-4 *3 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| -2585 *3) (|:| |coeff| *3))) (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014)))) (-3308 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-1081 *3)) (-4 *3 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| -2585 *3) (|:| |coeff| *3))) (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014)))) (-3785 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-561 *3)) (-5 *5 (-382 (-1081 *3))) (-4 *3 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-539 *3)) (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014)))) (-3785 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-561 *3)) (-5 *5 (-1081 *3)) (-4 *3 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-539 *3)) (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014)))))
+(-10 -7 (-15 -3785 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) |#2| (-1081 |#2|))) (-15 -3785 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -3308 ((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2| |#2| (-1081 |#2|))) (-15 -3308 ((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2| (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -2765 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|) |#2| (-1081 |#2|))) (-15 -2765 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -1794 ((-3 |#2| "failed") |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)) |#2| (-1081 |#2|))) (-15 -1794 ((-3 |#2| "failed") |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)) (-561 |#2|) |#2| (-382 (-1081 |#2|)))) (-15 -1264 ((-1081 (-382 (-1081 |#2|))) |#2| (-561 |#2|) (-561 |#2|) (-1081 |#2|))) (-15 -3520 (|#2| (-1081 (-382 (-1081 |#2|))) (-561 |#2|) |#2|)) (-15 -2142 ((-1081 (-382 (-1081 |#2|))) (-1081 |#2|) (-561 |#2|))) (IF (|has| |#3| (-598 |#2|)) (PROGN (-15 -2374 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2905 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) |#2| (-1081 |#2|))) (-15 -2374 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2905 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) (-561 |#2|) |#2| (-382 (-1081 |#2|))))) |%noBranch|))
+((-2001 (((-522) (-522) (-708)) 66)) (-2841 (((-522) (-522)) 65)) (-3205 (((-522) (-522)) 64)) (-3334 (((-522) (-522)) 69)) (-2963 (((-522) (-522) (-522)) 49)) (-2240 (((-522) (-522) (-522)) 46)) (-2031 (((-382 (-522)) (-522)) 20)) (-1644 (((-522) (-522)) 21)) (-3014 (((-522) (-522)) 58)) (-3322 (((-522) (-522)) 32)) (-2027 (((-588 (-522)) (-522)) 63)) (-2546 (((-522) (-522) (-522) (-522) (-522)) 44)) (-3469 (((-382 (-522)) (-522)) 41)))
+(((-519) (-10 -7 (-15 -3469 ((-382 (-522)) (-522))) (-15 -2546 ((-522) (-522) (-522) (-522) (-522))) (-15 -2027 ((-588 (-522)) (-522))) (-15 -3322 ((-522) (-522))) (-15 -3014 ((-522) (-522))) (-15 -1644 ((-522) (-522))) (-15 -2031 ((-382 (-522)) (-522))) (-15 -2240 ((-522) (-522) (-522))) (-15 -2963 ((-522) (-522) (-522))) (-15 -3334 ((-522) (-522))) (-15 -3205 ((-522) (-522))) (-15 -2841 ((-522) (-522))) (-15 -2001 ((-522) (-522) (-708))))) (T -519))
+((-2001 (*1 *2 *2 *3) (-12 (-5 *2 (-522)) (-5 *3 (-708)) (-5 *1 (-519)))) (-2841 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-3205 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-3334 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-2963 (*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-2240 (*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-2031 (*1 *2 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-519)) (-5 *3 (-522)))) (-1644 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-3014 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-3322 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-2027 (*1 *2 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-519)) (-5 *3 (-522)))) (-2546 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))) (-3469 (*1 *2 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-519)) (-5 *3 (-522)))))
+(-10 -7 (-15 -3469 ((-382 (-522)) (-522))) (-15 -2546 ((-522) (-522) (-522) (-522) (-522))) (-15 -2027 ((-588 (-522)) (-522))) (-15 -3322 ((-522) (-522))) (-15 -3014 ((-522) (-522))) (-15 -1644 ((-522) (-522))) (-15 -2031 ((-382 (-522)) (-522))) (-15 -2240 ((-522) (-522) (-522))) (-15 -2963 ((-522) (-522) (-522))) (-15 -3334 ((-522) (-522))) (-15 -3205 ((-522) (-522))) (-15 -2841 ((-522) (-522))) (-15 -2001 ((-522) (-522) (-708))))
+((-3566 (((-2 (|:| |answer| |#4|) (|:| -3002 |#4|)) |#4| (-1 |#2| |#2|)) 52)))
+(((-520 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3566 ((-2 (|:| |answer| |#4|) (|:| -3002 |#4|)) |#4| (-1 |#2| |#2|)))) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|)) (T -520))
+((-3566 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338)) (-4 *7 (-1142 (-382 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -3002 *3))) (-5 *1 (-520 *5 *6 *7 *3)) (-4 *3 (-317 *5 *6 *7)))))
+(-10 -7 (-15 -3566 ((-2 (|:| |answer| |#4|) (|:| -3002 |#4|)) |#4| (-1 |#2| |#2|))))
+((-3566 (((-2 (|:| |answer| (-382 |#2|)) (|:| -3002 (-382 |#2|)) (|:| |specpart| (-382 |#2|)) (|:| |polypart| |#2|)) (-382 |#2|) (-1 |#2| |#2|)) 18)))
+(((-521 |#1| |#2|) (-10 -7 (-15 -3566 ((-2 (|:| |answer| (-382 |#2|)) (|:| -3002 (-382 |#2|)) (|:| |specpart| (-382 |#2|)) (|:| |polypart| |#2|)) (-382 |#2|) (-1 |#2| |#2|)))) (-338) (-1142 |#1|)) (T -521))
+((-3566 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| |answer| (-382 *6)) (|:| -3002 (-382 *6)) (|:| |specpart| (-382 *6)) (|:| |polypart| *6))) (-5 *1 (-521 *5 *6)) (-5 *3 (-382 *6)))))
+(-10 -7 (-15 -3566 ((-2 (|:| |answer| (-382 |#2|)) (|:| -3002 (-382 |#2|)) (|:| |specpart| (-382 |#2|)) (|:| |polypart| |#2|)) (-382 |#2|) (-1 |#2| |#2|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 25)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 86)) (-2298 (($ $) 87)) (-3007 (((-108) $) NIL)) (-1805 (($ $ $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3372 (($ $ $ $) 42)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL)) (-1736 (($ $ $) 80)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL)) (-1478 (((-522) $) NIL)) (-2333 (($ $ $) 79)) (-1226 (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 60) (((-628 (-522)) (-628 $)) 57)) (-3920 (((-3 $ "failed") $) 83)) (-2549 (((-3 (-382 (-522)) "failed") $) NIL)) (-3519 (((-108) $) NIL)) (-1699 (((-382 (-522)) $) NIL)) (-3344 (($) 62) (($ $) 63)) (-2303 (($ $ $) 78)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3859 (($ $ $ $) NIL)) (-1968 (($ $ $) 54)) (-3603 (((-108) $) NIL)) (-2634 (($ $ $) NIL)) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL)) (-2859 (((-108) $) 26)) (-3077 (((-108) $) 73)) (-4208 (((-3 $ "failed") $) NIL)) (-3740 (((-108) $) 34)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2037 (($ $ $ $) 43)) (-1308 (($ $ $) 75)) (-2524 (($ $ $) 74)) (-4000 (($ $) NIL)) (-4030 (($ $) 40)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) 53)) (-1988 (($ $ $) NIL)) (-3937 (($) NIL T CONST)) (-3092 (($ $) 31)) (-4174 (((-1032) $) NIL) (($ $) 33)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 117)) (-2308 (($ $ $) 84) (($ (-588 $)) NIL)) (-1274 (($ $) NIL)) (-2006 (((-393 $) $) 103)) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL)) (-2276 (((-3 $ "failed") $ $) 82)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2626 (((-108) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 77)) (-2731 (($ $ (-708)) NIL) (($ $) NIL)) (-3518 (($ $) 32)) (-2463 (($ $) 30)) (-3873 (((-522) $) 39) (((-498) $) 51) (((-821 (-522)) $) NIL) (((-354) $) 46) (((-202) $) 48) (((-1068) $) 52)) (-2217 (((-792) $) 37) (($ (-522)) 38) (($ $) NIL) (($ (-522)) 38)) (-2742 (((-708)) NIL)) (-1763 (((-108) $ $) NIL)) (-1591 (($ $ $) NIL)) (-1897 (($) 29)) (-1407 (((-108) $ $) NIL)) (-3673 (($ $ $ $) 41)) (-4126 (($ $) 61)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 27 T CONST)) (-3709 (($) 28 T CONST)) (-2810 (((-1068) $) 20) (((-1068) $ (-108)) 22) (((-1171) (-759) $) 23) (((-1171) (-759) $ (-108)) 24)) (-2252 (($ $ (-708)) NIL) (($ $) NIL)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 64)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 65)) (-1672 (($ $) 66) (($ $ $) 68)) (-1661 (($ $ $) 67)) (** (($ $ (-850)) NIL) (($ $ (-708)) 72)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 70) (($ $ $) 69)))
+(((-522) (-13 (-507) (-563 (-1068)) (-765) (-10 -8 (-15 -3344 ($ $)) (-6 -4225) (-6 -4230) (-6 -4226) (-6 -4220)))) (T -522))
+((-3344 (*1 *1 *1) (-5 *1 (-522))))
+(-13 (-507) (-563 (-1068)) (-765) (-10 -8 (-15 -3344 ($ $)) (-6 -4225) (-6 -4230) (-6 -4226) (-6 -4220)))
+((-1361 (((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))) (-706) (-983)) 103) (((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))) (-706)) 105)) (-2611 (((-3 (-960) "failed") (-291 (-354)) (-1007 (-777 (-354))) (-1085)) 168) (((-3 (-960) "failed") (-291 (-354)) (-1007 (-777 (-354))) (-1068)) 167) (((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354) (-354) (-983)) 173) (((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354) (-354)) 174) (((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354)) 175) (((-960) (-291 (-354)) (-588 (-1009 (-777 (-354))))) 176) (((-960) (-291 (-354)) (-1009 (-777 (-354)))) 163) (((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354)) 162) (((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354) (-354)) 158) (((-960) (-706)) 150) (((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354) (-354) (-983)) 157)))
+(((-523) (-10 -7 (-15 -2611 ((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354) (-354) (-983))) (-15 -2611 ((-960) (-706))) (-15 -2611 ((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354) (-354))) (-15 -2611 ((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354))) (-15 -2611 ((-960) (-291 (-354)) (-1009 (-777 (-354))))) (-15 -2611 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))))) (-15 -2611 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354))) (-15 -2611 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354) (-354))) (-15 -2611 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354) (-354) (-983))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))) (-706))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))) (-706) (-983))) (-15 -2611 ((-3 (-960) "failed") (-291 (-354)) (-1007 (-777 (-354))) (-1068))) (-15 -2611 ((-3 (-960) "failed") (-291 (-354)) (-1007 (-777 (-354))) (-1085))))) (T -523))
+((-2611 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-291 (-354))) (-5 *4 (-1007 (-777 (-354)))) (-5 *5 (-1085)) (-5 *2 (-960)) (-5 *1 (-523)))) (-2611 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-291 (-354))) (-5 *4 (-1007 (-777 (-354)))) (-5 *5 (-1068)) (-5 *2 (-960)) (-5 *1 (-523)))) (-1361 (*1 *2 *3 *4) (-12 (-5 *3 (-706)) (-5 *4 (-983)) (-5 *2 (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960)))) (-5 *1 (-523)))) (-1361 (*1 *2 *3) (-12 (-5 *3 (-706)) (-5 *2 (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960)))) (-5 *1 (-523)))) (-2611 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354))))) (-5 *5 (-354)) (-5 *6 (-983)) (-5 *2 (-960)) (-5 *1 (-523)))) (-2611 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354))))) (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523)))) (-2611 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354))))) (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523)))) (-2611 (*1 *2 *3 *4) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354))))) (-5 *2 (-960)) (-5 *1 (-523)))) (-2611 (*1 *2 *3 *4) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354)))) (-5 *2 (-960)) (-5 *1 (-523)))) (-2611 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354)))) (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523)))) (-2611 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354)))) (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523)))) (-2611 (*1 *2 *3) (-12 (-5 *3 (-706)) (-5 *2 (-960)) (-5 *1 (-523)))) (-2611 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354)))) (-5 *5 (-354)) (-5 *6 (-983)) (-5 *2 (-960)) (-5 *1 (-523)))))
+(-10 -7 (-15 -2611 ((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354) (-354) (-983))) (-15 -2611 ((-960) (-706))) (-15 -2611 ((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354) (-354))) (-15 -2611 ((-960) (-291 (-354)) (-1009 (-777 (-354))) (-354))) (-15 -2611 ((-960) (-291 (-354)) (-1009 (-777 (-354))))) (-15 -2611 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))))) (-15 -2611 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354))) (-15 -2611 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354) (-354))) (-15 -2611 ((-960) (-291 (-354)) (-588 (-1009 (-777 (-354)))) (-354) (-354) (-983))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))) (-706))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))) (-706) (-983))) (-15 -2611 ((-3 (-960) "failed") (-291 (-354)) (-1007 (-777 (-354))) (-1068))) (-15 -2611 ((-3 (-960) "failed") (-291 (-354)) (-1007 (-777 (-354))) (-1085))))
+((-3804 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|)) 181)) (-1874 (((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|)) 99)) (-2842 (((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2|) 177)) (-3051 (((-3 |#2| "failed") |#2| |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085))) 186)) (-3302 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2905 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) (-1085)) 194 (|has| |#3| (-598 |#2|)))))
+(((-524 |#1| |#2| |#3|) (-10 -7 (-15 -1874 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|))) (-15 -2842 ((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2|)) (-15 -3804 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|))) (-15 -3051 ((-3 |#2| "failed") |#2| |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)))) (IF (|has| |#3| (-598 |#2|)) (-15 -3302 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2905 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) (-1085))) |%noBranch|)) (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))) (-13 (-405 |#1|) (-27) (-1106)) (-1014)) (T -524))
+((-3302 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-561 *4)) (-5 *6 (-1085)) (-4 *4 (-13 (-405 *7) (-27) (-1106))) (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4)))) (-5 *1 (-524 *7 *4 *3)) (-4 *3 (-598 *4)) (-4 *3 (-1014)))) (-3051 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-561 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1085))) (-4 *2 (-13 (-405 *5) (-27) (-1106))) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *1 (-524 *5 *2 *6)) (-4 *6 (-1014)))) (-3804 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-588 *3)) (-4 *3 (-13 (-405 *6) (-27) (-1106))) (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-524 *6 *3 *7)) (-4 *7 (-1014)))) (-2842 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-561 *3)) (-4 *3 (-13 (-405 *5) (-27) (-1106))) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-2 (|:| -2585 *3) (|:| |coeff| *3))) (-5 *1 (-524 *5 *3 *6)) (-4 *6 (-1014)))) (-1874 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-561 *3)) (-4 *3 (-13 (-405 *5) (-27) (-1106))) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522)))) (-5 *2 (-539 *3)) (-5 *1 (-524 *5 *3 *6)) (-4 *6 (-1014)))))
+(-10 -7 (-15 -1874 ((-539 |#2|) |#2| (-561 |#2|) (-561 |#2|))) (-15 -2842 ((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-561 |#2|) (-561 |#2|) |#2|)) (-15 -3804 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-561 |#2|) (-561 |#2|) (-588 |#2|))) (-15 -3051 ((-3 |#2| "failed") |#2| |#2| |#2| (-561 |#2|) (-561 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1085)))) (IF (|has| |#3| (-598 |#2|)) (-15 -3302 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2905 (-588 |#2|))) |#3| |#2| (-561 |#2|) (-561 |#2|) (-1085))) |%noBranch|))
+((-4191 (((-2 (|:| -2441 |#2|) (|:| |nconst| |#2|)) |#2| (-1085)) 62)) (-2519 (((-3 |#2| "failed") |#2| (-1085) (-777 |#2|) (-777 |#2|)) 159 (-12 (|has| |#2| (-1049)) (|has| |#1| (-563 (-821 (-522)))) (|has| |#1| (-815 (-522))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085)) 133 (-12 (|has| |#2| (-574)) (|has| |#1| (-563 (-821 (-522)))) (|has| |#1| (-815 (-522)))))) (-3624 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085)) 142 (-12 (|has| |#2| (-574)) (|has| |#1| (-563 (-821 (-522)))) (|has| |#1| (-815 (-522)))))))
+(((-525 |#1| |#2|) (-10 -7 (-15 -4191 ((-2 (|:| -2441 |#2|) (|:| |nconst| |#2|)) |#2| (-1085))) (IF (|has| |#1| (-563 (-821 (-522)))) (IF (|has| |#1| (-815 (-522))) (PROGN (IF (|has| |#2| (-574)) (PROGN (-15 -3624 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085))) (-15 -2519 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085)))) |%noBranch|) (IF (|has| |#2| (-1049)) (-15 -2519 ((-3 |#2| "failed") |#2| (-1085) (-777 |#2|) (-777 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-784) (-962 (-522)) (-426) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -525))
+((-2519 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1085)) (-5 *4 (-777 *2)) (-4 *2 (-1049)) (-4 *2 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-563 (-821 (-522)))) (-4 *5 (-815 (-522))) (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522)))) (-5 *1 (-525 *5 *2)))) (-2519 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1085)) (-4 *5 (-563 (-821 (-522)))) (-4 *5 (-815 (-522))) (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-525 *5 *3)) (-4 *3 (-574)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-3624 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1085)) (-4 *5 (-563 (-821 (-522)))) (-4 *5 (-815 (-522))) (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-525 *5 *3)) (-4 *3 (-574)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-4191 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522)))) (-5 *2 (-2 (|:| -2441 *3) (|:| |nconst| *3))) (-5 *1 (-525 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
+(-10 -7 (-15 -4191 ((-2 (|:| -2441 |#2|) (|:| |nconst| |#2|)) |#2| (-1085))) (IF (|has| |#1| (-563 (-821 (-522)))) (IF (|has| |#1| (-815 (-522))) (PROGN (IF (|has| |#2| (-574)) (PROGN (-15 -3624 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085))) (-15 -2519 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085)))) |%noBranch|) (IF (|has| |#2| (-1049)) (-15 -2519 ((-3 |#2| "failed") |#2| (-1085) (-777 |#2|) (-777 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-2489 (((-3 (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|)))))) "failed") (-382 |#2|) (-588 (-382 |#2|))) 39)) (-2611 (((-539 (-382 |#2|)) (-382 |#2|)) 27)) (-2941 (((-3 (-382 |#2|) "failed") (-382 |#2|)) 16)) (-4120 (((-3 (-2 (|:| -2585 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-382 |#2|)) 46)))
+(((-526 |#1| |#2|) (-10 -7 (-15 -2611 ((-539 (-382 |#2|)) (-382 |#2|))) (-15 -2941 ((-3 (-382 |#2|) "failed") (-382 |#2|))) (-15 -4120 ((-3 (-2 (|:| -2585 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-382 |#2|))) (-15 -2489 ((-3 (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|)))))) "failed") (-382 |#2|) (-588 (-382 |#2|))))) (-13 (-338) (-135) (-962 (-522))) (-1142 |#1|)) (T -526))
+((-2489 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-588 (-382 *6))) (-5 *3 (-382 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-526 *5 *6)))) (-4120 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-338) (-135) (-962 (-522)))) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| -2585 (-382 *5)) (|:| |coeff| (-382 *5)))) (-5 *1 (-526 *4 *5)) (-5 *3 (-382 *5)))) (-2941 (*1 *2 *2) (|partial| -12 (-5 *2 (-382 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-13 (-338) (-135) (-962 (-522)))) (-5 *1 (-526 *3 *4)))) (-2611 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-135) (-962 (-522)))) (-4 *5 (-1142 *4)) (-5 *2 (-539 (-382 *5))) (-5 *1 (-526 *4 *5)) (-5 *3 (-382 *5)))))
+(-10 -7 (-15 -2611 ((-539 (-382 |#2|)) (-382 |#2|))) (-15 -2941 ((-3 (-382 |#2|) "failed") (-382 |#2|))) (-15 -4120 ((-3 (-2 (|:| -2585 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-382 |#2|))) (-15 -2489 ((-3 (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|)))))) "failed") (-382 |#2|) (-588 (-382 |#2|)))))
+((-3611 (((-3 (-522) "failed") |#1|) 14)) (-3871 (((-108) |#1|) 13)) (-1516 (((-522) |#1|) 9)))
+(((-527 |#1|) (-10 -7 (-15 -1516 ((-522) |#1|)) (-15 -3871 ((-108) |#1|)) (-15 -3611 ((-3 (-522) "failed") |#1|))) (-962 (-522))) (T -527))
+((-3611 (*1 *2 *3) (|partial| -12 (-5 *2 (-522)) (-5 *1 (-527 *3)) (-4 *3 (-962 *2)))) (-3871 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-527 *3)) (-4 *3 (-962 (-522))))) (-1516 (*1 *2 *3) (-12 (-5 *2 (-522)) (-5 *1 (-527 *3)) (-4 *3 (-962 *2)))))
+(-10 -7 (-15 -1516 ((-522) |#1|)) (-15 -3871 ((-108) |#1|)) (-15 -3611 ((-3 (-522) "failed") |#1|)))
+((-2206 (((-3 (-2 (|:| |mainpart| (-382 (-881 |#1|))) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 (-881 |#1|))) (|:| |logand| (-382 (-881 |#1|))))))) "failed") (-382 (-881 |#1|)) (-1085) (-588 (-382 (-881 |#1|)))) 43)) (-2919 (((-539 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-1085)) 25)) (-3842 (((-3 (-382 (-881 |#1|)) "failed") (-382 (-881 |#1|)) (-1085)) 20)) (-1628 (((-3 (-2 (|:| -2585 (-382 (-881 |#1|))) (|:| |coeff| (-382 (-881 |#1|)))) "failed") (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|))) 32)))
+(((-528 |#1|) (-10 -7 (-15 -2919 ((-539 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-1085))) (-15 -3842 ((-3 (-382 (-881 |#1|)) "failed") (-382 (-881 |#1|)) (-1085))) (-15 -2206 ((-3 (-2 (|:| |mainpart| (-382 (-881 |#1|))) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 (-881 |#1|))) (|:| |logand| (-382 (-881 |#1|))))))) "failed") (-382 (-881 |#1|)) (-1085) (-588 (-382 (-881 |#1|))))) (-15 -1628 ((-3 (-2 (|:| -2585 (-382 (-881 |#1|))) (|:| |coeff| (-382 (-881 |#1|)))) "failed") (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|))))) (-13 (-514) (-962 (-522)) (-135))) (T -528))
+((-1628 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-962 (-522)) (-135))) (-5 *2 (-2 (|:| -2585 (-382 (-881 *5))) (|:| |coeff| (-382 (-881 *5))))) (-5 *1 (-528 *5)) (-5 *3 (-382 (-881 *5))))) (-2206 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-588 (-382 (-881 *6)))) (-5 *3 (-382 (-881 *6))) (-4 *6 (-13 (-514) (-962 (-522)) (-135))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-528 *6)))) (-3842 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-382 (-881 *4))) (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-962 (-522)) (-135))) (-5 *1 (-528 *4)))) (-2919 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-962 (-522)) (-135))) (-5 *2 (-539 (-382 (-881 *5)))) (-5 *1 (-528 *5)) (-5 *3 (-382 (-881 *5))))))
+(-10 -7 (-15 -2919 ((-539 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-1085))) (-15 -3842 ((-3 (-382 (-881 |#1|)) "failed") (-382 (-881 |#1|)) (-1085))) (-15 -2206 ((-3 (-2 (|:| |mainpart| (-382 (-881 |#1|))) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 (-881 |#1|))) (|:| |logand| (-382 (-881 |#1|))))))) "failed") (-382 (-881 |#1|)) (-1085) (-588 (-382 (-881 |#1|))))) (-15 -1628 ((-3 (-2 (|:| -2585 (-382 (-881 |#1|))) (|:| |coeff| (-382 (-881 |#1|)))) "failed") (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|)))))
+((-1419 (((-108) $ $) 59)) (-2944 (((-108) $) 36)) (-2815 ((|#1| $) 30)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) 63)) (-3044 (($ $) 123)) (-2923 (($ $) 103)) (-1827 ((|#1| $) 28)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2016 (($ $) NIL)) (-3023 (($ $) 125)) (-2906 (($ $) 99)) (-3066 (($ $) 127)) (-2936 (($ $) 107)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) 78)) (-1478 (((-522) $) 80)) (-3920 (((-3 $ "failed") $) 62)) (-3122 (($ |#1| |#1|) 26)) (-3603 (((-108) $) 33)) (-2980 (($) 89)) (-2859 (((-108) $) 43)) (-1811 (($ $ (-522)) NIL)) (-3740 (((-108) $) 34)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-1238 (($ $) 91)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-1869 (($ |#1| |#1|) 20) (($ |#1|) 25) (($ (-382 (-522))) 77)) (-3099 ((|#1| $) 27)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) 65) (($ (-588 $)) NIL)) (-2276 (((-3 $ "failed") $ $) 64)) (-3357 (($ $) 93)) (-1831 (($ $) 131)) (-2946 (($ $) 105)) (-3054 (($ $) 133)) (-2928 (($ $) 109)) (-3035 (($ $) 129)) (-2915 (($ $) 101)) (-1311 (((-108) $ |#1|) 31)) (-2217 (((-792) $) 85) (($ (-522)) 67) (($ $) NIL) (($ (-522)) 67)) (-2742 (((-708)) 87)) (-1856 (($ $) 145)) (-2976 (($ $) 115)) (-1407 (((-108) $ $) NIL)) (-1839 (($ $) 143)) (-2957 (($ $) 111)) (-1873 (($ $) 141)) (-3001 (($ $) 121)) (-2476 (($ $) 139)) (-3011 (($ $) 119)) (-1864 (($ $) 137)) (-2989 (($ $) 117)) (-1849 (($ $) 135)) (-2966 (($ $) 113)) (-3622 (($ $ (-850)) 55) (($ $ (-708)) NIL)) (-3697 (($) 21 T CONST)) (-3709 (($) 10 T CONST)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 37)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 35)) (-1672 (($ $) 41) (($ $ $) 42)) (-1661 (($ $ $) 40)) (** (($ $ (-850)) 54) (($ $ (-708)) NIL) (($ $ $) 95) (($ $ (-382 (-522))) 147)) (* (($ (-850) $) 51) (($ (-708) $) NIL) (($ (-522) $) 50) (($ $ $) 48)))
(((-529 |#1|) (-512 |#1|) (-13 (-379) (-1106))) (T -529))
NIL
(-512 |#1|)
-((-1473 (((-3 (-588 (-1081 (-522))) "failed") (-588 (-1081 (-522))) (-1081 (-522))) 24)))
-(((-530) (-10 -7 (-15 -1473 ((-3 (-588 (-1081 (-522))) "failed") (-588 (-1081 (-522))) (-1081 (-522)))))) (T -530))
-((-1473 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-1081 (-522)))) (-5 *3 (-1081 (-522))) (-5 *1 (-530)))))
-(-10 -7 (-15 -1473 ((-3 (-588 (-1081 (-522))) "failed") (-588 (-1081 (-522))) (-1081 (-522)))))
-((-1560 (((-588 (-561 |#2|)) (-588 (-561 |#2|)) (-1085)) 18)) (-2851 (((-588 (-561 |#2|)) (-588 |#2|) (-1085)) 23)) (-2270 (((-588 (-561 |#2|)) (-588 (-561 |#2|)) (-588 (-561 |#2|))) 10)) (-2631 ((|#2| |#2| (-1085)) 52 (|has| |#1| (-514)))) (-1724 ((|#2| |#2| (-1085)) 77 (-12 (|has| |#2| (-260)) (|has| |#1| (-426))))) (-1788 (((-561 |#2|) (-561 |#2|) (-588 (-561 |#2|)) (-1085)) 25)) (-1915 (((-561 |#2|) (-588 (-561 |#2|))) 24)) (-4215 (((-539 |#2|) |#2| (-1085) (-1 (-539 |#2|) |#2| (-1085)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085))) 101 (-12 (|has| |#2| (-260)) (|has| |#2| (-574)) (|has| |#2| (-962 (-1085))) (|has| |#1| (-563 (-821 (-522)))) (|has| |#1| (-426)) (|has| |#1| (-815 (-522)))))))
-(((-531 |#1| |#2|) (-10 -7 (-15 -1560 ((-588 (-561 |#2|)) (-588 (-561 |#2|)) (-1085))) (-15 -1915 ((-561 |#2|) (-588 (-561 |#2|)))) (-15 -1788 ((-561 |#2|) (-561 |#2|) (-588 (-561 |#2|)) (-1085))) (-15 -2270 ((-588 (-561 |#2|)) (-588 (-561 |#2|)) (-588 (-561 |#2|)))) (-15 -2851 ((-588 (-561 |#2|)) (-588 |#2|) (-1085))) (IF (|has| |#1| (-514)) (-15 -2631 (|#2| |#2| (-1085))) |%noBranch|) (IF (|has| |#1| (-426)) (IF (|has| |#2| (-260)) (PROGN (-15 -1724 (|#2| |#2| (-1085))) (IF (|has| |#1| (-563 (-821 (-522)))) (IF (|has| |#1| (-815 (-522))) (IF (|has| |#2| (-574)) (IF (|has| |#2| (-962 (-1085))) (-15 -4215 ((-539 |#2|) |#2| (-1085) (-1 (-539 |#2|) |#2| (-1085)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-784) (-405 |#1|)) (T -531))
-((-4215 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-539 *3) *3 (-1085))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1085))) (-4 *3 (-260)) (-4 *3 (-574)) (-4 *3 (-962 *4)) (-4 *3 (-405 *7)) (-5 *4 (-1085)) (-4 *7 (-563 (-821 (-522)))) (-4 *7 (-426)) (-4 *7 (-815 (-522))) (-4 *7 (-784)) (-5 *2 (-539 *3)) (-5 *1 (-531 *7 *3)))) (-1724 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-426)) (-4 *4 (-784)) (-5 *1 (-531 *4 *2)) (-4 *2 (-260)) (-4 *2 (-405 *4)))) (-2631 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-514)) (-4 *4 (-784)) (-5 *1 (-531 *4 *2)) (-4 *2 (-405 *4)))) (-2851 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *6)) (-5 *4 (-1085)) (-4 *6 (-405 *5)) (-4 *5 (-784)) (-5 *2 (-588 (-561 *6))) (-5 *1 (-531 *5 *6)))) (-2270 (*1 *2 *2 *2) (-12 (-5 *2 (-588 (-561 *4))) (-4 *4 (-405 *3)) (-4 *3 (-784)) (-5 *1 (-531 *3 *4)))) (-1788 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-588 (-561 *6))) (-5 *4 (-1085)) (-5 *2 (-561 *6)) (-4 *6 (-405 *5)) (-4 *5 (-784)) (-5 *1 (-531 *5 *6)))) (-1915 (*1 *2 *3) (-12 (-5 *3 (-588 (-561 *5))) (-4 *4 (-784)) (-5 *2 (-561 *5)) (-5 *1 (-531 *4 *5)) (-4 *5 (-405 *4)))) (-1560 (*1 *2 *2 *3) (-12 (-5 *2 (-588 (-561 *5))) (-5 *3 (-1085)) (-4 *5 (-405 *4)) (-4 *4 (-784)) (-5 *1 (-531 *4 *5)))))
-(-10 -7 (-15 -1560 ((-588 (-561 |#2|)) (-588 (-561 |#2|)) (-1085))) (-15 -1915 ((-561 |#2|) (-588 (-561 |#2|)))) (-15 -1788 ((-561 |#2|) (-561 |#2|) (-588 (-561 |#2|)) (-1085))) (-15 -2270 ((-588 (-561 |#2|)) (-588 (-561 |#2|)) (-588 (-561 |#2|)))) (-15 -2851 ((-588 (-561 |#2|)) (-588 |#2|) (-1085))) (IF (|has| |#1| (-514)) (-15 -2631 (|#2| |#2| (-1085))) |%noBranch|) (IF (|has| |#1| (-426)) (IF (|has| |#2| (-260)) (PROGN (-15 -1724 (|#2| |#2| (-1085))) (IF (|has| |#1| (-563 (-821 (-522)))) (IF (|has| |#1| (-815 (-522))) (IF (|has| |#2| (-574)) (IF (|has| |#2| (-962 (-1085))) (-15 -4215 ((-539 |#2|) |#2| (-1085) (-1 (-539 |#2|) |#2| (-1085)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-2309 (((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-588 |#1|) "failed") (-522) |#1| |#1|)) 168)) (-2204 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|))))))) (|:| |a0| |#1|)) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-588 (-382 |#2|))) 144)) (-3601 (((-3 (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|)))))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-588 (-382 |#2|))) 141)) (-3706 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 130)) (-3928 (((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 154)) (-3636 (((-3 (-2 (|:| -1856 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-382 |#2|)) 171)) (-3458 (((-3 (-2 (|:| |answer| (-382 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -1856 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-382 |#2|)) 174)) (-2126 (((-2 (|:| |ir| (-539 (-382 |#2|))) (|:| |specpart| (-382 |#2|)) (|:| |polypart| |#2|)) (-382 |#2|) (-1 |#2| |#2|)) 82)) (-2632 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 89)) (-2336 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|))))))) (|:| |a0| |#1|)) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1924 |#1|) (|:| |sol?| (-108))) (-522) |#1|) (-588 (-382 |#2|))) 148)) (-1932 (((-3 (-569 |#1| |#2|) "failed") (-569 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1924 |#1|) (|:| |sol?| (-108))) (-522) |#1|)) 134)) (-2101 (((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1924 |#1|) (|:| |sol?| (-108))) (-522) |#1|)) 158)) (-2423 (((-3 (-2 (|:| |answer| (-382 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -1856 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1924 |#1|) (|:| |sol?| (-108))) (-522) |#1|) (-382 |#2|)) 179)))
-(((-532 |#1| |#2|) (-10 -7 (-15 -3928 ((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -2101 ((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1924 |#1|) (|:| |sol?| (-108))) (-522) |#1|))) (-15 -2309 ((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-588 |#1|) "failed") (-522) |#1| |#1|))) (-15 -3458 ((-3 (-2 (|:| |answer| (-382 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -1856 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-382 |#2|))) (-15 -2423 ((-3 (-2 (|:| |answer| (-382 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -1856 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1924 |#1|) (|:| |sol?| (-108))) (-522) |#1|) (-382 |#2|))) (-15 -2204 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|))))))) (|:| |a0| |#1|)) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-588 (-382 |#2|)))) (-15 -2336 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|))))))) (|:| |a0| |#1|)) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1924 |#1|) (|:| |sol?| (-108))) (-522) |#1|) (-588 (-382 |#2|)))) (-15 -3636 ((-3 (-2 (|:| -1856 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-382 |#2|))) (-15 -3601 ((-3 (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|)))))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-588 (-382 |#2|)))) (-15 -3706 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -1932 ((-3 (-569 |#1| |#2|) "failed") (-569 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1924 |#1|) (|:| |sol?| (-108))) (-522) |#1|))) (-15 -2126 ((-2 (|:| |ir| (-539 (-382 |#2|))) (|:| |specpart| (-382 |#2|)) (|:| |polypart| |#2|)) (-382 |#2|) (-1 |#2| |#2|))) (-15 -2632 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-338) (-1142 |#1|)) (T -532))
-((-2632 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-532 *5 *3)))) (-2126 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| |ir| (-539 (-382 *6))) (|:| |specpart| (-382 *6)) (|:| |polypart| *6))) (-5 *1 (-532 *5 *6)) (-5 *3 (-382 *6)))) (-1932 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-569 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -1924 *4) (|:| |sol?| (-108))) (-522) *4)) (-4 *4 (-338)) (-4 *5 (-1142 *4)) (-5 *1 (-532 *4 *5)))) (-3706 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -1856 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-338)) (-5 *1 (-532 *4 *2)) (-4 *2 (-1142 *4)))) (-3601 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-588 (-382 *7))) (-4 *7 (-1142 *6)) (-5 *3 (-382 *7)) (-4 *6 (-338)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-532 *6 *7)))) (-3636 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| -1856 (-382 *6)) (|:| |coeff| (-382 *6)))) (-5 *1 (-532 *5 *6)) (-5 *3 (-382 *6)))) (-2336 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -1924 *7) (|:| |sol?| (-108))) (-522) *7)) (-5 *6 (-588 (-382 *8))) (-4 *7 (-338)) (-4 *8 (-1142 *7)) (-5 *3 (-382 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-532 *7 *8)))) (-2204 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -1856 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-588 (-382 *8))) (-4 *7 (-338)) (-4 *8 (-1142 *7)) (-5 *3 (-382 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-532 *7 *8)))) (-2423 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -1924 *6) (|:| |sol?| (-108))) (-522) *6)) (-4 *6 (-338)) (-4 *7 (-1142 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-382 *7)) (|:| |a0| *6)) (-2 (|:| -1856 (-382 *7)) (|:| |coeff| (-382 *7))) "failed")) (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))) (-3458 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -1856 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-338)) (-4 *7 (-1142 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-382 *7)) (|:| |a0| *6)) (-2 (|:| -1856 (-382 *7)) (|:| |coeff| (-382 *7))) "failed")) (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))) (-2309 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-588 *6) "failed") (-522) *6 *6)) (-4 *6 (-338)) (-4 *7 (-1142 *6)) (-5 *2 (-2 (|:| |answer| (-539 (-382 *7))) (|:| |a0| *6))) (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))) (-2101 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -1924 *6) (|:| |sol?| (-108))) (-522) *6)) (-4 *6 (-338)) (-4 *7 (-1142 *6)) (-5 *2 (-2 (|:| |answer| (-539 (-382 *7))) (|:| |a0| *6))) (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))) (-3928 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -1856 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-338)) (-4 *7 (-1142 *6)) (-5 *2 (-2 (|:| |answer| (-539 (-382 *7))) (|:| |a0| *6))) (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))))
-(-10 -7 (-15 -3928 ((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -2101 ((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1924 |#1|) (|:| |sol?| (-108))) (-522) |#1|))) (-15 -2309 ((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-588 |#1|) "failed") (-522) |#1| |#1|))) (-15 -3458 ((-3 (-2 (|:| |answer| (-382 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -1856 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-382 |#2|))) (-15 -2423 ((-3 (-2 (|:| |answer| (-382 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -1856 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1924 |#1|) (|:| |sol?| (-108))) (-522) |#1|) (-382 |#2|))) (-15 -2204 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|))))))) (|:| |a0| |#1|)) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-588 (-382 |#2|)))) (-15 -2336 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|))))))) (|:| |a0| |#1|)) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1924 |#1|) (|:| |sol?| (-108))) (-522) |#1|) (-588 (-382 |#2|)))) (-15 -3636 ((-3 (-2 (|:| -1856 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-382 |#2|))) (-15 -3601 ((-3 (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|)))))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-588 (-382 |#2|)))) (-15 -3706 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -1932 ((-3 (-569 |#1| |#2|) "failed") (-569 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1924 |#1|) (|:| |sol?| (-108))) (-522) |#1|))) (-15 -2126 ((-2 (|:| |ir| (-539 (-382 |#2|))) (|:| |specpart| (-382 |#2|)) (|:| |polypart| |#2|)) (-382 |#2|) (-1 |#2| |#2|))) (-15 -2632 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
-((-3283 (((-3 |#2| "failed") |#2| (-1085) (-1085)) 10)))
-(((-533 |#1| |#2|) (-10 -7 (-15 -3283 ((-3 |#2| "failed") |#2| (-1085) (-1085)))) (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-887) (-1049) (-29 |#1|))) (T -533))
-((-3283 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1085)) (-4 *4 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *1 (-533 *4 *2)) (-4 *2 (-13 (-1106) (-887) (-1049) (-29 *4))))))
-(-10 -7 (-15 -3283 ((-3 |#2| "failed") |#2| (-1085) (-1085))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1929 (($ $ (-522)) 65)) (-1687 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-1799 (($ (-1081 (-522)) (-522)) 71)) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) 57)) (-1573 (($ $) 33)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-3714 (((-708) $) 15)) (-2782 (((-108) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3010 (((-522)) 27)) (-1337 (((-522) $) 31)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3719 (($ $ (-522)) 21)) (-2232 (((-3 $ "failed") $ $) 58)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) 16)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 60)) (-2615 (((-1066 (-522)) $) 18)) (-1522 (($ $) 23)) (-2190 (((-792) $) 86) (($ (-522)) 51) (($ $) NIL)) (-2323 (((-708)) 14)) (-3958 (((-108) $ $) NIL)) (-3898 (((-522) $ (-522)) 35)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 34 T CONST)) (-3577 (($) 19 T CONST)) (-1531 (((-108) $ $) 38)) (-1612 (($ $) 50) (($ $ $) 36)) (-1602 (($ $ $) 49)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 53) (($ $ $) 54)))
+((-2800 (((-3 (-588 (-1081 (-522))) "failed") (-588 (-1081 (-522))) (-1081 (-522))) 24)))
+(((-530) (-10 -7 (-15 -2800 ((-3 (-588 (-1081 (-522))) "failed") (-588 (-1081 (-522))) (-1081 (-522)))))) (T -530))
+((-2800 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-1081 (-522)))) (-5 *3 (-1081 (-522))) (-5 *1 (-530)))))
+(-10 -7 (-15 -2800 ((-3 (-588 (-1081 (-522))) "failed") (-588 (-1081 (-522))) (-1081 (-522)))))
+((-3502 (((-588 (-561 |#2|)) (-588 (-561 |#2|)) (-1085)) 18)) (-4144 (((-588 (-561 |#2|)) (-588 |#2|) (-1085)) 23)) (-2323 (((-588 (-561 |#2|)) (-588 (-561 |#2|)) (-588 (-561 |#2|))) 10)) (-2349 ((|#2| |#2| (-1085)) 52 (|has| |#1| (-514)))) (-1286 ((|#2| |#2| (-1085)) 77 (-12 (|has| |#2| (-260)) (|has| |#1| (-426))))) (-3677 (((-561 |#2|) (-561 |#2|) (-588 (-561 |#2|)) (-1085)) 25)) (-1273 (((-561 |#2|) (-588 (-561 |#2|))) 24)) (-2131 (((-539 |#2|) |#2| (-1085) (-1 (-539 |#2|) |#2| (-1085)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085))) 101 (-12 (|has| |#2| (-260)) (|has| |#2| (-574)) (|has| |#2| (-962 (-1085))) (|has| |#1| (-563 (-821 (-522)))) (|has| |#1| (-426)) (|has| |#1| (-815 (-522)))))))
+(((-531 |#1| |#2|) (-10 -7 (-15 -3502 ((-588 (-561 |#2|)) (-588 (-561 |#2|)) (-1085))) (-15 -1273 ((-561 |#2|) (-588 (-561 |#2|)))) (-15 -3677 ((-561 |#2|) (-561 |#2|) (-588 (-561 |#2|)) (-1085))) (-15 -2323 ((-588 (-561 |#2|)) (-588 (-561 |#2|)) (-588 (-561 |#2|)))) (-15 -4144 ((-588 (-561 |#2|)) (-588 |#2|) (-1085))) (IF (|has| |#1| (-514)) (-15 -2349 (|#2| |#2| (-1085))) |%noBranch|) (IF (|has| |#1| (-426)) (IF (|has| |#2| (-260)) (PROGN (-15 -1286 (|#2| |#2| (-1085))) (IF (|has| |#1| (-563 (-821 (-522)))) (IF (|has| |#1| (-815 (-522))) (IF (|has| |#2| (-574)) (IF (|has| |#2| (-962 (-1085))) (-15 -2131 ((-539 |#2|) |#2| (-1085) (-1 (-539 |#2|) |#2| (-1085)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-784) (-405 |#1|)) (T -531))
+((-2131 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-539 *3) *3 (-1085))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1085))) (-4 *3 (-260)) (-4 *3 (-574)) (-4 *3 (-962 *4)) (-4 *3 (-405 *7)) (-5 *4 (-1085)) (-4 *7 (-563 (-821 (-522)))) (-4 *7 (-426)) (-4 *7 (-815 (-522))) (-4 *7 (-784)) (-5 *2 (-539 *3)) (-5 *1 (-531 *7 *3)))) (-1286 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-426)) (-4 *4 (-784)) (-5 *1 (-531 *4 *2)) (-4 *2 (-260)) (-4 *2 (-405 *4)))) (-2349 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-514)) (-4 *4 (-784)) (-5 *1 (-531 *4 *2)) (-4 *2 (-405 *4)))) (-4144 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *6)) (-5 *4 (-1085)) (-4 *6 (-405 *5)) (-4 *5 (-784)) (-5 *2 (-588 (-561 *6))) (-5 *1 (-531 *5 *6)))) (-2323 (*1 *2 *2 *2) (-12 (-5 *2 (-588 (-561 *4))) (-4 *4 (-405 *3)) (-4 *3 (-784)) (-5 *1 (-531 *3 *4)))) (-3677 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-588 (-561 *6))) (-5 *4 (-1085)) (-5 *2 (-561 *6)) (-4 *6 (-405 *5)) (-4 *5 (-784)) (-5 *1 (-531 *5 *6)))) (-1273 (*1 *2 *3) (-12 (-5 *3 (-588 (-561 *5))) (-4 *4 (-784)) (-5 *2 (-561 *5)) (-5 *1 (-531 *4 *5)) (-4 *5 (-405 *4)))) (-3502 (*1 *2 *2 *3) (-12 (-5 *2 (-588 (-561 *5))) (-5 *3 (-1085)) (-4 *5 (-405 *4)) (-4 *4 (-784)) (-5 *1 (-531 *4 *5)))))
+(-10 -7 (-15 -3502 ((-588 (-561 |#2|)) (-588 (-561 |#2|)) (-1085))) (-15 -1273 ((-561 |#2|) (-588 (-561 |#2|)))) (-15 -3677 ((-561 |#2|) (-561 |#2|) (-588 (-561 |#2|)) (-1085))) (-15 -2323 ((-588 (-561 |#2|)) (-588 (-561 |#2|)) (-588 (-561 |#2|)))) (-15 -4144 ((-588 (-561 |#2|)) (-588 |#2|) (-1085))) (IF (|has| |#1| (-514)) (-15 -2349 (|#2| |#2| (-1085))) |%noBranch|) (IF (|has| |#1| (-426)) (IF (|has| |#2| (-260)) (PROGN (-15 -1286 (|#2| |#2| (-1085))) (IF (|has| |#1| (-563 (-821 (-522)))) (IF (|has| |#1| (-815 (-522))) (IF (|has| |#2| (-574)) (IF (|has| |#2| (-962 (-1085))) (-15 -2131 ((-539 |#2|) |#2| (-1085) (-1 (-539 |#2|) |#2| (-1085)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1085)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-2797 (((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-588 |#1|) "failed") (-522) |#1| |#1|)) 168)) (-2331 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|))))))) (|:| |a0| |#1|)) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-588 (-382 |#2|))) 144)) (-2109 (((-3 (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|)))))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-588 (-382 |#2|))) 141)) (-3786 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 130)) (-4134 (((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 154)) (-1268 (((-3 (-2 (|:| -2585 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-382 |#2|)) 171)) (-3190 (((-3 (-2 (|:| |answer| (-382 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2585 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-382 |#2|)) 174)) (-1553 (((-2 (|:| |ir| (-539 (-382 |#2|))) (|:| |specpart| (-382 |#2|)) (|:| |polypart| |#2|)) (-382 |#2|) (-1 |#2| |#2|)) 82)) (-2361 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 89)) (-1938 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|))))))) (|:| |a0| |#1|)) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2002 |#1|) (|:| |sol?| (-108))) (-522) |#1|) (-588 (-382 |#2|))) 148)) (-1404 (((-3 (-569 |#1| |#2|) "failed") (-569 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2002 |#1|) (|:| |sol?| (-108))) (-522) |#1|)) 134)) (-1278 (((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2002 |#1|) (|:| |sol?| (-108))) (-522) |#1|)) 158)) (-3272 (((-3 (-2 (|:| |answer| (-382 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2585 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2002 |#1|) (|:| |sol?| (-108))) (-522) |#1|) (-382 |#2|)) 179)))
+(((-532 |#1| |#2|) (-10 -7 (-15 -4134 ((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -1278 ((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2002 |#1|) (|:| |sol?| (-108))) (-522) |#1|))) (-15 -2797 ((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-588 |#1|) "failed") (-522) |#1| |#1|))) (-15 -3190 ((-3 (-2 (|:| |answer| (-382 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2585 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-382 |#2|))) (-15 -3272 ((-3 (-2 (|:| |answer| (-382 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2585 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2002 |#1|) (|:| |sol?| (-108))) (-522) |#1|) (-382 |#2|))) (-15 -2331 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|))))))) (|:| |a0| |#1|)) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-588 (-382 |#2|)))) (-15 -1938 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|))))))) (|:| |a0| |#1|)) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2002 |#1|) (|:| |sol?| (-108))) (-522) |#1|) (-588 (-382 |#2|)))) (-15 -1268 ((-3 (-2 (|:| -2585 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-382 |#2|))) (-15 -2109 ((-3 (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|)))))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-588 (-382 |#2|)))) (-15 -3786 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -1404 ((-3 (-569 |#1| |#2|) "failed") (-569 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2002 |#1|) (|:| |sol?| (-108))) (-522) |#1|))) (-15 -1553 ((-2 (|:| |ir| (-539 (-382 |#2|))) (|:| |specpart| (-382 |#2|)) (|:| |polypart| |#2|)) (-382 |#2|) (-1 |#2| |#2|))) (-15 -2361 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-338) (-1142 |#1|)) (T -532))
+((-2361 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-532 *5 *3)))) (-1553 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| |ir| (-539 (-382 *6))) (|:| |specpart| (-382 *6)) (|:| |polypart| *6))) (-5 *1 (-532 *5 *6)) (-5 *3 (-382 *6)))) (-1404 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-569 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -2002 *4) (|:| |sol?| (-108))) (-522) *4)) (-4 *4 (-338)) (-4 *5 (-1142 *4)) (-5 *1 (-532 *4 *5)))) (-3786 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -2585 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-338)) (-5 *1 (-532 *4 *2)) (-4 *2 (-1142 *4)))) (-2109 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-588 (-382 *7))) (-4 *7 (-1142 *6)) (-5 *3 (-382 *7)) (-4 *6 (-338)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-532 *6 *7)))) (-1268 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| -2585 (-382 *6)) (|:| |coeff| (-382 *6)))) (-5 *1 (-532 *5 *6)) (-5 *3 (-382 *6)))) (-1938 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -2002 *7) (|:| |sol?| (-108))) (-522) *7)) (-5 *6 (-588 (-382 *8))) (-4 *7 (-338)) (-4 *8 (-1142 *7)) (-5 *3 (-382 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-532 *7 *8)))) (-2331 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -2585 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-588 (-382 *8))) (-4 *7 (-338)) (-4 *8 (-1142 *7)) (-5 *3 (-382 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-532 *7 *8)))) (-3272 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -2002 *6) (|:| |sol?| (-108))) (-522) *6)) (-4 *6 (-338)) (-4 *7 (-1142 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-382 *7)) (|:| |a0| *6)) (-2 (|:| -2585 (-382 *7)) (|:| |coeff| (-382 *7))) "failed")) (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))) (-3190 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2585 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-338)) (-4 *7 (-1142 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-382 *7)) (|:| |a0| *6)) (-2 (|:| -2585 (-382 *7)) (|:| |coeff| (-382 *7))) "failed")) (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))) (-2797 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-588 *6) "failed") (-522) *6 *6)) (-4 *6 (-338)) (-4 *7 (-1142 *6)) (-5 *2 (-2 (|:| |answer| (-539 (-382 *7))) (|:| |a0| *6))) (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))) (-1278 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -2002 *6) (|:| |sol?| (-108))) (-522) *6)) (-4 *6 (-338)) (-4 *7 (-1142 *6)) (-5 *2 (-2 (|:| |answer| (-539 (-382 *7))) (|:| |a0| *6))) (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))) (-4134 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2585 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-338)) (-4 *7 (-1142 *6)) (-5 *2 (-2 (|:| |answer| (-539 (-382 *7))) (|:| |a0| *6))) (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))))
+(-10 -7 (-15 -4134 ((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -1278 ((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2002 |#1|) (|:| |sol?| (-108))) (-522) |#1|))) (-15 -2797 ((-2 (|:| |answer| (-539 (-382 |#2|))) (|:| |a0| |#1|)) (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-588 |#1|) "failed") (-522) |#1| |#1|))) (-15 -3190 ((-3 (-2 (|:| |answer| (-382 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2585 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-382 |#2|))) (-15 -3272 ((-3 (-2 (|:| |answer| (-382 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2585 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2002 |#1|) (|:| |sol?| (-108))) (-522) |#1|) (-382 |#2|))) (-15 -2331 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|))))))) (|:| |a0| |#1|)) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-588 (-382 |#2|)))) (-15 -1938 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|))))))) (|:| |a0| |#1|)) "failed") (-382 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2002 |#1|) (|:| |sol?| (-108))) (-522) |#1|) (-588 (-382 |#2|)))) (-15 -1268 ((-3 (-2 (|:| -2585 (-382 |#2|)) (|:| |coeff| (-382 |#2|))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-382 |#2|))) (-15 -2109 ((-3 (-2 (|:| |mainpart| (-382 |#2|)) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| (-382 |#2|)) (|:| |logand| (-382 |#2|)))))) "failed") (-382 |#2|) (-1 |#2| |#2|) (-588 (-382 |#2|)))) (-15 -3786 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -1404 ((-3 (-569 |#1| |#2|) "failed") (-569 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -2002 |#1|) (|:| |sol?| (-108))) (-522) |#1|))) (-15 -1553 ((-2 (|:| |ir| (-539 (-382 |#2|))) (|:| |specpart| (-382 |#2|)) (|:| |polypart| |#2|)) (-382 |#2|) (-1 |#2| |#2|))) (-15 -2361 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
+((-2005 (((-3 |#2| "failed") |#2| (-1085) (-1085)) 10)))
+(((-533 |#1| |#2|) (-10 -7 (-15 -2005 ((-3 |#2| "failed") |#2| (-1085) (-1085)))) (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-887) (-1049) (-29 |#1|))) (T -533))
+((-2005 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1085)) (-4 *4 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *1 (-533 *4 *2)) (-4 *2 (-13 (-1106) (-887) (-1049) (-29 *4))))))
+(-10 -7 (-15 -2005 ((-3 |#2| "failed") |#2| (-1085) (-1085))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2016 (($ $ (-522)) 65)) (-2805 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-3763 (($ (-1081 (-522)) (-522)) 71)) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) 57)) (-3606 (($ $) 33)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-3872 (((-708) $) 15)) (-2859 (((-108) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1246 (((-522)) 27)) (-3316 (((-522) $) 31)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3934 (($ $ (-522)) 21)) (-2276 (((-3 $ "failed") $ $) 58)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) 16)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 60)) (-3353 (((-1066 (-522)) $) 18)) (-1944 (($ $) 23)) (-2217 (((-792) $) 86) (($ (-522)) 51) (($ $) NIL)) (-2742 (((-708)) 14)) (-1407 (((-108) $ $) NIL)) (-3996 (((-522) $ (-522)) 35)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 34 T CONST)) (-3709 (($) 19 T CONST)) (-1562 (((-108) $ $) 38)) (-1672 (($ $) 50) (($ $ $) 36)) (-1661 (($ $ $) 49)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 53) (($ $ $) 54)))
(((-534 |#1| |#2|) (-798 |#1|) (-522) (-108)) (T -534))
NIL
(-798 |#1|)
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 18)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1651 (((-108) $) NIL)) (-2219 (((-708)) NIL)) (-1865 (($ $ (-850)) NIL (|has| $ (-343))) (($ $) NIL)) (-1398 (((-1094 (-850) (-708)) (-522)) 47)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1629 (((-708)) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 $ "failed") $) 75)) (-1484 (($ $) 74)) (-3766 (($ (-1166 $)) 73)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) 42)) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) 30)) (-3255 (($) NIL)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-1223 (($) 49)) (-2511 (((-108) $) NIL)) (-2111 (($ $) NIL) (($ $ (-708)) NIL)) (-2813 (((-108) $) NIL)) (-3714 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-2782 (((-108) $) NIL)) (-3400 (($) 35 (|has| $ (-343)))) (-2741 (((-108) $) NIL (|has| $ (-343)))) (-2100 (($ $ (-850)) NIL (|has| $ (-343))) (($ $) NIL)) (-3004 (((-3 $ "failed") $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1712 (((-1081 $) $ (-850)) NIL (|has| $ (-343))) (((-1081 $) $) 83)) (-2120 (((-850) $) 55)) (-3074 (((-1081 $) $) NIL (|has| $ (-343)))) (-2941 (((-3 (-1081 $) "failed") $ $) NIL (|has| $ (-343))) (((-1081 $) $) NIL (|has| $ (-343)))) (-1425 (($ $ (-1081 $)) NIL (|has| $ (-343)))) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL T CONST)) (-2717 (($ (-850)) 48)) (-2822 (((-108) $) 67)) (-4151 (((-1032) $) NIL)) (-1383 (($) 16 (|has| $ (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) 40)) (-1916 (((-393 $) $) NIL)) (-2621 (((-850)) 66) (((-770 (-850))) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3018 (((-3 (-708) "failed") $ $) NIL) (((-708) $) NIL)) (-4078 (((-126)) NIL)) (-2157 (($ $ (-708)) NIL) (($ $) NIL)) (-2793 (((-850) $) 65) (((-770 (-850)) $) NIL)) (-1479 (((-1081 $)) 82)) (-2581 (($) 54)) (-1299 (($) 36 (|has| $ (-343)))) (-3677 (((-628 $) (-1166 $)) NIL) (((-1166 $) $) 71)) (-1431 (((-522) $) 26)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) 28) (($ $) NIL) (($ (-382 (-522))) NIL)) (-2143 (((-3 $ "failed") $) NIL) (($ $) 84)) (-2323 (((-708)) 37)) (-3855 (((-1166 $) (-850)) 77) (((-1166 $)) 76)) (-3958 (((-108) $ $) NIL)) (-2351 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 19 T CONST)) (-3577 (($) 15 T CONST)) (-3428 (($ $ (-708)) NIL (|has| $ (-343))) (($ $) NIL (|has| $ (-343)))) (-2213 (($ $ (-708)) NIL) (($ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 24)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 61) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 18)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2400 (((-108) $) NIL)) (-1593 (((-708)) NIL)) (-1945 (($ $ (-850)) NIL (|has| $ (-343))) (($ $) NIL)) (-3833 (((-1094 (-850) (-708)) (-522)) 47)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-1685 (((-708)) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 $ "failed") $) 75)) (-1478 (($ $) 74)) (-3225 (($ (-1166 $)) 73)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) 42)) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) 30)) (-3344 (($) NIL)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2160 (($) 49)) (-2087 (((-108) $) NIL)) (-1380 (($ $) NIL) (($ $ (-708)) NIL)) (-2725 (((-108) $) NIL)) (-3872 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-2859 (((-108) $) NIL)) (-3768 (($) 35 (|has| $ (-343)))) (-1372 (((-108) $) NIL (|has| $ (-343)))) (-1269 (($ $ (-850)) NIL (|has| $ (-343))) (($ $) NIL)) (-4208 (((-3 $ "failed") $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4199 (((-1081 $) $ (-850)) NIL (|has| $ (-343))) (((-1081 $) $) 83)) (-1475 (((-850) $) 55)) (-3657 (((-1081 $) $) NIL (|has| $ (-343)))) (-3723 (((-3 (-1081 $) "failed") $ $) NIL (|has| $ (-343))) (((-1081 $) $) NIL (|has| $ (-343)))) (-2259 (($ $ (-1081 $)) NIL (|has| $ (-343)))) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL T CONST)) (-2882 (($ (-850)) 48)) (-2804 (((-108) $) 67)) (-4174 (((-1032) $) NIL)) (-1368 (($) 16 (|has| $ (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) 40)) (-2006 (((-393 $) $) NIL)) (-1713 (((-850)) 66) (((-770 (-850))) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1304 (((-3 (-708) "failed") $ $) NIL) (((-708) $) NIL)) (-3222 (((-126)) NIL)) (-2731 (($ $ (-708)) NIL) (($ $) NIL)) (-2487 (((-850) $) 65) (((-770 (-850)) $) NIL)) (-1579 (((-1081 $)) 82)) (-2670 (($) 54)) (-1705 (($) 36 (|has| $ (-343)))) (-3510 (((-628 $) (-1166 $)) NIL) (((-1166 $) $) 71)) (-3873 (((-522) $) 26)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) 28) (($ $) NIL) (($ (-382 (-522))) NIL)) (-3040 (((-3 $ "failed") $) NIL) (($ $) 84)) (-2742 (((-708)) 37)) (-2905 (((-1166 $) (-850)) 77) (((-1166 $)) 76)) (-1407 (((-108) $ $) NIL)) (-1711 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 19 T CONST)) (-3709 (($) 15 T CONST)) (-2938 (($ $ (-708)) NIL (|has| $ (-343))) (($ $) NIL (|has| $ (-343)))) (-2252 (($ $ (-708)) NIL) (($ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 24)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 61) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
(((-535 |#1|) (-13 (-324) (-304 $) (-563 (-522))) (-850)) (T -535))
NIL
(-13 (-324) (-304 $) (-563 (-522)))
-((-3564 (((-1171) (-1068)) 10)))
-(((-536) (-10 -7 (-15 -3564 ((-1171) (-1068))))) (T -536))
-((-3564 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-536)))))
-(-10 -7 (-15 -3564 ((-1171) (-1068))))
-((-2724 (((-539 |#2|) (-539 |#2|)) 38)) (-1604 (((-588 |#2|) (-539 |#2|)) 40)) (-3875 ((|#2| (-539 |#2|)) 47)))
-(((-537 |#1| |#2|) (-10 -7 (-15 -2724 ((-539 |#2|) (-539 |#2|))) (-15 -1604 ((-588 |#2|) (-539 |#2|))) (-15 -3875 (|#2| (-539 |#2|)))) (-13 (-426) (-962 (-522)) (-784) (-584 (-522))) (-13 (-29 |#1|) (-1106))) (T -537))
-((-3875 (*1 *2 *3) (-12 (-5 *3 (-539 *2)) (-4 *2 (-13 (-29 *4) (-1106))) (-5 *1 (-537 *4 *2)) (-4 *4 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))))) (-1604 (*1 *2 *3) (-12 (-5 *3 (-539 *5)) (-4 *5 (-13 (-29 *4) (-1106))) (-4 *4 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *2 (-588 *5)) (-5 *1 (-537 *4 *5)))) (-2724 (*1 *2 *2) (-12 (-5 *2 (-539 *4)) (-4 *4 (-13 (-29 *3) (-1106))) (-4 *3 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *1 (-537 *3 *4)))))
-(-10 -7 (-15 -2724 ((-539 |#2|) (-539 |#2|))) (-15 -1604 ((-588 |#2|) (-539 |#2|))) (-15 -3875 (|#2| (-539 |#2|))))
-((-1391 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 38) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed")) 31) (((-539 |#2|) (-1 |#2| |#1|) (-539 |#1|)) 26)))
-(((-538 |#1| |#2|) (-10 -7 (-15 -1391 ((-539 |#2|) (-1 |#2| |#1|) (-539 |#1|))) (-15 -1391 ((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -1391 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -1391 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-338) (-338)) (T -538))
-((-1391 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-338)) (-4 *6 (-338)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-538 *5 *6)))) (-1391 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-338)) (-4 *2 (-338)) (-5 *1 (-538 *5 *2)))) (-1391 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -1856 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-338)) (-4 *6 (-338)) (-5 *2 (-2 (|:| -1856 *6) (|:| |coeff| *6))) (-5 *1 (-538 *5 *6)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-539 *5)) (-4 *5 (-338)) (-4 *6 (-338)) (-5 *2 (-539 *6)) (-5 *1 (-538 *5 *6)))))
-(-10 -7 (-15 -1391 ((-539 |#2|) (-1 |#2| |#1|) (-539 |#1|))) (-15 -1391 ((-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -1856 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -1391 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -1391 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) 69)) (-1484 ((|#1| $) NIL)) (-1856 ((|#1| $) 24)) (-3813 (((-588 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 26)) (-2943 (($ |#1| (-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 |#1|)) (|:| |logand| (-1081 |#1|)))) (-588 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 22)) (-3434 (((-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 |#1|)) (|:| |logand| (-1081 |#1|)))) $) 25)) (-2385 (((-1068) $) NIL)) (-2355 (($ |#1| |#1|) 32) (($ |#1| (-1085)) 43 (|has| |#1| (-962 (-1085))))) (-4151 (((-1032) $) NIL)) (-3105 (((-108) $) 28)) (-2157 ((|#1| $ (-1 |#1| |#1|)) 81) ((|#1| $ (-1085)) 82 (|has| |#1| (-829 (-1085))))) (-2190 (((-792) $) 96) (($ |#1|) 23)) (-3566 (($) 16 T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) 15) (($ $ $) NIL)) (-1602 (($ $ $) 78)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 14) (($ (-382 (-522)) $) 35) (($ $ (-382 (-522))) NIL)))
-(((-539 |#1|) (-13 (-655 (-382 (-522))) (-962 |#1|) (-10 -8 (-15 -2943 ($ |#1| (-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 |#1|)) (|:| |logand| (-1081 |#1|)))) (-588 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -1856 (|#1| $)) (-15 -3434 ((-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 |#1|)) (|:| |logand| (-1081 |#1|)))) $)) (-15 -3813 ((-588 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3105 ((-108) $)) (-15 -2355 ($ |#1| |#1|)) (-15 -2157 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-829 (-1085))) (-15 -2157 (|#1| $ (-1085))) |%noBranch|) (IF (|has| |#1| (-962 (-1085))) (-15 -2355 ($ |#1| (-1085))) |%noBranch|))) (-338)) (T -539))
-((-2943 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 *2)) (|:| |logand| (-1081 *2))))) (-5 *4 (-588 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-338)) (-5 *1 (-539 *2)))) (-1856 (*1 *2 *1) (-12 (-5 *1 (-539 *2)) (-4 *2 (-338)))) (-3434 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 *3)) (|:| |logand| (-1081 *3))))) (-5 *1 (-539 *3)) (-4 *3 (-338)))) (-3813 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-539 *3)) (-4 *3 (-338)))) (-3105 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-539 *3)) (-4 *3 (-338)))) (-2355 (*1 *1 *2 *2) (-12 (-5 *1 (-539 *2)) (-4 *2 (-338)))) (-2157 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-539 *2)) (-4 *2 (-338)))) (-2157 (*1 *2 *1 *3) (-12 (-4 *2 (-338)) (-4 *2 (-829 *3)) (-5 *1 (-539 *2)) (-5 *3 (-1085)))) (-2355 (*1 *1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *1 (-539 *2)) (-4 *2 (-962 *3)) (-4 *2 (-338)))))
-(-13 (-655 (-382 (-522))) (-962 |#1|) (-10 -8 (-15 -2943 ($ |#1| (-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 |#1|)) (|:| |logand| (-1081 |#1|)))) (-588 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -1856 (|#1| $)) (-15 -3434 ((-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 |#1|)) (|:| |logand| (-1081 |#1|)))) $)) (-15 -3813 ((-588 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3105 ((-108) $)) (-15 -2355 ($ |#1| |#1|)) (-15 -2157 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-829 (-1085))) (-15 -2157 (|#1| $ (-1085))) |%noBranch|) (IF (|has| |#1| (-962 (-1085))) (-15 -2355 ($ |#1| (-1085))) |%noBranch|)))
-((-3659 (((-108) |#1|) 16)) (-2222 (((-3 |#1| "failed") |#1|) 14)) (-2857 (((-2 (|:| -3355 |#1|) (|:| -1400 (-708))) |#1|) 31) (((-3 |#1| "failed") |#1| (-708)) 18)) (-3177 (((-108) |#1| (-708)) 19)) (-2917 ((|#1| |#1|) 32)) (-4035 ((|#1| |#1| (-708)) 34)))
-(((-540 |#1|) (-10 -7 (-15 -3177 ((-108) |#1| (-708))) (-15 -2857 ((-3 |#1| "failed") |#1| (-708))) (-15 -2857 ((-2 (|:| -3355 |#1|) (|:| -1400 (-708))) |#1|)) (-15 -4035 (|#1| |#1| (-708))) (-15 -3659 ((-108) |#1|)) (-15 -2222 ((-3 |#1| "failed") |#1|)) (-15 -2917 (|#1| |#1|))) (-507)) (T -540))
-((-2917 (*1 *2 *2) (-12 (-5 *1 (-540 *2)) (-4 *2 (-507)))) (-2222 (*1 *2 *2) (|partial| -12 (-5 *1 (-540 *2)) (-4 *2 (-507)))) (-3659 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-540 *3)) (-4 *3 (-507)))) (-4035 (*1 *2 *2 *3) (-12 (-5 *3 (-708)) (-5 *1 (-540 *2)) (-4 *2 (-507)))) (-2857 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -3355 *3) (|:| -1400 (-708)))) (-5 *1 (-540 *3)) (-4 *3 (-507)))) (-2857 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-708)) (-5 *1 (-540 *2)) (-4 *2 (-507)))) (-3177 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-5 *2 (-108)) (-5 *1 (-540 *3)) (-4 *3 (-507)))))
-(-10 -7 (-15 -3177 ((-108) |#1| (-708))) (-15 -2857 ((-3 |#1| "failed") |#1| (-708))) (-15 -2857 ((-2 (|:| -3355 |#1|) (|:| -1400 (-708))) |#1|)) (-15 -4035 (|#1| |#1| (-708))) (-15 -3659 ((-108) |#1|)) (-15 -2222 ((-3 |#1| "failed") |#1|)) (-15 -2917 (|#1| |#1|)))
-((-3879 (((-1081 |#1|) (-850)) 27)))
-(((-541 |#1|) (-10 -7 (-15 -3879 ((-1081 |#1|) (-850)))) (-324)) (T -541))
-((-3879 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-541 *4)) (-4 *4 (-324)))))
-(-10 -7 (-15 -3879 ((-1081 |#1|) (-850))))
-((-2724 (((-539 (-382 (-881 |#1|))) (-539 (-382 (-881 |#1|)))) 26)) (-1858 (((-3 (-291 |#1|) (-588 (-291 |#1|))) (-382 (-881 |#1|)) (-1085)) 32 (|has| |#1| (-135)))) (-1604 (((-588 (-291 |#1|)) (-539 (-382 (-881 |#1|)))) 18)) (-1594 (((-291 |#1|) (-382 (-881 |#1|)) (-1085)) 30 (|has| |#1| (-135)))) (-3875 (((-291 |#1|) (-539 (-382 (-881 |#1|)))) 20)))
-(((-542 |#1|) (-10 -7 (-15 -2724 ((-539 (-382 (-881 |#1|))) (-539 (-382 (-881 |#1|))))) (-15 -1604 ((-588 (-291 |#1|)) (-539 (-382 (-881 |#1|))))) (-15 -3875 ((-291 |#1|) (-539 (-382 (-881 |#1|))))) (IF (|has| |#1| (-135)) (PROGN (-15 -1858 ((-3 (-291 |#1|) (-588 (-291 |#1|))) (-382 (-881 |#1|)) (-1085))) (-15 -1594 ((-291 |#1|) (-382 (-881 |#1|)) (-1085)))) |%noBranch|)) (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (T -542))
-((-1594 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-135)) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *2 (-291 *5)) (-5 *1 (-542 *5)))) (-1858 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-135)) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *2 (-3 (-291 *5) (-588 (-291 *5)))) (-5 *1 (-542 *5)))) (-3875 (*1 *2 *3) (-12 (-5 *3 (-539 (-382 (-881 *4)))) (-4 *4 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *2 (-291 *4)) (-5 *1 (-542 *4)))) (-1604 (*1 *2 *3) (-12 (-5 *3 (-539 (-382 (-881 *4)))) (-4 *4 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *2 (-588 (-291 *4))) (-5 *1 (-542 *4)))) (-2724 (*1 *2 *2) (-12 (-5 *2 (-539 (-382 (-881 *3)))) (-4 *3 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *1 (-542 *3)))))
-(-10 -7 (-15 -2724 ((-539 (-382 (-881 |#1|))) (-539 (-382 (-881 |#1|))))) (-15 -1604 ((-588 (-291 |#1|)) (-539 (-382 (-881 |#1|))))) (-15 -3875 ((-291 |#1|) (-539 (-382 (-881 |#1|))))) (IF (|has| |#1| (-135)) (PROGN (-15 -1858 ((-3 (-291 |#1|) (-588 (-291 |#1|))) (-382 (-881 |#1|)) (-1085))) (-15 -1594 ((-291 |#1|) (-382 (-881 |#1|)) (-1085)))) |%noBranch|))
-((-1866 (((-588 (-628 (-522))) (-588 (-522)) (-588 (-834 (-522)))) 46) (((-588 (-628 (-522))) (-588 (-522))) 47) (((-628 (-522)) (-588 (-522)) (-834 (-522))) 42)) (-1846 (((-708) (-588 (-522))) 40)))
-(((-543) (-10 -7 (-15 -1846 ((-708) (-588 (-522)))) (-15 -1866 ((-628 (-522)) (-588 (-522)) (-834 (-522)))) (-15 -1866 ((-588 (-628 (-522))) (-588 (-522)))) (-15 -1866 ((-588 (-628 (-522))) (-588 (-522)) (-588 (-834 (-522))))))) (T -543))
-((-1866 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-522))) (-5 *4 (-588 (-834 (-522)))) (-5 *2 (-588 (-628 (-522)))) (-5 *1 (-543)))) (-1866 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-588 (-628 (-522)))) (-5 *1 (-543)))) (-1866 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-522))) (-5 *4 (-834 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-543)))) (-1846 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-708)) (-5 *1 (-543)))))
-(-10 -7 (-15 -1846 ((-708) (-588 (-522)))) (-15 -1866 ((-628 (-522)) (-588 (-522)) (-834 (-522)))) (-15 -1866 ((-588 (-628 (-522))) (-588 (-522)))) (-15 -1866 ((-588 (-628 (-522))) (-588 (-522)) (-588 (-834 (-522))))))
-((-1761 (((-588 |#5|) |#5| (-108)) 73)) (-2106 (((-108) |#5| (-588 |#5|)) 30)))
-(((-544 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1761 ((-588 |#5|) |#5| (-108))) (-15 -2106 ((-108) |#5| (-588 |#5|)))) (-13 (-283) (-135)) (-730) (-784) (-985 |#1| |#2| |#3|) (-1023 |#1| |#2| |#3| |#4|)) (T -544))
-((-2106 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-1023 *5 *6 *7 *8)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-544 *5 *6 *7 *8 *3)))) (-1761 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-588 *3)) (-5 *1 (-544 *5 *6 *7 *8 *3)) (-4 *3 (-1023 *5 *6 *7 *8)))))
-(-10 -7 (-15 -1761 ((-588 |#5|) |#5| (-108))) (-15 -2106 ((-108) |#5| (-588 |#5|))))
-((-1416 (((-108) $ $) NIL (|has| (-132) (-1014)))) (-3539 (($ $) 34)) (-2084 (($ $) NIL)) (-3192 (($ $ (-132)) NIL) (($ $ (-129)) NIL)) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-3768 (((-108) $ $) 51)) (-3744 (((-108) $ $ (-522)) 46)) (-2724 (((-588 $) $ (-132)) 60) (((-588 $) $ (-129)) 61)) (-4187 (((-108) (-1 (-108) (-132) (-132)) $) NIL) (((-108) $) NIL (|has| (-132) (-784)))) (-3537 (($ (-1 (-108) (-132) (-132)) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| (-132) (-784))))) (-3216 (($ (-1 (-108) (-132) (-132)) $) NIL) (($ $) NIL (|has| (-132) (-784)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 (((-132) $ (-522) (-132)) 45 (|has| $ (-6 -4239))) (((-132) $ (-1133 (-522)) (-132)) NIL (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-2850 (($ $ (-132)) 64) (($ $ (-129)) 65)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2516 (($ $ (-1133 (-522)) $) 44)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1423 (($ (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014)))) (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-132) (-1 (-132) (-132) (-132)) $ (-132) (-132)) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014)))) (((-132) (-1 (-132) (-132) (-132)) $ (-132)) NIL (|has| $ (-6 -4238))) (((-132) (-1 (-132) (-132) (-132)) $) NIL (|has| $ (-6 -4238)))) (-3854 (((-132) $ (-522) (-132)) NIL (|has| $ (-6 -4239)))) (-3631 (((-132) $ (-522)) NIL)) (-3792 (((-108) $ $) 71)) (-3238 (((-522) (-1 (-108) (-132)) $) NIL) (((-522) (-132) $) NIL (|has| (-132) (-1014))) (((-522) (-132) $ (-522)) 48 (|has| (-132) (-1014))) (((-522) $ $ (-522)) 47) (((-522) (-129) $ (-522)) 50)) (-3837 (((-588 (-132)) $) NIL (|has| $ (-6 -4238)))) (-1811 (($ (-708) (-132)) 9)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) 28 (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| (-132) (-784)))) (-2160 (($ (-1 (-108) (-132) (-132)) $ $) NIL) (($ $ $) NIL (|has| (-132) (-784)))) (-3308 (((-588 (-132)) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-2014 (((-522) $) 42 (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| (-132) (-784)))) (-1455 (((-108) $ $ (-132)) 72)) (-4148 (((-708) $ $ (-132)) 70)) (-3838 (($ (-1 (-132) (-132)) $) 33 (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-132) (-132)) $) NIL) (($ (-1 (-132) (-132) (-132)) $ $) NIL)) (-1909 (($ $) 37)) (-2390 (($ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2862 (($ $ (-132)) 62) (($ $ (-129)) 63)) (-2385 (((-1068) $) 38 (|has| (-132) (-1014)))) (-1661 (($ (-132) $ (-522)) NIL) (($ $ $ (-522)) 23)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-522) $) 69) (((-1032) $) NIL (|has| (-132) (-1014)))) (-2294 (((-132) $) NIL (|has| (-522) (-784)))) (-1414 (((-3 (-132) "failed") (-1 (-108) (-132)) $) NIL)) (-2602 (($ $ (-132)) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-132)))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-270 (-132))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-132) (-132)) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-588 (-132)) (-588 (-132))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1525 (((-588 (-132)) $) NIL)) (-3985 (((-108) $) 12)) (-3775 (($) 10)) (-2545 (((-132) $ (-522) (-132)) NIL) (((-132) $ (-522)) 52) (($ $ (-1133 (-522))) 21) (($ $ $) NIL)) (-3696 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4168 (((-708) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238))) (((-708) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1577 (($ $ $ (-522)) 66 (|has| $ (-6 -4239)))) (-2404 (($ $) 17)) (-1431 (((-498) $) NIL (|has| (-132) (-563 (-498))))) (-2201 (($ (-588 (-132))) NIL)) (-4165 (($ $ (-132)) NIL) (($ (-132) $) NIL) (($ $ $) 16) (($ (-588 $)) 67)) (-2190 (($ (-132)) NIL) (((-792) $) 27 (|has| (-132) (-562 (-792))))) (-3648 (((-108) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) NIL (|has| (-132) (-784)))) (-1558 (((-108) $ $) NIL (|has| (-132) (-784)))) (-1531 (((-108) $ $) 14 (|has| (-132) (-1014)))) (-1566 (((-108) $ $) NIL (|has| (-132) (-784)))) (-1549 (((-108) $ $) 15 (|has| (-132) (-784)))) (-3480 (((-708) $) 13 (|has| $ (-6 -4238)))))
-(((-545 |#1|) (-13 (-1054) (-10 -8 (-15 -4151 ((-522) $)))) (-522)) (T -545))
-((-4151 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-545 *3)) (-14 *3 *2))))
-(-13 (-1054) (-10 -8 (-15 -4151 ((-522) $))))
-((-3518 (((-2 (|:| |num| |#4|) (|:| |den| (-522))) |#4| |#2|) 23) (((-2 (|:| |num| |#4|) (|:| |den| (-522))) |#4| |#2| (-1009 |#4|)) 32)))
-(((-546 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3518 ((-2 (|:| |num| |#4|) (|:| |den| (-522))) |#4| |#2| (-1009 |#4|))) (-15 -3518 ((-2 (|:| |num| |#4|) (|:| |den| (-522))) |#4| |#2|))) (-730) (-784) (-514) (-878 |#3| |#1| |#2|)) (T -546))
-((-3518 (*1 *2 *3 *4) (-12 (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-514)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-522)))) (-5 *1 (-546 *5 *4 *6 *3)) (-4 *3 (-878 *6 *5 *4)))) (-3518 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1009 *3)) (-4 *3 (-878 *7 *6 *4)) (-4 *6 (-730)) (-4 *4 (-784)) (-4 *7 (-514)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-522)))) (-5 *1 (-546 *6 *4 *7 *3)))))
-(-10 -7 (-15 -3518 ((-2 (|:| |num| |#4|) (|:| |den| (-522))) |#4| |#2| (-1009 |#4|))) (-15 -3518 ((-2 (|:| |num| |#4|) (|:| |den| (-522))) |#4| |#2|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 63)) (-4090 (((-588 (-999)) $) NIL)) (-1611 (((-1085) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-2789 (($ $ (-522)) 54) (($ $ (-522) (-522)) 55)) (-2258 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) 60)) (-1252 (($ $) 100)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3099 (((-792) (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) (-951 (-777 (-522))) (-1085) |#1| (-382 (-522))) 215)) (-2773 (($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) 34)) (-3175 (($) NIL T CONST)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3390 (((-108) $) NIL)) (-3714 (((-522) $) 58) (((-522) $ (-522)) 59)) (-2782 (((-108) $) NIL)) (-2073 (($ $ (-850)) 76)) (-3950 (($ (-1 |#1| (-522)) $) 73)) (-3340 (((-108) $) 25)) (-4049 (($ |#1| (-522)) 22) (($ $ (-999) (-522)) NIL) (($ $ (-588 (-999)) (-588 (-522))) NIL)) (-1391 (($ (-1 |#1| |#1|) $) 67)) (-3178 (($ (-951 (-777 (-522))) (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) 11)) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-1858 (($ $) 112 (|has| |#1| (-37 (-382 (-522)))))) (-2275 (((-3 $ "failed") $ $ (-108)) 99)) (-4057 (($ $ $) 108)) (-4151 (((-1032) $) NIL)) (-3669 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) 13)) (-2102 (((-951 (-777 (-522))) $) 12)) (-3719 (($ $ (-522)) 45)) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2289 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-522)))))) (-2545 ((|#1| $ (-522)) 57) (($ $ $) NIL (|has| (-522) (-1026)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-522) |#1|)))) (($ $) 70 (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (-2793 (((-522) $) NIL)) (-1522 (($ $) 46)) (-2190 (((-792) $) NIL) (($ (-522)) 28) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514))) (($ |#1|) 27 (|has| |#1| (-157)))) (-3243 ((|#1| $ (-522)) 56)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) 37)) (-1893 ((|#1| $) NIL)) (-4198 (($ $) 180 (|has| |#1| (-37 (-382 (-522)))))) (-1848 (($ $) 156 (|has| |#1| (-37 (-382 (-522)))))) (-3492 (($ $) 177 (|has| |#1| (-37 (-382 (-522)))))) (-1277 (($ $) 153 (|has| |#1| (-37 (-382 (-522)))))) (-3361 (($ $) 182 (|has| |#1| (-37 (-382 (-522)))))) (-3711 (($ $) 159 (|has| |#1| (-37 (-382 (-522)))))) (-1731 (($ $ (-382 (-522))) 146 (|has| |#1| (-37 (-382 (-522)))))) (-2810 (($ $ |#1|) 121 (|has| |#1| (-37 (-382 (-522)))))) (-2918 (($ $) 150 (|has| |#1| (-37 (-382 (-522)))))) (-1412 (($ $) 148 (|has| |#1| (-37 (-382 (-522)))))) (-3031 (($ $) 183 (|has| |#1| (-37 (-382 (-522)))))) (-3086 (($ $) 160 (|has| |#1| (-37 (-382 (-522)))))) (-1971 (($ $) 181 (|has| |#1| (-37 (-382 (-522)))))) (-1329 (($ $) 158 (|has| |#1| (-37 (-382 (-522)))))) (-2164 (($ $) 178 (|has| |#1| (-37 (-382 (-522)))))) (-3927 (($ $) 154 (|has| |#1| (-37 (-382 (-522)))))) (-1669 (($ $) 188 (|has| |#1| (-37 (-382 (-522)))))) (-2968 (($ $) 168 (|has| |#1| (-37 (-382 (-522)))))) (-4006 (($ $) 185 (|has| |#1| (-37 (-382 (-522)))))) (-1972 (($ $) 163 (|has| |#1| (-37 (-382 (-522)))))) (-3036 (($ $) 192 (|has| |#1| (-37 (-382 (-522)))))) (-1567 (($ $) 172 (|has| |#1| (-37 (-382 (-522)))))) (-2060 (($ $) 194 (|has| |#1| (-37 (-382 (-522)))))) (-3848 (($ $) 174 (|has| |#1| (-37 (-382 (-522)))))) (-3393 (($ $) 190 (|has| |#1| (-37 (-382 (-522)))))) (-2284 (($ $) 170 (|has| |#1| (-37 (-382 (-522)))))) (-3707 (($ $) 187 (|has| |#1| (-37 (-382 (-522)))))) (-4217 (($ $) 166 (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3898 ((|#1| $ (-522)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-522)))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 29 T CONST)) (-3577 (($) 38 T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-522) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (-1531 (((-108) $ $) 65)) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $) 84) (($ $ $) 64)) (-1602 (($ $ $) 81)) (** (($ $ (-850)) NIL) (($ $ (-708)) 103)) (* (($ (-850) $) 89) (($ (-708) $) 87) (($ (-522) $) 85) (($ $ $) 95) (($ $ |#1|) NIL) (($ |#1| $) 115) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
-(((-547 |#1|) (-13 (-1144 |#1| (-522)) (-10 -8 (-15 -3178 ($ (-951 (-777 (-522))) (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))))) (-15 -2102 ((-951 (-777 (-522))) $)) (-15 -3669 ((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $)) (-15 -2773 ($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))))) (-15 -3340 ((-108) $)) (-15 -3950 ($ (-1 |#1| (-522)) $)) (-15 -2275 ((-3 $ "failed") $ $ (-108))) (-15 -1252 ($ $)) (-15 -4057 ($ $ $)) (-15 -3099 ((-792) (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) (-951 (-777 (-522))) (-1085) |#1| (-382 (-522)))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -1858 ($ $)) (-15 -2810 ($ $ |#1|)) (-15 -1731 ($ $ (-382 (-522)))) (-15 -1412 ($ $)) (-15 -2918 ($ $)) (-15 -1277 ($ $)) (-15 -3927 ($ $)) (-15 -1848 ($ $)) (-15 -1329 ($ $)) (-15 -3711 ($ $)) (-15 -3086 ($ $)) (-15 -1972 ($ $)) (-15 -4217 ($ $)) (-15 -2968 ($ $)) (-15 -2284 ($ $)) (-15 -1567 ($ $)) (-15 -3848 ($ $)) (-15 -3492 ($ $)) (-15 -2164 ($ $)) (-15 -4198 ($ $)) (-15 -1971 ($ $)) (-15 -3361 ($ $)) (-15 -3031 ($ $)) (-15 -4006 ($ $)) (-15 -3707 ($ $)) (-15 -1669 ($ $)) (-15 -3393 ($ $)) (-15 -3036 ($ $)) (-15 -2060 ($ $))) |%noBranch|))) (-971)) (T -547))
-((-3340 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-547 *3)) (-4 *3 (-971)))) (-3178 (*1 *1 *2 *3) (-12 (-5 *2 (-951 (-777 (-522)))) (-5 *3 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *4)))) (-4 *4 (-971)) (-5 *1 (-547 *4)))) (-2102 (*1 *2 *1) (-12 (-5 *2 (-951 (-777 (-522)))) (-5 *1 (-547 *3)) (-4 *3 (-971)))) (-3669 (*1 *2 *1) (-12 (-5 *2 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *3)))) (-5 *1 (-547 *3)) (-4 *3 (-971)))) (-2773 (*1 *1 *2) (-12 (-5 *2 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *3)))) (-4 *3 (-971)) (-5 *1 (-547 *3)))) (-3950 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-522))) (-4 *3 (-971)) (-5 *1 (-547 *3)))) (-2275 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-108)) (-5 *1 (-547 *3)) (-4 *3 (-971)))) (-1252 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-971)))) (-4057 (*1 *1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-971)))) (-3099 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *6)))) (-5 *4 (-951 (-777 (-522)))) (-5 *5 (-1085)) (-5 *7 (-382 (-522))) (-4 *6 (-971)) (-5 *2 (-792)) (-5 *1 (-547 *6)))) (-1858 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2810 (*1 *1 *1 *2) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1731 (*1 *1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-547 *3)) (-4 *3 (-37 *2)) (-4 *3 (-971)))) (-1412 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2918 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1277 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3927 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1848 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1329 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3711 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3086 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1972 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-4217 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2968 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2284 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1567 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3848 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3492 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2164 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-4198 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1971 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3361 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3031 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-4006 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3707 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1669 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3393 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3036 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2060 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(-13 (-1144 |#1| (-522)) (-10 -8 (-15 -3178 ($ (-951 (-777 (-522))) (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))))) (-15 -2102 ((-951 (-777 (-522))) $)) (-15 -3669 ((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $)) (-15 -2773 ($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))))) (-15 -3340 ((-108) $)) (-15 -3950 ($ (-1 |#1| (-522)) $)) (-15 -2275 ((-3 $ "failed") $ $ (-108))) (-15 -1252 ($ $)) (-15 -4057 ($ $ $)) (-15 -3099 ((-792) (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) (-951 (-777 (-522))) (-1085) |#1| (-382 (-522)))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -1858 ($ $)) (-15 -2810 ($ $ |#1|)) (-15 -1731 ($ $ (-382 (-522)))) (-15 -1412 ($ $)) (-15 -2918 ($ $)) (-15 -1277 ($ $)) (-15 -3927 ($ $)) (-15 -1848 ($ $)) (-15 -1329 ($ $)) (-15 -3711 ($ $)) (-15 -3086 ($ $)) (-15 -1972 ($ $)) (-15 -4217 ($ $)) (-15 -2968 ($ $)) (-15 -2284 ($ $)) (-15 -1567 ($ $)) (-15 -3848 ($ $)) (-15 -3492 ($ $)) (-15 -2164 ($ $)) (-15 -4198 ($ $)) (-15 -1971 ($ $)) (-15 -3361 ($ $)) (-15 -3031 ($ $)) (-15 -4006 ($ $)) (-15 -3707 ($ $)) (-15 -1669 ($ $)) (-15 -3393 ($ $)) (-15 -3036 ($ $)) (-15 -2060 ($ $))) |%noBranch|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-2773 (($ (-1066 |#1|)) 9)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) 42)) (-3390 (((-108) $) 52)) (-3714 (((-708) $) 55) (((-708) $ (-708)) 54)) (-2782 (((-108) $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2232 (((-3 $ "failed") $ $) 44 (|has| |#1| (-514)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL (|has| |#1| (-514)))) (-3916 (((-1066 |#1|) $) 23)) (-2323 (((-708)) 51)) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 10 T CONST)) (-3577 (($) 14 T CONST)) (-1531 (((-108) $ $) 22)) (-1612 (($ $) 30) (($ $ $) 16)) (-1602 (($ $ $) 25)) (** (($ $ (-850)) NIL) (($ $ (-708)) 49)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 34) (($ $ $) 28) (($ |#1| $) 37) (($ $ |#1|) 38) (($ $ (-522)) 36)))
-(((-548 |#1|) (-13 (-971) (-10 -8 (-15 -3916 ((-1066 |#1|) $)) (-15 -2773 ($ (-1066 |#1|))) (-15 -3390 ((-108) $)) (-15 -3714 ((-708) $)) (-15 -3714 ((-708) $ (-708))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-522))) (IF (|has| |#1| (-514)) (-6 (-514)) |%noBranch|))) (-971)) (T -548))
-((-3916 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-548 *3)) (-4 *3 (-971)))) (-2773 (*1 *1 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-548 *3)))) (-3390 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-548 *3)) (-4 *3 (-971)))) (-3714 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-548 *3)) (-4 *3 (-971)))) (-3714 (*1 *2 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-548 *3)) (-4 *3 (-971)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-971)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-548 *2)) (-4 *2 (-971)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-548 *3)) (-4 *3 (-971)))))
-(-13 (-971) (-10 -8 (-15 -3916 ((-1066 |#1|) $)) (-15 -2773 ($ (-1066 |#1|))) (-15 -3390 ((-108) $)) (-15 -3714 ((-708) $)) (-15 -3714 ((-708) $ (-708))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-522))) (IF (|has| |#1| (-514)) (-6 (-514)) |%noBranch|)))
-((-1391 (((-552 |#2|) (-1 |#2| |#1|) (-552 |#1|)) 15)))
-(((-549 |#1| |#2|) (-10 -7 (-15 -1391 ((-552 |#2|) (-1 |#2| |#1|) (-552 |#1|)))) (-1120) (-1120)) (T -549))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-552 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-552 *6)) (-5 *1 (-549 *5 *6)))))
-(-10 -7 (-15 -1391 ((-552 |#2|) (-1 |#2| |#1|) (-552 |#1|))))
-((-1391 (((-1066 |#3|) (-1 |#3| |#1| |#2|) (-552 |#1|) (-1066 |#2|)) 20) (((-1066 |#3|) (-1 |#3| |#1| |#2|) (-1066 |#1|) (-552 |#2|)) 19) (((-552 |#3|) (-1 |#3| |#1| |#2|) (-552 |#1|) (-552 |#2|)) 18)))
-(((-550 |#1| |#2| |#3|) (-10 -7 (-15 -1391 ((-552 |#3|) (-1 |#3| |#1| |#2|) (-552 |#1|) (-552 |#2|))) (-15 -1391 ((-1066 |#3|) (-1 |#3| |#1| |#2|) (-1066 |#1|) (-552 |#2|))) (-15 -1391 ((-1066 |#3|) (-1 |#3| |#1| |#2|) (-552 |#1|) (-1066 |#2|)))) (-1120) (-1120) (-1120)) (T -550))
-((-1391 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-552 *6)) (-5 *5 (-1066 *7)) (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-1066 *8)) (-5 *1 (-550 *6 *7 *8)))) (-1391 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1066 *6)) (-5 *5 (-552 *7)) (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-1066 *8)) (-5 *1 (-550 *6 *7 *8)))) (-1391 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-552 *6)) (-5 *5 (-552 *7)) (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-552 *8)) (-5 *1 (-550 *6 *7 *8)))))
-(-10 -7 (-15 -1391 ((-552 |#3|) (-1 |#3| |#1| |#2|) (-552 |#1|) (-552 |#2|))) (-15 -1391 ((-1066 |#3|) (-1 |#3| |#1| |#2|) (-1066 |#1|) (-552 |#2|))) (-15 -1391 ((-1066 |#3|) (-1 |#3| |#1| |#2|) (-552 |#1|) (-1066 |#2|))))
-((-4145 ((|#3| |#3| (-588 (-561 |#3|)) (-588 (-1085))) 55)) (-2650 (((-154 |#2|) |#3|) 116)) (-3199 ((|#3| (-154 |#2|)) 43)) (-1996 ((|#2| |#3|) 19)) (-3889 ((|#3| |#2|) 32)))
-(((-551 |#1| |#2| |#3|) (-10 -7 (-15 -3199 (|#3| (-154 |#2|))) (-15 -1996 (|#2| |#3|)) (-15 -3889 (|#3| |#2|)) (-15 -2650 ((-154 |#2|) |#3|)) (-15 -4145 (|#3| |#3| (-588 (-561 |#3|)) (-588 (-1085))))) (-13 (-514) (-784)) (-13 (-405 |#1|) (-928) (-1106)) (-13 (-405 (-154 |#1|)) (-928) (-1106))) (T -551))
-((-4145 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-588 (-561 *2))) (-5 *4 (-588 (-1085))) (-4 *2 (-13 (-405 (-154 *5)) (-928) (-1106))) (-4 *5 (-13 (-514) (-784))) (-5 *1 (-551 *5 *6 *2)) (-4 *6 (-13 (-405 *5) (-928) (-1106))))) (-2650 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784))) (-5 *2 (-154 *5)) (-5 *1 (-551 *4 *5 *3)) (-4 *5 (-13 (-405 *4) (-928) (-1106))) (-4 *3 (-13 (-405 (-154 *4)) (-928) (-1106))))) (-3889 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784))) (-4 *2 (-13 (-405 (-154 *4)) (-928) (-1106))) (-5 *1 (-551 *4 *3 *2)) (-4 *3 (-13 (-405 *4) (-928) (-1106))))) (-1996 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784))) (-4 *2 (-13 (-405 *4) (-928) (-1106))) (-5 *1 (-551 *4 *2 *3)) (-4 *3 (-13 (-405 (-154 *4)) (-928) (-1106))))) (-3199 (*1 *2 *3) (-12 (-5 *3 (-154 *5)) (-4 *5 (-13 (-405 *4) (-928) (-1106))) (-4 *4 (-13 (-514) (-784))) (-4 *2 (-13 (-405 (-154 *4)) (-928) (-1106))) (-5 *1 (-551 *4 *5 *2)))))
-(-10 -7 (-15 -3199 (|#3| (-154 |#2|))) (-15 -1996 (|#2| |#3|)) (-15 -3889 (|#3| |#2|)) (-15 -2650 ((-154 |#2|) |#3|)) (-15 -4145 (|#3| |#3| (-588 (-561 |#3|)) (-588 (-1085)))))
-((-1628 (($ (-1 (-108) |#1|) $) 16)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-1578 (($ (-1 |#1| |#1|) |#1|) 9)) (-1614 (($ (-1 (-108) |#1|) $) 12)) (-1622 (($ (-1 (-108) |#1|) $) 14)) (-2201 (((-1066 |#1|) $) 17)) (-2190 (((-792) $) NIL)))
-(((-552 |#1|) (-13 (-562 (-792)) (-10 -8 (-15 -1391 ($ (-1 |#1| |#1|) $)) (-15 -1614 ($ (-1 (-108) |#1|) $)) (-15 -1622 ($ (-1 (-108) |#1|) $)) (-15 -1628 ($ (-1 (-108) |#1|) $)) (-15 -1578 ($ (-1 |#1| |#1|) |#1|)) (-15 -2201 ((-1066 |#1|) $)))) (-1120)) (T -552))
-((-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3)))) (-1614 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3)))) (-1622 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3)))) (-1628 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3)))) (-1578 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3)))) (-2201 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-552 *3)) (-4 *3 (-1120)))))
-(-13 (-562 (-792)) (-10 -8 (-15 -1391 ($ (-1 |#1| |#1|) $)) (-15 -1614 ($ (-1 (-108) |#1|) $)) (-15 -1622 ($ (-1 (-108) |#1|) $)) (-15 -1628 ($ (-1 (-108) |#1|) $)) (-15 -1578 ($ (-1 |#1| |#1|) |#1|)) (-15 -2201 ((-1066 |#1|) $))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3483 (($ (-708)) NIL (|has| |#1| (-23)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-3537 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3216 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1423 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) NIL)) (-3238 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-3957 (((-628 |#1|) $ $) NIL (|has| |#1| (-971)))) (-1811 (($ (-708) |#1|) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2160 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2845 ((|#1| $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-971))))) (-2720 (((-108) $ (-708)) NIL)) (-2517 ((|#1| $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-971))))) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1661 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2294 ((|#1| $) NIL (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2602 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-1883 ((|#1| $ $) NIL (|has| |#1| (-971)))) (-3696 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-3230 (($ $ $) NIL (|has| |#1| (-971)))) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) NIL)) (-4165 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1612 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1602 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-522) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-664))) (($ $ |#1|) NIL (|has| |#1| (-664)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1816 (((-1171) (-1068)) 10)))
+(((-536) (-10 -7 (-15 -1816 ((-1171) (-1068))))) (T -536))
+((-1816 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-536)))))
+(-10 -7 (-15 -1816 ((-1171) (-1068))))
+((-3428 (((-539 |#2|) (-539 |#2|)) 38)) (-1663 (((-588 |#2|) (-539 |#2|)) 40)) (-1838 ((|#2| (-539 |#2|)) 47)))
+(((-537 |#1| |#2|) (-10 -7 (-15 -3428 ((-539 |#2|) (-539 |#2|))) (-15 -1663 ((-588 |#2|) (-539 |#2|))) (-15 -1838 (|#2| (-539 |#2|)))) (-13 (-426) (-962 (-522)) (-784) (-584 (-522))) (-13 (-29 |#1|) (-1106))) (T -537))
+((-1838 (*1 *2 *3) (-12 (-5 *3 (-539 *2)) (-4 *2 (-13 (-29 *4) (-1106))) (-5 *1 (-537 *4 *2)) (-4 *4 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))))) (-1663 (*1 *2 *3) (-12 (-5 *3 (-539 *5)) (-4 *5 (-13 (-29 *4) (-1106))) (-4 *4 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *2 (-588 *5)) (-5 *1 (-537 *4 *5)))) (-3428 (*1 *2 *2) (-12 (-5 *2 (-539 *4)) (-4 *4 (-13 (-29 *3) (-1106))) (-4 *3 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *1 (-537 *3 *4)))))
+(-10 -7 (-15 -3428 ((-539 |#2|) (-539 |#2|))) (-15 -1663 ((-588 |#2|) (-539 |#2|))) (-15 -1838 (|#2| (-539 |#2|))))
+((-3810 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 38) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed")) 31) (((-539 |#2|) (-1 |#2| |#1|) (-539 |#1|)) 26)))
+(((-538 |#1| |#2|) (-10 -7 (-15 -3810 ((-539 |#2|) (-1 |#2| |#1|) (-539 |#1|))) (-15 -3810 ((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -3810 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -3810 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-338) (-338)) (T -538))
+((-3810 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-338)) (-4 *6 (-338)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-538 *5 *6)))) (-3810 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-338)) (-4 *2 (-338)) (-5 *1 (-538 *5 *2)))) (-3810 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -2585 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-338)) (-4 *6 (-338)) (-5 *2 (-2 (|:| -2585 *6) (|:| |coeff| *6))) (-5 *1 (-538 *5 *6)))) (-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-539 *5)) (-4 *5 (-338)) (-4 *6 (-338)) (-5 *2 (-539 *6)) (-5 *1 (-538 *5 *6)))))
+(-10 -7 (-15 -3810 ((-539 |#2|) (-1 |#2| |#1|) (-539 |#1|))) (-15 -3810 ((-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2585 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -3810 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -3810 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) 69)) (-1478 ((|#1| $) NIL)) (-2585 ((|#1| $) 24)) (-2502 (((-588 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 26)) (-3749 (($ |#1| (-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 |#1|)) (|:| |logand| (-1081 |#1|)))) (-588 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 22)) (-3002 (((-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 |#1|)) (|:| |logand| (-1081 |#1|)))) $) 25)) (-2311 (((-1068) $) NIL)) (-2093 (($ |#1| |#1|) 32) (($ |#1| (-1085)) 43 (|has| |#1| (-962 (-1085))))) (-4174 (((-1032) $) NIL)) (-3966 (((-108) $) 28)) (-2731 ((|#1| $ (-1 |#1| |#1|)) 81) ((|#1| $ (-1085)) 82 (|has| |#1| (-829 (-1085))))) (-2217 (((-792) $) 96) (($ |#1|) 23)) (-3697 (($) 16 T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) 15) (($ $ $) NIL)) (-1661 (($ $ $) 78)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 14) (($ (-382 (-522)) $) 35) (($ $ (-382 (-522))) NIL)))
+(((-539 |#1|) (-13 (-655 (-382 (-522))) (-962 |#1|) (-10 -8 (-15 -3749 ($ |#1| (-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 |#1|)) (|:| |logand| (-1081 |#1|)))) (-588 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2585 (|#1| $)) (-15 -3002 ((-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 |#1|)) (|:| |logand| (-1081 |#1|)))) $)) (-15 -2502 ((-588 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3966 ((-108) $)) (-15 -2093 ($ |#1| |#1|)) (-15 -2731 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-829 (-1085))) (-15 -2731 (|#1| $ (-1085))) |%noBranch|) (IF (|has| |#1| (-962 (-1085))) (-15 -2093 ($ |#1| (-1085))) |%noBranch|))) (-338)) (T -539))
+((-3749 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 *2)) (|:| |logand| (-1081 *2))))) (-5 *4 (-588 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-338)) (-5 *1 (-539 *2)))) (-2585 (*1 *2 *1) (-12 (-5 *1 (-539 *2)) (-4 *2 (-338)))) (-3002 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 *3)) (|:| |logand| (-1081 *3))))) (-5 *1 (-539 *3)) (-4 *3 (-338)))) (-2502 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-539 *3)) (-4 *3 (-338)))) (-3966 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-539 *3)) (-4 *3 (-338)))) (-2093 (*1 *1 *2 *2) (-12 (-5 *1 (-539 *2)) (-4 *2 (-338)))) (-2731 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-539 *2)) (-4 *2 (-338)))) (-2731 (*1 *2 *1 *3) (-12 (-4 *2 (-338)) (-4 *2 (-829 *3)) (-5 *1 (-539 *2)) (-5 *3 (-1085)))) (-2093 (*1 *1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *1 (-539 *2)) (-4 *2 (-962 *3)) (-4 *2 (-338)))))
+(-13 (-655 (-382 (-522))) (-962 |#1|) (-10 -8 (-15 -3749 ($ |#1| (-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 |#1|)) (|:| |logand| (-1081 |#1|)))) (-588 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2585 (|#1| $)) (-15 -3002 ((-588 (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 |#1|)) (|:| |logand| (-1081 |#1|)))) $)) (-15 -2502 ((-588 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3966 ((-108) $)) (-15 -2093 ($ |#1| |#1|)) (-15 -2731 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-829 (-1085))) (-15 -2731 (|#1| $ (-1085))) |%noBranch|) (IF (|has| |#1| (-962 (-1085))) (-15 -2093 ($ |#1| (-1085))) |%noBranch|)))
+((-1501 (((-108) |#1|) 16)) (-3936 (((-3 |#1| "failed") |#1|) 14)) (-4215 (((-2 (|:| -1897 |#1|) (|:| -3858 (-708))) |#1|) 31) (((-3 |#1| "failed") |#1| (-708)) 18)) (-2179 (((-108) |#1| (-708)) 19)) (-3503 ((|#1| |#1|) 32)) (-4003 ((|#1| |#1| (-708)) 34)))
+(((-540 |#1|) (-10 -7 (-15 -2179 ((-108) |#1| (-708))) (-15 -4215 ((-3 |#1| "failed") |#1| (-708))) (-15 -4215 ((-2 (|:| -1897 |#1|) (|:| -3858 (-708))) |#1|)) (-15 -4003 (|#1| |#1| (-708))) (-15 -1501 ((-108) |#1|)) (-15 -3936 ((-3 |#1| "failed") |#1|)) (-15 -3503 (|#1| |#1|))) (-507)) (T -540))
+((-3503 (*1 *2 *2) (-12 (-5 *1 (-540 *2)) (-4 *2 (-507)))) (-3936 (*1 *2 *2) (|partial| -12 (-5 *1 (-540 *2)) (-4 *2 (-507)))) (-1501 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-540 *3)) (-4 *3 (-507)))) (-4003 (*1 *2 *2 *3) (-12 (-5 *3 (-708)) (-5 *1 (-540 *2)) (-4 *2 (-507)))) (-4215 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -1897 *3) (|:| -3858 (-708)))) (-5 *1 (-540 *3)) (-4 *3 (-507)))) (-4215 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-708)) (-5 *1 (-540 *2)) (-4 *2 (-507)))) (-2179 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-5 *2 (-108)) (-5 *1 (-540 *3)) (-4 *3 (-507)))))
+(-10 -7 (-15 -2179 ((-108) |#1| (-708))) (-15 -4215 ((-3 |#1| "failed") |#1| (-708))) (-15 -4215 ((-2 (|:| -1897 |#1|) (|:| -3858 (-708))) |#1|)) (-15 -4003 (|#1| |#1| (-708))) (-15 -1501 ((-108) |#1|)) (-15 -3936 ((-3 |#1| "failed") |#1|)) (-15 -3503 (|#1| |#1|)))
+((-1871 (((-1081 |#1|) (-850)) 27)))
+(((-541 |#1|) (-10 -7 (-15 -1871 ((-1081 |#1|) (-850)))) (-324)) (T -541))
+((-1871 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-541 *4)) (-4 *4 (-324)))))
+(-10 -7 (-15 -1871 ((-1081 |#1|) (-850))))
+((-3428 (((-539 (-382 (-881 |#1|))) (-539 (-382 (-881 |#1|)))) 26)) (-2611 (((-3 (-291 |#1|) (-588 (-291 |#1|))) (-382 (-881 |#1|)) (-1085)) 32 (|has| |#1| (-135)))) (-1663 (((-588 (-291 |#1|)) (-539 (-382 (-881 |#1|)))) 18)) (-3746 (((-291 |#1|) (-382 (-881 |#1|)) (-1085)) 30 (|has| |#1| (-135)))) (-1838 (((-291 |#1|) (-539 (-382 (-881 |#1|)))) 20)))
+(((-542 |#1|) (-10 -7 (-15 -3428 ((-539 (-382 (-881 |#1|))) (-539 (-382 (-881 |#1|))))) (-15 -1663 ((-588 (-291 |#1|)) (-539 (-382 (-881 |#1|))))) (-15 -1838 ((-291 |#1|) (-539 (-382 (-881 |#1|))))) (IF (|has| |#1| (-135)) (PROGN (-15 -2611 ((-3 (-291 |#1|) (-588 (-291 |#1|))) (-382 (-881 |#1|)) (-1085))) (-15 -3746 ((-291 |#1|) (-382 (-881 |#1|)) (-1085)))) |%noBranch|)) (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (T -542))
+((-3746 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-135)) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *2 (-291 *5)) (-5 *1 (-542 *5)))) (-2611 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-135)) (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *2 (-3 (-291 *5) (-588 (-291 *5)))) (-5 *1 (-542 *5)))) (-1838 (*1 *2 *3) (-12 (-5 *3 (-539 (-382 (-881 *4)))) (-4 *4 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *2 (-291 *4)) (-5 *1 (-542 *4)))) (-1663 (*1 *2 *3) (-12 (-5 *3 (-539 (-382 (-881 *4)))) (-4 *4 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *2 (-588 (-291 *4))) (-5 *1 (-542 *4)))) (-3428 (*1 *2 *2) (-12 (-5 *2 (-539 (-382 (-881 *3)))) (-4 *3 (-13 (-426) (-962 (-522)) (-784) (-584 (-522)))) (-5 *1 (-542 *3)))))
+(-10 -7 (-15 -3428 ((-539 (-382 (-881 |#1|))) (-539 (-382 (-881 |#1|))))) (-15 -1663 ((-588 (-291 |#1|)) (-539 (-382 (-881 |#1|))))) (-15 -1838 ((-291 |#1|) (-539 (-382 (-881 |#1|))))) (IF (|has| |#1| (-135)) (PROGN (-15 -2611 ((-3 (-291 |#1|) (-588 (-291 |#1|))) (-382 (-881 |#1|)) (-1085))) (-15 -3746 ((-291 |#1|) (-382 (-881 |#1|)) (-1085)))) |%noBranch|))
+((-2691 (((-588 (-628 (-522))) (-588 (-522)) (-588 (-834 (-522)))) 46) (((-588 (-628 (-522))) (-588 (-522))) 47) (((-628 (-522)) (-588 (-522)) (-834 (-522))) 42)) (-2446 (((-708) (-588 (-522))) 40)))
+(((-543) (-10 -7 (-15 -2446 ((-708) (-588 (-522)))) (-15 -2691 ((-628 (-522)) (-588 (-522)) (-834 (-522)))) (-15 -2691 ((-588 (-628 (-522))) (-588 (-522)))) (-15 -2691 ((-588 (-628 (-522))) (-588 (-522)) (-588 (-834 (-522))))))) (T -543))
+((-2691 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-522))) (-5 *4 (-588 (-834 (-522)))) (-5 *2 (-588 (-628 (-522)))) (-5 *1 (-543)))) (-2691 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-588 (-628 (-522)))) (-5 *1 (-543)))) (-2691 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-522))) (-5 *4 (-834 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-543)))) (-2446 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-708)) (-5 *1 (-543)))))
+(-10 -7 (-15 -2446 ((-708) (-588 (-522)))) (-15 -2691 ((-628 (-522)) (-588 (-522)) (-834 (-522)))) (-15 -2691 ((-588 (-628 (-522))) (-588 (-522)))) (-15 -2691 ((-588 (-628 (-522))) (-588 (-522)) (-588 (-834 (-522))))))
+((-3452 (((-588 |#5|) |#5| (-108)) 73)) (-1326 (((-108) |#5| (-588 |#5|)) 30)))
+(((-544 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3452 ((-588 |#5|) |#5| (-108))) (-15 -1326 ((-108) |#5| (-588 |#5|)))) (-13 (-283) (-135)) (-730) (-784) (-985 |#1| |#2| |#3|) (-1023 |#1| |#2| |#3| |#4|)) (T -544))
+((-1326 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-1023 *5 *6 *7 *8)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-544 *5 *6 *7 *8 *3)))) (-3452 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-588 *3)) (-5 *1 (-544 *5 *6 *7 *8 *3)) (-4 *3 (-1023 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3452 ((-588 |#5|) |#5| (-108))) (-15 -1326 ((-108) |#5| (-588 |#5|))))
+((-1419 (((-108) $ $) NIL (|has| (-132) (-1014)))) (-2828 (($ $) 34)) (-4140 (($ $) NIL)) (-2334 (($ $ (-132)) NIL) (($ $ (-129)) NIL)) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-3900 (((-108) $ $) 51)) (-3876 (((-108) $ $ (-522)) 46)) (-3428 (((-588 $) $ (-132)) 60) (((-588 $) $ (-129)) 61)) (-1866 (((-108) (-1 (-108) (-132) (-132)) $) NIL) (((-108) $) NIL (|has| (-132) (-784)))) (-2806 (($ (-1 (-108) (-132) (-132)) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| (-132) (-784))))) (-3296 (($ (-1 (-108) (-132) (-132)) $) NIL) (($ $) NIL (|has| (-132) (-784)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 (((-132) $ (-522) (-132)) 45 (|has| $ (-6 -4239))) (((-132) $ (-1133 (-522)) (-132)) NIL (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2979 (($ $ (-132)) 64) (($ $ (-129)) 65)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-4029 (($ $ (-1133 (-522)) $) 44)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1424 (($ (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014)))) (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-132) (-1 (-132) (-132) (-132)) $ (-132) (-132)) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014)))) (((-132) (-1 (-132) (-132) (-132)) $ (-132)) NIL (|has| $ (-6 -4238))) (((-132) (-1 (-132) (-132) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2411 (((-132) $ (-522) (-132)) NIL (|has| $ (-6 -4239)))) (-2186 (((-132) $ (-522)) NIL)) (-3928 (((-108) $ $) 71)) (-3314 (((-522) (-1 (-108) (-132)) $) NIL) (((-522) (-132) $) NIL (|has| (-132) (-1014))) (((-522) (-132) $ (-522)) 48 (|has| (-132) (-1014))) (((-522) $ $ (-522)) 47) (((-522) (-129) $ (-522)) 50)) (-2395 (((-588 (-132)) $) NIL (|has| $ (-6 -4238)))) (-1893 (($ (-708) (-132)) 9)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) 28 (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| (-132) (-784)))) (-3164 (($ (-1 (-108) (-132) (-132)) $ $) NIL) (($ $ $) NIL (|has| (-132) (-784)))) (-4084 (((-588 (-132)) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-2201 (((-522) $) 42 (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| (-132) (-784)))) (-1445 (((-108) $ $ (-132)) 72)) (-4171 (((-708) $ $ (-132)) 70)) (-2397 (($ (-1 (-132) (-132)) $) 33 (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-132) (-132)) $) NIL) (($ (-1 (-132) (-132) (-132)) $ $) NIL)) (-1219 (($ $) 37)) (-2369 (($ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2992 (($ $ (-132)) 62) (($ $ (-129)) 63)) (-2311 (((-1068) $) 38 (|has| (-132) (-1014)))) (-1731 (($ (-132) $ (-522)) NIL) (($ $ $ (-522)) 23)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-522) $) 69) (((-1032) $) NIL (|has| (-132) (-1014)))) (-2337 (((-132) $) NIL (|has| (-522) (-784)))) (-2187 (((-3 (-132) "failed") (-1 (-108) (-132)) $) NIL)) (-1972 (($ $ (-132)) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-132)))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-270 (-132))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-132) (-132)) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-588 (-132)) (-588 (-132))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1973 (((-588 (-132)) $) NIL)) (-3494 (((-108) $) 12)) (-3298 (($) 10)) (-2683 (((-132) $ (-522) (-132)) NIL) (((-132) $ (-522)) 52) (($ $ (-1133 (-522))) 21) (($ $ $) NIL)) (-3835 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4187 (((-708) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238))) (((-708) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-3629 (($ $ $ (-522)) 66 (|has| $ (-6 -4239)))) (-2463 (($ $) 17)) (-3873 (((-498) $) NIL (|has| (-132) (-563 (-498))))) (-2227 (($ (-588 (-132))) NIL)) (-4170 (($ $ (-132)) NIL) (($ (-132) $) NIL) (($ $ $) 16) (($ (-588 $)) 67)) (-2217 (($ (-132)) NIL) (((-792) $) 27 (|has| (-132) (-562 (-792))))) (-1381 (((-108) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) NIL (|has| (-132) (-784)))) (-1597 (((-108) $ $) NIL (|has| (-132) (-784)))) (-1562 (((-108) $ $) 14 (|has| (-132) (-1014)))) (-1609 (((-108) $ $) NIL (|has| (-132) (-784)))) (-1587 (((-108) $ $) 15 (|has| (-132) (-784)))) (-3591 (((-708) $) 13 (|has| $ (-6 -4238)))))
+(((-545 |#1|) (-13 (-1054) (-10 -8 (-15 -4174 ((-522) $)))) (-522)) (T -545))
+((-4174 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-545 *3)) (-14 *3 *2))))
+(-13 (-1054) (-10 -8 (-15 -4174 ((-522) $))))
+((-3640 (((-2 (|:| |num| |#4|) (|:| |den| (-522))) |#4| |#2|) 23) (((-2 (|:| |num| |#4|) (|:| |den| (-522))) |#4| |#2| (-1009 |#4|)) 32)))
+(((-546 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3640 ((-2 (|:| |num| |#4|) (|:| |den| (-522))) |#4| |#2| (-1009 |#4|))) (-15 -3640 ((-2 (|:| |num| |#4|) (|:| |den| (-522))) |#4| |#2|))) (-730) (-784) (-514) (-878 |#3| |#1| |#2|)) (T -546))
+((-3640 (*1 *2 *3 *4) (-12 (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-514)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-522)))) (-5 *1 (-546 *5 *4 *6 *3)) (-4 *3 (-878 *6 *5 *4)))) (-3640 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1009 *3)) (-4 *3 (-878 *7 *6 *4)) (-4 *6 (-730)) (-4 *4 (-784)) (-4 *7 (-514)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-522)))) (-5 *1 (-546 *6 *4 *7 *3)))))
+(-10 -7 (-15 -3640 ((-2 (|:| |num| |#4|) (|:| |den| (-522))) |#4| |#2| (-1009 |#4|))) (-15 -3640 ((-2 (|:| |num| |#4|) (|:| |den| (-522))) |#4| |#2|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 63)) (-3533 (((-588 (-999)) $) NIL)) (-1660 (((-1085) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3495 (($ $ (-522)) 54) (($ $ (-522) (-522)) 55)) (-3024 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) 60)) (-2504 (($ $) 100)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3892 (((-792) (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) (-951 (-777 (-522))) (-1085) |#1| (-382 (-522))) 215)) (-1270 (($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) 34)) (-3367 (($) NIL T CONST)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3672 (((-108) $) NIL)) (-3872 (((-522) $) 58) (((-522) $ (-522)) 59)) (-2859 (((-108) $) NIL)) (-2895 (($ $ (-850)) 76)) (-1332 (($ (-1 |#1| (-522)) $) 73)) (-1374 (((-108) $) 25)) (-3500 (($ |#1| (-522)) 22) (($ $ (-999) (-522)) NIL) (($ $ (-588 (-999)) (-588 (-522))) NIL)) (-3810 (($ (-1 |#1| |#1|) $) 67)) (-2188 (($ (-951 (-777 (-522))) (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) 11)) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-2611 (($ $) 112 (|has| |#1| (-37 (-382 (-522)))))) (-2232 (((-3 $ "failed") $ $ (-108)) 99)) (-3078 (($ $ $) 108)) (-4174 (((-1032) $) NIL)) (-1613 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) 13)) (-1288 (((-951 (-777 (-522))) $) 12)) (-3934 (($ $ (-522)) 45)) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2330 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-522)))))) (-2683 ((|#1| $ (-522)) 57) (($ $ $) NIL (|has| (-522) (-1026)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-522) |#1|)))) (($ $) 70 (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (-2487 (((-522) $) NIL)) (-1944 (($ $) 46)) (-2217 (((-792) $) NIL) (($ (-522)) 28) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514))) (($ |#1|) 27 (|has| |#1| (-157)))) (-1643 ((|#1| $ (-522)) 56)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) 37)) (-1980 ((|#1| $) NIL)) (-1970 (($ $) 180 (|has| |#1| (-37 (-382 (-522)))))) (-2470 (($ $) 156 (|has| |#1| (-37 (-382 (-522)))))) (-2268 (($ $) 177 (|has| |#1| (-37 (-382 (-522)))))) (-1498 (($ $) 153 (|has| |#1| (-37 (-382 (-522)))))) (-1570 (($ $) 182 (|has| |#1| (-37 (-382 (-522)))))) (-3837 (($ $) 159 (|has| |#1| (-37 (-382 (-522)))))) (-1345 (($ $ (-382 (-522))) 146 (|has| |#1| (-37 (-382 (-522)))))) (-2679 (($ $ |#1|) 121 (|has| |#1| (-37 (-382 (-522)))))) (-3514 (($ $) 150 (|has| |#1| (-37 (-382 (-522)))))) (-2166 (($ $) 148 (|has| |#1| (-37 (-382 (-522)))))) (-1438 (($ $) 183 (|has| |#1| (-37 (-382 (-522)))))) (-3761 (($ $) 160 (|has| |#1| (-37 (-382 (-522)))))) (-3085 (($ $) 181 (|has| |#1| (-37 (-382 (-522)))))) (-1977 (($ $) 158 (|has| |#1| (-37 (-382 (-522)))))) (-3194 (($ $) 178 (|has| |#1| (-37 (-382 (-522)))))) (-4122 (($ $) 154 (|has| |#1| (-37 (-382 (-522)))))) (-2603 (($ $) 188 (|has| |#1| (-37 (-382 (-522)))))) (-3986 (($ $) 168 (|has| |#1| (-37 (-382 (-522)))))) (-3680 (($ $) 185 (|has| |#1| (-37 (-382 (-522)))))) (-3093 (($ $) 163 (|has| |#1| (-37 (-382 (-522)))))) (-1499 (($ $) 192 (|has| |#1| (-37 (-382 (-522)))))) (-3552 (($ $) 172 (|has| |#1| (-37 (-382 (-522)))))) (-2771 (($ $) 194 (|has| |#1| (-37 (-382 (-522)))))) (-2873 (($ $) 174 (|has| |#1| (-37 (-382 (-522)))))) (-3691 (($ $) 190 (|has| |#1| (-37 (-382 (-522)))))) (-2324 (($ $) 170 (|has| |#1| (-37 (-382 (-522)))))) (-3797 (($ $) 187 (|has| |#1| (-37 (-382 (-522)))))) (-2156 (($ $) 166 (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3996 ((|#1| $ (-522)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-522)))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 29 T CONST)) (-3709 (($) 38 T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-522) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (-1562 (((-108) $ $) 65)) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $) 84) (($ $ $) 64)) (-1661 (($ $ $) 81)) (** (($ $ (-850)) NIL) (($ $ (-708)) 103)) (* (($ (-850) $) 89) (($ (-708) $) 87) (($ (-522) $) 85) (($ $ $) 95) (($ $ |#1|) NIL) (($ |#1| $) 115) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+(((-547 |#1|) (-13 (-1144 |#1| (-522)) (-10 -8 (-15 -2188 ($ (-951 (-777 (-522))) (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))))) (-15 -1288 ((-951 (-777 (-522))) $)) (-15 -1613 ((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $)) (-15 -1270 ($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))))) (-15 -1374 ((-108) $)) (-15 -1332 ($ (-1 |#1| (-522)) $)) (-15 -2232 ((-3 $ "failed") $ $ (-108))) (-15 -2504 ($ $)) (-15 -3078 ($ $ $)) (-15 -3892 ((-792) (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) (-951 (-777 (-522))) (-1085) |#1| (-382 (-522)))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -2611 ($ $)) (-15 -2679 ($ $ |#1|)) (-15 -1345 ($ $ (-382 (-522)))) (-15 -2166 ($ $)) (-15 -3514 ($ $)) (-15 -1498 ($ $)) (-15 -4122 ($ $)) (-15 -2470 ($ $)) (-15 -1977 ($ $)) (-15 -3837 ($ $)) (-15 -3761 ($ $)) (-15 -3093 ($ $)) (-15 -2156 ($ $)) (-15 -3986 ($ $)) (-15 -2324 ($ $)) (-15 -3552 ($ $)) (-15 -2873 ($ $)) (-15 -2268 ($ $)) (-15 -3194 ($ $)) (-15 -1970 ($ $)) (-15 -3085 ($ $)) (-15 -1570 ($ $)) (-15 -1438 ($ $)) (-15 -3680 ($ $)) (-15 -3797 ($ $)) (-15 -2603 ($ $)) (-15 -3691 ($ $)) (-15 -1499 ($ $)) (-15 -2771 ($ $))) |%noBranch|))) (-971)) (T -547))
+((-1374 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-547 *3)) (-4 *3 (-971)))) (-2188 (*1 *1 *2 *3) (-12 (-5 *2 (-951 (-777 (-522)))) (-5 *3 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *4)))) (-4 *4 (-971)) (-5 *1 (-547 *4)))) (-1288 (*1 *2 *1) (-12 (-5 *2 (-951 (-777 (-522)))) (-5 *1 (-547 *3)) (-4 *3 (-971)))) (-1613 (*1 *2 *1) (-12 (-5 *2 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *3)))) (-5 *1 (-547 *3)) (-4 *3 (-971)))) (-1270 (*1 *1 *2) (-12 (-5 *2 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *3)))) (-4 *3 (-971)) (-5 *1 (-547 *3)))) (-1332 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-522))) (-4 *3 (-971)) (-5 *1 (-547 *3)))) (-2232 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-108)) (-5 *1 (-547 *3)) (-4 *3 (-971)))) (-2504 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-971)))) (-3078 (*1 *1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-971)))) (-3892 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *6)))) (-5 *4 (-951 (-777 (-522)))) (-5 *5 (-1085)) (-5 *7 (-382 (-522))) (-4 *6 (-971)) (-5 *2 (-792)) (-5 *1 (-547 *6)))) (-2611 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2679 (*1 *1 *1 *2) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1345 (*1 *1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-547 *3)) (-4 *3 (-37 *2)) (-4 *3 (-971)))) (-2166 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3514 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1498 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-4122 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2470 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1977 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3837 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3761 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3093 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2156 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3986 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2324 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3552 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2873 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2268 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3194 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1970 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3085 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1570 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1438 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3680 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3797 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2603 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-3691 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-1499 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))) (-2771 (*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(-13 (-1144 |#1| (-522)) (-10 -8 (-15 -2188 ($ (-951 (-777 (-522))) (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))))) (-15 -1288 ((-951 (-777 (-522))) $)) (-15 -1613 ((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $)) (-15 -1270 ($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))))) (-15 -1374 ((-108) $)) (-15 -1332 ($ (-1 |#1| (-522)) $)) (-15 -2232 ((-3 $ "failed") $ $ (-108))) (-15 -2504 ($ $)) (-15 -3078 ($ $ $)) (-15 -3892 ((-792) (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) (-951 (-777 (-522))) (-1085) |#1| (-382 (-522)))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -2611 ($ $)) (-15 -2679 ($ $ |#1|)) (-15 -1345 ($ $ (-382 (-522)))) (-15 -2166 ($ $)) (-15 -3514 ($ $)) (-15 -1498 ($ $)) (-15 -4122 ($ $)) (-15 -2470 ($ $)) (-15 -1977 ($ $)) (-15 -3837 ($ $)) (-15 -3761 ($ $)) (-15 -3093 ($ $)) (-15 -2156 ($ $)) (-15 -3986 ($ $)) (-15 -2324 ($ $)) (-15 -3552 ($ $)) (-15 -2873 ($ $)) (-15 -2268 ($ $)) (-15 -3194 ($ $)) (-15 -1970 ($ $)) (-15 -3085 ($ $)) (-15 -1570 ($ $)) (-15 -1438 ($ $)) (-15 -3680 ($ $)) (-15 -3797 ($ $)) (-15 -2603 ($ $)) (-15 -3691 ($ $)) (-15 -1499 ($ $)) (-15 -2771 ($ $))) |%noBranch|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-1270 (($ (-1066 |#1|)) 9)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) 42)) (-3672 (((-108) $) 52)) (-3872 (((-708) $) 55) (((-708) $ (-708)) 54)) (-2859 (((-108) $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2276 (((-3 $ "failed") $ $) 44 (|has| |#1| (-514)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL (|has| |#1| (-514)))) (-2180 (((-1066 |#1|) $) 23)) (-2742 (((-708)) 51)) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 10 T CONST)) (-3709 (($) 14 T CONST)) (-1562 (((-108) $ $) 22)) (-1672 (($ $) 30) (($ $ $) 16)) (-1661 (($ $ $) 25)) (** (($ $ (-850)) NIL) (($ $ (-708)) 49)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 34) (($ $ $) 28) (($ |#1| $) 37) (($ $ |#1|) 38) (($ $ (-522)) 36)))
+(((-548 |#1|) (-13 (-971) (-10 -8 (-15 -2180 ((-1066 |#1|) $)) (-15 -1270 ($ (-1066 |#1|))) (-15 -3672 ((-108) $)) (-15 -3872 ((-708) $)) (-15 -3872 ((-708) $ (-708))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-522))) (IF (|has| |#1| (-514)) (-6 (-514)) |%noBranch|))) (-971)) (T -548))
+((-2180 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-548 *3)) (-4 *3 (-971)))) (-1270 (*1 *1 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-548 *3)))) (-3672 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-548 *3)) (-4 *3 (-971)))) (-3872 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-548 *3)) (-4 *3 (-971)))) (-3872 (*1 *2 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-548 *3)) (-4 *3 (-971)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-548 *2)) (-4 *2 (-971)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-548 *2)) (-4 *2 (-971)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-548 *3)) (-4 *3 (-971)))))
+(-13 (-971) (-10 -8 (-15 -2180 ((-1066 |#1|) $)) (-15 -1270 ($ (-1066 |#1|))) (-15 -3672 ((-108) $)) (-15 -3872 ((-708) $)) (-15 -3872 ((-708) $ (-708))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-522))) (IF (|has| |#1| (-514)) (-6 (-514)) |%noBranch|)))
+((-3810 (((-552 |#2|) (-1 |#2| |#1|) (-552 |#1|)) 15)))
+(((-549 |#1| |#2|) (-10 -7 (-15 -3810 ((-552 |#2|) (-1 |#2| |#1|) (-552 |#1|)))) (-1120) (-1120)) (T -549))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-552 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-552 *6)) (-5 *1 (-549 *5 *6)))))
+(-10 -7 (-15 -3810 ((-552 |#2|) (-1 |#2| |#1|) (-552 |#1|))))
+((-3810 (((-1066 |#3|) (-1 |#3| |#1| |#2|) (-552 |#1|) (-1066 |#2|)) 20) (((-1066 |#3|) (-1 |#3| |#1| |#2|) (-1066 |#1|) (-552 |#2|)) 19) (((-552 |#3|) (-1 |#3| |#1| |#2|) (-552 |#1|) (-552 |#2|)) 18)))
+(((-550 |#1| |#2| |#3|) (-10 -7 (-15 -3810 ((-552 |#3|) (-1 |#3| |#1| |#2|) (-552 |#1|) (-552 |#2|))) (-15 -3810 ((-1066 |#3|) (-1 |#3| |#1| |#2|) (-1066 |#1|) (-552 |#2|))) (-15 -3810 ((-1066 |#3|) (-1 |#3| |#1| |#2|) (-552 |#1|) (-1066 |#2|)))) (-1120) (-1120) (-1120)) (T -550))
+((-3810 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-552 *6)) (-5 *5 (-1066 *7)) (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-1066 *8)) (-5 *1 (-550 *6 *7 *8)))) (-3810 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1066 *6)) (-5 *5 (-552 *7)) (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-1066 *8)) (-5 *1 (-550 *6 *7 *8)))) (-3810 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-552 *6)) (-5 *5 (-552 *7)) (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-552 *8)) (-5 *1 (-550 *6 *7 *8)))))
+(-10 -7 (-15 -3810 ((-552 |#3|) (-1 |#3| |#1| |#2|) (-552 |#1|) (-552 |#2|))) (-15 -3810 ((-1066 |#3|) (-1 |#3| |#1| |#2|) (-1066 |#1|) (-552 |#2|))) (-15 -3810 ((-1066 |#3|) (-1 |#3| |#1| |#2|) (-552 |#1|) (-1066 |#2|))))
+((-2776 ((|#3| |#3| (-588 (-561 |#3|)) (-588 (-1085))) 55)) (-1708 (((-154 |#2|) |#3|) 116)) (-2421 ((|#3| (-154 |#2|)) 43)) (-3255 ((|#2| |#3|) 19)) (-1956 ((|#3| |#2|) 32)))
+(((-551 |#1| |#2| |#3|) (-10 -7 (-15 -2421 (|#3| (-154 |#2|))) (-15 -3255 (|#2| |#3|)) (-15 -1956 (|#3| |#2|)) (-15 -1708 ((-154 |#2|) |#3|)) (-15 -2776 (|#3| |#3| (-588 (-561 |#3|)) (-588 (-1085))))) (-13 (-514) (-784)) (-13 (-405 |#1|) (-928) (-1106)) (-13 (-405 (-154 |#1|)) (-928) (-1106))) (T -551))
+((-2776 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-588 (-561 *2))) (-5 *4 (-588 (-1085))) (-4 *2 (-13 (-405 (-154 *5)) (-928) (-1106))) (-4 *5 (-13 (-514) (-784))) (-5 *1 (-551 *5 *6 *2)) (-4 *6 (-13 (-405 *5) (-928) (-1106))))) (-1708 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784))) (-5 *2 (-154 *5)) (-5 *1 (-551 *4 *5 *3)) (-4 *5 (-13 (-405 *4) (-928) (-1106))) (-4 *3 (-13 (-405 (-154 *4)) (-928) (-1106))))) (-1956 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784))) (-4 *2 (-13 (-405 (-154 *4)) (-928) (-1106))) (-5 *1 (-551 *4 *3 *2)) (-4 *3 (-13 (-405 *4) (-928) (-1106))))) (-3255 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-784))) (-4 *2 (-13 (-405 *4) (-928) (-1106))) (-5 *1 (-551 *4 *2 *3)) (-4 *3 (-13 (-405 (-154 *4)) (-928) (-1106))))) (-2421 (*1 *2 *3) (-12 (-5 *3 (-154 *5)) (-4 *5 (-13 (-405 *4) (-928) (-1106))) (-4 *4 (-13 (-514) (-784))) (-4 *2 (-13 (-405 (-154 *4)) (-928) (-1106))) (-5 *1 (-551 *4 *5 *2)))))
+(-10 -7 (-15 -2421 (|#3| (-154 |#2|))) (-15 -3255 (|#2| |#3|)) (-15 -1956 (|#3| |#2|)) (-15 -1708 ((-154 |#2|) |#3|)) (-15 -2776 (|#3| |#3| (-588 (-561 |#3|)) (-588 (-1085)))))
+((-1696 (($ (-1 (-108) |#1|) $) 16)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1626 (($ (-1 |#1| |#1|) |#1|) 9)) (-1674 (($ (-1 (-108) |#1|) $) 12)) (-1684 (($ (-1 (-108) |#1|) $) 14)) (-2227 (((-1066 |#1|) $) 17)) (-2217 (((-792) $) NIL)))
+(((-552 |#1|) (-13 (-562 (-792)) (-10 -8 (-15 -3810 ($ (-1 |#1| |#1|) $)) (-15 -1674 ($ (-1 (-108) |#1|) $)) (-15 -1684 ($ (-1 (-108) |#1|) $)) (-15 -1696 ($ (-1 (-108) |#1|) $)) (-15 -1626 ($ (-1 |#1| |#1|) |#1|)) (-15 -2227 ((-1066 |#1|) $)))) (-1120)) (T -552))
+((-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3)))) (-1674 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3)))) (-1684 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3)))) (-1696 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3)))) (-1626 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3)))) (-2227 (*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-552 *3)) (-4 *3 (-1120)))))
+(-13 (-562 (-792)) (-10 -8 (-15 -3810 ($ (-1 |#1| |#1|) $)) (-15 -1674 ($ (-1 (-108) |#1|) $)) (-15 -1684 ($ (-1 (-108) |#1|) $)) (-15 -1696 ($ (-1 (-108) |#1|) $)) (-15 -1626 ($ (-1 |#1| |#1|) |#1|)) (-15 -2227 ((-1066 |#1|) $))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1785 (($ (-708)) NIL (|has| |#1| (-23)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-2806 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3296 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1424 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) NIL)) (-3314 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4043 (((-628 |#1|) $ $) NIL (|has| |#1| (-971)))) (-1893 (($ (-708) |#1|) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-3164 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4113 ((|#1| $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-971))))) (-3309 (((-108) $ (-708)) NIL)) (-4030 ((|#1| $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-971))))) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1731 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2337 ((|#1| $) NIL (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1972 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4024 ((|#1| $ $) NIL (|has| |#1| (-971)))) (-3835 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-2791 (($ $ $) NIL (|has| |#1| (-971)))) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) NIL)) (-4170 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1672 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1661 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-522) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-664))) (($ $ |#1|) NIL (|has| |#1| (-664)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-553 |#1| |#2|) (-1164 |#1|) (-1120) (-522)) (T -553))
NIL
(-1164 |#1|)
-((-2679 (((-1171) $ |#2| |#2|) 36)) (-1359 ((|#2| $) 23)) (-2014 ((|#2| $) 21)) (-3838 (($ (-1 |#3| |#3|) $) 32)) (-1391 (($ (-1 |#3| |#3|) $) 30)) (-2294 ((|#3| $) 26)) (-2602 (($ $ |#3|) 33)) (-1758 (((-108) |#3| $) 17)) (-1525 (((-588 |#3|) $) 15)) (-2545 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
-(((-554 |#1| |#2| |#3|) (-10 -8 (-15 -2679 ((-1171) |#1| |#2| |#2|)) (-15 -2602 (|#1| |#1| |#3|)) (-15 -2294 (|#3| |#1|)) (-15 -1359 (|#2| |#1|)) (-15 -2014 (|#2| |#1|)) (-15 -1758 ((-108) |#3| |#1|)) (-15 -1525 ((-588 |#3|) |#1|)) (-15 -2545 (|#3| |#1| |#2|)) (-15 -2545 (|#3| |#1| |#2| |#3|)) (-15 -3838 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1391 (|#1| (-1 |#3| |#3|) |#1|))) (-555 |#2| |#3|) (-1014) (-1120)) (T -554))
+((-3883 (((-1171) $ |#2| |#2|) 36)) (-3496 ((|#2| $) 23)) (-2201 ((|#2| $) 21)) (-2397 (($ (-1 |#3| |#3|) $) 32)) (-3810 (($ (-1 |#3| |#3|) $) 30)) (-2337 ((|#3| $) 26)) (-1972 (($ $ |#3|) 33)) (-3434 (((-108) |#3| $) 17)) (-1973 (((-588 |#3|) $) 15)) (-2683 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
+(((-554 |#1| |#2| |#3|) (-10 -8 (-15 -3883 ((-1171) |#1| |#2| |#2|)) (-15 -1972 (|#1| |#1| |#3|)) (-15 -2337 (|#3| |#1|)) (-15 -3496 (|#2| |#1|)) (-15 -2201 (|#2| |#1|)) (-15 -3434 ((-108) |#3| |#1|)) (-15 -1973 ((-588 |#3|) |#1|)) (-15 -2683 (|#3| |#1| |#2|)) (-15 -2683 (|#3| |#1| |#2| |#3|)) (-15 -2397 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3810 (|#1| (-1 |#3| |#3|) |#1|))) (-555 |#2| |#3|) (-1014) (-1120)) (T -554))
NIL
-(-10 -8 (-15 -2679 ((-1171) |#1| |#2| |#2|)) (-15 -2602 (|#1| |#1| |#3|)) (-15 -2294 (|#3| |#1|)) (-15 -1359 (|#2| |#1|)) (-15 -2014 (|#2| |#1|)) (-15 -1758 ((-108) |#3| |#1|)) (-15 -1525 ((-588 |#3|) |#1|)) (-15 -2545 (|#3| |#1| |#2|)) (-15 -2545 (|#3| |#1| |#2| |#3|)) (-15 -3838 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1391 (|#1| (-1 |#3| |#3|) |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#2| (-1014)))) (-2679 (((-1171) $ |#1| |#1|) 40 (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) 8)) (-2379 ((|#2| $ |#1| |#2|) 52 (|has| $ (-6 -4239)))) (-3175 (($) 7 T CONST)) (-3854 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4239)))) (-3631 ((|#2| $ |#1|) 51)) (-3837 (((-588 |#2|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-1359 ((|#1| $) 43 (|has| |#1| (-784)))) (-3308 (((-588 |#2|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#2| $) 27 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-2014 ((|#1| $) 44 (|has| |#1| (-784)))) (-3838 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#2| |#2|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#2| (-1014)))) (-3604 (((-588 |#1|) $) 46)) (-1405 (((-108) |#1| $) 47)) (-4151 (((-1032) $) 21 (|has| |#2| (-1014)))) (-2294 ((|#2| $) 42 (|has| |#1| (-784)))) (-2602 (($ $ |#2|) 41 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#2|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#2|))) 26 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) 25 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) 23 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#2| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1525 (((-588 |#2|) $) 48)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#2| $ |#1| |#2|) 50) ((|#2| $ |#1|) 49)) (-4168 (((-708) (-1 (-108) |#2|) $) 31 (|has| $ (-6 -4238))) (((-708) |#2| $) 28 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2190 (((-792) $) 18 (|has| |#2| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#2|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#2| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+(-10 -8 (-15 -3883 ((-1171) |#1| |#2| |#2|)) (-15 -1972 (|#1| |#1| |#3|)) (-15 -2337 (|#3| |#1|)) (-15 -3496 (|#2| |#1|)) (-15 -2201 (|#2| |#1|)) (-15 -3434 ((-108) |#3| |#1|)) (-15 -1973 ((-588 |#3|) |#1|)) (-15 -2683 (|#3| |#1| |#2|)) (-15 -2683 (|#3| |#1| |#2| |#3|)) (-15 -2397 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3810 (|#1| (-1 |#3| |#3|) |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#2| (-1014)))) (-3883 (((-1171) $ |#1| |#1|) 40 (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) 8)) (-2437 ((|#2| $ |#1| |#2|) 52 (|has| $ (-6 -4239)))) (-3367 (($) 7 T CONST)) (-2411 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4239)))) (-2186 ((|#2| $ |#1|) 51)) (-2395 (((-588 |#2|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-3496 ((|#1| $) 43 (|has| |#1| (-784)))) (-4084 (((-588 |#2|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#2| $) 27 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-2201 ((|#1| $) 44 (|has| |#1| (-784)))) (-2397 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#2| |#2|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#2| (-1014)))) (-2130 (((-588 |#1|) $) 46)) (-2103 (((-108) |#1| $) 47)) (-4174 (((-1032) $) 21 (|has| |#2| (-1014)))) (-2337 ((|#2| $) 42 (|has| |#1| (-784)))) (-1972 (($ $ |#2|) 41 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#2|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#2|))) 26 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) 25 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) 23 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#2| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1973 (((-588 |#2|) $) 48)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#2| $ |#1| |#2|) 50) ((|#2| $ |#1|) 49)) (-4187 (((-708) (-1 (-108) |#2|) $) 31 (|has| $ (-6 -4238))) (((-708) |#2| $) 28 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2217 (((-792) $) 18 (|has| |#2| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#2|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#2| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-555 |#1| |#2|) (-1197) (-1014) (-1120)) (T -555))
-((-1525 (*1 *2 *1) (-12 (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120)) (-5 *2 (-588 *4)))) (-1405 (*1 *2 *3 *1) (-12 (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120)) (-5 *2 (-108)))) (-3604 (*1 *2 *1) (-12 (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120)) (-5 *2 (-588 *3)))) (-1758 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-555 *4 *3)) (-4 *4 (-1014)) (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-108)))) (-2014 (*1 *2 *1) (-12 (-4 *1 (-555 *2 *3)) (-4 *3 (-1120)) (-4 *2 (-1014)) (-4 *2 (-784)))) (-1359 (*1 *2 *1) (-12 (-4 *1 (-555 *2 *3)) (-4 *3 (-1120)) (-4 *2 (-1014)) (-4 *2 (-784)))) (-2294 (*1 *2 *1) (-12 (-4 *1 (-555 *3 *2)) (-4 *3 (-1014)) (-4 *3 (-784)) (-4 *2 (-1120)))) (-2602 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-555 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120)))) (-2679 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120)) (-5 *2 (-1171)))))
-(-13 (-461 |t#2|) (-264 |t#1| |t#2|) (-10 -8 (-15 -1525 ((-588 |t#2|) $)) (-15 -1405 ((-108) |t#1| $)) (-15 -3604 ((-588 |t#1|) $)) (IF (|has| |t#2| (-1014)) (IF (|has| $ (-6 -4238)) (-15 -1758 ((-108) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-784)) (PROGN (-15 -2014 (|t#1| $)) (-15 -1359 (|t#1| $)) (-15 -2294 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4239)) (PROGN (-15 -2602 ($ $ |t#2|)) (-15 -2679 ((-1171) $ |t#1| |t#1|))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#2| (-1014)) ((-562 (-792)) -3708 (|has| |#2| (-1014)) (|has| |#2| (-562 (-792)))) ((-262 |#1| |#2|) . T) ((-264 |#1| |#2|) . T) ((-285 |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-461 |#2|) . T) ((-483 |#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-1014) |has| |#2| (-1014)) ((-1120) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-3210 (((-3 $ "failed")) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1588 (((-1166 (-628 |#1|))) NIL (|has| |#2| (-392 |#1|))) (((-1166 (-628 |#1|)) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-1681 (((-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3175 (($) NIL T CONST)) (-1868 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3130 (((-3 $ "failed")) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-1771 (((-628 |#1|)) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3594 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-2828 (((-628 |#1|) $) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) $ (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3637 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3549 (((-1081 (-881 |#1|))) NIL (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-338))))) (-1679 (($ $ (-850)) NIL)) (-3076 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-2992 (((-1081 |#1|) $) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-2975 ((|#1|) NIL (|has| |#2| (-392 |#1|))) ((|#1| (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-4014 (((-1081 |#1|) $) NIL (|has| |#2| (-342 |#1|)))) (-2878 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3766 (($ (-1166 |#1|)) NIL (|has| |#2| (-392 |#1|))) (($ (-1166 |#1|) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-2682 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3166 (((-850)) NIL (|has| |#2| (-342 |#1|)))) (-2666 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-1882 (($ $ (-850)) NIL)) (-1427 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2552 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2678 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3505 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-2007 (((-3 $ "failed")) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-1943 (((-628 |#1|)) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-1546 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-4142 (((-628 |#1|) $) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) $ (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-2231 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-2497 (((-1081 (-881 |#1|))) NIL (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-338))))) (-3277 (($ $ (-850)) NIL)) (-1505 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-3630 (((-1081 |#1|) $) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-2475 ((|#1|) NIL (|has| |#2| (-392 |#1|))) ((|#1| (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-2302 (((-1081 |#1|) $) NIL (|has| |#2| (-342 |#1|)))) (-3003 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2385 (((-1068) $) NIL)) (-3710 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3026 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3055 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-4151 (((-1032) $) NIL)) (-2889 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2545 ((|#1| $ (-522)) NIL (|has| |#2| (-392 |#1|)))) (-3677 (((-628 |#1|) (-1166 $)) NIL (|has| |#2| (-392 |#1|))) (((-1166 |#1|) $) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) (-1166 $) (-1166 $)) NIL (|has| |#2| (-342 |#1|))) (((-1166 |#1|) $ (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-1431 (($ (-1166 |#1|)) NIL (|has| |#2| (-392 |#1|))) (((-1166 |#1|) $) NIL (|has| |#2| (-392 |#1|)))) (-2656 (((-588 (-881 |#1|))) NIL (|has| |#2| (-392 |#1|))) (((-588 (-881 |#1|)) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-1288 (($ $ $) NIL)) (-4034 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2190 (((-792) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-3855 (((-1166 $)) NIL (|has| |#2| (-392 |#1|)))) (-2901 (((-588 (-1166 |#1|))) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3610 (($ $ $ $) NIL)) (-2928 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-1616 (($ (-628 |#1|) $) NIL (|has| |#2| (-392 |#1|)))) (-3024 (($ $ $) NIL)) (-3065 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3856 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3877 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3566 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) 24)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
-(((-556 |#1| |#2|) (-13 (-682 |#1|) (-562 |#2|) (-10 -8 (-15 -2190 ($ |#2|)) (IF (|has| |#2| (-392 |#1|)) (-6 (-392 |#1|)) |%noBranch|) (IF (|has| |#2| (-342 |#1|)) (-6 (-342 |#1|)) |%noBranch|))) (-157) (-682 |#1|)) (T -556))
-((-2190 (*1 *1 *2) (-12 (-4 *3 (-157)) (-5 *1 (-556 *3 *2)) (-4 *2 (-682 *3)))))
-(-13 (-682 |#1|) (-562 |#2|) (-10 -8 (-15 -2190 ($ |#2|)) (IF (|has| |#2| (-392 |#1|)) (-6 (-392 |#1|)) |%noBranch|) (IF (|has| |#2| (-342 |#1|)) (-6 (-342 |#1|)) |%noBranch|)))
-((-1416 (((-108) $ $) NIL)) (-1270 (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) 32)) (-1800 (($ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) NIL) (($) NIL)) (-2679 (((-1171) $ (-1068) (-1068)) NIL (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#1| $ (-1068) |#1|) 42)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-2750 (((-3 |#1| "failed") (-1068) $) 45)) (-3175 (($) NIL T CONST)) (-2563 (($ $ (-1068)) 24)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014))))) (-3859 (((-3 |#1| "failed") (-1068) $) 46) (($ (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238))) (($ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL (|has| $ (-6 -4238)))) (-1423 (($ (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238))) (($ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014))))) (-3864 (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014))))) (-4045 (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) 31)) (-3854 ((|#1| $ (-1068) |#1|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-1068)) NIL)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238))) (((-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-3857 (($ $) 47)) (-1544 (($ (-363)) 22) (($ (-363) (-1068)) 21)) (-2888 (((-363) $) 33)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-1068) $) NIL (|has| (-1068) (-784)))) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238))) (((-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (((-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014))))) (-2014 (((-1068) $) NIL (|has| (-1068) (-784)))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-2966 (((-588 (-1068)) $) 38)) (-1231 (((-108) (-1068) $) NIL)) (-3469 (((-1068) $) 34)) (-2116 (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL)) (-4095 (($ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL)) (-3604 (((-588 (-1068)) $) NIL)) (-1405 (((-108) (-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2294 ((|#1| $) NIL (|has| (-1068) (-784)))) (-1414 (((-3 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) "failed") (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL)) (-2602 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) NIL (-12 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)))) (($ $ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) NIL (-12 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) NIL (-12 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)))) (($ $ (-588 (-270 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))))) NIL (-12 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) 36)) (-2545 ((|#1| $ (-1068) |#1|) NIL) ((|#1| $ (-1068)) 41)) (-3990 (($ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) NIL) (($) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (((-708) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)))) (((-708) (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) NIL)) (-2190 (((-792) $) 20)) (-2152 (($ $) 25)) (-2795 (($ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) NIL)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 19)) (-3480 (((-708) $) 40 (|has| $ (-6 -4238)))))
-(((-557 |#1|) (-13 (-339 (-363) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) (-1097 (-1068) |#1|) (-10 -8 (-6 -4238) (-15 -3857 ($ $)))) (-1014)) (T -557))
-((-3857 (*1 *1 *1) (-12 (-5 *1 (-557 *2)) (-4 *2 (-1014)))))
-(-13 (-339 (-363) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) (-1097 (-1068) |#1|) (-10 -8 (-6 -4238) (-15 -3857 ($ $))))
-((-2246 (((-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) $) 15)) (-2966 (((-588 |#2|) $) 19)) (-1231 (((-108) |#2| $) 12)))
-(((-558 |#1| |#2| |#3|) (-10 -8 (-15 -2966 ((-588 |#2|) |#1|)) (-15 -1231 ((-108) |#2| |#1|)) (-15 -2246 ((-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) |#1|))) (-559 |#2| |#3|) (-1014) (-1014)) (T -558))
-NIL
-(-10 -8 (-15 -2966 ((-588 |#2|) |#1|)) (-15 -1231 ((-108) |#2| |#1|)) (-15 -2246 ((-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) |#1|)))
-((-1416 (((-108) $ $) 19 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-4141 (((-108) $ (-708)) 8)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 45 (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 55 (|has| $ (-6 -4238)))) (-2750 (((-3 |#2| "failed") |#1| $) 61)) (-3175 (($) 7 T CONST)) (-2333 (($ $) 58 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238))))) (-3859 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 46 (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) 62)) (-1423 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 54 (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 56 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 53 (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 52 (|has| $ (-6 -4238)))) (-3837 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-2966 (((-588 |#1|) $) 63)) (-1231 (((-108) |#1| $) 64)) (-2116 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 39)) (-4095 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 40)) (-4151 (((-1032) $) 21 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-1414 (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 51)) (-4087 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 41)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))))) 26 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 25 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 24 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 23 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-3990 (($) 49) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 48)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 31 (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-1431 (((-498) $) 59 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 50)) (-2190 (((-792) $) 18 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792))))) (-2795 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 42)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1973 (*1 *2 *1) (-12 (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120)) (-5 *2 (-588 *4)))) (-2103 (*1 *2 *3 *1) (-12 (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120)) (-5 *2 (-108)))) (-2130 (*1 *2 *1) (-12 (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120)) (-5 *2 (-588 *3)))) (-3434 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-555 *4 *3)) (-4 *4 (-1014)) (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-108)))) (-2201 (*1 *2 *1) (-12 (-4 *1 (-555 *2 *3)) (-4 *3 (-1120)) (-4 *2 (-1014)) (-4 *2 (-784)))) (-3496 (*1 *2 *1) (-12 (-4 *1 (-555 *2 *3)) (-4 *3 (-1120)) (-4 *2 (-1014)) (-4 *2 (-784)))) (-2337 (*1 *2 *1) (-12 (-4 *1 (-555 *3 *2)) (-4 *3 (-1014)) (-4 *3 (-784)) (-4 *2 (-1120)))) (-1972 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-555 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120)))) (-3883 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120)) (-5 *2 (-1171)))))
+(-13 (-461 |t#2|) (-264 |t#1| |t#2|) (-10 -8 (-15 -1973 ((-588 |t#2|) $)) (-15 -2103 ((-108) |t#1| $)) (-15 -2130 ((-588 |t#1|) $)) (IF (|has| |t#2| (-1014)) (IF (|has| $ (-6 -4238)) (-15 -3434 ((-108) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-784)) (PROGN (-15 -2201 (|t#1| $)) (-15 -3496 (|t#1| $)) (-15 -2337 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4239)) (PROGN (-15 -1972 ($ $ |t#2|)) (-15 -3883 ((-1171) $ |t#1| |t#1|))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#2| (-1014)) ((-562 (-792)) -3844 (|has| |#2| (-1014)) (|has| |#2| (-562 (-792)))) ((-262 |#1| |#2|) . T) ((-264 |#1| |#2|) . T) ((-285 |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-461 |#2|) . T) ((-483 |#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-1014) |has| |#2| (-1014)) ((-1120) . T))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2541 (((-3 $ "failed")) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3690 (((-1166 (-628 |#1|))) NIL (|has| |#2| (-392 |#1|))) (((-1166 (-628 |#1|)) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-2726 (((-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3367 (($) NIL T CONST)) (-2722 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3050 (((-3 $ "failed")) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3531 (((-628 |#1|)) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-2046 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-2853 (((-628 |#1|) $) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) $ (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-1279 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-1662 (((-1081 (-881 |#1|))) NIL (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-338))))) (-2698 (($ $ (-850)) NIL)) (-3676 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-4080 (((-1081 |#1|) $) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-4035 ((|#1|) NIL (|has| |#2| (-392 |#1|))) ((|#1| (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3767 (((-1081 |#1|) $) NIL (|has| |#2| (-342 |#1|)))) (-1340 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3225 (($ (-1166 |#1|)) NIL (|has| |#2| (-392 |#1|))) (($ (-1166 |#1|) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3920 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-1692 (((-850)) NIL (|has| |#2| (-342 |#1|)))) (-2134 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2870 (($ $ (-850)) NIL)) (-2287 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3702 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3868 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2439 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3351 (((-3 $ "failed")) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-1521 (((-628 |#1|)) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3411 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-2734 (((-628 |#1|) $) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) $ (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3070 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3943 (((-1081 (-881 |#1|))) NIL (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-338))))) (-1946 (($ $ (-850)) NIL)) (-1819 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-1216 (((-1081 |#1|) $) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3020 ((|#1|) NIL (|has| |#2| (-392 |#1|))) ((|#1| (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-2724 (((-1081 |#1|) $) NIL (|has| |#2| (-342 |#1|)))) (-4197 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2311 (((-1068) $) NIL)) (-3823 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-1388 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3509 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-4174 (((-1032) $) NIL)) (-1427 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2683 ((|#1| $ (-522)) NIL (|has| |#2| (-392 |#1|)))) (-3510 (((-628 |#1|) (-1166 $)) NIL (|has| |#2| (-392 |#1|))) (((-1166 |#1|) $) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) (-1166 $) (-1166 $)) NIL (|has| |#2| (-342 |#1|))) (((-1166 |#1|) $ (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3873 (($ (-1166 |#1|)) NIL (|has| |#2| (-392 |#1|))) (((-1166 |#1|) $) NIL (|has| |#2| (-392 |#1|)))) (-1777 (((-588 (-881 |#1|))) NIL (|has| |#2| (-392 |#1|))) (((-588 (-881 |#1|)) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-1596 (($ $ $) NIL)) (-3990 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2217 (((-792) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-2905 (((-1166 $)) NIL (|has| |#2| (-392 |#1|)))) (-1548 (((-588 (-1166 |#1|))) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-2185 (($ $ $ $) NIL)) (-3597 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-1664 (($ (-628 |#1|) $) NIL (|has| |#2| (-392 |#1|)))) (-1369 (($ $ $) NIL)) (-3578 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2912 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-1855 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3697 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) 24)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
+(((-556 |#1| |#2|) (-13 (-682 |#1|) (-562 |#2|) (-10 -8 (-15 -2217 ($ |#2|)) (IF (|has| |#2| (-392 |#1|)) (-6 (-392 |#1|)) |%noBranch|) (IF (|has| |#2| (-342 |#1|)) (-6 (-342 |#1|)) |%noBranch|))) (-157) (-682 |#1|)) (T -556))
+((-2217 (*1 *1 *2) (-12 (-4 *3 (-157)) (-5 *1 (-556 *3 *2)) (-4 *2 (-682 *3)))))
+(-13 (-682 |#1|) (-562 |#2|) (-10 -8 (-15 -2217 ($ |#2|)) (IF (|has| |#2| (-392 |#1|)) (-6 (-392 |#1|)) |%noBranch|) (IF (|has| |#2| (-342 |#1|)) (-6 (-342 |#1|)) |%noBranch|)))
+((-1419 (((-108) $ $) NIL)) (-2710 (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) 32)) (-1883 (($ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) NIL) (($) NIL)) (-3883 (((-1171) $ (-1068) (-1068)) NIL (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#1| $ (-1068) |#1|) 42)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-4011 (((-3 |#1| "failed") (-1068) $) 45)) (-3367 (($) NIL T CONST)) (-3813 (($ $ (-1068)) 24)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014))))) (-1700 (((-3 |#1| "failed") (-1068) $) 46) (($ (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238))) (($ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL (|has| $ (-6 -4238)))) (-1424 (($ (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238))) (($ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014))))) (-2153 (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014))))) (-2982 (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) 31)) (-2411 ((|#1| $ (-1068) |#1|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-1068)) NIL)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238))) (((-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-2922 (($ $) 47)) (-1566 (($ (-363)) 22) (($ (-363) (-1068)) 21)) (-3015 (((-363) $) 33)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-1068) $) NIL (|has| (-1068) (-784)))) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238))) (((-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (((-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014))))) (-2201 (((-1068) $) NIL (|has| (-1068) (-784)))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-2562 (((-588 (-1068)) $) 38)) (-2241 (((-108) (-1068) $) NIL)) (-3270 (((-1068) $) 34)) (-1431 (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL)) (-3365 (($ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL)) (-2130 (((-588 (-1068)) $) NIL)) (-2103 (((-108) (-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2337 ((|#1| $) NIL (|has| (-1068) (-784)))) (-2187 (((-3 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) "failed") (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL)) (-1972 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) NIL (-12 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)))) (($ $ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) NIL (-12 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) NIL (-12 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)))) (($ $ (-588 (-270 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))))) NIL (-12 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) 36)) (-2683 ((|#1| $ (-1068) |#1|) NIL) ((|#1| $ (-1068)) 41)) (-3546 (($ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) NIL) (($) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (((-708) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)))) (((-708) (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) NIL)) (-2217 (((-792) $) 20)) (-3116 (($ $) 25)) (-2501 (($ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) NIL)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 19)) (-3591 (((-708) $) 40 (|has| $ (-6 -4238)))))
+(((-557 |#1|) (-13 (-339 (-363) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) (-1097 (-1068) |#1|) (-10 -8 (-6 -4238) (-15 -2922 ($ $)))) (-1014)) (T -557))
+((-2922 (*1 *1 *1) (-12 (-5 *1 (-557 *2)) (-4 *2 (-1014)))))
+(-13 (-339 (-363) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) (-1097 (-1068) |#1|) (-10 -8 (-6 -4238) (-15 -2922 ($ $))))
+((-4176 (((-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) $) 15)) (-2562 (((-588 |#2|) $) 19)) (-2241 (((-108) |#2| $) 12)))
+(((-558 |#1| |#2| |#3|) (-10 -8 (-15 -2562 ((-588 |#2|) |#1|)) (-15 -2241 ((-108) |#2| |#1|)) (-15 -4176 ((-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) |#1|))) (-559 |#2| |#3|) (-1014) (-1014)) (T -558))
+NIL
+(-10 -8 (-15 -2562 ((-588 |#2|) |#1|)) (-15 -2241 ((-108) |#2| |#1|)) (-15 -4176 ((-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) |#1|)))
+((-1419 (((-108) $ $) 19 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-2717 (((-108) $ (-708)) 8)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 45 (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 55 (|has| $ (-6 -4238)))) (-4011 (((-3 |#2| "failed") |#1| $) 61)) (-3367 (($) 7 T CONST)) (-2379 (($ $) 58 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238))))) (-1700 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 46 (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) 62)) (-1424 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 54 (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 56 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 53 (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 52 (|has| $ (-6 -4238)))) (-2395 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-2562 (((-588 |#1|) $) 63)) (-2241 (((-108) |#1| $) 64)) (-1431 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 39)) (-3365 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 40)) (-4174 (((-1032) $) 21 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-2187 (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 51)) (-3295 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 41)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))))) 26 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 25 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 24 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 23 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-3546 (($) 49) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 48)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 31 (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-3873 (((-498) $) 59 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 50)) (-2217 (((-792) $) 18 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792))))) (-2501 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 42)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-559 |#1| |#2|) (-1197) (-1014) (-1014)) (T -559))
-((-1231 (*1 *2 *3 *1) (-12 (-4 *1 (-559 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-5 *2 (-108)))) (-2966 (*1 *2 *1) (-12 (-4 *1 (-559 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-5 *2 (-588 *3)))) (-3859 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-559 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))) (-2750 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-559 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))))
-(-13 (-206 (-2 (|:| -2530 |t#1|) (|:| -3048 |t#2|))) (-10 -8 (-15 -1231 ((-108) |t#1| $)) (-15 -2966 ((-588 |t#1|) $)) (-15 -3859 ((-3 |t#2| "failed") |t#1| $)) (-15 -2750 ((-3 |t#2| "failed") |t#1| $))))
-(((-33) . T) ((-102 #0=(-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T) ((-97) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) ((-562 (-792)) -3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792)))) ((-139 #0#) . T) ((-563 (-498)) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))) ((-206 #0#) . T) ((-212 #0#) . T) ((-285 #0#) -12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))) ((-461 #0#) . T) ((-483 #0# #0#) -12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))) ((-1014) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) ((-1120) . T))
-((-1527 (((-561 |#2|) |#1|) 15)) (-2598 (((-3 |#1| "failed") (-561 |#2|)) 19)))
-(((-560 |#1| |#2|) (-10 -7 (-15 -1527 ((-561 |#2|) |#1|)) (-15 -2598 ((-3 |#1| "failed") (-561 |#2|)))) (-784) (-784)) (T -560))
-((-2598 (*1 *2 *3) (|partial| -12 (-5 *3 (-561 *4)) (-4 *4 (-784)) (-4 *2 (-784)) (-5 *1 (-560 *2 *4)))) (-1527 (*1 *2 *3) (-12 (-5 *2 (-561 *4)) (-5 *1 (-560 *3 *4)) (-4 *3 (-784)) (-4 *4 (-784)))))
-(-10 -7 (-15 -1527 ((-561 |#2|) |#1|)) (-15 -2598 ((-3 |#1| "failed") (-561 |#2|))))
-((-1416 (((-108) $ $) NIL)) (-1486 (((-3 (-1085) "failed") $) 36)) (-3220 (((-1171) $ (-708)) 26)) (-3238 (((-708) $) 25)) (-2626 (((-110) $) 12)) (-2888 (((-1085) $) 20)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-2909 (($ (-110) (-588 |#1|) (-708)) 30) (($ (-1085)) 31)) (-2249 (((-108) $ (-110)) 18) (((-108) $ (-1085)) 16)) (-4155 (((-708) $) 22)) (-4151 (((-1032) $) NIL)) (-1431 (((-821 (-522)) $) 69 (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) 75 (|has| |#1| (-563 (-821 (-354))))) (((-498) $) 62 (|has| |#1| (-563 (-498))))) (-2190 (((-792) $) 51)) (-3824 (((-588 |#1|) $) 24)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 39)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 40)))
-(((-561 |#1|) (-13 (-125) (-813 |#1|) (-10 -8 (-15 -2888 ((-1085) $)) (-15 -2626 ((-110) $)) (-15 -3824 ((-588 |#1|) $)) (-15 -4155 ((-708) $)) (-15 -2909 ($ (-110) (-588 |#1|) (-708))) (-15 -2909 ($ (-1085))) (-15 -1486 ((-3 (-1085) "failed") $)) (-15 -2249 ((-108) $ (-110))) (-15 -2249 ((-108) $ (-1085))) (IF (|has| |#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|))) (-784)) (T -561))
-((-2888 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-561 *3)) (-4 *3 (-784)))) (-2626 (*1 *2 *1) (-12 (-5 *2 (-110)) (-5 *1 (-561 *3)) (-4 *3 (-784)))) (-3824 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-561 *3)) (-4 *3 (-784)))) (-4155 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-561 *3)) (-4 *3 (-784)))) (-2909 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-110)) (-5 *3 (-588 *5)) (-5 *4 (-708)) (-4 *5 (-784)) (-5 *1 (-561 *5)))) (-2909 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-561 *3)) (-4 *3 (-784)))) (-1486 (*1 *2 *1) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-561 *3)) (-4 *3 (-784)))) (-2249 (*1 *2 *1 *3) (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-561 *4)) (-4 *4 (-784)))) (-2249 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-108)) (-5 *1 (-561 *4)) (-4 *4 (-784)))))
-(-13 (-125) (-813 |#1|) (-10 -8 (-15 -2888 ((-1085) $)) (-15 -2626 ((-110) $)) (-15 -3824 ((-588 |#1|) $)) (-15 -4155 ((-708) $)) (-15 -2909 ($ (-110) (-588 |#1|) (-708))) (-15 -2909 ($ (-1085))) (-15 -1486 ((-3 (-1085) "failed") $)) (-15 -2249 ((-108) $ (-110))) (-15 -2249 ((-108) $ (-1085))) (IF (|has| |#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|)))
-((-2190 ((|#1| $) 6)))
+((-2241 (*1 *2 *3 *1) (-12 (-4 *1 (-559 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-5 *2 (-108)))) (-2562 (*1 *2 *1) (-12 (-4 *1 (-559 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-5 *2 (-588 *3)))) (-1700 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-559 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))) (-4011 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-559 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))))
+(-13 (-206 (-2 (|:| -2644 |t#1|) (|:| -3149 |t#2|))) (-10 -8 (-15 -2241 ((-108) |t#1| $)) (-15 -2562 ((-588 |t#1|) $)) (-15 -1700 ((-3 |t#2| "failed") |t#1| $)) (-15 -4011 ((-3 |t#2| "failed") |t#1| $))))
+(((-33) . T) ((-102 #0=(-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T) ((-97) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) ((-562 (-792)) -3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792)))) ((-139 #0#) . T) ((-563 (-498)) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))) ((-206 #0#) . T) ((-212 #0#) . T) ((-285 #0#) -12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))) ((-461 #0#) . T) ((-483 #0# #0#) -12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))) ((-1014) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) ((-1120) . T))
+((-1994 (((-561 |#2|) |#1|) 15)) (-1932 (((-3 |#1| "failed") (-561 |#2|)) 19)))
+(((-560 |#1| |#2|) (-10 -7 (-15 -1994 ((-561 |#2|) |#1|)) (-15 -1932 ((-3 |#1| "failed") (-561 |#2|)))) (-784) (-784)) (T -560))
+((-1932 (*1 *2 *3) (|partial| -12 (-5 *3 (-561 *4)) (-4 *4 (-784)) (-4 *2 (-784)) (-5 *1 (-560 *2 *4)))) (-1994 (*1 *2 *3) (-12 (-5 *2 (-561 *4)) (-5 *1 (-560 *3 *4)) (-4 *3 (-784)) (-4 *4 (-784)))))
+(-10 -7 (-15 -1994 ((-561 |#2|) |#1|)) (-15 -1932 ((-3 |#1| "failed") (-561 |#2|))))
+((-1419 (((-108) $ $) NIL)) (-1641 (((-3 (-1085) "failed") $) 36)) (-2648 (((-1171) $ (-708)) 26)) (-3314 (((-708) $) 25)) (-1771 (((-110) $) 12)) (-3015 (((-1085) $) 20)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-3043 (($ (-110) (-588 |#1|) (-708)) 30) (($ (-1085)) 31)) (-2935 (((-108) $ (-110)) 18) (((-108) $ (-1085)) 16)) (-4179 (((-708) $) 22)) (-4174 (((-1032) $) NIL)) (-3873 (((-821 (-522)) $) 69 (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) 75 (|has| |#1| (-563 (-821 (-354))))) (((-498) $) 62 (|has| |#1| (-563 (-498))))) (-2217 (((-792) $) 51)) (-2636 (((-588 |#1|) $) 24)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 39)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 40)))
+(((-561 |#1|) (-13 (-125) (-813 |#1|) (-10 -8 (-15 -3015 ((-1085) $)) (-15 -1771 ((-110) $)) (-15 -2636 ((-588 |#1|) $)) (-15 -4179 ((-708) $)) (-15 -3043 ($ (-110) (-588 |#1|) (-708))) (-15 -3043 ($ (-1085))) (-15 -1641 ((-3 (-1085) "failed") $)) (-15 -2935 ((-108) $ (-110))) (-15 -2935 ((-108) $ (-1085))) (IF (|has| |#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|))) (-784)) (T -561))
+((-3015 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-561 *3)) (-4 *3 (-784)))) (-1771 (*1 *2 *1) (-12 (-5 *2 (-110)) (-5 *1 (-561 *3)) (-4 *3 (-784)))) (-2636 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-561 *3)) (-4 *3 (-784)))) (-4179 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-561 *3)) (-4 *3 (-784)))) (-3043 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-110)) (-5 *3 (-588 *5)) (-5 *4 (-708)) (-4 *5 (-784)) (-5 *1 (-561 *5)))) (-3043 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-561 *3)) (-4 *3 (-784)))) (-1641 (*1 *2 *1) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-561 *3)) (-4 *3 (-784)))) (-2935 (*1 *2 *1 *3) (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-561 *4)) (-4 *4 (-784)))) (-2935 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-108)) (-5 *1 (-561 *4)) (-4 *4 (-784)))))
+(-13 (-125) (-813 |#1|) (-10 -8 (-15 -3015 ((-1085) $)) (-15 -1771 ((-110) $)) (-15 -2636 ((-588 |#1|) $)) (-15 -4179 ((-708) $)) (-15 -3043 ($ (-110) (-588 |#1|) (-708))) (-15 -3043 ($ (-1085))) (-15 -1641 ((-3 (-1085) "failed") $)) (-15 -2935 ((-108) $ (-110))) (-15 -2935 ((-108) $ (-1085))) (IF (|has| |#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|)))
+((-2217 ((|#1| $) 6)))
(((-562 |#1|) (-1197) (-1120)) (T -562))
-((-2190 (*1 *2 *1) (-12 (-4 *1 (-562 *2)) (-4 *2 (-1120)))))
-(-13 (-10 -8 (-15 -2190 (|t#1| $))))
-((-1431 ((|#1| $) 6)))
+((-2217 (*1 *2 *1) (-12 (-4 *1 (-562 *2)) (-4 *2 (-1120)))))
+(-13 (-10 -8 (-15 -2217 (|t#1| $))))
+((-3873 ((|#1| $) 6)))
(((-563 |#1|) (-1197) (-1120)) (T -563))
-((-1431 (*1 *2 *1) (-12 (-4 *1 (-563 *2)) (-4 *2 (-1120)))))
-(-13 (-10 -8 (-15 -1431 (|t#1| $))))
-((-3313 (((-3 (-1081 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|) (-1 (-393 |#2|) |#2|)) 13) (((-3 (-1081 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|)) 14)))
-(((-564 |#1| |#2|) (-10 -7 (-15 -3313 ((-3 (-1081 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|))) (-15 -3313 ((-3 (-1081 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|) (-1 (-393 |#2|) |#2|)))) (-13 (-135) (-27) (-962 (-522)) (-962 (-382 (-522)))) (-1142 |#1|)) (T -564))
-((-3313 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-135) (-27) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-1081 (-382 *6))) (-5 *1 (-564 *5 *6)) (-5 *3 (-382 *6)))) (-3313 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-135) (-27) (-962 (-522)) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *2 (-1081 (-382 *5))) (-5 *1 (-564 *4 *5)) (-5 *3 (-382 *5)))))
-(-10 -7 (-15 -3313 ((-3 (-1081 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|))) (-15 -3313 ((-3 (-1081 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|) (-1 (-393 |#2|) |#2|))))
-((-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) 10)))
-(((-565 |#1| |#2|) (-10 -8 (-15 -2190 (|#1| |#2|)) (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|))) (-566 |#2|) (-971)) (T -565))
-NIL
-(-10 -8 (-15 -2190 (|#1| |#2|)) (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 36)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ |#1| $) 37)))
+((-3873 (*1 *2 *1) (-12 (-4 *1 (-563 *2)) (-4 *2 (-1120)))))
+(-13 (-10 -8 (-15 -3873 (|t#1| $))))
+((-4132 (((-3 (-1081 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|) (-1 (-393 |#2|) |#2|)) 13) (((-3 (-1081 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|)) 14)))
+(((-564 |#1| |#2|) (-10 -7 (-15 -4132 ((-3 (-1081 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|))) (-15 -4132 ((-3 (-1081 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|) (-1 (-393 |#2|) |#2|)))) (-13 (-135) (-27) (-962 (-522)) (-962 (-382 (-522)))) (-1142 |#1|)) (T -564))
+((-4132 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-135) (-27) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-1081 (-382 *6))) (-5 *1 (-564 *5 *6)) (-5 *3 (-382 *6)))) (-4132 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-135) (-27) (-962 (-522)) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *2 (-1081 (-382 *5))) (-5 *1 (-564 *4 *5)) (-5 *3 (-382 *5)))))
+(-10 -7 (-15 -4132 ((-3 (-1081 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|))) (-15 -4132 ((-3 (-1081 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|) (-1 (-393 |#2|) |#2|))))
+((-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) 10)))
+(((-565 |#1| |#2|) (-10 -8 (-15 -2217 (|#1| |#2|)) (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|))) (-566 |#2|) (-971)) (T -565))
+NIL
+(-10 -8 (-15 -2217 (|#1| |#2|)) (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 36)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ |#1| $) 37)))
(((-566 |#1|) (-1197) (-971)) (T -566))
-((-2190 (*1 *1 *2) (-12 (-4 *1 (-566 *2)) (-4 *2 (-971)))))
-(-13 (-971) (-590 |t#1|) (-10 -8 (-15 -2190 ($ |t#1|))))
+((-2217 (*1 *1 *2) (-12 (-4 *1 (-566 *2)) (-4 *2 (-971)))))
+(-13 (-971) (-590 |t#1|) (-10 -8 (-15 -2217 ($ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-664) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1341 (((-522) $) NIL (|has| |#1| (-782)))) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) NIL)) (-3687 (((-108) $) NIL (|has| |#1| (-782)))) (-2782 (((-108) $) NIL)) (-2805 ((|#1| $) 13)) (-2556 (((-108) $) NIL (|has| |#1| (-782)))) (-2814 (($ $ $) NIL (|has| |#1| (-782)))) (-2446 (($ $ $) NIL (|has| |#1| (-782)))) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2816 ((|#3| $) 15)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) NIL)) (-2323 (((-708)) 20)) (-2241 (($ $) NIL (|has| |#1| (-782)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) 12 T CONST)) (-1574 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1620 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-567 |#1| |#2| |#3|) (-13 (-37 |#2|) (-10 -8 (IF (|has| |#1| (-782)) (-6 (-782)) |%noBranch|) (-15 -1620 ($ $ |#3|)) (-15 -1620 ($ |#1| |#3|)) (-15 -2805 (|#1| $)) (-15 -2816 (|#3| $)))) (-37 |#2|) (-157) (|SubsetCategory| (-664) |#2|)) (T -567))
-((-1620 (*1 *1 *1 *2) (-12 (-4 *4 (-157)) (-5 *1 (-567 *3 *4 *2)) (-4 *3 (-37 *4)) (-4 *2 (|SubsetCategory| (-664) *4)))) (-1620 (*1 *1 *2 *3) (-12 (-4 *4 (-157)) (-5 *1 (-567 *2 *4 *3)) (-4 *2 (-37 *4)) (-4 *3 (|SubsetCategory| (-664) *4)))) (-2805 (*1 *2 *1) (-12 (-4 *3 (-157)) (-4 *2 (-37 *3)) (-5 *1 (-567 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-664) *3)))) (-2816 (*1 *2 *1) (-12 (-4 *4 (-157)) (-4 *2 (|SubsetCategory| (-664) *4)) (-5 *1 (-567 *3 *4 *2)) (-4 *3 (-37 *4)))))
-(-13 (-37 |#2|) (-10 -8 (IF (|has| |#1| (-782)) (-6 (-782)) |%noBranch|) (-15 -1620 ($ $ |#3|)) (-15 -1620 ($ |#1| |#3|)) (-15 -2805 (|#1| $)) (-15 -2816 (|#3| $))))
-((-1990 ((|#2| |#2| (-1085) (-1085)) 18)))
-(((-568 |#1| |#2|) (-10 -7 (-15 -1990 (|#2| |#2| (-1085) (-1085)))) (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-887) (-29 |#1|))) (T -568))
-((-1990 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *1 (-568 *4 *2)) (-4 *2 (-13 (-1106) (-887) (-29 *4))))))
-(-10 -7 (-15 -1990 (|#2| |#2| (-1085) (-1085))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 52)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-2797 ((|#1| $) 49)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-1441 (((-2 (|:| -2012 $) (|:| -1320 (-382 |#2|))) (-382 |#2|)) 97 (|has| |#1| (-338)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 85) (((-3 |#2| "failed") $) 82)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-3156 (($ $) 24)) (-2682 (((-3 $ "failed") $) 76)) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-3714 (((-522) $) 19)) (-2782 (((-108) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3340 (((-108) $) 36)) (-4049 (($ |#1| (-522)) 21)) (-3138 ((|#1| $) 51)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) 87 (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 100 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-2232 (((-3 $ "failed") $ $) 80)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3730 (((-708) $) 99 (|has| |#1| (-338)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 98 (|has| |#1| (-338)))) (-2157 (($ $ (-1 |#2| |#2|)) 67) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $) NIL (|has| |#2| (-210)))) (-2793 (((-522) $) 34)) (-1431 (((-382 |#2|) $) 42)) (-2190 (((-792) $) 63) (($ (-522)) 32) (($ $) NIL) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) 31) (($ |#2|) 22)) (-3243 ((|#1| $ (-522)) 64)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 9 T CONST)) (-3577 (($) 12 T CONST)) (-2213 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $) NIL (|has| |#2| (-210)))) (-1531 (((-108) $ $) 17)) (-1612 (($ $) 46) (($ $ $) NIL)) (-1602 (($ $ $) 77)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 26) (($ $ $) 44)))
-(((-569 |#1| |#2|) (-13 (-208 |#2|) (-514) (-563 (-382 |#2|)) (-386 |#1|) (-962 |#2|) (-10 -8 (-15 -3340 ((-108) $)) (-15 -2793 ((-522) $)) (-15 -3714 ((-522) $)) (-15 -3156 ($ $)) (-15 -3138 (|#1| $)) (-15 -2797 (|#1| $)) (-15 -3243 (|#1| $ (-522))) (-15 -4049 ($ |#1| (-522))) (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-6 (-283)) (-15 -1441 ((-2 (|:| -2012 $) (|:| -1320 (-382 |#2|))) (-382 |#2|)))) |%noBranch|))) (-514) (-1142 |#1|)) (T -569))
-((-3340 (*1 *2 *1) (-12 (-4 *3 (-514)) (-5 *2 (-108)) (-5 *1 (-569 *3 *4)) (-4 *4 (-1142 *3)))) (-2793 (*1 *2 *1) (-12 (-4 *3 (-514)) (-5 *2 (-522)) (-5 *1 (-569 *3 *4)) (-4 *4 (-1142 *3)))) (-3714 (*1 *2 *1) (-12 (-4 *3 (-514)) (-5 *2 (-522)) (-5 *1 (-569 *3 *4)) (-4 *4 (-1142 *3)))) (-3156 (*1 *1 *1) (-12 (-4 *2 (-514)) (-5 *1 (-569 *2 *3)) (-4 *3 (-1142 *2)))) (-3138 (*1 *2 *1) (-12 (-4 *2 (-514)) (-5 *1 (-569 *2 *3)) (-4 *3 (-1142 *2)))) (-2797 (*1 *2 *1) (-12 (-4 *2 (-514)) (-5 *1 (-569 *2 *3)) (-4 *3 (-1142 *2)))) (-3243 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *2 (-514)) (-5 *1 (-569 *2 *4)) (-4 *4 (-1142 *2)))) (-4049 (*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-4 *2 (-514)) (-5 *1 (-569 *2 *4)) (-4 *4 (-1142 *2)))) (-1441 (*1 *2 *3) (-12 (-4 *4 (-338)) (-4 *4 (-514)) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| -2012 (-569 *4 *5)) (|:| -1320 (-382 *5)))) (-5 *1 (-569 *4 *5)) (-5 *3 (-382 *5)))))
-(-13 (-208 |#2|) (-514) (-563 (-382 |#2|)) (-386 |#1|) (-962 |#2|) (-10 -8 (-15 -3340 ((-108) $)) (-15 -2793 ((-522) $)) (-15 -3714 ((-522) $)) (-15 -3156 ($ $)) (-15 -3138 (|#1| $)) (-15 -2797 (|#1| $)) (-15 -3243 (|#1| $ (-522))) (-15 -4049 ($ |#1| (-522))) (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-6 (-283)) (-15 -1441 ((-2 (|:| -2012 $) (|:| -1320 (-382 |#2|))) (-382 |#2|)))) |%noBranch|)))
-((-4125 (((-588 |#6|) (-588 |#4|) (-108)) 47)) (-3180 ((|#6| |#6|) 40)))
-(((-570 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3180 (|#6| |#6|)) (-15 -4125 ((-588 |#6|) (-588 |#4|) (-108)))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|) (-1023 |#1| |#2| |#3| |#4|)) (T -570))
-((-4125 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 *10)) (-5 *1 (-570 *5 *6 *7 *8 *9 *10)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *10 (-1023 *5 *6 *7 *8)))) (-3180 (*1 *2 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *1 (-570 *3 *4 *5 *6 *7 *2)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *2 (-1023 *3 *4 *5 *6)))))
-(-10 -7 (-15 -3180 (|#6| |#6|)) (-15 -4125 ((-588 |#6|) (-588 |#4|) (-108))))
-((-2438 (((-108) |#3| (-708) (-588 |#3|)) 23)) (-1547 (((-3 (-2 (|:| |polfac| (-588 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-588 (-1081 |#3|)))) "failed") |#3| (-588 (-1081 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2976 (-588 (-2 (|:| |irr| |#4|) (|:| -2245 (-522)))))) (-588 |#3|) (-588 |#1|) (-588 |#3|)) 52)))
-(((-571 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2438 ((-108) |#3| (-708) (-588 |#3|))) (-15 -1547 ((-3 (-2 (|:| |polfac| (-588 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-588 (-1081 |#3|)))) "failed") |#3| (-588 (-1081 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2976 (-588 (-2 (|:| |irr| |#4|) (|:| -2245 (-522)))))) (-588 |#3|) (-588 |#1|) (-588 |#3|)))) (-784) (-730) (-283) (-878 |#3| |#2| |#1|)) (T -571))
-((-1547 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -2976 (-588 (-2 (|:| |irr| *10) (|:| -2245 (-522))))))) (-5 *6 (-588 *3)) (-5 *7 (-588 *8)) (-4 *8 (-784)) (-4 *3 (-283)) (-4 *10 (-878 *3 *9 *8)) (-4 *9 (-730)) (-5 *2 (-2 (|:| |polfac| (-588 *10)) (|:| |correct| *3) (|:| |corrfact| (-588 (-1081 *3))))) (-5 *1 (-571 *8 *9 *3 *10)) (-5 *4 (-588 (-1081 *3))))) (-2438 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-708)) (-5 *5 (-588 *3)) (-4 *3 (-283)) (-4 *6 (-784)) (-4 *7 (-730)) (-5 *2 (-108)) (-5 *1 (-571 *6 *7 *3 *8)) (-4 *8 (-878 *3 *7 *6)))))
-(-10 -7 (-15 -2438 ((-108) |#3| (-708) (-588 |#3|))) (-15 -1547 ((-3 (-2 (|:| |polfac| (-588 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-588 (-1081 |#3|)))) "failed") |#3| (-588 (-1081 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2976 (-588 (-2 (|:| |irr| |#4|) (|:| -2245 (-522)))))) (-588 |#3|) (-588 |#1|) (-588 |#3|))))
-((-1416 (((-108) $ $) NIL)) (-4106 (((-588 |#1|) $) NIL)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) NIL)) (-2782 (((-108) $) NIL)) (-1225 (($ $) 67)) (-1254 (((-606 |#1| |#2|) $) 52)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 70)) (-4115 (((-588 (-270 |#2|)) $ $) 33)) (-4151 (((-1032) $) NIL)) (-3266 (($ (-606 |#1| |#2|)) 48)) (-3122 (($ $ $) NIL)) (-1288 (($ $ $) NIL)) (-2190 (((-792) $) 58) (((-1179 |#1| |#2|) $) NIL) (((-1184 |#1| |#2|) $) 66)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3577 (($) 53 T CONST)) (-3103 (((-588 (-2 (|:| |k| (-613 |#1|)) (|:| |c| |#2|))) $) 31)) (-3228 (((-588 (-606 |#1| |#2|)) (-588 |#1|)) 65)) (-2238 (((-588 (-2 (|:| |k| (-822 |#1|)) (|:| |c| |#2|))) $) 36)) (-1531 (((-108) $ $) 54)) (-1620 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ $ $) 44)))
-(((-572 |#1| |#2| |#3|) (-13 (-447) (-10 -8 (-15 -3266 ($ (-606 |#1| |#2|))) (-15 -1254 ((-606 |#1| |#2|) $)) (-15 -2238 ((-588 (-2 (|:| |k| (-822 |#1|)) (|:| |c| |#2|))) $)) (-15 -2190 ((-1179 |#1| |#2|) $)) (-15 -2190 ((-1184 |#1| |#2|) $)) (-15 -1225 ($ $)) (-15 -4106 ((-588 |#1|) $)) (-15 -3228 ((-588 (-606 |#1| |#2|)) (-588 |#1|))) (-15 -3103 ((-588 (-2 (|:| |k| (-613 |#1|)) (|:| |c| |#2|))) $)) (-15 -4115 ((-588 (-270 |#2|)) $ $)))) (-784) (-13 (-157) (-655 (-382 (-522)))) (-850)) (T -572))
-((-3266 (*1 *1 *2) (-12 (-5 *2 (-606 *3 *4)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-5 *1 (-572 *3 *4 *5)) (-14 *5 (-850)))) (-1254 (*1 *2 *1) (-12 (-5 *2 (-606 *3 *4)) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))) (-2238 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |k| (-822 *3)) (|:| |c| *4)))) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-1179 *3 *4)) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-1184 *3 *4)) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))) (-1225 (*1 *1 *1) (-12 (-5 *1 (-572 *2 *3 *4)) (-4 *2 (-784)) (-4 *3 (-13 (-157) (-655 (-382 (-522))))) (-14 *4 (-850)))) (-4106 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))) (-3228 (*1 *2 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-784)) (-5 *2 (-588 (-606 *4 *5))) (-5 *1 (-572 *4 *5 *6)) (-4 *5 (-13 (-157) (-655 (-382 (-522))))) (-14 *6 (-850)))) (-3103 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |k| (-613 *3)) (|:| |c| *4)))) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))) (-4115 (*1 *2 *1 *1) (-12 (-5 *2 (-588 (-270 *4))) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))))
-(-13 (-447) (-10 -8 (-15 -3266 ($ (-606 |#1| |#2|))) (-15 -1254 ((-606 |#1| |#2|) $)) (-15 -2238 ((-588 (-2 (|:| |k| (-822 |#1|)) (|:| |c| |#2|))) $)) (-15 -2190 ((-1179 |#1| |#2|) $)) (-15 -2190 ((-1184 |#1| |#2|) $)) (-15 -1225 ($ $)) (-15 -4106 ((-588 |#1|) $)) (-15 -3228 ((-588 (-606 |#1| |#2|)) (-588 |#1|))) (-15 -3103 ((-588 (-2 (|:| |k| (-613 |#1|)) (|:| |c| |#2|))) $)) (-15 -4115 ((-588 (-270 |#2|)) $ $))))
-((-4125 (((-588 (-1056 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|)))) (-588 (-717 |#1| (-794 |#2|))) (-108)) 71) (((-588 (-968 |#1| |#2|)) (-588 (-717 |#1| (-794 |#2|))) (-108)) 57)) (-3191 (((-108) (-588 (-717 |#1| (-794 |#2|)))) 22)) (-3387 (((-588 (-1056 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|)))) (-588 (-717 |#1| (-794 |#2|))) (-108)) 70)) (-2614 (((-588 (-968 |#1| |#2|)) (-588 (-717 |#1| (-794 |#2|))) (-108)) 56)) (-4054 (((-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|)))) 26)) (-1652 (((-3 (-588 (-717 |#1| (-794 |#2|))) "failed") (-588 (-717 |#1| (-794 |#2|)))) 25)))
-(((-573 |#1| |#2|) (-10 -7 (-15 -3191 ((-108) (-588 (-717 |#1| (-794 |#2|))))) (-15 -1652 ((-3 (-588 (-717 |#1| (-794 |#2|))) "failed") (-588 (-717 |#1| (-794 |#2|))))) (-15 -4054 ((-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|))))) (-15 -2614 ((-588 (-968 |#1| |#2|)) (-588 (-717 |#1| (-794 |#2|))) (-108))) (-15 -3387 ((-588 (-1056 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|)))) (-588 (-717 |#1| (-794 |#2|))) (-108))) (-15 -4125 ((-588 (-968 |#1| |#2|)) (-588 (-717 |#1| (-794 |#2|))) (-108))) (-15 -4125 ((-588 (-1056 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|)))) (-588 (-717 |#1| (-794 |#2|))) (-108)))) (-426) (-588 (-1085))) (T -573))
-((-4125 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426)) (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-1056 *5 (-494 (-794 *6)) (-794 *6) (-717 *5 (-794 *6))))) (-5 *1 (-573 *5 *6)))) (-4125 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426)) (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-573 *5 *6)))) (-3387 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426)) (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-1056 *5 (-494 (-794 *6)) (-794 *6) (-717 *5 (-794 *6))))) (-5 *1 (-573 *5 *6)))) (-2614 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426)) (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-573 *5 *6)))) (-4054 (*1 *2 *2) (-12 (-5 *2 (-588 (-717 *3 (-794 *4)))) (-4 *3 (-426)) (-14 *4 (-588 (-1085))) (-5 *1 (-573 *3 *4)))) (-1652 (*1 *2 *2) (|partial| -12 (-5 *2 (-588 (-717 *3 (-794 *4)))) (-4 *3 (-426)) (-14 *4 (-588 (-1085))) (-5 *1 (-573 *3 *4)))) (-3191 (*1 *2 *3) (-12 (-5 *3 (-588 (-717 *4 (-794 *5)))) (-4 *4 (-426)) (-14 *5 (-588 (-1085))) (-5 *2 (-108)) (-5 *1 (-573 *4 *5)))))
-(-10 -7 (-15 -3191 ((-108) (-588 (-717 |#1| (-794 |#2|))))) (-15 -1652 ((-3 (-588 (-717 |#1| (-794 |#2|))) "failed") (-588 (-717 |#1| (-794 |#2|))))) (-15 -4054 ((-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|))))) (-15 -2614 ((-588 (-968 |#1| |#2|)) (-588 (-717 |#1| (-794 |#2|))) (-108))) (-15 -3387 ((-588 (-1056 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|)))) (-588 (-717 |#1| (-794 |#2|))) (-108))) (-15 -4125 ((-588 (-968 |#1| |#2|)) (-588 (-717 |#1| (-794 |#2|))) (-108))) (-15 -4125 ((-588 (-1056 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|)))) (-588 (-717 |#1| (-794 |#2|))) (-108))))
-((-2908 (($ $) 38)) (-2772 (($ $) 21)) (-2884 (($ $) 37)) (-2748 (($ $) 22)) (-2930 (($ $) 36)) (-2794 (($ $) 23)) (-2838 (($) 48)) (-1254 (($ $) 45)) (-3247 (($ $) 17)) (-2355 (($ $ (-1007 $)) 7) (($ $ (-1085)) 6)) (-3266 (($ $) 46)) (-2706 (($ $) 15)) (-2735 (($ $) 16)) (-1738 (($ $) 35)) (-2804 (($ $) 24)) (-2919 (($ $) 34)) (-2784 (($ $) 25)) (-2896 (($ $) 33)) (-2761 (($ $) 26)) (-1759 (($ $) 44)) (-2836 (($ $) 32)) (-1745 (($ $) 43)) (-2815 (($ $) 31)) (-1776 (($ $) 42)) (-2860 (($ $) 30)) (-3924 (($ $) 41)) (-2872 (($ $) 29)) (-1768 (($ $) 40)) (-2848 (($ $) 28)) (-1752 (($ $) 39)) (-2825 (($ $) 27)) (-2558 (($ $) 19)) (-1654 (($ $) 20)) (-3543 (($ $) 18)) (** (($ $ $) 47)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3355 (((-522) $) NIL (|has| |#1| (-782)))) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) NIL)) (-3603 (((-108) $) NIL (|has| |#1| (-782)))) (-2859 (((-108) $) NIL)) (-2947 ((|#1| $) 13)) (-3740 (((-108) $) NIL (|has| |#1| (-782)))) (-1308 (($ $ $) NIL (|has| |#1| (-782)))) (-2524 (($ $ $) NIL (|has| |#1| (-782)))) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2959 ((|#3| $) 15)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) NIL)) (-2742 (((-708)) 20)) (-4126 (($ $) NIL (|has| |#1| (-782)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) 12 T CONST)) (-1623 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1682 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-567 |#1| |#2| |#3|) (-13 (-37 |#2|) (-10 -8 (IF (|has| |#1| (-782)) (-6 (-782)) |%noBranch|) (-15 -1682 ($ $ |#3|)) (-15 -1682 ($ |#1| |#3|)) (-15 -2947 (|#1| $)) (-15 -2959 (|#3| $)))) (-37 |#2|) (-157) (|SubsetCategory| (-664) |#2|)) (T -567))
+((-1682 (*1 *1 *1 *2) (-12 (-4 *4 (-157)) (-5 *1 (-567 *3 *4 *2)) (-4 *3 (-37 *4)) (-4 *2 (|SubsetCategory| (-664) *4)))) (-1682 (*1 *1 *2 *3) (-12 (-4 *4 (-157)) (-5 *1 (-567 *2 *4 *3)) (-4 *2 (-37 *4)) (-4 *3 (|SubsetCategory| (-664) *4)))) (-2947 (*1 *2 *1) (-12 (-4 *3 (-157)) (-4 *2 (-37 *3)) (-5 *1 (-567 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-664) *3)))) (-2959 (*1 *2 *1) (-12 (-4 *4 (-157)) (-4 *2 (|SubsetCategory| (-664) *4)) (-5 *1 (-567 *3 *4 *2)) (-4 *3 (-37 *4)))))
+(-13 (-37 |#2|) (-10 -8 (IF (|has| |#1| (-782)) (-6 (-782)) |%noBranch|) (-15 -1682 ($ $ |#3|)) (-15 -1682 ($ |#1| |#3|)) (-15 -2947 (|#1| $)) (-15 -2959 (|#3| $))))
+((-3220 ((|#2| |#2| (-1085) (-1085)) 18)))
+(((-568 |#1| |#2|) (-10 -7 (-15 -3220 (|#2| |#2| (-1085) (-1085)))) (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-887) (-29 |#1|))) (T -568))
+((-3220 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522)))) (-5 *1 (-568 *4 *2)) (-4 *2 (-13 (-1106) (-887) (-29 *4))))))
+(-10 -7 (-15 -3220 (|#2| |#2| (-1085) (-1085))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 52)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2529 ((|#1| $) 49)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-2458 (((-2 (|:| -3389 $) (|:| -1898 (-382 |#2|))) (-382 |#2|)) 97 (|has| |#1| (-338)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 85) (((-3 |#2| "failed") $) 82)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-3241 (($ $) 24)) (-3920 (((-3 $ "failed") $) 76)) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-3872 (((-522) $) 19)) (-2859 (((-108) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-1374 (((-108) $) 36)) (-3500 (($ |#1| (-522)) 21)) (-3224 ((|#1| $) 51)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) 87 (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 100 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-2276 (((-3 $ "failed") $ $) 80)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-4031 (((-708) $) 99 (|has| |#1| (-338)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 98 (|has| |#1| (-338)))) (-2731 (($ $ (-1 |#2| |#2|)) 67) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $) NIL (|has| |#2| (-210)))) (-2487 (((-522) $) 34)) (-3873 (((-382 |#2|) $) 42)) (-2217 (((-792) $) 63) (($ (-522)) 32) (($ $) NIL) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) 31) (($ |#2|) 22)) (-1643 ((|#1| $ (-522)) 64)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 9 T CONST)) (-3709 (($) 12 T CONST)) (-2252 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $) NIL (|has| |#2| (-210)))) (-1562 (((-108) $ $) 17)) (-1672 (($ $) 46) (($ $ $) NIL)) (-1661 (($ $ $) 77)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 26) (($ $ $) 44)))
+(((-569 |#1| |#2|) (-13 (-208 |#2|) (-514) (-563 (-382 |#2|)) (-386 |#1|) (-962 |#2|) (-10 -8 (-15 -1374 ((-108) $)) (-15 -2487 ((-522) $)) (-15 -3872 ((-522) $)) (-15 -3241 ($ $)) (-15 -3224 (|#1| $)) (-15 -2529 (|#1| $)) (-15 -1643 (|#1| $ (-522))) (-15 -3500 ($ |#1| (-522))) (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-6 (-283)) (-15 -2458 ((-2 (|:| -3389 $) (|:| -1898 (-382 |#2|))) (-382 |#2|)))) |%noBranch|))) (-514) (-1142 |#1|)) (T -569))
+((-1374 (*1 *2 *1) (-12 (-4 *3 (-514)) (-5 *2 (-108)) (-5 *1 (-569 *3 *4)) (-4 *4 (-1142 *3)))) (-2487 (*1 *2 *1) (-12 (-4 *3 (-514)) (-5 *2 (-522)) (-5 *1 (-569 *3 *4)) (-4 *4 (-1142 *3)))) (-3872 (*1 *2 *1) (-12 (-4 *3 (-514)) (-5 *2 (-522)) (-5 *1 (-569 *3 *4)) (-4 *4 (-1142 *3)))) (-3241 (*1 *1 *1) (-12 (-4 *2 (-514)) (-5 *1 (-569 *2 *3)) (-4 *3 (-1142 *2)))) (-3224 (*1 *2 *1) (-12 (-4 *2 (-514)) (-5 *1 (-569 *2 *3)) (-4 *3 (-1142 *2)))) (-2529 (*1 *2 *1) (-12 (-4 *2 (-514)) (-5 *1 (-569 *2 *3)) (-4 *3 (-1142 *2)))) (-1643 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *2 (-514)) (-5 *1 (-569 *2 *4)) (-4 *4 (-1142 *2)))) (-3500 (*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-4 *2 (-514)) (-5 *1 (-569 *2 *4)) (-4 *4 (-1142 *2)))) (-2458 (*1 *2 *3) (-12 (-4 *4 (-338)) (-4 *4 (-514)) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| -3389 (-569 *4 *5)) (|:| -1898 (-382 *5)))) (-5 *1 (-569 *4 *5)) (-5 *3 (-382 *5)))))
+(-13 (-208 |#2|) (-514) (-563 (-382 |#2|)) (-386 |#1|) (-962 |#2|) (-10 -8 (-15 -1374 ((-108) $)) (-15 -2487 ((-522) $)) (-15 -3872 ((-522) $)) (-15 -3241 ($ $)) (-15 -3224 (|#1| $)) (-15 -2529 (|#1| $)) (-15 -1643 (|#1| $ (-522))) (-15 -3500 ($ |#1| (-522))) (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-6 (-283)) (-15 -2458 ((-2 (|:| -3389 $) (|:| -1898 (-382 |#2|))) (-382 |#2|)))) |%noBranch|)))
+((-2510 (((-588 |#6|) (-588 |#4|) (-108)) 47)) (-2195 ((|#6| |#6|) 40)))
+(((-570 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2195 (|#6| |#6|)) (-15 -2510 ((-588 |#6|) (-588 |#4|) (-108)))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|) (-1023 |#1| |#2| |#3| |#4|)) (T -570))
+((-2510 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 *10)) (-5 *1 (-570 *5 *6 *7 *8 *9 *10)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *10 (-1023 *5 *6 *7 *8)))) (-2195 (*1 *2 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *1 (-570 *3 *4 *5 *6 *7 *2)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *2 (-1023 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2195 (|#6| |#6|)) (-15 -2510 ((-588 |#6|) (-588 |#4|) (-108))))
+((-3579 (((-108) |#3| (-708) (-588 |#3|)) 23)) (-3419 (((-3 (-2 (|:| |polfac| (-588 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-588 (-1081 |#3|)))) "failed") |#3| (-588 (-1081 |#3|)) (-2 (|:| |contp| |#3|) (|:| -4045 (-588 (-2 (|:| |irr| |#4|) (|:| -4160 (-522)))))) (-588 |#3|) (-588 |#1|) (-588 |#3|)) 52)))
+(((-571 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3579 ((-108) |#3| (-708) (-588 |#3|))) (-15 -3419 ((-3 (-2 (|:| |polfac| (-588 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-588 (-1081 |#3|)))) "failed") |#3| (-588 (-1081 |#3|)) (-2 (|:| |contp| |#3|) (|:| -4045 (-588 (-2 (|:| |irr| |#4|) (|:| -4160 (-522)))))) (-588 |#3|) (-588 |#1|) (-588 |#3|)))) (-784) (-730) (-283) (-878 |#3| |#2| |#1|)) (T -571))
+((-3419 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -4045 (-588 (-2 (|:| |irr| *10) (|:| -4160 (-522))))))) (-5 *6 (-588 *3)) (-5 *7 (-588 *8)) (-4 *8 (-784)) (-4 *3 (-283)) (-4 *10 (-878 *3 *9 *8)) (-4 *9 (-730)) (-5 *2 (-2 (|:| |polfac| (-588 *10)) (|:| |correct| *3) (|:| |corrfact| (-588 (-1081 *3))))) (-5 *1 (-571 *8 *9 *3 *10)) (-5 *4 (-588 (-1081 *3))))) (-3579 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-708)) (-5 *5 (-588 *3)) (-4 *3 (-283)) (-4 *6 (-784)) (-4 *7 (-730)) (-5 *2 (-108)) (-5 *1 (-571 *6 *7 *3 *8)) (-4 *8 (-878 *3 *7 *6)))))
+(-10 -7 (-15 -3579 ((-108) |#3| (-708) (-588 |#3|))) (-15 -3419 ((-3 (-2 (|:| |polfac| (-588 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-588 (-1081 |#3|)))) "failed") |#3| (-588 (-1081 |#3|)) (-2 (|:| |contp| |#3|) (|:| -4045 (-588 (-2 (|:| |irr| |#4|) (|:| -4160 (-522)))))) (-588 |#3|) (-588 |#1|) (-588 |#3|))))
+((-1419 (((-108) $ $) NIL)) (-4127 (((-588 |#1|) $) NIL)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) NIL)) (-2859 (((-108) $) NIL)) (-2182 (($ $) 67)) (-1238 (((-606 |#1| |#2|) $) 52)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 70)) (-2372 (((-588 (-270 |#2|)) $ $) 33)) (-4174 (((-1032) $) NIL)) (-3357 (($ (-606 |#1| |#2|)) 48)) (-2983 (($ $ $) NIL)) (-1596 (($ $ $) NIL)) (-2217 (((-792) $) 58) (((-1179 |#1| |#2|) $) NIL) (((-1184 |#1| |#2|) $) 66)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3709 (($) 53 T CONST)) (-3944 (((-588 (-2 (|:| |k| (-613 |#1|)) (|:| |c| |#2|))) $) 31)) (-2767 (((-588 (-606 |#1| |#2|)) (-588 |#1|)) 65)) (-1738 (((-588 (-2 (|:| |k| (-822 |#1|)) (|:| |c| |#2|))) $) 36)) (-1562 (((-108) $ $) 54)) (-1682 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ $ $) 44)))
+(((-572 |#1| |#2| |#3|) (-13 (-447) (-10 -8 (-15 -3357 ($ (-606 |#1| |#2|))) (-15 -1238 ((-606 |#1| |#2|) $)) (-15 -1738 ((-588 (-2 (|:| |k| (-822 |#1|)) (|:| |c| |#2|))) $)) (-15 -2217 ((-1179 |#1| |#2|) $)) (-15 -2217 ((-1184 |#1| |#2|) $)) (-15 -2182 ($ $)) (-15 -4127 ((-588 |#1|) $)) (-15 -2767 ((-588 (-606 |#1| |#2|)) (-588 |#1|))) (-15 -3944 ((-588 (-2 (|:| |k| (-613 |#1|)) (|:| |c| |#2|))) $)) (-15 -2372 ((-588 (-270 |#2|)) $ $)))) (-784) (-13 (-157) (-655 (-382 (-522)))) (-850)) (T -572))
+((-3357 (*1 *1 *2) (-12 (-5 *2 (-606 *3 *4)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-5 *1 (-572 *3 *4 *5)) (-14 *5 (-850)))) (-1238 (*1 *2 *1) (-12 (-5 *2 (-606 *3 *4)) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))) (-1738 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |k| (-822 *3)) (|:| |c| *4)))) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-1179 *3 *4)) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-1184 *3 *4)) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))) (-2182 (*1 *1 *1) (-12 (-5 *1 (-572 *2 *3 *4)) (-4 *2 (-784)) (-4 *3 (-13 (-157) (-655 (-382 (-522))))) (-14 *4 (-850)))) (-4127 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))) (-2767 (*1 *2 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-784)) (-5 *2 (-588 (-606 *4 *5))) (-5 *1 (-572 *4 *5 *6)) (-4 *5 (-13 (-157) (-655 (-382 (-522))))) (-14 *6 (-850)))) (-3944 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |k| (-613 *3)) (|:| |c| *4)))) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))) (-2372 (*1 *2 *1 *1) (-12 (-5 *2 (-588 (-270 *4))) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))))
+(-13 (-447) (-10 -8 (-15 -3357 ($ (-606 |#1| |#2|))) (-15 -1238 ((-606 |#1| |#2|) $)) (-15 -1738 ((-588 (-2 (|:| |k| (-822 |#1|)) (|:| |c| |#2|))) $)) (-15 -2217 ((-1179 |#1| |#2|) $)) (-15 -2217 ((-1184 |#1| |#2|) $)) (-15 -2182 ($ $)) (-15 -4127 ((-588 |#1|) $)) (-15 -2767 ((-588 (-606 |#1| |#2|)) (-588 |#1|))) (-15 -3944 ((-588 (-2 (|:| |k| (-613 |#1|)) (|:| |c| |#2|))) $)) (-15 -2372 ((-588 (-270 |#2|)) $ $))))
+((-2510 (((-588 (-1056 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|)))) (-588 (-717 |#1| (-794 |#2|))) (-108)) 71) (((-588 (-968 |#1| |#2|)) (-588 (-717 |#1| (-794 |#2|))) (-108)) 57)) (-2318 (((-108) (-588 (-717 |#1| (-794 |#2|)))) 22)) (-3643 (((-588 (-1056 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|)))) (-588 (-717 |#1| (-794 |#2|))) (-108)) 70)) (-3340 (((-588 (-968 |#1| |#2|)) (-588 (-717 |#1| (-794 |#2|))) (-108)) 56)) (-3059 (((-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|)))) 26)) (-2413 (((-3 (-588 (-717 |#1| (-794 |#2|))) "failed") (-588 (-717 |#1| (-794 |#2|)))) 25)))
+(((-573 |#1| |#2|) (-10 -7 (-15 -2318 ((-108) (-588 (-717 |#1| (-794 |#2|))))) (-15 -2413 ((-3 (-588 (-717 |#1| (-794 |#2|))) "failed") (-588 (-717 |#1| (-794 |#2|))))) (-15 -3059 ((-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|))))) (-15 -3340 ((-588 (-968 |#1| |#2|)) (-588 (-717 |#1| (-794 |#2|))) (-108))) (-15 -3643 ((-588 (-1056 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|)))) (-588 (-717 |#1| (-794 |#2|))) (-108))) (-15 -2510 ((-588 (-968 |#1| |#2|)) (-588 (-717 |#1| (-794 |#2|))) (-108))) (-15 -2510 ((-588 (-1056 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|)))) (-588 (-717 |#1| (-794 |#2|))) (-108)))) (-426) (-588 (-1085))) (T -573))
+((-2510 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426)) (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-1056 *5 (-494 (-794 *6)) (-794 *6) (-717 *5 (-794 *6))))) (-5 *1 (-573 *5 *6)))) (-2510 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426)) (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-573 *5 *6)))) (-3643 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426)) (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-1056 *5 (-494 (-794 *6)) (-794 *6) (-717 *5 (-794 *6))))) (-5 *1 (-573 *5 *6)))) (-3340 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426)) (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-573 *5 *6)))) (-3059 (*1 *2 *2) (-12 (-5 *2 (-588 (-717 *3 (-794 *4)))) (-4 *3 (-426)) (-14 *4 (-588 (-1085))) (-5 *1 (-573 *3 *4)))) (-2413 (*1 *2 *2) (|partial| -12 (-5 *2 (-588 (-717 *3 (-794 *4)))) (-4 *3 (-426)) (-14 *4 (-588 (-1085))) (-5 *1 (-573 *3 *4)))) (-2318 (*1 *2 *3) (-12 (-5 *3 (-588 (-717 *4 (-794 *5)))) (-4 *4 (-426)) (-14 *5 (-588 (-1085))) (-5 *2 (-108)) (-5 *1 (-573 *4 *5)))))
+(-10 -7 (-15 -2318 ((-108) (-588 (-717 |#1| (-794 |#2|))))) (-15 -2413 ((-3 (-588 (-717 |#1| (-794 |#2|))) "failed") (-588 (-717 |#1| (-794 |#2|))))) (-15 -3059 ((-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|))))) (-15 -3340 ((-588 (-968 |#1| |#2|)) (-588 (-717 |#1| (-794 |#2|))) (-108))) (-15 -3643 ((-588 (-1056 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|)))) (-588 (-717 |#1| (-794 |#2|))) (-108))) (-15 -2510 ((-588 (-968 |#1| |#2|)) (-588 (-717 |#1| (-794 |#2|))) (-108))) (-15 -2510 ((-588 (-1056 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|)))) (-588 (-717 |#1| (-794 |#2|))) (-108))))
+((-3044 (($ $) 38)) (-2923 (($ $) 21)) (-3023 (($ $) 37)) (-2906 (($ $) 22)) (-3066 (($ $) 36)) (-2936 (($ $) 23)) (-2980 (($) 48)) (-1238 (($ $) 45)) (-3335 (($ $) 17)) (-2093 (($ $ (-1007 $)) 7) (($ $ (-1085)) 6)) (-3357 (($ $) 46)) (-2880 (($ $) 15)) (-2900 (($ $) 16)) (-1831 (($ $) 35)) (-2946 (($ $) 24)) (-3054 (($ $) 34)) (-2928 (($ $) 25)) (-3035 (($ $) 33)) (-2915 (($ $) 26)) (-1856 (($ $) 44)) (-2976 (($ $) 32)) (-1839 (($ $) 43)) (-2957 (($ $) 31)) (-1873 (($ $) 42)) (-3001 (($ $) 30)) (-2476 (($ $) 41)) (-3011 (($ $) 29)) (-1864 (($ $) 40)) (-2989 (($ $) 28)) (-1849 (($ $) 39)) (-2966 (($ $) 27)) (-3758 (($ $) 19)) (-2440 (($ $) 20)) (-2866 (($ $) 18)) (** (($ $ $) 47)))
(((-574) (-1197)) (T -574))
-((-1654 (*1 *1 *1) (-4 *1 (-574))) (-2558 (*1 *1 *1) (-4 *1 (-574))) (-3543 (*1 *1 *1) (-4 *1 (-574))) (-3247 (*1 *1 *1) (-4 *1 (-574))) (-2735 (*1 *1 *1) (-4 *1 (-574))) (-2706 (*1 *1 *1) (-4 *1 (-574))))
-(-13 (-887) (-1106) (-10 -8 (-15 -1654 ($ $)) (-15 -2558 ($ $)) (-15 -3543 ($ $)) (-15 -3247 ($ $)) (-15 -2735 ($ $)) (-15 -2706 ($ $))))
+((-2440 (*1 *1 *1) (-4 *1 (-574))) (-3758 (*1 *1 *1) (-4 *1 (-574))) (-2866 (*1 *1 *1) (-4 *1 (-574))) (-3335 (*1 *1 *1) (-4 *1 (-574))) (-2900 (*1 *1 *1) (-4 *1 (-574))) (-2880 (*1 *1 *1) (-4 *1 (-574))))
+(-13 (-887) (-1106) (-10 -8 (-15 -2440 ($ $)) (-15 -3758 ($ $)) (-15 -2866 ($ $)) (-15 -3335 ($ $)) (-15 -2900 ($ $)) (-15 -2880 ($ $))))
(((-34) . T) ((-91) . T) ((-260) . T) ((-463) . T) ((-887) . T) ((-1106) . T) ((-1109) . T))
-((-2626 (((-110) (-110)) 83)) (-3247 ((|#2| |#2|) 30)) (-2355 ((|#2| |#2| (-1007 |#2|)) 79) ((|#2| |#2| (-1085)) 52)) (-2706 ((|#2| |#2|) 29)) (-2735 ((|#2| |#2|) 31)) (-3614 (((-108) (-110)) 34)) (-2558 ((|#2| |#2|) 26)) (-1654 ((|#2| |#2|) 28)) (-3543 ((|#2| |#2|) 27)))
-(((-575 |#1| |#2|) (-10 -7 (-15 -3614 ((-108) (-110))) (-15 -2626 ((-110) (-110))) (-15 -1654 (|#2| |#2|)) (-15 -2558 (|#2| |#2|)) (-15 -3543 (|#2| |#2|)) (-15 -3247 (|#2| |#2|)) (-15 -2706 (|#2| |#2|)) (-15 -2735 (|#2| |#2|)) (-15 -2355 (|#2| |#2| (-1085))) (-15 -2355 (|#2| |#2| (-1007 |#2|)))) (-13 (-784) (-514)) (-13 (-405 |#1|) (-928) (-1106))) (T -575))
-((-2355 (*1 *2 *2 *3) (-12 (-5 *3 (-1007 *2)) (-4 *2 (-13 (-405 *4) (-928) (-1106))) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-575 *4 *2)))) (-2355 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-575 *4 *2)) (-4 *2 (-13 (-405 *4) (-928) (-1106))))) (-2735 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2)) (-4 *2 (-13 (-405 *3) (-928) (-1106))))) (-2706 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2)) (-4 *2 (-13 (-405 *3) (-928) (-1106))))) (-3247 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2)) (-4 *2 (-13 (-405 *3) (-928) (-1106))))) (-3543 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2)) (-4 *2 (-13 (-405 *3) (-928) (-1106))))) (-2558 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2)) (-4 *2 (-13 (-405 *3) (-928) (-1106))))) (-1654 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2)) (-4 *2 (-13 (-405 *3) (-928) (-1106))))) (-2626 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *4)) (-4 *4 (-13 (-405 *3) (-928) (-1106))))) (-3614 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-575 *4 *5)) (-4 *5 (-13 (-405 *4) (-928) (-1106))))))
-(-10 -7 (-15 -3614 ((-108) (-110))) (-15 -2626 ((-110) (-110))) (-15 -1654 (|#2| |#2|)) (-15 -2558 (|#2| |#2|)) (-15 -3543 (|#2| |#2|)) (-15 -3247 (|#2| |#2|)) (-15 -2706 (|#2| |#2|)) (-15 -2735 (|#2| |#2|)) (-15 -2355 (|#2| |#2| (-1085))) (-15 -2355 (|#2| |#2| (-1007 |#2|))))
-((-1456 (((-454 |#1| |#2|) (-224 |#1| |#2|)) 53)) (-1323 (((-588 (-224 |#1| |#2|)) (-588 (-454 |#1| |#2|))) 68)) (-3582 (((-454 |#1| |#2|) (-588 (-454 |#1| |#2|)) (-794 |#1|)) 70) (((-454 |#1| |#2|) (-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)) (-794 |#1|)) 69)) (-2406 (((-2 (|:| |gblist| (-588 (-224 |#1| |#2|))) (|:| |gvlist| (-588 (-522)))) (-588 (-454 |#1| |#2|))) 106)) (-3574 (((-588 (-454 |#1| |#2|)) (-794 |#1|) (-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|))) 83)) (-1849 (((-2 (|:| |glbase| (-588 (-224 |#1| |#2|))) (|:| |glval| (-588 (-522)))) (-588 (-224 |#1| |#2|))) 117)) (-1459 (((-1166 |#2|) (-454 |#1| |#2|) (-588 (-454 |#1| |#2|))) 58)) (-2595 (((-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|))) 39)) (-3895 (((-224 |#1| |#2|) (-224 |#1| |#2|) (-588 (-224 |#1| |#2|))) 49)) (-1374 (((-224 |#1| |#2|) (-588 |#2|) (-224 |#1| |#2|) (-588 (-224 |#1| |#2|))) 90)))
-(((-576 |#1| |#2|) (-10 -7 (-15 -2406 ((-2 (|:| |gblist| (-588 (-224 |#1| |#2|))) (|:| |gvlist| (-588 (-522)))) (-588 (-454 |#1| |#2|)))) (-15 -1849 ((-2 (|:| |glbase| (-588 (-224 |#1| |#2|))) (|:| |glval| (-588 (-522)))) (-588 (-224 |#1| |#2|)))) (-15 -1323 ((-588 (-224 |#1| |#2|)) (-588 (-454 |#1| |#2|)))) (-15 -3582 ((-454 |#1| |#2|) (-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)) (-794 |#1|))) (-15 -3582 ((-454 |#1| |#2|) (-588 (-454 |#1| |#2|)) (-794 |#1|))) (-15 -2595 ((-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)))) (-15 -1459 ((-1166 |#2|) (-454 |#1| |#2|) (-588 (-454 |#1| |#2|)))) (-15 -1374 ((-224 |#1| |#2|) (-588 |#2|) (-224 |#1| |#2|) (-588 (-224 |#1| |#2|)))) (-15 -3574 ((-588 (-454 |#1| |#2|)) (-794 |#1|) (-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)))) (-15 -3895 ((-224 |#1| |#2|) (-224 |#1| |#2|) (-588 (-224 |#1| |#2|)))) (-15 -1456 ((-454 |#1| |#2|) (-224 |#1| |#2|)))) (-588 (-1085)) (-426)) (T -576))
-((-1456 (*1 *2 *3) (-12 (-5 *3 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *2 (-454 *4 *5)) (-5 *1 (-576 *4 *5)))) (-3895 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-224 *4 *5))) (-5 *2 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *1 (-576 *4 *5)))) (-3574 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-588 (-454 *4 *5))) (-5 *3 (-794 *4)) (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *1 (-576 *4 *5)))) (-1374 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 (-224 *5 *6))) (-4 *6 (-426)) (-5 *2 (-224 *5 *6)) (-14 *5 (-588 (-1085))) (-5 *1 (-576 *5 *6)))) (-1459 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-454 *5 *6))) (-5 *3 (-454 *5 *6)) (-14 *5 (-588 (-1085))) (-4 *6 (-426)) (-5 *2 (-1166 *6)) (-5 *1 (-576 *5 *6)))) (-2595 (*1 *2 *2) (-12 (-5 *2 (-588 (-454 *3 *4))) (-14 *3 (-588 (-1085))) (-4 *4 (-426)) (-5 *1 (-576 *3 *4)))) (-3582 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-454 *5 *6))) (-5 *4 (-794 *5)) (-14 *5 (-588 (-1085))) (-5 *2 (-454 *5 *6)) (-5 *1 (-576 *5 *6)) (-4 *6 (-426)))) (-3582 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-588 (-454 *5 *6))) (-5 *4 (-794 *5)) (-14 *5 (-588 (-1085))) (-5 *2 (-454 *5 *6)) (-5 *1 (-576 *5 *6)) (-4 *6 (-426)))) (-1323 (*1 *2 *3) (-12 (-5 *3 (-588 (-454 *4 *5))) (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *2 (-588 (-224 *4 *5))) (-5 *1 (-576 *4 *5)))) (-1849 (*1 *2 *3) (-12 (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *2 (-2 (|:| |glbase| (-588 (-224 *4 *5))) (|:| |glval| (-588 (-522))))) (-5 *1 (-576 *4 *5)) (-5 *3 (-588 (-224 *4 *5))))) (-2406 (*1 *2 *3) (-12 (-5 *3 (-588 (-454 *4 *5))) (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *2 (-2 (|:| |gblist| (-588 (-224 *4 *5))) (|:| |gvlist| (-588 (-522))))) (-5 *1 (-576 *4 *5)))))
-(-10 -7 (-15 -2406 ((-2 (|:| |gblist| (-588 (-224 |#1| |#2|))) (|:| |gvlist| (-588 (-522)))) (-588 (-454 |#1| |#2|)))) (-15 -1849 ((-2 (|:| |glbase| (-588 (-224 |#1| |#2|))) (|:| |glval| (-588 (-522)))) (-588 (-224 |#1| |#2|)))) (-15 -1323 ((-588 (-224 |#1| |#2|)) (-588 (-454 |#1| |#2|)))) (-15 -3582 ((-454 |#1| |#2|) (-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)) (-794 |#1|))) (-15 -3582 ((-454 |#1| |#2|) (-588 (-454 |#1| |#2|)) (-794 |#1|))) (-15 -2595 ((-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)))) (-15 -1459 ((-1166 |#2|) (-454 |#1| |#2|) (-588 (-454 |#1| |#2|)))) (-15 -1374 ((-224 |#1| |#2|) (-588 |#2|) (-224 |#1| |#2|) (-588 (-224 |#1| |#2|)))) (-15 -3574 ((-588 (-454 |#1| |#2|)) (-794 |#1|) (-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)))) (-15 -3895 ((-224 |#1| |#2|) (-224 |#1| |#2|) (-588 (-224 |#1| |#2|)))) (-15 -1456 ((-454 |#1| |#2|) (-224 |#1| |#2|))))
-((-1416 (((-108) $ $) NIL (-3708 (|has| (-51) (-1014)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014))))) (-1800 (($) NIL) (($ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))))) NIL)) (-2679 (((-1171) $ (-1068) (-1068)) NIL (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 (((-51) $ (-1068) (-51)) 16) (((-51) $ (-1085) (-51)) 17)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-2750 (((-3 (-51) "failed") (-1068) $) NIL)) (-3175 (($) NIL T CONST)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014))))) (-3859 (($ (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-3 (-51) "failed") (-1068) $) NIL)) (-1423 (($ (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014)))) (($ (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $ (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014)))) (((-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $ (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-3854 (((-51) $ (-1068) (-51)) NIL (|has| $ (-6 -4239)))) (-3631 (((-51) $ (-1068)) NIL)) (-3837 (((-588 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-588 (-51)) $) NIL (|has| $ (-6 -4238)))) (-3857 (($ $) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-1068) $) NIL (|has| (-1068) (-784)))) (-3308 (((-588 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-588 (-51)) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014)))) (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014))))) (-2014 (((-1068) $) NIL (|has| (-1068) (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4239))) (($ (-1 (-51) (-51)) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL) (($ (-1 (-51) (-51)) $) NIL) (($ (-1 (-51) (-51) (-51)) $ $) NIL)) (-1727 (($ (-363)) 9)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (-3708 (|has| (-51) (-1014)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014))))) (-2966 (((-588 (-1068)) $) NIL)) (-1231 (((-108) (-1068) $) NIL)) (-2116 (((-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) $) NIL)) (-4095 (($ (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) $) NIL)) (-3604 (((-588 (-1068)) $) NIL)) (-1405 (((-108) (-1068) $) NIL)) (-4151 (((-1032) $) NIL (-3708 (|has| (-51) (-1014)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014))))) (-2294 (((-51) $) NIL (|has| (-1068) (-784)))) (-1414 (((-3 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) "failed") (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL)) (-2602 (($ $ (-51)) NIL (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) $) NIL)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))))) NIL (-12 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014)))) (($ $ (-270 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))))) NIL (-12 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014)))) (($ $ (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) NIL (-12 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014)))) (($ $ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))))) NIL (-12 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014)))) (($ $ (-588 (-51)) (-588 (-51))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-51) (-51)) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-270 (-51))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-588 (-270 (-51)))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014))))) (-1525 (((-588 (-51)) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 (((-51) $ (-1068)) 14) (((-51) $ (-1068) (-51)) NIL) (((-51) $ (-1085)) 15)) (-3990 (($) NIL) (($ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))))) NIL)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014)))) (((-708) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014)))) (((-708) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))))) NIL)) (-2190 (((-792) $) NIL (-3708 (|has| (-51) (-562 (-792))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-562 (-792)))))) (-2795 (($ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))))) NIL)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (-3708 (|has| (-51) (-1014)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 (-51))) (-1014))))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-577) (-13 (-1097 (-1068) (-51)) (-10 -8 (-15 -1727 ($ (-363))) (-15 -3857 ($ $)) (-15 -2545 ((-51) $ (-1085))) (-15 -2379 ((-51) $ (-1085) (-51)))))) (T -577))
-((-1727 (*1 *1 *2) (-12 (-5 *2 (-363)) (-5 *1 (-577)))) (-3857 (*1 *1 *1) (-5 *1 (-577))) (-2545 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-51)) (-5 *1 (-577)))) (-2379 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-51)) (-5 *3 (-1085)) (-5 *1 (-577)))))
-(-13 (-1097 (-1068) (-51)) (-10 -8 (-15 -1727 ($ (-363))) (-15 -3857 ($ $)) (-15 -2545 ((-51) $ (-1085))) (-15 -2379 ((-51) $ (-1085) (-51)))))
-((-1620 (($ $ |#2|) 10)))
-(((-578 |#1| |#2|) (-10 -8 (-15 -1620 (|#1| |#1| |#2|))) (-579 |#2|) (-157)) (T -578))
-NIL
-(-10 -8 (-15 -1620 (|#1| |#1| |#2|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2201 (($ $ $) 29)) (-2190 (((-792) $) 11)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#1|) 28 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+((-1771 (((-110) (-110)) 83)) (-3335 ((|#2| |#2|) 30)) (-2093 ((|#2| |#2| (-1007 |#2|)) 79) ((|#2| |#2| (-1085)) 52)) (-2880 ((|#2| |#2|) 29)) (-2900 ((|#2| |#2|) 31)) (-4082 (((-108) (-110)) 34)) (-3758 ((|#2| |#2|) 26)) (-2440 ((|#2| |#2|) 28)) (-2866 ((|#2| |#2|) 27)))
+(((-575 |#1| |#2|) (-10 -7 (-15 -4082 ((-108) (-110))) (-15 -1771 ((-110) (-110))) (-15 -2440 (|#2| |#2|)) (-15 -3758 (|#2| |#2|)) (-15 -2866 (|#2| |#2|)) (-15 -3335 (|#2| |#2|)) (-15 -2880 (|#2| |#2|)) (-15 -2900 (|#2| |#2|)) (-15 -2093 (|#2| |#2| (-1085))) (-15 -2093 (|#2| |#2| (-1007 |#2|)))) (-13 (-784) (-514)) (-13 (-405 |#1|) (-928) (-1106))) (T -575))
+((-2093 (*1 *2 *2 *3) (-12 (-5 *3 (-1007 *2)) (-4 *2 (-13 (-405 *4) (-928) (-1106))) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-575 *4 *2)))) (-2093 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-575 *4 *2)) (-4 *2 (-13 (-405 *4) (-928) (-1106))))) (-2900 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2)) (-4 *2 (-13 (-405 *3) (-928) (-1106))))) (-2880 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2)) (-4 *2 (-13 (-405 *3) (-928) (-1106))))) (-3335 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2)) (-4 *2 (-13 (-405 *3) (-928) (-1106))))) (-2866 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2)) (-4 *2 (-13 (-405 *3) (-928) (-1106))))) (-3758 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2)) (-4 *2 (-13 (-405 *3) (-928) (-1106))))) (-2440 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2)) (-4 *2 (-13 (-405 *3) (-928) (-1106))))) (-1771 (*1 *2 *2) (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *4)) (-4 *4 (-13 (-405 *3) (-928) (-1106))))) (-4082 (*1 *2 *3) (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-575 *4 *5)) (-4 *5 (-13 (-405 *4) (-928) (-1106))))))
+(-10 -7 (-15 -4082 ((-108) (-110))) (-15 -1771 ((-110) (-110))) (-15 -2440 (|#2| |#2|)) (-15 -3758 (|#2| |#2|)) (-15 -2866 (|#2| |#2|)) (-15 -3335 (|#2| |#2|)) (-15 -2880 (|#2| |#2|)) (-15 -2900 (|#2| |#2|)) (-15 -2093 (|#2| |#2| (-1085))) (-15 -2093 (|#2| |#2| (-1007 |#2|))))
+((-2609 (((-454 |#1| |#2|) (-224 |#1| |#2|)) 53)) (-1916 (((-588 (-224 |#1| |#2|)) (-588 (-454 |#1| |#2|))) 68)) (-1959 (((-454 |#1| |#2|) (-588 (-454 |#1| |#2|)) (-794 |#1|)) 70) (((-454 |#1| |#2|) (-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)) (-794 |#1|)) 69)) (-2495 (((-2 (|:| |gblist| (-588 (-224 |#1| |#2|))) (|:| |gvlist| (-588 (-522)))) (-588 (-454 |#1| |#2|))) 106)) (-1890 (((-588 (-454 |#1| |#2|)) (-794 |#1|) (-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|))) 83)) (-2485 (((-2 (|:| |glbase| (-588 (-224 |#1| |#2|))) (|:| |glval| (-588 (-522)))) (-588 (-224 |#1| |#2|))) 117)) (-2647 (((-1166 |#2|) (-454 |#1| |#2|) (-588 (-454 |#1| |#2|))) 58)) (-1912 (((-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|))) 39)) (-1997 (((-224 |#1| |#2|) (-224 |#1| |#2|) (-588 (-224 |#1| |#2|))) 49)) (-3612 (((-224 |#1| |#2|) (-588 |#2|) (-224 |#1| |#2|) (-588 (-224 |#1| |#2|))) 90)))
+(((-576 |#1| |#2|) (-10 -7 (-15 -2495 ((-2 (|:| |gblist| (-588 (-224 |#1| |#2|))) (|:| |gvlist| (-588 (-522)))) (-588 (-454 |#1| |#2|)))) (-15 -2485 ((-2 (|:| |glbase| (-588 (-224 |#1| |#2|))) (|:| |glval| (-588 (-522)))) (-588 (-224 |#1| |#2|)))) (-15 -1916 ((-588 (-224 |#1| |#2|)) (-588 (-454 |#1| |#2|)))) (-15 -1959 ((-454 |#1| |#2|) (-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)) (-794 |#1|))) (-15 -1959 ((-454 |#1| |#2|) (-588 (-454 |#1| |#2|)) (-794 |#1|))) (-15 -1912 ((-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)))) (-15 -2647 ((-1166 |#2|) (-454 |#1| |#2|) (-588 (-454 |#1| |#2|)))) (-15 -3612 ((-224 |#1| |#2|) (-588 |#2|) (-224 |#1| |#2|) (-588 (-224 |#1| |#2|)))) (-15 -1890 ((-588 (-454 |#1| |#2|)) (-794 |#1|) (-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)))) (-15 -1997 ((-224 |#1| |#2|) (-224 |#1| |#2|) (-588 (-224 |#1| |#2|)))) (-15 -2609 ((-454 |#1| |#2|) (-224 |#1| |#2|)))) (-588 (-1085)) (-426)) (T -576))
+((-2609 (*1 *2 *3) (-12 (-5 *3 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *2 (-454 *4 *5)) (-5 *1 (-576 *4 *5)))) (-1997 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-224 *4 *5))) (-5 *2 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *1 (-576 *4 *5)))) (-1890 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-588 (-454 *4 *5))) (-5 *3 (-794 *4)) (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *1 (-576 *4 *5)))) (-3612 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 (-224 *5 *6))) (-4 *6 (-426)) (-5 *2 (-224 *5 *6)) (-14 *5 (-588 (-1085))) (-5 *1 (-576 *5 *6)))) (-2647 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-454 *5 *6))) (-5 *3 (-454 *5 *6)) (-14 *5 (-588 (-1085))) (-4 *6 (-426)) (-5 *2 (-1166 *6)) (-5 *1 (-576 *5 *6)))) (-1912 (*1 *2 *2) (-12 (-5 *2 (-588 (-454 *3 *4))) (-14 *3 (-588 (-1085))) (-4 *4 (-426)) (-5 *1 (-576 *3 *4)))) (-1959 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-454 *5 *6))) (-5 *4 (-794 *5)) (-14 *5 (-588 (-1085))) (-5 *2 (-454 *5 *6)) (-5 *1 (-576 *5 *6)) (-4 *6 (-426)))) (-1959 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-588 (-454 *5 *6))) (-5 *4 (-794 *5)) (-14 *5 (-588 (-1085))) (-5 *2 (-454 *5 *6)) (-5 *1 (-576 *5 *6)) (-4 *6 (-426)))) (-1916 (*1 *2 *3) (-12 (-5 *3 (-588 (-454 *4 *5))) (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *2 (-588 (-224 *4 *5))) (-5 *1 (-576 *4 *5)))) (-2485 (*1 *2 *3) (-12 (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *2 (-2 (|:| |glbase| (-588 (-224 *4 *5))) (|:| |glval| (-588 (-522))))) (-5 *1 (-576 *4 *5)) (-5 *3 (-588 (-224 *4 *5))))) (-2495 (*1 *2 *3) (-12 (-5 *3 (-588 (-454 *4 *5))) (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *2 (-2 (|:| |gblist| (-588 (-224 *4 *5))) (|:| |gvlist| (-588 (-522))))) (-5 *1 (-576 *4 *5)))))
+(-10 -7 (-15 -2495 ((-2 (|:| |gblist| (-588 (-224 |#1| |#2|))) (|:| |gvlist| (-588 (-522)))) (-588 (-454 |#1| |#2|)))) (-15 -2485 ((-2 (|:| |glbase| (-588 (-224 |#1| |#2|))) (|:| |glval| (-588 (-522)))) (-588 (-224 |#1| |#2|)))) (-15 -1916 ((-588 (-224 |#1| |#2|)) (-588 (-454 |#1| |#2|)))) (-15 -1959 ((-454 |#1| |#2|) (-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)) (-794 |#1|))) (-15 -1959 ((-454 |#1| |#2|) (-588 (-454 |#1| |#2|)) (-794 |#1|))) (-15 -1912 ((-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)))) (-15 -2647 ((-1166 |#2|) (-454 |#1| |#2|) (-588 (-454 |#1| |#2|)))) (-15 -3612 ((-224 |#1| |#2|) (-588 |#2|) (-224 |#1| |#2|) (-588 (-224 |#1| |#2|)))) (-15 -1890 ((-588 (-454 |#1| |#2|)) (-794 |#1|) (-588 (-454 |#1| |#2|)) (-588 (-454 |#1| |#2|)))) (-15 -1997 ((-224 |#1| |#2|) (-224 |#1| |#2|) (-588 (-224 |#1| |#2|)))) (-15 -2609 ((-454 |#1| |#2|) (-224 |#1| |#2|))))
+((-1419 (((-108) $ $) NIL (-3844 (|has| (-51) (-1014)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014))))) (-1883 (($) NIL) (($ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))))) NIL)) (-3883 (((-1171) $ (-1068) (-1068)) NIL (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 (((-51) $ (-1068) (-51)) 16) (((-51) $ (-1085) (-51)) 17)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-4011 (((-3 (-51) "failed") (-1068) $) NIL)) (-3367 (($) NIL T CONST)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014))))) (-1700 (($ (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-3 (-51) "failed") (-1068) $) NIL)) (-1424 (($ (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014)))) (($ (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $ (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014)))) (((-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $ (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-2411 (((-51) $ (-1068) (-51)) NIL (|has| $ (-6 -4239)))) (-2186 (((-51) $ (-1068)) NIL)) (-2395 (((-588 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-588 (-51)) $) NIL (|has| $ (-6 -4238)))) (-2922 (($ $) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-1068) $) NIL (|has| (-1068) (-784)))) (-4084 (((-588 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-588 (-51)) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014)))) (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014))))) (-2201 (((-1068) $) NIL (|has| (-1068) (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4239))) (($ (-1 (-51) (-51)) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL) (($ (-1 (-51) (-51)) $) NIL) (($ (-1 (-51) (-51) (-51)) $ $) NIL)) (-1810 (($ (-363)) 9)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (-3844 (|has| (-51) (-1014)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014))))) (-2562 (((-588 (-1068)) $) NIL)) (-2241 (((-108) (-1068) $) NIL)) (-1431 (((-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) $) NIL)) (-3365 (($ (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) $) NIL)) (-2130 (((-588 (-1068)) $) NIL)) (-2103 (((-108) (-1068) $) NIL)) (-4174 (((-1032) $) NIL (-3844 (|has| (-51) (-1014)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014))))) (-2337 (((-51) $) NIL (|has| (-1068) (-784)))) (-2187 (((-3 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) "failed") (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL)) (-1972 (($ $ (-51)) NIL (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) $) NIL)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))))) NIL (-12 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014)))) (($ $ (-270 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))))) NIL (-12 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014)))) (($ $ (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) NIL (-12 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014)))) (($ $ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))))) NIL (-12 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014)))) (($ $ (-588 (-51)) (-588 (-51))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-51) (-51)) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-270 (-51))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-588 (-270 (-51)))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014))))) (-1973 (((-588 (-51)) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 (((-51) $ (-1068)) 14) (((-51) $ (-1068) (-51)) NIL) (((-51) $ (-1085)) 15)) (-3546 (($) NIL) (($ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))))) NIL)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014)))) (((-708) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014)))) (((-708) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))))) NIL)) (-2217 (((-792) $) NIL (-3844 (|has| (-51) (-562 (-792))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-562 (-792)))))) (-2501 (($ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))))) NIL)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (-3844 (|has| (-51) (-1014)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 (-51))) (-1014))))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-577) (-13 (-1097 (-1068) (-51)) (-10 -8 (-15 -1810 ($ (-363))) (-15 -2922 ($ $)) (-15 -2683 ((-51) $ (-1085))) (-15 -2437 ((-51) $ (-1085) (-51)))))) (T -577))
+((-1810 (*1 *1 *2) (-12 (-5 *2 (-363)) (-5 *1 (-577)))) (-2922 (*1 *1 *1) (-5 *1 (-577))) (-2683 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-51)) (-5 *1 (-577)))) (-2437 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-51)) (-5 *3 (-1085)) (-5 *1 (-577)))))
+(-13 (-1097 (-1068) (-51)) (-10 -8 (-15 -1810 ($ (-363))) (-15 -2922 ($ $)) (-15 -2683 ((-51) $ (-1085))) (-15 -2437 ((-51) $ (-1085) (-51)))))
+((-1682 (($ $ |#2|) 10)))
+(((-578 |#1| |#2|) (-10 -8 (-15 -1682 (|#1| |#1| |#2|))) (-579 |#2|) (-157)) (T -578))
+NIL
+(-10 -8 (-15 -1682 (|#1| |#1| |#2|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2227 (($ $ $) 29)) (-2217 (((-792) $) 11)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#1|) 28 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
(((-579 |#1|) (-1197) (-157)) (T -579))
-((-2201 (*1 *1 *1 *1) (-12 (-4 *1 (-579 *2)) (-4 *2 (-157)))) (-1620 (*1 *1 *1 *2) (-12 (-4 *1 (-579 *2)) (-4 *2 (-157)) (-4 *2 (-338)))))
-(-13 (-655 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -2201 ($ $ $)) (IF (|has| |t#1| (-338)) (-15 -1620 ($ $ |t#1|)) |%noBranch|)))
+((-2227 (*1 *1 *1 *1) (-12 (-4 *1 (-579 *2)) (-4 *2 (-157)))) (-1682 (*1 *1 *1 *2) (-12 (-4 *1 (-579 *2)) (-4 *2 (-157)) (-4 *2 (-338)))))
+(-13 (-655 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -2227 ($ $ $)) (IF (|has| |t#1| (-338)) (-15 -1682 ($ $ |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#1|) . T) ((-655 |#1|) . T) ((-977 |#1|) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-3210 (((-3 $ "failed")) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1588 (((-1166 (-628 |#1|))) NIL (|has| |#2| (-392 |#1|))) (((-1166 (-628 |#1|)) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-1681 (((-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3175 (($) NIL T CONST)) (-1868 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3130 (((-3 $ "failed")) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-1771 (((-628 |#1|)) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3594 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-2828 (((-628 |#1|) $) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) $ (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3637 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3549 (((-1081 (-881 |#1|))) NIL (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-338))))) (-1679 (($ $ (-850)) NIL)) (-3076 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-2992 (((-1081 |#1|) $) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-2975 ((|#1|) NIL (|has| |#2| (-392 |#1|))) ((|#1| (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-4014 (((-1081 |#1|) $) NIL (|has| |#2| (-342 |#1|)))) (-2878 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3766 (($ (-1166 |#1|)) NIL (|has| |#2| (-392 |#1|))) (($ (-1166 |#1|) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-2682 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3166 (((-850)) NIL (|has| |#2| (-342 |#1|)))) (-2666 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-1882 (($ $ (-850)) NIL)) (-1427 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2552 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2678 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3505 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-2007 (((-3 $ "failed")) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-1943 (((-628 |#1|)) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-1546 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-4142 (((-628 |#1|) $) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) $ (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-2231 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-2497 (((-1081 (-881 |#1|))) NIL (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-338))))) (-3277 (($ $ (-850)) NIL)) (-1505 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-3630 (((-1081 |#1|) $) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-2475 ((|#1|) NIL (|has| |#2| (-392 |#1|))) ((|#1| (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-2302 (((-1081 |#1|) $) NIL (|has| |#2| (-342 |#1|)))) (-3003 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2385 (((-1068) $) NIL)) (-3710 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3026 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3055 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-4151 (((-1032) $) NIL)) (-2889 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2545 ((|#1| $ (-522)) NIL (|has| |#2| (-392 |#1|)))) (-3677 (((-628 |#1|) (-1166 $)) NIL (|has| |#2| (-392 |#1|))) (((-1166 |#1|) $) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) (-1166 $) (-1166 $)) NIL (|has| |#2| (-342 |#1|))) (((-1166 |#1|) $ (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-1431 (($ (-1166 |#1|)) NIL (|has| |#2| (-392 |#1|))) (((-1166 |#1|) $) NIL (|has| |#2| (-392 |#1|)))) (-2656 (((-588 (-881 |#1|))) NIL (|has| |#2| (-392 |#1|))) (((-588 (-881 |#1|)) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-1288 (($ $ $) NIL)) (-4034 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2190 (((-792) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-3855 (((-1166 $)) NIL (|has| |#2| (-392 |#1|)))) (-2901 (((-588 (-1166 |#1|))) NIL (-3708 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3610 (($ $ $ $) NIL)) (-2928 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-1616 (($ (-628 |#1|) $) NIL (|has| |#2| (-392 |#1|)))) (-3024 (($ $ $) NIL)) (-3065 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3856 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3877 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3566 (($) 15 T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) 17)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-580 |#1| |#2|) (-13 (-682 |#1|) (-562 |#2|) (-10 -8 (-15 -2190 ($ |#2|)) (IF (|has| |#2| (-392 |#1|)) (-6 (-392 |#1|)) |%noBranch|) (IF (|has| |#2| (-342 |#1|)) (-6 (-342 |#1|)) |%noBranch|))) (-157) (-682 |#1|)) (T -580))
-((-2190 (*1 *1 *2) (-12 (-4 *3 (-157)) (-5 *1 (-580 *3 *2)) (-4 *2 (-682 *3)))))
-(-13 (-682 |#1|) (-562 |#2|) (-10 -8 (-15 -2190 ($ |#2|)) (IF (|has| |#2| (-392 |#1|)) (-6 (-392 |#1|)) |%noBranch|) (IF (|has| |#2| (-342 |#1|)) (-6 (-342 |#1|)) |%noBranch|)))
-((-1642 (((-3 (-777 |#2|) "failed") |#2| (-270 |#2|) (-1068)) 78) (((-3 (-777 |#2|) (-2 (|:| |leftHandLimit| (-3 (-777 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-777 |#2|) "failed"))) "failed") |#2| (-270 (-777 |#2|))) 100)) (-2958 (((-3 (-770 |#2|) "failed") |#2| (-270 (-770 |#2|))) 105)))
-(((-581 |#1| |#2|) (-10 -7 (-15 -1642 ((-3 (-777 |#2|) (-2 (|:| |leftHandLimit| (-3 (-777 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-777 |#2|) "failed"))) "failed") |#2| (-270 (-777 |#2|)))) (-15 -2958 ((-3 (-770 |#2|) "failed") |#2| (-270 (-770 |#2|)))) (-15 -1642 ((-3 (-777 |#2|) "failed") |#2| (-270 |#2|) (-1068)))) (-13 (-426) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -581))
-((-1642 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-270 *3)) (-5 *5 (-1068)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-777 *3)) (-5 *1 (-581 *6 *3)))) (-2958 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-270 (-770 *3))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-770 *3)) (-5 *1 (-581 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-1642 (*1 *2 *3 *4) (-12 (-5 *4 (-270 (-777 *3))) (-4 *3 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (-777 *3) (-2 (|:| |leftHandLimit| (-3 (-777 *3) "failed")) (|:| |rightHandLimit| (-3 (-777 *3) "failed"))) "failed")) (-5 *1 (-581 *5 *3)))))
-(-10 -7 (-15 -1642 ((-3 (-777 |#2|) (-2 (|:| |leftHandLimit| (-3 (-777 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-777 |#2|) "failed"))) "failed") |#2| (-270 (-777 |#2|)))) (-15 -2958 ((-3 (-770 |#2|) "failed") |#2| (-270 (-770 |#2|)))) (-15 -1642 ((-3 (-777 |#2|) "failed") |#2| (-270 |#2|) (-1068))))
-((-1642 (((-3 (-777 (-382 (-881 |#1|))) "failed") (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))) (-1068)) 79) (((-3 (-777 (-382 (-881 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed"))) "failed") (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|)))) 18) (((-3 (-777 (-382 (-881 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed"))) "failed") (-382 (-881 |#1|)) (-270 (-777 (-881 |#1|)))) 34)) (-2958 (((-770 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|)))) 21) (((-770 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-270 (-770 (-881 |#1|)))) 42)))
-(((-582 |#1|) (-10 -7 (-15 -1642 ((-3 (-777 (-382 (-881 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed"))) "failed") (-382 (-881 |#1|)) (-270 (-777 (-881 |#1|))))) (-15 -1642 ((-3 (-777 (-382 (-881 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed"))) "failed") (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))))) (-15 -2958 ((-770 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-270 (-770 (-881 |#1|))))) (-15 -2958 ((-770 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))))) (-15 -1642 ((-3 (-777 (-382 (-881 |#1|))) "failed") (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))) (-1068)))) (-426)) (T -582))
-((-1642 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-270 (-382 (-881 *6)))) (-5 *5 (-1068)) (-5 *3 (-382 (-881 *6))) (-4 *6 (-426)) (-5 *2 (-777 *3)) (-5 *1 (-582 *6)))) (-2958 (*1 *2 *3 *4) (-12 (-5 *4 (-270 (-382 (-881 *5)))) (-5 *3 (-382 (-881 *5))) (-4 *5 (-426)) (-5 *2 (-770 *3)) (-5 *1 (-582 *5)))) (-2958 (*1 *2 *3 *4) (-12 (-5 *4 (-270 (-770 (-881 *5)))) (-4 *5 (-426)) (-5 *2 (-770 (-382 (-881 *5)))) (-5 *1 (-582 *5)) (-5 *3 (-382 (-881 *5))))) (-1642 (*1 *2 *3 *4) (-12 (-5 *4 (-270 (-382 (-881 *5)))) (-5 *3 (-382 (-881 *5))) (-4 *5 (-426)) (-5 *2 (-3 (-777 *3) (-2 (|:| |leftHandLimit| (-3 (-777 *3) "failed")) (|:| |rightHandLimit| (-3 (-777 *3) "failed"))) "failed")) (-5 *1 (-582 *5)))) (-1642 (*1 *2 *3 *4) (-12 (-5 *4 (-270 (-777 (-881 *5)))) (-4 *5 (-426)) (-5 *2 (-3 (-777 (-382 (-881 *5))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 *5))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 *5))) "failed"))) "failed")) (-5 *1 (-582 *5)) (-5 *3 (-382 (-881 *5))))))
-(-10 -7 (-15 -1642 ((-3 (-777 (-382 (-881 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed"))) "failed") (-382 (-881 |#1|)) (-270 (-777 (-881 |#1|))))) (-15 -1642 ((-3 (-777 (-382 (-881 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed"))) "failed") (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))))) (-15 -2958 ((-770 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-270 (-770 (-881 |#1|))))) (-15 -2958 ((-770 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))))) (-15 -1642 ((-3 (-777 (-382 (-881 |#1|))) "failed") (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))) (-1068))))
-((-3482 (((-3 (-1166 (-382 |#1|)) "failed") (-1166 |#2|) |#2|) 57 (-2401 (|has| |#1| (-338)))) (((-3 (-1166 |#1|) "failed") (-1166 |#2|) |#2|) 42 (|has| |#1| (-338)))) (-2753 (((-108) (-1166 |#2|)) 30)) (-3790 (((-3 (-1166 |#1|) "failed") (-1166 |#2|)) 33)))
-(((-583 |#1| |#2|) (-10 -7 (-15 -2753 ((-108) (-1166 |#2|))) (-15 -3790 ((-3 (-1166 |#1|) "failed") (-1166 |#2|))) (IF (|has| |#1| (-338)) (-15 -3482 ((-3 (-1166 |#1|) "failed") (-1166 |#2|) |#2|)) (-15 -3482 ((-3 (-1166 (-382 |#1|)) "failed") (-1166 |#2|) |#2|)))) (-514) (-584 |#1|)) (T -583))
-((-3482 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 *5)) (-2401 (-4 *5 (-338))) (-4 *5 (-514)) (-5 *2 (-1166 (-382 *5))) (-5 *1 (-583 *5 *4)))) (-3482 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 *5)) (-4 *5 (-338)) (-4 *5 (-514)) (-5 *2 (-1166 *5)) (-5 *1 (-583 *5 *4)))) (-3790 (*1 *2 *3) (|partial| -12 (-5 *3 (-1166 *5)) (-4 *5 (-584 *4)) (-4 *4 (-514)) (-5 *2 (-1166 *4)) (-5 *1 (-583 *4 *5)))) (-2753 (*1 *2 *3) (-12 (-5 *3 (-1166 *5)) (-4 *5 (-584 *4)) (-4 *4 (-514)) (-5 *2 (-108)) (-5 *1 (-583 *4 *5)))))
-(-10 -7 (-15 -2753 ((-108) (-1166 |#2|))) (-15 -3790 ((-3 (-1166 |#1|) "failed") (-1166 |#2|))) (IF (|has| |#1| (-338)) (-15 -3482 ((-3 (-1166 |#1|) "failed") (-1166 |#2|) |#2|)) (-15 -3482 ((-3 (-1166 (-382 |#1|)) "failed") (-1166 |#2|) |#2|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2096 (((-628 |#1|) (-628 $)) 36) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 35)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ (-522)) 28)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2541 (((-3 $ "failed")) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3690 (((-1166 (-628 |#1|))) NIL (|has| |#2| (-392 |#1|))) (((-1166 (-628 |#1|)) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-2726 (((-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3367 (($) NIL T CONST)) (-2722 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3050 (((-3 $ "failed")) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3531 (((-628 |#1|)) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-2046 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-2853 (((-628 |#1|) $) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) $ (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-1279 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-1662 (((-1081 (-881 |#1|))) NIL (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-338))))) (-2698 (($ $ (-850)) NIL)) (-3676 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-4080 (((-1081 |#1|) $) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-4035 ((|#1|) NIL (|has| |#2| (-392 |#1|))) ((|#1| (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3767 (((-1081 |#1|) $) NIL (|has| |#2| (-342 |#1|)))) (-1340 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3225 (($ (-1166 |#1|)) NIL (|has| |#2| (-392 |#1|))) (($ (-1166 |#1|) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3920 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-1692 (((-850)) NIL (|has| |#2| (-342 |#1|)))) (-2134 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2870 (($ $ (-850)) NIL)) (-2287 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3702 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3868 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2439 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3351 (((-3 $ "failed")) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-1521 (((-628 |#1|)) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3411 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-2734 (((-628 |#1|) $) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) $ (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3070 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3943 (((-1081 (-881 |#1|))) NIL (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-338))))) (-1946 (($ $ (-850)) NIL)) (-1819 ((|#1| $) NIL (|has| |#2| (-342 |#1|)))) (-1216 (((-1081 |#1|) $) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-3020 ((|#1|) NIL (|has| |#2| (-392 |#1|))) ((|#1| (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-2724 (((-1081 |#1|) $) NIL (|has| |#2| (-342 |#1|)))) (-4197 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2311 (((-1068) $) NIL)) (-3823 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-1388 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3509 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-4174 (((-1032) $) NIL)) (-1427 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2683 ((|#1| $ (-522)) NIL (|has| |#2| (-392 |#1|)))) (-3510 (((-628 |#1|) (-1166 $)) NIL (|has| |#2| (-392 |#1|))) (((-1166 |#1|) $) NIL (|has| |#2| (-392 |#1|))) (((-628 |#1|) (-1166 $) (-1166 $)) NIL (|has| |#2| (-342 |#1|))) (((-1166 |#1|) $ (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-3873 (($ (-1166 |#1|)) NIL (|has| |#2| (-392 |#1|))) (((-1166 |#1|) $) NIL (|has| |#2| (-392 |#1|)))) (-1777 (((-588 (-881 |#1|))) NIL (|has| |#2| (-392 |#1|))) (((-588 (-881 |#1|)) (-1166 $)) NIL (|has| |#2| (-342 |#1|)))) (-1596 (($ $ $) NIL)) (-3990 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2217 (((-792) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-2905 (((-1166 $)) NIL (|has| |#2| (-392 |#1|)))) (-1548 (((-588 (-1166 |#1|))) NIL (-3844 (-12 (|has| |#2| (-342 |#1|)) (|has| |#1| (-514))) (-12 (|has| |#2| (-392 |#1|)) (|has| |#1| (-514)))))) (-2185 (($ $ $ $) NIL)) (-3597 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-1664 (($ (-628 |#1|) $) NIL (|has| |#2| (-392 |#1|)))) (-1369 (($ $ $) NIL)) (-3578 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-2912 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-1855 (((-108)) NIL (|has| |#2| (-342 |#1|)))) (-3697 (($) 15 T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) 17)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-580 |#1| |#2|) (-13 (-682 |#1|) (-562 |#2|) (-10 -8 (-15 -2217 ($ |#2|)) (IF (|has| |#2| (-392 |#1|)) (-6 (-392 |#1|)) |%noBranch|) (IF (|has| |#2| (-342 |#1|)) (-6 (-342 |#1|)) |%noBranch|))) (-157) (-682 |#1|)) (T -580))
+((-2217 (*1 *1 *2) (-12 (-4 *3 (-157)) (-5 *1 (-580 *3 *2)) (-4 *2 (-682 *3)))))
+(-13 (-682 |#1|) (-562 |#2|) (-10 -8 (-15 -2217 ($ |#2|)) (IF (|has| |#2| (-392 |#1|)) (-6 (-392 |#1|)) |%noBranch|) (IF (|has| |#2| (-342 |#1|)) (-6 (-342 |#1|)) |%noBranch|)))
+((-2280 (((-3 (-777 |#2|) "failed") |#2| (-270 |#2|) (-1068)) 78) (((-3 (-777 |#2|) (-2 (|:| |leftHandLimit| (-3 (-777 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-777 |#2|) "failed"))) "failed") |#2| (-270 (-777 |#2|))) 100)) (-3890 (((-3 (-770 |#2|) "failed") |#2| (-270 (-770 |#2|))) 105)))
+(((-581 |#1| |#2|) (-10 -7 (-15 -2280 ((-3 (-777 |#2|) (-2 (|:| |leftHandLimit| (-3 (-777 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-777 |#2|) "failed"))) "failed") |#2| (-270 (-777 |#2|)))) (-15 -3890 ((-3 (-770 |#2|) "failed") |#2| (-270 (-770 |#2|)))) (-15 -2280 ((-3 (-777 |#2|) "failed") |#2| (-270 |#2|) (-1068)))) (-13 (-426) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -581))
+((-2280 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-270 *3)) (-5 *5 (-1068)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-777 *3)) (-5 *1 (-581 *6 *3)))) (-3890 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-270 (-770 *3))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-770 *3)) (-5 *1 (-581 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))) (-2280 (*1 *2 *3 *4) (-12 (-5 *4 (-270 (-777 *3))) (-4 *3 (-13 (-27) (-1106) (-405 *5))) (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-3 (-777 *3) (-2 (|:| |leftHandLimit| (-3 (-777 *3) "failed")) (|:| |rightHandLimit| (-3 (-777 *3) "failed"))) "failed")) (-5 *1 (-581 *5 *3)))))
+(-10 -7 (-15 -2280 ((-3 (-777 |#2|) (-2 (|:| |leftHandLimit| (-3 (-777 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-777 |#2|) "failed"))) "failed") |#2| (-270 (-777 |#2|)))) (-15 -3890 ((-3 (-770 |#2|) "failed") |#2| (-270 (-770 |#2|)))) (-15 -2280 ((-3 (-777 |#2|) "failed") |#2| (-270 |#2|) (-1068))))
+((-2280 (((-3 (-777 (-382 (-881 |#1|))) "failed") (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))) (-1068)) 79) (((-3 (-777 (-382 (-881 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed"))) "failed") (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|)))) 18) (((-3 (-777 (-382 (-881 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed"))) "failed") (-382 (-881 |#1|)) (-270 (-777 (-881 |#1|)))) 34)) (-3890 (((-770 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|)))) 21) (((-770 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-270 (-770 (-881 |#1|)))) 42)))
+(((-582 |#1|) (-10 -7 (-15 -2280 ((-3 (-777 (-382 (-881 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed"))) "failed") (-382 (-881 |#1|)) (-270 (-777 (-881 |#1|))))) (-15 -2280 ((-3 (-777 (-382 (-881 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed"))) "failed") (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))))) (-15 -3890 ((-770 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-270 (-770 (-881 |#1|))))) (-15 -3890 ((-770 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))))) (-15 -2280 ((-3 (-777 (-382 (-881 |#1|))) "failed") (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))) (-1068)))) (-426)) (T -582))
+((-2280 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-270 (-382 (-881 *6)))) (-5 *5 (-1068)) (-5 *3 (-382 (-881 *6))) (-4 *6 (-426)) (-5 *2 (-777 *3)) (-5 *1 (-582 *6)))) (-3890 (*1 *2 *3 *4) (-12 (-5 *4 (-270 (-382 (-881 *5)))) (-5 *3 (-382 (-881 *5))) (-4 *5 (-426)) (-5 *2 (-770 *3)) (-5 *1 (-582 *5)))) (-3890 (*1 *2 *3 *4) (-12 (-5 *4 (-270 (-770 (-881 *5)))) (-4 *5 (-426)) (-5 *2 (-770 (-382 (-881 *5)))) (-5 *1 (-582 *5)) (-5 *3 (-382 (-881 *5))))) (-2280 (*1 *2 *3 *4) (-12 (-5 *4 (-270 (-382 (-881 *5)))) (-5 *3 (-382 (-881 *5))) (-4 *5 (-426)) (-5 *2 (-3 (-777 *3) (-2 (|:| |leftHandLimit| (-3 (-777 *3) "failed")) (|:| |rightHandLimit| (-3 (-777 *3) "failed"))) "failed")) (-5 *1 (-582 *5)))) (-2280 (*1 *2 *3 *4) (-12 (-5 *4 (-270 (-777 (-881 *5)))) (-4 *5 (-426)) (-5 *2 (-3 (-777 (-382 (-881 *5))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 *5))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 *5))) "failed"))) "failed")) (-5 *1 (-582 *5)) (-5 *3 (-382 (-881 *5))))))
+(-10 -7 (-15 -2280 ((-3 (-777 (-382 (-881 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed"))) "failed") (-382 (-881 |#1|)) (-270 (-777 (-881 |#1|))))) (-15 -2280 ((-3 (-777 (-382 (-881 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-777 (-382 (-881 |#1|))) "failed"))) "failed") (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))))) (-15 -3890 ((-770 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-270 (-770 (-881 |#1|))))) (-15 -3890 ((-770 (-382 (-881 |#1|))) (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))))) (-15 -2280 ((-3 (-777 (-382 (-881 |#1|))) "failed") (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))) (-1068))))
+((-3379 (((-3 (-1166 (-382 |#1|)) "failed") (-1166 |#2|) |#2|) 57 (-2473 (|has| |#1| (-338)))) (((-3 (-1166 |#1|) "failed") (-1166 |#2|) |#2|) 42 (|has| |#1| (-338)))) (-1454 (((-108) (-1166 |#2|)) 30)) (-2234 (((-3 (-1166 |#1|) "failed") (-1166 |#2|)) 33)))
+(((-583 |#1| |#2|) (-10 -7 (-15 -1454 ((-108) (-1166 |#2|))) (-15 -2234 ((-3 (-1166 |#1|) "failed") (-1166 |#2|))) (IF (|has| |#1| (-338)) (-15 -3379 ((-3 (-1166 |#1|) "failed") (-1166 |#2|) |#2|)) (-15 -3379 ((-3 (-1166 (-382 |#1|)) "failed") (-1166 |#2|) |#2|)))) (-514) (-584 |#1|)) (T -583))
+((-3379 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 *5)) (-2473 (-4 *5 (-338))) (-4 *5 (-514)) (-5 *2 (-1166 (-382 *5))) (-5 *1 (-583 *5 *4)))) (-3379 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 *5)) (-4 *5 (-338)) (-4 *5 (-514)) (-5 *2 (-1166 *5)) (-5 *1 (-583 *5 *4)))) (-2234 (*1 *2 *3) (|partial| -12 (-5 *3 (-1166 *5)) (-4 *5 (-584 *4)) (-4 *4 (-514)) (-5 *2 (-1166 *4)) (-5 *1 (-583 *4 *5)))) (-1454 (*1 *2 *3) (-12 (-5 *3 (-1166 *5)) (-4 *5 (-584 *4)) (-4 *4 (-514)) (-5 *2 (-108)) (-5 *1 (-583 *4 *5)))))
+(-10 -7 (-15 -1454 ((-108) (-1166 |#2|))) (-15 -2234 ((-3 (-1166 |#1|) "failed") (-1166 |#2|))) (IF (|has| |#1| (-338)) (-15 -3379 ((-3 (-1166 |#1|) "failed") (-1166 |#2|) |#2|)) (-15 -3379 ((-3 (-1166 (-382 |#1|)) "failed") (-1166 |#2|) |#2|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-1226 (((-628 |#1|) (-628 $)) 36) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 35)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ (-522)) 28)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-584 |#1|) (-1197) (-971)) (T -584))
-((-2096 (*1 *2 *3) (-12 (-5 *3 (-628 *1)) (-4 *1 (-584 *4)) (-4 *4 (-971)) (-5 *2 (-628 *4)))) (-2096 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *1)) (-5 *4 (-1166 *1)) (-4 *1 (-584 *5)) (-4 *5 (-971)) (-5 *2 (-2 (|:| -1222 (-628 *5)) (|:| |vec| (-1166 *5)))))))
-(-13 (-971) (-10 -8 (-15 -2096 ((-628 |t#1|) (-628 $))) (-15 -2096 ((-2 (|:| -1222 (-628 |t#1|)) (|:| |vec| (-1166 |t#1|))) (-628 $) (-1166 $)))))
+((-1226 (*1 *2 *3) (-12 (-5 *3 (-628 *1)) (-4 *1 (-584 *4)) (-4 *4 (-971)) (-5 *2 (-628 *4)))) (-1226 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *1)) (-5 *4 (-1166 *1)) (-4 *1 (-584 *5)) (-4 *5 (-971)) (-5 *2 (-2 (|:| -2149 (-628 *5)) (|:| |vec| (-1166 *5)))))))
+(-13 (-971) (-10 -8 (-15 -1226 ((-628 |t#1|) (-628 $))) (-15 -1226 ((-2 (|:| -2149 (-628 |t#1|)) (|:| |vec| (-1166 |t#1|))) (-628 $) (-1166 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 $) . T) ((-664) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-4148 ((|#2| (-588 |#1|) (-588 |#2|) |#1| (-1 |#2| |#1|)) 18) (((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|) (-1 |#2| |#1|)) 19) ((|#2| (-588 |#1|) (-588 |#2|) |#1| |#2|) 16) (((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|) |#2|) 17) ((|#2| (-588 |#1|) (-588 |#2|) |#1|) 10) (((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|)) 12)))
-(((-585 |#1| |#2|) (-10 -7 (-15 -4148 ((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|))) (-15 -4148 (|#2| (-588 |#1|) (-588 |#2|) |#1|)) (-15 -4148 ((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|) |#2|)) (-15 -4148 (|#2| (-588 |#1|) (-588 |#2|) |#1| |#2|)) (-15 -4148 ((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|) (-1 |#2| |#1|))) (-15 -4148 (|#2| (-588 |#1|) (-588 |#2|) |#1| (-1 |#2| |#1|)))) (-1014) (-1120)) (T -585))
-((-4148 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-588 *5)) (-5 *4 (-588 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1014)) (-4 *2 (-1120)) (-5 *1 (-585 *5 *2)))) (-4148 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-588 *5)) (-5 *4 (-588 *6)) (-4 *5 (-1014)) (-4 *6 (-1120)) (-5 *1 (-585 *5 *6)))) (-4148 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-588 *5)) (-5 *4 (-588 *2)) (-4 *5 (-1014)) (-4 *2 (-1120)) (-5 *1 (-585 *5 *2)))) (-4148 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 *5)) (-4 *6 (-1014)) (-4 *5 (-1120)) (-5 *2 (-1 *5 *6)) (-5 *1 (-585 *6 *5)))) (-4148 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 *5)) (-5 *4 (-588 *2)) (-4 *5 (-1014)) (-4 *2 (-1120)) (-5 *1 (-585 *5 *2)))) (-4148 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *5)) (-5 *4 (-588 *6)) (-4 *5 (-1014)) (-4 *6 (-1120)) (-5 *2 (-1 *6 *5)) (-5 *1 (-585 *5 *6)))))
-(-10 -7 (-15 -4148 ((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|))) (-15 -4148 (|#2| (-588 |#1|) (-588 |#2|) |#1|)) (-15 -4148 ((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|) |#2|)) (-15 -4148 (|#2| (-588 |#1|) (-588 |#2|) |#1| |#2|)) (-15 -4148 ((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|) (-1 |#2| |#1|))) (-15 -4148 (|#2| (-588 |#1|) (-588 |#2|) |#1| (-1 |#2| |#1|))))
-((-3690 (((-588 |#2|) (-1 |#2| |#1| |#2|) (-588 |#1|) |#2|) 16)) (-3864 ((|#2| (-1 |#2| |#1| |#2|) (-588 |#1|) |#2|) 18)) (-1391 (((-588 |#2|) (-1 |#2| |#1|) (-588 |#1|)) 13)))
-(((-586 |#1| |#2|) (-10 -7 (-15 -3690 ((-588 |#2|) (-1 |#2| |#1| |#2|) (-588 |#1|) |#2|)) (-15 -3864 (|#2| (-1 |#2| |#1| |#2|) (-588 |#1|) |#2|)) (-15 -1391 ((-588 |#2|) (-1 |#2| |#1|) (-588 |#1|)))) (-1120) (-1120)) (T -586))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-588 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-588 *6)) (-5 *1 (-586 *5 *6)))) (-3864 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-588 *5)) (-4 *5 (-1120)) (-4 *2 (-1120)) (-5 *1 (-586 *5 *2)))) (-3690 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-588 *6)) (-4 *6 (-1120)) (-4 *5 (-1120)) (-5 *2 (-588 *5)) (-5 *1 (-586 *6 *5)))))
-(-10 -7 (-15 -3690 ((-588 |#2|) (-1 |#2| |#1| |#2|) (-588 |#1|) |#2|)) (-15 -3864 (|#2| (-1 |#2| |#1| |#2|) (-588 |#1|) |#2|)) (-15 -1391 ((-588 |#2|) (-1 |#2| |#1|) (-588 |#1|))))
-((-1391 (((-588 |#3|) (-1 |#3| |#1| |#2|) (-588 |#1|) (-588 |#2|)) 13)))
-(((-587 |#1| |#2| |#3|) (-10 -7 (-15 -1391 ((-588 |#3|) (-1 |#3| |#1| |#2|) (-588 |#1|) (-588 |#2|)))) (-1120) (-1120) (-1120)) (T -587))
-((-1391 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-588 *6)) (-5 *5 (-588 *7)) (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-588 *8)) (-5 *1 (-587 *6 *7 *8)))))
-(-10 -7 (-15 -1391 ((-588 |#3|) (-1 |#3| |#1| |#2|) (-588 |#1|) (-588 |#2|))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3435 ((|#1| $) NIL)) (-2093 ((|#1| $) NIL)) (-3835 (($ $) NIL)) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-3487 (($ $ (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) $) NIL (|has| |#1| (-784))) (((-108) (-1 (-108) |#1| |#1|) $) NIL)) (-3537 (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784)))) (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3216 (($ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-3628 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-1243 (($ $ $) NIL (|has| $ (-6 -4239)))) (-2049 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-1346 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "rest" $) NIL (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-1605 (($ $ $) 32 (|has| |#1| (-1014)))) (-1595 (($ $ $) 34 (|has| |#1| (-1014)))) (-1586 (($ $ $) 37 (|has| |#1| (-1014)))) (-2790 (($ (-1 (-108) |#1|) $) NIL)) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2081 ((|#1| $) NIL)) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2306 (($ $) NIL) (($ $ (-708)) NIL)) (-3362 (($ $) NIL (|has| |#1| (-1014)))) (-2333 (($ $) 31 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3859 (($ |#1| $) NIL (|has| |#1| (-1014))) (($ (-1 (-108) |#1|) $) NIL)) (-1423 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3854 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) NIL)) (-3069 (((-108) $) NIL)) (-3238 (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014))) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) (-1 (-108) |#1|) $) NIL)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1506 (((-108) $) 9)) (-4138 (((-588 $) $) NIL)) (-2030 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2047 (($) 7)) (-1811 (($ (-708) |#1|) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-1369 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-2160 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 33 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1580 (($ |#1|) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-1279 (((-588 |#1|) $) NIL)) (-1754 (((-108) $) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1442 ((|#1| $) NIL) (($ $ (-708)) NIL)) (-4095 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-1661 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2294 ((|#1| $) NIL) (($ $ (-708)) NIL)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2602 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-2855 (((-108) $) NIL)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1133 (-522))) NIL) ((|#1| $ (-522)) 36) ((|#1| $ (-522) |#1|) NIL)) (-2011 (((-522) $ $) NIL)) (-3681 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3696 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3042 (((-108) $) NIL)) (-3107 (($ $) NIL)) (-2646 (($ $) NIL (|has| $ (-6 -4239)))) (-2393 (((-708) $) NIL)) (-2122 (($ $) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) 45 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) NIL)) (-3440 (($ |#1| $) 10)) (-2630 (($ $ $) NIL) (($ $ |#1|) NIL)) (-4165 (($ $ $) 30) (($ |#1| $) NIL) (($ (-588 $)) NIL) (($ $ |#1|) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) NIL)) (-2425 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3682 (($ $ $) 11)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-4149 (((-1068) $) 26 (|has| |#1| (-765))) (((-1068) $ (-108)) 27 (|has| |#1| (-765))) (((-1171) (-759) $) 28 (|has| |#1| (-765))) (((-1171) (-759) $ (-108)) 29 (|has| |#1| (-765)))) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-588 |#1|) (-13 (-608 |#1|) (-10 -8 (-15 -2047 ($)) (-15 -1506 ((-108) $)) (-15 -3440 ($ |#1| $)) (-15 -3682 ($ $ $)) (IF (|has| |#1| (-1014)) (PROGN (-15 -1605 ($ $ $)) (-15 -1595 ($ $ $)) (-15 -1586 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-765)) (-6 (-765)) |%noBranch|))) (-1120)) (T -588))
-((-2047 (*1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1120)))) (-1506 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-588 *3)) (-4 *3 (-1120)))) (-3440 (*1 *1 *2 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1120)))) (-3682 (*1 *1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1120)))) (-1605 (*1 *1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-1120)))) (-1595 (*1 *1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-1120)))) (-1586 (*1 *1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-1120)))))
-(-13 (-608 |#1|) (-10 -8 (-15 -2047 ($)) (-15 -1506 ((-108) $)) (-15 -3440 ($ |#1| $)) (-15 -3682 ($ $ $)) (IF (|has| |#1| (-1014)) (PROGN (-15 -1605 ($ $ $)) (-15 -1595 ($ $ $)) (-15 -1586 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-765)) (-6 (-765)) |%noBranch|)))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2319 (($ |#1| |#1| $) 43)) (-4141 (((-108) $ (-708)) NIL)) (-2790 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3362 (($ $) 45)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3859 (($ |#1| $) 52 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-1423 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-3837 (((-588 |#1|) $) 9 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3838 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 37)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-2116 ((|#1| $) 46)) (-4095 (($ |#1| $) 26) (($ |#1| $ (-708)) 42)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-4087 ((|#1| $) 48)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 21)) (-3775 (($) 25)) (-3752 (((-108) $) 50)) (-3698 (((-588 (-2 (|:| -3048 |#1|) (|:| -4168 (-708)))) $) 59)) (-3990 (($) 23) (($ (-588 |#1|)) 18)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) 56 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) 19)) (-1431 (((-498) $) 34 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) NIL)) (-2190 (((-792) $) 14 (|has| |#1| (-562 (-792))))) (-2795 (($ (-588 |#1|)) 22)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 61 (|has| |#1| (-1014)))) (-3480 (((-708) $) 16 (|has| $ (-6 -4238)))))
-(((-589 |#1|) (-13 (-633 |#1|) (-10 -8 (-6 -4238) (-15 -3752 ((-108) $)) (-15 -2319 ($ |#1| |#1| $)))) (-1014)) (T -589))
-((-3752 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-589 *3)) (-4 *3 (-1014)))) (-2319 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1014)))))
-(-13 (-633 |#1|) (-10 -8 (-6 -4238) (-15 -3752 ((-108) $)) (-15 -2319 ($ |#1| |#1| $))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#1| $) 23)))
+((-4171 ((|#2| (-588 |#1|) (-588 |#2|) |#1| (-1 |#2| |#1|)) 18) (((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|) (-1 |#2| |#1|)) 19) ((|#2| (-588 |#1|) (-588 |#2|) |#1| |#2|) 16) (((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|) |#2|) 17) ((|#2| (-588 |#1|) (-588 |#2|) |#1|) 10) (((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|)) 12)))
+(((-585 |#1| |#2|) (-10 -7 (-15 -4171 ((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|))) (-15 -4171 (|#2| (-588 |#1|) (-588 |#2|) |#1|)) (-15 -4171 ((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|) |#2|)) (-15 -4171 (|#2| (-588 |#1|) (-588 |#2|) |#1| |#2|)) (-15 -4171 ((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|) (-1 |#2| |#1|))) (-15 -4171 (|#2| (-588 |#1|) (-588 |#2|) |#1| (-1 |#2| |#1|)))) (-1014) (-1120)) (T -585))
+((-4171 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-588 *5)) (-5 *4 (-588 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1014)) (-4 *2 (-1120)) (-5 *1 (-585 *5 *2)))) (-4171 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-588 *5)) (-5 *4 (-588 *6)) (-4 *5 (-1014)) (-4 *6 (-1120)) (-5 *1 (-585 *5 *6)))) (-4171 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-588 *5)) (-5 *4 (-588 *2)) (-4 *5 (-1014)) (-4 *2 (-1120)) (-5 *1 (-585 *5 *2)))) (-4171 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 *5)) (-4 *6 (-1014)) (-4 *5 (-1120)) (-5 *2 (-1 *5 *6)) (-5 *1 (-585 *6 *5)))) (-4171 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 *5)) (-5 *4 (-588 *2)) (-4 *5 (-1014)) (-4 *2 (-1120)) (-5 *1 (-585 *5 *2)))) (-4171 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *5)) (-5 *4 (-588 *6)) (-4 *5 (-1014)) (-4 *6 (-1120)) (-5 *2 (-1 *6 *5)) (-5 *1 (-585 *5 *6)))))
+(-10 -7 (-15 -4171 ((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|))) (-15 -4171 (|#2| (-588 |#1|) (-588 |#2|) |#1|)) (-15 -4171 ((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|) |#2|)) (-15 -4171 (|#2| (-588 |#1|) (-588 |#2|) |#1| |#2|)) (-15 -4171 ((-1 |#2| |#1|) (-588 |#1|) (-588 |#2|) (-1 |#2| |#1|))) (-15 -4171 (|#2| (-588 |#1|) (-588 |#2|) |#1| (-1 |#2| |#1|))))
+((-3639 (((-588 |#2|) (-1 |#2| |#1| |#2|) (-588 |#1|) |#2|) 16)) (-2153 ((|#2| (-1 |#2| |#1| |#2|) (-588 |#1|) |#2|) 18)) (-3810 (((-588 |#2|) (-1 |#2| |#1|) (-588 |#1|)) 13)))
+(((-586 |#1| |#2|) (-10 -7 (-15 -3639 ((-588 |#2|) (-1 |#2| |#1| |#2|) (-588 |#1|) |#2|)) (-15 -2153 (|#2| (-1 |#2| |#1| |#2|) (-588 |#1|) |#2|)) (-15 -3810 ((-588 |#2|) (-1 |#2| |#1|) (-588 |#1|)))) (-1120) (-1120)) (T -586))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-588 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-588 *6)) (-5 *1 (-586 *5 *6)))) (-2153 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-588 *5)) (-4 *5 (-1120)) (-4 *2 (-1120)) (-5 *1 (-586 *5 *2)))) (-3639 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-588 *6)) (-4 *6 (-1120)) (-4 *5 (-1120)) (-5 *2 (-588 *5)) (-5 *1 (-586 *6 *5)))))
+(-10 -7 (-15 -3639 ((-588 |#2|) (-1 |#2| |#1| |#2|) (-588 |#1|) |#2|)) (-15 -2153 (|#2| (-1 |#2| |#1| |#2|) (-588 |#1|) |#2|)) (-15 -3810 ((-588 |#2|) (-1 |#2| |#1|) (-588 |#1|))))
+((-3810 (((-588 |#3|) (-1 |#3| |#1| |#2|) (-588 |#1|) (-588 |#2|)) 13)))
+(((-587 |#1| |#2| |#3|) (-10 -7 (-15 -3810 ((-588 |#3|) (-1 |#3| |#1| |#2|) (-588 |#1|) (-588 |#2|)))) (-1120) (-1120) (-1120)) (T -587))
+((-3810 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-588 *6)) (-5 *5 (-588 *7)) (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-588 *8)) (-5 *1 (-587 *6 *7 *8)))))
+(-10 -7 (-15 -3810 ((-588 |#3|) (-1 |#3| |#1| |#2|) (-588 |#1|) (-588 |#2|))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3526 ((|#1| $) NIL)) (-2126 ((|#1| $) NIL)) (-3961 (($ $) NIL)) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-2211 (($ $ (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) $) NIL (|has| |#1| (-784))) (((-108) (-1 (-108) |#1| |#1|) $) NIL)) (-2806 (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784)))) (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3296 (($ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1198 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-2398 (($ $ $) NIL (|has| $ (-6 -4239)))) (-2631 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-3393 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "rest" $) NIL (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-1650 (($ $ $) 32 (|has| |#1| (-1014)))) (-1638 (($ $ $) 34 (|has| |#1| (-1014)))) (-1629 (($ $ $) 37 (|has| |#1| (-1014)))) (-1213 (($ (-1 (-108) |#1|) $) NIL)) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2116 ((|#1| $) NIL)) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-2352 (($ $) NIL) (($ $ (-708)) NIL)) (-1581 (($ $) NIL (|has| |#1| (-1014)))) (-2379 (($ $) 31 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1700 (($ |#1| $) NIL (|has| |#1| (-1014))) (($ (-1 (-108) |#1|) $) NIL)) (-1424 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2411 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) NIL)) (-3614 (((-108) $) NIL)) (-3314 (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014))) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) (-1 (-108) |#1|) $) NIL)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1389 (((-108) $) 9)) (-2674 (((-588 $) $) NIL)) (-2402 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2088 (($) 7)) (-1893 (($ (-708) |#1|) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-3557 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-3164 (($ $ $) NIL (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 33 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1614 (($ |#1|) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2548 (((-588 |#1|) $) NIL)) (-3394 (((-108) $) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1442 ((|#1| $) NIL) (($ $ (-708)) NIL)) (-3365 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-1731 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2337 ((|#1| $) NIL) (($ $ (-708)) NIL)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1972 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-4196 (((-108) $) NIL)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1133 (-522))) NIL) ((|#1| $ (-522)) 36) ((|#1| $ (-522) |#1|) NIL)) (-3381 (((-522) $ $) NIL)) (-3551 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3835 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-3395 (((-108) $) NIL)) (-2885 (($ $) NIL)) (-1668 (($ $) NIL (|has| $ (-6 -4239)))) (-1321 (((-708) $) NIL)) (-1502 (($ $) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) 45 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) NIL)) (-3019 (($ |#1| $) 10)) (-2335 (($ $ $) NIL) (($ $ |#1|) NIL)) (-4170 (($ $ $) 30) (($ |#1| $) NIL) (($ (-588 $)) NIL) (($ $ |#1|) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) NIL)) (-3294 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3818 (($ $ $) 11)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2810 (((-1068) $) 26 (|has| |#1| (-765))) (((-1068) $ (-108)) 27 (|has| |#1| (-765))) (((-1171) (-759) $) 28 (|has| |#1| (-765))) (((-1171) (-759) $ (-108)) 29 (|has| |#1| (-765)))) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-588 |#1|) (-13 (-608 |#1|) (-10 -8 (-15 -2088 ($)) (-15 -1389 ((-108) $)) (-15 -3019 ($ |#1| $)) (-15 -3818 ($ $ $)) (IF (|has| |#1| (-1014)) (PROGN (-15 -1650 ($ $ $)) (-15 -1638 ($ $ $)) (-15 -1629 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-765)) (-6 (-765)) |%noBranch|))) (-1120)) (T -588))
+((-2088 (*1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1120)))) (-1389 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-588 *3)) (-4 *3 (-1120)))) (-3019 (*1 *1 *2 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1120)))) (-3818 (*1 *1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1120)))) (-1650 (*1 *1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-1120)))) (-1638 (*1 *1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-1120)))) (-1629 (*1 *1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-1120)))))
+(-13 (-608 |#1|) (-10 -8 (-15 -2088 ($)) (-15 -1389 ((-108) $)) (-15 -3019 ($ |#1| $)) (-15 -3818 ($ $ $)) (IF (|has| |#1| (-1014)) (PROGN (-15 -1650 ($ $ $)) (-15 -1638 ($ $ $)) (-15 -1629 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-765)) (-6 (-765)) |%noBranch|)))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2365 (($ |#1| |#1| $) 43)) (-2717 (((-108) $ (-708)) NIL)) (-1213 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-1581 (($ $) 45)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1700 (($ |#1| $) 52 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-1424 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-2395 (((-588 |#1|) $) 9 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2397 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 37)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1431 ((|#1| $) 46)) (-3365 (($ |#1| $) 26) (($ |#1| $ (-708)) 42)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-3295 ((|#1| $) 48)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 21)) (-3298 (($) 25)) (-3123 (((-108) $) 50)) (-3699 (((-588 (-2 (|:| -3149 |#1|) (|:| -4187 (-708)))) $) 59)) (-3546 (($) 23) (($ (-588 |#1|)) 18)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) 56 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) 19)) (-3873 (((-498) $) 34 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) NIL)) (-2217 (((-792) $) 14 (|has| |#1| (-562 (-792))))) (-2501 (($ (-588 |#1|)) 22)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 61 (|has| |#1| (-1014)))) (-3591 (((-708) $) 16 (|has| $ (-6 -4238)))))
+(((-589 |#1|) (-13 (-633 |#1|) (-10 -8 (-6 -4238) (-15 -3123 ((-108) $)) (-15 -2365 ($ |#1| |#1| $)))) (-1014)) (T -589))
+((-3123 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-589 *3)) (-4 *3 (-1014)))) (-2365 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1014)))))
+(-13 (-633 |#1|) (-10 -8 (-6 -4238) (-15 -3123 ((-108) $)) (-15 -2365 ($ |#1| |#1| $))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#1| $) 23)))
(((-590 |#1|) (-1197) (-978)) (T -590))
((* (*1 *1 *2 *1) (-12 (-4 *1 (-590 *2)) (-4 *2 (-978)))))
(-13 (-21) (-10 -8 (-15 * ($ |t#1| $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-1629 (((-708) $) 15)) (-3734 (($ $ |#1|) 55)) (-3509 (($ $) 32)) (-1862 (($ $) 31)) (-1297 (((-3 |#1| "failed") $) 47)) (-1484 ((|#1| $) NIL)) (-2400 (($ |#1| |#2| $) 61) (($ $ $) 62)) (-3445 (((-792) $ (-1 (-792) (-792) (-792)) (-1 (-792) (-792) (-792)) (-522)) 45)) (-3750 ((|#1| $ (-522)) 30)) (-1905 ((|#2| $ (-522)) 29)) (-3896 (($ (-1 |#1| |#1|) $) 34)) (-3941 (($ (-1 |#2| |#2|) $) 38)) (-3209 (($) 10)) (-2644 (($ |#1| |#2|) 22)) (-3545 (($ (-588 (-2 (|:| |gen| |#1|) (|:| -3266 |#2|)))) 23)) (-2434 (((-588 (-2 (|:| |gen| |#1|) (|:| -3266 |#2|))) $) 13)) (-3015 (($ |#1| $) 56)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2864 (((-108) $ $) 58)) (-2190 (((-792) $) 19) (($ |#1|) 16)) (-1531 (((-108) $ $) 25)))
-(((-591 |#1| |#2| |#3|) (-13 (-1014) (-962 |#1|) (-10 -8 (-15 -3445 ((-792) $ (-1 (-792) (-792) (-792)) (-1 (-792) (-792) (-792)) (-522))) (-15 -2434 ((-588 (-2 (|:| |gen| |#1|) (|:| -3266 |#2|))) $)) (-15 -2644 ($ |#1| |#2|)) (-15 -3545 ($ (-588 (-2 (|:| |gen| |#1|) (|:| -3266 |#2|))))) (-15 -1905 (|#2| $ (-522))) (-15 -3750 (|#1| $ (-522))) (-15 -1862 ($ $)) (-15 -3509 ($ $)) (-15 -1629 ((-708) $)) (-15 -3209 ($)) (-15 -3734 ($ $ |#1|)) (-15 -3015 ($ |#1| $)) (-15 -2400 ($ |#1| |#2| $)) (-15 -2400 ($ $ $)) (-15 -2864 ((-108) $ $)) (-15 -3941 ($ (-1 |#2| |#2|) $)) (-15 -3896 ($ (-1 |#1| |#1|) $)))) (-1014) (-23) |#2|) (T -591))
-((-3445 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-792) (-792) (-792))) (-5 *4 (-522)) (-5 *2 (-792)) (-5 *1 (-591 *5 *6 *7)) (-4 *5 (-1014)) (-4 *6 (-23)) (-14 *7 *6))) (-2434 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3266 *4)))) (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014)) (-4 *4 (-23)) (-14 *5 *4))) (-2644 (*1 *1 *2 *3) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-3545 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3266 *4)))) (-4 *3 (-1014)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-591 *3 *4 *5)))) (-1905 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *2 (-23)) (-5 *1 (-591 *4 *2 *5)) (-4 *4 (-1014)) (-14 *5 *2))) (-3750 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *2 (-1014)) (-5 *1 (-591 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-1862 (*1 *1 *1) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-3509 (*1 *1 *1) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-1629 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014)) (-4 *4 (-23)) (-14 *5 *4))) (-3209 (*1 *1) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-3734 (*1 *1 *1 *2) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-3015 (*1 *1 *2 *1) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-2400 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-2400 (*1 *1 *1 *1) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-2864 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014)) (-4 *4 (-23)) (-14 *5 *4))) (-3941 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014)))) (-3896 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-591 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
-(-13 (-1014) (-962 |#1|) (-10 -8 (-15 -3445 ((-792) $ (-1 (-792) (-792) (-792)) (-1 (-792) (-792) (-792)) (-522))) (-15 -2434 ((-588 (-2 (|:| |gen| |#1|) (|:| -3266 |#2|))) $)) (-15 -2644 ($ |#1| |#2|)) (-15 -3545 ($ (-588 (-2 (|:| |gen| |#1|) (|:| -3266 |#2|))))) (-15 -1905 (|#2| $ (-522))) (-15 -3750 (|#1| $ (-522))) (-15 -1862 ($ $)) (-15 -3509 ($ $)) (-15 -1629 ((-708) $)) (-15 -3209 ($)) (-15 -3734 ($ $ |#1|)) (-15 -3015 ($ |#1| $)) (-15 -2400 ($ |#1| |#2| $)) (-15 -2400 ($ $ $)) (-15 -2864 ((-108) $ $)) (-15 -3941 ($ (-1 |#2| |#2|) $)) (-15 -3896 ($ (-1 |#1| |#1|) $))))
-((-2014 (((-522) $) 24)) (-1661 (($ |#2| $ (-522)) 22) (($ $ $ (-522)) NIL)) (-3604 (((-588 (-522)) $) 12)) (-1405 (((-108) (-522) $) 15)) (-4165 (($ $ |#2|) 19) (($ |#2| $) 20) (($ $ $) NIL) (($ (-588 $)) NIL)))
-(((-592 |#1| |#2|) (-10 -8 (-15 -1661 (|#1| |#1| |#1| (-522))) (-15 -1661 (|#1| |#2| |#1| (-522))) (-15 -4165 (|#1| (-588 |#1|))) (-15 -4165 (|#1| |#1| |#1|)) (-15 -4165 (|#1| |#2| |#1|)) (-15 -4165 (|#1| |#1| |#2|)) (-15 -2014 ((-522) |#1|)) (-15 -3604 ((-588 (-522)) |#1|)) (-15 -1405 ((-108) (-522) |#1|))) (-593 |#2|) (-1120)) (T -592))
-NIL
-(-10 -8 (-15 -1661 (|#1| |#1| |#1| (-522))) (-15 -1661 (|#1| |#2| |#1| (-522))) (-15 -4165 (|#1| (-588 |#1|))) (-15 -4165 (|#1| |#1| |#1|)) (-15 -4165 (|#1| |#2| |#1|)) (-15 -4165 (|#1| |#1| |#2|)) (-15 -2014 ((-522) |#1|)) (-15 -3604 ((-588 (-522)) |#1|)) (-15 -1405 ((-108) (-522) |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2679 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) 8)) (-2379 ((|#1| $ (-522) |#1|) 52 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 58 (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-2333 (($ $) 78 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#1| $) 77 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) 51)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1811 (($ (-708) |#1|) 69)) (-3352 (((-108) $ (-708)) 9)) (-1359 (((-522) $) 43 (|has| (-522) (-784)))) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 44 (|has| (-522) (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1661 (($ |#1| $ (-522)) 60) (($ $ $ (-522)) 59)) (-3604 (((-588 (-522)) $) 46)) (-1405 (((-108) (-522) $) 47)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2294 ((|#1| $) 42 (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-2602 (($ $ |#1|) 41 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) 48)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ (-522) |#1|) 50) ((|#1| $ (-522)) 49) (($ $ (-1133 (-522))) 63)) (-3696 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-1431 (((-498) $) 79 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 70)) (-4165 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-1685 (((-708) $) 15)) (-2952 (($ $ |#1|) 55)) (-2465 (($ $) 32)) (-1939 (($ $) 31)) (-3700 (((-3 |#1| "failed") $) 47)) (-1478 ((|#1| $) NIL)) (-2457 (($ |#1| |#2| $) 61) (($ $ $) 62)) (-3094 (((-792) $ (-1 (-792) (-792) (-792)) (-1 (-792) (-792) (-792)) (-522)) 45)) (-3108 ((|#1| $ (-522)) 30)) (-4213 ((|#2| $ (-522)) 29)) (-2007 (($ (-1 |#1| |#1|) $) 34)) (-1250 (($ (-1 |#2| |#2|) $) 38)) (-2527 (($) 10)) (-1653 (($ |#1| |#2|) 22)) (-2881 (($ (-588 (-2 (|:| |gen| |#1|) (|:| -3357 |#2|)))) 23)) (-3373 (((-588 (-2 (|:| |gen| |#1|) (|:| -3357 |#2|))) $) 13)) (-1287 (($ |#1| $) 56)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1229 (((-108) $ $) 58)) (-2217 (((-792) $) 19) (($ |#1|) 16)) (-1562 (((-108) $ $) 25)))
+(((-591 |#1| |#2| |#3|) (-13 (-1014) (-962 |#1|) (-10 -8 (-15 -3094 ((-792) $ (-1 (-792) (-792) (-792)) (-1 (-792) (-792) (-792)) (-522))) (-15 -3373 ((-588 (-2 (|:| |gen| |#1|) (|:| -3357 |#2|))) $)) (-15 -1653 ($ |#1| |#2|)) (-15 -2881 ($ (-588 (-2 (|:| |gen| |#1|) (|:| -3357 |#2|))))) (-15 -4213 (|#2| $ (-522))) (-15 -3108 (|#1| $ (-522))) (-15 -1939 ($ $)) (-15 -2465 ($ $)) (-15 -1685 ((-708) $)) (-15 -2527 ($)) (-15 -2952 ($ $ |#1|)) (-15 -1287 ($ |#1| $)) (-15 -2457 ($ |#1| |#2| $)) (-15 -2457 ($ $ $)) (-15 -1229 ((-108) $ $)) (-15 -1250 ($ (-1 |#2| |#2|) $)) (-15 -2007 ($ (-1 |#1| |#1|) $)))) (-1014) (-23) |#2|) (T -591))
+((-3094 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-792) (-792) (-792))) (-5 *4 (-522)) (-5 *2 (-792)) (-5 *1 (-591 *5 *6 *7)) (-4 *5 (-1014)) (-4 *6 (-23)) (-14 *7 *6))) (-3373 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3357 *4)))) (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014)) (-4 *4 (-23)) (-14 *5 *4))) (-1653 (*1 *1 *2 *3) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-2881 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3357 *4)))) (-4 *3 (-1014)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-591 *3 *4 *5)))) (-4213 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *2 (-23)) (-5 *1 (-591 *4 *2 *5)) (-4 *4 (-1014)) (-14 *5 *2))) (-3108 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *2 (-1014)) (-5 *1 (-591 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-1939 (*1 *1 *1) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-2465 (*1 *1 *1) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-1685 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014)) (-4 *4 (-23)) (-14 *5 *4))) (-2527 (*1 *1) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-2952 (*1 *1 *1 *2) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-1287 (*1 *1 *2 *1) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-2457 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-2457 (*1 *1 *1 *1) (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23)) (-14 *4 *3))) (-1229 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014)) (-4 *4 (-23)) (-14 *5 *4))) (-1250 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014)))) (-2007 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-591 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
+(-13 (-1014) (-962 |#1|) (-10 -8 (-15 -3094 ((-792) $ (-1 (-792) (-792) (-792)) (-1 (-792) (-792) (-792)) (-522))) (-15 -3373 ((-588 (-2 (|:| |gen| |#1|) (|:| -3357 |#2|))) $)) (-15 -1653 ($ |#1| |#2|)) (-15 -2881 ($ (-588 (-2 (|:| |gen| |#1|) (|:| -3357 |#2|))))) (-15 -4213 (|#2| $ (-522))) (-15 -3108 (|#1| $ (-522))) (-15 -1939 ($ $)) (-15 -2465 ($ $)) (-15 -1685 ((-708) $)) (-15 -2527 ($)) (-15 -2952 ($ $ |#1|)) (-15 -1287 ($ |#1| $)) (-15 -2457 ($ |#1| |#2| $)) (-15 -2457 ($ $ $)) (-15 -1229 ((-108) $ $)) (-15 -1250 ($ (-1 |#2| |#2|) $)) (-15 -2007 ($ (-1 |#1| |#1|) $))))
+((-2201 (((-522) $) 24)) (-1731 (($ |#2| $ (-522)) 22) (($ $ $ (-522)) NIL)) (-2130 (((-588 (-522)) $) 12)) (-2103 (((-108) (-522) $) 15)) (-4170 (($ $ |#2|) 19) (($ |#2| $) 20) (($ $ $) NIL) (($ (-588 $)) NIL)))
+(((-592 |#1| |#2|) (-10 -8 (-15 -1731 (|#1| |#1| |#1| (-522))) (-15 -1731 (|#1| |#2| |#1| (-522))) (-15 -4170 (|#1| (-588 |#1|))) (-15 -4170 (|#1| |#1| |#1|)) (-15 -4170 (|#1| |#2| |#1|)) (-15 -4170 (|#1| |#1| |#2|)) (-15 -2201 ((-522) |#1|)) (-15 -2130 ((-588 (-522)) |#1|)) (-15 -2103 ((-108) (-522) |#1|))) (-593 |#2|) (-1120)) (T -592))
+NIL
+(-10 -8 (-15 -1731 (|#1| |#1| |#1| (-522))) (-15 -1731 (|#1| |#2| |#1| (-522))) (-15 -4170 (|#1| (-588 |#1|))) (-15 -4170 (|#1| |#1| |#1|)) (-15 -4170 (|#1| |#2| |#1|)) (-15 -4170 (|#1| |#1| |#2|)) (-15 -2201 ((-522) |#1|)) (-15 -2130 ((-588 (-522)) |#1|)) (-15 -2103 ((-108) (-522) |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3883 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) 8)) (-2437 ((|#1| $ (-522) |#1|) 52 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 58 (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-2379 (($ $) 78 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#1| $) 77 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) 51)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1893 (($ (-708) |#1|) 69)) (-1480 (((-108) $ (-708)) 9)) (-3496 (((-522) $) 43 (|has| (-522) (-784)))) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 44 (|has| (-522) (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1731 (($ |#1| $ (-522)) 60) (($ $ $ (-522)) 59)) (-2130 (((-588 (-522)) $) 46)) (-2103 (((-108) (-522) $) 47)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2337 ((|#1| $) 42 (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-1972 (($ $ |#1|) 41 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) 48)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ (-522) |#1|) 50) ((|#1| $ (-522)) 49) (($ $ (-1133 (-522))) 63)) (-3835 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-3873 (((-498) $) 79 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 70)) (-4170 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-593 |#1|) (-1197) (-1120)) (T -593))
-((-1811 (*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-4165 (*1 *1 *1 *2) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1120)))) (-4165 (*1 *1 *2 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1120)))) (-4165 (*1 *1 *1 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1120)))) (-4165 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-1391 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-2545 (*1 *1 *1 *2) (-12 (-5 *2 (-1133 (-522))) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-3696 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-3696 (*1 *1 *1 *2) (-12 (-5 *2 (-1133 (-522))) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-1661 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-593 *2)) (-4 *2 (-1120)))) (-1661 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-2379 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1133 (-522))) (|has| *1 (-6 -4239)) (-4 *1 (-593 *2)) (-4 *2 (-1120)))))
-(-13 (-555 (-522) |t#1|) (-139 |t#1|) (-10 -8 (-15 -1811 ($ (-708) |t#1|)) (-15 -4165 ($ $ |t#1|)) (-15 -4165 ($ |t#1| $)) (-15 -4165 ($ $ $)) (-15 -4165 ($ (-588 $))) (-15 -1391 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -2545 ($ $ (-1133 (-522)))) (-15 -3696 ($ $ (-522))) (-15 -3696 ($ $ (-1133 (-522)))) (-15 -1661 ($ |t#1| $ (-522))) (-15 -1661 ($ $ $ (-522))) (IF (|has| $ (-6 -4239)) (-15 -2379 (|t#1| $ (-1133 (-522)) |t#1|)) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-3426 (((-3 |#2| "failed") |#3| |#2| (-1085) |#2| (-588 |#2|)) 160) (((-3 (-2 (|:| |particular| |#2|) (|:| -3855 (-588 |#2|))) "failed") |#3| |#2| (-1085)) 43)))
-(((-594 |#1| |#2| |#3|) (-10 -7 (-15 -3426 ((-3 (-2 (|:| |particular| |#2|) (|:| -3855 (-588 |#2|))) "failed") |#3| |#2| (-1085))) (-15 -3426 ((-3 |#2| "failed") |#3| |#2| (-1085) |#2| (-588 |#2|)))) (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)) (-13 (-29 |#1|) (-1106) (-887)) (-598 |#2|)) (T -594))
-((-3426 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-588 *2)) (-4 *2 (-13 (-29 *6) (-1106) (-887))) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *1 (-594 *6 *2 *3)) (-4 *3 (-598 *2)))) (-3426 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1085)) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-4 *4 (-13 (-29 *6) (-1106) (-887))) (-5 *2 (-2 (|:| |particular| *4) (|:| -3855 (-588 *4)))) (-5 *1 (-594 *6 *4 *3)) (-4 *3 (-598 *4)))))
-(-10 -7 (-15 -3426 ((-3 (-2 (|:| |particular| |#2|) (|:| -3855 (-588 |#2|))) "failed") |#3| |#2| (-1085))) (-15 -3426 ((-3 |#2| "failed") |#3| |#2| (-1085) |#2| (-588 |#2|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-338)))) (-1388 (($ $ $) NIL (|has| |#1| (-338)))) (-1861 (($ $ (-708)) NIL (|has| |#1| (-338)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3376 (($ $ $) NIL (|has| |#1| (-338)))) (-3951 (($ $ $) NIL (|has| |#1| (-338)))) (-2652 (($ $ $) NIL (|has| |#1| (-338)))) (-2612 (($ $ $) NIL (|has| |#1| (-338)))) (-1230 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3280 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-3653 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#1| (-426)))) (-2782 (((-108) $) NIL)) (-4049 (($ |#1| (-708)) NIL)) (-2953 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-514)))) (-2514 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-514)))) (-2925 (((-708) $) NIL)) (-3703 (($ $ $) NIL (|has| |#1| (-338)))) (-3344 (($ $ $) NIL (|has| |#1| (-338)))) (-3470 (($ $ $) NIL (|has| |#1| (-338)))) (-3671 (($ $ $) NIL (|has| |#1| (-338)))) (-1336 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3829 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-2509 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-2545 ((|#1| $ |#1|) NIL)) (-4101 (($ $ $) NIL (|has| |#1| (-338)))) (-2793 (((-708) $) NIL)) (-2255 ((|#1| $) NIL (|has| |#1| (-426)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) NIL)) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-708)) NIL)) (-2323 (((-708)) NIL)) (-1616 ((|#1| $ |#1| |#1|) NIL)) (-3785 (($ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($) NIL)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-1893 (*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-4170 (*1 *1 *1 *2) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1120)))) (-4170 (*1 *1 *2 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1120)))) (-4170 (*1 *1 *1 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1120)))) (-4170 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-3810 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-2683 (*1 *1 *1 *2) (-12 (-5 *2 (-1133 (-522))) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-3835 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-3835 (*1 *1 *1 *2) (-12 (-5 *2 (-1133 (-522))) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-1731 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-593 *2)) (-4 *2 (-1120)))) (-1731 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-593 *3)) (-4 *3 (-1120)))) (-2437 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1133 (-522))) (|has| *1 (-6 -4239)) (-4 *1 (-593 *2)) (-4 *2 (-1120)))))
+(-13 (-555 (-522) |t#1|) (-139 |t#1|) (-10 -8 (-15 -1893 ($ (-708) |t#1|)) (-15 -4170 ($ $ |t#1|)) (-15 -4170 ($ |t#1| $)) (-15 -4170 ($ $ $)) (-15 -4170 ($ (-588 $))) (-15 -3810 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -2683 ($ $ (-1133 (-522)))) (-15 -3835 ($ $ (-522))) (-15 -3835 ($ $ (-1133 (-522)))) (-15 -1731 ($ |t#1| $ (-522))) (-15 -1731 ($ $ $ (-522))) (IF (|has| $ (-6 -4239)) (-15 -2437 (|t#1| $ (-1133 (-522)) |t#1|)) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-2925 (((-3 |#2| "failed") |#3| |#2| (-1085) |#2| (-588 |#2|)) 160) (((-3 (-2 (|:| |particular| |#2|) (|:| -2905 (-588 |#2|))) "failed") |#3| |#2| (-1085)) 43)))
+(((-594 |#1| |#2| |#3|) (-10 -7 (-15 -2925 ((-3 (-2 (|:| |particular| |#2|) (|:| -2905 (-588 |#2|))) "failed") |#3| |#2| (-1085))) (-15 -2925 ((-3 |#2| "failed") |#3| |#2| (-1085) |#2| (-588 |#2|)))) (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)) (-13 (-29 |#1|) (-1106) (-887)) (-598 |#2|)) (T -594))
+((-2925 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-588 *2)) (-4 *2 (-13 (-29 *6) (-1106) (-887))) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *1 (-594 *6 *2 *3)) (-4 *3 (-598 *2)))) (-2925 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1085)) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-4 *4 (-13 (-29 *6) (-1106) (-887))) (-5 *2 (-2 (|:| |particular| *4) (|:| -2905 (-588 *4)))) (-5 *1 (-594 *6 *4 *3)) (-4 *3 (-598 *4)))))
+(-10 -7 (-15 -2925 ((-3 (-2 (|:| |particular| |#2|) (|:| -2905 (-588 |#2|))) "failed") |#3| |#2| (-1085))) (-15 -2925 ((-3 |#2| "failed") |#3| |#2| (-1085) |#2| (-588 |#2|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-1978 (($ $) NIL (|has| |#1| (-338)))) (-3730 (($ $ $) NIL (|has| |#1| (-338)))) (-2649 (($ $ (-708)) NIL (|has| |#1| (-338)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3525 (($ $ $) NIL (|has| |#1| (-338)))) (-1342 (($ $ $) NIL (|has| |#1| (-338)))) (-1734 (($ $ $) NIL (|has| |#1| (-338)))) (-3320 (($ $ $) NIL (|has| |#1| (-338)))) (-2228 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-1975 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-1432 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#1| (-426)))) (-2859 (((-108) $) NIL)) (-3500 (($ |#1| (-708)) NIL)) (-3865 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-514)))) (-2118 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-514)))) (-3564 (((-708) $) NIL)) (-3755 (($ $ $) NIL (|has| |#1| (-338)))) (-1416 (($ $ $) NIL (|has| |#1| (-338)))) (-3283 (($ $ $) NIL (|has| |#1| (-338)))) (-3453 (($ $ $) NIL (|has| |#1| (-338)))) (-2045 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-2708 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-2070 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-2683 ((|#1| $ |#1|) NIL)) (-3412 (($ $ $) NIL (|has| |#1| (-338)))) (-2487 (((-708) $) NIL)) (-2988 ((|#1| $) NIL (|has| |#1| (-426)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) NIL)) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-708)) NIL)) (-2742 (((-708)) NIL)) (-1664 ((|#1| $ |#1| |#1|) NIL)) (-3397 (($ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($) NIL)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-595 |#1|) (-598 |#1|) (-210)) (T -595))
NIL
(-598 |#1|)
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-338)))) (-1388 (($ $ $) NIL (|has| |#1| (-338)))) (-1861 (($ $ (-708)) NIL (|has| |#1| (-338)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3376 (($ $ $) NIL (|has| |#1| (-338)))) (-3951 (($ $ $) NIL (|has| |#1| (-338)))) (-2652 (($ $ $) NIL (|has| |#1| (-338)))) (-2612 (($ $ $) NIL (|has| |#1| (-338)))) (-1230 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3280 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-3653 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#1| (-426)))) (-2782 (((-108) $) NIL)) (-4049 (($ |#1| (-708)) NIL)) (-2953 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-514)))) (-2514 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-514)))) (-2925 (((-708) $) NIL)) (-3703 (($ $ $) NIL (|has| |#1| (-338)))) (-3344 (($ $ $) NIL (|has| |#1| (-338)))) (-3470 (($ $ $) NIL (|has| |#1| (-338)))) (-3671 (($ $ $) NIL (|has| |#1| (-338)))) (-1336 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3829 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-2509 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-2545 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-4101 (($ $ $) NIL (|has| |#1| (-338)))) (-2793 (((-708) $) NIL)) (-2255 ((|#1| $) NIL (|has| |#1| (-426)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) NIL)) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-708)) NIL)) (-2323 (((-708)) NIL)) (-1616 ((|#1| $ |#1| |#1|) NIL)) (-3785 (($ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($) NIL)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-596 |#1| |#2|) (-13 (-598 |#1|) (-262 |#2| |#2|)) (-210) (-13 (-590 |#1|) (-10 -8 (-15 -2157 ($ $))))) (T -596))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-1978 (($ $) NIL (|has| |#1| (-338)))) (-3730 (($ $ $) NIL (|has| |#1| (-338)))) (-2649 (($ $ (-708)) NIL (|has| |#1| (-338)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3525 (($ $ $) NIL (|has| |#1| (-338)))) (-1342 (($ $ $) NIL (|has| |#1| (-338)))) (-1734 (($ $ $) NIL (|has| |#1| (-338)))) (-3320 (($ $ $) NIL (|has| |#1| (-338)))) (-2228 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-1975 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-1432 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#1| (-426)))) (-2859 (((-108) $) NIL)) (-3500 (($ |#1| (-708)) NIL)) (-3865 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-514)))) (-2118 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-514)))) (-3564 (((-708) $) NIL)) (-3755 (($ $ $) NIL (|has| |#1| (-338)))) (-1416 (($ $ $) NIL (|has| |#1| (-338)))) (-3283 (($ $ $) NIL (|has| |#1| (-338)))) (-3453 (($ $ $) NIL (|has| |#1| (-338)))) (-2045 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-2708 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-2070 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-2683 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-3412 (($ $ $) NIL (|has| |#1| (-338)))) (-2487 (((-708) $) NIL)) (-2988 ((|#1| $) NIL (|has| |#1| (-426)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) NIL)) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-708)) NIL)) (-2742 (((-708)) NIL)) (-1664 ((|#1| $ |#1| |#1|) NIL)) (-3397 (($ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($) NIL)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-596 |#1| |#2|) (-13 (-598 |#1|) (-262 |#2| |#2|)) (-210) (-13 (-590 |#1|) (-10 -8 (-15 -2731 ($ $))))) (T -596))
NIL
(-13 (-598 |#1|) (-262 |#2| |#2|))
-((-3584 (($ $) 27)) (-3785 (($ $) 25)) (-2213 (($) 12)))
-(((-597 |#1| |#2|) (-10 -8 (-15 -3584 (|#1| |#1|)) (-15 -3785 (|#1| |#1|)) (-15 -2213 (|#1|))) (-598 |#2|) (-971)) (T -597))
+((-1978 (($ $) 27)) (-3397 (($ $) 25)) (-2252 (($) 12)))
+(((-597 |#1| |#2|) (-10 -8 (-15 -1978 (|#1| |#1|)) (-15 -3397 (|#1| |#1|)) (-15 -2252 (|#1|))) (-598 |#2|) (-971)) (T -597))
NIL
-(-10 -8 (-15 -3584 (|#1| |#1|)) (-15 -3785 (|#1| |#1|)) (-15 -2213 (|#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-3584 (($ $) 82 (|has| |#1| (-338)))) (-1388 (($ $ $) 84 (|has| |#1| (-338)))) (-1861 (($ $ (-708)) 83 (|has| |#1| (-338)))) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-3376 (($ $ $) 45 (|has| |#1| (-338)))) (-3951 (($ $ $) 46 (|has| |#1| (-338)))) (-2652 (($ $ $) 48 (|has| |#1| (-338)))) (-2612 (($ $ $) 43 (|has| |#1| (-338)))) (-1230 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 42 (|has| |#1| (-338)))) (-3280 (((-3 $ "failed") $ $) 44 (|has| |#1| (-338)))) (-3653 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 47 (|has| |#1| (-338)))) (-1297 (((-3 (-522) "failed") $) 74 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 72 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 69)) (-1484 (((-522) $) 75 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 73 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 68)) (-3156 (($ $) 64)) (-2682 (((-3 $ "failed") $) 34)) (-2071 (($ $) 55 (|has| |#1| (-426)))) (-2782 (((-108) $) 31)) (-4049 (($ |#1| (-708)) 62)) (-2953 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57 (|has| |#1| (-514)))) (-2514 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 58 (|has| |#1| (-514)))) (-2925 (((-708) $) 66)) (-3703 (($ $ $) 52 (|has| |#1| (-338)))) (-3344 (($ $ $) 53 (|has| |#1| (-338)))) (-3470 (($ $ $) 41 (|has| |#1| (-338)))) (-3671 (($ $ $) 50 (|has| |#1| (-338)))) (-1336 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 49 (|has| |#1| (-338)))) (-3829 (((-3 $ "failed") $ $) 51 (|has| |#1| (-338)))) (-2509 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 54 (|has| |#1| (-338)))) (-3138 ((|#1| $) 65)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2232 (((-3 $ "failed") $ |#1|) 59 (|has| |#1| (-514)))) (-2545 ((|#1| $ |#1|) 87)) (-4101 (($ $ $) 81 (|has| |#1| (-338)))) (-2793 (((-708) $) 67)) (-2255 ((|#1| $) 56 (|has| |#1| (-426)))) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 71 (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) 70)) (-3916 (((-588 |#1|) $) 61)) (-3243 ((|#1| $ (-708)) 63)) (-2323 (((-708)) 29)) (-1616 ((|#1| $ |#1| |#1|) 60)) (-3785 (($ $) 85)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($) 86)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 77) (($ |#1| $) 76)))
+(-10 -8 (-15 -1978 (|#1| |#1|)) (-15 -3397 (|#1| |#1|)) (-15 -2252 (|#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-1978 (($ $) 82 (|has| |#1| (-338)))) (-3730 (($ $ $) 84 (|has| |#1| (-338)))) (-2649 (($ $ (-708)) 83 (|has| |#1| (-338)))) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3525 (($ $ $) 45 (|has| |#1| (-338)))) (-1342 (($ $ $) 46 (|has| |#1| (-338)))) (-1734 (($ $ $) 48 (|has| |#1| (-338)))) (-3320 (($ $ $) 43 (|has| |#1| (-338)))) (-2228 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 42 (|has| |#1| (-338)))) (-1975 (((-3 $ "failed") $ $) 44 (|has| |#1| (-338)))) (-1432 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 47 (|has| |#1| (-338)))) (-3700 (((-3 (-522) "failed") $) 74 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 72 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 69)) (-1478 (((-522) $) 75 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 73 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 68)) (-3241 (($ $) 64)) (-3920 (((-3 $ "failed") $) 34)) (-2883 (($ $) 55 (|has| |#1| (-426)))) (-2859 (((-108) $) 31)) (-3500 (($ |#1| (-708)) 62)) (-3865 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57 (|has| |#1| (-514)))) (-2118 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 58 (|has| |#1| (-514)))) (-3564 (((-708) $) 66)) (-3755 (($ $ $) 52 (|has| |#1| (-338)))) (-1416 (($ $ $) 53 (|has| |#1| (-338)))) (-3283 (($ $ $) 41 (|has| |#1| (-338)))) (-3453 (($ $ $) 50 (|has| |#1| (-338)))) (-2045 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 49 (|has| |#1| (-338)))) (-2708 (((-3 $ "failed") $ $) 51 (|has| |#1| (-338)))) (-2070 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 54 (|has| |#1| (-338)))) (-3224 ((|#1| $) 65)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2276 (((-3 $ "failed") $ |#1|) 59 (|has| |#1| (-514)))) (-2683 ((|#1| $ |#1|) 87)) (-3412 (($ $ $) 81 (|has| |#1| (-338)))) (-2487 (((-708) $) 67)) (-2988 ((|#1| $) 56 (|has| |#1| (-426)))) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 71 (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) 70)) (-2180 (((-588 |#1|) $) 61)) (-1643 ((|#1| $ (-708)) 63)) (-2742 (((-708)) 29)) (-1664 ((|#1| $ |#1| |#1|) 60)) (-3397 (($ $) 85)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($) 86)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 77) (($ |#1| $) 76)))
(((-598 |#1|) (-1197) (-971)) (T -598))
-((-2213 (*1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)))) (-3785 (*1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)))) (-1388 (*1 *1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-1861 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-598 *3)) (-4 *3 (-971)) (-4 *3 (-338)))) (-3584 (*1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-4101 (*1 *1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
-(-13 (-786 |t#1|) (-262 |t#1| |t#1|) (-10 -8 (-15 -2213 ($)) (-15 -3785 ($ $)) (IF (|has| |t#1| (-338)) (PROGN (-15 -1388 ($ $ $)) (-15 -1861 ($ $ (-708))) (-15 -3584 ($ $)) (-15 -4101 ($ $ $))) |%noBranch|)))
+((-2252 (*1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)))) (-3397 (*1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)))) (-3730 (*1 *1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-2649 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-598 *3)) (-4 *3 (-971)) (-4 *3 (-338)))) (-1978 (*1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-3412 (*1 *1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+(-13 (-786 |t#1|) (-262 |t#1| |t#1|) (-10 -8 (-15 -2252 ($)) (-15 -3397 ($ $)) (IF (|has| |t#1| (-338)) (PROGN (-15 -3730 ($ $ $)) (-15 -2649 ($ $ (-708))) (-15 -1978 ($ $)) (-15 -3412 ($ $ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) |has| |#1| (-157)) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-562 (-792)) . T) ((-262 |#1| |#1|) . T) ((-386 |#1|) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-655 |#1|) |has| |#1| (-157)) ((-664) . T) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-977 |#1|) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-786 |#1|) . T))
-((-3983 (((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|))) 73 (|has| |#1| (-27)))) (-1916 (((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|))) 72 (|has| |#1| (-27))) (((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|)) 15)))
-(((-599 |#1| |#2|) (-10 -7 (-15 -1916 ((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1916 ((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|)))) (-15 -3983 ((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|))))) |%noBranch|)) (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))) (-1142 |#1|)) (T -599))
-((-3983 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *2 (-588 (-595 (-382 *5)))) (-5 *1 (-599 *4 *5)) (-5 *3 (-595 (-382 *5))))) (-1916 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *2 (-588 (-595 (-382 *5)))) (-5 *1 (-599 *4 *5)) (-5 *3 (-595 (-382 *5))))) (-1916 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-588 *5) *6)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-595 (-382 *6)))) (-5 *1 (-599 *5 *6)) (-5 *3 (-595 (-382 *6))))))
-(-10 -7 (-15 -1916 ((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1916 ((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|)))) (-15 -3983 ((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|))))) |%noBranch|))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-338)))) (-1388 (($ $ $) 28 (|has| |#1| (-338)))) (-1861 (($ $ (-708)) 31 (|has| |#1| (-338)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3376 (($ $ $) NIL (|has| |#1| (-338)))) (-3951 (($ $ $) NIL (|has| |#1| (-338)))) (-2652 (($ $ $) NIL (|has| |#1| (-338)))) (-2612 (($ $ $) NIL (|has| |#1| (-338)))) (-1230 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3280 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-3653 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#1| (-426)))) (-2782 (((-108) $) NIL)) (-4049 (($ |#1| (-708)) NIL)) (-2953 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-514)))) (-2514 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-514)))) (-2925 (((-708) $) NIL)) (-3703 (($ $ $) NIL (|has| |#1| (-338)))) (-3344 (($ $ $) NIL (|has| |#1| (-338)))) (-3470 (($ $ $) NIL (|has| |#1| (-338)))) (-3671 (($ $ $) NIL (|has| |#1| (-338)))) (-1336 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3829 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-2509 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-2545 ((|#1| $ |#1|) 24)) (-4101 (($ $ $) 33 (|has| |#1| (-338)))) (-2793 (((-708) $) NIL)) (-2255 ((|#1| $) NIL (|has| |#1| (-426)))) (-2190 (((-792) $) 20) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) NIL)) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-708)) NIL)) (-2323 (((-708)) NIL)) (-1616 ((|#1| $ |#1| |#1|) 23)) (-3785 (($ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 21 T CONST)) (-3577 (($) 8 T CONST)) (-2213 (($) NIL)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-1669 (((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|))) 73 (|has| |#1| (-27)))) (-2006 (((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|))) 72 (|has| |#1| (-27))) (((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|)) 15)))
+(((-599 |#1| |#2|) (-10 -7 (-15 -2006 ((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2006 ((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|)))) (-15 -1669 ((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|))))) |%noBranch|)) (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))) (-1142 |#1|)) (T -599))
+((-1669 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *2 (-588 (-595 (-382 *5)))) (-5 *1 (-599 *4 *5)) (-5 *3 (-595 (-382 *5))))) (-2006 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *2 (-588 (-595 (-382 *5)))) (-5 *1 (-599 *4 *5)) (-5 *3 (-595 (-382 *5))))) (-2006 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-588 *5) *6)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-595 (-382 *6)))) (-5 *1 (-599 *5 *6)) (-5 *3 (-595 (-382 *6))))))
+(-10 -7 (-15 -2006 ((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2006 ((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|)))) (-15 -1669 ((-588 (-595 (-382 |#2|))) (-595 (-382 |#2|))))) |%noBranch|))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-1978 (($ $) NIL (|has| |#1| (-338)))) (-3730 (($ $ $) 28 (|has| |#1| (-338)))) (-2649 (($ $ (-708)) 31 (|has| |#1| (-338)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3525 (($ $ $) NIL (|has| |#1| (-338)))) (-1342 (($ $ $) NIL (|has| |#1| (-338)))) (-1734 (($ $ $) NIL (|has| |#1| (-338)))) (-3320 (($ $ $) NIL (|has| |#1| (-338)))) (-2228 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-1975 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-1432 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#1| (-426)))) (-2859 (((-108) $) NIL)) (-3500 (($ |#1| (-708)) NIL)) (-3865 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-514)))) (-2118 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-514)))) (-3564 (((-708) $) NIL)) (-3755 (($ $ $) NIL (|has| |#1| (-338)))) (-1416 (($ $ $) NIL (|has| |#1| (-338)))) (-3283 (($ $ $) NIL (|has| |#1| (-338)))) (-3453 (($ $ $) NIL (|has| |#1| (-338)))) (-2045 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-2708 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-2070 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-2683 ((|#1| $ |#1|) 24)) (-3412 (($ $ $) 33 (|has| |#1| (-338)))) (-2487 (((-708) $) NIL)) (-2988 ((|#1| $) NIL (|has| |#1| (-426)))) (-2217 (((-792) $) 20) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) NIL)) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-708)) NIL)) (-2742 (((-708)) NIL)) (-1664 ((|#1| $ |#1| |#1|) 23)) (-3397 (($ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 21 T CONST)) (-3709 (($) 8 T CONST)) (-2252 (($) NIL)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-600 |#1| |#2|) (-598 |#1|) (-971) (-1 |#1| |#1|)) (T -600))
NIL
(-598 |#1|)
-((-1388 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 60)) (-1861 ((|#2| |#2| (-708) (-1 |#1| |#1|)) 41)) (-4101 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 62)))
-(((-601 |#1| |#2|) (-10 -7 (-15 -1388 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -1861 (|#2| |#2| (-708) (-1 |#1| |#1|))) (-15 -4101 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-338) (-598 |#1|)) (T -601))
-((-4101 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-338)) (-5 *1 (-601 *4 *2)) (-4 *2 (-598 *4)))) (-1861 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-708)) (-5 *4 (-1 *5 *5)) (-4 *5 (-338)) (-5 *1 (-601 *5 *2)) (-4 *2 (-598 *5)))) (-1388 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-338)) (-5 *1 (-601 *4 *2)) (-4 *2 (-598 *4)))))
-(-10 -7 (-15 -1388 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -1861 (|#2| |#2| (-708) (-1 |#1| |#1|))) (-15 -4101 (|#2| |#2| |#2| (-1 |#1| |#1|))))
-((-2767 (($ $ $) 9)))
-(((-602 |#1|) (-10 -8 (-15 -2767 (|#1| |#1| |#1|))) (-603)) (T -602))
-NIL
-(-10 -8 (-15 -2767 (|#1| |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-1501 (($ $) 10)) (-2767 (($ $ $) 8)) (-1531 (((-108) $ $) 6)) (-2324 (($ $ $) 9)))
+((-3730 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 60)) (-2649 ((|#2| |#2| (-708) (-1 |#1| |#1|)) 41)) (-3412 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 62)))
+(((-601 |#1| |#2|) (-10 -7 (-15 -3730 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -2649 (|#2| |#2| (-708) (-1 |#1| |#1|))) (-15 -3412 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-338) (-598 |#1|)) (T -601))
+((-3412 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-338)) (-5 *1 (-601 *4 *2)) (-4 *2 (-598 *4)))) (-2649 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-708)) (-5 *4 (-1 *5 *5)) (-4 *5 (-338)) (-5 *1 (-601 *5 *2)) (-4 *2 (-598 *5)))) (-3730 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-338)) (-5 *1 (-601 *4 *2)) (-4 *2 (-598 *4)))))
+(-10 -7 (-15 -3730 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -2649 (|#2| |#2| (-708) (-1 |#1| |#1|))) (-15 -3412 (|#2| |#2| |#2| (-1 |#1| |#1|))))
+((-2920 (($ $ $) 9)))
+(((-602 |#1|) (-10 -8 (-15 -2920 (|#1| |#1| |#1|))) (-603)) (T -602))
+NIL
+(-10 -8 (-15 -2920 (|#1| |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-1504 (($ $) 10)) (-2920 (($ $ $) 8)) (-1562 (((-108) $ $) 6)) (-2388 (($ $ $) 9)))
(((-603) (-1197)) (T -603))
-((-1501 (*1 *1 *1) (-4 *1 (-603))) (-2324 (*1 *1 *1 *1) (-4 *1 (-603))) (-2767 (*1 *1 *1 *1) (-4 *1 (-603))))
-(-13 (-97) (-10 -8 (-15 -1501 ($ $)) (-15 -2324 ($ $ $)) (-15 -2767 ($ $ $))))
+((-1504 (*1 *1 *1) (-4 *1 (-603))) (-2388 (*1 *1 *1 *1) (-4 *1 (-603))) (-2920 (*1 *1 *1 *1) (-4 *1 (-603))))
+(-13 (-97) (-10 -8 (-15 -1504 ($ $)) (-15 -2388 ($ $ $)) (-15 -2920 ($ $ $))))
(((-97) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 15)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-2805 ((|#1| $) 21)) (-2814 (($ $ $) NIL (|has| |#1| (-728)))) (-2446 (($ $ $) NIL (|has| |#1| (-728)))) (-2385 (((-1068) $) 46)) (-4151 (((-1032) $) NIL)) (-2816 ((|#3| $) 22)) (-2190 (((-792) $) 42)) (-3566 (($) 10 T CONST)) (-1574 (((-108) $ $) NIL (|has| |#1| (-728)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-728)))) (-1531 (((-108) $ $) 20)) (-1566 (((-108) $ $) NIL (|has| |#1| (-728)))) (-1549 (((-108) $ $) 24 (|has| |#1| (-728)))) (-1620 (($ $ |#3|) 34) (($ |#1| |#3|) 35)) (-1612 (($ $) 17) (($ $ $) NIL)) (-1602 (($ $ $) 27)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 30) (($ |#2| $) 32) (($ $ |#2|) NIL)))
-(((-604 |#1| |#2| |#3|) (-13 (-655 |#2|) (-10 -8 (IF (|has| |#1| (-728)) (-6 (-728)) |%noBranch|) (-15 -1620 ($ $ |#3|)) (-15 -1620 ($ |#1| |#3|)) (-15 -2805 (|#1| $)) (-15 -2816 (|#3| $)))) (-655 |#2|) (-157) (|SubsetCategory| (-664) |#2|)) (T -604))
-((-1620 (*1 *1 *1 *2) (-12 (-4 *4 (-157)) (-5 *1 (-604 *3 *4 *2)) (-4 *3 (-655 *4)) (-4 *2 (|SubsetCategory| (-664) *4)))) (-1620 (*1 *1 *2 *3) (-12 (-4 *4 (-157)) (-5 *1 (-604 *2 *4 *3)) (-4 *2 (-655 *4)) (-4 *3 (|SubsetCategory| (-664) *4)))) (-2805 (*1 *2 *1) (-12 (-4 *3 (-157)) (-4 *2 (-655 *3)) (-5 *1 (-604 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-664) *3)))) (-2816 (*1 *2 *1) (-12 (-4 *4 (-157)) (-4 *2 (|SubsetCategory| (-664) *4)) (-5 *1 (-604 *3 *4 *2)) (-4 *3 (-655 *4)))))
-(-13 (-655 |#2|) (-10 -8 (IF (|has| |#1| (-728)) (-6 (-728)) |%noBranch|) (-15 -1620 ($ $ |#3|)) (-15 -1620 ($ |#1| |#3|)) (-15 -2805 (|#1| $)) (-15 -2816 (|#3| $))))
-((-3872 (((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|)) 33)))
-(((-605 |#1|) (-10 -7 (-15 -3872 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|)))) (-838)) (T -605))
-((-3872 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-1081 *4))) (-5 *3 (-1081 *4)) (-4 *4 (-838)) (-5 *1 (-605 *4)))))
-(-10 -7 (-15 -3872 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4106 (((-588 |#1|) $) 83)) (-2613 (($ $ (-708)) 91)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-1200 (((-1188 |#1| |#2|) (-1188 |#1| |#2|) $) 48)) (-1297 (((-3 (-613 |#1|) "failed") $) NIL)) (-1484 (((-613 |#1|) $) NIL)) (-3156 (($ $) 90)) (-2112 (((-708) $) NIL)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-2518 (($ (-613 |#1|) |#2|) 69)) (-1225 (($ $) 87)) (-1391 (($ (-1 |#2| |#2|) $) NIL)) (-2987 (((-1188 |#1| |#2|) (-1188 |#1| |#2|) $) 47)) (-2834 (((-2 (|:| |k| (-613 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3128 (((-613 |#1|) $) NIL)) (-3138 ((|#2| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2289 (($ $ |#1| $) 30) (($ $ (-588 |#1|) (-588 $)) 32)) (-2793 (((-708) $) 89)) (-2201 (($ $ $) 20) (($ (-613 |#1|) (-613 |#1|)) 78) (($ (-613 |#1|) $) 76) (($ $ (-613 |#1|)) 77)) (-2190 (((-792) $) NIL) (($ |#1|) 75) (((-1179 |#1| |#2|) $) 59) (((-1188 |#1| |#2|) $) 41) (($ (-613 |#1|)) 25)) (-3916 (((-588 |#2|) $) NIL)) (-3243 ((|#2| $ (-613 |#1|)) NIL)) (-2977 ((|#2| (-1188 |#1| |#2|) $) 43)) (-3566 (($) 23 T CONST)) (-2238 (((-588 (-2 (|:| |k| (-613 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1373 (((-3 $ "failed") (-1179 |#1| |#2|)) 61)) (-2131 (($ (-613 |#1|)) 14)) (-1531 (((-108) $ $) 44)) (-1620 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1612 (($ $) 67) (($ $ $) NIL)) (-1602 (($ $ $) 29)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#2| $) 28) (($ $ |#2|) NIL) (($ |#2| (-613 |#1|)) NIL)))
-(((-606 |#1| |#2|) (-13 (-349 |#1| |#2|) (-357 |#2| (-613 |#1|)) (-10 -8 (-15 -1373 ((-3 $ "failed") (-1179 |#1| |#2|))) (-15 -2201 ($ (-613 |#1|) (-613 |#1|))) (-15 -2201 ($ (-613 |#1|) $)) (-15 -2201 ($ $ (-613 |#1|))))) (-784) (-157)) (T -606))
-((-1373 (*1 *1 *2) (|partial| -12 (-5 *2 (-1179 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)) (-5 *1 (-606 *3 *4)))) (-2201 (*1 *1 *2 *2) (-12 (-5 *2 (-613 *3)) (-4 *3 (-784)) (-5 *1 (-606 *3 *4)) (-4 *4 (-157)))) (-2201 (*1 *1 *2 *1) (-12 (-5 *2 (-613 *3)) (-4 *3 (-784)) (-5 *1 (-606 *3 *4)) (-4 *4 (-157)))) (-2201 (*1 *1 *1 *2) (-12 (-5 *2 (-613 *3)) (-4 *3 (-784)) (-5 *1 (-606 *3 *4)) (-4 *4 (-157)))))
-(-13 (-349 |#1| |#2|) (-357 |#2| (-613 |#1|)) (-10 -8 (-15 -1373 ((-3 $ "failed") (-1179 |#1| |#2|))) (-15 -2201 ($ (-613 |#1|) (-613 |#1|))) (-15 -2201 ($ (-613 |#1|) $)) (-15 -2201 ($ $ (-613 |#1|)))))
-((-4187 (((-108) $) NIL) (((-108) (-1 (-108) |#2| |#2|) $) 50)) (-3537 (($ $) NIL) (($ (-1 (-108) |#2| |#2|) $) 11)) (-2790 (($ (-1 (-108) |#2|) $) 28)) (-3509 (($ $) 56)) (-3362 (($ $) 63)) (-3859 (($ |#2| $) NIL) (($ (-1 (-108) |#2|) $) 37)) (-3864 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 51) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 53)) (-3238 (((-522) |#2| $ (-522)) 61) (((-522) |#2| $) NIL) (((-522) (-1 (-108) |#2|) $) 47)) (-1811 (($ (-708) |#2|) 54)) (-1369 (($ $ $) NIL) (($ (-1 (-108) |#2| |#2|) $ $) 30)) (-2160 (($ $ $) NIL) (($ (-1 (-108) |#2| |#2|) $ $) 24)) (-1391 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 55)) (-1580 (($ |#2|) 14)) (-4095 (($ $ $ (-522)) 36) (($ |#2| $ (-522)) 34)) (-1414 (((-3 |#2| "failed") (-1 (-108) |#2|) $) 46)) (-3681 (($ $ (-1133 (-522))) 44) (($ $ (-522)) 38)) (-1577 (($ $ $ (-522)) 60)) (-2404 (($ $) 58)) (-1549 (((-108) $ $) 65)))
-(((-607 |#1| |#2|) (-10 -8 (-15 -1580 (|#1| |#2|)) (-15 -3681 (|#1| |#1| (-522))) (-15 -3681 (|#1| |#1| (-1133 (-522)))) (-15 -3859 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -4095 (|#1| |#2| |#1| (-522))) (-15 -4095 (|#1| |#1| |#1| (-522))) (-15 -1369 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -2790 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3859 (|#1| |#2| |#1|)) (-15 -3362 (|#1| |#1|)) (-15 -1369 (|#1| |#1| |#1|)) (-15 -2160 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -4187 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3238 ((-522) (-1 (-108) |#2|) |#1|)) (-15 -3238 ((-522) |#2| |#1|)) (-15 -3238 ((-522) |#2| |#1| (-522))) (-15 -2160 (|#1| |#1| |#1|)) (-15 -4187 ((-108) |#1|)) (-15 -1577 (|#1| |#1| |#1| (-522))) (-15 -3509 (|#1| |#1|)) (-15 -3537 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -3537 (|#1| |#1|)) (-15 -1549 ((-108) |#1| |#1|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1414 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -1811 (|#1| (-708) |#2|)) (-15 -1391 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2404 (|#1| |#1|))) (-608 |#2|) (-1120)) (T -607))
-NIL
-(-10 -8 (-15 -1580 (|#1| |#2|)) (-15 -3681 (|#1| |#1| (-522))) (-15 -3681 (|#1| |#1| (-1133 (-522)))) (-15 -3859 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -4095 (|#1| |#2| |#1| (-522))) (-15 -4095 (|#1| |#1| |#1| (-522))) (-15 -1369 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -2790 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3859 (|#1| |#2| |#1|)) (-15 -3362 (|#1| |#1|)) (-15 -1369 (|#1| |#1| |#1|)) (-15 -2160 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -4187 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3238 ((-522) (-1 (-108) |#2|) |#1|)) (-15 -3238 ((-522) |#2| |#1|)) (-15 -3238 ((-522) |#2| |#1| (-522))) (-15 -2160 (|#1| |#1| |#1|)) (-15 -4187 ((-108) |#1|)) (-15 -1577 (|#1| |#1| |#1| (-522))) (-15 -3509 (|#1| |#1|)) (-15 -3537 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -3537 (|#1| |#1|)) (-15 -1549 ((-108) |#1| |#1|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3864 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1414 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -1811 (|#1| (-708) |#2|)) (-15 -1391 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2404 (|#1| |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3435 ((|#1| $) 48)) (-2093 ((|#1| $) 65)) (-3835 (($ $) 67)) (-2679 (((-1171) $ (-522) (-522)) 97 (|has| $ (-6 -4239)))) (-3487 (($ $ (-522)) 52 (|has| $ (-6 -4239)))) (-4187 (((-108) $) 142 (|has| |#1| (-784))) (((-108) (-1 (-108) |#1| |#1|) $) 136)) (-3537 (($ $) 146 (-12 (|has| |#1| (-784)) (|has| $ (-6 -4239)))) (($ (-1 (-108) |#1| |#1|) $) 145 (|has| $ (-6 -4239)))) (-3216 (($ $) 141 (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $) 135)) (-4141 (((-108) $ (-708)) 8)) (-3628 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-1243 (($ $ $) 56 (|has| $ (-6 -4239)))) (-2049 ((|#1| $ |#1|) 54 (|has| $ (-6 -4239)))) (-1346 ((|#1| $ |#1|) 58 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4239))) (($ $ "rest" $) 55 (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 117 (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) 86 (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-2790 (($ (-1 (-108) |#1|) $) 129)) (-1628 (($ (-1 (-108) |#1|) $) 102 (|has| $ (-6 -4238)))) (-2081 ((|#1| $) 66)) (-3175 (($) 7 T CONST)) (-3509 (($ $) 144 (|has| $ (-6 -4239)))) (-1862 (($ $) 134)) (-2306 (($ $) 73) (($ $ (-708)) 71)) (-3362 (($ $) 131 (|has| |#1| (-1014)))) (-2333 (($ $) 99 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3859 (($ |#1| $) 130 (|has| |#1| (-1014))) (($ (-1 (-108) |#1|) $) 125)) (-1423 (($ (-1 (-108) |#1|) $) 103 (|has| $ (-6 -4238))) (($ |#1| $) 100 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3854 ((|#1| $ (-522) |#1|) 85 (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) 87)) (-3069 (((-108) $) 83)) (-3238 (((-522) |#1| $ (-522)) 139 (|has| |#1| (-1014))) (((-522) |#1| $) 138 (|has| |#1| (-1014))) (((-522) (-1 (-108) |#1|) $) 137)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) 50)) (-2030 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-1811 (($ (-708) |#1|) 108)) (-3352 (((-108) $ (-708)) 9)) (-1359 (((-522) $) 95 (|has| (-522) (-784)))) (-2814 (($ $ $) 147 (|has| |#1| (-784)))) (-1369 (($ $ $) 132 (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) 128)) (-2160 (($ $ $) 140 (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) 133)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 94 (|has| (-522) (-784)))) (-2446 (($ $ $) 148 (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-1580 (($ |#1|) 122)) (-2720 (((-108) $ (-708)) 10)) (-1279 (((-588 |#1|) $) 45)) (-1754 (((-108) $) 49)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1442 ((|#1| $) 70) (($ $ (-708)) 68)) (-4095 (($ $ $ (-522)) 127) (($ |#1| $ (-522)) 126)) (-1661 (($ $ $ (-522)) 116) (($ |#1| $ (-522)) 115)) (-3604 (((-588 (-522)) $) 92)) (-1405 (((-108) (-522) $) 91)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2294 ((|#1| $) 76) (($ $ (-708)) 74)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 106)) (-2602 (($ $ |#1|) 96 (|has| $ (-6 -4239)))) (-2855 (((-108) $) 84)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#1| $) 93 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) 90)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1133 (-522))) 112) ((|#1| $ (-522)) 89) ((|#1| $ (-522) |#1|) 88)) (-2011 (((-522) $ $) 44)) (-3681 (($ $ (-1133 (-522))) 124) (($ $ (-522)) 123)) (-3696 (($ $ (-1133 (-522))) 114) (($ $ (-522)) 113)) (-3042 (((-108) $) 46)) (-3107 (($ $) 62)) (-2646 (($ $) 59 (|has| $ (-6 -4239)))) (-2393 (((-708) $) 63)) (-2122 (($ $) 64)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1577 (($ $ $ (-522)) 143 (|has| $ (-6 -4239)))) (-2404 (($ $) 13)) (-1431 (((-498) $) 98 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 107)) (-2630 (($ $ $) 61) (($ $ |#1|) 60)) (-4165 (($ $ $) 78) (($ |#1| $) 77) (($ (-588 $)) 110) (($ $ |#1|) 109)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) 51)) (-2425 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) 150 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 151 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-1566 (((-108) $ $) 149 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 152 (|has| |#1| (-784)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 15)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-2947 ((|#1| $) 21)) (-1308 (($ $ $) NIL (|has| |#1| (-728)))) (-2524 (($ $ $) NIL (|has| |#1| (-728)))) (-2311 (((-1068) $) 46)) (-4174 (((-1032) $) NIL)) (-2959 ((|#3| $) 22)) (-2217 (((-792) $) 42)) (-3697 (($) 10 T CONST)) (-1623 (((-108) $ $) NIL (|has| |#1| (-728)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-728)))) (-1562 (((-108) $ $) 20)) (-1609 (((-108) $ $) NIL (|has| |#1| (-728)))) (-1587 (((-108) $ $) 24 (|has| |#1| (-728)))) (-1682 (($ $ |#3|) 34) (($ |#1| |#3|) 35)) (-1672 (($ $) 17) (($ $ $) NIL)) (-1661 (($ $ $) 27)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 30) (($ |#2| $) 32) (($ $ |#2|) NIL)))
+(((-604 |#1| |#2| |#3|) (-13 (-655 |#2|) (-10 -8 (IF (|has| |#1| (-728)) (-6 (-728)) |%noBranch|) (-15 -1682 ($ $ |#3|)) (-15 -1682 ($ |#1| |#3|)) (-15 -2947 (|#1| $)) (-15 -2959 (|#3| $)))) (-655 |#2|) (-157) (|SubsetCategory| (-664) |#2|)) (T -604))
+((-1682 (*1 *1 *1 *2) (-12 (-4 *4 (-157)) (-5 *1 (-604 *3 *4 *2)) (-4 *3 (-655 *4)) (-4 *2 (|SubsetCategory| (-664) *4)))) (-1682 (*1 *1 *2 *3) (-12 (-4 *4 (-157)) (-5 *1 (-604 *2 *4 *3)) (-4 *2 (-655 *4)) (-4 *3 (|SubsetCategory| (-664) *4)))) (-2947 (*1 *2 *1) (-12 (-4 *3 (-157)) (-4 *2 (-655 *3)) (-5 *1 (-604 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-664) *3)))) (-2959 (*1 *2 *1) (-12 (-4 *4 (-157)) (-4 *2 (|SubsetCategory| (-664) *4)) (-5 *1 (-604 *3 *4 *2)) (-4 *3 (-655 *4)))))
+(-13 (-655 |#2|) (-10 -8 (IF (|has| |#1| (-728)) (-6 (-728)) |%noBranch|) (-15 -1682 ($ $ |#3|)) (-15 -1682 ($ |#1| |#3|)) (-15 -2947 (|#1| $)) (-15 -2959 (|#3| $))))
+((-1814 (((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|)) 33)))
+(((-605 |#1|) (-10 -7 (-15 -1814 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|)))) (-838)) (T -605))
+((-1814 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-1081 *4))) (-5 *3 (-1081 *4)) (-4 *4 (-838)) (-5 *1 (-605 *4)))))
+(-10 -7 (-15 -1814 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-4127 (((-588 |#1|) $) 83)) (-3331 (($ $ (-708)) 91)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-1745 (((-1188 |#1| |#2|) (-1188 |#1| |#2|) $) 48)) (-3700 (((-3 (-613 |#1|) "failed") $) NIL)) (-1478 (((-613 |#1|) $) NIL)) (-3241 (($ $) 90)) (-1391 (((-708) $) NIL)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-2623 (($ (-613 |#1|) |#2|) 69)) (-2182 (($ $) 87)) (-3810 (($ (-1 |#2| |#2|) $) NIL)) (-4038 (((-1188 |#1| |#2|) (-1188 |#1| |#2|) $) 47)) (-2893 (((-2 (|:| |k| (-613 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3216 (((-613 |#1|) $) NIL)) (-3224 ((|#2| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2330 (($ $ |#1| $) 30) (($ $ (-588 |#1|) (-588 $)) 32)) (-2487 (((-708) $) 89)) (-2227 (($ $ $) 20) (($ (-613 |#1|) (-613 |#1|)) 78) (($ (-613 |#1|) $) 76) (($ $ (-613 |#1|)) 77)) (-2217 (((-792) $) NIL) (($ |#1|) 75) (((-1179 |#1| |#2|) $) 59) (((-1188 |#1| |#2|) $) 41) (($ (-613 |#1|)) 25)) (-2180 (((-588 |#2|) $) NIL)) (-1643 ((|#2| $ (-613 |#1|)) NIL)) (-3112 ((|#2| (-1188 |#1| |#2|) $) 43)) (-3697 (($) 23 T CONST)) (-1738 (((-588 (-2 (|:| |k| (-613 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3600 (((-3 $ "failed") (-1179 |#1| |#2|)) 61)) (-1612 (($ (-613 |#1|)) 14)) (-1562 (((-108) $ $) 44)) (-1682 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1672 (($ $) 67) (($ $ $) NIL)) (-1661 (($ $ $) 29)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#2| $) 28) (($ $ |#2|) NIL) (($ |#2| (-613 |#1|)) NIL)))
+(((-606 |#1| |#2|) (-13 (-349 |#1| |#2|) (-357 |#2| (-613 |#1|)) (-10 -8 (-15 -3600 ((-3 $ "failed") (-1179 |#1| |#2|))) (-15 -2227 ($ (-613 |#1|) (-613 |#1|))) (-15 -2227 ($ (-613 |#1|) $)) (-15 -2227 ($ $ (-613 |#1|))))) (-784) (-157)) (T -606))
+((-3600 (*1 *1 *2) (|partial| -12 (-5 *2 (-1179 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)) (-5 *1 (-606 *3 *4)))) (-2227 (*1 *1 *2 *2) (-12 (-5 *2 (-613 *3)) (-4 *3 (-784)) (-5 *1 (-606 *3 *4)) (-4 *4 (-157)))) (-2227 (*1 *1 *2 *1) (-12 (-5 *2 (-613 *3)) (-4 *3 (-784)) (-5 *1 (-606 *3 *4)) (-4 *4 (-157)))) (-2227 (*1 *1 *1 *2) (-12 (-5 *2 (-613 *3)) (-4 *3 (-784)) (-5 *1 (-606 *3 *4)) (-4 *4 (-157)))))
+(-13 (-349 |#1| |#2|) (-357 |#2| (-613 |#1|)) (-10 -8 (-15 -3600 ((-3 $ "failed") (-1179 |#1| |#2|))) (-15 -2227 ($ (-613 |#1|) (-613 |#1|))) (-15 -2227 ($ (-613 |#1|) $)) (-15 -2227 ($ $ (-613 |#1|)))))
+((-1866 (((-108) $) NIL) (((-108) (-1 (-108) |#2| |#2|) $) 50)) (-2806 (($ $) NIL) (($ (-1 (-108) |#2| |#2|) $) 11)) (-1213 (($ (-1 (-108) |#2|) $) 28)) (-2465 (($ $) 56)) (-1581 (($ $) 63)) (-1700 (($ |#2| $) NIL) (($ (-1 (-108) |#2|) $) 37)) (-2153 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 51) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 53)) (-3314 (((-522) |#2| $ (-522)) 61) (((-522) |#2| $) NIL) (((-522) (-1 (-108) |#2|) $) 47)) (-1893 (($ (-708) |#2|) 54)) (-3557 (($ $ $) NIL) (($ (-1 (-108) |#2| |#2|) $ $) 30)) (-3164 (($ $ $) NIL) (($ (-1 (-108) |#2| |#2|) $ $) 24)) (-3810 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 55)) (-1614 (($ |#2|) 14)) (-3365 (($ $ $ (-522)) 36) (($ |#2| $ (-522)) 34)) (-2187 (((-3 |#2| "failed") (-1 (-108) |#2|) $) 46)) (-3551 (($ $ (-1133 (-522))) 44) (($ $ (-522)) 38)) (-3629 (($ $ $ (-522)) 60)) (-2463 (($ $) 58)) (-1587 (((-108) $ $) 65)))
+(((-607 |#1| |#2|) (-10 -8 (-15 -1614 (|#1| |#2|)) (-15 -3551 (|#1| |#1| (-522))) (-15 -3551 (|#1| |#1| (-1133 (-522)))) (-15 -1700 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3365 (|#1| |#2| |#1| (-522))) (-15 -3365 (|#1| |#1| |#1| (-522))) (-15 -3557 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -1213 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1700 (|#1| |#2| |#1|)) (-15 -1581 (|#1| |#1|)) (-15 -3557 (|#1| |#1| |#1|)) (-15 -3164 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -1866 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3314 ((-522) (-1 (-108) |#2|) |#1|)) (-15 -3314 ((-522) |#2| |#1|)) (-15 -3314 ((-522) |#2| |#1| (-522))) (-15 -3164 (|#1| |#1| |#1|)) (-15 -1866 ((-108) |#1|)) (-15 -3629 (|#1| |#1| |#1| (-522))) (-15 -2465 (|#1| |#1|)) (-15 -2806 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -2806 (|#1| |#1|)) (-15 -1587 ((-108) |#1| |#1|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2187 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -1893 (|#1| (-708) |#2|)) (-15 -3810 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2463 (|#1| |#1|))) (-608 |#2|) (-1120)) (T -607))
+NIL
+(-10 -8 (-15 -1614 (|#1| |#2|)) (-15 -3551 (|#1| |#1| (-522))) (-15 -3551 (|#1| |#1| (-1133 (-522)))) (-15 -1700 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -3365 (|#1| |#2| |#1| (-522))) (-15 -3365 (|#1| |#1| |#1| (-522))) (-15 -3557 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -1213 (|#1| (-1 (-108) |#2|) |#1|)) (-15 -1700 (|#1| |#2| |#1|)) (-15 -1581 (|#1| |#1|)) (-15 -3557 (|#1| |#1| |#1|)) (-15 -3164 (|#1| (-1 (-108) |#2| |#2|) |#1| |#1|)) (-15 -1866 ((-108) (-1 (-108) |#2| |#2|) |#1|)) (-15 -3314 ((-522) (-1 (-108) |#2|) |#1|)) (-15 -3314 ((-522) |#2| |#1|)) (-15 -3314 ((-522) |#2| |#1| (-522))) (-15 -3164 (|#1| |#1| |#1|)) (-15 -1866 ((-108) |#1|)) (-15 -3629 (|#1| |#1| |#1| (-522))) (-15 -2465 (|#1| |#1|)) (-15 -2806 (|#1| (-1 (-108) |#2| |#2|) |#1|)) (-15 -2806 (|#1| |#1|)) (-15 -1587 ((-108) |#1| |#1|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2153 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2187 ((-3 |#2| "failed") (-1 (-108) |#2|) |#1|)) (-15 -1893 (|#1| (-708) |#2|)) (-15 -3810 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2463 (|#1| |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3526 ((|#1| $) 48)) (-2126 ((|#1| $) 65)) (-3961 (($ $) 67)) (-3883 (((-1171) $ (-522) (-522)) 97 (|has| $ (-6 -4239)))) (-2211 (($ $ (-522)) 52 (|has| $ (-6 -4239)))) (-1866 (((-108) $) 142 (|has| |#1| (-784))) (((-108) (-1 (-108) |#1| |#1|) $) 136)) (-2806 (($ $) 146 (-12 (|has| |#1| (-784)) (|has| $ (-6 -4239)))) (($ (-1 (-108) |#1| |#1|) $) 145 (|has| $ (-6 -4239)))) (-3296 (($ $) 141 (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $) 135)) (-2717 (((-108) $ (-708)) 8)) (-1198 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-2398 (($ $ $) 56 (|has| $ (-6 -4239)))) (-2631 ((|#1| $ |#1|) 54 (|has| $ (-6 -4239)))) (-3393 ((|#1| $ |#1|) 58 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4239))) (($ $ "rest" $) 55 (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 117 (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) 86 (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-1213 (($ (-1 (-108) |#1|) $) 129)) (-1696 (($ (-1 (-108) |#1|) $) 102 (|has| $ (-6 -4238)))) (-2116 ((|#1| $) 66)) (-3367 (($) 7 T CONST)) (-2465 (($ $) 144 (|has| $ (-6 -4239)))) (-1939 (($ $) 134)) (-2352 (($ $) 73) (($ $ (-708)) 71)) (-1581 (($ $) 131 (|has| |#1| (-1014)))) (-2379 (($ $) 99 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1700 (($ |#1| $) 130 (|has| |#1| (-1014))) (($ (-1 (-108) |#1|) $) 125)) (-1424 (($ (-1 (-108) |#1|) $) 103 (|has| $ (-6 -4238))) (($ |#1| $) 100 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2411 ((|#1| $ (-522) |#1|) 85 (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) 87)) (-3614 (((-108) $) 83)) (-3314 (((-522) |#1| $ (-522)) 139 (|has| |#1| (-1014))) (((-522) |#1| $) 138 (|has| |#1| (-1014))) (((-522) (-1 (-108) |#1|) $) 137)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) 50)) (-2402 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-1893 (($ (-708) |#1|) 108)) (-1480 (((-108) $ (-708)) 9)) (-3496 (((-522) $) 95 (|has| (-522) (-784)))) (-1308 (($ $ $) 147 (|has| |#1| (-784)))) (-3557 (($ $ $) 132 (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) 128)) (-3164 (($ $ $) 140 (|has| |#1| (-784))) (($ (-1 (-108) |#1| |#1|) $ $) 133)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 94 (|has| (-522) (-784)))) (-2524 (($ $ $) 148 (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-1614 (($ |#1|) 122)) (-3309 (((-108) $ (-708)) 10)) (-2548 (((-588 |#1|) $) 45)) (-3394 (((-108) $) 49)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1442 ((|#1| $) 70) (($ $ (-708)) 68)) (-3365 (($ $ $ (-522)) 127) (($ |#1| $ (-522)) 126)) (-1731 (($ $ $ (-522)) 116) (($ |#1| $ (-522)) 115)) (-2130 (((-588 (-522)) $) 92)) (-2103 (((-108) (-522) $) 91)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2337 ((|#1| $) 76) (($ $ (-708)) 74)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 106)) (-1972 (($ $ |#1|) 96 (|has| $ (-6 -4239)))) (-4196 (((-108) $) 84)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#1| $) 93 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) 90)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1133 (-522))) 112) ((|#1| $ (-522)) 89) ((|#1| $ (-522) |#1|) 88)) (-3381 (((-522) $ $) 44)) (-3551 (($ $ (-1133 (-522))) 124) (($ $ (-522)) 123)) (-3835 (($ $ (-1133 (-522))) 114) (($ $ (-522)) 113)) (-3395 (((-108) $) 46)) (-2885 (($ $) 62)) (-1668 (($ $) 59 (|has| $ (-6 -4239)))) (-1321 (((-708) $) 63)) (-1502 (($ $) 64)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3629 (($ $ $ (-522)) 143 (|has| $ (-6 -4239)))) (-2463 (($ $) 13)) (-3873 (((-498) $) 98 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 107)) (-2335 (($ $ $) 61) (($ $ |#1|) 60)) (-4170 (($ $ $) 78) (($ |#1| $) 77) (($ (-588 $)) 110) (($ $ |#1|) 109)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) 51)) (-3294 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) 150 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 151 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-1609 (((-108) $ $) 149 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 152 (|has| |#1| (-784)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-608 |#1|) (-1197) (-1120)) (T -608))
-((-1580 (*1 *1 *2) (-12 (-4 *1 (-608 *2)) (-4 *2 (-1120)))))
-(-13 (-1059 |t#1|) (-348 |t#1|) (-258 |t#1|) (-10 -8 (-15 -1580 ($ |t#1|))))
-(((-33) . T) ((-97) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-258 |#1|) . T) ((-348 |#1|) . T) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-784) |has| |#1| (-784)) ((-936 |#1|) . T) ((-1014) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-1059 |#1|) . T) ((-1120) . T) ((-1154 |#1|) . T))
-((-3426 (((-588 (-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|))))) (-588 (-588 |#1|)) (-588 (-1166 |#1|))) 21) (((-588 (-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|))))) (-628 |#1|) (-588 (-1166 |#1|))) 20) (((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|)))) (-588 (-588 |#1|)) (-1166 |#1|)) 16) (((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|)))) (-628 |#1|) (-1166 |#1|)) 13)) (-3166 (((-708) (-628 |#1|) (-1166 |#1|)) 29)) (-2307 (((-3 (-1166 |#1|) "failed") (-628 |#1|) (-1166 |#1|)) 23)) (-1503 (((-108) (-628 |#1|) (-1166 |#1|)) 26)))
-(((-609 |#1|) (-10 -7 (-15 -3426 ((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|)))) (-628 |#1|) (-1166 |#1|))) (-15 -3426 ((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|)))) (-588 (-588 |#1|)) (-1166 |#1|))) (-15 -3426 ((-588 (-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|))))) (-628 |#1|) (-588 (-1166 |#1|)))) (-15 -3426 ((-588 (-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|))))) (-588 (-588 |#1|)) (-588 (-1166 |#1|)))) (-15 -2307 ((-3 (-1166 |#1|) "failed") (-628 |#1|) (-1166 |#1|))) (-15 -1503 ((-108) (-628 |#1|) (-1166 |#1|))) (-15 -3166 ((-708) (-628 |#1|) (-1166 |#1|)))) (-338)) (T -609))
-((-3166 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-338)) (-5 *2 (-708)) (-5 *1 (-609 *5)))) (-1503 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-338)) (-5 *2 (-108)) (-5 *1 (-609 *5)))) (-2307 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1166 *4)) (-5 *3 (-628 *4)) (-4 *4 (-338)) (-5 *1 (-609 *4)))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-588 *5))) (-4 *5 (-338)) (-5 *2 (-588 (-2 (|:| |particular| (-3 (-1166 *5) "failed")) (|:| -3855 (-588 (-1166 *5)))))) (-5 *1 (-609 *5)) (-5 *4 (-588 (-1166 *5))))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *5)) (-4 *5 (-338)) (-5 *2 (-588 (-2 (|:| |particular| (-3 (-1166 *5) "failed")) (|:| -3855 (-588 (-1166 *5)))))) (-5 *1 (-609 *5)) (-5 *4 (-588 (-1166 *5))))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-588 *5))) (-4 *5 (-338)) (-5 *2 (-2 (|:| |particular| (-3 (-1166 *5) "failed")) (|:| -3855 (-588 (-1166 *5))))) (-5 *1 (-609 *5)) (-5 *4 (-1166 *5)))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| |particular| (-3 (-1166 *5) "failed")) (|:| -3855 (-588 (-1166 *5))))) (-5 *1 (-609 *5)) (-5 *4 (-1166 *5)))))
-(-10 -7 (-15 -3426 ((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|)))) (-628 |#1|) (-1166 |#1|))) (-15 -3426 ((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|)))) (-588 (-588 |#1|)) (-1166 |#1|))) (-15 -3426 ((-588 (-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|))))) (-628 |#1|) (-588 (-1166 |#1|)))) (-15 -3426 ((-588 (-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|))))) (-588 (-588 |#1|)) (-588 (-1166 |#1|)))) (-15 -2307 ((-3 (-1166 |#1|) "failed") (-628 |#1|) (-1166 |#1|))) (-15 -1503 ((-108) (-628 |#1|) (-1166 |#1|))) (-15 -3166 ((-708) (-628 |#1|) (-1166 |#1|))))
-((-3426 (((-588 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3855 (-588 |#3|)))) |#4| (-588 |#3|)) 47) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3855 (-588 |#3|))) |#4| |#3|) 45)) (-3166 (((-708) |#4| |#3|) 17)) (-2307 (((-3 |#3| "failed") |#4| |#3|) 20)) (-1503 (((-108) |#4| |#3|) 13)))
-(((-610 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3426 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3855 (-588 |#3|))) |#4| |#3|)) (-15 -3426 ((-588 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3855 (-588 |#3|)))) |#4| (-588 |#3|))) (-15 -2307 ((-3 |#3| "failed") |#4| |#3|)) (-15 -1503 ((-108) |#4| |#3|)) (-15 -3166 ((-708) |#4| |#3|))) (-338) (-13 (-348 |#1|) (-10 -7 (-6 -4239))) (-13 (-348 |#1|) (-10 -7 (-6 -4239))) (-626 |#1| |#2| |#3|)) (T -610))
-((-3166 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-5 *2 (-708)) (-5 *1 (-610 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4)))) (-1503 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-5 *2 (-108)) (-5 *1 (-610 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4)))) (-2307 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-338)) (-4 *5 (-13 (-348 *4) (-10 -7 (-6 -4239)))) (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))) (-5 *1 (-610 *4 *5 *2 *3)) (-4 *3 (-626 *4 *5 *2)))) (-3426 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-4 *7 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-5 *2 (-588 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -3855 (-588 *7))))) (-5 *1 (-610 *5 *6 *7 *3)) (-5 *4 (-588 *7)) (-4 *3 (-626 *5 *6 *7)))) (-3426 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4)))) (-5 *1 (-610 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4)))))
-(-10 -7 (-15 -3426 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3855 (-588 |#3|))) |#4| |#3|)) (-15 -3426 ((-588 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3855 (-588 |#3|)))) |#4| (-588 |#3|))) (-15 -2307 ((-3 |#3| "failed") |#4| |#3|)) (-15 -1503 ((-108) |#4| |#3|)) (-15 -3166 ((-708) |#4| |#3|)))
-((-2103 (((-2 (|:| |particular| (-3 (-1166 (-382 |#4|)) "failed")) (|:| -3855 (-588 (-1166 (-382 |#4|))))) (-588 |#4|) (-588 |#3|)) 45)))
-(((-611 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2103 ((-2 (|:| |particular| (-3 (-1166 (-382 |#4|)) "failed")) (|:| -3855 (-588 (-1166 (-382 |#4|))))) (-588 |#4|) (-588 |#3|)))) (-514) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -611))
-((-2103 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *7)) (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-5 *2 (-2 (|:| |particular| (-3 (-1166 (-382 *8)) "failed")) (|:| -3855 (-588 (-1166 (-382 *8)))))) (-5 *1 (-611 *5 *6 *7 *8)))))
-(-10 -7 (-15 -2103 ((-2 (|:| |particular| (-3 (-1166 (-382 |#4|)) "failed")) (|:| -3855 (-588 (-1166 (-382 |#4|))))) (-588 |#4|) (-588 |#3|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-3210 (((-3 $ "failed")) NIL (|has| |#2| (-514)))) (-1865 ((|#2| $) NIL)) (-2727 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1588 (((-1166 (-628 |#2|))) NIL) (((-1166 (-628 |#2|)) (-1166 $)) NIL)) (-2527 (((-108) $) NIL)) (-1681 (((-1166 $)) 37)) (-4141 (((-108) $ (-708)) NIL)) (-3022 (($ |#2|) NIL)) (-3175 (($) NIL T CONST)) (-2264 (($ $) NIL (|has| |#2| (-283)))) (-1860 (((-217 |#1| |#2|) $ (-522)) NIL)) (-1868 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) NIL (|has| |#2| (-514)))) (-3130 (((-3 $ "failed")) NIL (|has| |#2| (-514)))) (-1771 (((-628 |#2|)) NIL) (((-628 |#2|) (-1166 $)) NIL)) (-3594 ((|#2| $) NIL)) (-2828 (((-628 |#2|) $) NIL) (((-628 |#2|) $ (-1166 $)) NIL)) (-3637 (((-3 $ "failed") $) NIL (|has| |#2| (-514)))) (-3549 (((-1081 (-881 |#2|))) NIL (|has| |#2| (-338)))) (-1679 (($ $ (-850)) NIL)) (-3076 ((|#2| $) NIL)) (-2992 (((-1081 |#2|) $) NIL (|has| |#2| (-514)))) (-2975 ((|#2|) NIL) ((|#2| (-1166 $)) NIL)) (-4014 (((-1081 |#2|) $) NIL)) (-2878 (((-108)) NIL)) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 |#2| "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) ((|#2| $) NIL)) (-3766 (($ (-1166 |#2|)) NIL) (($ (-1166 |#2|) (-1166 $)) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3166 (((-708) $) NIL (|has| |#2| (-514))) (((-850)) 38)) (-3631 ((|#2| $ (-522) (-522)) NIL)) (-2666 (((-108)) NIL)) (-1882 (($ $ (-850)) NIL)) (-3837 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2782 (((-108) $) NIL)) (-3799 (((-708) $) NIL (|has| |#2| (-514)))) (-2064 (((-588 (-217 |#1| |#2|)) $) NIL (|has| |#2| (-514)))) (-1411 (((-708) $) NIL)) (-1427 (((-108)) NIL)) (-1422 (((-708) $) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-3081 ((|#2| $) NIL (|has| |#2| (-6 (-4240 "*"))))) (-2575 (((-522) $) NIL)) (-1885 (((-522) $) NIL)) (-3308 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-3886 (((-522) $) NIL)) (-4132 (((-522) $) NIL)) (-1366 (($ (-588 (-588 |#2|))) NIL)) (-3838 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3237 (((-588 (-588 |#2|)) $) NIL)) (-2552 (((-108)) NIL)) (-2678 (((-108)) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-3505 (((-3 (-2 (|:| |particular| $) (|:| -3855 (-588 $))) "failed")) NIL (|has| |#2| (-514)))) (-2007 (((-3 $ "failed")) NIL (|has| |#2| (-514)))) (-1943 (((-628 |#2|)) NIL) (((-628 |#2|) (-1166 $)) NIL)) (-1546 ((|#2| $) NIL)) (-4142 (((-628 |#2|) $) NIL) (((-628 |#2|) $ (-1166 $)) NIL)) (-2231 (((-3 $ "failed") $) NIL (|has| |#2| (-514)))) (-2497 (((-1081 (-881 |#2|))) NIL (|has| |#2| (-338)))) (-3277 (($ $ (-850)) NIL)) (-1505 ((|#2| $) NIL)) (-3630 (((-1081 |#2|) $) NIL (|has| |#2| (-514)))) (-2475 ((|#2|) NIL) ((|#2| (-1166 $)) NIL)) (-2302 (((-1081 |#2|) $) NIL)) (-3003 (((-108)) NIL)) (-2385 (((-1068) $) NIL)) (-3710 (((-108)) NIL)) (-3026 (((-108)) NIL)) (-3055 (((-108)) NIL)) (-2147 (((-3 $ "failed") $) NIL (|has| |#2| (-338)))) (-4151 (((-1032) $) NIL)) (-2889 (((-108)) NIL)) (-2232 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514)))) (-3053 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#2| $ (-522) (-522) |#2|) NIL) ((|#2| $ (-522) (-522)) 22) ((|#2| $ (-522)) NIL)) (-2157 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $) NIL (|has| |#2| (-210)))) (-1708 ((|#2| $) NIL)) (-4077 (($ (-588 |#2|)) NIL)) (-1767 (((-108) $) NIL)) (-3263 (((-217 |#1| |#2|) $) NIL)) (-3206 ((|#2| $) NIL (|has| |#2| (-6 (-4240 "*"))))) (-4168 (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2404 (($ $) NIL)) (-3677 (((-628 |#2|) (-1166 $)) NIL) (((-1166 |#2|) $) NIL) (((-628 |#2|) (-1166 $) (-1166 $)) NIL) (((-1166 |#2|) $ (-1166 $)) 25)) (-1431 (($ (-1166 |#2|)) NIL) (((-1166 |#2|) $) NIL)) (-2656 (((-588 (-881 |#2|))) NIL) (((-588 (-881 |#2|)) (-1166 $)) NIL)) (-1288 (($ $ $) NIL)) (-4034 (((-108)) NIL)) (-3488 (((-217 |#1| |#2|) $ (-522)) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#2| (-962 (-382 (-522))))) (($ |#2|) NIL) (((-628 |#2|) $) NIL)) (-2323 (((-708)) NIL)) (-3855 (((-1166 $)) 36)) (-2901 (((-588 (-1166 |#2|))) NIL (|has| |#2| (-514)))) (-3610 (($ $ $ $) NIL)) (-2928 (((-108)) NIL)) (-1616 (($ (-628 |#2|) $) NIL)) (-3648 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1697 (((-108) $) NIL)) (-3024 (($ $ $) NIL)) (-3065 (((-108)) NIL)) (-3856 (((-108)) NIL)) (-3877 (((-108)) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $) NIL (|has| |#2| (-210)))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#2| (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-217 |#1| |#2|) $ (-217 |#1| |#2|)) NIL) (((-217 |#1| |#2|) (-217 |#1| |#2|) $) NIL)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1614 (*1 *1 *2) (-12 (-4 *1 (-608 *2)) (-4 *2 (-1120)))))
+(-13 (-1059 |t#1|) (-348 |t#1|) (-258 |t#1|) (-10 -8 (-15 -1614 ($ |t#1|))))
+(((-33) . T) ((-97) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-258 |#1|) . T) ((-348 |#1|) . T) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-784) |has| |#1| (-784)) ((-936 |#1|) . T) ((-1014) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-1059 |#1|) . T) ((-1120) . T) ((-1154 |#1|) . T))
+((-2925 (((-588 (-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|))))) (-588 (-588 |#1|)) (-588 (-1166 |#1|))) 21) (((-588 (-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|))))) (-628 |#1|) (-588 (-1166 |#1|))) 20) (((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|)))) (-588 (-588 |#1|)) (-1166 |#1|)) 16) (((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|)))) (-628 |#1|) (-1166 |#1|)) 13)) (-1692 (((-708) (-628 |#1|) (-1166 |#1|)) 29)) (-2786 (((-3 (-1166 |#1|) "failed") (-628 |#1|) (-1166 |#1|)) 23)) (-1802 (((-108) (-628 |#1|) (-1166 |#1|)) 26)))
+(((-609 |#1|) (-10 -7 (-15 -2925 ((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|)))) (-628 |#1|) (-1166 |#1|))) (-15 -2925 ((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|)))) (-588 (-588 |#1|)) (-1166 |#1|))) (-15 -2925 ((-588 (-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|))))) (-628 |#1|) (-588 (-1166 |#1|)))) (-15 -2925 ((-588 (-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|))))) (-588 (-588 |#1|)) (-588 (-1166 |#1|)))) (-15 -2786 ((-3 (-1166 |#1|) "failed") (-628 |#1|) (-1166 |#1|))) (-15 -1802 ((-108) (-628 |#1|) (-1166 |#1|))) (-15 -1692 ((-708) (-628 |#1|) (-1166 |#1|)))) (-338)) (T -609))
+((-1692 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-338)) (-5 *2 (-708)) (-5 *1 (-609 *5)))) (-1802 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-338)) (-5 *2 (-108)) (-5 *1 (-609 *5)))) (-2786 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1166 *4)) (-5 *3 (-628 *4)) (-4 *4 (-338)) (-5 *1 (-609 *4)))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-588 *5))) (-4 *5 (-338)) (-5 *2 (-588 (-2 (|:| |particular| (-3 (-1166 *5) "failed")) (|:| -2905 (-588 (-1166 *5)))))) (-5 *1 (-609 *5)) (-5 *4 (-588 (-1166 *5))))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *5)) (-4 *5 (-338)) (-5 *2 (-588 (-2 (|:| |particular| (-3 (-1166 *5) "failed")) (|:| -2905 (-588 (-1166 *5)))))) (-5 *1 (-609 *5)) (-5 *4 (-588 (-1166 *5))))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-588 *5))) (-4 *5 (-338)) (-5 *2 (-2 (|:| |particular| (-3 (-1166 *5) "failed")) (|:| -2905 (-588 (-1166 *5))))) (-5 *1 (-609 *5)) (-5 *4 (-1166 *5)))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| |particular| (-3 (-1166 *5) "failed")) (|:| -2905 (-588 (-1166 *5))))) (-5 *1 (-609 *5)) (-5 *4 (-1166 *5)))))
+(-10 -7 (-15 -2925 ((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|)))) (-628 |#1|) (-1166 |#1|))) (-15 -2925 ((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|)))) (-588 (-588 |#1|)) (-1166 |#1|))) (-15 -2925 ((-588 (-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|))))) (-628 |#1|) (-588 (-1166 |#1|)))) (-15 -2925 ((-588 (-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|))))) (-588 (-588 |#1|)) (-588 (-1166 |#1|)))) (-15 -2786 ((-3 (-1166 |#1|) "failed") (-628 |#1|) (-1166 |#1|))) (-15 -1802 ((-108) (-628 |#1|) (-1166 |#1|))) (-15 -1692 ((-708) (-628 |#1|) (-1166 |#1|))))
+((-2925 (((-588 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2905 (-588 |#3|)))) |#4| (-588 |#3|)) 47) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2905 (-588 |#3|))) |#4| |#3|) 45)) (-1692 (((-708) |#4| |#3|) 17)) (-2786 (((-3 |#3| "failed") |#4| |#3|) 20)) (-1802 (((-108) |#4| |#3|) 13)))
+(((-610 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2925 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2905 (-588 |#3|))) |#4| |#3|)) (-15 -2925 ((-588 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2905 (-588 |#3|)))) |#4| (-588 |#3|))) (-15 -2786 ((-3 |#3| "failed") |#4| |#3|)) (-15 -1802 ((-108) |#4| |#3|)) (-15 -1692 ((-708) |#4| |#3|))) (-338) (-13 (-348 |#1|) (-10 -7 (-6 -4239))) (-13 (-348 |#1|) (-10 -7 (-6 -4239))) (-626 |#1| |#2| |#3|)) (T -610))
+((-1692 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-5 *2 (-708)) (-5 *1 (-610 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4)))) (-1802 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-5 *2 (-108)) (-5 *1 (-610 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4)))) (-2786 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-338)) (-4 *5 (-13 (-348 *4) (-10 -7 (-6 -4239)))) (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))) (-5 *1 (-610 *4 *5 *2 *3)) (-4 *3 (-626 *4 *5 *2)))) (-2925 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-4 *7 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-5 *2 (-588 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -2905 (-588 *7))))) (-5 *1 (-610 *5 *6 *7 *3)) (-5 *4 (-588 *7)) (-4 *3 (-626 *5 *6 *7)))) (-2925 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4)))) (-5 *1 (-610 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4)))))
+(-10 -7 (-15 -2925 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2905 (-588 |#3|))) |#4| |#3|)) (-15 -2925 ((-588 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2905 (-588 |#3|)))) |#4| (-588 |#3|))) (-15 -2786 ((-3 |#3| "failed") |#4| |#3|)) (-15 -1802 ((-108) |#4| |#3|)) (-15 -1692 ((-708) |#4| |#3|)))
+((-1297 (((-2 (|:| |particular| (-3 (-1166 (-382 |#4|)) "failed")) (|:| -2905 (-588 (-1166 (-382 |#4|))))) (-588 |#4|) (-588 |#3|)) 45)))
+(((-611 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1297 ((-2 (|:| |particular| (-3 (-1166 (-382 |#4|)) "failed")) (|:| -2905 (-588 (-1166 (-382 |#4|))))) (-588 |#4|) (-588 |#3|)))) (-514) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -611))
+((-1297 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *7)) (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-5 *2 (-2 (|:| |particular| (-3 (-1166 (-382 *8)) "failed")) (|:| -2905 (-588 (-1166 (-382 *8)))))) (-5 *1 (-611 *5 *6 *7 *8)))))
+(-10 -7 (-15 -1297 ((-2 (|:| |particular| (-3 (-1166 (-382 |#4|)) "failed")) (|:| -2905 (-588 (-1166 (-382 |#4|))))) (-588 |#4|) (-588 |#3|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2541 (((-3 $ "failed")) NIL (|has| |#2| (-514)))) (-1945 ((|#2| $) NIL)) (-3455 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3690 (((-1166 (-628 |#2|))) NIL) (((-1166 (-628 |#2|)) (-1166 $)) NIL)) (-2208 (((-108) $) NIL)) (-2726 (((-1166 $)) 37)) (-2717 (((-108) $ (-708)) NIL)) (-1348 (($ |#2|) NIL)) (-3367 (($) NIL T CONST)) (-2091 (($ $) NIL (|has| |#2| (-283)))) (-2635 (((-217 |#1| |#2|) $ (-522)) NIL)) (-2722 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) NIL (|has| |#2| (-514)))) (-3050 (((-3 $ "failed")) NIL (|has| |#2| (-514)))) (-3531 (((-628 |#2|)) NIL) (((-628 |#2|) (-1166 $)) NIL)) (-2046 ((|#2| $) NIL)) (-2853 (((-628 |#2|) $) NIL) (((-628 |#2|) $ (-1166 $)) NIL)) (-1279 (((-3 $ "failed") $) NIL (|has| |#2| (-514)))) (-1662 (((-1081 (-881 |#2|))) NIL (|has| |#2| (-338)))) (-2698 (($ $ (-850)) NIL)) (-3676 ((|#2| $) NIL)) (-4080 (((-1081 |#2|) $) NIL (|has| |#2| (-514)))) (-4035 ((|#2|) NIL) ((|#2| (-1166 $)) NIL)) (-3767 (((-1081 |#2|) $) NIL)) (-1340 (((-108)) NIL)) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 |#2| "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) ((|#2| $) NIL)) (-3225 (($ (-1166 |#2|)) NIL) (($ (-1166 |#2|) (-1166 $)) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-1692 (((-708) $) NIL (|has| |#2| (-514))) (((-850)) 38)) (-2186 ((|#2| $ (-522) (-522)) NIL)) (-2134 (((-108)) NIL)) (-2870 (($ $ (-850)) NIL)) (-2395 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2859 (((-108) $) NIL)) (-2336 (((-708) $) NIL (|has| |#2| (-514)))) (-2819 (((-588 (-217 |#1| |#2|)) $) NIL (|has| |#2| (-514)))) (-2949 (((-708) $) NIL)) (-2287 (((-108)) NIL)) (-2960 (((-708) $) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3721 ((|#2| $) NIL (|has| |#2| (-6 (-4240 "*"))))) (-2604 (((-522) $) NIL)) (-4042 (((-522) $) NIL)) (-4084 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1925 (((-522) $) NIL)) (-2595 (((-522) $) NIL)) (-1347 (($ (-588 (-588 |#2|))) NIL)) (-2397 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2862 (((-588 (-588 |#2|)) $) NIL)) (-3702 (((-108)) NIL)) (-3868 (((-108)) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2439 (((-3 (-2 (|:| |particular| $) (|:| -2905 (-588 $))) "failed")) NIL (|has| |#2| (-514)))) (-3351 (((-3 $ "failed")) NIL (|has| |#2| (-514)))) (-1521 (((-628 |#2|)) NIL) (((-628 |#2|) (-1166 $)) NIL)) (-3411 ((|#2| $) NIL)) (-2734 (((-628 |#2|) $) NIL) (((-628 |#2|) $ (-1166 $)) NIL)) (-3070 (((-3 $ "failed") $) NIL (|has| |#2| (-514)))) (-3943 (((-1081 (-881 |#2|))) NIL (|has| |#2| (-338)))) (-1946 (($ $ (-850)) NIL)) (-1819 ((|#2| $) NIL)) (-1216 (((-1081 |#2|) $) NIL (|has| |#2| (-514)))) (-3020 ((|#2|) NIL) ((|#2| (-1166 $)) NIL)) (-2724 (((-1081 |#2|) $) NIL)) (-4197 (((-108)) NIL)) (-2311 (((-1068) $) NIL)) (-3823 (((-108)) NIL)) (-1388 (((-108)) NIL)) (-3509 (((-108)) NIL)) (-3073 (((-3 $ "failed") $) NIL (|has| |#2| (-338)))) (-4174 (((-1032) $) NIL)) (-1427 (((-108)) NIL)) (-2276 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514)))) (-3487 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#2| $ (-522) (-522) |#2|) NIL) ((|#2| $ (-522) (-522)) 22) ((|#2| $ (-522)) NIL)) (-2731 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $) NIL (|has| |#2| (-210)))) (-4147 ((|#2| $) NIL)) (-3215 (($ (-588 |#2|)) NIL)) (-3498 (((-108) $) NIL)) (-1828 (((-217 |#1| |#2|) $) NIL)) (-2500 ((|#2| $) NIL (|has| |#2| (-6 (-4240 "*"))))) (-4187 (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2463 (($ $) NIL)) (-3510 (((-628 |#2|) (-1166 $)) NIL) (((-1166 |#2|) $) NIL) (((-628 |#2|) (-1166 $) (-1166 $)) NIL) (((-1166 |#2|) $ (-1166 $)) 25)) (-3873 (($ (-1166 |#2|)) NIL) (((-1166 |#2|) $) NIL)) (-1777 (((-588 (-881 |#2|))) NIL) (((-588 (-881 |#2|)) (-1166 $)) NIL)) (-1596 (($ $ $) NIL)) (-3990 (((-108)) NIL)) (-2223 (((-217 |#1| |#2|) $ (-522)) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#2| (-962 (-382 (-522))))) (($ |#2|) NIL) (((-628 |#2|) $) NIL)) (-2742 (((-708)) NIL)) (-2905 (((-1166 $)) 36)) (-1548 (((-588 (-1166 |#2|))) NIL (|has| |#2| (-514)))) (-2185 (($ $ $ $) NIL)) (-3597 (((-108)) NIL)) (-1664 (($ (-628 |#2|) $) NIL)) (-1381 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-4047 (((-108) $) NIL)) (-1369 (($ $ $) NIL)) (-3578 (((-108)) NIL)) (-2912 (((-108)) NIL)) (-1855 (((-108)) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $) NIL (|has| |#2| (-210)))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#2| (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-217 |#1| |#2|) $ (-217 |#1| |#2|)) NIL) (((-217 |#1| |#2|) (-217 |#1| |#2|) $) NIL)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-612 |#1| |#2|) (-13 (-1035 |#1| |#2| (-217 |#1| |#2|) (-217 |#1| |#2|)) (-562 (-628 |#2|)) (-392 |#2|)) (-850) (-157)) (T -612))
NIL
(-13 (-1035 |#1| |#2| (-217 |#1| |#2|) (-217 |#1| |#2|)) (-562 (-628 |#2|)) (-392 |#2|))
-((-1416 (((-108) $ $) NIL)) (-4106 (((-588 |#1|) $) NIL)) (-1924 (($ $) 51)) (-1289 (((-108) $) NIL)) (-1297 (((-3 |#1| "failed") $) NIL)) (-1484 ((|#1| $) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2852 (((-3 $ "failed") (-756 |#1|)) 23)) (-1392 (((-108) (-756 |#1|)) 15)) (-2207 (($ (-756 |#1|)) 24)) (-3523 (((-108) $ $) 29)) (-2517 (((-850) $) 36)) (-1913 (($ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1916 (((-588 $) (-756 |#1|)) 17)) (-2190 (((-792) $) 42) (($ |#1|) 33) (((-756 |#1|) $) 38) (((-617 |#1|) $) 43)) (-3350 (((-57 (-588 $)) (-588 |#1|) (-850)) 56)) (-1266 (((-588 $) (-588 |#1|) (-850)) 58)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 52)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 37)))
-(((-613 |#1|) (-13 (-784) (-962 |#1|) (-10 -8 (-15 -1289 ((-108) $)) (-15 -1913 ($ $)) (-15 -1924 ($ $)) (-15 -2517 ((-850) $)) (-15 -3523 ((-108) $ $)) (-15 -2190 ((-756 |#1|) $)) (-15 -2190 ((-617 |#1|) $)) (-15 -1916 ((-588 $) (-756 |#1|))) (-15 -1392 ((-108) (-756 |#1|))) (-15 -2207 ($ (-756 |#1|))) (-15 -2852 ((-3 $ "failed") (-756 |#1|))) (-15 -4106 ((-588 |#1|) $)) (-15 -3350 ((-57 (-588 $)) (-588 |#1|) (-850))) (-15 -1266 ((-588 $) (-588 |#1|) (-850))))) (-784)) (T -613))
-((-1289 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-613 *3)) (-4 *3 (-784)))) (-1913 (*1 *1 *1) (-12 (-5 *1 (-613 *2)) (-4 *2 (-784)))) (-1924 (*1 *1 *1) (-12 (-5 *1 (-613 *2)) (-4 *2 (-784)))) (-2517 (*1 *2 *1) (-12 (-5 *2 (-850)) (-5 *1 (-613 *3)) (-4 *3 (-784)))) (-3523 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-613 *3)) (-4 *3 (-784)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-756 *3)) (-5 *1 (-613 *3)) (-4 *3 (-784)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-617 *3)) (-5 *1 (-613 *3)) (-4 *3 (-784)))) (-1916 (*1 *2 *3) (-12 (-5 *3 (-756 *4)) (-4 *4 (-784)) (-5 *2 (-588 (-613 *4))) (-5 *1 (-613 *4)))) (-1392 (*1 *2 *3) (-12 (-5 *3 (-756 *4)) (-4 *4 (-784)) (-5 *2 (-108)) (-5 *1 (-613 *4)))) (-2207 (*1 *1 *2) (-12 (-5 *2 (-756 *3)) (-4 *3 (-784)) (-5 *1 (-613 *3)))) (-2852 (*1 *1 *2) (|partial| -12 (-5 *2 (-756 *3)) (-4 *3 (-784)) (-5 *1 (-613 *3)))) (-4106 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-613 *3)) (-4 *3 (-784)))) (-3350 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *5)) (-5 *4 (-850)) (-4 *5 (-784)) (-5 *2 (-57 (-588 (-613 *5)))) (-5 *1 (-613 *5)))) (-1266 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *5)) (-5 *4 (-850)) (-4 *5 (-784)) (-5 *2 (-588 (-613 *5))) (-5 *1 (-613 *5)))))
-(-13 (-784) (-962 |#1|) (-10 -8 (-15 -1289 ((-108) $)) (-15 -1913 ($ $)) (-15 -1924 ($ $)) (-15 -2517 ((-850) $)) (-15 -3523 ((-108) $ $)) (-15 -2190 ((-756 |#1|) $)) (-15 -2190 ((-617 |#1|) $)) (-15 -1916 ((-588 $) (-756 |#1|))) (-15 -1392 ((-108) (-756 |#1|))) (-15 -2207 ($ (-756 |#1|))) (-15 -2852 ((-3 $ "failed") (-756 |#1|))) (-15 -4106 ((-588 |#1|) $)) (-15 -3350 ((-57 (-588 $)) (-588 |#1|) (-850))) (-15 -1266 ((-588 $) (-588 |#1|) (-850)))))
-((-3435 ((|#2| $) 76)) (-3835 (($ $) 96)) (-4141 (((-108) $ (-708)) 26)) (-2306 (($ $) 85) (($ $ (-708)) 88)) (-3069 (((-108) $) 97)) (-4138 (((-588 $) $) 72)) (-2030 (((-108) $ $) 71)) (-3352 (((-108) $ (-708)) 24)) (-1359 (((-522) $) 46)) (-2014 (((-522) $) 45)) (-2720 (((-108) $ (-708)) 22)) (-1754 (((-108) $) 74)) (-1442 ((|#2| $) 89) (($ $ (-708)) 92)) (-1661 (($ $ $ (-522)) 62) (($ |#2| $ (-522)) 61)) (-3604 (((-588 (-522)) $) 44)) (-1405 (((-108) (-522) $) 42)) (-2294 ((|#2| $) NIL) (($ $ (-708)) 84)) (-3719 (($ $ (-522)) 100)) (-2855 (((-108) $) 99)) (-3053 (((-108) (-1 (-108) |#2|) $) 32)) (-1525 (((-588 |#2|) $) 33)) (-2545 ((|#2| $ "value") NIL) ((|#2| $ "first") 83) (($ $ "rest") 87) ((|#2| $ "last") 95) (($ $ (-1133 (-522))) 58) ((|#2| $ (-522)) 40) ((|#2| $ (-522) |#2|) 41)) (-2011 (((-522) $ $) 70)) (-3696 (($ $ (-1133 (-522))) 57) (($ $ (-522)) 51)) (-3042 (((-108) $) 66)) (-3107 (($ $) 81)) (-2393 (((-708) $) 80)) (-2122 (($ $) 79)) (-2201 (($ (-588 |#2|)) 37)) (-1522 (($ $) 101)) (-1749 (((-588 $) $) 69)) (-2425 (((-108) $ $) 68)) (-3648 (((-108) (-1 (-108) |#2|) $) 31)) (-1531 (((-108) $ $) 18)) (-3480 (((-708) $) 29)))
-(((-614 |#1| |#2|) (-10 -8 (-15 -1522 (|#1| |#1|)) (-15 -3719 (|#1| |#1| (-522))) (-15 -3069 ((-108) |#1|)) (-15 -2855 ((-108) |#1|)) (-15 -2545 (|#2| |#1| (-522) |#2|)) (-15 -2545 (|#2| |#1| (-522))) (-15 -1525 ((-588 |#2|) |#1|)) (-15 -1405 ((-108) (-522) |#1|)) (-15 -3604 ((-588 (-522)) |#1|)) (-15 -2014 ((-522) |#1|)) (-15 -1359 ((-522) |#1|)) (-15 -2201 (|#1| (-588 |#2|))) (-15 -2545 (|#1| |#1| (-1133 (-522)))) (-15 -3696 (|#1| |#1| (-522))) (-15 -3696 (|#1| |#1| (-1133 (-522)))) (-15 -1661 (|#1| |#2| |#1| (-522))) (-15 -1661 (|#1| |#1| |#1| (-522))) (-15 -3107 (|#1| |#1|)) (-15 -2393 ((-708) |#1|)) (-15 -2122 (|#1| |#1|)) (-15 -3835 (|#1| |#1|)) (-15 -1442 (|#1| |#1| (-708))) (-15 -2545 (|#2| |#1| "last")) (-15 -1442 (|#2| |#1|)) (-15 -2306 (|#1| |#1| (-708))) (-15 -2545 (|#1| |#1| "rest")) (-15 -2306 (|#1| |#1|)) (-15 -2294 (|#1| |#1| (-708))) (-15 -2545 (|#2| |#1| "first")) (-15 -2294 (|#2| |#1|)) (-15 -2030 ((-108) |#1| |#1|)) (-15 -2425 ((-108) |#1| |#1|)) (-15 -2011 ((-522) |#1| |#1|)) (-15 -3042 ((-108) |#1|)) (-15 -2545 (|#2| |#1| "value")) (-15 -3435 (|#2| |#1|)) (-15 -1754 ((-108) |#1|)) (-15 -4138 ((-588 |#1|) |#1|)) (-15 -1749 ((-588 |#1|) |#1|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -3053 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3648 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3480 ((-708) |#1|)) (-15 -4141 ((-108) |#1| (-708))) (-15 -3352 ((-108) |#1| (-708))) (-15 -2720 ((-108) |#1| (-708)))) (-615 |#2|) (-1120)) (T -614))
-NIL
-(-10 -8 (-15 -1522 (|#1| |#1|)) (-15 -3719 (|#1| |#1| (-522))) (-15 -3069 ((-108) |#1|)) (-15 -2855 ((-108) |#1|)) (-15 -2545 (|#2| |#1| (-522) |#2|)) (-15 -2545 (|#2| |#1| (-522))) (-15 -1525 ((-588 |#2|) |#1|)) (-15 -1405 ((-108) (-522) |#1|)) (-15 -3604 ((-588 (-522)) |#1|)) (-15 -2014 ((-522) |#1|)) (-15 -1359 ((-522) |#1|)) (-15 -2201 (|#1| (-588 |#2|))) (-15 -2545 (|#1| |#1| (-1133 (-522)))) (-15 -3696 (|#1| |#1| (-522))) (-15 -3696 (|#1| |#1| (-1133 (-522)))) (-15 -1661 (|#1| |#2| |#1| (-522))) (-15 -1661 (|#1| |#1| |#1| (-522))) (-15 -3107 (|#1| |#1|)) (-15 -2393 ((-708) |#1|)) (-15 -2122 (|#1| |#1|)) (-15 -3835 (|#1| |#1|)) (-15 -1442 (|#1| |#1| (-708))) (-15 -2545 (|#2| |#1| "last")) (-15 -1442 (|#2| |#1|)) (-15 -2306 (|#1| |#1| (-708))) (-15 -2545 (|#1| |#1| "rest")) (-15 -2306 (|#1| |#1|)) (-15 -2294 (|#1| |#1| (-708))) (-15 -2545 (|#2| |#1| "first")) (-15 -2294 (|#2| |#1|)) (-15 -2030 ((-108) |#1| |#1|)) (-15 -2425 ((-108) |#1| |#1|)) (-15 -2011 ((-522) |#1| |#1|)) (-15 -3042 ((-108) |#1|)) (-15 -2545 (|#2| |#1| "value")) (-15 -3435 (|#2| |#1|)) (-15 -1754 ((-108) |#1|)) (-15 -4138 ((-588 |#1|) |#1|)) (-15 -1749 ((-588 |#1|) |#1|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -3053 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3648 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3480 ((-708) |#1|)) (-15 -4141 ((-108) |#1| (-708))) (-15 -3352 ((-108) |#1| (-708))) (-15 -2720 ((-108) |#1| (-708))))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3435 ((|#1| $) 48)) (-2093 ((|#1| $) 65)) (-3835 (($ $) 67)) (-2679 (((-1171) $ (-522) (-522)) 97 (|has| $ (-6 -4239)))) (-3487 (($ $ (-522)) 52 (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) 8)) (-3628 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-1243 (($ $ $) 56 (|has| $ (-6 -4239)))) (-2049 ((|#1| $ |#1|) 54 (|has| $ (-6 -4239)))) (-1346 ((|#1| $ |#1|) 58 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4239))) (($ $ "rest" $) 55 (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 117 (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) 86 (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) 102)) (-2081 ((|#1| $) 66)) (-3175 (($) 7 T CONST)) (-1351 (($ $) 124)) (-2306 (($ $) 73) (($ $ (-708)) 71)) (-2333 (($ $) 99 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#1| $) 100 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 103)) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3854 ((|#1| $ (-522) |#1|) 85 (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) 87)) (-3069 (((-108) $) 83)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1808 (((-708) $) 123)) (-4138 (((-588 $) $) 50)) (-2030 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-1811 (($ (-708) |#1|) 108)) (-3352 (((-108) $ (-708)) 9)) (-1359 (((-522) $) 95 (|has| (-522) (-784)))) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 94 (|has| (-522) (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-2720 (((-108) $ (-708)) 10)) (-1279 (((-588 |#1|) $) 45)) (-1754 (((-108) $) 49)) (-2155 (($ $) 126)) (-2947 (((-108) $) 127)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1442 ((|#1| $) 70) (($ $ (-708)) 68)) (-1661 (($ $ $ (-522)) 116) (($ |#1| $ (-522)) 115)) (-3604 (((-588 (-522)) $) 92)) (-1405 (((-108) (-522) $) 91)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2765 ((|#1| $) 125)) (-2294 ((|#1| $) 76) (($ $ (-708)) 74)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 106)) (-2602 (($ $ |#1|) 96 (|has| $ (-6 -4239)))) (-3719 (($ $ (-522)) 122)) (-2855 (((-108) $) 84)) (-4031 (((-108) $) 128)) (-4010 (((-108) $) 129)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#1| $) 93 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) 90)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1133 (-522))) 112) ((|#1| $ (-522)) 89) ((|#1| $ (-522) |#1|) 88)) (-2011 (((-522) $ $) 44)) (-3696 (($ $ (-1133 (-522))) 114) (($ $ (-522)) 113)) (-3042 (((-108) $) 46)) (-3107 (($ $) 62)) (-2646 (($ $) 59 (|has| $ (-6 -4239)))) (-2393 (((-708) $) 63)) (-2122 (($ $) 64)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-1431 (((-498) $) 98 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 107)) (-2630 (($ $ $) 61 (|has| $ (-6 -4239))) (($ $ |#1|) 60 (|has| $ (-6 -4239)))) (-4165 (($ $ $) 78) (($ |#1| $) 77) (($ (-588 $)) 110) (($ $ |#1|) 109)) (-1522 (($ $) 121)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) 51)) (-2425 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-4127 (((-588 |#1|) $) NIL)) (-2002 (($ $) 51)) (-1608 (((-108) $) NIL)) (-3700 (((-3 |#1| "failed") $) NIL)) (-1478 ((|#1| $) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-4154 (((-3 $ "failed") (-756 |#1|)) 23)) (-3762 (((-108) (-756 |#1|)) 15)) (-2377 (($ (-756 |#1|)) 24)) (-2618 (((-108) $ $) 29)) (-4030 (((-850) $) 36)) (-1993 (($ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2006 (((-588 $) (-756 |#1|)) 17)) (-2217 (((-792) $) 42) (($ |#1|) 33) (((-756 |#1|) $) 38) (((-617 |#1|) $) 43)) (-1455 (((-57 (-588 $)) (-588 |#1|) (-850)) 56)) (-2669 (((-588 $) (-588 |#1|) (-850)) 59)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 52)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 37)))
+(((-613 |#1|) (-13 (-784) (-962 |#1|) (-10 -8 (-15 -1608 ((-108) $)) (-15 -1993 ($ $)) (-15 -2002 ($ $)) (-15 -4030 ((-850) $)) (-15 -2618 ((-108) $ $)) (-15 -2217 ((-756 |#1|) $)) (-15 -2217 ((-617 |#1|) $)) (-15 -2006 ((-588 $) (-756 |#1|))) (-15 -3762 ((-108) (-756 |#1|))) (-15 -2377 ($ (-756 |#1|))) (-15 -4154 ((-3 $ "failed") (-756 |#1|))) (-15 -4127 ((-588 |#1|) $)) (-15 -1455 ((-57 (-588 $)) (-588 |#1|) (-850))) (-15 -2669 ((-588 $) (-588 |#1|) (-850))))) (-784)) (T -613))
+((-1608 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-613 *3)) (-4 *3 (-784)))) (-1993 (*1 *1 *1) (-12 (-5 *1 (-613 *2)) (-4 *2 (-784)))) (-2002 (*1 *1 *1) (-12 (-5 *1 (-613 *2)) (-4 *2 (-784)))) (-4030 (*1 *2 *1) (-12 (-5 *2 (-850)) (-5 *1 (-613 *3)) (-4 *3 (-784)))) (-2618 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-613 *3)) (-4 *3 (-784)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-756 *3)) (-5 *1 (-613 *3)) (-4 *3 (-784)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-617 *3)) (-5 *1 (-613 *3)) (-4 *3 (-784)))) (-2006 (*1 *2 *3) (-12 (-5 *3 (-756 *4)) (-4 *4 (-784)) (-5 *2 (-588 (-613 *4))) (-5 *1 (-613 *4)))) (-3762 (*1 *2 *3) (-12 (-5 *3 (-756 *4)) (-4 *4 (-784)) (-5 *2 (-108)) (-5 *1 (-613 *4)))) (-2377 (*1 *1 *2) (-12 (-5 *2 (-756 *3)) (-4 *3 (-784)) (-5 *1 (-613 *3)))) (-4154 (*1 *1 *2) (|partial| -12 (-5 *2 (-756 *3)) (-4 *3 (-784)) (-5 *1 (-613 *3)))) (-4127 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-613 *3)) (-4 *3 (-784)))) (-1455 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *5)) (-5 *4 (-850)) (-4 *5 (-784)) (-5 *2 (-57 (-588 (-613 *5)))) (-5 *1 (-613 *5)))) (-2669 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *5)) (-5 *4 (-850)) (-4 *5 (-784)) (-5 *2 (-588 (-613 *5))) (-5 *1 (-613 *5)))))
+(-13 (-784) (-962 |#1|) (-10 -8 (-15 -1608 ((-108) $)) (-15 -1993 ($ $)) (-15 -2002 ($ $)) (-15 -4030 ((-850) $)) (-15 -2618 ((-108) $ $)) (-15 -2217 ((-756 |#1|) $)) (-15 -2217 ((-617 |#1|) $)) (-15 -2006 ((-588 $) (-756 |#1|))) (-15 -3762 ((-108) (-756 |#1|))) (-15 -2377 ($ (-756 |#1|))) (-15 -4154 ((-3 $ "failed") (-756 |#1|))) (-15 -4127 ((-588 |#1|) $)) (-15 -1455 ((-57 (-588 $)) (-588 |#1|) (-850))) (-15 -2669 ((-588 $) (-588 |#1|) (-850)))))
+((-3526 ((|#2| $) 76)) (-3961 (($ $) 96)) (-2717 (((-108) $ (-708)) 26)) (-2352 (($ $) 85) (($ $ (-708)) 88)) (-3614 (((-108) $) 97)) (-2674 (((-588 $) $) 72)) (-2402 (((-108) $ $) 71)) (-1480 (((-108) $ (-708)) 24)) (-3496 (((-522) $) 46)) (-2201 (((-522) $) 45)) (-3309 (((-108) $ (-708)) 22)) (-3394 (((-108) $) 74)) (-1442 ((|#2| $) 89) (($ $ (-708)) 92)) (-1731 (($ $ $ (-522)) 62) (($ |#2| $ (-522)) 61)) (-2130 (((-588 (-522)) $) 44)) (-2103 (((-108) (-522) $) 42)) (-2337 ((|#2| $) NIL) (($ $ (-708)) 84)) (-3934 (($ $ (-522)) 100)) (-4196 (((-108) $) 99)) (-3487 (((-108) (-1 (-108) |#2|) $) 32)) (-1973 (((-588 |#2|) $) 33)) (-2683 ((|#2| $ "value") NIL) ((|#2| $ "first") 83) (($ $ "rest") 87) ((|#2| $ "last") 95) (($ $ (-1133 (-522))) 58) ((|#2| $ (-522)) 40) ((|#2| $ (-522) |#2|) 41)) (-3381 (((-522) $ $) 70)) (-3835 (($ $ (-1133 (-522))) 57) (($ $ (-522)) 51)) (-3395 (((-108) $) 66)) (-2885 (($ $) 81)) (-1321 (((-708) $) 80)) (-1502 (($ $) 79)) (-2227 (($ (-588 |#2|)) 37)) (-1944 (($ $) 101)) (-1515 (((-588 $) $) 69)) (-3294 (((-108) $ $) 68)) (-1381 (((-108) (-1 (-108) |#2|) $) 31)) (-1562 (((-108) $ $) 18)) (-3591 (((-708) $) 29)))
+(((-614 |#1| |#2|) (-10 -8 (-15 -1944 (|#1| |#1|)) (-15 -3934 (|#1| |#1| (-522))) (-15 -3614 ((-108) |#1|)) (-15 -4196 ((-108) |#1|)) (-15 -2683 (|#2| |#1| (-522) |#2|)) (-15 -2683 (|#2| |#1| (-522))) (-15 -1973 ((-588 |#2|) |#1|)) (-15 -2103 ((-108) (-522) |#1|)) (-15 -2130 ((-588 (-522)) |#1|)) (-15 -2201 ((-522) |#1|)) (-15 -3496 ((-522) |#1|)) (-15 -2227 (|#1| (-588 |#2|))) (-15 -2683 (|#1| |#1| (-1133 (-522)))) (-15 -3835 (|#1| |#1| (-522))) (-15 -3835 (|#1| |#1| (-1133 (-522)))) (-15 -1731 (|#1| |#2| |#1| (-522))) (-15 -1731 (|#1| |#1| |#1| (-522))) (-15 -2885 (|#1| |#1|)) (-15 -1321 ((-708) |#1|)) (-15 -1502 (|#1| |#1|)) (-15 -3961 (|#1| |#1|)) (-15 -1442 (|#1| |#1| (-708))) (-15 -2683 (|#2| |#1| "last")) (-15 -1442 (|#2| |#1|)) (-15 -2352 (|#1| |#1| (-708))) (-15 -2683 (|#1| |#1| "rest")) (-15 -2352 (|#1| |#1|)) (-15 -2337 (|#1| |#1| (-708))) (-15 -2683 (|#2| |#1| "first")) (-15 -2337 (|#2| |#1|)) (-15 -2402 ((-108) |#1| |#1|)) (-15 -3294 ((-108) |#1| |#1|)) (-15 -3381 ((-522) |#1| |#1|)) (-15 -3395 ((-108) |#1|)) (-15 -2683 (|#2| |#1| "value")) (-15 -3526 (|#2| |#1|)) (-15 -3394 ((-108) |#1|)) (-15 -2674 ((-588 |#1|) |#1|)) (-15 -1515 ((-588 |#1|) |#1|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -3487 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1381 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3591 ((-708) |#1|)) (-15 -2717 ((-108) |#1| (-708))) (-15 -1480 ((-108) |#1| (-708))) (-15 -3309 ((-108) |#1| (-708)))) (-615 |#2|) (-1120)) (T -614))
+NIL
+(-10 -8 (-15 -1944 (|#1| |#1|)) (-15 -3934 (|#1| |#1| (-522))) (-15 -3614 ((-108) |#1|)) (-15 -4196 ((-108) |#1|)) (-15 -2683 (|#2| |#1| (-522) |#2|)) (-15 -2683 (|#2| |#1| (-522))) (-15 -1973 ((-588 |#2|) |#1|)) (-15 -2103 ((-108) (-522) |#1|)) (-15 -2130 ((-588 (-522)) |#1|)) (-15 -2201 ((-522) |#1|)) (-15 -3496 ((-522) |#1|)) (-15 -2227 (|#1| (-588 |#2|))) (-15 -2683 (|#1| |#1| (-1133 (-522)))) (-15 -3835 (|#1| |#1| (-522))) (-15 -3835 (|#1| |#1| (-1133 (-522)))) (-15 -1731 (|#1| |#2| |#1| (-522))) (-15 -1731 (|#1| |#1| |#1| (-522))) (-15 -2885 (|#1| |#1|)) (-15 -1321 ((-708) |#1|)) (-15 -1502 (|#1| |#1|)) (-15 -3961 (|#1| |#1|)) (-15 -1442 (|#1| |#1| (-708))) (-15 -2683 (|#2| |#1| "last")) (-15 -1442 (|#2| |#1|)) (-15 -2352 (|#1| |#1| (-708))) (-15 -2683 (|#1| |#1| "rest")) (-15 -2352 (|#1| |#1|)) (-15 -2337 (|#1| |#1| (-708))) (-15 -2683 (|#2| |#1| "first")) (-15 -2337 (|#2| |#1|)) (-15 -2402 ((-108) |#1| |#1|)) (-15 -3294 ((-108) |#1| |#1|)) (-15 -3381 ((-522) |#1| |#1|)) (-15 -3395 ((-108) |#1|)) (-15 -2683 (|#2| |#1| "value")) (-15 -3526 (|#2| |#1|)) (-15 -3394 ((-108) |#1|)) (-15 -2674 ((-588 |#1|) |#1|)) (-15 -1515 ((-588 |#1|) |#1|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -3487 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -1381 ((-108) (-1 (-108) |#2|) |#1|)) (-15 -3591 ((-708) |#1|)) (-15 -2717 ((-108) |#1| (-708))) (-15 -1480 ((-108) |#1| (-708))) (-15 -3309 ((-108) |#1| (-708))))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3526 ((|#1| $) 48)) (-2126 ((|#1| $) 65)) (-3961 (($ $) 67)) (-3883 (((-1171) $ (-522) (-522)) 97 (|has| $ (-6 -4239)))) (-2211 (($ $ (-522)) 52 (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) 8)) (-1198 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-2398 (($ $ $) 56 (|has| $ (-6 -4239)))) (-2631 ((|#1| $ |#1|) 54 (|has| $ (-6 -4239)))) (-3393 ((|#1| $ |#1|) 58 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4239))) (($ $ "rest" $) 55 (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 117 (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) 86 (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) 102)) (-2116 ((|#1| $) 66)) (-3367 (($) 7 T CONST)) (-3441 (($ $) 124)) (-2352 (($ $) 73) (($ $ (-708)) 71)) (-2379 (($ $) 99 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#1| $) 100 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 103)) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2411 ((|#1| $ (-522) |#1|) 85 (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) 87)) (-3614 (((-108) $) 83)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3847 (((-708) $) 123)) (-2674 (((-588 $) $) 50)) (-2402 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-1893 (($ (-708) |#1|) 108)) (-1480 (((-108) $ (-708)) 9)) (-3496 (((-522) $) 95 (|has| (-522) (-784)))) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 94 (|has| (-522) (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3309 (((-108) $ (-708)) 10)) (-2548 (((-588 |#1|) $) 45)) (-3394 (((-108) $) 49)) (-3136 (($ $) 126)) (-3789 (((-108) $) 127)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1442 ((|#1| $) 70) (($ $ (-708)) 68)) (-1731 (($ $ $ (-522)) 116) (($ |#1| $ (-522)) 115)) (-2130 (((-588 (-522)) $) 92)) (-2103 (((-108) (-522) $) 91)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-1578 ((|#1| $) 125)) (-2337 ((|#1| $) 76) (($ $ (-708)) 74)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 106)) (-1972 (($ $ |#1|) 96 (|has| $ (-6 -4239)))) (-3934 (($ $ (-522)) 122)) (-4196 (((-108) $) 84)) (-3963 (((-108) $) 128)) (-3726 (((-108) $) 129)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#1| $) 93 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) 90)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1133 (-522))) 112) ((|#1| $ (-522)) 89) ((|#1| $ (-522) |#1|) 88)) (-3381 (((-522) $ $) 44)) (-3835 (($ $ (-1133 (-522))) 114) (($ $ (-522)) 113)) (-3395 (((-108) $) 46)) (-2885 (($ $) 62)) (-1668 (($ $) 59 (|has| $ (-6 -4239)))) (-1321 (((-708) $) 63)) (-1502 (($ $) 64)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-3873 (((-498) $) 98 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 107)) (-2335 (($ $ $) 61 (|has| $ (-6 -4239))) (($ $ |#1|) 60 (|has| $ (-6 -4239)))) (-4170 (($ $ $) 78) (($ |#1| $) 77) (($ (-588 $)) 110) (($ $ |#1|) 109)) (-1944 (($ $) 121)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) 51)) (-3294 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-615 |#1|) (-1197) (-1120)) (T -615))
-((-1423 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-615 *3)) (-4 *3 (-1120)))) (-1628 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-615 *3)) (-4 *3 (-1120)))) (-4010 (*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))) (-4031 (*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))) (-2947 (*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))) (-2155 (*1 *1 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))) (-2765 (*1 *2 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))) (-1351 (*1 *1 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))) (-1808 (*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))) (-3719 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-615 *3)) (-4 *3 (-1120)))) (-1522 (*1 *1 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))))
-(-13 (-1059 |t#1|) (-10 -8 (-15 -1423 ($ (-1 (-108) |t#1|) $)) (-15 -1628 ($ (-1 (-108) |t#1|) $)) (-15 -4010 ((-108) $)) (-15 -4031 ((-108) $)) (-15 -2947 ((-108) $)) (-15 -2155 ($ $)) (-15 -2765 (|t#1| $)) (-15 -1351 ($ $)) (-15 -1808 ((-708) $)) (-15 -3719 ($ $ (-522))) (-15 -1522 ($ $))))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-936 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1059 |#1|) . T) ((-1120) . T) ((-1154 |#1|) . T))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2169 (($ (-708) (-708) (-708)) 34 (|has| |#1| (-971)))) (-4141 (((-108) $ (-708)) NIL)) (-3863 ((|#1| $ (-708) (-708) (-708) |#1|) 29)) (-3175 (($) NIL T CONST)) (-2400 (($ $ $) 38 (|has| |#1| (-971)))) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3973 (((-1166 (-708)) $) 10)) (-2370 (($ (-1085) $ $) 24)) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-2233 (($ (-708)) 36 (|has| |#1| (-971)))) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ (-708) (-708) (-708)) 27)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-2201 (($ (-588 (-588 (-588 |#1|)))) 45)) (-2190 (($ (-886 (-886 (-886 |#1|)))) 17) (((-886 (-886 (-886 |#1|))) $) 14) (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-616 |#1|) (-13 (-461 |#1|) (-10 -8 (IF (|has| |#1| (-971)) (PROGN (-15 -2169 ($ (-708) (-708) (-708))) (-15 -2233 ($ (-708))) (-15 -2400 ($ $ $))) |%noBranch|) (-15 -2201 ($ (-588 (-588 (-588 |#1|))))) (-15 -2545 (|#1| $ (-708) (-708) (-708))) (-15 -3863 (|#1| $ (-708) (-708) (-708) |#1|)) (-15 -2190 ($ (-886 (-886 (-886 |#1|))))) (-15 -2190 ((-886 (-886 (-886 |#1|))) $)) (-15 -2370 ($ (-1085) $ $)) (-15 -3973 ((-1166 (-708)) $)))) (-1014)) (T -616))
-((-2169 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-708)) (-5 *1 (-616 *3)) (-4 *3 (-971)) (-4 *3 (-1014)))) (-2233 (*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-616 *3)) (-4 *3 (-971)) (-4 *3 (-1014)))) (-2400 (*1 *1 *1 *1) (-12 (-5 *1 (-616 *2)) (-4 *2 (-971)) (-4 *2 (-1014)))) (-2201 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 (-588 *3)))) (-4 *3 (-1014)) (-5 *1 (-616 *3)))) (-2545 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-708)) (-5 *1 (-616 *2)) (-4 *2 (-1014)))) (-3863 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-616 *2)) (-4 *2 (-1014)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-886 (-886 (-886 *3)))) (-4 *3 (-1014)) (-5 *1 (-616 *3)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-886 (-886 (-886 *3)))) (-5 *1 (-616 *3)) (-4 *3 (-1014)))) (-2370 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-616 *3)) (-4 *3 (-1014)))) (-3973 (*1 *2 *1) (-12 (-5 *2 (-1166 (-708))) (-5 *1 (-616 *3)) (-4 *3 (-1014)))))
-(-13 (-461 |#1|) (-10 -8 (IF (|has| |#1| (-971)) (PROGN (-15 -2169 ($ (-708) (-708) (-708))) (-15 -2233 ($ (-708))) (-15 -2400 ($ $ $))) |%noBranch|) (-15 -2201 ($ (-588 (-588 (-588 |#1|))))) (-15 -2545 (|#1| $ (-708) (-708) (-708))) (-15 -3863 (|#1| $ (-708) (-708) (-708) |#1|)) (-15 -2190 ($ (-886 (-886 (-886 |#1|))))) (-15 -2190 ((-886 (-886 (-886 |#1|))) $)) (-15 -2370 ($ (-1085) $ $)) (-15 -3973 ((-1166 (-708)) $))))
-((-1416 (((-108) $ $) NIL)) (-4106 (((-588 |#1|) $) 14)) (-1924 (($ $) 18)) (-1289 (((-108) $) 19)) (-1297 (((-3 |#1| "failed") $) 22)) (-1484 ((|#1| $) 20)) (-2306 (($ $) 36)) (-1225 (($ $) 24)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-3523 (((-108) $ $) 42)) (-2517 (((-850) $) 38)) (-1913 (($ $) 17)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2294 ((|#1| $) 35)) (-2190 (((-792) $) 31) (($ |#1|) 23) (((-756 |#1|) $) 27)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 12)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 40)) (* (($ $ $) 34)))
-(((-617 |#1|) (-13 (-784) (-962 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -2190 ((-756 |#1|) $)) (-15 -2294 (|#1| $)) (-15 -1913 ($ $)) (-15 -2517 ((-850) $)) (-15 -3523 ((-108) $ $)) (-15 -1225 ($ $)) (-15 -2306 ($ $)) (-15 -1289 ((-108) $)) (-15 -1924 ($ $)) (-15 -4106 ((-588 |#1|) $)))) (-784)) (T -617))
-((* (*1 *1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-756 *3)) (-5 *1 (-617 *3)) (-4 *3 (-784)))) (-2294 (*1 *2 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784)))) (-1913 (*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784)))) (-2517 (*1 *2 *1) (-12 (-5 *2 (-850)) (-5 *1 (-617 *3)) (-4 *3 (-784)))) (-3523 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-617 *3)) (-4 *3 (-784)))) (-1225 (*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784)))) (-2306 (*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784)))) (-1289 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-617 *3)) (-4 *3 (-784)))) (-1924 (*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784)))) (-4106 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-617 *3)) (-4 *3 (-784)))))
-(-13 (-784) (-962 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -2190 ((-756 |#1|) $)) (-15 -2294 (|#1| $)) (-15 -1913 ($ $)) (-15 -2517 ((-850) $)) (-15 -3523 ((-108) $ $)) (-15 -1225 ($ $)) (-15 -2306 ($ $)) (-15 -1289 ((-108) $)) (-15 -1924 ($ $)) (-15 -4106 ((-588 |#1|) $))))
-((-3268 ((|#1| (-1 |#1| (-708) |#1|) (-708) |#1|) 11)) (-3207 ((|#1| (-1 |#1| |#1|) (-708) |#1|) 9)))
-(((-618 |#1|) (-10 -7 (-15 -3207 (|#1| (-1 |#1| |#1|) (-708) |#1|)) (-15 -3268 (|#1| (-1 |#1| (-708) |#1|) (-708) |#1|))) (-1014)) (T -618))
-((-3268 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-708) *2)) (-5 *4 (-708)) (-4 *2 (-1014)) (-5 *1 (-618 *2)))) (-3207 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-708)) (-4 *2 (-1014)) (-5 *1 (-618 *2)))))
-(-10 -7 (-15 -3207 (|#1| (-1 |#1| |#1|) (-708) |#1|)) (-15 -3268 (|#1| (-1 |#1| (-708) |#1|) (-708) |#1|)))
-((-4097 ((|#2| |#1| |#2|) 9)) (-4083 ((|#1| |#1| |#2|) 8)))
-(((-619 |#1| |#2|) (-10 -7 (-15 -4083 (|#1| |#1| |#2|)) (-15 -4097 (|#2| |#1| |#2|))) (-1014) (-1014)) (T -619))
-((-4097 (*1 *2 *3 *2) (-12 (-5 *1 (-619 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))) (-4083 (*1 *2 *2 *3) (-12 (-5 *1 (-619 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))))
-(-10 -7 (-15 -4083 (|#1| |#1| |#2|)) (-15 -4097 (|#2| |#1| |#2|)))
-((-3591 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
-(((-620 |#1| |#2| |#3|) (-10 -7 (-15 -3591 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1014) (-1014) (-1014)) (T -620))
-((-3591 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)) (-5 *1 (-620 *5 *6 *2)))))
-(-10 -7 (-15 -3591 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
-((-3268 (((-1 |#1| (-708) |#1|) (-1 |#1| (-708) |#1|)) 23)) (-1887 (((-1 |#1|) |#1|) 8)) (-1781 ((|#1| |#1|) 16)) (-3137 (((-588 |#1|) (-1 (-588 |#1|) (-588 |#1|)) (-522)) 15) ((|#1| (-1 |#1| |#1|)) 11)) (-2190 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-708)) 20)))
-(((-621 |#1|) (-10 -7 (-15 -1887 ((-1 |#1|) |#1|)) (-15 -2190 ((-1 |#1|) |#1|)) (-15 -3137 (|#1| (-1 |#1| |#1|))) (-15 -3137 ((-588 |#1|) (-1 (-588 |#1|) (-588 |#1|)) (-522))) (-15 -1781 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-708))) (-15 -3268 ((-1 |#1| (-708) |#1|) (-1 |#1| (-708) |#1|)))) (-1014)) (T -621))
-((-3268 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-708) *3)) (-4 *3 (-1014)) (-5 *1 (-621 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-708)) (-4 *4 (-1014)) (-5 *1 (-621 *4)))) (-1781 (*1 *2 *2) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1014)))) (-3137 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-588 *5) (-588 *5))) (-5 *4 (-522)) (-5 *2 (-588 *5)) (-5 *1 (-621 *5)) (-4 *5 (-1014)))) (-3137 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-621 *2)) (-4 *2 (-1014)))) (-2190 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-621 *3)) (-4 *3 (-1014)))) (-1887 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-621 *3)) (-4 *3 (-1014)))))
-(-10 -7 (-15 -1887 ((-1 |#1|) |#1|)) (-15 -2190 ((-1 |#1|) |#1|)) (-15 -3137 (|#1| (-1 |#1| |#1|))) (-15 -3137 ((-588 |#1|) (-1 (-588 |#1|) (-588 |#1|)) (-522))) (-15 -1781 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-708))) (-15 -3268 ((-1 |#1| (-708) |#1|) (-1 |#1| (-708) |#1|))))
-((-2371 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-3595 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-2677 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-2286 (((-1 |#2| |#1|) |#2|) 11)))
-(((-622 |#1| |#2|) (-10 -7 (-15 -2286 ((-1 |#2| |#1|) |#2|)) (-15 -3595 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2677 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -2371 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1014) (-1014)) (T -622))
-((-2371 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-5 *2 (-1 *5 *4)) (-5 *1 (-622 *4 *5)))) (-2677 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1014)) (-5 *2 (-1 *5 *4)) (-5 *1 (-622 *4 *5)) (-4 *4 (-1014)))) (-3595 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-5 *2 (-1 *5)) (-5 *1 (-622 *4 *5)))) (-2286 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-622 *4 *3)) (-4 *4 (-1014)) (-4 *3 (-1014)))))
-(-10 -7 (-15 -2286 ((-1 |#2| |#1|) |#2|)) (-15 -3595 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2677 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -2371 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
-((-2008 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-3530 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-1550 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-3917 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-3173 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
-(((-623 |#1| |#2| |#3|) (-10 -7 (-15 -3530 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -1550 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -3917 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3173 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -2008 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1014) (-1014) (-1014)) (T -623))
-((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-1 *7 *5)) (-5 *1 (-623 *5 *6 *7)))) (-2008 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-623 *4 *5 *6)))) (-3173 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-623 *4 *5 *6)) (-4 *4 (-1014)))) (-3917 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1014)) (-4 *6 (-1014)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-623 *4 *5 *6)) (-4 *5 (-1014)))) (-1550 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *2 (-1 *6 *5)) (-5 *1 (-623 *4 *5 *6)))) (-3530 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1014)) (-4 *4 (-1014)) (-4 *6 (-1014)) (-5 *2 (-1 *6 *5)) (-5 *1 (-623 *5 *4 *6)))))
-(-10 -7 (-15 -3530 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -1550 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -3917 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3173 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -2008 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
-((-3864 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-1391 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
-(((-624 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1391 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -1391 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -3864 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-971) (-348 |#1|) (-348 |#1|) (-626 |#1| |#2| |#3|) (-971) (-348 |#5|) (-348 |#5|) (-626 |#5| |#6| |#7|)) (T -624))
-((-3864 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-971)) (-4 *2 (-971)) (-4 *6 (-348 *5)) (-4 *7 (-348 *5)) (-4 *8 (-348 *2)) (-4 *9 (-348 *2)) (-5 *1 (-624 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-626 *5 *6 *7)) (-4 *10 (-626 *2 *8 *9)))) (-1391 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-971)) (-4 *8 (-971)) (-4 *6 (-348 *5)) (-4 *7 (-348 *5)) (-4 *2 (-626 *8 *9 *10)) (-5 *1 (-624 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-626 *5 *6 *7)) (-4 *9 (-348 *8)) (-4 *10 (-348 *8)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-971)) (-4 *8 (-971)) (-4 *6 (-348 *5)) (-4 *7 (-348 *5)) (-4 *2 (-626 *8 *9 *10)) (-5 *1 (-624 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-626 *5 *6 *7)) (-4 *9 (-348 *8)) (-4 *10 (-348 *8)))))
-(-10 -7 (-15 -1391 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -1391 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -3864 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
-((-3483 (($ (-708) (-708)) 32)) (-3437 (($ $ $) 55)) (-2318 (($ |#3|) 51) (($ $) 52)) (-2727 (((-108) $) 27)) (-2444 (($ $ (-522) (-522)) 57)) (-1327 (($ $ (-522) (-522)) 58)) (-4183 (($ $ (-522) (-522) (-522) (-522)) 62)) (-2212 (($ $) 53)) (-2527 (((-108) $) 14)) (-3478 (($ $ (-522) (-522) $) 63)) (-2379 ((|#2| $ (-522) (-522) |#2|) NIL) (($ $ (-588 (-522)) (-588 (-522)) $) 61)) (-3022 (($ (-708) |#2|) 37)) (-1366 (($ (-588 (-588 |#2|))) 35)) (-3237 (((-588 (-588 |#2|)) $) 56)) (-1572 (($ $ $) 54)) (-2232 (((-3 $ "failed") $ |#2|) 90)) (-2545 ((|#2| $ (-522) (-522)) NIL) ((|#2| $ (-522) (-522) |#2|) NIL) (($ $ (-588 (-522)) (-588 (-522))) 60)) (-4077 (($ (-588 |#2|)) 39) (($ (-588 $)) 41)) (-1767 (((-108) $) 24)) (-2190 (($ |#4|) 46) (((-792) $) NIL)) (-1697 (((-108) $) 29)) (-1620 (($ $ |#2|) 92)) (-1612 (($ $ $) 67) (($ $) 70)) (-1602 (($ $ $) 65)) (** (($ $ (-708)) 79) (($ $ (-522)) 95)) (* (($ $ $) 76) (($ |#2| $) 72) (($ $ |#2|) 73) (($ (-522) $) 75) ((|#4| $ |#4|) 83) ((|#3| |#3| $) 87)))
-(((-625 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2190 ((-792) |#1|)) (-15 ** (|#1| |#1| (-522))) (-15 -1620 (|#1| |#1| |#2|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-708))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1602 (|#1| |#1| |#1|)) (-15 -3478 (|#1| |#1| (-522) (-522) |#1|)) (-15 -4183 (|#1| |#1| (-522) (-522) (-522) (-522))) (-15 -1327 (|#1| |#1| (-522) (-522))) (-15 -2444 (|#1| |#1| (-522) (-522))) (-15 -2379 (|#1| |#1| (-588 (-522)) (-588 (-522)) |#1|)) (-15 -2545 (|#1| |#1| (-588 (-522)) (-588 (-522)))) (-15 -3237 ((-588 (-588 |#2|)) |#1|)) (-15 -3437 (|#1| |#1| |#1|)) (-15 -1572 (|#1| |#1| |#1|)) (-15 -2212 (|#1| |#1|)) (-15 -2318 (|#1| |#1|)) (-15 -2318 (|#1| |#3|)) (-15 -2190 (|#1| |#4|)) (-15 -4077 (|#1| (-588 |#1|))) (-15 -4077 (|#1| (-588 |#2|))) (-15 -3022 (|#1| (-708) |#2|)) (-15 -1366 (|#1| (-588 (-588 |#2|)))) (-15 -3483 (|#1| (-708) (-708))) (-15 -1697 ((-108) |#1|)) (-15 -2727 ((-108) |#1|)) (-15 -1767 ((-108) |#1|)) (-15 -2527 ((-108) |#1|)) (-15 -2379 (|#2| |#1| (-522) (-522) |#2|)) (-15 -2545 (|#2| |#1| (-522) (-522) |#2|)) (-15 -2545 (|#2| |#1| (-522) (-522)))) (-626 |#2| |#3| |#4|) (-971) (-348 |#2|) (-348 |#2|)) (T -625))
-NIL
-(-10 -8 (-15 -2190 ((-792) |#1|)) (-15 ** (|#1| |#1| (-522))) (-15 -1620 (|#1| |#1| |#2|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-708))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1602 (|#1| |#1| |#1|)) (-15 -3478 (|#1| |#1| (-522) (-522) |#1|)) (-15 -4183 (|#1| |#1| (-522) (-522) (-522) (-522))) (-15 -1327 (|#1| |#1| (-522) (-522))) (-15 -2444 (|#1| |#1| (-522) (-522))) (-15 -2379 (|#1| |#1| (-588 (-522)) (-588 (-522)) |#1|)) (-15 -2545 (|#1| |#1| (-588 (-522)) (-588 (-522)))) (-15 -3237 ((-588 (-588 |#2|)) |#1|)) (-15 -3437 (|#1| |#1| |#1|)) (-15 -1572 (|#1| |#1| |#1|)) (-15 -2212 (|#1| |#1|)) (-15 -2318 (|#1| |#1|)) (-15 -2318 (|#1| |#3|)) (-15 -2190 (|#1| |#4|)) (-15 -4077 (|#1| (-588 |#1|))) (-15 -4077 (|#1| (-588 |#2|))) (-15 -3022 (|#1| (-708) |#2|)) (-15 -1366 (|#1| (-588 (-588 |#2|)))) (-15 -3483 (|#1| (-708) (-708))) (-15 -1697 ((-108) |#1|)) (-15 -2727 ((-108) |#1|)) (-15 -1767 ((-108) |#1|)) (-15 -2527 ((-108) |#1|)) (-15 -2379 (|#2| |#1| (-522) (-522) |#2|)) (-15 -2545 (|#2| |#1| (-522) (-522) |#2|)) (-15 -2545 (|#2| |#1| (-522) (-522))))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3483 (($ (-708) (-708)) 97)) (-3437 (($ $ $) 87)) (-2318 (($ |#2|) 91) (($ $) 90)) (-2727 (((-108) $) 99)) (-2444 (($ $ (-522) (-522)) 83)) (-1327 (($ $ (-522) (-522)) 82)) (-4183 (($ $ (-522) (-522) (-522) (-522)) 81)) (-2212 (($ $) 89)) (-2527 (((-108) $) 101)) (-4141 (((-108) $ (-708)) 8)) (-3478 (($ $ (-522) (-522) $) 80)) (-2379 ((|#1| $ (-522) (-522) |#1|) 44) (($ $ (-588 (-522)) (-588 (-522)) $) 84)) (-2480 (($ $ (-522) |#2|) 42)) (-1888 (($ $ (-522) |#3|) 41)) (-3022 (($ (-708) |#1|) 95)) (-3175 (($) 7 T CONST)) (-2264 (($ $) 67 (|has| |#1| (-283)))) (-1860 ((|#2| $ (-522)) 46)) (-3166 (((-708) $) 66 (|has| |#1| (-514)))) (-3854 ((|#1| $ (-522) (-522) |#1|) 43)) (-3631 ((|#1| $ (-522) (-522)) 48)) (-3837 (((-588 |#1|) $) 30)) (-3799 (((-708) $) 65 (|has| |#1| (-514)))) (-2064 (((-588 |#3|) $) 64 (|has| |#1| (-514)))) (-1411 (((-708) $) 51)) (-1811 (($ (-708) (-708) |#1|) 57)) (-1422 (((-708) $) 50)) (-3352 (((-108) $ (-708)) 9)) (-3081 ((|#1| $) 62 (|has| |#1| (-6 (-4240 "*"))))) (-2575 (((-522) $) 55)) (-1885 (((-522) $) 53)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3886 (((-522) $) 54)) (-4132 (((-522) $) 52)) (-1366 (($ (-588 (-588 |#1|))) 96)) (-3838 (($ (-1 |#1| |#1|) $) 34)) (-1391 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-3237 (((-588 (-588 |#1|)) $) 86)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-2147 (((-3 $ "failed") $) 61 (|has| |#1| (-338)))) (-1572 (($ $ $) 88)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2602 (($ $ |#1|) 56)) (-2232 (((-3 $ "failed") $ |#1|) 69 (|has| |#1| (-514)))) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ (-522) (-522)) 49) ((|#1| $ (-522) (-522) |#1|) 47) (($ $ (-588 (-522)) (-588 (-522))) 85)) (-4077 (($ (-588 |#1|)) 94) (($ (-588 $)) 93)) (-1767 (((-108) $) 100)) (-3206 ((|#1| $) 63 (|has| |#1| (-6 (-4240 "*"))))) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-3488 ((|#3| $ (-522)) 45)) (-2190 (($ |#3|) 92) (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1697 (((-108) $) 98)) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-1620 (($ $ |#1|) 68 (|has| |#1| (-338)))) (-1612 (($ $ $) 78) (($ $) 77)) (-1602 (($ $ $) 79)) (** (($ $ (-708)) 70) (($ $ (-522)) 60 (|has| |#1| (-338)))) (* (($ $ $) 76) (($ |#1| $) 75) (($ $ |#1|) 74) (($ (-522) $) 73) ((|#3| $ |#3|) 72) ((|#2| |#2| $) 71)) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1424 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-615 *3)) (-4 *3 (-1120)))) (-1696 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-615 *3)) (-4 *3 (-1120)))) (-3726 (*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))) (-3963 (*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))) (-3789 (*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))) (-3136 (*1 *1 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))) (-1578 (*1 *2 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))) (-3441 (*1 *1 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))) (-3847 (*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))) (-3934 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-615 *3)) (-4 *3 (-1120)))) (-1944 (*1 *1 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))))
+(-13 (-1059 |t#1|) (-10 -8 (-15 -1424 ($ (-1 (-108) |t#1|) $)) (-15 -1696 ($ (-1 (-108) |t#1|) $)) (-15 -3726 ((-108) $)) (-15 -3963 ((-108) $)) (-15 -3789 ((-108) $)) (-15 -3136 ($ $)) (-15 -1578 (|t#1| $)) (-15 -3441 ($ $)) (-15 -3847 ((-708) $)) (-15 -3934 ($ $ (-522))) (-15 -1944 ($ $))))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-936 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1059 |#1|) . T) ((-1120) . T) ((-1154 |#1|) . T))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3233 (($ (-708) (-708) (-708)) 34 (|has| |#1| (-971)))) (-2717 (((-108) $ (-708)) NIL)) (-1732 ((|#1| $ (-708) (-708) (-708) |#1|) 29)) (-3367 (($) NIL T CONST)) (-2457 (($ $ $) 38 (|has| |#1| (-971)))) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1571 (((-1166 (-708)) $) 10)) (-3984 (($ (-1085) $ $) 24)) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1681 (($ (-708)) 36 (|has| |#1| (-971)))) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ (-708) (-708) (-708)) 27)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2227 (($ (-588 (-588 (-588 |#1|)))) 45)) (-2217 (($ (-886 (-886 (-886 |#1|)))) 17) (((-886 (-886 (-886 |#1|))) $) 14) (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-616 |#1|) (-13 (-461 |#1|) (-10 -8 (IF (|has| |#1| (-971)) (PROGN (-15 -3233 ($ (-708) (-708) (-708))) (-15 -1681 ($ (-708))) (-15 -2457 ($ $ $))) |%noBranch|) (-15 -2227 ($ (-588 (-588 (-588 |#1|))))) (-15 -2683 (|#1| $ (-708) (-708) (-708))) (-15 -1732 (|#1| $ (-708) (-708) (-708) |#1|)) (-15 -2217 ($ (-886 (-886 (-886 |#1|))))) (-15 -2217 ((-886 (-886 (-886 |#1|))) $)) (-15 -3984 ($ (-1085) $ $)) (-15 -1571 ((-1166 (-708)) $)))) (-1014)) (T -616))
+((-3233 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-708)) (-5 *1 (-616 *3)) (-4 *3 (-971)) (-4 *3 (-1014)))) (-1681 (*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-616 *3)) (-4 *3 (-971)) (-4 *3 (-1014)))) (-2457 (*1 *1 *1 *1) (-12 (-5 *1 (-616 *2)) (-4 *2 (-971)) (-4 *2 (-1014)))) (-2227 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 (-588 *3)))) (-4 *3 (-1014)) (-5 *1 (-616 *3)))) (-2683 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-708)) (-5 *1 (-616 *2)) (-4 *2 (-1014)))) (-1732 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-616 *2)) (-4 *2 (-1014)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-886 (-886 (-886 *3)))) (-4 *3 (-1014)) (-5 *1 (-616 *3)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-886 (-886 (-886 *3)))) (-5 *1 (-616 *3)) (-4 *3 (-1014)))) (-3984 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-616 *3)) (-4 *3 (-1014)))) (-1571 (*1 *2 *1) (-12 (-5 *2 (-1166 (-708))) (-5 *1 (-616 *3)) (-4 *3 (-1014)))))
+(-13 (-461 |#1|) (-10 -8 (IF (|has| |#1| (-971)) (PROGN (-15 -3233 ($ (-708) (-708) (-708))) (-15 -1681 ($ (-708))) (-15 -2457 ($ $ $))) |%noBranch|) (-15 -2227 ($ (-588 (-588 (-588 |#1|))))) (-15 -2683 (|#1| $ (-708) (-708) (-708))) (-15 -1732 (|#1| $ (-708) (-708) (-708) |#1|)) (-15 -2217 ($ (-886 (-886 (-886 |#1|))))) (-15 -2217 ((-886 (-886 (-886 |#1|))) $)) (-15 -3984 ($ (-1085) $ $)) (-15 -1571 ((-1166 (-708)) $))))
+((-1419 (((-108) $ $) NIL)) (-4127 (((-588 |#1|) $) 14)) (-2002 (($ $) 18)) (-1608 (((-108) $) 19)) (-3700 (((-3 |#1| "failed") $) 22)) (-1478 ((|#1| $) 20)) (-2352 (($ $) 36)) (-2182 (($ $) 24)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2618 (((-108) $ $) 42)) (-4030 (((-850) $) 38)) (-1993 (($ $) 17)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2337 ((|#1| $) 35)) (-2217 (((-792) $) 31) (($ |#1|) 23) (((-756 |#1|) $) 27)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 12)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 40)) (* (($ $ $) 34)))
+(((-617 |#1|) (-13 (-784) (-962 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -2217 ((-756 |#1|) $)) (-15 -2337 (|#1| $)) (-15 -1993 ($ $)) (-15 -4030 ((-850) $)) (-15 -2618 ((-108) $ $)) (-15 -2182 ($ $)) (-15 -2352 ($ $)) (-15 -1608 ((-108) $)) (-15 -2002 ($ $)) (-15 -4127 ((-588 |#1|) $)))) (-784)) (T -617))
+((* (*1 *1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-756 *3)) (-5 *1 (-617 *3)) (-4 *3 (-784)))) (-2337 (*1 *2 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784)))) (-1993 (*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784)))) (-4030 (*1 *2 *1) (-12 (-5 *2 (-850)) (-5 *1 (-617 *3)) (-4 *3 (-784)))) (-2618 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-617 *3)) (-4 *3 (-784)))) (-2182 (*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784)))) (-2352 (*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784)))) (-1608 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-617 *3)) (-4 *3 (-784)))) (-2002 (*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784)))) (-4127 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-617 *3)) (-4 *3 (-784)))))
+(-13 (-784) (-962 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -2217 ((-756 |#1|) $)) (-15 -2337 (|#1| $)) (-15 -1993 ($ $)) (-15 -4030 ((-850) $)) (-15 -2618 ((-108) $ $)) (-15 -2182 ($ $)) (-15 -2352 ($ $)) (-15 -1608 ((-108) $)) (-15 -2002 ($ $)) (-15 -4127 ((-588 |#1|) $))))
+((-1861 ((|#1| (-1 |#1| (-708) |#1|) (-708) |#1|) 11)) (-3286 ((|#1| (-1 |#1| |#1|) (-708) |#1|) 9)))
+(((-618 |#1|) (-10 -7 (-15 -3286 (|#1| (-1 |#1| |#1|) (-708) |#1|)) (-15 -1861 (|#1| (-1 |#1| (-708) |#1|) (-708) |#1|))) (-1014)) (T -618))
+((-1861 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-708) *2)) (-5 *4 (-708)) (-4 *2 (-1014)) (-5 *1 (-618 *2)))) (-3286 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-708)) (-4 *2 (-1014)) (-5 *1 (-618 *2)))))
+(-10 -7 (-15 -3286 (|#1| (-1 |#1| |#1|) (-708) |#1|)) (-15 -1861 (|#1| (-1 |#1| (-708) |#1|) (-708) |#1|)))
+((-4135 ((|#2| |#1| |#2|) 9)) (-4123 ((|#1| |#1| |#2|) 8)))
+(((-619 |#1| |#2|) (-10 -7 (-15 -4123 (|#1| |#1| |#2|)) (-15 -4135 (|#2| |#1| |#2|))) (-1014) (-1014)) (T -619))
+((-4135 (*1 *2 *3 *2) (-12 (-5 *1 (-619 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))) (-4123 (*1 *2 *2 *3) (-12 (-5 *1 (-619 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))))
+(-10 -7 (-15 -4123 (|#1| |#1| |#2|)) (-15 -4135 (|#2| |#1| |#2|)))
+((-3713 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
+(((-620 |#1| |#2| |#3|) (-10 -7 (-15 -3713 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1014) (-1014) (-1014)) (T -620))
+((-3713 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)) (-5 *1 (-620 *5 *6 *2)))))
+(-10 -7 (-15 -3713 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
+((-1861 (((-1 |#1| (-708) |#1|) (-1 |#1| (-708) |#1|)) 23)) (-4049 (((-1 |#1|) |#1|) 8)) (-1868 ((|#1| |#1|) 16)) (-3107 (((-588 |#1|) (-1 (-588 |#1|) (-588 |#1|)) (-522)) 15) ((|#1| (-1 |#1| |#1|)) 11)) (-2217 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-708)) 20)))
+(((-621 |#1|) (-10 -7 (-15 -4049 ((-1 |#1|) |#1|)) (-15 -2217 ((-1 |#1|) |#1|)) (-15 -3107 (|#1| (-1 |#1| |#1|))) (-15 -3107 ((-588 |#1|) (-1 (-588 |#1|) (-588 |#1|)) (-522))) (-15 -1868 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-708))) (-15 -1861 ((-1 |#1| (-708) |#1|) (-1 |#1| (-708) |#1|)))) (-1014)) (T -621))
+((-1861 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-708) *3)) (-4 *3 (-1014)) (-5 *1 (-621 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-708)) (-4 *4 (-1014)) (-5 *1 (-621 *4)))) (-1868 (*1 *2 *2) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1014)))) (-3107 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-588 *5) (-588 *5))) (-5 *4 (-522)) (-5 *2 (-588 *5)) (-5 *1 (-621 *5)) (-4 *5 (-1014)))) (-3107 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-621 *2)) (-4 *2 (-1014)))) (-2217 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-621 *3)) (-4 *3 (-1014)))) (-4049 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-621 *3)) (-4 *3 (-1014)))))
+(-10 -7 (-15 -4049 ((-1 |#1|) |#1|)) (-15 -2217 ((-1 |#1|) |#1|)) (-15 -3107 (|#1| (-1 |#1| |#1|))) (-15 -3107 ((-588 |#1|) (-1 (-588 |#1|) (-588 |#1|)) (-522))) (-15 -1868 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-708))) (-15 -1861 ((-1 |#1| (-708) |#1|) (-1 |#1| (-708) |#1|))))
+((-3991 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-2052 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-2855 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-2441 (((-1 |#2| |#1|) |#2|) 11)))
+(((-622 |#1| |#2|) (-10 -7 (-15 -2441 ((-1 |#2| |#1|) |#2|)) (-15 -2052 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2855 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -3991 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1014) (-1014)) (T -622))
+((-3991 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-5 *2 (-1 *5 *4)) (-5 *1 (-622 *4 *5)))) (-2855 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1014)) (-5 *2 (-1 *5 *4)) (-5 *1 (-622 *4 *5)) (-4 *4 (-1014)))) (-2052 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-5 *2 (-1 *5)) (-5 *1 (-622 *4 *5)))) (-2441 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-622 *4 *3)) (-4 *4 (-1014)) (-4 *3 (-1014)))))
+(-10 -7 (-15 -2441 ((-1 |#2| |#1|) |#2|)) (-15 -2052 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2855 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -3991 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
+((-3363 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-2711 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-3429 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-2190 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-3346 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
+(((-623 |#1| |#2| |#3|) (-10 -7 (-15 -2711 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3429 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2190 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3346 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3363 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1014) (-1014) (-1014)) (T -623))
+((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-1 *7 *5)) (-5 *1 (-623 *5 *6 *7)))) (-3363 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-623 *4 *5 *6)))) (-3346 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-623 *4 *5 *6)) (-4 *4 (-1014)))) (-2190 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1014)) (-4 *6 (-1014)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-623 *4 *5 *6)) (-4 *5 (-1014)))) (-3429 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *2 (-1 *6 *5)) (-5 *1 (-623 *4 *5 *6)))) (-2711 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1014)) (-4 *4 (-1014)) (-4 *6 (-1014)) (-5 *2 (-1 *6 *5)) (-5 *1 (-623 *5 *4 *6)))))
+(-10 -7 (-15 -2711 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3429 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2190 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3346 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3363 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
+((-2153 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-3810 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
+(((-624 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3810 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -3810 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -2153 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-971) (-348 |#1|) (-348 |#1|) (-626 |#1| |#2| |#3|) (-971) (-348 |#5|) (-348 |#5|) (-626 |#5| |#6| |#7|)) (T -624))
+((-2153 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-971)) (-4 *2 (-971)) (-4 *6 (-348 *5)) (-4 *7 (-348 *5)) (-4 *8 (-348 *2)) (-4 *9 (-348 *2)) (-5 *1 (-624 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-626 *5 *6 *7)) (-4 *10 (-626 *2 *8 *9)))) (-3810 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-971)) (-4 *8 (-971)) (-4 *6 (-348 *5)) (-4 *7 (-348 *5)) (-4 *2 (-626 *8 *9 *10)) (-5 *1 (-624 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-626 *5 *6 *7)) (-4 *9 (-348 *8)) (-4 *10 (-348 *8)))) (-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-971)) (-4 *8 (-971)) (-4 *6 (-348 *5)) (-4 *7 (-348 *5)) (-4 *2 (-626 *8 *9 *10)) (-5 *1 (-624 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-626 *5 *6 *7)) (-4 *9 (-348 *8)) (-4 *10 (-348 *8)))))
+(-10 -7 (-15 -3810 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -3810 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -2153 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
+((-1785 (($ (-708) (-708)) 32)) (-3021 (($ $ $) 55)) (-2682 (($ |#3|) 51) (($ $) 52)) (-3455 (((-108) $) 27)) (-3637 (($ $ (-522) (-522)) 57)) (-1957 (($ $ (-522) (-522)) 58)) (-1834 (($ $ (-522) (-522) (-522) (-522)) 62)) (-2449 (($ $) 53)) (-2208 (((-108) $) 14)) (-3352 (($ $ (-522) (-522) $) 63)) (-2437 ((|#2| $ (-522) (-522) |#2|) NIL) (($ $ (-588 (-522)) (-588 (-522)) $) 61)) (-1348 (($ (-708) |#2|) 37)) (-1347 (($ (-588 (-588 |#2|))) 35)) (-2862 (((-588 (-588 |#2|)) $) 56)) (-3594 (($ $ $) 54)) (-2276 (((-3 $ "failed") $ |#2|) 90)) (-2683 ((|#2| $ (-522) (-522)) NIL) ((|#2| $ (-522) (-522) |#2|) NIL) (($ $ (-588 (-522)) (-588 (-522))) 60)) (-3215 (($ (-588 |#2|)) 39) (($ (-588 $)) 41)) (-3498 (((-108) $) 24)) (-2217 (($ |#4|) 46) (((-792) $) NIL)) (-4047 (((-108) $) 29)) (-1682 (($ $ |#2|) 92)) (-1672 (($ $ $) 67) (($ $) 70)) (-1661 (($ $ $) 65)) (** (($ $ (-708)) 79) (($ $ (-522)) 95)) (* (($ $ $) 76) (($ |#2| $) 72) (($ $ |#2|) 73) (($ (-522) $) 75) ((|#4| $ |#4|) 83) ((|#3| |#3| $) 87)))
+(((-625 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2217 ((-792) |#1|)) (-15 ** (|#1| |#1| (-522))) (-15 -1682 (|#1| |#1| |#2|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-708))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1661 (|#1| |#1| |#1|)) (-15 -3352 (|#1| |#1| (-522) (-522) |#1|)) (-15 -1834 (|#1| |#1| (-522) (-522) (-522) (-522))) (-15 -1957 (|#1| |#1| (-522) (-522))) (-15 -3637 (|#1| |#1| (-522) (-522))) (-15 -2437 (|#1| |#1| (-588 (-522)) (-588 (-522)) |#1|)) (-15 -2683 (|#1| |#1| (-588 (-522)) (-588 (-522)))) (-15 -2862 ((-588 (-588 |#2|)) |#1|)) (-15 -3021 (|#1| |#1| |#1|)) (-15 -3594 (|#1| |#1| |#1|)) (-15 -2449 (|#1| |#1|)) (-15 -2682 (|#1| |#1|)) (-15 -2682 (|#1| |#3|)) (-15 -2217 (|#1| |#4|)) (-15 -3215 (|#1| (-588 |#1|))) (-15 -3215 (|#1| (-588 |#2|))) (-15 -1348 (|#1| (-708) |#2|)) (-15 -1347 (|#1| (-588 (-588 |#2|)))) (-15 -1785 (|#1| (-708) (-708))) (-15 -4047 ((-108) |#1|)) (-15 -3455 ((-108) |#1|)) (-15 -3498 ((-108) |#1|)) (-15 -2208 ((-108) |#1|)) (-15 -2437 (|#2| |#1| (-522) (-522) |#2|)) (-15 -2683 (|#2| |#1| (-522) (-522) |#2|)) (-15 -2683 (|#2| |#1| (-522) (-522)))) (-626 |#2| |#3| |#4|) (-971) (-348 |#2|) (-348 |#2|)) (T -625))
+NIL
+(-10 -8 (-15 -2217 ((-792) |#1|)) (-15 ** (|#1| |#1| (-522))) (-15 -1682 (|#1| |#1| |#2|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-708))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1661 (|#1| |#1| |#1|)) (-15 -3352 (|#1| |#1| (-522) (-522) |#1|)) (-15 -1834 (|#1| |#1| (-522) (-522) (-522) (-522))) (-15 -1957 (|#1| |#1| (-522) (-522))) (-15 -3637 (|#1| |#1| (-522) (-522))) (-15 -2437 (|#1| |#1| (-588 (-522)) (-588 (-522)) |#1|)) (-15 -2683 (|#1| |#1| (-588 (-522)) (-588 (-522)))) (-15 -2862 ((-588 (-588 |#2|)) |#1|)) (-15 -3021 (|#1| |#1| |#1|)) (-15 -3594 (|#1| |#1| |#1|)) (-15 -2449 (|#1| |#1|)) (-15 -2682 (|#1| |#1|)) (-15 -2682 (|#1| |#3|)) (-15 -2217 (|#1| |#4|)) (-15 -3215 (|#1| (-588 |#1|))) (-15 -3215 (|#1| (-588 |#2|))) (-15 -1348 (|#1| (-708) |#2|)) (-15 -1347 (|#1| (-588 (-588 |#2|)))) (-15 -1785 (|#1| (-708) (-708))) (-15 -4047 ((-108) |#1|)) (-15 -3455 ((-108) |#1|)) (-15 -3498 ((-108) |#1|)) (-15 -2208 ((-108) |#1|)) (-15 -2437 (|#2| |#1| (-522) (-522) |#2|)) (-15 -2683 (|#2| |#1| (-522) (-522) |#2|)) (-15 -2683 (|#2| |#1| (-522) (-522))))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-1785 (($ (-708) (-708)) 97)) (-3021 (($ $ $) 87)) (-2682 (($ |#2|) 91) (($ $) 90)) (-3455 (((-108) $) 99)) (-3637 (($ $ (-522) (-522)) 83)) (-1957 (($ $ (-522) (-522)) 82)) (-1834 (($ $ (-522) (-522) (-522) (-522)) 81)) (-2449 (($ $) 89)) (-2208 (((-108) $) 101)) (-2717 (((-108) $ (-708)) 8)) (-3352 (($ $ (-522) (-522) $) 80)) (-2437 ((|#1| $ (-522) (-522) |#1|) 44) (($ $ (-588 (-522)) (-588 (-522)) $) 84)) (-3074 (($ $ (-522) |#2|) 42)) (-4060 (($ $ (-522) |#3|) 41)) (-1348 (($ (-708) |#1|) 95)) (-3367 (($) 7 T CONST)) (-2091 (($ $) 67 (|has| |#1| (-283)))) (-2635 ((|#2| $ (-522)) 46)) (-1692 (((-708) $) 66 (|has| |#1| (-514)))) (-2411 ((|#1| $ (-522) (-522) |#1|) 43)) (-2186 ((|#1| $ (-522) (-522)) 48)) (-2395 (((-588 |#1|) $) 30)) (-2336 (((-708) $) 65 (|has| |#1| (-514)))) (-2819 (((-588 |#3|) $) 64 (|has| |#1| (-514)))) (-2949 (((-708) $) 51)) (-1893 (($ (-708) (-708) |#1|) 57)) (-2960 (((-708) $) 50)) (-1480 (((-108) $ (-708)) 9)) (-3721 ((|#1| $) 62 (|has| |#1| (-6 (-4240 "*"))))) (-2604 (((-522) $) 55)) (-4042 (((-522) $) 53)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1925 (((-522) $) 54)) (-2595 (((-522) $) 52)) (-1347 (($ (-588 (-588 |#1|))) 96)) (-2397 (($ (-1 |#1| |#1|) $) 34)) (-3810 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-2862 (((-588 (-588 |#1|)) $) 86)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-3073 (((-3 $ "failed") $) 61 (|has| |#1| (-338)))) (-3594 (($ $ $) 88)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-1972 (($ $ |#1|) 56)) (-2276 (((-3 $ "failed") $ |#1|) 69 (|has| |#1| (-514)))) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ (-522) (-522)) 49) ((|#1| $ (-522) (-522) |#1|) 47) (($ $ (-588 (-522)) (-588 (-522))) 85)) (-3215 (($ (-588 |#1|)) 94) (($ (-588 $)) 93)) (-3498 (((-108) $) 100)) (-2500 ((|#1| $) 63 (|has| |#1| (-6 (-4240 "*"))))) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2223 ((|#3| $ (-522)) 45)) (-2217 (($ |#3|) 92) (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-4047 (((-108) $) 98)) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-1682 (($ $ |#1|) 68 (|has| |#1| (-338)))) (-1672 (($ $ $) 78) (($ $) 77)) (-1661 (($ $ $) 79)) (** (($ $ (-708)) 70) (($ $ (-522)) 60 (|has| |#1| (-338)))) (* (($ $ $) 76) (($ |#1| $) 75) (($ $ |#1|) 74) (($ (-522) $) 73) ((|#3| $ |#3|) 72) ((|#2| |#2| $) 71)) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-626 |#1| |#2| |#3|) (-1197) (-971) (-348 |t#1|) (-348 |t#1|)) (T -626))
-((-2527 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-108)))) (-1767 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-108)))) (-2727 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-108)))) (-1697 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-108)))) (-3483 (*1 *1 *2 *2) (-12 (-5 *2 (-708)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1366 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-3022 (*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-4077 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-4077 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-2190 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *2)) (-4 *4 (-348 *3)) (-4 *2 (-348 *3)))) (-2318 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *1 (-626 *3 *2 *4)) (-4 *2 (-348 *3)) (-4 *4 (-348 *3)))) (-2318 (*1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-2212 (*1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-1572 (*1 *1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-3437 (*1 *1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-3237 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-588 (-588 *3))))) (-2545 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-588 (-522))) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-2379 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-588 (-522))) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-2444 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1327 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-4183 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-3478 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1602 (*1 *1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-1612 (*1 *1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-1612 (*1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-626 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *2 (-348 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-626 *3 *2 *4)) (-4 *3 (-971)) (-4 *2 (-348 *3)) (-4 *4 (-348 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-2232 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (-4 *2 (-514)))) (-1620 (*1 *1 *1 *2) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (-4 *2 (-338)))) (-2264 (*1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (-4 *2 (-283)))) (-3166 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-4 *3 (-514)) (-5 *2 (-708)))) (-3799 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-4 *3 (-514)) (-5 *2 (-708)))) (-2064 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-4 *3 (-514)) (-5 *2 (-588 *5)))) (-3206 (*1 *2 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971)))) (-3081 (*1 *2 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971)))) (-2147 (*1 *1 *1) (|partial| -12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (-4 *2 (-338)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-4 *3 (-338)))))
-(-13 (-55 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4239) (-6 -4238) (-15 -2527 ((-108) $)) (-15 -1767 ((-108) $)) (-15 -2727 ((-108) $)) (-15 -1697 ((-108) $)) (-15 -3483 ($ (-708) (-708))) (-15 -1366 ($ (-588 (-588 |t#1|)))) (-15 -3022 ($ (-708) |t#1|)) (-15 -4077 ($ (-588 |t#1|))) (-15 -4077 ($ (-588 $))) (-15 -2190 ($ |t#3|)) (-15 -2318 ($ |t#2|)) (-15 -2318 ($ $)) (-15 -2212 ($ $)) (-15 -1572 ($ $ $)) (-15 -3437 ($ $ $)) (-15 -3237 ((-588 (-588 |t#1|)) $)) (-15 -2545 ($ $ (-588 (-522)) (-588 (-522)))) (-15 -2379 ($ $ (-588 (-522)) (-588 (-522)) $)) (-15 -2444 ($ $ (-522) (-522))) (-15 -1327 ($ $ (-522) (-522))) (-15 -4183 ($ $ (-522) (-522) (-522) (-522))) (-15 -3478 ($ $ (-522) (-522) $)) (-15 -1602 ($ $ $)) (-15 -1612 ($ $ $)) (-15 -1612 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-522) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-708))) (IF (|has| |t#1| (-514)) (-15 -2232 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-338)) (-15 -1620 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-283)) (-15 -2264 ($ $)) |%noBranch|) (IF (|has| |t#1| (-514)) (PROGN (-15 -3166 ((-708) $)) (-15 -3799 ((-708) $)) (-15 -2064 ((-588 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4240 "*"))) (PROGN (-15 -3206 (|t#1| $)) (-15 -3081 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-338)) (PROGN (-15 -2147 ((-3 $ "failed") $)) (-15 ** ($ $ (-522)))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-55 |#1| |#2| |#3|) . T) ((-1120) . T))
-((-2264 ((|#4| |#4|) 68 (|has| |#1| (-283)))) (-3166 (((-708) |#4|) 70 (|has| |#1| (-514)))) (-3799 (((-708) |#4|) 72 (|has| |#1| (-514)))) (-2064 (((-588 |#3|) |#4|) 79 (|has| |#1| (-514)))) (-1438 (((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|) 96 (|has| |#1| (-283)))) (-3081 ((|#1| |#4|) 34)) (-4012 (((-3 |#4| "failed") |#4|) 62 (|has| |#1| (-514)))) (-2147 (((-3 |#4| "failed") |#4|) 76 (|has| |#1| (-338)))) (-2880 ((|#4| |#4|) 55 (|has| |#1| (-514)))) (-3100 ((|#4| |#4| |#1| (-522) (-522)) 42)) (-3388 ((|#4| |#4| (-522) (-522)) 37)) (-1219 ((|#4| |#4| |#1| (-522) (-522)) 47)) (-3206 ((|#1| |#4|) 74)) (-3785 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 58 (|has| |#1| (-514)))))
-(((-627 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3206 (|#1| |#4|)) (-15 -3081 (|#1| |#4|)) (-15 -3388 (|#4| |#4| (-522) (-522))) (-15 -3100 (|#4| |#4| |#1| (-522) (-522))) (-15 -1219 (|#4| |#4| |#1| (-522) (-522))) (IF (|has| |#1| (-514)) (PROGN (-15 -3166 ((-708) |#4|)) (-15 -3799 ((-708) |#4|)) (-15 -2064 ((-588 |#3|) |#4|)) (-15 -2880 (|#4| |#4|)) (-15 -4012 ((-3 |#4| "failed") |#4|)) (-15 -3785 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-283)) (PROGN (-15 -2264 (|#4| |#4|)) (-15 -1438 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-338)) (-15 -2147 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-157) (-348 |#1|) (-348 |#1|) (-626 |#1| |#2| |#3|)) (T -627))
-((-2147 (*1 *2 *2) (|partial| -12 (-4 *3 (-338)) (-4 *3 (-157)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-1438 (*1 *2 *3 *3) (-12 (-4 *3 (-283)) (-4 *3 (-157)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-627 *3 *4 *5 *6)) (-4 *6 (-626 *3 *4 *5)))) (-2264 (*1 *2 *2) (-12 (-4 *3 (-283)) (-4 *3 (-157)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-3785 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-627 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-4012 (*1 *2 *2) (|partial| -12 (-4 *3 (-514)) (-4 *3 (-157)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-2880 (*1 *2 *2) (-12 (-4 *3 (-514)) (-4 *3 (-157)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-2064 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-588 *6)) (-5 *1 (-627 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-3799 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-708)) (-5 *1 (-627 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-3166 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-708)) (-5 *1 (-627 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-1219 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-522)) (-4 *3 (-157)) (-4 *5 (-348 *3)) (-4 *6 (-348 *3)) (-5 *1 (-627 *3 *5 *6 *2)) (-4 *2 (-626 *3 *5 *6)))) (-3100 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-522)) (-4 *3 (-157)) (-4 *5 (-348 *3)) (-4 *6 (-348 *3)) (-5 *1 (-627 *3 *5 *6 *2)) (-4 *2 (-626 *3 *5 *6)))) (-3388 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-522)) (-4 *4 (-157)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *1 (-627 *4 *5 *6 *2)) (-4 *2 (-626 *4 *5 *6)))) (-3081 (*1 *2 *3) (-12 (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-157)) (-5 *1 (-627 *2 *4 *5 *3)) (-4 *3 (-626 *2 *4 *5)))) (-3206 (*1 *2 *3) (-12 (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-157)) (-5 *1 (-627 *2 *4 *5 *3)) (-4 *3 (-626 *2 *4 *5)))))
-(-10 -7 (-15 -3206 (|#1| |#4|)) (-15 -3081 (|#1| |#4|)) (-15 -3388 (|#4| |#4| (-522) (-522))) (-15 -3100 (|#4| |#4| |#1| (-522) (-522))) (-15 -1219 (|#4| |#4| |#1| (-522) (-522))) (IF (|has| |#1| (-514)) (PROGN (-15 -3166 ((-708) |#4|)) (-15 -3799 ((-708) |#4|)) (-15 -2064 ((-588 |#3|) |#4|)) (-15 -2880 (|#4| |#4|)) (-15 -4012 ((-3 |#4| "failed") |#4|)) (-15 -3785 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-283)) (PROGN (-15 -2264 (|#4| |#4|)) (-15 -1438 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-338)) (-15 -2147 ((-3 |#4| "failed") |#4|)) |%noBranch|))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3483 (($ (-708) (-708)) 45)) (-3437 (($ $ $) NIL)) (-2318 (($ (-1166 |#1|)) NIL) (($ $) NIL)) (-2727 (((-108) $) NIL)) (-2444 (($ $ (-522) (-522)) 12)) (-1327 (($ $ (-522) (-522)) NIL)) (-4183 (($ $ (-522) (-522) (-522) (-522)) NIL)) (-2212 (($ $) NIL)) (-2527 (((-108) $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-3478 (($ $ (-522) (-522) $) NIL)) (-2379 ((|#1| $ (-522) (-522) |#1|) NIL) (($ $ (-588 (-522)) (-588 (-522)) $) NIL)) (-2480 (($ $ (-522) (-1166 |#1|)) NIL)) (-1888 (($ $ (-522) (-1166 |#1|)) NIL)) (-3022 (($ (-708) |#1|) 22)) (-3175 (($) NIL T CONST)) (-2264 (($ $) 30 (|has| |#1| (-283)))) (-1860 (((-1166 |#1|) $ (-522)) NIL)) (-3166 (((-708) $) 32 (|has| |#1| (-514)))) (-3854 ((|#1| $ (-522) (-522) |#1|) 50)) (-3631 ((|#1| $ (-522) (-522)) NIL)) (-3837 (((-588 |#1|) $) NIL)) (-3799 (((-708) $) 34 (|has| |#1| (-514)))) (-2064 (((-588 (-1166 |#1|)) $) 37 (|has| |#1| (-514)))) (-1411 (((-708) $) 20)) (-1811 (($ (-708) (-708) |#1|) NIL)) (-1422 (((-708) $) 21)) (-3352 (((-108) $ (-708)) NIL)) (-3081 ((|#1| $) 28 (|has| |#1| (-6 (-4240 "*"))))) (-2575 (((-522) $) 9)) (-1885 (((-522) $) 10)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3886 (((-522) $) 11)) (-4132 (((-522) $) 46)) (-1366 (($ (-588 (-588 |#1|))) NIL)) (-3838 (($ (-1 |#1| |#1|) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3237 (((-588 (-588 |#1|)) $) 58)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-2147 (((-3 $ "failed") $) 41 (|has| |#1| (-338)))) (-1572 (($ $ $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2602 (($ $ |#1|) NIL)) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ (-522) (-522)) NIL) ((|#1| $ (-522) (-522) |#1|) NIL) (($ $ (-588 (-522)) (-588 (-522))) NIL)) (-4077 (($ (-588 |#1|)) NIL) (($ (-588 $)) NIL) (($ (-1166 |#1|)) 51)) (-1767 (((-108) $) NIL)) (-3206 ((|#1| $) 26 (|has| |#1| (-6 (-4240 "*"))))) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-1431 (((-498) $) 62 (|has| |#1| (-563 (-498))))) (-3488 (((-1166 |#1|) $ (-522)) NIL)) (-2190 (($ (-1166 |#1|)) NIL) (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1697 (((-108) $) NIL)) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $ $) NIL) (($ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-708)) 23) (($ $ (-522)) 44 (|has| |#1| (-338)))) (* (($ $ $) 13) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-522) $) NIL) (((-1166 |#1|) $ (-1166 |#1|)) NIL) (((-1166 |#1|) (-1166 |#1|) $) NIL)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-628 |#1|) (-13 (-626 |#1| (-1166 |#1|) (-1166 |#1|)) (-10 -8 (-15 -4077 ($ (-1166 |#1|))) (IF (|has| |#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |#1| (-338)) (-15 -2147 ((-3 $ "failed") $)) |%noBranch|))) (-971)) (T -628))
-((-2147 (*1 *1 *1) (|partial| -12 (-5 *1 (-628 *2)) (-4 *2 (-338)) (-4 *2 (-971)))) (-4077 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-971)) (-5 *1 (-628 *3)))))
-(-13 (-626 |#1| (-1166 |#1|) (-1166 |#1|)) (-10 -8 (-15 -4077 ($ (-1166 |#1|))) (IF (|has| |#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |#1| (-338)) (-15 -2147 ((-3 $ "failed") $)) |%noBranch|)))
-((-3758 (((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|)) 25)) (-1746 (((-628 |#1|) (-628 |#1|) (-628 |#1|) |#1|) 21)) (-3554 (((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|) (-708)) 26)) (-3163 (((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|)) 14)) (-4038 (((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|)) 18) (((-628 |#1|) (-628 |#1|) (-628 |#1|)) 16)) (-2476 (((-628 |#1|) (-628 |#1|) |#1| (-628 |#1|)) 20)) (-1633 (((-628 |#1|) (-628 |#1|) (-628 |#1|)) 12)) (** (((-628 |#1|) (-628 |#1|) (-708)) 30)))
-(((-629 |#1|) (-10 -7 (-15 -1633 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -3163 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -4038 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -4038 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -2476 ((-628 |#1|) (-628 |#1|) |#1| (-628 |#1|))) (-15 -1746 ((-628 |#1|) (-628 |#1|) (-628 |#1|) |#1|)) (-15 -3758 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -3554 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|) (-708))) (-15 ** ((-628 |#1|) (-628 |#1|) (-708)))) (-971)) (T -629))
-((** (*1 *2 *2 *3) (-12 (-5 *2 (-628 *4)) (-5 *3 (-708)) (-4 *4 (-971)) (-5 *1 (-629 *4)))) (-3554 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-628 *4)) (-5 *3 (-708)) (-4 *4 (-971)) (-5 *1 (-629 *4)))) (-3758 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))) (-1746 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))) (-2476 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))) (-4038 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))) (-4038 (*1 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))) (-3163 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))) (-1633 (*1 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
-(-10 -7 (-15 -1633 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -3163 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -4038 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -4038 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -2476 ((-628 |#1|) (-628 |#1|) |#1| (-628 |#1|))) (-15 -1746 ((-628 |#1|) (-628 |#1|) (-628 |#1|) |#1|)) (-15 -3758 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -3554 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|) (-708))) (-15 ** ((-628 |#1|) (-628 |#1|) (-708))))
-((-2062 ((|#2| |#2| |#4|) 25)) (-3807 (((-628 |#2|) |#3| |#4|) 31)) (-1590 (((-628 |#2|) |#2| |#4|) 30)) (-2915 (((-1166 |#2|) |#2| |#4|) 16)) (-2142 ((|#2| |#3| |#4|) 24)) (-3998 (((-628 |#2|) |#3| |#4| (-708) (-708)) 38)) (-1695 (((-628 |#2|) |#2| |#4| (-708)) 37)))
-(((-630 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2915 ((-1166 |#2|) |#2| |#4|)) (-15 -2142 (|#2| |#3| |#4|)) (-15 -2062 (|#2| |#2| |#4|)) (-15 -1590 ((-628 |#2|) |#2| |#4|)) (-15 -1695 ((-628 |#2|) |#2| |#4| (-708))) (-15 -3807 ((-628 |#2|) |#3| |#4|)) (-15 -3998 ((-628 |#2|) |#3| |#4| (-708) (-708)))) (-1014) (-829 |#1|) (-348 |#2|) (-13 (-348 |#1|) (-10 -7 (-6 -4238)))) (T -630))
-((-3998 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-708)) (-4 *6 (-1014)) (-4 *7 (-829 *6)) (-5 *2 (-628 *7)) (-5 *1 (-630 *6 *7 *3 *4)) (-4 *3 (-348 *7)) (-4 *4 (-13 (-348 *6) (-10 -7 (-6 -4238)))))) (-3807 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-4 *6 (-829 *5)) (-5 *2 (-628 *6)) (-5 *1 (-630 *5 *6 *3 *4)) (-4 *3 (-348 *6)) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))) (-1695 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-708)) (-4 *6 (-1014)) (-4 *3 (-829 *6)) (-5 *2 (-628 *3)) (-5 *1 (-630 *6 *3 *7 *4)) (-4 *7 (-348 *3)) (-4 *4 (-13 (-348 *6) (-10 -7 (-6 -4238)))))) (-1590 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-4 *3 (-829 *5)) (-5 *2 (-628 *3)) (-5 *1 (-630 *5 *3 *6 *4)) (-4 *6 (-348 *3)) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))) (-2062 (*1 *2 *2 *3) (-12 (-4 *4 (-1014)) (-4 *2 (-829 *4)) (-5 *1 (-630 *4 *2 *5 *3)) (-4 *5 (-348 *2)) (-4 *3 (-13 (-348 *4) (-10 -7 (-6 -4238)))))) (-2142 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-4 *2 (-829 *5)) (-5 *1 (-630 *5 *2 *3 *4)) (-4 *3 (-348 *2)) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))) (-2915 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-4 *3 (-829 *5)) (-5 *2 (-1166 *3)) (-5 *1 (-630 *5 *3 *6 *4)) (-4 *6 (-348 *3)) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))))
-(-10 -7 (-15 -2915 ((-1166 |#2|) |#2| |#4|)) (-15 -2142 (|#2| |#3| |#4|)) (-15 -2062 (|#2| |#2| |#4|)) (-15 -1590 ((-628 |#2|) |#2| |#4|)) (-15 -1695 ((-628 |#2|) |#2| |#4| (-708))) (-15 -3807 ((-628 |#2|) |#3| |#4|)) (-15 -3998 ((-628 |#2|) |#3| |#4| (-708) (-708))))
-((-2297 (((-2 (|:| |num| (-628 |#1|)) (|:| |den| |#1|)) (-628 |#2|)) 18)) (-1847 ((|#1| (-628 |#2|)) 9)) (-3513 (((-628 |#1|) (-628 |#2|)) 16)))
-(((-631 |#1| |#2|) (-10 -7 (-15 -1847 (|#1| (-628 |#2|))) (-15 -3513 ((-628 |#1|) (-628 |#2|))) (-15 -2297 ((-2 (|:| |num| (-628 |#1|)) (|:| |den| |#1|)) (-628 |#2|)))) (-514) (-919 |#1|)) (T -631))
-((-2297 (*1 *2 *3) (-12 (-5 *3 (-628 *5)) (-4 *5 (-919 *4)) (-4 *4 (-514)) (-5 *2 (-2 (|:| |num| (-628 *4)) (|:| |den| *4))) (-5 *1 (-631 *4 *5)))) (-3513 (*1 *2 *3) (-12 (-5 *3 (-628 *5)) (-4 *5 (-919 *4)) (-4 *4 (-514)) (-5 *2 (-628 *4)) (-5 *1 (-631 *4 *5)))) (-1847 (*1 *2 *3) (-12 (-5 *3 (-628 *4)) (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-631 *2 *4)))))
-(-10 -7 (-15 -1847 (|#1| (-628 |#2|))) (-15 -3513 ((-628 |#1|) (-628 |#2|))) (-15 -2297 ((-2 (|:| |num| (-628 |#1|)) (|:| |den| |#1|)) (-628 |#2|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-3174 (((-628 (-637))) NIL) (((-628 (-637)) (-1166 $)) NIL)) (-1865 (((-637) $) NIL)) (-2908 (($ $) NIL (|has| (-637) (-1106)))) (-2772 (($ $) NIL (|has| (-637) (-1106)))) (-1398 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-637) (-324)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-637) (-283)) (|has| (-637) (-838))))) (-3119 (($ $) NIL (-3708 (-12 (|has| (-637) (-283)) (|has| (-637) (-838))) (|has| (-637) (-338))))) (-3450 (((-393 $) $) NIL (-3708 (-12 (|has| (-637) (-283)) (|has| (-637) (-838))) (|has| (-637) (-338))))) (-1929 (($ $) NIL (-12 (|has| (-637) (-928)) (|has| (-637) (-1106))))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-637) (-283)) (|has| (-637) (-838))))) (-1687 (((-108) $ $) NIL (|has| (-637) (-283)))) (-1629 (((-708)) NIL (|has| (-637) (-343)))) (-2884 (($ $) NIL (|has| (-637) (-1106)))) (-2748 (($ $) NIL (|has| (-637) (-1106)))) (-2930 (($ $) NIL (|has| (-637) (-1106)))) (-2794 (($ $) NIL (|has| (-637) (-1106)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL) (((-3 (-637) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-637) (-962 (-382 (-522)))))) (-1484 (((-522) $) NIL) (((-637) $) NIL) (((-382 (-522)) $) NIL (|has| (-637) (-962 (-382 (-522)))))) (-3766 (($ (-1166 (-637))) NIL) (($ (-1166 (-637)) (-1166 $)) NIL)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-637) (-324)))) (-2277 (($ $ $) NIL (|has| (-637) (-283)))) (-2109 (((-628 (-637)) $) NIL) (((-628 (-637)) $ (-1166 $)) NIL)) (-2096 (((-628 (-637)) (-628 $)) NIL) (((-2 (|:| -1222 (-628 (-637))) (|:| |vec| (-1166 (-637)))) (-628 $) (-1166 $)) NIL) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-637) (-584 (-522)))) (((-628 (-522)) (-628 $)) NIL (|has| (-637) (-584 (-522))))) (-3864 (((-3 $ "failed") (-382 (-1081 (-637)))) NIL (|has| (-637) (-338))) (($ (-1081 (-637))) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-1937 (((-637) $) 29)) (-1664 (((-3 (-382 (-522)) "failed") $) NIL (|has| (-637) (-507)))) (-1770 (((-108) $) NIL (|has| (-637) (-507)))) (-1492 (((-382 (-522)) $) NIL (|has| (-637) (-507)))) (-3166 (((-850)) NIL)) (-3255 (($) NIL (|has| (-637) (-343)))) (-2254 (($ $ $) NIL (|has| (-637) (-283)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| (-637) (-283)))) (-1223 (($) NIL (|has| (-637) (-324)))) (-2511 (((-108) $) NIL (|has| (-637) (-324)))) (-2111 (($ $) NIL (|has| (-637) (-324))) (($ $ (-708)) NIL (|has| (-637) (-324)))) (-2813 (((-108) $) NIL (-3708 (-12 (|has| (-637) (-283)) (|has| (-637) (-838))) (|has| (-637) (-338))))) (-3329 (((-2 (|:| |r| (-637)) (|:| |phi| (-637))) $) NIL (-12 (|has| (-637) (-980)) (|has| (-637) (-1106))))) (-2838 (($) NIL (|has| (-637) (-1106)))) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-637) (-815 (-354)))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-637) (-815 (-522))))) (-3714 (((-770 (-850)) $) NIL (|has| (-637) (-324))) (((-850) $) NIL (|has| (-637) (-324)))) (-2782 (((-108) $) NIL)) (-1504 (($ $ (-522)) NIL (-12 (|has| (-637) (-928)) (|has| (-637) (-1106))))) (-2100 (((-637) $) NIL)) (-3004 (((-3 $ "failed") $) NIL (|has| (-637) (-324)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| (-637) (-283)))) (-1712 (((-1081 (-637)) $) NIL (|has| (-637) (-338)))) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-1391 (($ (-1 (-637) (-637)) $) NIL)) (-2120 (((-850) $) NIL (|has| (-637) (-343)))) (-1254 (($ $) NIL (|has| (-637) (-1106)))) (-3849 (((-1081 (-637)) $) NIL)) (-2224 (($ (-588 $)) NIL (|has| (-637) (-283))) (($ $ $) NIL (|has| (-637) (-283)))) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL (|has| (-637) (-338)))) (-3802 (($) NIL (|has| (-637) (-324)) CONST)) (-2717 (($ (-850)) NIL (|has| (-637) (-343)))) (-2059 (($) NIL)) (-1948 (((-637) $) 31)) (-4151 (((-1032) $) NIL)) (-1383 (($) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| (-637) (-283)))) (-2259 (($ (-588 $)) NIL (|has| (-637) (-283))) (($ $ $) NIL (|has| (-637) (-283)))) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL (|has| (-637) (-324)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-637) (-283)) (|has| (-637) (-838))))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-637) (-283)) (|has| (-637) (-838))))) (-1916 (((-393 $) $) NIL (-3708 (-12 (|has| (-637) (-283)) (|has| (-637) (-838))) (|has| (-637) (-338))))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-637) (-283))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| (-637) (-283)))) (-2232 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-637)) NIL (|has| (-637) (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| (-637) (-283)))) (-3266 (($ $) NIL (|has| (-637) (-1106)))) (-2289 (($ $ (-1085) (-637)) NIL (|has| (-637) (-483 (-1085) (-637)))) (($ $ (-588 (-1085)) (-588 (-637))) NIL (|has| (-637) (-483 (-1085) (-637)))) (($ $ (-588 (-270 (-637)))) NIL (|has| (-637) (-285 (-637)))) (($ $ (-270 (-637))) NIL (|has| (-637) (-285 (-637)))) (($ $ (-637) (-637)) NIL (|has| (-637) (-285 (-637)))) (($ $ (-588 (-637)) (-588 (-637))) NIL (|has| (-637) (-285 (-637))))) (-3730 (((-708) $) NIL (|has| (-637) (-283)))) (-2545 (($ $ (-637)) NIL (|has| (-637) (-262 (-637) (-637))))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| (-637) (-283)))) (-2769 (((-637)) NIL) (((-637) (-1166 $)) NIL)) (-3018 (((-3 (-708) "failed") $ $) NIL (|has| (-637) (-324))) (((-708) $) NIL (|has| (-637) (-324)))) (-2157 (($ $ (-1 (-637) (-637))) NIL) (($ $ (-1 (-637) (-637)) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-1085)) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-708)) NIL (|has| (-637) (-210))) (($ $) NIL (|has| (-637) (-210)))) (-1859 (((-628 (-637)) (-1166 $) (-1 (-637) (-637))) NIL (|has| (-637) (-338)))) (-1479 (((-1081 (-637))) NIL)) (-1738 (($ $) NIL (|has| (-637) (-1106)))) (-2804 (($ $) NIL (|has| (-637) (-1106)))) (-2581 (($) NIL (|has| (-637) (-324)))) (-2919 (($ $) NIL (|has| (-637) (-1106)))) (-2784 (($ $) NIL (|has| (-637) (-1106)))) (-2896 (($ $) NIL (|has| (-637) (-1106)))) (-2761 (($ $) NIL (|has| (-637) (-1106)))) (-3677 (((-628 (-637)) (-1166 $)) NIL) (((-1166 (-637)) $) NIL) (((-628 (-637)) (-1166 $) (-1166 $)) NIL) (((-1166 (-637)) $ (-1166 $)) NIL)) (-1431 (((-498) $) NIL (|has| (-637) (-563 (-498)))) (((-154 (-202)) $) NIL (|has| (-637) (-947))) (((-154 (-354)) $) NIL (|has| (-637) (-947))) (((-821 (-354)) $) NIL (|has| (-637) (-563 (-821 (-354))))) (((-821 (-522)) $) NIL (|has| (-637) (-563 (-821 (-522))))) (($ (-1081 (-637))) NIL) (((-1081 (-637)) $) NIL) (($ (-1166 (-637))) NIL) (((-1166 (-637)) $) NIL)) (-3122 (($ $) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-3708 (-12 (|has| (-637) (-283)) (|has| $ (-133)) (|has| (-637) (-838))) (|has| (-637) (-324))))) (-3911 (($ (-637) (-637)) 12)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-522)) NIL) (($ (-637)) NIL) (($ (-154 (-354))) 13) (($ (-154 (-522))) 19) (($ (-154 (-637))) 28) (($ (-154 (-639))) 25) (((-154 (-354)) $) 33) (($ (-382 (-522))) NIL (-3708 (|has| (-637) (-962 (-382 (-522)))) (|has| (-637) (-338))))) (-2143 (($ $) NIL (|has| (-637) (-324))) (((-3 $ "failed") $) NIL (-3708 (-12 (|has| (-637) (-283)) (|has| $ (-133)) (|has| (-637) (-838))) (|has| (-637) (-133))))) (-2051 (((-1081 (-637)) $) NIL)) (-2323 (((-708)) NIL)) (-3855 (((-1166 $)) NIL)) (-1759 (($ $) NIL (|has| (-637) (-1106)))) (-2836 (($ $) NIL (|has| (-637) (-1106)))) (-3958 (((-108) $ $) NIL)) (-1745 (($ $) NIL (|has| (-637) (-1106)))) (-2815 (($ $) NIL (|has| (-637) (-1106)))) (-1776 (($ $) NIL (|has| (-637) (-1106)))) (-2860 (($ $) NIL (|has| (-637) (-1106)))) (-3824 (((-637) $) NIL (|has| (-637) (-1106)))) (-3924 (($ $) NIL (|has| (-637) (-1106)))) (-2872 (($ $) NIL (|has| (-637) (-1106)))) (-1768 (($ $) NIL (|has| (-637) (-1106)))) (-2848 (($ $) NIL (|has| (-637) (-1106)))) (-1752 (($ $) NIL (|has| (-637) (-1106)))) (-2825 (($ $) NIL (|has| (-637) (-1106)))) (-2241 (($ $) NIL (|has| (-637) (-980)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| (-637) (-338)))) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-1 (-637) (-637))) NIL) (($ $ (-1 (-637) (-637)) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-1085)) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-708)) NIL (|has| (-637) (-210))) (($ $) NIL (|has| (-637) (-210)))) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL (|has| (-637) (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ $) NIL (|has| (-637) (-1106))) (($ $ (-382 (-522))) NIL (-12 (|has| (-637) (-928)) (|has| (-637) (-1106)))) (($ $ (-522)) NIL (|has| (-637) (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ (-637) $) NIL) (($ $ (-637)) NIL) (($ (-382 (-522)) $) NIL (|has| (-637) (-338))) (($ $ (-382 (-522))) NIL (|has| (-637) (-338)))))
-(((-632) (-13 (-362) (-151 (-637)) (-10 -8 (-15 -2190 ($ (-154 (-354)))) (-15 -2190 ($ (-154 (-522)))) (-15 -2190 ($ (-154 (-637)))) (-15 -2190 ($ (-154 (-639)))) (-15 -2190 ((-154 (-354)) $))))) (T -632))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-154 (-354))) (-5 *1 (-632)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-154 (-522))) (-5 *1 (-632)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-154 (-637))) (-5 *1 (-632)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-154 (-639))) (-5 *1 (-632)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-154 (-354))) (-5 *1 (-632)))))
-(-13 (-362) (-151 (-637)) (-10 -8 (-15 -2190 ($ (-154 (-354)))) (-15 -2190 ($ (-154 (-522)))) (-15 -2190 ($ (-154 (-637)))) (-15 -2190 ($ (-154 (-639)))) (-15 -2190 ((-154 (-354)) $))))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) 8)) (-2790 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-3362 (($ $) 62)) (-2333 (($ $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3859 (($ |#1| $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4238)))) (-1423 (($ |#1| $) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4238)))) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-2116 ((|#1| $) 39)) (-4095 (($ |#1| $) 40) (($ |#1| $ (-708)) 63)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-4087 ((|#1| $) 41)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-3698 (((-588 (-2 (|:| -3048 |#1|) (|:| -4168 (-708)))) $) 61)) (-3990 (($) 49) (($ (-588 |#1|)) 48)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-1431 (((-498) $) 59 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 50)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2795 (($ (-588 |#1|)) 42)) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-2208 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-108)))) (-3498 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-108)))) (-3455 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-108)))) (-4047 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-108)))) (-1785 (*1 *1 *2 *2) (-12 (-5 *2 (-708)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1347 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1348 (*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-3215 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-3215 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-2217 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *2)) (-4 *4 (-348 *3)) (-4 *2 (-348 *3)))) (-2682 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *1 (-626 *3 *2 *4)) (-4 *2 (-348 *3)) (-4 *4 (-348 *3)))) (-2682 (*1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-2449 (*1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-3594 (*1 *1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-3021 (*1 *1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-2862 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-588 (-588 *3))))) (-2683 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-588 (-522))) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-2437 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-588 (-522))) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-3637 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1957 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1834 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-3352 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-1661 (*1 *1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-1672 (*1 *1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (-1672 (*1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-626 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *2 (-348 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-626 *3 *2 *4)) (-4 *3 (-971)) (-4 *2 (-348 *3)) (-4 *4 (-348 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))) (-2276 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (-4 *2 (-514)))) (-1682 (*1 *1 *1 *2) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (-4 *2 (-338)))) (-2091 (*1 *1 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (-4 *2 (-283)))) (-1692 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-4 *3 (-514)) (-5 *2 (-708)))) (-2336 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-4 *3 (-514)) (-5 *2 (-708)))) (-2819 (*1 *2 *1) (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-4 *3 (-514)) (-5 *2 (-588 *5)))) (-2500 (*1 *2 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971)))) (-3721 (*1 *2 *1) (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971)))) (-3073 (*1 *1 *1) (|partial| -12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (-4 *2 (-338)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-4 *3 (-338)))))
+(-13 (-55 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4239) (-6 -4238) (-15 -2208 ((-108) $)) (-15 -3498 ((-108) $)) (-15 -3455 ((-108) $)) (-15 -4047 ((-108) $)) (-15 -1785 ($ (-708) (-708))) (-15 -1347 ($ (-588 (-588 |t#1|)))) (-15 -1348 ($ (-708) |t#1|)) (-15 -3215 ($ (-588 |t#1|))) (-15 -3215 ($ (-588 $))) (-15 -2217 ($ |t#3|)) (-15 -2682 ($ |t#2|)) (-15 -2682 ($ $)) (-15 -2449 ($ $)) (-15 -3594 ($ $ $)) (-15 -3021 ($ $ $)) (-15 -2862 ((-588 (-588 |t#1|)) $)) (-15 -2683 ($ $ (-588 (-522)) (-588 (-522)))) (-15 -2437 ($ $ (-588 (-522)) (-588 (-522)) $)) (-15 -3637 ($ $ (-522) (-522))) (-15 -1957 ($ $ (-522) (-522))) (-15 -1834 ($ $ (-522) (-522) (-522) (-522))) (-15 -3352 ($ $ (-522) (-522) $)) (-15 -1661 ($ $ $)) (-15 -1672 ($ $ $)) (-15 -1672 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-522) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-708))) (IF (|has| |t#1| (-514)) (-15 -2276 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-338)) (-15 -1682 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-283)) (-15 -2091 ($ $)) |%noBranch|) (IF (|has| |t#1| (-514)) (PROGN (-15 -1692 ((-708) $)) (-15 -2336 ((-708) $)) (-15 -2819 ((-588 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4240 "*"))) (PROGN (-15 -2500 (|t#1| $)) (-15 -3721 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-338)) (PROGN (-15 -3073 ((-3 $ "failed") $)) (-15 ** ($ $ (-522)))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-55 |#1| |#2| |#3|) . T) ((-1120) . T))
+((-2091 ((|#4| |#4|) 68 (|has| |#1| (-283)))) (-1692 (((-708) |#4|) 70 (|has| |#1| (-514)))) (-2336 (((-708) |#4|) 72 (|has| |#1| (-514)))) (-2819 (((-588 |#3|) |#4|) 79 (|has| |#1| (-514)))) (-2419 (((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|) 96 (|has| |#1| (-283)))) (-3721 ((|#1| |#4|) 34)) (-3750 (((-3 |#4| "failed") |#4|) 62 (|has| |#1| (-514)))) (-3073 (((-3 |#4| "failed") |#4|) 76 (|has| |#1| (-338)))) (-1364 ((|#4| |#4|) 55 (|has| |#1| (-514)))) (-3905 ((|#4| |#4| |#1| (-522) (-522)) 42)) (-3653 ((|#4| |#4| (-522) (-522)) 37)) (-2117 ((|#4| |#4| |#1| (-522) (-522)) 47)) (-2500 ((|#1| |#4|) 74)) (-3397 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 58 (|has| |#1| (-514)))))
+(((-627 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2500 (|#1| |#4|)) (-15 -3721 (|#1| |#4|)) (-15 -3653 (|#4| |#4| (-522) (-522))) (-15 -3905 (|#4| |#4| |#1| (-522) (-522))) (-15 -2117 (|#4| |#4| |#1| (-522) (-522))) (IF (|has| |#1| (-514)) (PROGN (-15 -1692 ((-708) |#4|)) (-15 -2336 ((-708) |#4|)) (-15 -2819 ((-588 |#3|) |#4|)) (-15 -1364 (|#4| |#4|)) (-15 -3750 ((-3 |#4| "failed") |#4|)) (-15 -3397 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-283)) (PROGN (-15 -2091 (|#4| |#4|)) (-15 -2419 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-338)) (-15 -3073 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-157) (-348 |#1|) (-348 |#1|) (-626 |#1| |#2| |#3|)) (T -627))
+((-3073 (*1 *2 *2) (|partial| -12 (-4 *3 (-338)) (-4 *3 (-157)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-2419 (*1 *2 *3 *3) (-12 (-4 *3 (-283)) (-4 *3 (-157)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-627 *3 *4 *5 *6)) (-4 *6 (-626 *3 *4 *5)))) (-2091 (*1 *2 *2) (-12 (-4 *3 (-283)) (-4 *3 (-157)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-3397 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-627 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-3750 (*1 *2 *2) (|partial| -12 (-4 *3 (-514)) (-4 *3 (-157)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-1364 (*1 *2 *2) (-12 (-4 *3 (-514)) (-4 *3 (-157)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-2819 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-588 *6)) (-5 *1 (-627 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-2336 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-708)) (-5 *1 (-627 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-1692 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-708)) (-5 *1 (-627 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-2117 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-522)) (-4 *3 (-157)) (-4 *5 (-348 *3)) (-4 *6 (-348 *3)) (-5 *1 (-627 *3 *5 *6 *2)) (-4 *2 (-626 *3 *5 *6)))) (-3905 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-522)) (-4 *3 (-157)) (-4 *5 (-348 *3)) (-4 *6 (-348 *3)) (-5 *1 (-627 *3 *5 *6 *2)) (-4 *2 (-626 *3 *5 *6)))) (-3653 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-522)) (-4 *4 (-157)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *1 (-627 *4 *5 *6 *2)) (-4 *2 (-626 *4 *5 *6)))) (-3721 (*1 *2 *3) (-12 (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-157)) (-5 *1 (-627 *2 *4 *5 *3)) (-4 *3 (-626 *2 *4 *5)))) (-2500 (*1 *2 *3) (-12 (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-157)) (-5 *1 (-627 *2 *4 *5 *3)) (-4 *3 (-626 *2 *4 *5)))))
+(-10 -7 (-15 -2500 (|#1| |#4|)) (-15 -3721 (|#1| |#4|)) (-15 -3653 (|#4| |#4| (-522) (-522))) (-15 -3905 (|#4| |#4| |#1| (-522) (-522))) (-15 -2117 (|#4| |#4| |#1| (-522) (-522))) (IF (|has| |#1| (-514)) (PROGN (-15 -1692 ((-708) |#4|)) (-15 -2336 ((-708) |#4|)) (-15 -2819 ((-588 |#3|) |#4|)) (-15 -1364 (|#4| |#4|)) (-15 -3750 ((-3 |#4| "failed") |#4|)) (-15 -3397 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-283)) (PROGN (-15 -2091 (|#4| |#4|)) (-15 -2419 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-338)) (-15 -3073 ((-3 |#4| "failed") |#4|)) |%noBranch|))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1785 (($ (-708) (-708)) 45)) (-3021 (($ $ $) NIL)) (-2682 (($ (-1166 |#1|)) NIL) (($ $) NIL)) (-3455 (((-108) $) NIL)) (-3637 (($ $ (-522) (-522)) 12)) (-1957 (($ $ (-522) (-522)) NIL)) (-1834 (($ $ (-522) (-522) (-522) (-522)) NIL)) (-2449 (($ $) NIL)) (-2208 (((-108) $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-3352 (($ $ (-522) (-522) $) NIL)) (-2437 ((|#1| $ (-522) (-522) |#1|) NIL) (($ $ (-588 (-522)) (-588 (-522)) $) NIL)) (-3074 (($ $ (-522) (-1166 |#1|)) NIL)) (-4060 (($ $ (-522) (-1166 |#1|)) NIL)) (-1348 (($ (-708) |#1|) 22)) (-3367 (($) NIL T CONST)) (-2091 (($ $) 30 (|has| |#1| (-283)))) (-2635 (((-1166 |#1|) $ (-522)) NIL)) (-1692 (((-708) $) 32 (|has| |#1| (-514)))) (-2411 ((|#1| $ (-522) (-522) |#1|) 50)) (-2186 ((|#1| $ (-522) (-522)) NIL)) (-2395 (((-588 |#1|) $) NIL)) (-2336 (((-708) $) 34 (|has| |#1| (-514)))) (-2819 (((-588 (-1166 |#1|)) $) 37 (|has| |#1| (-514)))) (-2949 (((-708) $) 20)) (-1893 (($ (-708) (-708) |#1|) NIL)) (-2960 (((-708) $) 21)) (-1480 (((-108) $ (-708)) NIL)) (-3721 ((|#1| $) 28 (|has| |#1| (-6 (-4240 "*"))))) (-2604 (((-522) $) 9)) (-4042 (((-522) $) 10)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1925 (((-522) $) 11)) (-2595 (((-522) $) 46)) (-1347 (($ (-588 (-588 |#1|))) NIL)) (-2397 (($ (-1 |#1| |#1|) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2862 (((-588 (-588 |#1|)) $) 58)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-3073 (((-3 $ "failed") $) 41 (|has| |#1| (-338)))) (-3594 (($ $ $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1972 (($ $ |#1|) NIL)) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ (-522) (-522)) NIL) ((|#1| $ (-522) (-522) |#1|) NIL) (($ $ (-588 (-522)) (-588 (-522))) NIL)) (-3215 (($ (-588 |#1|)) NIL) (($ (-588 $)) NIL) (($ (-1166 |#1|)) 51)) (-3498 (((-108) $) NIL)) (-2500 ((|#1| $) 26 (|has| |#1| (-6 (-4240 "*"))))) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-3873 (((-498) $) 62 (|has| |#1| (-563 (-498))))) (-2223 (((-1166 |#1|) $ (-522)) NIL)) (-2217 (($ (-1166 |#1|)) NIL) (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-4047 (((-108) $) NIL)) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $ $) NIL) (($ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-708)) 23) (($ $ (-522)) 44 (|has| |#1| (-338)))) (* (($ $ $) 13) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-522) $) NIL) (((-1166 |#1|) $ (-1166 |#1|)) NIL) (((-1166 |#1|) (-1166 |#1|) $) NIL)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-628 |#1|) (-13 (-626 |#1| (-1166 |#1|) (-1166 |#1|)) (-10 -8 (-15 -3215 ($ (-1166 |#1|))) (IF (|has| |#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |#1| (-338)) (-15 -3073 ((-3 $ "failed") $)) |%noBranch|))) (-971)) (T -628))
+((-3073 (*1 *1 *1) (|partial| -12 (-5 *1 (-628 *2)) (-4 *2 (-338)) (-4 *2 (-971)))) (-3215 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-971)) (-5 *1 (-628 *3)))))
+(-13 (-626 |#1| (-1166 |#1|) (-1166 |#1|)) (-10 -8 (-15 -3215 ($ (-1166 |#1|))) (IF (|has| |#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |#1| (-338)) (-15 -3073 ((-3 $ "failed") $)) |%noBranch|)))
+((-3163 (((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|)) 25)) (-1473 (((-628 |#1|) (-628 |#1|) (-628 |#1|) |#1|) 21)) (-1716 (((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|) (-708)) 26)) (-3267 (((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|)) 14)) (-4025 (((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|)) 18) (((-628 |#1|) (-628 |#1|) (-628 |#1|)) 16)) (-3034 (((-628 |#1|) (-628 |#1|) |#1| (-628 |#1|)) 20)) (-2193 (((-628 |#1|) (-628 |#1|) (-628 |#1|)) 12)) (** (((-628 |#1|) (-628 |#1|) (-708)) 30)))
+(((-629 |#1|) (-10 -7 (-15 -2193 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -3267 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -4025 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -4025 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -3034 ((-628 |#1|) (-628 |#1|) |#1| (-628 |#1|))) (-15 -1473 ((-628 |#1|) (-628 |#1|) (-628 |#1|) |#1|)) (-15 -3163 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -1716 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|) (-708))) (-15 ** ((-628 |#1|) (-628 |#1|) (-708)))) (-971)) (T -629))
+((** (*1 *2 *2 *3) (-12 (-5 *2 (-628 *4)) (-5 *3 (-708)) (-4 *4 (-971)) (-5 *1 (-629 *4)))) (-1716 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-628 *4)) (-5 *3 (-708)) (-4 *4 (-971)) (-5 *1 (-629 *4)))) (-3163 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))) (-1473 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))) (-3034 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))) (-4025 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))) (-4025 (*1 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))) (-3267 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))) (-2193 (*1 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
+(-10 -7 (-15 -2193 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -3267 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -4025 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -4025 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -3034 ((-628 |#1|) (-628 |#1|) |#1| (-628 |#1|))) (-15 -1473 ((-628 |#1|) (-628 |#1|) (-628 |#1|) |#1|)) (-15 -3163 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -1716 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|) (-628 |#1|) (-708))) (-15 ** ((-628 |#1|) (-628 |#1|) (-708))))
+((-2798 ((|#2| |#2| |#4|) 25)) (-2435 (((-628 |#2|) |#3| |#4|) 31)) (-3714 (((-628 |#2|) |#2| |#4|) 30)) (-3480 (((-1166 |#2|) |#2| |#4|) 16)) (-3030 ((|#2| |#3| |#4|) 24)) (-3621 (((-628 |#2|) |#3| |#4| (-708) (-708)) 38)) (-4027 (((-628 |#2|) |#2| |#4| (-708)) 37)))
+(((-630 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3480 ((-1166 |#2|) |#2| |#4|)) (-15 -3030 (|#2| |#3| |#4|)) (-15 -2798 (|#2| |#2| |#4|)) (-15 -3714 ((-628 |#2|) |#2| |#4|)) (-15 -4027 ((-628 |#2|) |#2| |#4| (-708))) (-15 -2435 ((-628 |#2|) |#3| |#4|)) (-15 -3621 ((-628 |#2|) |#3| |#4| (-708) (-708)))) (-1014) (-829 |#1|) (-348 |#2|) (-13 (-348 |#1|) (-10 -7 (-6 -4238)))) (T -630))
+((-3621 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-708)) (-4 *6 (-1014)) (-4 *7 (-829 *6)) (-5 *2 (-628 *7)) (-5 *1 (-630 *6 *7 *3 *4)) (-4 *3 (-348 *7)) (-4 *4 (-13 (-348 *6) (-10 -7 (-6 -4238)))))) (-2435 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-4 *6 (-829 *5)) (-5 *2 (-628 *6)) (-5 *1 (-630 *5 *6 *3 *4)) (-4 *3 (-348 *6)) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))) (-4027 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-708)) (-4 *6 (-1014)) (-4 *3 (-829 *6)) (-5 *2 (-628 *3)) (-5 *1 (-630 *6 *3 *7 *4)) (-4 *7 (-348 *3)) (-4 *4 (-13 (-348 *6) (-10 -7 (-6 -4238)))))) (-3714 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-4 *3 (-829 *5)) (-5 *2 (-628 *3)) (-5 *1 (-630 *5 *3 *6 *4)) (-4 *6 (-348 *3)) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))) (-2798 (*1 *2 *2 *3) (-12 (-4 *4 (-1014)) (-4 *2 (-829 *4)) (-5 *1 (-630 *4 *2 *5 *3)) (-4 *5 (-348 *2)) (-4 *3 (-13 (-348 *4) (-10 -7 (-6 -4238)))))) (-3030 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-4 *2 (-829 *5)) (-5 *1 (-630 *5 *2 *3 *4)) (-4 *3 (-348 *2)) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))) (-3480 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-4 *3 (-829 *5)) (-5 *2 (-1166 *3)) (-5 *1 (-630 *5 *3 *6 *4)) (-4 *6 (-348 *3)) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))))
+(-10 -7 (-15 -3480 ((-1166 |#2|) |#2| |#4|)) (-15 -3030 (|#2| |#3| |#4|)) (-15 -2798 (|#2| |#2| |#4|)) (-15 -3714 ((-628 |#2|) |#2| |#4|)) (-15 -4027 ((-628 |#2|) |#2| |#4| (-708))) (-15 -2435 ((-628 |#2|) |#3| |#4|)) (-15 -3621 ((-628 |#2|) |#3| |#4| (-708) (-708))))
+((-2567 (((-2 (|:| |num| (-628 |#1|)) (|:| |den| |#1|)) (-628 |#2|)) 18)) (-2460 ((|#1| (-628 |#2|)) 9)) (-2508 (((-628 |#1|) (-628 |#2|)) 16)))
+(((-631 |#1| |#2|) (-10 -7 (-15 -2460 (|#1| (-628 |#2|))) (-15 -2508 ((-628 |#1|) (-628 |#2|))) (-15 -2567 ((-2 (|:| |num| (-628 |#1|)) (|:| |den| |#1|)) (-628 |#2|)))) (-514) (-919 |#1|)) (T -631))
+((-2567 (*1 *2 *3) (-12 (-5 *3 (-628 *5)) (-4 *5 (-919 *4)) (-4 *4 (-514)) (-5 *2 (-2 (|:| |num| (-628 *4)) (|:| |den| *4))) (-5 *1 (-631 *4 *5)))) (-2508 (*1 *2 *3) (-12 (-5 *3 (-628 *5)) (-4 *5 (-919 *4)) (-4 *4 (-514)) (-5 *2 (-628 *4)) (-5 *1 (-631 *4 *5)))) (-2460 (*1 *2 *3) (-12 (-5 *3 (-628 *4)) (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-631 *2 *4)))))
+(-10 -7 (-15 -2460 (|#1| (-628 |#2|))) (-15 -2508 ((-628 |#1|) (-628 |#2|))) (-15 -2567 ((-2 (|:| |num| (-628 |#1|)) (|:| |den| |#1|)) (-628 |#2|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-3356 (((-628 (-637))) NIL) (((-628 (-637)) (-1166 $)) NIL)) (-1945 (((-637) $) NIL)) (-3044 (($ $) NIL (|has| (-637) (-1106)))) (-2923 (($ $) NIL (|has| (-637) (-1106)))) (-3833 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-637) (-324)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-637) (-283)) (|has| (-637) (-838))))) (-2961 (($ $) NIL (-3844 (-12 (|has| (-637) (-283)) (|has| (-637) (-838))) (|has| (-637) (-338))))) (-3133 (((-393 $) $) NIL (-3844 (-12 (|has| (-637) (-283)) (|has| (-637) (-838))) (|has| (-637) (-338))))) (-2016 (($ $) NIL (-12 (|has| (-637) (-928)) (|has| (-637) (-1106))))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-637) (-283)) (|has| (-637) (-838))))) (-2805 (((-108) $ $) NIL (|has| (-637) (-283)))) (-1685 (((-708)) NIL (|has| (-637) (-343)))) (-3023 (($ $) NIL (|has| (-637) (-1106)))) (-2906 (($ $) NIL (|has| (-637) (-1106)))) (-3066 (($ $) NIL (|has| (-637) (-1106)))) (-2936 (($ $) NIL (|has| (-637) (-1106)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL) (((-3 (-637) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-637) (-962 (-382 (-522)))))) (-1478 (((-522) $) NIL) (((-637) $) NIL) (((-382 (-522)) $) NIL (|has| (-637) (-962 (-382 (-522)))))) (-3225 (($ (-1166 (-637))) NIL) (($ (-1166 (-637)) (-1166 $)) NIL)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-637) (-324)))) (-2333 (($ $ $) NIL (|has| (-637) (-283)))) (-1359 (((-628 (-637)) $) NIL) (((-628 (-637)) $ (-1166 $)) NIL)) (-1226 (((-628 (-637)) (-628 $)) NIL) (((-2 (|:| -2149 (-628 (-637))) (|:| |vec| (-1166 (-637)))) (-628 $) (-1166 $)) NIL) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-637) (-584 (-522)))) (((-628 (-522)) (-628 $)) NIL (|has| (-637) (-584 (-522))))) (-2153 (((-3 $ "failed") (-382 (-1081 (-637)))) NIL (|has| (-637) (-338))) (($ (-1081 (-637))) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2025 (((-637) $) 29)) (-2549 (((-3 (-382 (-522)) "failed") $) NIL (|has| (-637) (-507)))) (-3519 (((-108) $) NIL (|has| (-637) (-507)))) (-1699 (((-382 (-522)) $) NIL (|has| (-637) (-507)))) (-1692 (((-850)) NIL)) (-3344 (($) NIL (|has| (-637) (-343)))) (-2303 (($ $ $) NIL (|has| (-637) (-283)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| (-637) (-283)))) (-2160 (($) NIL (|has| (-637) (-324)))) (-2087 (((-108) $) NIL (|has| (-637) (-324)))) (-1380 (($ $) NIL (|has| (-637) (-324))) (($ $ (-708)) NIL (|has| (-637) (-324)))) (-2725 (((-108) $) NIL (-3844 (-12 (|has| (-637) (-283)) (|has| (-637) (-838))) (|has| (-637) (-338))))) (-1272 (((-2 (|:| |r| (-637)) (|:| |phi| (-637))) $) NIL (-12 (|has| (-637) (-980)) (|has| (-637) (-1106))))) (-2980 (($) NIL (|has| (-637) (-1106)))) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-637) (-815 (-354)))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-637) (-815 (-522))))) (-3872 (((-770 (-850)) $) NIL (|has| (-637) (-324))) (((-850) $) NIL (|has| (-637) (-324)))) (-2859 (((-108) $) NIL)) (-1811 (($ $ (-522)) NIL (-12 (|has| (-637) (-928)) (|has| (-637) (-1106))))) (-1269 (((-637) $) NIL)) (-4208 (((-3 $ "failed") $) NIL (|has| (-637) (-324)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| (-637) (-283)))) (-4199 (((-1081 (-637)) $) NIL (|has| (-637) (-338)))) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-3810 (($ (-1 (-637) (-637)) $) NIL)) (-1475 (((-850) $) NIL (|has| (-637) (-343)))) (-1238 (($ $) NIL (|has| (-637) (-1106)))) (-2142 (((-1081 (-637)) $) NIL)) (-2267 (($ (-588 $)) NIL (|has| (-637) (-283))) (($ $ $) NIL (|has| (-637) (-283)))) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL (|has| (-637) (-338)))) (-3937 (($) NIL (|has| (-637) (-324)) CONST)) (-2882 (($ (-850)) NIL (|has| (-637) (-343)))) (-2755 (($) NIL)) (-2033 (((-637) $) 31)) (-4174 (((-1032) $) NIL)) (-1368 (($) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| (-637) (-283)))) (-2308 (($ (-588 $)) NIL (|has| (-637) (-283))) (($ $ $) NIL (|has| (-637) (-283)))) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL (|has| (-637) (-324)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-637) (-283)) (|has| (-637) (-838))))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-637) (-283)) (|has| (-637) (-838))))) (-2006 (((-393 $) $) NIL (-3844 (-12 (|has| (-637) (-283)) (|has| (-637) (-838))) (|has| (-637) (-338))))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-637) (-283))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| (-637) (-283)))) (-2276 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-637)) NIL (|has| (-637) (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| (-637) (-283)))) (-3357 (($ $) NIL (|has| (-637) (-1106)))) (-2330 (($ $ (-1085) (-637)) NIL (|has| (-637) (-483 (-1085) (-637)))) (($ $ (-588 (-1085)) (-588 (-637))) NIL (|has| (-637) (-483 (-1085) (-637)))) (($ $ (-588 (-270 (-637)))) NIL (|has| (-637) (-285 (-637)))) (($ $ (-270 (-637))) NIL (|has| (-637) (-285 (-637)))) (($ $ (-637) (-637)) NIL (|has| (-637) (-285 (-637)))) (($ $ (-588 (-637)) (-588 (-637))) NIL (|has| (-637) (-285 (-637))))) (-4031 (((-708) $) NIL (|has| (-637) (-283)))) (-2683 (($ $ (-637)) NIL (|has| (-637) (-262 (-637) (-637))))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| (-637) (-283)))) (-1615 (((-637)) NIL) (((-637) (-1166 $)) NIL)) (-1304 (((-3 (-708) "failed") $ $) NIL (|has| (-637) (-324))) (((-708) $) NIL (|has| (-637) (-324)))) (-2731 (($ $ (-1 (-637) (-637))) NIL) (($ $ (-1 (-637) (-637)) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-1085)) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-708)) NIL (|has| (-637) (-210))) (($ $) NIL (|has| (-637) (-210)))) (-2620 (((-628 (-637)) (-1166 $) (-1 (-637) (-637))) NIL (|has| (-637) (-338)))) (-1579 (((-1081 (-637))) NIL)) (-1831 (($ $) NIL (|has| (-637) (-1106)))) (-2946 (($ $) NIL (|has| (-637) (-1106)))) (-2670 (($) NIL (|has| (-637) (-324)))) (-3054 (($ $) NIL (|has| (-637) (-1106)))) (-2928 (($ $) NIL (|has| (-637) (-1106)))) (-3035 (($ $) NIL (|has| (-637) (-1106)))) (-2915 (($ $) NIL (|has| (-637) (-1106)))) (-3510 (((-628 (-637)) (-1166 $)) NIL) (((-1166 (-637)) $) NIL) (((-628 (-637)) (-1166 $) (-1166 $)) NIL) (((-1166 (-637)) $ (-1166 $)) NIL)) (-3873 (((-498) $) NIL (|has| (-637) (-563 (-498)))) (((-154 (-202)) $) NIL (|has| (-637) (-947))) (((-154 (-354)) $) NIL (|has| (-637) (-947))) (((-821 (-354)) $) NIL (|has| (-637) (-563 (-821 (-354))))) (((-821 (-522)) $) NIL (|has| (-637) (-563 (-821 (-522))))) (($ (-1081 (-637))) NIL) (((-1081 (-637)) $) NIL) (($ (-1166 (-637))) NIL) (((-1166 (-637)) $) NIL)) (-2983 (($ $) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-3844 (-12 (|has| (-637) (-283)) (|has| $ (-133)) (|has| (-637) (-838))) (|has| (-637) (-324))))) (-4005 (($ (-637) (-637)) 12)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-522)) NIL) (($ (-637)) NIL) (($ (-154 (-354))) 13) (($ (-154 (-522))) 19) (($ (-154 (-637))) 28) (($ (-154 (-639))) 25) (((-154 (-354)) $) 33) (($ (-382 (-522))) NIL (-3844 (|has| (-637) (-962 (-382 (-522)))) (|has| (-637) (-338))))) (-3040 (($ $) NIL (|has| (-637) (-324))) (((-3 $ "failed") $) NIL (-3844 (-12 (|has| (-637) (-283)) (|has| $ (-133)) (|has| (-637) (-838))) (|has| (-637) (-133))))) (-2645 (((-1081 (-637)) $) NIL)) (-2742 (((-708)) NIL)) (-2905 (((-1166 $)) NIL)) (-1856 (($ $) NIL (|has| (-637) (-1106)))) (-2976 (($ $) NIL (|has| (-637) (-1106)))) (-1407 (((-108) $ $) NIL)) (-1839 (($ $) NIL (|has| (-637) (-1106)))) (-2957 (($ $) NIL (|has| (-637) (-1106)))) (-1873 (($ $) NIL (|has| (-637) (-1106)))) (-3001 (($ $) NIL (|has| (-637) (-1106)))) (-2636 (((-637) $) NIL (|has| (-637) (-1106)))) (-2476 (($ $) NIL (|has| (-637) (-1106)))) (-3011 (($ $) NIL (|has| (-637) (-1106)))) (-1864 (($ $) NIL (|has| (-637) (-1106)))) (-2989 (($ $) NIL (|has| (-637) (-1106)))) (-1849 (($ $) NIL (|has| (-637) (-1106)))) (-2966 (($ $) NIL (|has| (-637) (-1106)))) (-4126 (($ $) NIL (|has| (-637) (-980)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| (-637) (-338)))) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-1 (-637) (-637))) NIL) (($ $ (-1 (-637) (-637)) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-1085)) NIL (|has| (-637) (-829 (-1085)))) (($ $ (-708)) NIL (|has| (-637) (-210))) (($ $) NIL (|has| (-637) (-210)))) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL (|has| (-637) (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ $) NIL (|has| (-637) (-1106))) (($ $ (-382 (-522))) NIL (-12 (|has| (-637) (-928)) (|has| (-637) (-1106)))) (($ $ (-522)) NIL (|has| (-637) (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ (-637) $) NIL) (($ $ (-637)) NIL) (($ (-382 (-522)) $) NIL (|has| (-637) (-338))) (($ $ (-382 (-522))) NIL (|has| (-637) (-338)))))
+(((-632) (-13 (-362) (-151 (-637)) (-10 -8 (-15 -2217 ($ (-154 (-354)))) (-15 -2217 ($ (-154 (-522)))) (-15 -2217 ($ (-154 (-637)))) (-15 -2217 ($ (-154 (-639)))) (-15 -2217 ((-154 (-354)) $))))) (T -632))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-154 (-354))) (-5 *1 (-632)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-154 (-522))) (-5 *1 (-632)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-154 (-637))) (-5 *1 (-632)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-154 (-639))) (-5 *1 (-632)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-154 (-354))) (-5 *1 (-632)))))
+(-13 (-362) (-151 (-637)) (-10 -8 (-15 -2217 ($ (-154 (-354)))) (-15 -2217 ($ (-154 (-522)))) (-15 -2217 ($ (-154 (-637)))) (-15 -2217 ($ (-154 (-639)))) (-15 -2217 ((-154 (-354)) $))))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) 8)) (-1213 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-1581 (($ $) 62)) (-2379 (($ $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1700 (($ |#1| $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4238)))) (-1424 (($ |#1| $) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4238)))) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1431 ((|#1| $) 39)) (-3365 (($ |#1| $) 40) (($ |#1| $ (-708)) 63)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-3295 ((|#1| $) 41)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-3699 (((-588 (-2 (|:| -3149 |#1|) (|:| -4187 (-708)))) $) 61)) (-3546 (($) 49) (($ (-588 |#1|)) 48)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-3873 (((-498) $) 59 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 50)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2501 (($ (-588 |#1|)) 42)) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-633 |#1|) (-1197) (-1014)) (T -633))
-((-4095 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-633 *2)) (-4 *2 (-1014)))) (-3362 (*1 *1 *1) (-12 (-4 *1 (-633 *2)) (-4 *2 (-1014)))) (-3698 (*1 *2 *1) (-12 (-4 *1 (-633 *3)) (-4 *3 (-1014)) (-5 *2 (-588 (-2 (|:| -3048 *3) (|:| -4168 (-708))))))))
-(-13 (-212 |t#1|) (-10 -8 (-15 -4095 ($ |t#1| $ (-708))) (-15 -3362 ($ $)) (-15 -3698 ((-588 (-2 (|:| -3048 |t#1|) (|:| -4168 (-708)))) $))))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-212 |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-2809 (((-588 |#1|) (-588 (-2 (|:| -1916 |#1|) (|:| -2793 (-522)))) (-522)) 46)) (-1281 ((|#1| |#1| (-522)) 45)) (-2259 ((|#1| |#1| |#1| (-522)) 35)) (-1916 (((-588 |#1|) |#1| (-522)) 38)) (-1844 ((|#1| |#1| (-522) |#1| (-522)) 32)) (-1791 (((-588 (-2 (|:| -1916 |#1|) (|:| -2793 (-522)))) |#1| (-522)) 44)))
-(((-634 |#1|) (-10 -7 (-15 -2259 (|#1| |#1| |#1| (-522))) (-15 -1281 (|#1| |#1| (-522))) (-15 -1916 ((-588 |#1|) |#1| (-522))) (-15 -1791 ((-588 (-2 (|:| -1916 |#1|) (|:| -2793 (-522)))) |#1| (-522))) (-15 -2809 ((-588 |#1|) (-588 (-2 (|:| -1916 |#1|) (|:| -2793 (-522)))) (-522))) (-15 -1844 (|#1| |#1| (-522) |#1| (-522)))) (-1142 (-522))) (T -634))
-((-1844 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-634 *2)) (-4 *2 (-1142 *3)))) (-2809 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-2 (|:| -1916 *5) (|:| -2793 (-522))))) (-5 *4 (-522)) (-4 *5 (-1142 *4)) (-5 *2 (-588 *5)) (-5 *1 (-634 *5)))) (-1791 (*1 *2 *3 *4) (-12 (-5 *4 (-522)) (-5 *2 (-588 (-2 (|:| -1916 *3) (|:| -2793 *4)))) (-5 *1 (-634 *3)) (-4 *3 (-1142 *4)))) (-1916 (*1 *2 *3 *4) (-12 (-5 *4 (-522)) (-5 *2 (-588 *3)) (-5 *1 (-634 *3)) (-4 *3 (-1142 *4)))) (-1281 (*1 *2 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-634 *2)) (-4 *2 (-1142 *3)))) (-2259 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-634 *2)) (-4 *2 (-1142 *3)))))
-(-10 -7 (-15 -2259 (|#1| |#1| |#1| (-522))) (-15 -1281 (|#1| |#1| (-522))) (-15 -1916 ((-588 |#1|) |#1| (-522))) (-15 -1791 ((-588 (-2 (|:| -1916 |#1|) (|:| -2793 (-522)))) |#1| (-522))) (-15 -2809 ((-588 |#1|) (-588 (-2 (|:| -1916 |#1|) (|:| -2793 (-522)))) (-522))) (-15 -1844 (|#1| |#1| (-522) |#1| (-522))))
-((-3541 (((-1 (-872 (-202)) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202) (-202))) 17)) (-2732 (((-1045 (-202)) (-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-588 (-239))) 38) (((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-588 (-239))) 40) (((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-3 (-1 (-202) (-202) (-202) (-202)) "undefined") (-1009 (-202)) (-1009 (-202)) (-588 (-239))) 42)) (-1682 (((-1045 (-202)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-588 (-239))) NIL)) (-2683 (((-1045 (-202)) (-1 (-202) (-202) (-202)) (-3 (-1 (-202) (-202) (-202) (-202)) "undefined") (-1009 (-202)) (-1009 (-202)) (-588 (-239))) 43)))
-(((-635) (-10 -7 (-15 -2732 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-3 (-1 (-202) (-202) (-202) (-202)) "undefined") (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -2732 ((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -2732 ((-1045 (-202)) (-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -2683 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-3 (-1 (-202) (-202) (-202) (-202)) "undefined") (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -1682 ((-1045 (-202)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -3541 ((-1 (-872 (-202)) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202) (-202)))))) (T -635))
-((-3541 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-1 (-202) (-202) (-202) (-202))) (-5 *2 (-1 (-872 (-202)) (-202) (-202))) (-5 *1 (-635)))) (-1682 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202))) (-5 *5 (-1009 (-202))) (-5 *6 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-635)))) (-2683 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-3 (-1 (-202) (-202) (-202) (-202)) "undefined")) (-5 *5 (-1009 (-202))) (-5 *6 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-635)))) (-2732 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1045 (-202))) (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-202))) (-5 *5 (-588 (-239))) (-5 *1 (-635)))) (-2732 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-202))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-635)))) (-2732 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-3 (-1 (-202) (-202) (-202) (-202)) "undefined")) (-5 *5 (-1009 (-202))) (-5 *6 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-635)))))
-(-10 -7 (-15 -2732 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-3 (-1 (-202) (-202) (-202) (-202)) "undefined") (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -2732 ((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -2732 ((-1045 (-202)) (-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -2683 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-3 (-1 (-202) (-202) (-202) (-202)) "undefined") (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -1682 ((-1045 (-202)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -3541 ((-1 (-872 (-202)) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202) (-202)))))
-((-1916 (((-393 (-1081 |#4|)) (-1081 |#4|)) 73) (((-393 |#4|) |#4|) 217)))
-(((-636 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1916 ((-393 |#4|) |#4|)) (-15 -1916 ((-393 (-1081 |#4|)) (-1081 |#4|)))) (-784) (-730) (-324) (-878 |#3| |#2| |#1|)) (T -636))
-((-1916 (*1 *2 *3) (-12 (-4 *4 (-784)) (-4 *5 (-730)) (-4 *6 (-324)) (-4 *7 (-878 *6 *5 *4)) (-5 *2 (-393 (-1081 *7))) (-5 *1 (-636 *4 *5 *6 *7)) (-5 *3 (-1081 *7)))) (-1916 (*1 *2 *3) (-12 (-4 *4 (-784)) (-4 *5 (-730)) (-4 *6 (-324)) (-5 *2 (-393 *3)) (-5 *1 (-636 *4 *5 *6 *3)) (-4 *3 (-878 *6 *5 *4)))))
-(-10 -7 (-15 -1916 ((-393 |#4|) |#4|)) (-15 -1916 ((-393 (-1081 |#4|)) (-1081 |#4|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 84)) (-2229 (((-522) $) 30)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-2789 (($ $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1929 (($ $) NIL)) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL)) (-3175 (($) NIL T CONST)) (-2599 (($ $) NIL)) (-1297 (((-3 (-522) "failed") $) 73) (((-3 (-382 (-522)) "failed") $) 26) (((-3 (-354) "failed") $) 70)) (-1484 (((-522) $) 75) (((-382 (-522)) $) 67) (((-354) $) 68)) (-2277 (($ $ $) 96)) (-2682 (((-3 $ "failed") $) 87)) (-2254 (($ $ $) 95)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-2175 (((-850)) 77) (((-850) (-850)) 76)) (-3687 (((-108) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL)) (-3714 (((-522) $) NIL)) (-2782 (((-108) $) NIL)) (-1504 (($ $ (-522)) NIL)) (-2100 (($ $) NIL)) (-2556 (((-108) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2945 (((-522) (-522)) 81) (((-522)) 82)) (-2814 (($ $ $) NIL) (($) NIL (-12 (-2401 (|has| $ (-6 -4221))) (-2401 (|has| $ (-6 -4229)))))) (-1930 (((-522) (-522)) 79) (((-522)) 80)) (-2446 (($ $ $) NIL) (($) NIL (-12 (-2401 (|has| $ (-6 -4221))) (-2401 (|has| $ (-6 -4229)))))) (-3357 (((-522) $) 16)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 91)) (-1941 (((-850) (-522)) NIL (|has| $ (-6 -4229)))) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3933 (($ $) NIL)) (-3686 (($ $) NIL)) (-3071 (($ (-522) (-522)) NIL) (($ (-522) (-522) (-850)) NIL)) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) 92)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1400 (((-522) $) 22)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 94)) (-2615 (((-850)) NIL) (((-850) (-850)) NIL (|has| $ (-6 -4229)))) (-2349 (((-850) (-522)) NIL (|has| $ (-6 -4229)))) (-1431 (((-354) $) NIL) (((-202) $) NIL) (((-821 (-354)) $) NIL)) (-2190 (((-792) $) 52) (($ (-522)) 63) (($ $) NIL) (($ (-382 (-522))) 66) (($ (-522)) 63) (($ (-382 (-522))) 66) (($ (-354)) 60) (((-354) $) 50) (($ (-639)) 55)) (-2323 (((-708)) 103)) (-1387 (($ (-522) (-522) (-850)) 44)) (-3025 (($ $) NIL)) (-3836 (((-850)) NIL) (((-850) (-850)) NIL (|has| $ (-6 -4229)))) (-3355 (((-850)) 35) (((-850) (-850)) 78)) (-3958 (((-108) $ $) NIL)) (-2241 (($ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 32 T CONST)) (-3577 (($) 17 T CONST)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 83)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 101)) (-1620 (($ $ $) 65)) (-1612 (($ $) 99) (($ $ $) 100)) (-1602 (($ $ $) 98)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL) (($ $ (-382 (-522))) 90)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 97) (($ $ $) 88) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
-(((-637) (-13 (-379) (-362) (-338) (-962 (-354)) (-962 (-382 (-522))) (-135) (-10 -8 (-15 -2175 ((-850) (-850))) (-15 -2175 ((-850))) (-15 -3355 ((-850) (-850))) (-15 -3355 ((-850))) (-15 -1930 ((-522) (-522))) (-15 -1930 ((-522))) (-15 -2945 ((-522) (-522))) (-15 -2945 ((-522))) (-15 -2190 ((-354) $)) (-15 -2190 ($ (-639))) (-15 -3357 ((-522) $)) (-15 -1400 ((-522) $)) (-15 -1387 ($ (-522) (-522) (-850)))))) (T -637))
-((-3355 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637)))) (-1400 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-637)))) (-3357 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-637)))) (-2175 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637)))) (-2175 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637)))) (-3355 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637)))) (-1930 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637)))) (-1930 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637)))) (-2945 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637)))) (-2945 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-354)) (-5 *1 (-637)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-639)) (-5 *1 (-637)))) (-1387 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-522)) (-5 *3 (-850)) (-5 *1 (-637)))))
-(-13 (-379) (-362) (-338) (-962 (-354)) (-962 (-382 (-522))) (-135) (-10 -8 (-15 -2175 ((-850) (-850))) (-15 -2175 ((-850))) (-15 -3355 ((-850) (-850))) (-15 -3355 ((-850))) (-15 -1930 ((-522) (-522))) (-15 -1930 ((-522))) (-15 -2945 ((-522) (-522))) (-15 -2945 ((-522))) (-15 -2190 ((-354) $)) (-15 -2190 ($ (-639))) (-15 -3357 ((-522) $)) (-15 -1400 ((-522) $)) (-15 -1387 ($ (-522) (-522) (-850)))))
-((-1997 (((-628 |#1|) (-628 |#1|) |#1| |#1|) 65)) (-2264 (((-628 |#1|) (-628 |#1|) |#1|) 48)) (-2445 (((-628 |#1|) (-628 |#1|) |#1|) 66)) (-1638 (((-628 |#1|) (-628 |#1|)) 49)) (-1438 (((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|) 64)))
-(((-638 |#1|) (-10 -7 (-15 -1638 ((-628 |#1|) (-628 |#1|))) (-15 -2264 ((-628 |#1|) (-628 |#1|) |#1|)) (-15 -2445 ((-628 |#1|) (-628 |#1|) |#1|)) (-15 -1997 ((-628 |#1|) (-628 |#1|) |#1| |#1|)) (-15 -1438 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|))) (-283)) (T -638))
-((-1438 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-638 *3)) (-4 *3 (-283)))) (-1997 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))) (-2445 (*1 *2 *2 *3) (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))) (-2264 (*1 *2 *2 *3) (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))) (-1638 (*1 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))))
-(-10 -7 (-15 -1638 ((-628 |#1|) (-628 |#1|))) (-15 -2264 ((-628 |#1|) (-628 |#1|) |#1|)) (-15 -2445 ((-628 |#1|) (-628 |#1|) |#1|)) (-15 -1997 ((-628 |#1|) (-628 |#1|) |#1| |#1|)) (-15 -1438 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-3871 (($ $ $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3481 (($ $ $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL)) (-1662 (($ $ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) 27)) (-1484 (((-522) $) 25)) (-2277 (($ $ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-1664 (((-3 (-382 (-522)) "failed") $) NIL)) (-1770 (((-108) $) NIL)) (-1492 (((-382 (-522)) $) NIL)) (-3255 (($ $) NIL) (($) NIL)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-2676 (($ $ $ $) NIL)) (-2339 (($ $ $) NIL)) (-3687 (((-108) $) NIL)) (-3219 (($ $ $) NIL)) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL)) (-2782 (((-108) $) NIL)) (-2591 (((-108) $) NIL)) (-3004 (((-3 $ "failed") $) NIL)) (-2556 (((-108) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1335 (($ $ $ $) NIL)) (-2814 (($ $ $) NIL)) (-3211 (((-850) (-850)) 10) (((-850)) 9)) (-2446 (($ $ $) NIL)) (-3893 (($ $) NIL)) (-2517 (($ $) NIL)) (-2224 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-2341 (($ $ $) NIL)) (-3802 (($) NIL T CONST)) (-2957 (($ $) NIL)) (-4151 (((-1032) $) NIL) (($ $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2868 (($ $) NIL)) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1263 (((-108) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2157 (($ $) NIL) (($ $ (-708)) NIL)) (-3056 (($ $) NIL)) (-2404 (($ $) NIL)) (-1431 (((-202) $) NIL) (((-354) $) NIL) (((-821 (-522)) $) NIL) (((-498) $) NIL) (((-522) $) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) 24) (($ $) NIL) (($ (-522)) 24) (((-291 $) (-291 (-522))) 18)) (-2323 (((-708)) NIL)) (-3558 (((-108) $ $) NIL)) (-1480 (($ $ $) NIL)) (-3355 (($) NIL)) (-3958 (((-108) $ $) NIL)) (-4004 (($ $ $ $) NIL)) (-2241 (($ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $) NIL) (($ $ (-708)) NIL)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL)))
-(((-639) (-13 (-362) (-507) (-10 -8 (-15 -3211 ((-850) (-850))) (-15 -3211 ((-850))) (-15 -2190 ((-291 $) (-291 (-522))))))) (T -639))
-((-3211 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-639)))) (-3211 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-639)))) (-2190 (*1 *2 *3) (-12 (-5 *3 (-291 (-522))) (-5 *2 (-291 (-639))) (-5 *1 (-639)))))
-(-13 (-362) (-507) (-10 -8 (-15 -3211 ((-850) (-850))) (-15 -3211 ((-850))) (-15 -2190 ((-291 $) (-291 (-522))))))
-((-3153 (((-1 |#4| |#2| |#3|) |#1| (-1085) (-1085)) 19)) (-2716 (((-1 |#4| |#2| |#3|) (-1085)) 12)))
-(((-640 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2716 ((-1 |#4| |#2| |#3|) (-1085))) (-15 -3153 ((-1 |#4| |#2| |#3|) |#1| (-1085) (-1085)))) (-563 (-498)) (-1120) (-1120) (-1120)) (T -640))
-((-3153 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1085)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-640 *3 *5 *6 *7)) (-4 *3 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120)) (-4 *7 (-1120)))) (-2716 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-640 *4 *5 *6 *7)) (-4 *4 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120)) (-4 *7 (-1120)))))
-(-10 -7 (-15 -2716 ((-1 |#4| |#2| |#3|) (-1085))) (-15 -3153 ((-1 |#4| |#2| |#3|) |#1| (-1085) (-1085))))
-((-1416 (((-108) $ $) NIL)) (-3220 (((-1171) $ (-708)) 14)) (-3238 (((-708) $) 12)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 18) ((|#1| $) 15) (($ |#1|) 23)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 25)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 24)))
-(((-641 |#1|) (-13 (-125) (-562 |#1|) (-10 -8 (-15 -2190 ($ |#1|)))) (-1014)) (T -641))
-((-2190 (*1 *1 *2) (-12 (-5 *1 (-641 *2)) (-4 *2 (-1014)))))
-(-13 (-125) (-562 |#1|) (-10 -8 (-15 -2190 ($ |#1|))))
-((-1198 (((-1 (-202) (-202) (-202)) |#1| (-1085) (-1085)) 33) (((-1 (-202) (-202)) |#1| (-1085)) 38)))
-(((-642 |#1|) (-10 -7 (-15 -1198 ((-1 (-202) (-202)) |#1| (-1085))) (-15 -1198 ((-1 (-202) (-202) (-202)) |#1| (-1085) (-1085)))) (-563 (-498))) (T -642))
-((-1198 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1085)) (-5 *2 (-1 (-202) (-202) (-202))) (-5 *1 (-642 *3)) (-4 *3 (-563 (-498))))) (-1198 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-5 *2 (-1 (-202) (-202))) (-5 *1 (-642 *3)) (-4 *3 (-563 (-498))))))
-(-10 -7 (-15 -1198 ((-1 (-202) (-202)) |#1| (-1085))) (-15 -1198 ((-1 (-202) (-202) (-202)) |#1| (-1085) (-1085))))
-((-2094 (((-1085) |#1| (-1085) (-588 (-1085))) 9) (((-1085) |#1| (-1085) (-1085) (-1085)) 12) (((-1085) |#1| (-1085) (-1085)) 11) (((-1085) |#1| (-1085)) 10)))
-(((-643 |#1|) (-10 -7 (-15 -2094 ((-1085) |#1| (-1085))) (-15 -2094 ((-1085) |#1| (-1085) (-1085))) (-15 -2094 ((-1085) |#1| (-1085) (-1085) (-1085))) (-15 -2094 ((-1085) |#1| (-1085) (-588 (-1085))))) (-563 (-498))) (T -643))
-((-2094 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-588 (-1085))) (-5 *2 (-1085)) (-5 *1 (-643 *3)) (-4 *3 (-563 (-498))))) (-2094 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-643 *3)) (-4 *3 (-563 (-498))))) (-2094 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-643 *3)) (-4 *3 (-563 (-498))))) (-2094 (*1 *2 *3 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-643 *3)) (-4 *3 (-563 (-498))))))
-(-10 -7 (-15 -2094 ((-1085) |#1| (-1085))) (-15 -2094 ((-1085) |#1| (-1085) (-1085))) (-15 -2094 ((-1085) |#1| (-1085) (-1085) (-1085))) (-15 -2094 ((-1085) |#1| (-1085) (-588 (-1085)))))
-((-1674 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
-(((-644 |#1| |#2|) (-10 -7 (-15 -1674 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1120) (-1120)) (T -644))
-((-1674 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-644 *3 *4)) (-4 *3 (-1120)) (-4 *4 (-1120)))))
-(-10 -7 (-15 -1674 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
-((-3568 (((-1 |#3| |#2|) (-1085)) 11)) (-3153 (((-1 |#3| |#2|) |#1| (-1085)) 21)))
-(((-645 |#1| |#2| |#3|) (-10 -7 (-15 -3568 ((-1 |#3| |#2|) (-1085))) (-15 -3153 ((-1 |#3| |#2|) |#1| (-1085)))) (-563 (-498)) (-1120) (-1120)) (T -645))
-((-3153 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-5 *2 (-1 *6 *5)) (-5 *1 (-645 *3 *5 *6)) (-4 *3 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120)))) (-3568 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1 *6 *5)) (-5 *1 (-645 *4 *5 *6)) (-4 *4 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120)))))
-(-10 -7 (-15 -3568 ((-1 |#3| |#2|) (-1085))) (-15 -3153 ((-1 |#3| |#2|) |#1| (-1085))))
-((-3986 (((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 (-1081 |#4|)) (-588 |#3|) (-588 |#4|) (-588 (-588 (-2 (|:| -2522 (-708)) (|:| |pcoef| |#4|)))) (-588 (-708)) (-1166 (-588 (-1081 |#3|))) |#3|) 59)) (-2812 (((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 (-1081 |#3|)) (-588 |#3|) (-588 |#4|) (-588 (-708)) |#3|) 72)) (-3289 (((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 |#3|) (-588 (-708)) (-588 (-1081 |#4|)) (-1166 (-588 (-1081 |#3|))) |#3|) 32)))
-(((-646 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3289 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 |#3|) (-588 (-708)) (-588 (-1081 |#4|)) (-1166 (-588 (-1081 |#3|))) |#3|)) (-15 -2812 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 (-1081 |#3|)) (-588 |#3|) (-588 |#4|) (-588 (-708)) |#3|)) (-15 -3986 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 (-1081 |#4|)) (-588 |#3|) (-588 |#4|) (-588 (-588 (-2 (|:| -2522 (-708)) (|:| |pcoef| |#4|)))) (-588 (-708)) (-1166 (-588 (-1081 |#3|))) |#3|))) (-730) (-784) (-283) (-878 |#3| |#1| |#2|)) (T -646))
-((-3986 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-588 (-1081 *13))) (-5 *3 (-1081 *13)) (-5 *4 (-588 *12)) (-5 *5 (-588 *10)) (-5 *6 (-588 *13)) (-5 *7 (-588 (-588 (-2 (|:| -2522 (-708)) (|:| |pcoef| *13))))) (-5 *8 (-588 (-708))) (-5 *9 (-1166 (-588 (-1081 *10)))) (-4 *12 (-784)) (-4 *10 (-283)) (-4 *13 (-878 *10 *11 *12)) (-4 *11 (-730)) (-5 *1 (-646 *11 *12 *10 *13)))) (-2812 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-588 *11)) (-5 *5 (-588 (-1081 *9))) (-5 *6 (-588 *9)) (-5 *7 (-588 *12)) (-5 *8 (-588 (-708))) (-4 *11 (-784)) (-4 *9 (-283)) (-4 *12 (-878 *9 *10 *11)) (-4 *10 (-730)) (-5 *2 (-588 (-1081 *12))) (-5 *1 (-646 *10 *11 *9 *12)) (-5 *3 (-1081 *12)))) (-3289 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-588 (-1081 *11))) (-5 *3 (-1081 *11)) (-5 *4 (-588 *10)) (-5 *5 (-588 *8)) (-5 *6 (-588 (-708))) (-5 *7 (-1166 (-588 (-1081 *8)))) (-4 *10 (-784)) (-4 *8 (-283)) (-4 *11 (-878 *8 *9 *10)) (-4 *9 (-730)) (-5 *1 (-646 *9 *10 *8 *11)))))
-(-10 -7 (-15 -3289 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 |#3|) (-588 (-708)) (-588 (-1081 |#4|)) (-1166 (-588 (-1081 |#3|))) |#3|)) (-15 -2812 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 (-1081 |#3|)) (-588 |#3|) (-588 |#4|) (-588 (-708)) |#3|)) (-15 -3986 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 (-1081 |#4|)) (-588 |#3|) (-588 |#4|) (-588 (-588 (-2 (|:| -2522 (-708)) (|:| |pcoef| |#4|)))) (-588 (-708)) (-1166 (-588 (-1081 |#3|))) |#3|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-3156 (($ $) 41)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-4049 (($ |#1| (-708)) 39)) (-2925 (((-708) $) 43)) (-3138 ((|#1| $) 42)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2793 (((-708) $) 44)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 38 (|has| |#1| (-157)))) (-3243 ((|#1| $ (-708)) 40)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 46) (($ |#1| $) 45)))
+((-3365 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-633 *2)) (-4 *2 (-1014)))) (-1581 (*1 *1 *1) (-12 (-4 *1 (-633 *2)) (-4 *2 (-1014)))) (-3699 (*1 *2 *1) (-12 (-4 *1 (-633 *3)) (-4 *3 (-1014)) (-5 *2 (-588 (-2 (|:| -3149 *3) (|:| -4187 (-708))))))))
+(-13 (-212 |t#1|) (-10 -8 (-15 -3365 ($ |t#1| $ (-708))) (-15 -1581 ($ $)) (-15 -3699 ((-588 (-2 (|:| -3149 |t#1|) (|:| -4187 (-708)))) $))))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-212 |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-2665 (((-588 |#1|) (-588 (-2 (|:| -2006 |#1|) (|:| -2487 (-522)))) (-522)) 46)) (-1538 ((|#1| |#1| (-522)) 45)) (-2308 ((|#1| |#1| |#1| (-522)) 35)) (-2006 (((-588 |#1|) |#1| (-522)) 38)) (-2433 ((|#1| |#1| (-522) |#1| (-522)) 32)) (-3707 (((-588 (-2 (|:| -2006 |#1|) (|:| -2487 (-522)))) |#1| (-522)) 44)))
+(((-634 |#1|) (-10 -7 (-15 -2308 (|#1| |#1| |#1| (-522))) (-15 -1538 (|#1| |#1| (-522))) (-15 -2006 ((-588 |#1|) |#1| (-522))) (-15 -3707 ((-588 (-2 (|:| -2006 |#1|) (|:| -2487 (-522)))) |#1| (-522))) (-15 -2665 ((-588 |#1|) (-588 (-2 (|:| -2006 |#1|) (|:| -2487 (-522)))) (-522))) (-15 -2433 (|#1| |#1| (-522) |#1| (-522)))) (-1142 (-522))) (T -634))
+((-2433 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-634 *2)) (-4 *2 (-1142 *3)))) (-2665 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-2 (|:| -2006 *5) (|:| -2487 (-522))))) (-5 *4 (-522)) (-4 *5 (-1142 *4)) (-5 *2 (-588 *5)) (-5 *1 (-634 *5)))) (-3707 (*1 *2 *3 *4) (-12 (-5 *4 (-522)) (-5 *2 (-588 (-2 (|:| -2006 *3) (|:| -2487 *4)))) (-5 *1 (-634 *3)) (-4 *3 (-1142 *4)))) (-2006 (*1 *2 *3 *4) (-12 (-5 *4 (-522)) (-5 *2 (-588 *3)) (-5 *1 (-634 *3)) (-4 *3 (-1142 *4)))) (-1538 (*1 *2 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-634 *2)) (-4 *2 (-1142 *3)))) (-2308 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-634 *2)) (-4 *2 (-1142 *3)))))
+(-10 -7 (-15 -2308 (|#1| |#1| |#1| (-522))) (-15 -1538 (|#1| |#1| (-522))) (-15 -2006 ((-588 |#1|) |#1| (-522))) (-15 -3707 ((-588 (-2 (|:| -2006 |#1|) (|:| -2487 (-522)))) |#1| (-522))) (-15 -2665 ((-588 |#1|) (-588 (-2 (|:| -2006 |#1|) (|:| -2487 (-522)))) (-522))) (-15 -2433 (|#1| |#1| (-522) |#1| (-522))))
+((-2848 (((-1 (-872 (-202)) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202) (-202))) 17)) (-3948 (((-1045 (-202)) (-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-588 (-239))) 38) (((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-588 (-239))) 40) (((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-3 (-1 (-202) (-202) (-202) (-202)) "undefined") (-1009 (-202)) (-1009 (-202)) (-588 (-239))) 42)) (-2746 (((-1045 (-202)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-588 (-239))) NIL)) (-3930 (((-1045 (-202)) (-1 (-202) (-202) (-202)) (-3 (-1 (-202) (-202) (-202) (-202)) "undefined") (-1009 (-202)) (-1009 (-202)) (-588 (-239))) 43)))
+(((-635) (-10 -7 (-15 -3948 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-3 (-1 (-202) (-202) (-202) (-202)) "undefined") (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -3948 ((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -3948 ((-1045 (-202)) (-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -3930 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-3 (-1 (-202) (-202) (-202) (-202)) "undefined") (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -2746 ((-1045 (-202)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -2848 ((-1 (-872 (-202)) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202) (-202)))))) (T -635))
+((-2848 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-1 (-202) (-202) (-202) (-202))) (-5 *2 (-1 (-872 (-202)) (-202) (-202))) (-5 *1 (-635)))) (-2746 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202))) (-5 *5 (-1009 (-202))) (-5 *6 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-635)))) (-3930 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-3 (-1 (-202) (-202) (-202) (-202)) "undefined")) (-5 *5 (-1009 (-202))) (-5 *6 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-635)))) (-3948 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1045 (-202))) (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-202))) (-5 *5 (-588 (-239))) (-5 *1 (-635)))) (-3948 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-202))) (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-635)))) (-3948 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-202) (-202) (-202))) (-5 *4 (-3 (-1 (-202) (-202) (-202) (-202)) "undefined")) (-5 *5 (-1009 (-202))) (-5 *6 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-635)))))
+(-10 -7 (-15 -3948 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-3 (-1 (-202) (-202) (-202) (-202)) "undefined") (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -3948 ((-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -3948 ((-1045 (-202)) (-1045 (-202)) (-1 (-872 (-202)) (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -3930 ((-1045 (-202)) (-1 (-202) (-202) (-202)) (-3 (-1 (-202) (-202) (-202) (-202)) "undefined") (-1009 (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -2746 ((-1045 (-202)) (-291 (-522)) (-291 (-522)) (-291 (-522)) (-1 (-202) (-202)) (-1009 (-202)) (-588 (-239)))) (-15 -2848 ((-1 (-872 (-202)) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202)) (-1 (-202) (-202) (-202) (-202)))))
+((-2006 (((-393 (-1081 |#4|)) (-1081 |#4|)) 73) (((-393 |#4|) |#4|) 217)))
+(((-636 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2006 ((-393 |#4|) |#4|)) (-15 -2006 ((-393 (-1081 |#4|)) (-1081 |#4|)))) (-784) (-730) (-324) (-878 |#3| |#2| |#1|)) (T -636))
+((-2006 (*1 *2 *3) (-12 (-4 *4 (-784)) (-4 *5 (-730)) (-4 *6 (-324)) (-4 *7 (-878 *6 *5 *4)) (-5 *2 (-393 (-1081 *7))) (-5 *1 (-636 *4 *5 *6 *7)) (-5 *3 (-1081 *7)))) (-2006 (*1 *2 *3) (-12 (-4 *4 (-784)) (-4 *5 (-730)) (-4 *6 (-324)) (-5 *2 (-393 *3)) (-5 *1 (-636 *4 *5 *6 *3)) (-4 *3 (-878 *6 *5 *4)))))
+(-10 -7 (-15 -2006 ((-393 |#4|) |#4|)) (-15 -2006 ((-393 (-1081 |#4|)) (-1081 |#4|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 84)) (-3049 (((-522) $) 30)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-3495 (($ $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2016 (($ $) NIL)) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL)) (-3367 (($) NIL T CONST)) (-1943 (($ $) NIL)) (-3700 (((-3 (-522) "failed") $) 73) (((-3 (-382 (-522)) "failed") $) 26) (((-3 (-354) "failed") $) 70)) (-1478 (((-522) $) 75) (((-382 (-522)) $) 67) (((-354) $) 68)) (-2333 (($ $ $) 96)) (-3920 (((-3 $ "failed") $) 87)) (-2303 (($ $ $) 95)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3684 (((-850)) 77) (((-850) (-850)) 76)) (-3603 (((-108) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL)) (-3872 (((-522) $) NIL)) (-2859 (((-108) $) NIL)) (-1811 (($ $ (-522)) NIL)) (-1269 (($ $) NIL)) (-3740 (((-108) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3770 (((-522) (-522)) 81) (((-522)) 82)) (-1308 (($ $ $) NIL) (($) NIL (-12 (-2473 (|has| $ (-6 -4221))) (-2473 (|has| $ (-6 -4229)))))) (-1395 (((-522) (-522)) 79) (((-522)) 80)) (-2524 (($ $ $) NIL) (($) NIL (-12 (-2473 (|has| $ (-6 -4221))) (-2473 (|has| $ (-6 -4229)))))) (-3451 (((-522) $) 16)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 91)) (-1494 (((-850) (-522)) NIL (|has| $ (-6 -4229)))) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4194 (($ $) NIL)) (-3592 (($ $) NIL)) (-3173 (($ (-522) (-522)) NIL) (($ (-522) (-522) (-850)) NIL)) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) 92)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3858 (((-522) $) 22)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 94)) (-3353 (((-850)) NIL) (((-850) (-850)) NIL (|has| $ (-6 -4229)))) (-1688 (((-850) (-522)) NIL (|has| $ (-6 -4229)))) (-3873 (((-354) $) NIL) (((-202) $) NIL) (((-821 (-354)) $) NIL)) (-2217 (((-792) $) 52) (($ (-522)) 63) (($ $) NIL) (($ (-382 (-522))) 66) (($ (-522)) 63) (($ (-382 (-522))) 66) (($ (-354)) 60) (((-354) $) 50) (($ (-639)) 55)) (-2742 (((-708)) 103)) (-3719 (($ (-522) (-522) (-850)) 44)) (-1379 (($ $) NIL)) (-2780 (((-850)) NIL) (((-850) (-850)) NIL (|has| $ (-6 -4229)))) (-1897 (((-850)) 35) (((-850) (-850)) 78)) (-1407 (((-108) $ $) NIL)) (-4126 (($ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 32 T CONST)) (-3709 (($) 17 T CONST)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 83)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 101)) (-1682 (($ $ $) 65)) (-1672 (($ $) 99) (($ $ $) 100)) (-1661 (($ $ $) 98)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL) (($ $ (-382 (-522))) 90)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 97) (($ $ $) 88) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
+(((-637) (-13 (-379) (-362) (-338) (-962 (-354)) (-962 (-382 (-522))) (-135) (-10 -8 (-15 -3684 ((-850) (-850))) (-15 -3684 ((-850))) (-15 -1897 ((-850) (-850))) (-15 -1897 ((-850))) (-15 -1395 ((-522) (-522))) (-15 -1395 ((-522))) (-15 -3770 ((-522) (-522))) (-15 -3770 ((-522))) (-15 -2217 ((-354) $)) (-15 -2217 ($ (-639))) (-15 -3451 ((-522) $)) (-15 -3858 ((-522) $)) (-15 -3719 ($ (-522) (-522) (-850)))))) (T -637))
+((-1897 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637)))) (-3858 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-637)))) (-3451 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-637)))) (-3684 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637)))) (-3684 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637)))) (-1897 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637)))) (-1395 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637)))) (-1395 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637)))) (-3770 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637)))) (-3770 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-354)) (-5 *1 (-637)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-639)) (-5 *1 (-637)))) (-3719 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-522)) (-5 *3 (-850)) (-5 *1 (-637)))))
+(-13 (-379) (-362) (-338) (-962 (-354)) (-962 (-382 (-522))) (-135) (-10 -8 (-15 -3684 ((-850) (-850))) (-15 -3684 ((-850))) (-15 -1897 ((-850) (-850))) (-15 -1897 ((-850))) (-15 -1395 ((-522) (-522))) (-15 -1395 ((-522))) (-15 -3770 ((-522) (-522))) (-15 -3770 ((-522))) (-15 -2217 ((-354) $)) (-15 -2217 ($ (-639))) (-15 -3451 ((-522) $)) (-15 -3858 ((-522) $)) (-15 -3719 ($ (-522) (-522) (-850)))))
+((-3264 (((-628 |#1|) (-628 |#1|) |#1| |#1|) 65)) (-2091 (((-628 |#1|) (-628 |#1|) |#1|) 48)) (-3648 (((-628 |#1|) (-628 |#1|) |#1|) 66)) (-2243 (((-628 |#1|) (-628 |#1|)) 49)) (-2419 (((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|) 64)))
+(((-638 |#1|) (-10 -7 (-15 -2243 ((-628 |#1|) (-628 |#1|))) (-15 -2091 ((-628 |#1|) (-628 |#1|) |#1|)) (-15 -3648 ((-628 |#1|) (-628 |#1|) |#1|)) (-15 -3264 ((-628 |#1|) (-628 |#1|) |#1| |#1|)) (-15 -2419 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|))) (-283)) (T -638))
+((-2419 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-638 *3)) (-4 *3 (-283)))) (-3264 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))) (-3648 (*1 *2 *2 *3) (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))) (-2091 (*1 *2 *2 *3) (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))) (-2243 (*1 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))))
+(-10 -7 (-15 -2243 ((-628 |#1|) (-628 |#1|))) (-15 -2091 ((-628 |#1|) (-628 |#1|) |#1|)) (-15 -3648 ((-628 |#1|) (-628 |#1|) |#1|)) (-15 -3264 ((-628 |#1|) (-628 |#1|) |#1| |#1|)) (-15 -2419 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-1805 (($ $ $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3372 (($ $ $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL)) (-1736 (($ $ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) 27)) (-1478 (((-522) $) 25)) (-2333 (($ $ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2549 (((-3 (-382 (-522)) "failed") $) NIL)) (-3519 (((-108) $) NIL)) (-1699 (((-382 (-522)) $) NIL)) (-3344 (($ $) NIL) (($) NIL)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3859 (($ $ $ $) NIL)) (-1968 (($ $ $) NIL)) (-3603 (((-108) $) NIL)) (-2634 (($ $ $) NIL)) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL)) (-2859 (((-108) $) NIL)) (-3077 (((-108) $) NIL)) (-4208 (((-3 $ "failed") $) NIL)) (-3740 (((-108) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2037 (($ $ $ $) NIL)) (-1308 (($ $ $) NIL)) (-2557 (((-850) (-850)) 10) (((-850)) 9)) (-2524 (($ $ $) NIL)) (-4000 (($ $) NIL)) (-4030 (($ $) NIL)) (-2267 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-1988 (($ $ $) NIL)) (-3937 (($) NIL T CONST)) (-3092 (($ $) NIL)) (-4174 (((-1032) $) NIL) (($ $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ (-588 $)) NIL) (($ $ $) NIL)) (-1274 (($ $) NIL)) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2626 (((-108) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2731 (($ $) NIL) (($ $ (-708)) NIL)) (-3518 (($ $) NIL)) (-2463 (($ $) NIL)) (-3873 (((-202) $) NIL) (((-354) $) NIL) (((-821 (-522)) $) NIL) (((-498) $) NIL) (((-522) $) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) 24) (($ $) NIL) (($ (-522)) 24) (((-291 $) (-291 (-522))) 18)) (-2742 (((-708)) NIL)) (-1763 (((-108) $ $) NIL)) (-1591 (($ $ $) NIL)) (-1897 (($) NIL)) (-1407 (((-108) $ $) NIL)) (-3673 (($ $ $ $) NIL)) (-4126 (($ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $) NIL) (($ $ (-708)) NIL)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL)))
+(((-639) (-13 (-362) (-507) (-10 -8 (-15 -2557 ((-850) (-850))) (-15 -2557 ((-850))) (-15 -2217 ((-291 $) (-291 (-522))))))) (T -639))
+((-2557 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-639)))) (-2557 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-639)))) (-2217 (*1 *2 *3) (-12 (-5 *3 (-291 (-522))) (-5 *2 (-291 (-639))) (-5 *1 (-639)))))
+(-13 (-362) (-507) (-10 -8 (-15 -2557 ((-850) (-850))) (-15 -2557 ((-850))) (-15 -2217 ((-291 $) (-291 (-522))))))
+((-3200 (((-1 |#4| |#2| |#3|) |#1| (-1085) (-1085)) 19)) (-3279 (((-1 |#4| |#2| |#3|) (-1085)) 12)))
+(((-640 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3279 ((-1 |#4| |#2| |#3|) (-1085))) (-15 -3200 ((-1 |#4| |#2| |#3|) |#1| (-1085) (-1085)))) (-563 (-498)) (-1120) (-1120) (-1120)) (T -640))
+((-3200 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1085)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-640 *3 *5 *6 *7)) (-4 *3 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120)) (-4 *7 (-1120)))) (-3279 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-640 *4 *5 *6 *7)) (-4 *4 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120)) (-4 *7 (-1120)))))
+(-10 -7 (-15 -3279 ((-1 |#4| |#2| |#3|) (-1085))) (-15 -3200 ((-1 |#4| |#2| |#3|) |#1| (-1085) (-1085))))
+((-1419 (((-108) $ $) NIL)) (-2648 (((-1171) $ (-708)) 14)) (-3314 (((-708) $) 12)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 18) ((|#1| $) 15) (($ |#1|) 23)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 25)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 24)))
+(((-641 |#1|) (-13 (-125) (-562 |#1|) (-10 -8 (-15 -2217 ($ |#1|)))) (-1014)) (T -641))
+((-2217 (*1 *1 *2) (-12 (-5 *1 (-641 *2)) (-4 *2 (-1014)))))
+(-13 (-125) (-562 |#1|) (-10 -8 (-15 -2217 ($ |#1|))))
+((-1719 (((-1 (-202) (-202) (-202)) |#1| (-1085) (-1085)) 33) (((-1 (-202) (-202)) |#1| (-1085)) 38)))
+(((-642 |#1|) (-10 -7 (-15 -1719 ((-1 (-202) (-202)) |#1| (-1085))) (-15 -1719 ((-1 (-202) (-202) (-202)) |#1| (-1085) (-1085)))) (-563 (-498))) (T -642))
+((-1719 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1085)) (-5 *2 (-1 (-202) (-202) (-202))) (-5 *1 (-642 *3)) (-4 *3 (-563 (-498))))) (-1719 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-5 *2 (-1 (-202) (-202))) (-5 *1 (-642 *3)) (-4 *3 (-563 (-498))))))
+(-10 -7 (-15 -1719 ((-1 (-202) (-202)) |#1| (-1085))) (-15 -1719 ((-1 (-202) (-202) (-202)) |#1| (-1085) (-1085))))
+((-2138 (((-1085) |#1| (-1085) (-588 (-1085))) 9) (((-1085) |#1| (-1085) (-1085) (-1085)) 12) (((-1085) |#1| (-1085) (-1085)) 11) (((-1085) |#1| (-1085)) 10)))
+(((-643 |#1|) (-10 -7 (-15 -2138 ((-1085) |#1| (-1085))) (-15 -2138 ((-1085) |#1| (-1085) (-1085))) (-15 -2138 ((-1085) |#1| (-1085) (-1085) (-1085))) (-15 -2138 ((-1085) |#1| (-1085) (-588 (-1085))))) (-563 (-498))) (T -643))
+((-2138 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-588 (-1085))) (-5 *2 (-1085)) (-5 *1 (-643 *3)) (-4 *3 (-563 (-498))))) (-2138 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-643 *3)) (-4 *3 (-563 (-498))))) (-2138 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-643 *3)) (-4 *3 (-563 (-498))))) (-2138 (*1 *2 *3 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-643 *3)) (-4 *3 (-563 (-498))))))
+(-10 -7 (-15 -2138 ((-1085) |#1| (-1085))) (-15 -2138 ((-1085) |#1| (-1085) (-1085))) (-15 -2138 ((-1085) |#1| (-1085) (-1085) (-1085))) (-15 -2138 ((-1085) |#1| (-1085) (-588 (-1085)))))
+((-1765 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
+(((-644 |#1| |#2|) (-10 -7 (-15 -1765 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1120) (-1120)) (T -644))
+((-1765 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-644 *3 *4)) (-4 *3 (-1120)) (-4 *4 (-1120)))))
+(-10 -7 (-15 -1765 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
+((-1841 (((-1 |#3| |#2|) (-1085)) 11)) (-3200 (((-1 |#3| |#2|) |#1| (-1085)) 21)))
+(((-645 |#1| |#2| |#3|) (-10 -7 (-15 -1841 ((-1 |#3| |#2|) (-1085))) (-15 -3200 ((-1 |#3| |#2|) |#1| (-1085)))) (-563 (-498)) (-1120) (-1120)) (T -645))
+((-3200 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-5 *2 (-1 *6 *5)) (-5 *1 (-645 *3 *5 *6)) (-4 *3 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120)))) (-1841 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1 *6 *5)) (-5 *1 (-645 *4 *5 *6)) (-4 *4 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120)))))
+(-10 -7 (-15 -1841 ((-1 |#3| |#2|) (-1085))) (-15 -3200 ((-1 |#3| |#2|) |#1| (-1085))))
+((-3505 (((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 (-1081 |#4|)) (-588 |#3|) (-588 |#4|) (-588 (-588 (-2 (|:| -2170 (-708)) (|:| |pcoef| |#4|)))) (-588 (-708)) (-1166 (-588 (-1081 |#3|))) |#3|) 59)) (-2707 (((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 (-1081 |#3|)) (-588 |#3|) (-588 |#4|) (-588 (-708)) |#3|) 72)) (-2057 (((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 |#3|) (-588 (-708)) (-588 (-1081 |#4|)) (-1166 (-588 (-1081 |#3|))) |#3|) 32)))
+(((-646 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2057 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 |#3|) (-588 (-708)) (-588 (-1081 |#4|)) (-1166 (-588 (-1081 |#3|))) |#3|)) (-15 -2707 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 (-1081 |#3|)) (-588 |#3|) (-588 |#4|) (-588 (-708)) |#3|)) (-15 -3505 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 (-1081 |#4|)) (-588 |#3|) (-588 |#4|) (-588 (-588 (-2 (|:| -2170 (-708)) (|:| |pcoef| |#4|)))) (-588 (-708)) (-1166 (-588 (-1081 |#3|))) |#3|))) (-730) (-784) (-283) (-878 |#3| |#1| |#2|)) (T -646))
+((-3505 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-588 (-1081 *13))) (-5 *3 (-1081 *13)) (-5 *4 (-588 *12)) (-5 *5 (-588 *10)) (-5 *6 (-588 *13)) (-5 *7 (-588 (-588 (-2 (|:| -2170 (-708)) (|:| |pcoef| *13))))) (-5 *8 (-588 (-708))) (-5 *9 (-1166 (-588 (-1081 *10)))) (-4 *12 (-784)) (-4 *10 (-283)) (-4 *13 (-878 *10 *11 *12)) (-4 *11 (-730)) (-5 *1 (-646 *11 *12 *10 *13)))) (-2707 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-588 *11)) (-5 *5 (-588 (-1081 *9))) (-5 *6 (-588 *9)) (-5 *7 (-588 *12)) (-5 *8 (-588 (-708))) (-4 *11 (-784)) (-4 *9 (-283)) (-4 *12 (-878 *9 *10 *11)) (-4 *10 (-730)) (-5 *2 (-588 (-1081 *12))) (-5 *1 (-646 *10 *11 *9 *12)) (-5 *3 (-1081 *12)))) (-2057 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-588 (-1081 *11))) (-5 *3 (-1081 *11)) (-5 *4 (-588 *10)) (-5 *5 (-588 *8)) (-5 *6 (-588 (-708))) (-5 *7 (-1166 (-588 (-1081 *8)))) (-4 *10 (-784)) (-4 *8 (-283)) (-4 *11 (-878 *8 *9 *10)) (-4 *9 (-730)) (-5 *1 (-646 *9 *10 *8 *11)))))
+(-10 -7 (-15 -2057 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 |#3|) (-588 (-708)) (-588 (-1081 |#4|)) (-1166 (-588 (-1081 |#3|))) |#3|)) (-15 -2707 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 (-1081 |#3|)) (-588 |#3|) (-588 |#4|) (-588 (-708)) |#3|)) (-15 -3505 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-588 |#2|) (-588 (-1081 |#4|)) (-588 |#3|) (-588 |#4|) (-588 (-588 (-2 (|:| -2170 (-708)) (|:| |pcoef| |#4|)))) (-588 (-708)) (-1166 (-588 (-1081 |#3|))) |#3|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3241 (($ $) 41)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-3500 (($ |#1| (-708)) 39)) (-3564 (((-708) $) 43)) (-3224 ((|#1| $) 42)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2487 (((-708) $) 44)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 38 (|has| |#1| (-157)))) (-1643 ((|#1| $ (-708)) 40)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 46) (($ |#1| $) 45)))
(((-647 |#1|) (-1197) (-971)) (T -647))
-((-2793 (*1 *2 *1) (-12 (-4 *1 (-647 *3)) (-4 *3 (-971)) (-5 *2 (-708)))) (-2925 (*1 *2 *1) (-12 (-4 *1 (-647 *3)) (-4 *3 (-971)) (-5 *2 (-708)))) (-3138 (*1 *2 *1) (-12 (-4 *1 (-647 *2)) (-4 *2 (-971)))) (-3156 (*1 *1 *1) (-12 (-4 *1 (-647 *2)) (-4 *2 (-971)))) (-3243 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-647 *2)) (-4 *2 (-971)))) (-4049 (*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-647 *2)) (-4 *2 (-971)))))
-(-13 (-971) (-107 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-157)) (-6 (-37 |t#1|)) |%noBranch|) (-15 -2793 ((-708) $)) (-15 -2925 ((-708) $)) (-15 -3138 (|t#1| $)) (-15 -3156 ($ $)) (-15 -3243 (|t#1| $ (-708))) (-15 -4049 ($ |t#1| (-708)))))
+((-2487 (*1 *2 *1) (-12 (-4 *1 (-647 *3)) (-4 *3 (-971)) (-5 *2 (-708)))) (-3564 (*1 *2 *1) (-12 (-4 *1 (-647 *3)) (-4 *3 (-971)) (-5 *2 (-708)))) (-3224 (*1 *2 *1) (-12 (-4 *1 (-647 *2)) (-4 *2 (-971)))) (-3241 (*1 *1 *1) (-12 (-4 *1 (-647 *2)) (-4 *2 (-971)))) (-1643 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-647 *2)) (-4 *2 (-971)))) (-3500 (*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-647 *2)) (-4 *2 (-971)))))
+(-13 (-971) (-107 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-157)) (-6 (-37 |t#1|)) |%noBranch|) (-15 -2487 ((-708) $)) (-15 -3564 ((-708) $)) (-15 -3224 (|t#1| $)) (-15 -3241 ($ $)) (-15 -1643 (|t#1| $ (-708))) (-15 -3500 ($ |t#1| (-708)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) |has| |#1| (-157)) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-655 |#1|) |has| |#1| (-157)) ((-664) . T) ((-977 |#1|) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1391 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
-(((-648 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1391 (|#6| (-1 |#4| |#1|) |#3|))) (-514) (-1142 |#1|) (-1142 (-382 |#2|)) (-514) (-1142 |#4|) (-1142 (-382 |#5|))) (T -648))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-514)) (-4 *7 (-514)) (-4 *6 (-1142 *5)) (-4 *2 (-1142 (-382 *8))) (-5 *1 (-648 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1142 (-382 *6))) (-4 *8 (-1142 *7)))))
-(-10 -7 (-15 -1391 (|#6| (-1 |#4| |#1|) |#3|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-2277 (($ $ $) NIL)) (-3864 (($ |#1| |#2|) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-2782 (((-108) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3010 ((|#2| $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3351 (((-3 $ "failed") $ $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) ((|#1| $) NIL)) (-2323 (((-708)) NIL)) (-3958 (((-108) $ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
-(((-649 |#1| |#2| |#3| |#4| |#5|) (-13 (-338) (-10 -8 (-15 -3010 (|#2| $)) (-15 -2190 (|#1| $)) (-15 -3864 ($ |#1| |#2|)) (-15 -3351 ((-3 $ "failed") $ $)))) (-157) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -649))
-((-3010 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-649 *3 *2 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-2190 (*1 *2 *1) (-12 (-4 *2 (-157)) (-5 *1 (-649 *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)))) (-3864 (*1 *1 *2 *3) (-12 (-5 *1 (-649 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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)))) (-3351 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-649 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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 (-338) (-10 -8 (-15 -3010 (|#2| $)) (-15 -2190 (|#1| $)) (-15 -3864 ($ |#1| |#2|)) (-15 -3351 ((-3 $ "failed") $ $))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 30)) (-3960 (((-1166 |#1|) $ (-708)) NIL)) (-4090 (((-588 (-999)) $) NIL)) (-3793 (($ (-1081 |#1|)) NIL)) (-1282 (((-1081 $) $ (-999)) NIL) (((-1081 |#1|) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 (-999))) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3984 (($ $ $) NIL (|has| |#1| (-514)))) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3119 (($ $) NIL (|has| |#1| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-1629 (((-708)) 47 (|has| |#1| (-343)))) (-3242 (($ $ (-708)) NIL)) (-2272 (($ $ (-708)) NIL)) (-2076 ((|#2| |#2|) 44)) (-1441 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-426)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-999) "failed") $) NIL)) (-1484 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-999) $) NIL)) (-1950 (($ $ $ (-999)) NIL (|has| |#1| (-157))) ((|#1| $ $) NIL (|has| |#1| (-157)))) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-3156 (($ $) 34)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-3864 (($ |#2|) 42)) (-2682 (((-3 $ "failed") $) 85)) (-3255 (($) 51 (|has| |#1| (-343)))) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-2052 (($ $ $) NIL)) (-4152 (($ $ $) NIL (|has| |#1| (-514)))) (-1541 (((-2 (|:| -2977 |#1|) (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-514)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2071 (($ $) NIL (|has| |#1| (-426))) (($ $ (-999)) NIL (|has| |#1| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#1| (-838)))) (-2245 (((-886 $)) 79)) (-2671 (($ $ |#1| (-708) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-999) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-999) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3714 (((-708) $ $) NIL (|has| |#1| (-514)))) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-3004 (((-3 $ "failed") $) NIL (|has| |#1| (-1061)))) (-4073 (($ (-1081 |#1|) (-999)) NIL) (($ (-1081 $) (-999)) NIL)) (-2073 (($ $ (-708)) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-708)) 77) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ (-999)) NIL) (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3010 ((|#2|) 45)) (-2925 (((-708) $) NIL) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3861 (($ (-1 (-708) (-708)) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-3624 (((-1081 |#1|) $) NIL)) (-3145 (((-3 (-999) "failed") $) NIL)) (-2120 (((-850) $) NIL (|has| |#1| (-343)))) (-3849 ((|#2| $) 41)) (-3128 (($ $) NIL)) (-3138 ((|#1| $) 28)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2385 (((-1068) $) NIL)) (-3114 (((-2 (|:| -1353 $) (|:| -3421 $)) $ (-708)) NIL)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-999)) (|:| -1400 (-708))) "failed") $) NIL)) (-1858 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3802 (($) NIL (|has| |#1| (-1061)) CONST)) (-2717 (($ (-850)) NIL (|has| |#1| (-343)))) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) NIL)) (-3118 ((|#1| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-1615 (($ $) 78 (|has| |#1| (-324)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-838)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-999) |#1|) NIL) (($ $ (-588 (-999)) (-588 |#1|)) NIL) (($ $ (-999) $) NIL) (($ $ (-588 (-999)) (-588 $)) NIL)) (-3730 (((-708) $) NIL (|has| |#1| (-338)))) (-2545 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-382 $) (-382 $) (-382 $)) NIL (|has| |#1| (-514))) ((|#1| (-382 $) |#1|) NIL (|has| |#1| (-338))) (((-382 $) $ (-382 $)) NIL (|has| |#1| (-514)))) (-4158 (((-3 $ "failed") $ (-708)) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 86 (|has| |#1| (-338)))) (-2769 (($ $ (-999)) NIL (|has| |#1| (-157))) ((|#1| $) NIL (|has| |#1| (-157)))) (-2157 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-2793 (((-708) $) 32) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| (-999) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-999) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-999) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2255 ((|#1| $) NIL (|has| |#1| (-426))) (($ $ (-999)) NIL (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-1874 (((-886 $)) 36)) (-3097 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514))) (((-3 (-382 $) "failed") (-382 $) $) NIL (|has| |#1| (-514)))) (-2190 (((-792) $) 61) (($ (-522)) NIL) (($ |#1|) 58) (($ (-999)) NIL) (($ |#2|) 68) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-708)) 63) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 20 T CONST)) (-2132 (((-1166 |#1|) $) 75)) (-1871 (($ (-1166 |#1|)) 50)) (-3577 (($) 8 T CONST)) (-2213 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3115 (((-1166 |#1|) $) NIL)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) 69)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $) 72) (($ $ $) NIL)) (-1602 (($ $ $) 33)) (** (($ $ (-850)) NIL) (($ $ (-708)) 80)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 57) (($ $ $) 74) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 55) (($ $ |#1|) NIL)))
-(((-650 |#1| |#2|) (-13 (-1142 |#1|) (-10 -8 (-15 -2076 (|#2| |#2|)) (-15 -3010 (|#2|)) (-15 -3864 ($ |#2|)) (-15 -3849 (|#2| $)) (-15 -2190 ($ |#2|)) (-15 -2132 ((-1166 |#1|) $)) (-15 -1871 ($ (-1166 |#1|))) (-15 -3115 ((-1166 |#1|) $)) (-15 -2245 ((-886 $))) (-15 -1874 ((-886 $))) (IF (|has| |#1| (-324)) (-15 -1615 ($ $)) |%noBranch|) (IF (|has| |#1| (-343)) (-6 (-343)) |%noBranch|))) (-971) (-1142 |#1|)) (T -650))
-((-2076 (*1 *2 *2) (-12 (-4 *3 (-971)) (-5 *1 (-650 *3 *2)) (-4 *2 (-1142 *3)))) (-3010 (*1 *2) (-12 (-4 *2 (-1142 *3)) (-5 *1 (-650 *3 *2)) (-4 *3 (-971)))) (-3864 (*1 *1 *2) (-12 (-4 *3 (-971)) (-5 *1 (-650 *3 *2)) (-4 *2 (-1142 *3)))) (-3849 (*1 *2 *1) (-12 (-4 *2 (-1142 *3)) (-5 *1 (-650 *3 *2)) (-4 *3 (-971)))) (-2190 (*1 *1 *2) (-12 (-4 *3 (-971)) (-5 *1 (-650 *3 *2)) (-4 *2 (-1142 *3)))) (-2132 (*1 *2 *1) (-12 (-4 *3 (-971)) (-5 *2 (-1166 *3)) (-5 *1 (-650 *3 *4)) (-4 *4 (-1142 *3)))) (-1871 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-971)) (-5 *1 (-650 *3 *4)) (-4 *4 (-1142 *3)))) (-3115 (*1 *2 *1) (-12 (-4 *3 (-971)) (-5 *2 (-1166 *3)) (-5 *1 (-650 *3 *4)) (-4 *4 (-1142 *3)))) (-2245 (*1 *2) (-12 (-4 *3 (-971)) (-5 *2 (-886 (-650 *3 *4))) (-5 *1 (-650 *3 *4)) (-4 *4 (-1142 *3)))) (-1874 (*1 *2) (-12 (-4 *3 (-971)) (-5 *2 (-886 (-650 *3 *4))) (-5 *1 (-650 *3 *4)) (-4 *4 (-1142 *3)))) (-1615 (*1 *1 *1) (-12 (-4 *2 (-324)) (-4 *2 (-971)) (-5 *1 (-650 *2 *3)) (-4 *3 (-1142 *2)))))
-(-13 (-1142 |#1|) (-10 -8 (-15 -2076 (|#2| |#2|)) (-15 -3010 (|#2|)) (-15 -3864 ($ |#2|)) (-15 -3849 (|#2| $)) (-15 -2190 ($ |#2|)) (-15 -2132 ((-1166 |#1|) $)) (-15 -1871 ($ (-1166 |#1|))) (-15 -3115 ((-1166 |#1|) $)) (-15 -2245 ((-886 $))) (-15 -1874 ((-886 $))) (IF (|has| |#1| (-324)) (-15 -1615 ($ $)) |%noBranch|) (IF (|has| |#1| (-343)) (-6 (-343)) |%noBranch|)))
-((-1416 (((-108) $ $) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-2717 ((|#1| $) 13)) (-4151 (((-1032) $) NIL)) (-1400 ((|#2| $) 12)) (-2201 (($ |#1| |#2|) 16)) (-2190 (((-792) $) NIL) (($ (-2 (|:| -2717 |#1|) (|:| -1400 |#2|))) 15) (((-2 (|:| -2717 |#1|) (|:| -1400 |#2|)) $) 14)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 11)))
-(((-651 |#1| |#2| |#3|) (-13 (-784) (-10 -8 (-15 -1400 (|#2| $)) (-15 -2717 (|#1| $)) (-15 -2190 ($ (-2 (|:| -2717 |#1|) (|:| -1400 |#2|)))) (-15 -2190 ((-2 (|:| -2717 |#1|) (|:| -1400 |#2|)) $)) (-15 -2201 ($ |#1| |#2|)))) (-784) (-1014) (-1 (-108) (-2 (|:| -2717 |#1|) (|:| -1400 |#2|)) (-2 (|:| -2717 |#1|) (|:| -1400 |#2|)))) (T -651))
-((-1400 (*1 *2 *1) (-12 (-4 *2 (-1014)) (-5 *1 (-651 *3 *2 *4)) (-4 *3 (-784)) (-14 *4 (-1 (-108) (-2 (|:| -2717 *3) (|:| -1400 *2)) (-2 (|:| -2717 *3) (|:| -1400 *2)))))) (-2717 (*1 *2 *1) (-12 (-4 *2 (-784)) (-5 *1 (-651 *2 *3 *4)) (-4 *3 (-1014)) (-14 *4 (-1 (-108) (-2 (|:| -2717 *2) (|:| -1400 *3)) (-2 (|:| -2717 *2) (|:| -1400 *3)))))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2717 *3) (|:| -1400 *4))) (-4 *3 (-784)) (-4 *4 (-1014)) (-5 *1 (-651 *3 *4 *5)) (-14 *5 (-1 (-108) *2 *2)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2717 *3) (|:| -1400 *4))) (-5 *1 (-651 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-1014)) (-14 *5 (-1 (-108) *2 *2)))) (-2201 (*1 *1 *2 *3) (-12 (-5 *1 (-651 *2 *3 *4)) (-4 *2 (-784)) (-4 *3 (-1014)) (-14 *4 (-1 (-108) (-2 (|:| -2717 *2) (|:| -1400 *3)) (-2 (|:| -2717 *2) (|:| -1400 *3)))))))
-(-13 (-784) (-10 -8 (-15 -1400 (|#2| $)) (-15 -2717 (|#1| $)) (-15 -2190 ($ (-2 (|:| -2717 |#1|) (|:| -1400 |#2|)))) (-15 -2190 ((-2 (|:| -2717 |#1|) (|:| -1400 |#2|)) $)) (-15 -2201 ($ |#1| |#2|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 59)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) 89) (((-3 (-110) "failed") $) 95)) (-1484 ((|#1| $) NIL) (((-110) $) 39)) (-2682 (((-3 $ "failed") $) 90)) (-2995 ((|#2| (-110) |#2|) 82)) (-2782 (((-108) $) NIL)) (-1491 (($ |#1| (-336 (-110))) 13)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2657 (($ $ (-1 |#2| |#2|)) 58)) (-3250 (($ $ (-1 |#2| |#2|)) 44)) (-2545 ((|#2| $ |#2|) 32)) (-1786 ((|#1| |#1|) 100 (|has| |#1| (-157)))) (-2190 (((-792) $) 66) (($ (-522)) 17) (($ |#1|) 16) (($ (-110)) 23)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) 36)) (-3785 (($ $) 99 (|has| |#1| (-157))) (($ $ $) 103 (|has| |#1| (-157)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 20 T CONST)) (-3577 (($) 9 T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) 48) (($ $ $) NIL)) (-1602 (($ $ $) 73)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ (-110) (-522)) NIL) (($ $ (-522)) 57)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 98) (($ $ $) 50) (($ |#1| $) 96 (|has| |#1| (-157))) (($ $ |#1|) 97 (|has| |#1| (-157)))))
-(((-652 |#1| |#2|) (-13 (-971) (-962 |#1|) (-962 (-110)) (-262 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-157)) (PROGN (-6 (-37 |#1|)) (-15 -3785 ($ $)) (-15 -3785 ($ $ $)) (-15 -1786 (|#1| |#1|))) |%noBranch|) (-15 -3250 ($ $ (-1 |#2| |#2|))) (-15 -2657 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-110) (-522))) (-15 ** ($ $ (-522))) (-15 -2995 (|#2| (-110) |#2|)) (-15 -1491 ($ |#1| (-336 (-110)))))) (-971) (-590 |#1|)) (T -652))
-((-3785 (*1 *1 *1) (-12 (-4 *2 (-157)) (-4 *2 (-971)) (-5 *1 (-652 *2 *3)) (-4 *3 (-590 *2)))) (-3785 (*1 *1 *1 *1) (-12 (-4 *2 (-157)) (-4 *2 (-971)) (-5 *1 (-652 *2 *3)) (-4 *3 (-590 *2)))) (-1786 (*1 *2 *2) (-12 (-4 *2 (-157)) (-4 *2 (-971)) (-5 *1 (-652 *2 *3)) (-4 *3 (-590 *2)))) (-3250 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-590 *3)) (-4 *3 (-971)) (-5 *1 (-652 *3 *4)))) (-2657 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-590 *3)) (-4 *3 (-971)) (-5 *1 (-652 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-522)) (-4 *4 (-971)) (-5 *1 (-652 *4 *5)) (-4 *5 (-590 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *3 (-971)) (-5 *1 (-652 *3 *4)) (-4 *4 (-590 *3)))) (-2995 (*1 *2 *3 *2) (-12 (-5 *3 (-110)) (-4 *4 (-971)) (-5 *1 (-652 *4 *2)) (-4 *2 (-590 *4)))) (-1491 (*1 *1 *2 *3) (-12 (-5 *3 (-336 (-110))) (-4 *2 (-971)) (-5 *1 (-652 *2 *4)) (-4 *4 (-590 *2)))))
-(-13 (-971) (-962 |#1|) (-962 (-110)) (-262 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-157)) (PROGN (-6 (-37 |#1|)) (-15 -3785 ($ $)) (-15 -3785 ($ $ $)) (-15 -1786 (|#1| |#1|))) |%noBranch|) (-15 -3250 ($ $ (-1 |#2| |#2|))) (-15 -2657 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-110) (-522))) (-15 ** ($ $ (-522))) (-15 -2995 (|#2| (-110) |#2|)) (-15 -1491 ($ |#1| (-336 (-110))))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 33)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3864 (($ |#1| |#2|) 25)) (-2682 (((-3 $ "failed") $) 47)) (-2782 (((-108) $) 35)) (-3010 ((|#2| $) 12)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 48)) (-4151 (((-1032) $) NIL)) (-3351 (((-3 $ "failed") $ $) 46)) (-2190 (((-792) $) 24) (($ (-522)) 19) ((|#1| $) 13)) (-2323 (((-708)) 28)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 16 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 38)) (-1612 (($ $) 43) (($ $ $) 37)) (-1602 (($ $ $) 40)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 21) (($ $ $) 20)))
-(((-653 |#1| |#2| |#3| |#4| |#5|) (-13 (-971) (-10 -8 (-15 -3010 (|#2| $)) (-15 -2190 (|#1| $)) (-15 -3864 ($ |#1| |#2|)) (-15 -3351 ((-3 $ "failed") $ $)) (-15 -2682 ((-3 $ "failed") $)) (-15 -3098 ($ $)))) (-157) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -653))
-((-2682 (*1 *1 *1) (|partial| -12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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)))) (-3010 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-653 *3 *2 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-2190 (*1 *2 *1) (-12 (-4 *2 (-157)) (-5 *1 (-653 *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)))) (-3864 (*1 *1 *2 *3) (-12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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)))) (-3351 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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)))) (-3098 (*1 *1 *1) (-12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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 (-971) (-10 -8 (-15 -3010 (|#2| $)) (-15 -2190 (|#1| $)) (-15 -3864 ($ |#1| |#2|)) (-15 -3351 ((-3 $ "failed") $ $)) (-15 -2682 ((-3 $ "failed") $)) (-15 -3098 ($ $))))
+((-3810 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
+(((-648 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3810 (|#6| (-1 |#4| |#1|) |#3|))) (-514) (-1142 |#1|) (-1142 (-382 |#2|)) (-514) (-1142 |#4|) (-1142 (-382 |#5|))) (T -648))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-514)) (-4 *7 (-514)) (-4 *6 (-1142 *5)) (-4 *2 (-1142 (-382 *8))) (-5 *1 (-648 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1142 (-382 *6))) (-4 *8 (-1142 *7)))))
+(-10 -7 (-15 -3810 (|#6| (-1 |#4| |#1|) |#3|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-2333 (($ $ $) NIL)) (-2153 (($ |#1| |#2|) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-2859 (((-108) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1246 ((|#2| $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1466 (((-3 $ "failed") $ $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) ((|#1| $) NIL)) (-2742 (((-708)) NIL)) (-1407 (((-108) $ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
+(((-649 |#1| |#2| |#3| |#4| |#5|) (-13 (-338) (-10 -8 (-15 -1246 (|#2| $)) (-15 -2217 (|#1| $)) (-15 -2153 ($ |#1| |#2|)) (-15 -1466 ((-3 $ "failed") $ $)))) (-157) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -649))
+((-1246 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-649 *3 *2 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-2217 (*1 *2 *1) (-12 (-4 *2 (-157)) (-5 *1 (-649 *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)))) (-2153 (*1 *1 *2 *3) (-12 (-5 *1 (-649 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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)))) (-1466 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-649 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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 (-338) (-10 -8 (-15 -1246 (|#2| $)) (-15 -2217 (|#1| $)) (-15 -2153 ($ |#1| |#2|)) (-15 -1466 ((-3 $ "failed") $ $))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 30)) (-1428 (((-1166 |#1|) $ (-708)) NIL)) (-3533 (((-588 (-999)) $) NIL)) (-2264 (($ (-1081 |#1|)) NIL)) (-1264 (((-1081 $) $ (-999)) NIL) (((-1081 |#1|) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 (-999))) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3485 (($ $ $) NIL (|has| |#1| (-514)))) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2961 (($ $) NIL (|has| |#1| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-1685 (((-708)) 47 (|has| |#1| (-343)))) (-1633 (($ $ (-708)) NIL)) (-2165 (($ $ (-708)) NIL)) (-4076 ((|#2| |#2|) 44)) (-2458 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-426)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-999) "failed") $) NIL)) (-1478 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-999) $) NIL)) (-2908 (($ $ $ (-999)) NIL (|has| |#1| (-157))) ((|#1| $ $) NIL (|has| |#1| (-157)))) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-3241 (($ $) 34)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-2153 (($ |#2|) 42)) (-3920 (((-3 $ "failed") $) 85)) (-3344 (($) 51 (|has| |#1| (-343)))) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-2659 (($ $ $) NIL)) (-2830 (($ $ $) NIL (|has| |#1| (-514)))) (-3370 (((-2 (|:| -3112 |#1|) (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-514)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2883 (($ $) NIL (|has| |#1| (-426))) (($ $ (-999)) NIL (|has| |#1| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#1| (-838)))) (-4160 (((-886 $)) 79)) (-3792 (($ $ |#1| (-708) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-999) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-999) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3872 (((-708) $ $) NIL (|has| |#1| (-514)))) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-4208 (((-3 $ "failed") $) NIL (|has| |#1| (-1061)))) (-3520 (($ (-1081 |#1|) (-999)) NIL) (($ (-1081 $) (-999)) NIL)) (-2895 (($ $ (-708)) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-708)) 77) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ (-999)) NIL) (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1246 ((|#2|) 45)) (-3564 (((-708) $) NIL) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-1723 (($ (-1 (-708) (-708)) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-4178 (((-1081 |#1|) $) NIL)) (-3155 (((-3 (-999) "failed") $) NIL)) (-1475 (((-850) $) NIL (|has| |#1| (-343)))) (-2142 ((|#2| $) 41)) (-3216 (($ $) NIL)) (-3224 ((|#1| $) 28)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2311 (((-1068) $) NIL)) (-2927 (((-2 (|:| -3450 $) (|:| -4002 $)) $ (-708)) NIL)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| (-999)) (|:| -3858 (-708))) "failed") $) NIL)) (-2611 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3937 (($) NIL (|has| |#1| (-1061)) CONST)) (-2882 (($ (-850)) NIL (|has| |#1| (-343)))) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) NIL)) (-3207 ((|#1| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-3886 (($ $) 78 (|has| |#1| (-324)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-838)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-999) |#1|) NIL) (($ $ (-588 (-999)) (-588 |#1|)) NIL) (($ $ (-999) $) NIL) (($ $ (-588 (-999)) (-588 $)) NIL)) (-4031 (((-708) $) NIL (|has| |#1| (-338)))) (-2683 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-382 $) (-382 $) (-382 $)) NIL (|has| |#1| (-514))) ((|#1| (-382 $) |#1|) NIL (|has| |#1| (-338))) (((-382 $) $ (-382 $)) NIL (|has| |#1| (-514)))) (-2877 (((-3 $ "failed") $ (-708)) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 86 (|has| |#1| (-338)))) (-1615 (($ $ (-999)) NIL (|has| |#1| (-157))) ((|#1| $) NIL (|has| |#1| (-157)))) (-2731 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-2487 (((-708) $) 32) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| (-999) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-999) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-999) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2988 ((|#1| $) NIL (|has| |#1| (-426))) (($ $ (-999)) NIL (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2790 (((-886 $)) 36)) (-3884 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514))) (((-3 (-382 $) "failed") (-382 $) $) NIL (|has| |#1| (-514)))) (-2217 (((-792) $) 61) (($ (-522)) NIL) (($ |#1|) 58) (($ (-999)) NIL) (($ |#2|) 68) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-708)) 63) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 20 T CONST)) (-1625 (((-1166 |#1|) $) 75)) (-2751 (($ (-1166 |#1|)) 50)) (-3709 (($) 8 T CONST)) (-2252 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2932 (((-1166 |#1|) $) NIL)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) 69)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $) 72) (($ $ $) NIL)) (-1661 (($ $ $) 33)) (** (($ $ (-850)) NIL) (($ $ (-708)) 80)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 57) (($ $ $) 74) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 55) (($ $ |#1|) NIL)))
+(((-650 |#1| |#2|) (-13 (-1142 |#1|) (-10 -8 (-15 -4076 (|#2| |#2|)) (-15 -1246 (|#2|)) (-15 -2153 ($ |#2|)) (-15 -2142 (|#2| $)) (-15 -2217 ($ |#2|)) (-15 -1625 ((-1166 |#1|) $)) (-15 -2751 ($ (-1166 |#1|))) (-15 -2932 ((-1166 |#1|) $)) (-15 -4160 ((-886 $))) (-15 -2790 ((-886 $))) (IF (|has| |#1| (-324)) (-15 -3886 ($ $)) |%noBranch|) (IF (|has| |#1| (-343)) (-6 (-343)) |%noBranch|))) (-971) (-1142 |#1|)) (T -650))
+((-4076 (*1 *2 *2) (-12 (-4 *3 (-971)) (-5 *1 (-650 *3 *2)) (-4 *2 (-1142 *3)))) (-1246 (*1 *2) (-12 (-4 *2 (-1142 *3)) (-5 *1 (-650 *3 *2)) (-4 *3 (-971)))) (-2153 (*1 *1 *2) (-12 (-4 *3 (-971)) (-5 *1 (-650 *3 *2)) (-4 *2 (-1142 *3)))) (-2142 (*1 *2 *1) (-12 (-4 *2 (-1142 *3)) (-5 *1 (-650 *3 *2)) (-4 *3 (-971)))) (-2217 (*1 *1 *2) (-12 (-4 *3 (-971)) (-5 *1 (-650 *3 *2)) (-4 *2 (-1142 *3)))) (-1625 (*1 *2 *1) (-12 (-4 *3 (-971)) (-5 *2 (-1166 *3)) (-5 *1 (-650 *3 *4)) (-4 *4 (-1142 *3)))) (-2751 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-971)) (-5 *1 (-650 *3 *4)) (-4 *4 (-1142 *3)))) (-2932 (*1 *2 *1) (-12 (-4 *3 (-971)) (-5 *2 (-1166 *3)) (-5 *1 (-650 *3 *4)) (-4 *4 (-1142 *3)))) (-4160 (*1 *2) (-12 (-4 *3 (-971)) (-5 *2 (-886 (-650 *3 *4))) (-5 *1 (-650 *3 *4)) (-4 *4 (-1142 *3)))) (-2790 (*1 *2) (-12 (-4 *3 (-971)) (-5 *2 (-886 (-650 *3 *4))) (-5 *1 (-650 *3 *4)) (-4 *4 (-1142 *3)))) (-3886 (*1 *1 *1) (-12 (-4 *2 (-324)) (-4 *2 (-971)) (-5 *1 (-650 *2 *3)) (-4 *3 (-1142 *2)))))
+(-13 (-1142 |#1|) (-10 -8 (-15 -4076 (|#2| |#2|)) (-15 -1246 (|#2|)) (-15 -2153 ($ |#2|)) (-15 -2142 (|#2| $)) (-15 -2217 ($ |#2|)) (-15 -1625 ((-1166 |#1|) $)) (-15 -2751 ($ (-1166 |#1|))) (-15 -2932 ((-1166 |#1|) $)) (-15 -4160 ((-886 $))) (-15 -2790 ((-886 $))) (IF (|has| |#1| (-324)) (-15 -3886 ($ $)) |%noBranch|) (IF (|has| |#1| (-343)) (-6 (-343)) |%noBranch|)))
+((-1419 (((-108) $ $) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-2882 ((|#1| $) 13)) (-4174 (((-1032) $) NIL)) (-3858 ((|#2| $) 12)) (-2227 (($ |#1| |#2|) 16)) (-2217 (((-792) $) NIL) (($ (-2 (|:| -2882 |#1|) (|:| -3858 |#2|))) 15) (((-2 (|:| -2882 |#1|) (|:| -3858 |#2|)) $) 14)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 11)))
+(((-651 |#1| |#2| |#3|) (-13 (-784) (-10 -8 (-15 -3858 (|#2| $)) (-15 -2882 (|#1| $)) (-15 -2217 ($ (-2 (|:| -2882 |#1|) (|:| -3858 |#2|)))) (-15 -2217 ((-2 (|:| -2882 |#1|) (|:| -3858 |#2|)) $)) (-15 -2227 ($ |#1| |#2|)))) (-784) (-1014) (-1 (-108) (-2 (|:| -2882 |#1|) (|:| -3858 |#2|)) (-2 (|:| -2882 |#1|) (|:| -3858 |#2|)))) (T -651))
+((-3858 (*1 *2 *1) (-12 (-4 *2 (-1014)) (-5 *1 (-651 *3 *2 *4)) (-4 *3 (-784)) (-14 *4 (-1 (-108) (-2 (|:| -2882 *3) (|:| -3858 *2)) (-2 (|:| -2882 *3) (|:| -3858 *2)))))) (-2882 (*1 *2 *1) (-12 (-4 *2 (-784)) (-5 *1 (-651 *2 *3 *4)) (-4 *3 (-1014)) (-14 *4 (-1 (-108) (-2 (|:| -2882 *2) (|:| -3858 *3)) (-2 (|:| -2882 *2) (|:| -3858 *3)))))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2882 *3) (|:| -3858 *4))) (-4 *3 (-784)) (-4 *4 (-1014)) (-5 *1 (-651 *3 *4 *5)) (-14 *5 (-1 (-108) *2 *2)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2882 *3) (|:| -3858 *4))) (-5 *1 (-651 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-1014)) (-14 *5 (-1 (-108) *2 *2)))) (-2227 (*1 *1 *2 *3) (-12 (-5 *1 (-651 *2 *3 *4)) (-4 *2 (-784)) (-4 *3 (-1014)) (-14 *4 (-1 (-108) (-2 (|:| -2882 *2) (|:| -3858 *3)) (-2 (|:| -2882 *2) (|:| -3858 *3)))))))
+(-13 (-784) (-10 -8 (-15 -3858 (|#2| $)) (-15 -2882 (|#1| $)) (-15 -2217 ($ (-2 (|:| -2882 |#1|) (|:| -3858 |#2|)))) (-15 -2217 ((-2 (|:| -2882 |#1|) (|:| -3858 |#2|)) $)) (-15 -2227 ($ |#1| |#2|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 59)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) 89) (((-3 (-110) "failed") $) 95)) (-1478 ((|#1| $) NIL) (((-110) $) 39)) (-3920 (((-3 $ "failed") $) 90)) (-4106 ((|#2| (-110) |#2|) 82)) (-2859 (((-108) $) NIL)) (-1687 (($ |#1| (-336 (-110))) 13)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1786 (($ $ (-1 |#2| |#2|)) 58)) (-1710 (($ $ (-1 |#2| |#2|)) 44)) (-2683 ((|#2| $ |#2|) 32)) (-3658 ((|#1| |#1|) 100 (|has| |#1| (-157)))) (-2217 (((-792) $) 66) (($ (-522)) 17) (($ |#1|) 16) (($ (-110)) 23)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) 36)) (-3397 (($ $) 99 (|has| |#1| (-157))) (($ $ $) 103 (|has| |#1| (-157)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 20 T CONST)) (-3709 (($) 9 T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) 48) (($ $ $) NIL)) (-1661 (($ $ $) 73)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ (-110) (-522)) NIL) (($ $ (-522)) 57)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 98) (($ $ $) 50) (($ |#1| $) 96 (|has| |#1| (-157))) (($ $ |#1|) 97 (|has| |#1| (-157)))))
+(((-652 |#1| |#2|) (-13 (-971) (-962 |#1|) (-962 (-110)) (-262 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-157)) (PROGN (-6 (-37 |#1|)) (-15 -3397 ($ $)) (-15 -3397 ($ $ $)) (-15 -3658 (|#1| |#1|))) |%noBranch|) (-15 -1710 ($ $ (-1 |#2| |#2|))) (-15 -1786 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-110) (-522))) (-15 ** ($ $ (-522))) (-15 -4106 (|#2| (-110) |#2|)) (-15 -1687 ($ |#1| (-336 (-110)))))) (-971) (-590 |#1|)) (T -652))
+((-3397 (*1 *1 *1) (-12 (-4 *2 (-157)) (-4 *2 (-971)) (-5 *1 (-652 *2 *3)) (-4 *3 (-590 *2)))) (-3397 (*1 *1 *1 *1) (-12 (-4 *2 (-157)) (-4 *2 (-971)) (-5 *1 (-652 *2 *3)) (-4 *3 (-590 *2)))) (-3658 (*1 *2 *2) (-12 (-4 *2 (-157)) (-4 *2 (-971)) (-5 *1 (-652 *2 *3)) (-4 *3 (-590 *2)))) (-1710 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-590 *3)) (-4 *3 (-971)) (-5 *1 (-652 *3 *4)))) (-1786 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-590 *3)) (-4 *3 (-971)) (-5 *1 (-652 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-522)) (-4 *4 (-971)) (-5 *1 (-652 *4 *5)) (-4 *5 (-590 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *3 (-971)) (-5 *1 (-652 *3 *4)) (-4 *4 (-590 *3)))) (-4106 (*1 *2 *3 *2) (-12 (-5 *3 (-110)) (-4 *4 (-971)) (-5 *1 (-652 *4 *2)) (-4 *2 (-590 *4)))) (-1687 (*1 *1 *2 *3) (-12 (-5 *3 (-336 (-110))) (-4 *2 (-971)) (-5 *1 (-652 *2 *4)) (-4 *4 (-590 *2)))))
+(-13 (-971) (-962 |#1|) (-962 (-110)) (-262 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-157)) (PROGN (-6 (-37 |#1|)) (-15 -3397 ($ $)) (-15 -3397 ($ $ $)) (-15 -3658 (|#1| |#1|))) |%noBranch|) (-15 -1710 ($ $ (-1 |#2| |#2|))) (-15 -1786 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-110) (-522))) (-15 ** ($ $ (-522))) (-15 -4106 (|#2| (-110) |#2|)) (-15 -1687 ($ |#1| (-336 (-110))))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 33)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-2153 (($ |#1| |#2|) 25)) (-3920 (((-3 $ "failed") $) 47)) (-2859 (((-108) $) 35)) (-1246 ((|#2| $) 12)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 48)) (-4174 (((-1032) $) NIL)) (-1466 (((-3 $ "failed") $ $) 46)) (-2217 (((-792) $) 24) (($ (-522)) 19) ((|#1| $) 13)) (-2742 (((-708)) 28)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 16 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 38)) (-1672 (($ $) 43) (($ $ $) 37)) (-1661 (($ $ $) 40)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 21) (($ $ $) 20)))
+(((-653 |#1| |#2| |#3| |#4| |#5|) (-13 (-971) (-10 -8 (-15 -1246 (|#2| $)) (-15 -2217 (|#1| $)) (-15 -2153 ($ |#1| |#2|)) (-15 -1466 ((-3 $ "failed") $ $)) (-15 -3920 ((-3 $ "failed") $)) (-15 -3193 ($ $)))) (-157) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -653))
+((-3920 (*1 *1 *1) (|partial| -12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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)))) (-1246 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-653 *3 *2 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-2217 (*1 *2 *1) (-12 (-4 *2 (-157)) (-5 *1 (-653 *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)))) (-2153 (*1 *1 *2 *3) (-12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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)))) (-1466 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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)))) (-3193 (*1 *1 *1) (-12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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 (-971) (-10 -8 (-15 -1246 (|#2| $)) (-15 -2217 (|#1| $)) (-15 -2153 ($ |#1| |#2|)) (-15 -1466 ((-3 $ "failed") $ $)) (-15 -3920 ((-3 $ "failed") $)) (-15 -3193 ($ $))))
((* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#2| $) NIL) (($ $ |#2|) 9)))
(((-654 |#1| |#2|) (-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|))) (-655 |#2|) (-157)) (T -654))
NIL
(-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
(((-655 |#1|) (-1197) (-157)) (T -655))
NIL
(-13 (-107 |t#1| |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#1|) . T) ((-977 |#1|) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-1662 (($ |#1|) 17) (($ $ |#1|) 20)) (-3091 (($ |#1|) 18) (($ $ |#1|) 21)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-2782 (((-108) $) NIL)) (-3253 (($ |#1| |#1| |#1| |#1|) 8)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 16)) (-4151 (((-1032) $) NIL)) (-2289 ((|#1| $ |#1|) 24) (((-770 |#1|) $ (-770 |#1|)) 32)) (-3122 (($ $ $) NIL)) (-1288 (($ $ $) NIL)) (-2190 (((-792) $) 39)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3577 (($) 9 T CONST)) (-1531 (((-108) $ $) 44)) (-1620 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ $ $) 14)))
-(((-656 |#1|) (-13 (-447) (-10 -8 (-15 -3253 ($ |#1| |#1| |#1| |#1|)) (-15 -1662 ($ |#1|)) (-15 -3091 ($ |#1|)) (-15 -2682 ($)) (-15 -1662 ($ $ |#1|)) (-15 -3091 ($ $ |#1|)) (-15 -2682 ($ $)) (-15 -2289 (|#1| $ |#1|)) (-15 -2289 ((-770 |#1|) $ (-770 |#1|))))) (-338)) (T -656))
-((-3253 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-1662 (*1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-3091 (*1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-2682 (*1 *1) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-1662 (*1 *1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-3091 (*1 *1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-2682 (*1 *1 *1) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-2289 (*1 *2 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-2289 (*1 *2 *1 *2) (-12 (-5 *2 (-770 *3)) (-4 *3 (-338)) (-5 *1 (-656 *3)))))
-(-13 (-447) (-10 -8 (-15 -3253 ($ |#1| |#1| |#1| |#1|)) (-15 -1662 ($ |#1|)) (-15 -3091 ($ |#1|)) (-15 -2682 ($)) (-15 -1662 ($ $ |#1|)) (-15 -3091 ($ $ |#1|)) (-15 -2682 ($ $)) (-15 -2289 (|#1| $ |#1|)) (-15 -2289 ((-770 |#1|) $ (-770 |#1|)))))
-((-1679 (($ $ (-850)) 12)) (-3277 (($ $ (-850)) 13)) (** (($ $ (-850)) 10)))
-(((-657 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-850))) (-15 -3277 (|#1| |#1| (-850))) (-15 -1679 (|#1| |#1| (-850)))) (-658)) (T -657))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-850))) (-15 -3277 (|#1| |#1| (-850))) (-15 -1679 (|#1| |#1| (-850))))
-((-1416 (((-108) $ $) 7)) (-1679 (($ $ (-850)) 15)) (-3277 (($ $ (-850)) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-1531 (((-108) $ $) 6)) (** (($ $ (-850)) 13)) (* (($ $ $) 16)))
+((-1419 (((-108) $ $) NIL)) (-1736 (($ |#1|) 17) (($ $ |#1|) 20)) (-3808 (($ |#1|) 18) (($ $ |#1|) 21)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-2859 (((-108) $) NIL)) (-1744 (($ |#1| |#1| |#1| |#1|) 8)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 16)) (-4174 (((-1032) $) NIL)) (-2330 ((|#1| $ |#1|) 24) (((-770 |#1|) $ (-770 |#1|)) 32)) (-2983 (($ $ $) NIL)) (-1596 (($ $ $) NIL)) (-2217 (((-792) $) 39)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3709 (($) 9 T CONST)) (-1562 (((-108) $ $) 44)) (-1682 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ $ $) 14)))
+(((-656 |#1|) (-13 (-447) (-10 -8 (-15 -1744 ($ |#1| |#1| |#1| |#1|)) (-15 -1736 ($ |#1|)) (-15 -3808 ($ |#1|)) (-15 -3920 ($)) (-15 -1736 ($ $ |#1|)) (-15 -3808 ($ $ |#1|)) (-15 -3920 ($ $)) (-15 -2330 (|#1| $ |#1|)) (-15 -2330 ((-770 |#1|) $ (-770 |#1|))))) (-338)) (T -656))
+((-1744 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-1736 (*1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-3808 (*1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-3920 (*1 *1) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-1736 (*1 *1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-3808 (*1 *1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-3920 (*1 *1 *1) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-2330 (*1 *2 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))) (-2330 (*1 *2 *1 *2) (-12 (-5 *2 (-770 *3)) (-4 *3 (-338)) (-5 *1 (-656 *3)))))
+(-13 (-447) (-10 -8 (-15 -1744 ($ |#1| |#1| |#1| |#1|)) (-15 -1736 ($ |#1|)) (-15 -3808 ($ |#1|)) (-15 -3920 ($)) (-15 -1736 ($ $ |#1|)) (-15 -3808 ($ $ |#1|)) (-15 -3920 ($ $)) (-15 -2330 (|#1| $ |#1|)) (-15 -2330 ((-770 |#1|) $ (-770 |#1|)))))
+((-2698 (($ $ (-850)) 12)) (-1946 (($ $ (-850)) 13)) (** (($ $ (-850)) 10)))
+(((-657 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-850))) (-15 -1946 (|#1| |#1| (-850))) (-15 -2698 (|#1| |#1| (-850)))) (-658)) (T -657))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-850))) (-15 -1946 (|#1| |#1| (-850))) (-15 -2698 (|#1| |#1| (-850))))
+((-1419 (((-108) $ $) 7)) (-2698 (($ $ (-850)) 15)) (-1946 (($ $ (-850)) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-1562 (((-108) $ $) 6)) (** (($ $ (-850)) 13)) (* (($ $ $) 16)))
(((-658) (-1197)) (T -658))
-((* (*1 *1 *1 *1) (-4 *1 (-658))) (-1679 (*1 *1 *1 *2) (-12 (-4 *1 (-658)) (-5 *2 (-850)))) (-3277 (*1 *1 *1 *2) (-12 (-4 *1 (-658)) (-5 *2 (-850)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-658)) (-5 *2 (-850)))))
-(-13 (-1014) (-10 -8 (-15 * ($ $ $)) (-15 -1679 ($ $ (-850))) (-15 -3277 ($ $ (-850))) (-15 ** ($ $ (-850)))))
+((* (*1 *1 *1 *1) (-4 *1 (-658))) (-2698 (*1 *1 *1 *2) (-12 (-4 *1 (-658)) (-5 *2 (-850)))) (-1946 (*1 *1 *1 *2) (-12 (-4 *1 (-658)) (-5 *2 (-850)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-658)) (-5 *2 (-850)))))
+(-13 (-1014) (-10 -8 (-15 * ($ $ $)) (-15 -2698 ($ $ (-850))) (-15 -1946 ($ $ (-850))) (-15 ** ($ $ (-850)))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1679 (($ $ (-850)) NIL) (($ $ (-708)) 17)) (-2782 (((-108) $) 10)) (-3277 (($ $ (-850)) NIL) (($ $ (-708)) 18)) (** (($ $ (-850)) NIL) (($ $ (-708)) 15)))
-(((-659 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-708))) (-15 -3277 (|#1| |#1| (-708))) (-15 -1679 (|#1| |#1| (-708))) (-15 -2782 ((-108) |#1|)) (-15 ** (|#1| |#1| (-850))) (-15 -3277 (|#1| |#1| (-850))) (-15 -1679 (|#1| |#1| (-850)))) (-660)) (T -659))
+((-2698 (($ $ (-850)) NIL) (($ $ (-708)) 17)) (-2859 (((-108) $) 10)) (-1946 (($ $ (-850)) NIL) (($ $ (-708)) 18)) (** (($ $ (-850)) NIL) (($ $ (-708)) 15)))
+(((-659 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-708))) (-15 -1946 (|#1| |#1| (-708))) (-15 -2698 (|#1| |#1| (-708))) (-15 -2859 ((-108) |#1|)) (-15 ** (|#1| |#1| (-850))) (-15 -1946 (|#1| |#1| (-850))) (-15 -2698 (|#1| |#1| (-850)))) (-660)) (T -659))
NIL
-(-10 -8 (-15 ** (|#1| |#1| (-708))) (-15 -3277 (|#1| |#1| (-708))) (-15 -1679 (|#1| |#1| (-708))) (-15 -2782 ((-108) |#1|)) (-15 ** (|#1| |#1| (-850))) (-15 -3277 (|#1| |#1| (-850))) (-15 -1679 (|#1| |#1| (-850))))
-((-1416 (((-108) $ $) 7)) (-3637 (((-3 $ "failed") $) 17)) (-1679 (($ $ (-850)) 15) (($ $ (-708)) 22)) (-2682 (((-3 $ "failed") $) 19)) (-2782 (((-108) $) 23)) (-2231 (((-3 $ "failed") $) 18)) (-3277 (($ $ (-850)) 14) (($ $ (-708)) 21)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3577 (($) 24 T CONST)) (-1531 (((-108) $ $) 6)) (** (($ $ (-850)) 13) (($ $ (-708)) 20)) (* (($ $ $) 16)))
+(-10 -8 (-15 ** (|#1| |#1| (-708))) (-15 -1946 (|#1| |#1| (-708))) (-15 -2698 (|#1| |#1| (-708))) (-15 -2859 ((-108) |#1|)) (-15 ** (|#1| |#1| (-850))) (-15 -1946 (|#1| |#1| (-850))) (-15 -2698 (|#1| |#1| (-850))))
+((-1419 (((-108) $ $) 7)) (-1279 (((-3 $ "failed") $) 17)) (-2698 (($ $ (-850)) 15) (($ $ (-708)) 22)) (-3920 (((-3 $ "failed") $) 19)) (-2859 (((-108) $) 23)) (-3070 (((-3 $ "failed") $) 18)) (-1946 (($ $ (-850)) 14) (($ $ (-708)) 21)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3709 (($) 24 T CONST)) (-1562 (((-108) $ $) 6)) (** (($ $ (-850)) 13) (($ $ (-708)) 20)) (* (($ $ $) 16)))
(((-660) (-1197)) (T -660))
-((-3577 (*1 *1) (-4 *1 (-660))) (-2782 (*1 *2 *1) (-12 (-4 *1 (-660)) (-5 *2 (-108)))) (-1679 (*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-708)))) (-3277 (*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-708)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-708)))) (-2682 (*1 *1 *1) (|partial| -4 *1 (-660))) (-2231 (*1 *1 *1) (|partial| -4 *1 (-660))) (-3637 (*1 *1 *1) (|partial| -4 *1 (-660))))
-(-13 (-658) (-10 -8 (-15 (-3577) ($) -2677) (-15 -2782 ((-108) $)) (-15 -1679 ($ $ (-708))) (-15 -3277 ($ $ (-708))) (-15 ** ($ $ (-708))) (-15 -2682 ((-3 $ "failed") $)) (-15 -2231 ((-3 $ "failed") $)) (-15 -3637 ((-3 $ "failed") $))))
+((-3709 (*1 *1) (-4 *1 (-660))) (-2859 (*1 *2 *1) (-12 (-4 *1 (-660)) (-5 *2 (-108)))) (-2698 (*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-708)))) (-1946 (*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-708)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-708)))) (-3920 (*1 *1 *1) (|partial| -4 *1 (-660))) (-3070 (*1 *1 *1) (|partial| -4 *1 (-660))) (-1279 (*1 *1 *1) (|partial| -4 *1 (-660))))
+(-13 (-658) (-10 -8 (-15 (-3709) ($) -2855) (-15 -2859 ((-108) $)) (-15 -2698 ($ $ (-708))) (-15 -1946 ($ $ (-708))) (-15 ** ($ $ (-708))) (-15 -3920 ((-3 $ "failed") $)) (-15 -3070 ((-3 $ "failed") $)) (-15 -1279 ((-3 $ "failed") $))))
(((-97) . T) ((-562 (-792)) . T) ((-658) . T) ((-1014) . T))
-((-1629 (((-708)) 35)) (-1297 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-1484 (((-522) $) NIL) (((-382 (-522)) $) NIL) ((|#2| $) 22)) (-3864 (($ |#3|) NIL) (((-3 $ "failed") (-382 |#3|)) 45)) (-2682 (((-3 $ "failed") $) 65)) (-3255 (($) 39)) (-2100 ((|#2| $) 20)) (-1383 (($) 17)) (-2157 (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) 53) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL) (($ $ (-708)) NIL) (($ $) NIL)) (-1859 (((-628 |#2|) (-1166 $) (-1 |#2| |#2|)) 60)) (-1431 (((-1166 |#2|) $) NIL) (($ (-1166 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-2051 ((|#3| $) 32)) (-3855 (((-1166 $)) 29)))
-(((-661 |#1| |#2| |#3|) (-10 -8 (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -3255 (|#1|)) (-15 -1629 ((-708))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -1859 ((-628 |#2|) (-1166 |#1|) (-1 |#2| |#2|))) (-15 -3864 ((-3 |#1| "failed") (-382 |#3|))) (-15 -1431 (|#1| |#3|)) (-15 -3864 (|#1| |#3|)) (-15 -1383 (|#1|)) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -1431 (|#3| |#1|)) (-15 -1431 (|#1| (-1166 |#2|))) (-15 -1431 ((-1166 |#2|) |#1|)) (-15 -3855 ((-1166 |#1|))) (-15 -2051 (|#3| |#1|)) (-15 -2100 (|#2| |#1|)) (-15 -2682 ((-3 |#1| "failed") |#1|))) (-662 |#2| |#3|) (-157) (-1142 |#2|)) (T -661))
-((-1629 (*1 *2) (-12 (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-708)) (-5 *1 (-661 *3 *4 *5)) (-4 *3 (-662 *4 *5)))))
-(-10 -8 (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -3255 (|#1|)) (-15 -1629 ((-708))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -1859 ((-628 |#2|) (-1166 |#1|) (-1 |#2| |#2|))) (-15 -3864 ((-3 |#1| "failed") (-382 |#3|))) (-15 -1431 (|#1| |#3|)) (-15 -3864 (|#1| |#3|)) (-15 -1383 (|#1|)) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -1431 (|#3| |#1|)) (-15 -1431 (|#1| (-1166 |#2|))) (-15 -1431 ((-1166 |#2|) |#1|)) (-15 -3855 ((-1166 |#1|))) (-15 -2051 (|#3| |#1|)) (-15 -2100 (|#2| |#1|)) (-15 -2682 ((-3 |#1| "failed") |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 93 (|has| |#1| (-338)))) (-2022 (($ $) 94 (|has| |#1| (-338)))) (-3739 (((-108) $) 96 (|has| |#1| (-338)))) (-3174 (((-628 |#1|) (-1166 $)) 46) (((-628 |#1|)) 61)) (-1865 ((|#1| $) 52)) (-1398 (((-1094 (-850) (-708)) (-522)) 147 (|has| |#1| (-324)))) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 113 (|has| |#1| (-338)))) (-3450 (((-393 $) $) 114 (|has| |#1| (-338)))) (-1687 (((-108) $ $) 104 (|has| |#1| (-338)))) (-1629 (((-708)) 87 (|has| |#1| (-343)))) (-3175 (($) 17 T CONST)) (-1297 (((-3 (-522) "failed") $) 169 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 167 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 166)) (-1484 (((-522) $) 170 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 168 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 165)) (-3766 (($ (-1166 |#1|) (-1166 $)) 48) (($ (-1166 |#1|)) 64)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) 153 (|has| |#1| (-324)))) (-2277 (($ $ $) 108 (|has| |#1| (-338)))) (-2109 (((-628 |#1|) $ (-1166 $)) 53) (((-628 |#1|) $) 59)) (-2096 (((-628 (-522)) (-628 $)) 164 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 163 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 162) (((-628 |#1|) (-628 $)) 161)) (-3864 (($ |#2|) 158) (((-3 $ "failed") (-382 |#2|)) 155 (|has| |#1| (-338)))) (-2682 (((-3 $ "failed") $) 34)) (-3166 (((-850)) 54)) (-3255 (($) 90 (|has| |#1| (-343)))) (-2254 (($ $ $) 107 (|has| |#1| (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 102 (|has| |#1| (-338)))) (-1223 (($) 149 (|has| |#1| (-324)))) (-2511 (((-108) $) 150 (|has| |#1| (-324)))) (-2111 (($ $ (-708)) 141 (|has| |#1| (-324))) (($ $) 140 (|has| |#1| (-324)))) (-2813 (((-108) $) 115 (|has| |#1| (-338)))) (-3714 (((-850) $) 152 (|has| |#1| (-324))) (((-770 (-850)) $) 138 (|has| |#1| (-324)))) (-2782 (((-108) $) 31)) (-2100 ((|#1| $) 51)) (-3004 (((-3 $ "failed") $) 142 (|has| |#1| (-324)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 111 (|has| |#1| (-338)))) (-1712 ((|#2| $) 44 (|has| |#1| (-338)))) (-2120 (((-850) $) 89 (|has| |#1| (-343)))) (-3849 ((|#2| $) 156)) (-2224 (($ (-588 $)) 100 (|has| |#1| (-338))) (($ $ $) 99 (|has| |#1| (-338)))) (-2385 (((-1068) $) 9)) (-3098 (($ $) 116 (|has| |#1| (-338)))) (-3802 (($) 143 (|has| |#1| (-324)) CONST)) (-2717 (($ (-850)) 88 (|has| |#1| (-343)))) (-4151 (((-1032) $) 10)) (-1383 (($) 160)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 101 (|has| |#1| (-338)))) (-2259 (($ (-588 $)) 98 (|has| |#1| (-338))) (($ $ $) 97 (|has| |#1| (-338)))) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) 146 (|has| |#1| (-324)))) (-1916 (((-393 $) $) 112 (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 109 (|has| |#1| (-338)))) (-2232 (((-3 $ "failed") $ $) 92 (|has| |#1| (-338)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 103 (|has| |#1| (-338)))) (-3730 (((-708) $) 105 (|has| |#1| (-338)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 106 (|has| |#1| (-338)))) (-2769 ((|#1| (-1166 $)) 47) ((|#1|) 60)) (-3018 (((-708) $) 151 (|has| |#1| (-324))) (((-3 (-708) "failed") $ $) 139 (|has| |#1| (-324)))) (-2157 (($ $) 137 (-3708 (-4015 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-708)) 135 (-3708 (-4015 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-1085)) 133 (-4015 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-588 (-1085))) 132 (-4015 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-1085) (-708)) 131 (-4015 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-588 (-1085)) (-588 (-708))) 130 (-4015 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-1 |#1| |#1|) (-708)) 123 (|has| |#1| (-338))) (($ $ (-1 |#1| |#1|)) 122 (|has| |#1| (-338)))) (-1859 (((-628 |#1|) (-1166 $) (-1 |#1| |#1|)) 154 (|has| |#1| (-338)))) (-1479 ((|#2|) 159)) (-2581 (($) 148 (|has| |#1| (-324)))) (-3677 (((-1166 |#1|) $ (-1166 $)) 50) (((-628 |#1|) (-1166 $) (-1166 $)) 49) (((-1166 |#1|) $) 66) (((-628 |#1|) (-1166 $)) 65)) (-1431 (((-1166 |#1|) $) 63) (($ (-1166 |#1|)) 62) ((|#2| $) 171) (($ |#2|) 157)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 145 (|has| |#1| (-324)))) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37) (($ $) 91 (|has| |#1| (-338))) (($ (-382 (-522))) 86 (-3708 (|has| |#1| (-338)) (|has| |#1| (-962 (-382 (-522))))))) (-2143 (($ $) 144 (|has| |#1| (-324))) (((-3 $ "failed") $) 43 (|has| |#1| (-133)))) (-2051 ((|#2| $) 45)) (-2323 (((-708)) 29)) (-3855 (((-1166 $)) 67)) (-3958 (((-108) $ $) 95 (|has| |#1| (-338)))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 117 (|has| |#1| (-338)))) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $) 136 (-3708 (-4015 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-708)) 134 (-3708 (-4015 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-1085)) 129 (-4015 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-588 (-1085))) 128 (-4015 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-1085) (-708)) 127 (-4015 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-588 (-1085)) (-588 (-708))) 126 (-4015 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-1 |#1| |#1|) (-708)) 125 (|has| |#1| (-338))) (($ $ (-1 |#1| |#1|)) 124 (|has| |#1| (-338)))) (-1531 (((-108) $ $) 6)) (-1620 (($ $ $) 121 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 118 (|has| |#1| (-338)))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38) (($ (-382 (-522)) $) 120 (|has| |#1| (-338))) (($ $ (-382 (-522))) 119 (|has| |#1| (-338)))))
+((-1685 (((-708)) 35)) (-3700 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-1478 (((-522) $) NIL) (((-382 (-522)) $) NIL) ((|#2| $) 22)) (-2153 (($ |#3|) NIL) (((-3 $ "failed") (-382 |#3|)) 45)) (-3920 (((-3 $ "failed") $) 65)) (-3344 (($) 39)) (-1269 ((|#2| $) 20)) (-1368 (($) 17)) (-2731 (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) 53) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL) (($ $ (-708)) NIL) (($ $) NIL)) (-2620 (((-628 |#2|) (-1166 $) (-1 |#2| |#2|)) 60)) (-3873 (((-1166 |#2|) $) NIL) (($ (-1166 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-2645 ((|#3| $) 32)) (-2905 (((-1166 $)) 29)))
+(((-661 |#1| |#2| |#3|) (-10 -8 (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -3344 (|#1|)) (-15 -1685 ((-708))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2620 ((-628 |#2|) (-1166 |#1|) (-1 |#2| |#2|))) (-15 -2153 ((-3 |#1| "failed") (-382 |#3|))) (-15 -3873 (|#1| |#3|)) (-15 -2153 (|#1| |#3|)) (-15 -1368 (|#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -3873 (|#3| |#1|)) (-15 -3873 (|#1| (-1166 |#2|))) (-15 -3873 ((-1166 |#2|) |#1|)) (-15 -2905 ((-1166 |#1|))) (-15 -2645 (|#3| |#1|)) (-15 -1269 (|#2| |#1|)) (-15 -3920 ((-3 |#1| "failed") |#1|))) (-662 |#2| |#3|) (-157) (-1142 |#2|)) (T -661))
+((-1685 (*1 *2) (-12 (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-708)) (-5 *1 (-661 *3 *4 *5)) (-4 *3 (-662 *4 *5)))))
+(-10 -8 (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -3344 (|#1|)) (-15 -1685 ((-708))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2620 ((-628 |#2|) (-1166 |#1|) (-1 |#2| |#2|))) (-15 -2153 ((-3 |#1| "failed") (-382 |#3|))) (-15 -3873 (|#1| |#3|)) (-15 -2153 (|#1| |#3|)) (-15 -1368 (|#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -3873 (|#3| |#1|)) (-15 -3873 (|#1| (-1166 |#2|))) (-15 -3873 ((-1166 |#2|) |#1|)) (-15 -2905 ((-1166 |#1|))) (-15 -2645 (|#3| |#1|)) (-15 -1269 (|#2| |#1|)) (-15 -3920 ((-3 |#1| "failed") |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 93 (|has| |#1| (-338)))) (-2298 (($ $) 94 (|has| |#1| (-338)))) (-3007 (((-108) $) 96 (|has| |#1| (-338)))) (-3356 (((-628 |#1|) (-1166 $)) 46) (((-628 |#1|)) 61)) (-1945 ((|#1| $) 52)) (-3833 (((-1094 (-850) (-708)) (-522)) 147 (|has| |#1| (-324)))) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 113 (|has| |#1| (-338)))) (-3133 (((-393 $) $) 114 (|has| |#1| (-338)))) (-2805 (((-108) $ $) 104 (|has| |#1| (-338)))) (-1685 (((-708)) 87 (|has| |#1| (-343)))) (-3367 (($) 17 T CONST)) (-3700 (((-3 (-522) "failed") $) 169 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 167 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 166)) (-1478 (((-522) $) 170 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 168 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 165)) (-3225 (($ (-1166 |#1|) (-1166 $)) 48) (($ (-1166 |#1|)) 64)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) 153 (|has| |#1| (-324)))) (-2333 (($ $ $) 108 (|has| |#1| (-338)))) (-1359 (((-628 |#1|) $ (-1166 $)) 53) (((-628 |#1|) $) 59)) (-1226 (((-628 (-522)) (-628 $)) 164 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 163 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 162) (((-628 |#1|) (-628 $)) 161)) (-2153 (($ |#2|) 158) (((-3 $ "failed") (-382 |#2|)) 155 (|has| |#1| (-338)))) (-3920 (((-3 $ "failed") $) 34)) (-1692 (((-850)) 54)) (-3344 (($) 90 (|has| |#1| (-343)))) (-2303 (($ $ $) 107 (|has| |#1| (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 102 (|has| |#1| (-338)))) (-2160 (($) 149 (|has| |#1| (-324)))) (-2087 (((-108) $) 150 (|has| |#1| (-324)))) (-1380 (($ $ (-708)) 141 (|has| |#1| (-324))) (($ $) 140 (|has| |#1| (-324)))) (-2725 (((-108) $) 115 (|has| |#1| (-338)))) (-3872 (((-850) $) 152 (|has| |#1| (-324))) (((-770 (-850)) $) 138 (|has| |#1| (-324)))) (-2859 (((-108) $) 31)) (-1269 ((|#1| $) 51)) (-4208 (((-3 $ "failed") $) 142 (|has| |#1| (-324)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 111 (|has| |#1| (-338)))) (-4199 ((|#2| $) 44 (|has| |#1| (-338)))) (-1475 (((-850) $) 89 (|has| |#1| (-343)))) (-2142 ((|#2| $) 156)) (-2267 (($ (-588 $)) 100 (|has| |#1| (-338))) (($ $ $) 99 (|has| |#1| (-338)))) (-2311 (((-1068) $) 9)) (-3193 (($ $) 116 (|has| |#1| (-338)))) (-3937 (($) 143 (|has| |#1| (-324)) CONST)) (-2882 (($ (-850)) 88 (|has| |#1| (-343)))) (-4174 (((-1032) $) 10)) (-1368 (($) 160)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 101 (|has| |#1| (-338)))) (-2308 (($ (-588 $)) 98 (|has| |#1| (-338))) (($ $ $) 97 (|has| |#1| (-338)))) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) 146 (|has| |#1| (-324)))) (-2006 (((-393 $) $) 112 (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 109 (|has| |#1| (-338)))) (-2276 (((-3 $ "failed") $ $) 92 (|has| |#1| (-338)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 103 (|has| |#1| (-338)))) (-4031 (((-708) $) 105 (|has| |#1| (-338)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 106 (|has| |#1| (-338)))) (-1615 ((|#1| (-1166 $)) 47) ((|#1|) 60)) (-1304 (((-708) $) 151 (|has| |#1| (-324))) (((-3 (-708) "failed") $ $) 139 (|has| |#1| (-324)))) (-2731 (($ $) 137 (-3844 (-4079 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-708)) 135 (-3844 (-4079 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-1085)) 133 (-4079 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-588 (-1085))) 132 (-4079 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-1085) (-708)) 131 (-4079 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-588 (-1085)) (-588 (-708))) 130 (-4079 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-1 |#1| |#1|) (-708)) 123 (|has| |#1| (-338))) (($ $ (-1 |#1| |#1|)) 122 (|has| |#1| (-338)))) (-2620 (((-628 |#1|) (-1166 $) (-1 |#1| |#1|)) 154 (|has| |#1| (-338)))) (-1579 ((|#2|) 159)) (-2670 (($) 148 (|has| |#1| (-324)))) (-3510 (((-1166 |#1|) $ (-1166 $)) 50) (((-628 |#1|) (-1166 $) (-1166 $)) 49) (((-1166 |#1|) $) 66) (((-628 |#1|) (-1166 $)) 65)) (-3873 (((-1166 |#1|) $) 63) (($ (-1166 |#1|)) 62) ((|#2| $) 171) (($ |#2|) 157)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 145 (|has| |#1| (-324)))) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37) (($ $) 91 (|has| |#1| (-338))) (($ (-382 (-522))) 86 (-3844 (|has| |#1| (-338)) (|has| |#1| (-962 (-382 (-522))))))) (-3040 (($ $) 144 (|has| |#1| (-324))) (((-3 $ "failed") $) 43 (|has| |#1| (-133)))) (-2645 ((|#2| $) 45)) (-2742 (((-708)) 29)) (-2905 (((-1166 $)) 67)) (-1407 (((-108) $ $) 95 (|has| |#1| (-338)))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 117 (|has| |#1| (-338)))) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $) 136 (-3844 (-4079 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-708)) 134 (-3844 (-4079 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-1085)) 129 (-4079 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-588 (-1085))) 128 (-4079 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-1085) (-708)) 127 (-4079 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-588 (-1085)) (-588 (-708))) 126 (-4079 (|has| |#1| (-829 (-1085))) (|has| |#1| (-338)))) (($ $ (-1 |#1| |#1|) (-708)) 125 (|has| |#1| (-338))) (($ $ (-1 |#1| |#1|)) 124 (|has| |#1| (-338)))) (-1562 (((-108) $ $) 6)) (-1682 (($ $ $) 121 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 118 (|has| |#1| (-338)))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38) (($ (-382 (-522)) $) 120 (|has| |#1| (-338))) (($ $ (-382 (-522))) 119 (|has| |#1| (-338)))))
(((-662 |#1| |#2|) (-1197) (-157) (-1142 |t#1|)) (T -662))
-((-1383 (*1 *1) (-12 (-4 *2 (-157)) (-4 *1 (-662 *2 *3)) (-4 *3 (-1142 *2)))) (-1479 (*1 *2) (-12 (-4 *1 (-662 *3 *2)) (-4 *3 (-157)) (-4 *2 (-1142 *3)))) (-3864 (*1 *1 *2) (-12 (-4 *3 (-157)) (-4 *1 (-662 *3 *2)) (-4 *2 (-1142 *3)))) (-1431 (*1 *1 *2) (-12 (-4 *3 (-157)) (-4 *1 (-662 *3 *2)) (-4 *2 (-1142 *3)))) (-3849 (*1 *2 *1) (-12 (-4 *1 (-662 *3 *2)) (-4 *3 (-157)) (-4 *2 (-1142 *3)))) (-3864 (*1 *1 *2) (|partial| -12 (-5 *2 (-382 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-338)) (-4 *3 (-157)) (-4 *1 (-662 *3 *4)))) (-1859 (*1 *2 *3 *4) (-12 (-5 *3 (-1166 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-338)) (-4 *1 (-662 *5 *6)) (-4 *5 (-157)) (-4 *6 (-1142 *5)) (-5 *2 (-628 *5)))))
-(-13 (-384 |t#1| |t#2|) (-157) (-563 |t#2|) (-386 |t#1|) (-352 |t#1|) (-10 -8 (-15 -1383 ($)) (-15 -1479 (|t#2|)) (-15 -3864 ($ |t#2|)) (-15 -1431 ($ |t#2|)) (-15 -3849 (|t#2| $)) (IF (|has| |t#1| (-343)) (-6 (-343)) |%noBranch|) (IF (|has| |t#1| (-338)) (PROGN (-6 (-338)) (-6 (-208 |t#1|)) (-15 -3864 ((-3 $ "failed") (-382 |t#2|))) (-15 -1859 ((-628 |t#1|) (-1166 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-324)) (-6 (-324)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-37 |#1|) . T) ((-37 $) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-97) . T) ((-107 #0# #0#) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-133) -3708 (|has| |#1| (-324)) (|has| |#1| (-133))) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) . T) ((-563 |#2|) . T) ((-208 |#1|) |has| |#1| (-338)) ((-210) -3708 (|has| |#1| (-324)) (-12 (|has| |#1| (-210)) (|has| |#1| (-338)))) ((-220) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-266) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-283) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-338) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-377) |has| |#1| (-324)) ((-343) -3708 (|has| |#1| (-343)) (|has| |#1| (-324))) ((-324) |has| |#1| (-324)) ((-345 |#1| |#2|) . T) ((-384 |#1| |#2|) . T) ((-352 |#1|) . T) ((-386 |#1|) . T) ((-426) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-514) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-590 #0#) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-655 |#1|) . T) ((-655 $) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-664) . T) ((-829 (-1085)) -12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085)))) ((-849) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-977 #0#) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-977 |#1|) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) |has| |#1| (-324)) ((-1124) -3708 (|has| |#1| (-324)) (|has| |#1| (-338))))
-((-3175 (($) 14)) (-2682 (((-3 $ "failed") $) 16)) (-2782 (((-108) $) 13)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) 9)) (** (($ $ (-850)) NIL) (($ $ (-708)) 20)))
-(((-663 |#1|) (-10 -8 (-15 -2682 ((-3 |#1| "failed") |#1|)) (-15 -3510 (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-708))) (-15 -2782 ((-108) |#1|)) (-15 -3175 (|#1|)) (-15 -3510 (|#1| |#1| (-850))) (-15 ** (|#1| |#1| (-850)))) (-664)) (T -663))
-NIL
-(-10 -8 (-15 -2682 ((-3 |#1| "failed") |#1|)) (-15 -3510 (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-708))) (-15 -2782 ((-108) |#1|)) (-15 -3175 (|#1|)) (-15 -3510 (|#1| |#1| (-850))) (-15 ** (|#1| |#1| (-850))))
-((-1416 (((-108) $ $) 7)) (-3175 (($) 20 T CONST)) (-2682 (((-3 $ "failed") $) 16)) (-2782 (((-108) $) 19)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3510 (($ $ (-850)) 13) (($ $ (-708)) 17)) (-3577 (($) 21 T CONST)) (-1531 (((-108) $ $) 6)) (** (($ $ (-850)) 14) (($ $ (-708)) 18)) (* (($ $ $) 15)))
+((-1368 (*1 *1) (-12 (-4 *2 (-157)) (-4 *1 (-662 *2 *3)) (-4 *3 (-1142 *2)))) (-1579 (*1 *2) (-12 (-4 *1 (-662 *3 *2)) (-4 *3 (-157)) (-4 *2 (-1142 *3)))) (-2153 (*1 *1 *2) (-12 (-4 *3 (-157)) (-4 *1 (-662 *3 *2)) (-4 *2 (-1142 *3)))) (-3873 (*1 *1 *2) (-12 (-4 *3 (-157)) (-4 *1 (-662 *3 *2)) (-4 *2 (-1142 *3)))) (-2142 (*1 *2 *1) (-12 (-4 *1 (-662 *3 *2)) (-4 *3 (-157)) (-4 *2 (-1142 *3)))) (-2153 (*1 *1 *2) (|partial| -12 (-5 *2 (-382 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-338)) (-4 *3 (-157)) (-4 *1 (-662 *3 *4)))) (-2620 (*1 *2 *3 *4) (-12 (-5 *3 (-1166 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-338)) (-4 *1 (-662 *5 *6)) (-4 *5 (-157)) (-4 *6 (-1142 *5)) (-5 *2 (-628 *5)))))
+(-13 (-384 |t#1| |t#2|) (-157) (-563 |t#2|) (-386 |t#1|) (-352 |t#1|) (-10 -8 (-15 -1368 ($)) (-15 -1579 (|t#2|)) (-15 -2153 ($ |t#2|)) (-15 -3873 ($ |t#2|)) (-15 -2142 (|t#2| $)) (IF (|has| |t#1| (-343)) (-6 (-343)) |%noBranch|) (IF (|has| |t#1| (-338)) (PROGN (-6 (-338)) (-6 (-208 |t#1|)) (-15 -2153 ((-3 $ "failed") (-382 |t#2|))) (-15 -2620 ((-628 |t#1|) (-1166 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-324)) (-6 (-324)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-37 |#1|) . T) ((-37 $) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-97) . T) ((-107 #0# #0#) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-133) -3844 (|has| |#1| (-324)) (|has| |#1| (-133))) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) . T) ((-563 |#2|) . T) ((-208 |#1|) |has| |#1| (-338)) ((-210) -3844 (|has| |#1| (-324)) (-12 (|has| |#1| (-210)) (|has| |#1| (-338)))) ((-220) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-266) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-283) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-338) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-377) |has| |#1| (-324)) ((-343) -3844 (|has| |#1| (-343)) (|has| |#1| (-324))) ((-324) |has| |#1| (-324)) ((-345 |#1| |#2|) . T) ((-384 |#1| |#2|) . T) ((-352 |#1|) . T) ((-386 |#1|) . T) ((-426) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-514) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-590 #0#) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-655 |#1|) . T) ((-655 $) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-664) . T) ((-829 (-1085)) -12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085)))) ((-849) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-977 #0#) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))) ((-977 |#1|) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) |has| |#1| (-324)) ((-1124) -3844 (|has| |#1| (-324)) (|has| |#1| (-338))))
+((-3367 (($) 14)) (-3920 (((-3 $ "failed") $) 16)) (-2859 (((-108) $) 13)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) 9)) (** (($ $ (-850)) NIL) (($ $ (-708)) 20)))
+(((-663 |#1|) (-10 -8 (-15 -3920 ((-3 |#1| "failed") |#1|)) (-15 -3622 (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-708))) (-15 -2859 ((-108) |#1|)) (-15 -3367 (|#1|)) (-15 -3622 (|#1| |#1| (-850))) (-15 ** (|#1| |#1| (-850)))) (-664)) (T -663))
+NIL
+(-10 -8 (-15 -3920 ((-3 |#1| "failed") |#1|)) (-15 -3622 (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-708))) (-15 -2859 ((-108) |#1|)) (-15 -3367 (|#1|)) (-15 -3622 (|#1| |#1| (-850))) (-15 ** (|#1| |#1| (-850))))
+((-1419 (((-108) $ $) 7)) (-3367 (($) 20 T CONST)) (-3920 (((-3 $ "failed") $) 16)) (-2859 (((-108) $) 19)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3622 (($ $ (-850)) 13) (($ $ (-708)) 17)) (-3709 (($) 21 T CONST)) (-1562 (((-108) $ $) 6)) (** (($ $ (-850)) 14) (($ $ (-708)) 18)) (* (($ $ $) 15)))
(((-664) (-1197)) (T -664))
-((-3577 (*1 *1) (-4 *1 (-664))) (-3175 (*1 *1) (-4 *1 (-664))) (-2782 (*1 *2 *1) (-12 (-4 *1 (-664)) (-5 *2 (-108)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-664)) (-5 *2 (-708)))) (-3510 (*1 *1 *1 *2) (-12 (-4 *1 (-664)) (-5 *2 (-708)))) (-2682 (*1 *1 *1) (|partial| -4 *1 (-664))))
-(-13 (-1026) (-10 -8 (-15 (-3577) ($) -2677) (-15 -3175 ($) -2677) (-15 -2782 ((-108) $)) (-15 ** ($ $ (-708))) (-15 -3510 ($ $ (-708))) (-15 -2682 ((-3 $ "failed") $))))
+((-3709 (*1 *1) (-4 *1 (-664))) (-3367 (*1 *1) (-4 *1 (-664))) (-2859 (*1 *2 *1) (-12 (-4 *1 (-664)) (-5 *2 (-108)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-664)) (-5 *2 (-708)))) (-3622 (*1 *1 *1 *2) (-12 (-4 *1 (-664)) (-5 *2 (-708)))) (-3920 (*1 *1 *1) (|partial| -4 *1 (-664))))
+(-13 (-1026) (-10 -8 (-15 (-3709) ($) -2855) (-15 -3367 ($) -2855) (-15 -2859 ((-108) $)) (-15 ** ($ $ (-708))) (-15 -3622 ($ $ (-708))) (-15 -3920 ((-3 $ "failed") $))))
(((-97) . T) ((-562 (-792)) . T) ((-1026) . T) ((-1014) . T))
-((-3413 (((-2 (|:| -3663 (-393 |#2|)) (|:| |special| (-393 |#2|))) |#2| (-1 |#2| |#2|)) 38)) (-2724 (((-2 (|:| -3663 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-3060 ((|#2| (-382 |#2|) (-1 |#2| |#2|)) 13)) (-3496 (((-2 (|:| |poly| |#2|) (|:| -3663 (-382 |#2|)) (|:| |special| (-382 |#2|))) (-382 |#2|) (-1 |#2| |#2|)) 47)))
-(((-665 |#1| |#2|) (-10 -7 (-15 -2724 ((-2 (|:| -3663 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -3413 ((-2 (|:| -3663 (-393 |#2|)) (|:| |special| (-393 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3060 (|#2| (-382 |#2|) (-1 |#2| |#2|))) (-15 -3496 ((-2 (|:| |poly| |#2|) (|:| -3663 (-382 |#2|)) (|:| |special| (-382 |#2|))) (-382 |#2|) (-1 |#2| |#2|)))) (-338) (-1142 |#1|)) (T -665))
-((-3496 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| |poly| *6) (|:| -3663 (-382 *6)) (|:| |special| (-382 *6)))) (-5 *1 (-665 *5 *6)) (-5 *3 (-382 *6)))) (-3060 (*1 *2 *3 *4) (-12 (-5 *3 (-382 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1142 *5)) (-5 *1 (-665 *5 *2)) (-4 *5 (-338)))) (-3413 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| -3663 (-393 *3)) (|:| |special| (-393 *3)))) (-5 *1 (-665 *5 *3)))) (-2724 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| -3663 *3) (|:| |special| *3))) (-5 *1 (-665 *5 *3)))))
-(-10 -7 (-15 -2724 ((-2 (|:| -3663 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -3413 ((-2 (|:| -3663 (-393 |#2|)) (|:| |special| (-393 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3060 (|#2| (-382 |#2|) (-1 |#2| |#2|))) (-15 -3496 ((-2 (|:| |poly| |#2|) (|:| -3663 (-382 |#2|)) (|:| |special| (-382 |#2|))) (-382 |#2|) (-1 |#2| |#2|))))
-((-3133 ((|#7| (-588 |#5|) |#6|) NIL)) (-1391 ((|#7| (-1 |#5| |#4|) |#6|) 26)))
-(((-666 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -1391 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3133 (|#7| (-588 |#5|) |#6|))) (-784) (-730) (-730) (-971) (-971) (-878 |#4| |#2| |#1|) (-878 |#5| |#3| |#1|)) (T -666))
-((-3133 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *9)) (-4 *9 (-971)) (-4 *5 (-784)) (-4 *6 (-730)) (-4 *8 (-971)) (-4 *2 (-878 *9 *7 *5)) (-5 *1 (-666 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-730)) (-4 *4 (-878 *8 *6 *5)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-971)) (-4 *9 (-971)) (-4 *5 (-784)) (-4 *6 (-730)) (-4 *2 (-878 *9 *7 *5)) (-5 *1 (-666 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-730)) (-4 *4 (-878 *8 *6 *5)))))
-(-10 -7 (-15 -1391 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3133 (|#7| (-588 |#5|) |#6|)))
-((-1391 ((|#7| (-1 |#2| |#1|) |#6|) 29)))
-(((-667 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -1391 (|#7| (-1 |#2| |#1|) |#6|))) (-784) (-784) (-730) (-730) (-971) (-878 |#5| |#3| |#1|) (-878 |#5| |#4| |#2|)) (T -667))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-784)) (-4 *6 (-784)) (-4 *7 (-730)) (-4 *9 (-971)) (-4 *2 (-878 *9 *8 *6)) (-5 *1 (-667 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-730)) (-4 *4 (-878 *9 *7 *5)))))
-(-10 -7 (-15 -1391 (|#7| (-1 |#2| |#1|) |#6|)))
-((-1916 (((-393 |#4|) |#4|) 39)))
-(((-668 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1916 ((-393 |#4|) |#4|))) (-730) (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $)) (-15 -1611 ((-3 $ "failed") (-1085))))) (-283) (-878 (-881 |#3|) |#1| |#2|)) (T -668))
-((-1916 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $)) (-15 -1611 ((-3 $ "failed") (-1085)))))) (-4 *6 (-283)) (-5 *2 (-393 *3)) (-5 *1 (-668 *4 *5 *6 *3)) (-4 *3 (-878 (-881 *6) *4 *5)))))
-(-10 -7 (-15 -1916 ((-393 |#4|) |#4|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4090 (((-588 (-794 |#1|)) $) NIL)) (-1282 (((-1081 $) $ (-794 |#1|)) NIL) (((-1081 |#2|) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#2| (-514)))) (-2022 (($ $) NIL (|has| |#2| (-514)))) (-3739 (((-108) $) NIL (|has| |#2| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 (-794 |#1|))) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3119 (($ $) NIL (|has| |#2| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#2| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-794 |#1|) "failed") $) NIL)) (-1484 ((|#2| $) NIL) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-794 |#1|) $) NIL)) (-1950 (($ $ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-3156 (($ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#2| (-838)))) (-2671 (($ $ |#2| (-494 (-794 |#1|)) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-4073 (($ (-1081 |#2|) (-794 |#1|)) NIL) (($ (-1081 $) (-794 |#1|)) NIL)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#2| (-494 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ (-794 |#1|)) NIL)) (-2925 (((-494 (-794 |#1|)) $) NIL) (((-708) $ (-794 |#1|)) NIL) (((-588 (-708)) $ (-588 (-794 |#1|))) NIL)) (-2814 (($ $ $) NIL (|has| |#2| (-784)))) (-2446 (($ $ $) NIL (|has| |#2| (-784)))) (-3861 (($ (-1 (-494 (-794 |#1|)) (-494 (-794 |#1|))) $) NIL)) (-1391 (($ (-1 |#2| |#2|) $) NIL)) (-3145 (((-3 (-794 |#1|) "failed") $) NIL)) (-3128 (($ $) NIL)) (-3138 ((|#2| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-2385 (((-1068) $) NIL)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-794 |#1|)) (|:| -1400 (-708))) "failed") $) NIL)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) NIL)) (-3118 ((|#2| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#2| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#2| (-838)))) (-2232 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-514)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-794 |#1|) |#2|) NIL) (($ $ (-588 (-794 |#1|)) (-588 |#2|)) NIL) (($ $ (-794 |#1|) $) NIL) (($ $ (-588 (-794 |#1|)) (-588 $)) NIL)) (-2769 (($ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2157 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2793 (((-494 (-794 |#1|)) $) NIL) (((-708) $ (-794 |#1|)) NIL) (((-588 (-708)) $ (-588 (-794 |#1|))) NIL)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-794 |#1|) (-563 (-498))) (|has| |#2| (-563 (-498)))))) (-2255 ((|#2| $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) NIL) (($ (-794 |#1|)) NIL) (($ $) NIL (|has| |#2| (-514))) (($ (-382 (-522))) NIL (-3708 (|has| |#2| (-37 (-382 (-522)))) (|has| |#2| (-962 (-382 (-522))))))) (-3916 (((-588 |#2|) $) NIL)) (-3243 ((|#2| $ (-494 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#2| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#2| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#2| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-1574 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1620 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#2| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#2| (-37 (-382 (-522))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+((-3913 (((-2 (|:| -3798 (-393 |#2|)) (|:| |special| (-393 |#2|))) |#2| (-1 |#2| |#2|)) 38)) (-3428 (((-2 (|:| -3798 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-3540 ((|#2| (-382 |#2|) (-1 |#2| |#2|)) 13)) (-2327 (((-2 (|:| |poly| |#2|) (|:| -3798 (-382 |#2|)) (|:| |special| (-382 |#2|))) (-382 |#2|) (-1 |#2| |#2|)) 47)))
+(((-665 |#1| |#2|) (-10 -7 (-15 -3428 ((-2 (|:| -3798 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -3913 ((-2 (|:| -3798 (-393 |#2|)) (|:| |special| (-393 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3540 (|#2| (-382 |#2|) (-1 |#2| |#2|))) (-15 -2327 ((-2 (|:| |poly| |#2|) (|:| -3798 (-382 |#2|)) (|:| |special| (-382 |#2|))) (-382 |#2|) (-1 |#2| |#2|)))) (-338) (-1142 |#1|)) (T -665))
+((-2327 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| |poly| *6) (|:| -3798 (-382 *6)) (|:| |special| (-382 *6)))) (-5 *1 (-665 *5 *6)) (-5 *3 (-382 *6)))) (-3540 (*1 *2 *3 *4) (-12 (-5 *3 (-382 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1142 *5)) (-5 *1 (-665 *5 *2)) (-4 *5 (-338)))) (-3913 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| -3798 (-393 *3)) (|:| |special| (-393 *3)))) (-5 *1 (-665 *5 *3)))) (-3428 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-338)) (-5 *2 (-2 (|:| -3798 *3) (|:| |special| *3))) (-5 *1 (-665 *5 *3)))))
+(-10 -7 (-15 -3428 ((-2 (|:| -3798 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -3913 ((-2 (|:| -3798 (-393 |#2|)) (|:| |special| (-393 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3540 (|#2| (-382 |#2|) (-1 |#2| |#2|))) (-15 -2327 ((-2 (|:| |poly| |#2|) (|:| -3798 (-382 |#2|)) (|:| |special| (-382 |#2|))) (-382 |#2|) (-1 |#2| |#2|))))
+((-3213 ((|#7| (-588 |#5|) |#6|) NIL)) (-3810 ((|#7| (-1 |#5| |#4|) |#6|) 26)))
+(((-666 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -3810 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3213 (|#7| (-588 |#5|) |#6|))) (-784) (-730) (-730) (-971) (-971) (-878 |#4| |#2| |#1|) (-878 |#5| |#3| |#1|)) (T -666))
+((-3213 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *9)) (-4 *9 (-971)) (-4 *5 (-784)) (-4 *6 (-730)) (-4 *8 (-971)) (-4 *2 (-878 *9 *7 *5)) (-5 *1 (-666 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-730)) (-4 *4 (-878 *8 *6 *5)))) (-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-971)) (-4 *9 (-971)) (-4 *5 (-784)) (-4 *6 (-730)) (-4 *2 (-878 *9 *7 *5)) (-5 *1 (-666 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-730)) (-4 *4 (-878 *8 *6 *5)))))
+(-10 -7 (-15 -3810 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3213 (|#7| (-588 |#5|) |#6|)))
+((-3810 ((|#7| (-1 |#2| |#1|) |#6|) 29)))
+(((-667 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -3810 (|#7| (-1 |#2| |#1|) |#6|))) (-784) (-784) (-730) (-730) (-971) (-878 |#5| |#3| |#1|) (-878 |#5| |#4| |#2|)) (T -667))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-784)) (-4 *6 (-784)) (-4 *7 (-730)) (-4 *9 (-971)) (-4 *2 (-878 *9 *8 *6)) (-5 *1 (-667 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-730)) (-4 *4 (-878 *9 *7 *5)))))
+(-10 -7 (-15 -3810 (|#7| (-1 |#2| |#1|) |#6|)))
+((-2006 (((-393 |#4|) |#4|) 39)))
+(((-668 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2006 ((-393 |#4|) |#4|))) (-730) (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $)) (-15 -1660 ((-3 $ "failed") (-1085))))) (-283) (-878 (-881 |#3|) |#1| |#2|)) (T -668))
+((-2006 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $)) (-15 -1660 ((-3 $ "failed") (-1085)))))) (-4 *6 (-283)) (-5 *2 (-393 *3)) (-5 *1 (-668 *4 *5 *6 *3)) (-4 *3 (-878 (-881 *6) *4 *5)))))
+(-10 -7 (-15 -2006 ((-393 |#4|) |#4|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3533 (((-588 (-794 |#1|)) $) NIL)) (-1264 (((-1081 $) $ (-794 |#1|)) NIL) (((-1081 |#2|) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#2| (-514)))) (-2298 (($ $) NIL (|has| |#2| (-514)))) (-3007 (((-108) $) NIL (|has| |#2| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 (-794 |#1|))) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2961 (($ $) NIL (|has| |#2| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#2| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-794 |#1|) "failed") $) NIL)) (-1478 ((|#2| $) NIL) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-794 |#1|) $) NIL)) (-2908 (($ $ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-3241 (($ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#2| (-838)))) (-3792 (($ $ |#2| (-494 (-794 |#1|)) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-794 |#1|) (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-3520 (($ (-1081 |#2|) (-794 |#1|)) NIL) (($ (-1081 $) (-794 |#1|)) NIL)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#2| (-494 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ (-794 |#1|)) NIL)) (-3564 (((-494 (-794 |#1|)) $) NIL) (((-708) $ (-794 |#1|)) NIL) (((-588 (-708)) $ (-588 (-794 |#1|))) NIL)) (-1308 (($ $ $) NIL (|has| |#2| (-784)))) (-2524 (($ $ $) NIL (|has| |#2| (-784)))) (-1723 (($ (-1 (-494 (-794 |#1|)) (-494 (-794 |#1|))) $) NIL)) (-3810 (($ (-1 |#2| |#2|) $) NIL)) (-3155 (((-3 (-794 |#1|) "failed") $) NIL)) (-3216 (($ $) NIL)) (-3224 ((|#2| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-2311 (((-1068) $) NIL)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| (-794 |#1|)) (|:| -3858 (-708))) "failed") $) NIL)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) NIL)) (-3207 ((|#2| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#2| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#2| (-838)))) (-2276 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-514)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-794 |#1|) |#2|) NIL) (($ $ (-588 (-794 |#1|)) (-588 |#2|)) NIL) (($ $ (-794 |#1|) $) NIL) (($ $ (-588 (-794 |#1|)) (-588 $)) NIL)) (-1615 (($ $ (-794 |#1|)) NIL (|has| |#2| (-157)))) (-2731 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-2487 (((-494 (-794 |#1|)) $) NIL) (((-708) $ (-794 |#1|)) NIL) (((-588 (-708)) $ (-588 (-794 |#1|))) NIL)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-794 |#1|) (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-794 |#1|) (-563 (-498))) (|has| |#2| (-563 (-498)))))) (-2988 ((|#2| $) NIL (|has| |#2| (-426))) (($ $ (-794 |#1|)) NIL (|has| |#2| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) NIL) (($ (-794 |#1|)) NIL) (($ $) NIL (|has| |#2| (-514))) (($ (-382 (-522))) NIL (-3844 (|has| |#2| (-37 (-382 (-522)))) (|has| |#2| (-962 (-382 (-522))))))) (-2180 (((-588 |#2|) $) NIL)) (-1643 ((|#2| $ (-494 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#2| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#2| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#2| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-794 |#1|)) NIL) (($ $ (-588 (-794 |#1|))) NIL) (($ $ (-794 |#1|) (-708)) NIL) (($ $ (-588 (-794 |#1|)) (-588 (-708))) NIL)) (-1623 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1682 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#2| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#2| (-37 (-382 (-522))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
(((-669 |#1| |#2|) (-878 |#2| (-494 (-794 |#1|)) (-794 |#1|)) (-588 (-1085)) (-971)) (T -669))
NIL
(-878 |#2| (-494 (-794 |#1|)) (-794 |#1|))
-((-1444 (((-2 (|:| -1210 (-881 |#3|)) (|:| -3136 (-881 |#3|))) |#4|) 13)) (-4146 ((|#4| |#4| |#2|) 30)) (-3194 ((|#4| (-382 (-881 |#3|)) |#2|) 64)) (-1656 ((|#4| (-1081 (-881 |#3|)) |#2|) 77)) (-3327 ((|#4| (-1081 |#4|) |#2|) 50)) (-1864 ((|#4| |#4| |#2|) 53)) (-1916 (((-393 |#4|) |#4|) 38)))
-(((-670 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1444 ((-2 (|:| -1210 (-881 |#3|)) (|:| -3136 (-881 |#3|))) |#4|)) (-15 -1864 (|#4| |#4| |#2|)) (-15 -3327 (|#4| (-1081 |#4|) |#2|)) (-15 -4146 (|#4| |#4| |#2|)) (-15 -1656 (|#4| (-1081 (-881 |#3|)) |#2|)) (-15 -3194 (|#4| (-382 (-881 |#3|)) |#2|)) (-15 -1916 ((-393 |#4|) |#4|))) (-730) (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $)))) (-514) (-878 (-382 (-881 |#3|)) |#1| |#2|)) (T -670))
-((-1916 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))) (-4 *6 (-514)) (-5 *2 (-393 *3)) (-5 *1 (-670 *4 *5 *6 *3)) (-4 *3 (-878 (-382 (-881 *6)) *4 *5)))) (-3194 (*1 *2 *3 *4) (-12 (-4 *6 (-514)) (-4 *2 (-878 *3 *5 *4)) (-5 *1 (-670 *5 *4 *6 *2)) (-5 *3 (-382 (-881 *6))) (-4 *5 (-730)) (-4 *4 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))))) (-1656 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 (-881 *6))) (-4 *6 (-514)) (-4 *2 (-878 (-382 (-881 *6)) *5 *4)) (-5 *1 (-670 *5 *4 *6 *2)) (-4 *5 (-730)) (-4 *4 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))))) (-4146 (*1 *2 *2 *3) (-12 (-4 *4 (-730)) (-4 *3 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))) (-4 *5 (-514)) (-5 *1 (-670 *4 *3 *5 *2)) (-4 *2 (-878 (-382 (-881 *5)) *4 *3)))) (-3327 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *2)) (-4 *2 (-878 (-382 (-881 *6)) *5 *4)) (-5 *1 (-670 *5 *4 *6 *2)) (-4 *5 (-730)) (-4 *4 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))) (-4 *6 (-514)))) (-1864 (*1 *2 *2 *3) (-12 (-4 *4 (-730)) (-4 *3 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))) (-4 *5 (-514)) (-5 *1 (-670 *4 *3 *5 *2)) (-4 *2 (-878 (-382 (-881 *5)) *4 *3)))) (-1444 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))) (-4 *6 (-514)) (-5 *2 (-2 (|:| -1210 (-881 *6)) (|:| -3136 (-881 *6)))) (-5 *1 (-670 *4 *5 *6 *3)) (-4 *3 (-878 (-382 (-881 *6)) *4 *5)))))
-(-10 -7 (-15 -1444 ((-2 (|:| -1210 (-881 |#3|)) (|:| -3136 (-881 |#3|))) |#4|)) (-15 -1864 (|#4| |#4| |#2|)) (-15 -3327 (|#4| (-1081 |#4|) |#2|)) (-15 -4146 (|#4| |#4| |#2|)) (-15 -1656 (|#4| (-1081 (-881 |#3|)) |#2|)) (-15 -3194 (|#4| (-382 (-881 |#3|)) |#2|)) (-15 -1916 ((-393 |#4|) |#4|)))
-((-1916 (((-393 |#4|) |#4|) 51)))
-(((-671 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1916 ((-393 |#4|) |#4|))) (-730) (-784) (-13 (-283) (-135)) (-878 (-382 |#3|) |#1| |#2|)) (T -671))
-((-1916 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-13 (-283) (-135))) (-5 *2 (-393 *3)) (-5 *1 (-671 *4 *5 *6 *3)) (-4 *3 (-878 (-382 *6) *4 *5)))))
-(-10 -7 (-15 -1916 ((-393 |#4|) |#4|)))
-((-1391 (((-673 |#2| |#3|) (-1 |#2| |#1|) (-673 |#1| |#3|)) 18)))
-(((-672 |#1| |#2| |#3|) (-10 -7 (-15 -1391 ((-673 |#2| |#3|) (-1 |#2| |#1|) (-673 |#1| |#3|)))) (-971) (-971) (-664)) (T -672))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-673 *5 *7)) (-4 *5 (-971)) (-4 *6 (-971)) (-4 *7 (-664)) (-5 *2 (-673 *6 *7)) (-5 *1 (-672 *5 *6 *7)))))
-(-10 -7 (-15 -1391 ((-673 |#2| |#3|) (-1 |#2| |#1|) (-673 |#1| |#3|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 26)) (-2258 (((-588 (-2 (|:| -2977 |#1|) (|:| -2518 |#2|))) $) 27)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1629 (((-708)) 20 (-12 (|has| |#2| (-343)) (|has| |#1| (-343))))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#2| "failed") $) 56) (((-3 |#1| "failed") $) 59)) (-1484 ((|#2| $) NIL) ((|#1| $) NIL)) (-3156 (($ $) 76 (|has| |#2| (-784)))) (-2682 (((-3 $ "failed") $) 63)) (-3255 (($) 33 (-12 (|has| |#2| (-343)) (|has| |#1| (-343))))) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) 54)) (-4052 (((-588 $) $) 37)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| |#2|) 16)) (-1391 (($ (-1 |#1| |#1|) $) 53)) (-2120 (((-850) $) 30 (-12 (|has| |#2| (-343)) (|has| |#1| (-343))))) (-3128 ((|#2| $) 75 (|has| |#2| (-784)))) (-3138 ((|#1| $) 74 (|has| |#2| (-784)))) (-2385 (((-1068) $) NIL)) (-2717 (($ (-850)) 25 (-12 (|has| |#2| (-343)) (|has| |#1| (-343))))) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 73) (($ (-522)) 44) (($ |#2|) 40) (($ |#1|) 41) (($ (-588 (-2 (|:| -2977 |#1|) (|:| -2518 |#2|)))) 11)) (-3916 (((-588 |#1|) $) 39)) (-3243 ((|#1| $ |#2|) 84)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 12 T CONST)) (-3577 (($) 31 T CONST)) (-1531 (((-108) $ $) 77)) (-1612 (($ $) 46) (($ $ $) NIL)) (-1602 (($ $ $) 24)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 51) (($ $ $) 86) (($ |#1| $) 48 (|has| |#1| (-157))) (($ $ |#1|) NIL (|has| |#1| (-157)))))
-(((-673 |#1| |#2|) (-13 (-971) (-962 |#2|) (-962 |#1|) (-10 -8 (-15 -4049 ($ |#1| |#2|)) (-15 -3243 (|#1| $ |#2|)) (-15 -2190 ($ (-588 (-2 (|:| -2977 |#1|) (|:| -2518 |#2|))))) (-15 -2258 ((-588 (-2 (|:| -2977 |#1|) (|:| -2518 |#2|))) $)) (-15 -1391 ($ (-1 |#1| |#1|) $)) (-15 -3340 ((-108) $)) (-15 -3916 ((-588 |#1|) $)) (-15 -4052 ((-588 $) $)) (-15 -2112 ((-708) $)) (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-157)) (-6 (-37 |#1|)) |%noBranch|) (IF (|has| |#1| (-343)) (IF (|has| |#2| (-343)) (-6 (-343)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-784)) (PROGN (-15 -3128 (|#2| $)) (-15 -3138 (|#1| $)) (-15 -3156 ($ $))) |%noBranch|))) (-971) (-664)) (T -673))
-((-4049 (*1 *1 *2 *3) (-12 (-5 *1 (-673 *2 *3)) (-4 *2 (-971)) (-4 *3 (-664)))) (-3243 (*1 *2 *1 *3) (-12 (-4 *2 (-971)) (-5 *1 (-673 *2 *3)) (-4 *3 (-664)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -2977 *3) (|:| -2518 *4)))) (-4 *3 (-971)) (-4 *4 (-664)) (-5 *1 (-673 *3 *4)))) (-2258 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| -2977 *3) (|:| -2518 *4)))) (-5 *1 (-673 *3 *4)) (-4 *3 (-971)) (-4 *4 (-664)))) (-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-673 *3 *4)) (-4 *4 (-664)))) (-3340 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-673 *3 *4)) (-4 *3 (-971)) (-4 *4 (-664)))) (-3916 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-673 *3 *4)) (-4 *3 (-971)) (-4 *4 (-664)))) (-4052 (*1 *2 *1) (-12 (-5 *2 (-588 (-673 *3 *4))) (-5 *1 (-673 *3 *4)) (-4 *3 (-971)) (-4 *4 (-664)))) (-2112 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-673 *3 *4)) (-4 *3 (-971)) (-4 *4 (-664)))) (-3128 (*1 *2 *1) (-12 (-4 *2 (-664)) (-4 *2 (-784)) (-5 *1 (-673 *3 *2)) (-4 *3 (-971)))) (-3138 (*1 *2 *1) (-12 (-4 *2 (-971)) (-5 *1 (-673 *2 *3)) (-4 *3 (-784)) (-4 *3 (-664)))) (-3156 (*1 *1 *1) (-12 (-5 *1 (-673 *2 *3)) (-4 *3 (-784)) (-4 *2 (-971)) (-4 *3 (-664)))))
-(-13 (-971) (-962 |#2|) (-962 |#1|) (-10 -8 (-15 -4049 ($ |#1| |#2|)) (-15 -3243 (|#1| $ |#2|)) (-15 -2190 ($ (-588 (-2 (|:| -2977 |#1|) (|:| -2518 |#2|))))) (-15 -2258 ((-588 (-2 (|:| -2977 |#1|) (|:| -2518 |#2|))) $)) (-15 -1391 ($ (-1 |#1| |#1|) $)) (-15 -3340 ((-108) $)) (-15 -3916 ((-588 |#1|) $)) (-15 -4052 ((-588 $) $)) (-15 -2112 ((-708) $)) (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-157)) (-6 (-37 |#1|)) |%noBranch|) (IF (|has| |#1| (-343)) (IF (|has| |#2| (-343)) (-6 (-343)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-784)) (PROGN (-15 -3128 (|#2| $)) (-15 -3138 (|#1| $)) (-15 -3156 ($ $))) |%noBranch|)))
-((-1416 (((-108) $ $) 19)) (-2270 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-2079 (($ $ $) 72)) (-3557 (((-108) $ $) 73)) (-4141 (((-108) $ (-708)) 8)) (-1764 (($ (-588 |#1|)) 68) (($) 67)) (-2790 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-3362 (($ $) 62)) (-2333 (($ $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3859 (($ |#1| $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4238)))) (-1423 (($ |#1| $) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4238)))) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22)) (-2416 (($ $ $) 69)) (-2116 ((|#1| $) 39)) (-4095 (($ |#1| $) 40) (($ |#1| $ (-708)) 63)) (-4151 (((-1032) $) 21)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-4087 ((|#1| $) 41)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-3698 (((-588 (-2 (|:| -3048 |#1|) (|:| -4168 (-708)))) $) 61)) (-3417 (($ $ |#1|) 71) (($ $ $) 70)) (-3990 (($) 49) (($ (-588 |#1|)) 48)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-1431 (((-498) $) 59 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 50)) (-2190 (((-792) $) 18)) (-3392 (($ (-588 |#1|)) 66) (($) 65)) (-2795 (($ (-588 |#1|)) 42)) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20)) (-1549 (((-108) $ $) 64)) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-2483 (((-2 (|:| -1827 (-881 |#3|)) (|:| -3099 (-881 |#3|))) |#4|) 13)) (-2788 ((|#4| |#4| |#2|) 30)) (-2362 ((|#4| (-382 (-881 |#3|)) |#2|) 64)) (-2466 ((|#4| (-1081 (-881 |#3|)) |#2|) 77)) (-1251 ((|#4| (-1081 |#4|) |#2|) 50)) (-2678 ((|#4| |#4| |#2|) 53)) (-2006 (((-393 |#4|) |#4|) 38)))
+(((-670 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2483 ((-2 (|:| -1827 (-881 |#3|)) (|:| -3099 (-881 |#3|))) |#4|)) (-15 -2678 (|#4| |#4| |#2|)) (-15 -1251 (|#4| (-1081 |#4|) |#2|)) (-15 -2788 (|#4| |#4| |#2|)) (-15 -2466 (|#4| (-1081 (-881 |#3|)) |#2|)) (-15 -2362 (|#4| (-382 (-881 |#3|)) |#2|)) (-15 -2006 ((-393 |#4|) |#4|))) (-730) (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $)))) (-514) (-878 (-382 (-881 |#3|)) |#1| |#2|)) (T -670))
+((-2006 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))) (-4 *6 (-514)) (-5 *2 (-393 *3)) (-5 *1 (-670 *4 *5 *6 *3)) (-4 *3 (-878 (-382 (-881 *6)) *4 *5)))) (-2362 (*1 *2 *3 *4) (-12 (-4 *6 (-514)) (-4 *2 (-878 *3 *5 *4)) (-5 *1 (-670 *5 *4 *6 *2)) (-5 *3 (-382 (-881 *6))) (-4 *5 (-730)) (-4 *4 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))))) (-2466 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 (-881 *6))) (-4 *6 (-514)) (-4 *2 (-878 (-382 (-881 *6)) *5 *4)) (-5 *1 (-670 *5 *4 *6 *2)) (-4 *5 (-730)) (-4 *4 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))))) (-2788 (*1 *2 *2 *3) (-12 (-4 *4 (-730)) (-4 *3 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))) (-4 *5 (-514)) (-5 *1 (-670 *4 *3 *5 *2)) (-4 *2 (-878 (-382 (-881 *5)) *4 *3)))) (-1251 (*1 *2 *3 *4) (-12 (-5 *3 (-1081 *2)) (-4 *2 (-878 (-382 (-881 *6)) *5 *4)) (-5 *1 (-670 *5 *4 *6 *2)) (-4 *5 (-730)) (-4 *4 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))) (-4 *6 (-514)))) (-2678 (*1 *2 *2 *3) (-12 (-4 *4 (-730)) (-4 *3 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))) (-4 *5 (-514)) (-5 *1 (-670 *4 *3 *5 *2)) (-4 *2 (-878 (-382 (-881 *5)) *4 *3)))) (-2483 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))) (-4 *6 (-514)) (-5 *2 (-2 (|:| -1827 (-881 *6)) (|:| -3099 (-881 *6)))) (-5 *1 (-670 *4 *5 *6 *3)) (-4 *3 (-878 (-382 (-881 *6)) *4 *5)))))
+(-10 -7 (-15 -2483 ((-2 (|:| -1827 (-881 |#3|)) (|:| -3099 (-881 |#3|))) |#4|)) (-15 -2678 (|#4| |#4| |#2|)) (-15 -1251 (|#4| (-1081 |#4|) |#2|)) (-15 -2788 (|#4| |#4| |#2|)) (-15 -2466 (|#4| (-1081 (-881 |#3|)) |#2|)) (-15 -2362 (|#4| (-382 (-881 |#3|)) |#2|)) (-15 -2006 ((-393 |#4|) |#4|)))
+((-2006 (((-393 |#4|) |#4|) 51)))
+(((-671 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2006 ((-393 |#4|) |#4|))) (-730) (-784) (-13 (-283) (-135)) (-878 (-382 |#3|) |#1| |#2|)) (T -671))
+((-2006 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-13 (-283) (-135))) (-5 *2 (-393 *3)) (-5 *1 (-671 *4 *5 *6 *3)) (-4 *3 (-878 (-382 *6) *4 *5)))))
+(-10 -7 (-15 -2006 ((-393 |#4|) |#4|)))
+((-3810 (((-673 |#2| |#3|) (-1 |#2| |#1|) (-673 |#1| |#3|)) 18)))
+(((-672 |#1| |#2| |#3|) (-10 -7 (-15 -3810 ((-673 |#2| |#3|) (-1 |#2| |#1|) (-673 |#1| |#3|)))) (-971) (-971) (-664)) (T -672))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-673 *5 *7)) (-4 *5 (-971)) (-4 *6 (-971)) (-4 *7 (-664)) (-5 *2 (-673 *6 *7)) (-5 *1 (-672 *5 *6 *7)))))
+(-10 -7 (-15 -3810 ((-673 |#2| |#3|) (-1 |#2| |#1|) (-673 |#1| |#3|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 26)) (-3024 (((-588 (-2 (|:| -3112 |#1|) (|:| -2623 |#2|))) $) 27)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1685 (((-708)) 20 (-12 (|has| |#2| (-343)) (|has| |#1| (-343))))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#2| "failed") $) 56) (((-3 |#1| "failed") $) 59)) (-1478 ((|#2| $) NIL) ((|#1| $) NIL)) (-3241 (($ $) 76 (|has| |#2| (-784)))) (-3920 (((-3 $ "failed") $) 63)) (-3344 (($) 33 (-12 (|has| |#2| (-343)) (|has| |#1| (-343))))) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) 54)) (-3038 (((-588 $) $) 37)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| |#2|) 16)) (-3810 (($ (-1 |#1| |#1|) $) 53)) (-1475 (((-850) $) 30 (-12 (|has| |#2| (-343)) (|has| |#1| (-343))))) (-3216 ((|#2| $) 75 (|has| |#2| (-784)))) (-3224 ((|#1| $) 74 (|has| |#2| (-784)))) (-2311 (((-1068) $) NIL)) (-2882 (($ (-850)) 25 (-12 (|has| |#2| (-343)) (|has| |#1| (-343))))) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 73) (($ (-522)) 44) (($ |#2|) 40) (($ |#1|) 41) (($ (-588 (-2 (|:| -3112 |#1|) (|:| -2623 |#2|)))) 11)) (-2180 (((-588 |#1|) $) 39)) (-1643 ((|#1| $ |#2|) 84)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 12 T CONST)) (-3709 (($) 31 T CONST)) (-1562 (((-108) $ $) 77)) (-1672 (($ $) 46) (($ $ $) NIL)) (-1661 (($ $ $) 24)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 51) (($ $ $) 86) (($ |#1| $) 48 (|has| |#1| (-157))) (($ $ |#1|) NIL (|has| |#1| (-157)))))
+(((-673 |#1| |#2|) (-13 (-971) (-962 |#2|) (-962 |#1|) (-10 -8 (-15 -3500 ($ |#1| |#2|)) (-15 -1643 (|#1| $ |#2|)) (-15 -2217 ($ (-588 (-2 (|:| -3112 |#1|) (|:| -2623 |#2|))))) (-15 -3024 ((-588 (-2 (|:| -3112 |#1|) (|:| -2623 |#2|))) $)) (-15 -3810 ($ (-1 |#1| |#1|) $)) (-15 -1374 ((-108) $)) (-15 -2180 ((-588 |#1|) $)) (-15 -3038 ((-588 $) $)) (-15 -1391 ((-708) $)) (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-157)) (-6 (-37 |#1|)) |%noBranch|) (IF (|has| |#1| (-343)) (IF (|has| |#2| (-343)) (-6 (-343)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-784)) (PROGN (-15 -3216 (|#2| $)) (-15 -3224 (|#1| $)) (-15 -3241 ($ $))) |%noBranch|))) (-971) (-664)) (T -673))
+((-3500 (*1 *1 *2 *3) (-12 (-5 *1 (-673 *2 *3)) (-4 *2 (-971)) (-4 *3 (-664)))) (-1643 (*1 *2 *1 *3) (-12 (-4 *2 (-971)) (-5 *1 (-673 *2 *3)) (-4 *3 (-664)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -3112 *3) (|:| -2623 *4)))) (-4 *3 (-971)) (-4 *4 (-664)) (-5 *1 (-673 *3 *4)))) (-3024 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| -3112 *3) (|:| -2623 *4)))) (-5 *1 (-673 *3 *4)) (-4 *3 (-971)) (-4 *4 (-664)))) (-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-673 *3 *4)) (-4 *4 (-664)))) (-1374 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-673 *3 *4)) (-4 *3 (-971)) (-4 *4 (-664)))) (-2180 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-673 *3 *4)) (-4 *3 (-971)) (-4 *4 (-664)))) (-3038 (*1 *2 *1) (-12 (-5 *2 (-588 (-673 *3 *4))) (-5 *1 (-673 *3 *4)) (-4 *3 (-971)) (-4 *4 (-664)))) (-1391 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-673 *3 *4)) (-4 *3 (-971)) (-4 *4 (-664)))) (-3216 (*1 *2 *1) (-12 (-4 *2 (-664)) (-4 *2 (-784)) (-5 *1 (-673 *3 *2)) (-4 *3 (-971)))) (-3224 (*1 *2 *1) (-12 (-4 *2 (-971)) (-5 *1 (-673 *2 *3)) (-4 *3 (-784)) (-4 *3 (-664)))) (-3241 (*1 *1 *1) (-12 (-5 *1 (-673 *2 *3)) (-4 *3 (-784)) (-4 *2 (-971)) (-4 *3 (-664)))))
+(-13 (-971) (-962 |#2|) (-962 |#1|) (-10 -8 (-15 -3500 ($ |#1| |#2|)) (-15 -1643 (|#1| $ |#2|)) (-15 -2217 ($ (-588 (-2 (|:| -3112 |#1|) (|:| -2623 |#2|))))) (-15 -3024 ((-588 (-2 (|:| -3112 |#1|) (|:| -2623 |#2|))) $)) (-15 -3810 ($ (-1 |#1| |#1|) $)) (-15 -1374 ((-108) $)) (-15 -2180 ((-588 |#1|) $)) (-15 -3038 ((-588 $) $)) (-15 -1391 ((-708) $)) (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-157)) (-6 (-37 |#1|)) |%noBranch|) (IF (|has| |#1| (-343)) (IF (|has| |#2| (-343)) (-6 (-343)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-784)) (PROGN (-15 -3216 (|#2| $)) (-15 -3224 (|#1| $)) (-15 -3241 ($ $))) |%noBranch|)))
+((-1419 (((-108) $ $) 19)) (-2323 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-4099 (($ $ $) 72)) (-1751 (((-108) $ $) 73)) (-2717 (((-108) $ (-708)) 8)) (-1852 (($ (-588 |#1|)) 68) (($) 67)) (-1213 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-1581 (($ $) 62)) (-2379 (($ $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1700 (($ |#1| $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4238)))) (-1424 (($ |#1| $) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4238)))) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22)) (-2251 (($ $ $) 69)) (-1431 ((|#1| $) 39)) (-3365 (($ |#1| $) 40) (($ |#1| $ (-708)) 63)) (-4174 (((-1032) $) 21)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-3295 ((|#1| $) 41)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-3699 (((-588 (-2 (|:| -3149 |#1|) (|:| -4187 (-708)))) $) 61)) (-3962 (($ $ |#1|) 71) (($ $ $) 70)) (-3546 (($) 49) (($ (-588 |#1|)) 48)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-3873 (((-498) $) 59 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 50)) (-2217 (((-792) $) 18)) (-3482 (($ (-588 |#1|)) 66) (($) 65)) (-2501 (($ (-588 |#1|)) 42)) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20)) (-1587 (((-108) $ $) 64)) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-674 |#1|) (-1197) (-1014)) (T -674))
NIL
(-13 (-633 |t#1|) (-1012 |t#1|))
(((-33) . T) ((-102 |#1|) . T) ((-97) . T) ((-562 (-792)) . T) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-212 |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-633 |#1|) . T) ((-1012 |#1|) . T) ((-1014) . T) ((-1120) . T))
-((-1416 (((-108) $ $) NIL)) (-2270 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 76)) (-2079 (($ $ $) 79)) (-3557 (((-108) $ $) 82)) (-4141 (((-108) $ (-708)) NIL)) (-1764 (($ (-588 |#1|)) 24) (($) 15)) (-2790 (($ (-1 (-108) |#1|) $) 70 (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3362 (($ $) 71)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3859 (($ |#1| $) 61 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 64 (|has| $ (-6 -4238))) (($ |#1| $ (-522)) 62) (($ (-1 (-108) |#1|) $ (-522)) 65)) (-1423 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (($ |#1| $ (-522)) 67) (($ (-1 (-108) |#1|) $ (-522)) 68)) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-3837 (((-588 |#1|) $) 32 (|has| $ (-6 -4238)))) (-1596 (($) 13) (($ |#1|) 26) (($ (-588 |#1|)) 21)) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#1|) $) 38)) (-2246 (((-108) |#1| $) 57 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3838 (($ (-1 |#1| |#1|) $) 74 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 75)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-2416 (($ $ $) 77)) (-2116 ((|#1| $) 54)) (-4095 (($ |#1| $) 55) (($ |#1| $ (-708)) 72)) (-4151 (((-1032) $) NIL)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-4087 ((|#1| $) 53)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 49)) (-3775 (($) 12)) (-3698 (((-588 (-2 (|:| -3048 |#1|) (|:| -4168 (-708)))) $) 47)) (-3417 (($ $ |#1|) NIL) (($ $ $) 78)) (-3990 (($) 14) (($ (-588 |#1|)) 23)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) 60 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) 66)) (-1431 (((-498) $) 36 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 20)) (-2190 (((-792) $) 44)) (-3392 (($ (-588 |#1|)) 25) (($) 16)) (-2795 (($ (-588 |#1|)) 22)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 80)) (-1549 (((-108) $ $) 81)) (-3480 (((-708) $) 59 (|has| $ (-6 -4238)))))
-(((-675 |#1|) (-13 (-674 |#1|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -1596 ($)) (-15 -1596 ($ |#1|)) (-15 -1596 ($ (-588 |#1|))) (-15 -3308 ((-588 |#1|) $)) (-15 -1423 ($ |#1| $ (-522))) (-15 -1423 ($ (-1 (-108) |#1|) $ (-522))) (-15 -3859 ($ |#1| $ (-522))) (-15 -3859 ($ (-1 (-108) |#1|) $ (-522))))) (-1014)) (T -675))
-((-1596 (*1 *1) (-12 (-5 *1 (-675 *2)) (-4 *2 (-1014)))) (-1596 (*1 *1 *2) (-12 (-5 *1 (-675 *2)) (-4 *2 (-1014)))) (-1596 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-675 *3)))) (-3308 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-675 *3)) (-4 *3 (-1014)))) (-1423 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-675 *2)) (-4 *2 (-1014)))) (-1423 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-522)) (-4 *4 (-1014)) (-5 *1 (-675 *4)))) (-3859 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-675 *2)) (-4 *2 (-1014)))) (-3859 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-522)) (-4 *4 (-1014)) (-5 *1 (-675 *4)))))
-(-13 (-674 |#1|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -1596 ($)) (-15 -1596 ($ |#1|)) (-15 -1596 ($ (-588 |#1|))) (-15 -3308 ((-588 |#1|) $)) (-15 -1423 ($ |#1| $ (-522))) (-15 -1423 ($ (-1 (-108) |#1|) $ (-522))) (-15 -3859 ($ |#1| $ (-522))) (-15 -3859 ($ (-1 (-108) |#1|) $ (-522)))))
-((-3640 (((-1171) (-1068)) 8)))
-(((-676) (-10 -7 (-15 -3640 ((-1171) (-1068))))) (T -676))
-((-3640 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-676)))))
-(-10 -7 (-15 -3640 ((-1171) (-1068))))
-((-3231 (((-588 |#1|) (-588 |#1|) (-588 |#1|)) 10)))
-(((-677 |#1|) (-10 -7 (-15 -3231 ((-588 |#1|) (-588 |#1|) (-588 |#1|)))) (-784)) (T -677))
-((-3231 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-677 *3)))))
-(-10 -7 (-15 -3231 ((-588 |#1|) (-588 |#1|) (-588 |#1|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4090 (((-588 |#2|) $) 136)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 129 (|has| |#1| (-514)))) (-2022 (($ $) 128 (|has| |#1| (-514)))) (-3739 (((-108) $) 126 (|has| |#1| (-514)))) (-2908 (($ $) 85 (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) 68 (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) 19)) (-1929 (($ $) 67 (|has| |#1| (-37 (-382 (-522)))))) (-2884 (($ $) 84 (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) 69 (|has| |#1| (-37 (-382 (-522)))))) (-2930 (($ $) 83 (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) 70 (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) 17 T CONST)) (-3156 (($ $) 120)) (-2682 (((-3 $ "failed") $) 34)) (-2199 (((-881 |#1|) $ (-708)) 98) (((-881 |#1|) $ (-708) (-708)) 97)) (-3390 (((-108) $) 137)) (-2838 (($) 95 (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-708) $ |#2|) 100) (((-708) $ |#2| (-708)) 99)) (-2782 (((-108) $) 31)) (-1504 (($ $ (-522)) 66 (|has| |#1| (-37 (-382 (-522)))))) (-3340 (((-108) $) 118)) (-4049 (($ $ (-588 |#2|) (-588 (-494 |#2|))) 135) (($ $ |#2| (-494 |#2|)) 134) (($ |#1| (-494 |#2|)) 119) (($ $ |#2| (-708)) 102) (($ $ (-588 |#2|) (-588 (-708))) 101)) (-1391 (($ (-1 |#1| |#1|) $) 117)) (-1254 (($ $) 92 (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) 115)) (-3138 ((|#1| $) 114)) (-2385 (((-1068) $) 9)) (-1858 (($ $ |#2|) 96 (|has| |#1| (-37 (-382 (-522)))))) (-4151 (((-1032) $) 10)) (-3719 (($ $ (-708)) 103)) (-2232 (((-3 $ "failed") $ $) 130 (|has| |#1| (-514)))) (-3266 (($ $) 93 (|has| |#1| (-37 (-382 (-522)))))) (-2289 (($ $ |#2| $) 111) (($ $ (-588 |#2|) (-588 $)) 110) (($ $ (-588 (-270 $))) 109) (($ $ (-270 $)) 108) (($ $ $ $) 107) (($ $ (-588 $) (-588 $)) 106)) (-2157 (($ $ |#2|) 42) (($ $ (-588 |#2|)) 41) (($ $ |#2| (-708)) 40) (($ $ (-588 |#2|) (-588 (-708))) 39)) (-2793 (((-494 |#2|) $) 116)) (-1738 (($ $) 82 (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) 71 (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) 81 (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) 72 (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) 80 (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) 73 (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) 138)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 133 (|has| |#1| (-157))) (($ $) 131 (|has| |#1| (-514))) (($ (-382 (-522))) 123 (|has| |#1| (-37 (-382 (-522)))))) (-3243 ((|#1| $ (-494 |#2|)) 121) (($ $ |#2| (-708)) 105) (($ $ (-588 |#2|) (-588 (-708))) 104)) (-2143 (((-3 $ "failed") $) 132 (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-1759 (($ $) 91 (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) 79 (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) 127 (|has| |#1| (-514)))) (-1745 (($ $) 90 (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) 78 (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) 89 (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) 77 (|has| |#1| (-37 (-382 (-522)))))) (-3924 (($ $) 88 (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) 76 (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) 87 (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) 75 (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) 86 (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) 74 (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ |#2|) 38) (($ $ (-588 |#2|)) 37) (($ $ |#2| (-708)) 36) (($ $ (-588 |#2|) (-588 (-708))) 35)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#1|) 122 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ $) 94 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 65 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 125 (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) 124 (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 113) (($ $ |#1|) 112)))
+((-1419 (((-108) $ $) NIL)) (-2323 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 76)) (-4099 (($ $ $) 79)) (-1751 (((-108) $ $) 82)) (-2717 (((-108) $ (-708)) NIL)) (-1852 (($ (-588 |#1|)) 24) (($) 15)) (-1213 (($ (-1 (-108) |#1|) $) 70 (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-1581 (($ $) 71)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1700 (($ |#1| $) 61 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 64 (|has| $ (-6 -4238))) (($ |#1| $ (-522)) 62) (($ (-1 (-108) |#1|) $ (-522)) 65)) (-1424 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (($ |#1| $ (-522)) 67) (($ (-1 (-108) |#1|) $ (-522)) 68)) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-2395 (((-588 |#1|) $) 32 (|has| $ (-6 -4238)))) (-3756 (($) 13) (($ |#1|) 26) (($ (-588 |#1|)) 21)) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#1|) $) 38)) (-4176 (((-108) |#1| $) 57 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2397 (($ (-1 |#1| |#1|) $) 74 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 75)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-2251 (($ $ $) 77)) (-1431 ((|#1| $) 54)) (-3365 (($ |#1| $) 55) (($ |#1| $ (-708)) 72)) (-4174 (((-1032) $) NIL)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-3295 ((|#1| $) 53)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 49)) (-3298 (($) 12)) (-3699 (((-588 (-2 (|:| -3149 |#1|) (|:| -4187 (-708)))) $) 47)) (-3962 (($ $ |#1|) NIL) (($ $ $) 78)) (-3546 (($) 14) (($ (-588 |#1|)) 23)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) 60 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) 66)) (-3873 (((-498) $) 36 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 20)) (-2217 (((-792) $) 44)) (-3482 (($ (-588 |#1|)) 25) (($) 16)) (-2501 (($ (-588 |#1|)) 22)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 80)) (-1587 (((-108) $ $) 81)) (-3591 (((-708) $) 59 (|has| $ (-6 -4238)))))
+(((-675 |#1|) (-13 (-674 |#1|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -3756 ($)) (-15 -3756 ($ |#1|)) (-15 -3756 ($ (-588 |#1|))) (-15 -4084 ((-588 |#1|) $)) (-15 -1424 ($ |#1| $ (-522))) (-15 -1424 ($ (-1 (-108) |#1|) $ (-522))) (-15 -1700 ($ |#1| $ (-522))) (-15 -1700 ($ (-1 (-108) |#1|) $ (-522))))) (-1014)) (T -675))
+((-3756 (*1 *1) (-12 (-5 *1 (-675 *2)) (-4 *2 (-1014)))) (-3756 (*1 *1 *2) (-12 (-5 *1 (-675 *2)) (-4 *2 (-1014)))) (-3756 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-675 *3)))) (-4084 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-675 *3)) (-4 *3 (-1014)))) (-1424 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-675 *2)) (-4 *2 (-1014)))) (-1424 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-522)) (-4 *4 (-1014)) (-5 *1 (-675 *4)))) (-1700 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-675 *2)) (-4 *2 (-1014)))) (-1700 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-522)) (-4 *4 (-1014)) (-5 *1 (-675 *4)))))
+(-13 (-674 |#1|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -3756 ($)) (-15 -3756 ($ |#1|)) (-15 -3756 ($ (-588 |#1|))) (-15 -4084 ((-588 |#1|) $)) (-15 -1424 ($ |#1| $ (-522))) (-15 -1424 ($ (-1 (-108) |#1|) $ (-522))) (-15 -1700 ($ |#1| $ (-522))) (-15 -1700 ($ (-1 (-108) |#1|) $ (-522)))))
+((-3776 (((-1171) (-1068)) 8)))
+(((-676) (-10 -7 (-15 -3776 ((-1171) (-1068))))) (T -676))
+((-3776 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-676)))))
+(-10 -7 (-15 -3776 ((-1171) (-1068))))
+((-2801 (((-588 |#1|) (-588 |#1|) (-588 |#1|)) 10)))
+(((-677 |#1|) (-10 -7 (-15 -2801 ((-588 |#1|) (-588 |#1|) (-588 |#1|)))) (-784)) (T -677))
+((-2801 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-677 *3)))))
+(-10 -7 (-15 -2801 ((-588 |#1|) (-588 |#1|) (-588 |#1|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3533 (((-588 |#2|) $) 136)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 129 (|has| |#1| (-514)))) (-2298 (($ $) 128 (|has| |#1| (-514)))) (-3007 (((-108) $) 126 (|has| |#1| (-514)))) (-3044 (($ $) 85 (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) 68 (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) 19)) (-2016 (($ $) 67 (|has| |#1| (-37 (-382 (-522)))))) (-3023 (($ $) 84 (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) 69 (|has| |#1| (-37 (-382 (-522)))))) (-3066 (($ $) 83 (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) 70 (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) 17 T CONST)) (-3241 (($ $) 120)) (-3920 (((-3 $ "failed") $) 34)) (-3710 (((-881 |#1|) $ (-708)) 98) (((-881 |#1|) $ (-708) (-708)) 97)) (-3672 (((-108) $) 137)) (-2980 (($) 95 (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-708) $ |#2|) 100) (((-708) $ |#2| (-708)) 99)) (-2859 (((-108) $) 31)) (-1811 (($ $ (-522)) 66 (|has| |#1| (-37 (-382 (-522)))))) (-1374 (((-108) $) 118)) (-3500 (($ $ (-588 |#2|) (-588 (-494 |#2|))) 135) (($ $ |#2| (-494 |#2|)) 134) (($ |#1| (-494 |#2|)) 119) (($ $ |#2| (-708)) 102) (($ $ (-588 |#2|) (-588 (-708))) 101)) (-3810 (($ (-1 |#1| |#1|) $) 117)) (-1238 (($ $) 92 (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) 115)) (-3224 ((|#1| $) 114)) (-2311 (((-1068) $) 9)) (-2611 (($ $ |#2|) 96 (|has| |#1| (-37 (-382 (-522)))))) (-4174 (((-1032) $) 10)) (-3934 (($ $ (-708)) 103)) (-2276 (((-3 $ "failed") $ $) 130 (|has| |#1| (-514)))) (-3357 (($ $) 93 (|has| |#1| (-37 (-382 (-522)))))) (-2330 (($ $ |#2| $) 111) (($ $ (-588 |#2|) (-588 $)) 110) (($ $ (-588 (-270 $))) 109) (($ $ (-270 $)) 108) (($ $ $ $) 107) (($ $ (-588 $) (-588 $)) 106)) (-2731 (($ $ |#2|) 42) (($ $ (-588 |#2|)) 41) (($ $ |#2| (-708)) 40) (($ $ (-588 |#2|) (-588 (-708))) 39)) (-2487 (((-494 |#2|) $) 116)) (-1831 (($ $) 82 (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) 71 (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) 81 (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) 72 (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) 80 (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) 73 (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) 138)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 133 (|has| |#1| (-157))) (($ $) 131 (|has| |#1| (-514))) (($ (-382 (-522))) 123 (|has| |#1| (-37 (-382 (-522)))))) (-1643 ((|#1| $ (-494 |#2|)) 121) (($ $ |#2| (-708)) 105) (($ $ (-588 |#2|) (-588 (-708))) 104)) (-3040 (((-3 $ "failed") $) 132 (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-1856 (($ $) 91 (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) 79 (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) 127 (|has| |#1| (-514)))) (-1839 (($ $) 90 (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) 78 (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) 89 (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) 77 (|has| |#1| (-37 (-382 (-522)))))) (-2476 (($ $) 88 (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) 76 (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) 87 (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) 75 (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) 86 (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) 74 (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ |#2|) 38) (($ $ (-588 |#2|)) 37) (($ $ |#2| (-708)) 36) (($ $ (-588 |#2|) (-588 (-708))) 35)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#1|) 122 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ $) 94 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 65 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 125 (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) 124 (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 113) (($ $ |#1|) 112)))
(((-678 |#1| |#2|) (-1197) (-971) (-784)) (T -678))
-((-3243 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *2)) (-4 *4 (-971)) (-4 *2 (-784)))) (-3243 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *5)) (-5 *3 (-588 (-708))) (-4 *1 (-678 *4 *5)) (-4 *4 (-971)) (-4 *5 (-784)))) (-3719 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-678 *3 *4)) (-4 *3 (-971)) (-4 *4 (-784)))) (-4049 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *2)) (-4 *4 (-971)) (-4 *2 (-784)))) (-4049 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *5)) (-5 *3 (-588 (-708))) (-4 *1 (-678 *4 *5)) (-4 *4 (-971)) (-4 *5 (-784)))) (-3714 (*1 *2 *1 *3) (-12 (-4 *1 (-678 *4 *3)) (-4 *4 (-971)) (-4 *3 (-784)) (-5 *2 (-708)))) (-3714 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-708)) (-4 *1 (-678 *4 *3)) (-4 *4 (-971)) (-4 *3 (-784)))) (-2199 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *5)) (-4 *4 (-971)) (-4 *5 (-784)) (-5 *2 (-881 *4)))) (-2199 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *5)) (-4 *4 (-971)) (-4 *5 (-784)) (-5 *2 (-881 *4)))) (-1858 (*1 *1 *1 *2) (-12 (-4 *1 (-678 *3 *2)) (-4 *3 (-971)) (-4 *2 (-784)) (-4 *3 (-37 (-382 (-522)))))))
-(-13 (-829 |t#2|) (-900 |t#1| (-494 |t#2|) |t#2|) (-483 |t#2| $) (-285 $) (-10 -8 (-15 -3243 ($ $ |t#2| (-708))) (-15 -3243 ($ $ (-588 |t#2|) (-588 (-708)))) (-15 -3719 ($ $ (-708))) (-15 -4049 ($ $ |t#2| (-708))) (-15 -4049 ($ $ (-588 |t#2|) (-588 (-708)))) (-15 -3714 ((-708) $ |t#2|)) (-15 -3714 ((-708) $ |t#2| (-708))) (-15 -2199 ((-881 |t#1|) $ (-708))) (-15 -2199 ((-881 |t#1|) $ (-708) (-708))) (IF (|has| |t#1| (-37 (-382 (-522)))) (PROGN (-15 -1858 ($ $ |t#2|)) (-6 (-928)) (-6 (-1106))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-494 |#2|)) . T) ((-25) . T) ((-37 #1=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-34) |has| |#1| (-37 (-382 (-522)))) ((-91) |has| |#1| (-37 (-382 (-522)))) ((-97) . T) ((-107 #1# #1#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-260) |has| |#1| (-37 (-382 (-522)))) ((-266) |has| |#1| (-514)) ((-285 $) . T) ((-463) |has| |#1| (-37 (-382 (-522)))) ((-483 |#2| $) . T) ((-483 $ $) . T) ((-514) |has| |#1| (-514)) ((-590 #1#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #1#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) . T) ((-829 |#2|) . T) ((-900 |#1| #0# |#2|) . T) ((-928) |has| |#1| (-37 (-382 (-522)))) ((-977 #1#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1106) |has| |#1| (-37 (-382 (-522)))) ((-1109) |has| |#1| (-37 (-382 (-522)))))
-((-1916 (((-393 (-1081 |#4|)) (-1081 |#4|)) 28) (((-393 |#4|) |#4|) 24)))
-(((-679 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1916 ((-393 |#4|) |#4|)) (-15 -1916 ((-393 (-1081 |#4|)) (-1081 |#4|)))) (-784) (-730) (-13 (-283) (-135)) (-878 |#3| |#2| |#1|)) (T -679))
-((-1916 (*1 *2 *3) (-12 (-4 *4 (-784)) (-4 *5 (-730)) (-4 *6 (-13 (-283) (-135))) (-4 *7 (-878 *6 *5 *4)) (-5 *2 (-393 (-1081 *7))) (-5 *1 (-679 *4 *5 *6 *7)) (-5 *3 (-1081 *7)))) (-1916 (*1 *2 *3) (-12 (-4 *4 (-784)) (-4 *5 (-730)) (-4 *6 (-13 (-283) (-135))) (-5 *2 (-393 *3)) (-5 *1 (-679 *4 *5 *6 *3)) (-4 *3 (-878 *6 *5 *4)))))
-(-10 -7 (-15 -1916 ((-393 |#4|) |#4|)) (-15 -1916 ((-393 (-1081 |#4|)) (-1081 |#4|))))
-((-3906 (((-393 |#4|) |#4| |#2|) 117)) (-2236 (((-393 |#4|) |#4|) NIL)) (-3450 (((-393 (-1081 |#4|)) (-1081 |#4|)) 108) (((-393 |#4|) |#4|) 38)) (-3240 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-588 (-2 (|:| -1916 (-1081 |#4|)) (|:| -1400 (-522)))))) (-1081 |#4|) (-588 |#2|) (-588 (-588 |#3|))) 66)) (-3358 (((-1081 |#3|) (-1081 |#3|) (-522)) 134)) (-3820 (((-588 (-708)) (-1081 |#4|) (-588 |#2|) (-708)) 59)) (-3849 (((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-1081 |#3|) (-1081 |#3|) |#4| (-588 |#2|) (-588 (-708)) (-588 |#3|)) 63)) (-4036 (((-2 (|:| |upol| (-1081 |#3|)) (|:| |Lval| (-588 |#3|)) (|:| |Lfact| (-588 (-2 (|:| -1916 (-1081 |#3|)) (|:| -1400 (-522))))) (|:| |ctpol| |#3|)) (-1081 |#4|) (-588 |#2|) (-588 (-588 |#3|))) 22)) (-2182 (((-2 (|:| -3892 (-1081 |#4|)) (|:| |polval| (-1081 |#3|))) (-1081 |#4|) (-1081 |#3|) (-522)) 55)) (-2949 (((-522) (-588 (-2 (|:| -1916 (-1081 |#3|)) (|:| -1400 (-522))))) 131)) (-2969 ((|#4| (-522) (-393 |#4|)) 56)) (-2523 (((-108) (-588 (-2 (|:| -1916 (-1081 |#3|)) (|:| -1400 (-522)))) (-588 (-2 (|:| -1916 (-1081 |#3|)) (|:| -1400 (-522))))) NIL)))
-(((-680 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3450 ((-393 |#4|) |#4|)) (-15 -3450 ((-393 (-1081 |#4|)) (-1081 |#4|))) (-15 -2236 ((-393 |#4|) |#4|)) (-15 -2949 ((-522) (-588 (-2 (|:| -1916 (-1081 |#3|)) (|:| -1400 (-522)))))) (-15 -3906 ((-393 |#4|) |#4| |#2|)) (-15 -2182 ((-2 (|:| -3892 (-1081 |#4|)) (|:| |polval| (-1081 |#3|))) (-1081 |#4|) (-1081 |#3|) (-522))) (-15 -3240 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-588 (-2 (|:| -1916 (-1081 |#4|)) (|:| -1400 (-522)))))) (-1081 |#4|) (-588 |#2|) (-588 (-588 |#3|)))) (-15 -4036 ((-2 (|:| |upol| (-1081 |#3|)) (|:| |Lval| (-588 |#3|)) (|:| |Lfact| (-588 (-2 (|:| -1916 (-1081 |#3|)) (|:| -1400 (-522))))) (|:| |ctpol| |#3|)) (-1081 |#4|) (-588 |#2|) (-588 (-588 |#3|)))) (-15 -2969 (|#4| (-522) (-393 |#4|))) (-15 -2523 ((-108) (-588 (-2 (|:| -1916 (-1081 |#3|)) (|:| -1400 (-522)))) (-588 (-2 (|:| -1916 (-1081 |#3|)) (|:| -1400 (-522)))))) (-15 -3849 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-1081 |#3|) (-1081 |#3|) |#4| (-588 |#2|) (-588 (-708)) (-588 |#3|))) (-15 -3820 ((-588 (-708)) (-1081 |#4|) (-588 |#2|) (-708))) (-15 -3358 ((-1081 |#3|) (-1081 |#3|) (-522)))) (-730) (-784) (-283) (-878 |#3| |#1| |#2|)) (T -680))
-((-3358 (*1 *2 *2 *3) (-12 (-5 *2 (-1081 *6)) (-5 *3 (-522)) (-4 *6 (-283)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-680 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))) (-3820 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1081 *9)) (-5 *4 (-588 *7)) (-4 *7 (-784)) (-4 *9 (-878 *8 *6 *7)) (-4 *6 (-730)) (-4 *8 (-283)) (-5 *2 (-588 (-708))) (-5 *1 (-680 *6 *7 *8 *9)) (-5 *5 (-708)))) (-3849 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1081 *11)) (-5 *6 (-588 *10)) (-5 *7 (-588 (-708))) (-5 *8 (-588 *11)) (-4 *10 (-784)) (-4 *11 (-283)) (-4 *9 (-730)) (-4 *5 (-878 *11 *9 *10)) (-5 *2 (-588 (-1081 *5))) (-5 *1 (-680 *9 *10 *11 *5)) (-5 *3 (-1081 *5)))) (-2523 (*1 *2 *3 *3) (-12 (-5 *3 (-588 (-2 (|:| -1916 (-1081 *6)) (|:| -1400 (-522))))) (-4 *6 (-283)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-680 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))) (-2969 (*1 *2 *3 *4) (-12 (-5 *3 (-522)) (-5 *4 (-393 *2)) (-4 *2 (-878 *7 *5 *6)) (-5 *1 (-680 *5 *6 *7 *2)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-283)))) (-4036 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1081 *9)) (-5 *4 (-588 *7)) (-5 *5 (-588 (-588 *8))) (-4 *7 (-784)) (-4 *8 (-283)) (-4 *9 (-878 *8 *6 *7)) (-4 *6 (-730)) (-5 *2 (-2 (|:| |upol| (-1081 *8)) (|:| |Lval| (-588 *8)) (|:| |Lfact| (-588 (-2 (|:| -1916 (-1081 *8)) (|:| -1400 (-522))))) (|:| |ctpol| *8))) (-5 *1 (-680 *6 *7 *8 *9)))) (-3240 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-588 *7)) (-5 *5 (-588 (-588 *8))) (-4 *7 (-784)) (-4 *8 (-283)) (-4 *6 (-730)) (-4 *9 (-878 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-588 (-2 (|:| -1916 (-1081 *9)) (|:| -1400 (-522))))))) (-5 *1 (-680 *6 *7 *8 *9)) (-5 *3 (-1081 *9)))) (-2182 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-522)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-283)) (-4 *9 (-878 *8 *6 *7)) (-5 *2 (-2 (|:| -3892 (-1081 *9)) (|:| |polval| (-1081 *8)))) (-5 *1 (-680 *6 *7 *8 *9)) (-5 *3 (-1081 *9)) (-5 *4 (-1081 *8)))) (-3906 (*1 *2 *3 *4) (-12 (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-283)) (-5 *2 (-393 *3)) (-5 *1 (-680 *5 *4 *6 *3)) (-4 *3 (-878 *6 *5 *4)))) (-2949 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -1916 (-1081 *6)) (|:| -1400 (-522))))) (-4 *6 (-283)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-522)) (-5 *1 (-680 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))) (-2236 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-5 *2 (-393 *3)) (-5 *1 (-680 *4 *5 *6 *3)) (-4 *3 (-878 *6 *4 *5)))) (-3450 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-393 (-1081 *7))) (-5 *1 (-680 *4 *5 *6 *7)) (-5 *3 (-1081 *7)))) (-3450 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-5 *2 (-393 *3)) (-5 *1 (-680 *4 *5 *6 *3)) (-4 *3 (-878 *6 *4 *5)))))
-(-10 -7 (-15 -3450 ((-393 |#4|) |#4|)) (-15 -3450 ((-393 (-1081 |#4|)) (-1081 |#4|))) (-15 -2236 ((-393 |#4|) |#4|)) (-15 -2949 ((-522) (-588 (-2 (|:| -1916 (-1081 |#3|)) (|:| -1400 (-522)))))) (-15 -3906 ((-393 |#4|) |#4| |#2|)) (-15 -2182 ((-2 (|:| -3892 (-1081 |#4|)) (|:| |polval| (-1081 |#3|))) (-1081 |#4|) (-1081 |#3|) (-522))) (-15 -3240 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-588 (-2 (|:| -1916 (-1081 |#4|)) (|:| -1400 (-522)))))) (-1081 |#4|) (-588 |#2|) (-588 (-588 |#3|)))) (-15 -4036 ((-2 (|:| |upol| (-1081 |#3|)) (|:| |Lval| (-588 |#3|)) (|:| |Lfact| (-588 (-2 (|:| -1916 (-1081 |#3|)) (|:| -1400 (-522))))) (|:| |ctpol| |#3|)) (-1081 |#4|) (-588 |#2|) (-588 (-588 |#3|)))) (-15 -2969 (|#4| (-522) (-393 |#4|))) (-15 -2523 ((-108) (-588 (-2 (|:| -1916 (-1081 |#3|)) (|:| -1400 (-522)))) (-588 (-2 (|:| -1916 (-1081 |#3|)) (|:| -1400 (-522)))))) (-15 -3849 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-1081 |#3|) (-1081 |#3|) |#4| (-588 |#2|) (-588 (-708)) (-588 |#3|))) (-15 -3820 ((-588 (-708)) (-1081 |#4|) (-588 |#2|) (-708))) (-15 -3358 ((-1081 |#3|) (-1081 |#3|) (-522))))
-((-1882 (($ $ (-850)) 12)))
-(((-681 |#1| |#2|) (-10 -8 (-15 -1882 (|#1| |#1| (-850)))) (-682 |#2|) (-157)) (T -681))
-NIL
-(-10 -8 (-15 -1882 (|#1| |#1| (-850))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-1679 (($ $ (-850)) 28)) (-1882 (($ $ (-850)) 33)) (-3277 (($ $ (-850)) 29)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-1288 (($ $ $) 25)) (-2190 (((-792) $) 11)) (-3610 (($ $ $ $) 26)) (-3024 (($ $ $) 24)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 30)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+((-1643 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *2)) (-4 *4 (-971)) (-4 *2 (-784)))) (-1643 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *5)) (-5 *3 (-588 (-708))) (-4 *1 (-678 *4 *5)) (-4 *4 (-971)) (-4 *5 (-784)))) (-3934 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-678 *3 *4)) (-4 *3 (-971)) (-4 *4 (-784)))) (-3500 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *2)) (-4 *4 (-971)) (-4 *2 (-784)))) (-3500 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *5)) (-5 *3 (-588 (-708))) (-4 *1 (-678 *4 *5)) (-4 *4 (-971)) (-4 *5 (-784)))) (-3872 (*1 *2 *1 *3) (-12 (-4 *1 (-678 *4 *3)) (-4 *4 (-971)) (-4 *3 (-784)) (-5 *2 (-708)))) (-3872 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-708)) (-4 *1 (-678 *4 *3)) (-4 *4 (-971)) (-4 *3 (-784)))) (-3710 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *5)) (-4 *4 (-971)) (-4 *5 (-784)) (-5 *2 (-881 *4)))) (-3710 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *5)) (-4 *4 (-971)) (-4 *5 (-784)) (-5 *2 (-881 *4)))) (-2611 (*1 *1 *1 *2) (-12 (-4 *1 (-678 *3 *2)) (-4 *3 (-971)) (-4 *2 (-784)) (-4 *3 (-37 (-382 (-522)))))))
+(-13 (-829 |t#2|) (-900 |t#1| (-494 |t#2|) |t#2|) (-483 |t#2| $) (-285 $) (-10 -8 (-15 -1643 ($ $ |t#2| (-708))) (-15 -1643 ($ $ (-588 |t#2|) (-588 (-708)))) (-15 -3934 ($ $ (-708))) (-15 -3500 ($ $ |t#2| (-708))) (-15 -3500 ($ $ (-588 |t#2|) (-588 (-708)))) (-15 -3872 ((-708) $ |t#2|)) (-15 -3872 ((-708) $ |t#2| (-708))) (-15 -3710 ((-881 |t#1|) $ (-708))) (-15 -3710 ((-881 |t#1|) $ (-708) (-708))) (IF (|has| |t#1| (-37 (-382 (-522)))) (PROGN (-15 -2611 ($ $ |t#2|)) (-6 (-928)) (-6 (-1106))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-494 |#2|)) . T) ((-25) . T) ((-37 #1=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-34) |has| |#1| (-37 (-382 (-522)))) ((-91) |has| |#1| (-37 (-382 (-522)))) ((-97) . T) ((-107 #1# #1#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-260) |has| |#1| (-37 (-382 (-522)))) ((-266) |has| |#1| (-514)) ((-285 $) . T) ((-463) |has| |#1| (-37 (-382 (-522)))) ((-483 |#2| $) . T) ((-483 $ $) . T) ((-514) |has| |#1| (-514)) ((-590 #1#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #1#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) . T) ((-829 |#2|) . T) ((-900 |#1| #0# |#2|) . T) ((-928) |has| |#1| (-37 (-382 (-522)))) ((-977 #1#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1106) |has| |#1| (-37 (-382 (-522)))) ((-1109) |has| |#1| (-37 (-382 (-522)))))
+((-2006 (((-393 (-1081 |#4|)) (-1081 |#4|)) 28) (((-393 |#4|) |#4|) 24)))
+(((-679 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2006 ((-393 |#4|) |#4|)) (-15 -2006 ((-393 (-1081 |#4|)) (-1081 |#4|)))) (-784) (-730) (-13 (-283) (-135)) (-878 |#3| |#2| |#1|)) (T -679))
+((-2006 (*1 *2 *3) (-12 (-4 *4 (-784)) (-4 *5 (-730)) (-4 *6 (-13 (-283) (-135))) (-4 *7 (-878 *6 *5 *4)) (-5 *2 (-393 (-1081 *7))) (-5 *1 (-679 *4 *5 *6 *7)) (-5 *3 (-1081 *7)))) (-2006 (*1 *2 *3) (-12 (-4 *4 (-784)) (-4 *5 (-730)) (-4 *6 (-13 (-283) (-135))) (-5 *2 (-393 *3)) (-5 *1 (-679 *4 *5 *6 *3)) (-4 *3 (-878 *6 *5 *4)))))
+(-10 -7 (-15 -2006 ((-393 |#4|) |#4|)) (-15 -2006 ((-393 (-1081 |#4|)) (-1081 |#4|))))
+((-2085 (((-393 |#4|) |#4| |#2|) 117)) (-1714 (((-393 |#4|) |#4|) NIL)) (-3133 (((-393 (-1081 |#4|)) (-1081 |#4|)) 108) (((-393 |#4|) |#4|) 38)) (-1603 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-588 (-2 (|:| -2006 (-1081 |#4|)) (|:| -3858 (-522)))))) (-1081 |#4|) (-588 |#2|) (-588 (-588 |#3|))) 66)) (-1535 (((-1081 |#3|) (-1081 |#3|) (-522)) 134)) (-2601 (((-588 (-708)) (-1081 |#4|) (-588 |#2|) (-708)) 59)) (-2142 (((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-1081 |#3|) (-1081 |#3|) |#4| (-588 |#2|) (-588 (-708)) (-588 |#3|)) 63)) (-4012 (((-2 (|:| |upol| (-1081 |#3|)) (|:| |Lval| (-588 |#3|)) (|:| |Lfact| (-588 (-2 (|:| -2006 (-1081 |#3|)) (|:| -3858 (-522))))) (|:| |ctpol| |#3|)) (-1081 |#4|) (-588 |#2|) (-588 (-588 |#3|))) 22)) (-3328 (((-2 (|:| -1976 (-1081 |#4|)) (|:| |polval| (-1081 |#3|))) (-1081 |#4|) (-1081 |#3|) (-522)) 55)) (-3815 (((-522) (-588 (-2 (|:| -2006 (-1081 |#3|)) (|:| -3858 (-522))))) 131)) (-3992 ((|#4| (-522) (-393 |#4|)) 56)) (-2181 (((-108) (-588 (-2 (|:| -2006 (-1081 |#3|)) (|:| -3858 (-522)))) (-588 (-2 (|:| -2006 (-1081 |#3|)) (|:| -3858 (-522))))) NIL)))
+(((-680 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3133 ((-393 |#4|) |#4|)) (-15 -3133 ((-393 (-1081 |#4|)) (-1081 |#4|))) (-15 -1714 ((-393 |#4|) |#4|)) (-15 -3815 ((-522) (-588 (-2 (|:| -2006 (-1081 |#3|)) (|:| -3858 (-522)))))) (-15 -2085 ((-393 |#4|) |#4| |#2|)) (-15 -3328 ((-2 (|:| -1976 (-1081 |#4|)) (|:| |polval| (-1081 |#3|))) (-1081 |#4|) (-1081 |#3|) (-522))) (-15 -1603 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-588 (-2 (|:| -2006 (-1081 |#4|)) (|:| -3858 (-522)))))) (-1081 |#4|) (-588 |#2|) (-588 (-588 |#3|)))) (-15 -4012 ((-2 (|:| |upol| (-1081 |#3|)) (|:| |Lval| (-588 |#3|)) (|:| |Lfact| (-588 (-2 (|:| -2006 (-1081 |#3|)) (|:| -3858 (-522))))) (|:| |ctpol| |#3|)) (-1081 |#4|) (-588 |#2|) (-588 (-588 |#3|)))) (-15 -3992 (|#4| (-522) (-393 |#4|))) (-15 -2181 ((-108) (-588 (-2 (|:| -2006 (-1081 |#3|)) (|:| -3858 (-522)))) (-588 (-2 (|:| -2006 (-1081 |#3|)) (|:| -3858 (-522)))))) (-15 -2142 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-1081 |#3|) (-1081 |#3|) |#4| (-588 |#2|) (-588 (-708)) (-588 |#3|))) (-15 -2601 ((-588 (-708)) (-1081 |#4|) (-588 |#2|) (-708))) (-15 -1535 ((-1081 |#3|) (-1081 |#3|) (-522)))) (-730) (-784) (-283) (-878 |#3| |#1| |#2|)) (T -680))
+((-1535 (*1 *2 *2 *3) (-12 (-5 *2 (-1081 *6)) (-5 *3 (-522)) (-4 *6 (-283)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-680 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))) (-2601 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1081 *9)) (-5 *4 (-588 *7)) (-4 *7 (-784)) (-4 *9 (-878 *8 *6 *7)) (-4 *6 (-730)) (-4 *8 (-283)) (-5 *2 (-588 (-708))) (-5 *1 (-680 *6 *7 *8 *9)) (-5 *5 (-708)))) (-2142 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1081 *11)) (-5 *6 (-588 *10)) (-5 *7 (-588 (-708))) (-5 *8 (-588 *11)) (-4 *10 (-784)) (-4 *11 (-283)) (-4 *9 (-730)) (-4 *5 (-878 *11 *9 *10)) (-5 *2 (-588 (-1081 *5))) (-5 *1 (-680 *9 *10 *11 *5)) (-5 *3 (-1081 *5)))) (-2181 (*1 *2 *3 *3) (-12 (-5 *3 (-588 (-2 (|:| -2006 (-1081 *6)) (|:| -3858 (-522))))) (-4 *6 (-283)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)) (-5 *1 (-680 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))) (-3992 (*1 *2 *3 *4) (-12 (-5 *3 (-522)) (-5 *4 (-393 *2)) (-4 *2 (-878 *7 *5 *6)) (-5 *1 (-680 *5 *6 *7 *2)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-283)))) (-4012 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1081 *9)) (-5 *4 (-588 *7)) (-5 *5 (-588 (-588 *8))) (-4 *7 (-784)) (-4 *8 (-283)) (-4 *9 (-878 *8 *6 *7)) (-4 *6 (-730)) (-5 *2 (-2 (|:| |upol| (-1081 *8)) (|:| |Lval| (-588 *8)) (|:| |Lfact| (-588 (-2 (|:| -2006 (-1081 *8)) (|:| -3858 (-522))))) (|:| |ctpol| *8))) (-5 *1 (-680 *6 *7 *8 *9)))) (-1603 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-588 *7)) (-5 *5 (-588 (-588 *8))) (-4 *7 (-784)) (-4 *8 (-283)) (-4 *6 (-730)) (-4 *9 (-878 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-588 (-2 (|:| -2006 (-1081 *9)) (|:| -3858 (-522))))))) (-5 *1 (-680 *6 *7 *8 *9)) (-5 *3 (-1081 *9)))) (-3328 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-522)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-283)) (-4 *9 (-878 *8 *6 *7)) (-5 *2 (-2 (|:| -1976 (-1081 *9)) (|:| |polval| (-1081 *8)))) (-5 *1 (-680 *6 *7 *8 *9)) (-5 *3 (-1081 *9)) (-5 *4 (-1081 *8)))) (-2085 (*1 *2 *3 *4) (-12 (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-283)) (-5 *2 (-393 *3)) (-5 *1 (-680 *5 *4 *6 *3)) (-4 *3 (-878 *6 *5 *4)))) (-3815 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -2006 (-1081 *6)) (|:| -3858 (-522))))) (-4 *6 (-283)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-522)) (-5 *1 (-680 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))) (-1714 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-5 *2 (-393 *3)) (-5 *1 (-680 *4 *5 *6 *3)) (-4 *3 (-878 *6 *4 *5)))) (-3133 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-393 (-1081 *7))) (-5 *1 (-680 *4 *5 *6 *7)) (-5 *3 (-1081 *7)))) (-3133 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-5 *2 (-393 *3)) (-5 *1 (-680 *4 *5 *6 *3)) (-4 *3 (-878 *6 *4 *5)))))
+(-10 -7 (-15 -3133 ((-393 |#4|) |#4|)) (-15 -3133 ((-393 (-1081 |#4|)) (-1081 |#4|))) (-15 -1714 ((-393 |#4|) |#4|)) (-15 -3815 ((-522) (-588 (-2 (|:| -2006 (-1081 |#3|)) (|:| -3858 (-522)))))) (-15 -2085 ((-393 |#4|) |#4| |#2|)) (-15 -3328 ((-2 (|:| -1976 (-1081 |#4|)) (|:| |polval| (-1081 |#3|))) (-1081 |#4|) (-1081 |#3|) (-522))) (-15 -1603 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-588 (-2 (|:| -2006 (-1081 |#4|)) (|:| -3858 (-522)))))) (-1081 |#4|) (-588 |#2|) (-588 (-588 |#3|)))) (-15 -4012 ((-2 (|:| |upol| (-1081 |#3|)) (|:| |Lval| (-588 |#3|)) (|:| |Lfact| (-588 (-2 (|:| -2006 (-1081 |#3|)) (|:| -3858 (-522))))) (|:| |ctpol| |#3|)) (-1081 |#4|) (-588 |#2|) (-588 (-588 |#3|)))) (-15 -3992 (|#4| (-522) (-393 |#4|))) (-15 -2181 ((-108) (-588 (-2 (|:| -2006 (-1081 |#3|)) (|:| -3858 (-522)))) (-588 (-2 (|:| -2006 (-1081 |#3|)) (|:| -3858 (-522)))))) (-15 -2142 ((-3 (-588 (-1081 |#4|)) "failed") (-1081 |#4|) (-1081 |#3|) (-1081 |#3|) |#4| (-588 |#2|) (-588 (-708)) (-588 |#3|))) (-15 -2601 ((-588 (-708)) (-1081 |#4|) (-588 |#2|) (-708))) (-15 -1535 ((-1081 |#3|) (-1081 |#3|) (-522))))
+((-2870 (($ $ (-850)) 12)))
+(((-681 |#1| |#2|) (-10 -8 (-15 -2870 (|#1| |#1| (-850)))) (-682 |#2|) (-157)) (T -681))
+NIL
+(-10 -8 (-15 -2870 (|#1| |#1| (-850))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-2698 (($ $ (-850)) 28)) (-2870 (($ $ (-850)) 33)) (-1946 (($ $ (-850)) 29)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1596 (($ $ $) 25)) (-2217 (((-792) $) 11)) (-2185 (($ $ $ $) 26)) (-1369 (($ $ $) 24)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 30)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
(((-682 |#1|) (-1197) (-157)) (T -682))
-((-1882 (*1 *1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-682 *3)) (-4 *3 (-157)))))
-(-13 (-699) (-655 |t#1|) (-10 -8 (-15 -1882 ($ $ (-850)))))
+((-2870 (*1 *1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-682 *3)) (-4 *3 (-157)))))
+(-13 (-699) (-655 |t#1|) (-10 -8 (-15 -2870 ($ $ (-850)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#1|) . T) ((-655 |#1|) . T) ((-658) . T) ((-699) . T) ((-977 |#1|) . T) ((-1014) . T))
-((-2842 (((-960) (-628 (-202)) (-522) (-108) (-522)) 24)) (-1220 (((-960) (-628 (-202)) (-522) (-108) (-522)) 23)))
-(((-683) (-10 -7 (-15 -1220 ((-960) (-628 (-202)) (-522) (-108) (-522))) (-15 -2842 ((-960) (-628 (-202)) (-522) (-108) (-522))))) (T -683))
-((-2842 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-108)) (-5 *2 (-960)) (-5 *1 (-683)))) (-1220 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-108)) (-5 *2 (-960)) (-5 *1 (-683)))))
-(-10 -7 (-15 -1220 ((-960) (-628 (-202)) (-522) (-108) (-522))) (-15 -2842 ((-960) (-628 (-202)) (-522) (-108) (-522))))
-((-4107 (((-960) (-522) (-522) (-522) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-72 FCN)))) 43)) (-1482 (((-960) (-522) (-522) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-79 FCN)))) 39)) (-2485 (((-960) (-202) (-202) (-202) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) 32)))
-(((-684) (-10 -7 (-15 -2485 ((-960) (-202) (-202) (-202) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055))))) (-15 -1482 ((-960) (-522) (-522) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-79 FCN))))) (-15 -4107 ((-960) (-522) (-522) (-522) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-72 FCN))))))) (T -684))
-((-4107 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-72 FCN)))) (-5 *2 (-960)) (-5 *1 (-684)))) (-1482 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-79 FCN)))) (-5 *2 (-960)) (-5 *1 (-684)))) (-2485 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) (-5 *2 (-960)) (-5 *1 (-684)))))
-(-10 -7 (-15 -2485 ((-960) (-202) (-202) (-202) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055))))) (-15 -1482 ((-960) (-522) (-522) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-79 FCN))))) (-15 -4107 ((-960) (-522) (-522) (-522) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-72 FCN))))))
-((-3588 (((-960) (-522) (-522) (-628 (-202)) (-522)) 33)) (-1796 (((-960) (-522) (-522) (-628 (-202)) (-522)) 32)) (-2181 (((-960) (-522) (-628 (-202)) (-522)) 31)) (-1624 (((-960) (-522) (-628 (-202)) (-522)) 30)) (-3366 (((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 29)) (-1428 (((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 28)) (-1598 (((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-522)) 27)) (-2048 (((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-522)) 26)) (-1814 (((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 23)) (-3930 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-522)) 22)) (-3184 (((-960) (-522) (-628 (-202)) (-522)) 21)) (-2029 (((-960) (-522) (-628 (-202)) (-522)) 20)))
-(((-685) (-10 -7 (-15 -2029 ((-960) (-522) (-628 (-202)) (-522))) (-15 -3184 ((-960) (-522) (-628 (-202)) (-522))) (-15 -3930 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1814 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2048 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1598 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1428 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3366 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1624 ((-960) (-522) (-628 (-202)) (-522))) (-15 -2181 ((-960) (-522) (-628 (-202)) (-522))) (-15 -1796 ((-960) (-522) (-522) (-628 (-202)) (-522))) (-15 -3588 ((-960) (-522) (-522) (-628 (-202)) (-522))))) (T -685))
-((-3588 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-1796 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-2181 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-1624 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-3366 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-1428 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-1598 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-2048 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-1814 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-3930 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-3184 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-2029 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))))
-(-10 -7 (-15 -2029 ((-960) (-522) (-628 (-202)) (-522))) (-15 -3184 ((-960) (-522) (-628 (-202)) (-522))) (-15 -3930 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1814 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2048 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1598 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1428 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3366 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1624 ((-960) (-522) (-628 (-202)) (-522))) (-15 -2181 ((-960) (-522) (-628 (-202)) (-522))) (-15 -1796 ((-960) (-522) (-522) (-628 (-202)) (-522))) (-15 -3588 ((-960) (-522) (-522) (-628 (-202)) (-522))))
-((-3946 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-202) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN)))) 52)) (-1957 (((-960) (-628 (-202)) (-628 (-202)) (-522) (-522)) 51)) (-2171 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN)))) 50)) (-2681 (((-960) (-202) (-202) (-522) (-522) (-522) (-522)) 46)) (-2464 (((-960) (-202) (-202) (-522) (-202) (-522) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) 45)) (-3932 (((-960) (-202) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) 44)) (-3032 (((-960) (-202) (-202) (-202) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) 43)) (-2821 (((-960) (-202) (-202) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) 42)) (-3684 (((-960) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) 38)) (-2130 (((-960) (-202) (-202) (-522) (-628 (-202)) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) 37)) (-2206 (((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) 33)) (-3416 (((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) 32)))
-(((-686) (-10 -7 (-15 -3416 ((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055))))) (-15 -2206 ((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055))))) (-15 -2130 ((-960) (-202) (-202) (-522) (-628 (-202)) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055))))) (-15 -3684 ((-960) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055))))) (-15 -2821 ((-960) (-202) (-202) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -3032 ((-960) (-202) (-202) (-202) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -3932 ((-960) (-202) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -2464 ((-960) (-202) (-202) (-522) (-202) (-522) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -2681 ((-960) (-202) (-202) (-522) (-522) (-522) (-522))) (-15 -2171 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN))))) (-15 -1957 ((-960) (-628 (-202)) (-628 (-202)) (-522) (-522))) (-15 -3946 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-202) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN))))))) (T -686))
-((-3946 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-1957 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-686)))) (-2171 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-2681 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-686)))) (-2464 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-3932 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-3032 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-2821 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-3684 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-2130 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-686)))) (-2206 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-3416 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) (-5 *2 (-960)) (-5 *1 (-686)))))
-(-10 -7 (-15 -3416 ((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055))))) (-15 -2206 ((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055))))) (-15 -2130 ((-960) (-202) (-202) (-522) (-628 (-202)) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055))))) (-15 -3684 ((-960) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055))))) (-15 -2821 ((-960) (-202) (-202) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -3032 ((-960) (-202) (-202) (-202) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -3932 ((-960) (-202) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -2464 ((-960) (-202) (-202) (-522) (-202) (-522) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -2681 ((-960) (-202) (-202) (-522) (-522) (-522) (-522))) (-15 -2171 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN))))) (-15 -1957 ((-960) (-628 (-202)) (-628 (-202)) (-522) (-522))) (-15 -3946 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-202) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN))))))
-((-2738 (((-960) (-522) (-522) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-73 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-363)) (|:| |fp| (-74 G JACOBG JACGEP)))) 76)) (-2590 (((-960) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))) (-363) (-363)) 69) (((-960) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL)))) 68)) (-2331 (((-960) (-202) (-202) (-522) (-202) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-82 FCNF))) (-3 (|:| |fn| (-363)) (|:| |fp| (-83 FCNG)))) 57)) (-2382 (((-960) (-628 (-202)) (-628 (-202)) (-522) (-202) (-202) (-202) (-522) (-522) (-522) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) 50)) (-2108 (((-960) (-202) (-522) (-522) (-1068) (-522) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-69 PEDERV))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT)))) 49)) (-1760 (((-960) (-202) (-522) (-522) (-202) (-1068) (-202) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT)))) 45)) (-1766 (((-960) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) 42)) (-1274 (((-960) (-202) (-522) (-522) (-522) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT)))) 38)))
-(((-687) (-10 -7 (-15 -1274 ((-960) (-202) (-522) (-522) (-522) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))) (-15 -1766 ((-960) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))) (-15 -1760 ((-960) (-202) (-522) (-522) (-202) (-1068) (-202) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))) (-15 -2108 ((-960) (-202) (-522) (-522) (-1068) (-522) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-69 PEDERV))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))) (-15 -2382 ((-960) (-628 (-202)) (-628 (-202)) (-522) (-202) (-202) (-202) (-522) (-522) (-522) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))) (-15 -2331 ((-960) (-202) (-202) (-522) (-202) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-82 FCNF))) (-3 (|:| |fn| (-363)) (|:| |fp| (-83 FCNG))))) (-15 -2590 ((-960) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))))) (-15 -2590 ((-960) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))) (-363) (-363))) (-15 -2738 ((-960) (-522) (-522) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-73 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-363)) (|:| |fp| (-74 G JACOBG JACGEP))))))) (T -687))
-((-2738 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-73 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-74 G JACOBG JACGEP)))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))) (-2590 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL)))) (-5 *8 (-363)) (-5 *2 (-960)) (-5 *1 (-687)))) (-2590 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL)))) (-5 *2 (-960)) (-5 *1 (-687)))) (-2331 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-82 FCNF)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-83 FCNG)))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))) (-2382 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *2 (-960)) (-5 *1 (-687)))) (-2108 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-522)) (-5 *5 (-1068)) (-5 *6 (-628 (-202))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G)))) (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *9 (-3 (|:| |fn| (-363)) (|:| |fp| (-69 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT)))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))) (-1760 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-522)) (-5 *5 (-1068)) (-5 *6 (-628 (-202))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G)))) (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *9 (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT)))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))) (-1766 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))) (-1274 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT)))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))))
-(-10 -7 (-15 -1274 ((-960) (-202) (-522) (-522) (-522) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))) (-15 -1766 ((-960) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))) (-15 -1760 ((-960) (-202) (-522) (-522) (-202) (-1068) (-202) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))) (-15 -2108 ((-960) (-202) (-522) (-522) (-1068) (-522) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-69 PEDERV))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))) (-15 -2382 ((-960) (-628 (-202)) (-628 (-202)) (-522) (-202) (-202) (-202) (-522) (-522) (-522) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))) (-15 -2331 ((-960) (-202) (-202) (-522) (-202) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-82 FCNF))) (-3 (|:| |fn| (-363)) (|:| |fp| (-83 FCNG))))) (-15 -2590 ((-960) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))))) (-15 -2590 ((-960) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))) (-363) (-363))) (-15 -2738 ((-960) (-522) (-522) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-73 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-363)) (|:| |fp| (-74 G JACOBG JACGEP))))))
-((-1404 (((-960) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-616 (-202)) (-522)) 45)) (-4169 (((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-1068) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-80 PDEF))) (-3 (|:| |fn| (-363)) (|:| |fp| (-81 BNDY)))) 41)) (-3765 (((-960) (-522) (-522) (-522) (-522) (-202) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 23)))
-(((-688) (-10 -7 (-15 -3765 ((-960) (-522) (-522) (-522) (-522) (-202) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -4169 ((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-1068) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-80 PDEF))) (-3 (|:| |fn| (-363)) (|:| |fp| (-81 BNDY))))) (-15 -1404 ((-960) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-616 (-202)) (-522))))) (T -688))
-((-1404 (*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 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-616 (-202))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-688)))) (-4169 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-1068)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-80 PDEF)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-81 BNDY)))) (-5 *2 (-960)) (-5 *1 (-688)))) (-3765 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-688)))))
-(-10 -7 (-15 -3765 ((-960) (-522) (-522) (-522) (-522) (-202) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -4169 ((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-1068) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-80 PDEF))) (-3 (|:| |fn| (-363)) (|:| |fp| (-81 BNDY))))) (-15 -1404 ((-960) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-616 (-202)) (-522))))
-((-4135 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-628 (-202)) (-202) (-202) (-522)) 35)) (-3468 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-202) (-202) (-522)) 34)) (-2543 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-628 (-202)) (-202) (-202) (-522)) 33)) (-1895 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 29)) (-3300 (((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 28)) (-2168 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522)) 27)) (-2684 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-522)) 23)) (-1794 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-522)) 22)) (-3493 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-522)) 21)) (-2858 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522)) 20)))
-(((-689) (-10 -7 (-15 -2858 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522))) (-15 -3493 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1794 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -2684 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -2168 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522))) (-15 -3300 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1895 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2543 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-628 (-202)) (-202) (-202) (-522))) (-15 -3468 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-202) (-202) (-522))) (-15 -4135 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-628 (-202)) (-202) (-202) (-522))))) (T -689))
-((-4135 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *2 (-960)) (-5 *1 (-689)))) (-3468 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *2 (-960)) (-5 *1 (-689)))) (-2543 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *6 (-202)) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-689)))) (-1895 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-689)))) (-3300 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-689)))) (-2168 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *2 (-960)) (-5 *1 (-689)))) (-2684 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-689)))) (-1794 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-689)))) (-3493 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-689)))) (-2858 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-689)))))
-(-10 -7 (-15 -2858 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522))) (-15 -3493 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1794 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -2684 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -2168 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522))) (-15 -3300 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1895 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2543 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-628 (-202)) (-202) (-202) (-522))) (-15 -3468 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-202) (-202) (-522))) (-15 -4135 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-628 (-202)) (-202) (-202) (-522))))
-((-1466 (((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522)) 45)) (-3515 (((-960) (-522) (-522) (-522) (-202) (-628 (-202)) (-628 (-202)) (-522)) 44)) (-2304 (((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522)) 43)) (-3585 (((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 42)) (-2906 (((-960) (-1068) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522)) 41)) (-3291 (((-960) (-1068) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522)) 40)) (-2184 (((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522) (-522) (-522) (-202) (-628 (-202)) (-522)) 39)) (-2881 (((-960) (-1068) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-522))) 38)) (-1344 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-522)) 35)) (-3672 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522)) 34)) (-2708 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522)) 33)) (-2561 (((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 32)) (-3920 (((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-202) (-522)) 31)) (-3149 (((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-522)) 30)) (-2916 (((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-522) (-522) (-522)) 29)) (-2381 (((-960) (-522) (-522) (-522) (-202) (-202) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522) (-628 (-522)) (-522) (-522) (-522)) 28)) (-3222 (((-960) (-522) (-628 (-202)) (-202) (-522)) 24)) (-3501 (((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 20)))
-(((-690) (-10 -7 (-15 -3501 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3222 ((-960) (-522) (-628 (-202)) (-202) (-522))) (-15 -2381 ((-960) (-522) (-522) (-522) (-202) (-202) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522) (-628 (-522)) (-522) (-522) (-522))) (-15 -2916 ((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-522) (-522) (-522))) (-15 -3149 ((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-522))) (-15 -3920 ((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-202) (-522))) (-15 -2561 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2708 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522))) (-15 -3672 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522))) (-15 -1344 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2881 ((-960) (-1068) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-522)))) (-15 -2184 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522) (-522) (-522) (-202) (-628 (-202)) (-522))) (-15 -3291 ((-960) (-1068) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522))) (-15 -2906 ((-960) (-1068) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3585 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2304 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522))) (-15 -3515 ((-960) (-522) (-522) (-522) (-202) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1466 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522))))) (T -690))
-((-1466 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-690)))) (-3515 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-2304 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-690)))) (-3585 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-690)))) (-2906 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-3291 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1068)) (-5 *5 (-628 (-202))) (-5 *6 (-202)) (-5 *7 (-628 (-522))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-690)))) (-2184 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *6 (-202)) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-690)))) (-2881 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1068)) (-5 *5 (-628 (-202))) (-5 *6 (-202)) (-5 *7 (-628 (-522))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-690)))) (-1344 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-690)))) (-3672 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-2708 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-2561 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-690)))) (-3920 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-3149 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-2916 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-2381 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-628 (-202))) (-5 *6 (-628 (-522))) (-5 *3 (-522)) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-3222 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-3501 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-690)))))
-(-10 -7 (-15 -3501 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3222 ((-960) (-522) (-628 (-202)) (-202) (-522))) (-15 -2381 ((-960) (-522) (-522) (-522) (-202) (-202) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522) (-628 (-522)) (-522) (-522) (-522))) (-15 -2916 ((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-522) (-522) (-522))) (-15 -3149 ((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-522))) (-15 -3920 ((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-202) (-522))) (-15 -2561 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2708 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522))) (-15 -3672 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522))) (-15 -1344 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2881 ((-960) (-1068) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-522)))) (-15 -2184 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522) (-522) (-522) (-202) (-628 (-202)) (-522))) (-15 -3291 ((-960) (-1068) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522))) (-15 -2906 ((-960) (-1068) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3585 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2304 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522))) (-15 -3515 ((-960) (-522) (-522) (-522) (-202) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1466 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522))))
-((-3326 (((-960) (-522) (-522) (-522) (-202) (-628 (-202)) (-522) (-628 (-202)) (-522)) 63)) (-2718 (((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-108) (-202) (-522) (-202) (-202) (-108) (-202) (-202) (-202) (-202) (-108) (-522) (-522) (-522) (-522) (-522) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-522)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-78 CONFUN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN)))) 62)) (-2712 (((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-202) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-108) (-108) (-108) (-522) (-522) (-628 (-202)) (-628 (-522)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-63 QPHESS)))) 58)) (-1783 (((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-108) (-522) (-522) (-628 (-202)) (-522)) 51)) (-3723 (((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-64 FUNCT1)))) 50)) (-2629 (((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-61 LSFUN2)))) 46)) (-1810 (((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-77 LSFUN1)))) 42)) (-1543 (((-960) (-522) (-202) (-202) (-522) (-202) (-108) (-202) (-202) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN)))) 38)))
-(((-691) (-10 -7 (-15 -1543 ((-960) (-522) (-202) (-202) (-522) (-202) (-108) (-202) (-202) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN))))) (-15 -1810 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-77 LSFUN1))))) (-15 -2629 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-61 LSFUN2))))) (-15 -3723 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-64 FUNCT1))))) (-15 -1783 ((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-108) (-522) (-522) (-628 (-202)) (-522))) (-15 -2712 ((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-202) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-108) (-108) (-108) (-522) (-522) (-628 (-202)) (-628 (-522)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-63 QPHESS))))) (-15 -2718 ((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-108) (-202) (-522) (-202) (-202) (-108) (-202) (-202) (-202) (-202) (-108) (-522) (-522) (-522) (-522) (-522) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-522)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-78 CONFUN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN))))) (-15 -3326 ((-960) (-522) (-522) (-522) (-202) (-628 (-202)) (-522) (-628 (-202)) (-522))))) (T -691))
-((-3326 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-691)))) (-2718 (*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 (-628 (-202))) (-5 *5 (-108)) (-5 *6 (-202)) (-5 *7 (-628 (-522))) (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-78 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN)))) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-691)))) (-2712 (*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 (-628 (-202))) (-5 *6 (-108)) (-5 *7 (-628 (-522))) (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-63 QPHESS)))) (-5 *3 (-522)) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-691)))) (-1783 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-108)) (-5 *2 (-960)) (-5 *1 (-691)))) (-3723 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-64 FUNCT1)))) (-5 *2 (-960)) (-5 *1 (-691)))) (-2629 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-61 LSFUN2)))) (-5 *2 (-960)) (-5 *1 (-691)))) (-1810 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-77 LSFUN1)))) (-5 *2 (-960)) (-5 *1 (-691)))) (-1543 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-522)) (-5 *5 (-108)) (-5 *6 (-628 (-202))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN)))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-691)))))
-(-10 -7 (-15 -1543 ((-960) (-522) (-202) (-202) (-522) (-202) (-108) (-202) (-202) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN))))) (-15 -1810 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-77 LSFUN1))))) (-15 -2629 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-61 LSFUN2))))) (-15 -3723 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-64 FUNCT1))))) (-15 -1783 ((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-108) (-522) (-522) (-628 (-202)) (-522))) (-15 -2712 ((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-202) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-108) (-108) (-108) (-522) (-522) (-628 (-202)) (-628 (-522)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-63 QPHESS))))) (-15 -2718 ((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-108) (-202) (-522) (-202) (-202) (-108) (-202) (-202) (-202) (-202) (-108) (-522) (-522) (-522) (-522) (-522) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-522)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-78 CONFUN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN))))) (-15 -3326 ((-960) (-522) (-522) (-522) (-202) (-628 (-202)) (-522) (-628 (-202)) (-522))))
-((-3134 (((-960) (-1068) (-522) (-522) (-522) (-522) (-628 (-154 (-202))) (-628 (-154 (-202))) (-522)) 46)) (-1419 (((-960) (-1068) (-1068) (-522) (-522) (-628 (-154 (-202))) (-522) (-628 (-154 (-202))) (-522) (-522) (-628 (-154 (-202))) (-522)) 45)) (-2408 (((-960) (-522) (-522) (-522) (-628 (-154 (-202))) (-522)) 44)) (-2964 (((-960) (-1068) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 40)) (-2965 (((-960) (-1068) (-1068) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-628 (-202)) (-522)) 39)) (-2257 (((-960) (-522) (-522) (-522) (-628 (-202)) (-522)) 36)) (-3320 (((-960) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522)) 35)) (-3256 (((-960) (-522) (-522) (-522) (-522) (-588 (-108)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-202) (-202) (-522)) 34)) (-3826 (((-960) (-522) (-522) (-522) (-628 (-522)) (-628 (-522)) (-628 (-522)) (-628 (-522)) (-108) (-202) (-108) (-628 (-522)) (-628 (-202)) (-522)) 33)) (-3223 (((-960) (-522) (-522) (-522) (-522) (-202) (-108) (-108) (-588 (-108)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-522)) 32)))
-(((-692) (-10 -7 (-15 -3223 ((-960) (-522) (-522) (-522) (-522) (-202) (-108) (-108) (-588 (-108)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-522))) (-15 -3826 ((-960) (-522) (-522) (-522) (-628 (-522)) (-628 (-522)) (-628 (-522)) (-628 (-522)) (-108) (-202) (-108) (-628 (-522)) (-628 (-202)) (-522))) (-15 -3256 ((-960) (-522) (-522) (-522) (-522) (-588 (-108)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-202) (-202) (-522))) (-15 -3320 ((-960) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522))) (-15 -2257 ((-960) (-522) (-522) (-522) (-628 (-202)) (-522))) (-15 -2965 ((-960) (-1068) (-1068) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-628 (-202)) (-522))) (-15 -2964 ((-960) (-1068) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2408 ((-960) (-522) (-522) (-522) (-628 (-154 (-202))) (-522))) (-15 -1419 ((-960) (-1068) (-1068) (-522) (-522) (-628 (-154 (-202))) (-522) (-628 (-154 (-202))) (-522) (-522) (-628 (-154 (-202))) (-522))) (-15 -3134 ((-960) (-1068) (-522) (-522) (-522) (-522) (-628 (-154 (-202))) (-628 (-154 (-202))) (-522))))) (T -692))
-((-3134 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-154 (-202)))) (-5 *2 (-960)) (-5 *1 (-692)))) (-1419 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-154 (-202)))) (-5 *2 (-960)) (-5 *1 (-692)))) (-2408 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-154 (-202)))) (-5 *2 (-960)) (-5 *1 (-692)))) (-2964 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-692)))) (-2965 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-692)))) (-2257 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-692)))) (-3320 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-692)))) (-3256 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-588 (-108))) (-5 *5 (-628 (-202))) (-5 *6 (-628 (-522))) (-5 *7 (-202)) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-692)))) (-3826 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-628 (-522))) (-5 *5 (-108)) (-5 *7 (-628 (-202))) (-5 *3 (-522)) (-5 *6 (-202)) (-5 *2 (-960)) (-5 *1 (-692)))) (-3223 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-588 (-108))) (-5 *7 (-628 (-202))) (-5 *8 (-628 (-522))) (-5 *3 (-522)) (-5 *4 (-202)) (-5 *5 (-108)) (-5 *2 (-960)) (-5 *1 (-692)))))
-(-10 -7 (-15 -3223 ((-960) (-522) (-522) (-522) (-522) (-202) (-108) (-108) (-588 (-108)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-522))) (-15 -3826 ((-960) (-522) (-522) (-522) (-628 (-522)) (-628 (-522)) (-628 (-522)) (-628 (-522)) (-108) (-202) (-108) (-628 (-522)) (-628 (-202)) (-522))) (-15 -3256 ((-960) (-522) (-522) (-522) (-522) (-588 (-108)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-202) (-202) (-522))) (-15 -3320 ((-960) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522))) (-15 -2257 ((-960) (-522) (-522) (-522) (-628 (-202)) (-522))) (-15 -2965 ((-960) (-1068) (-1068) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-628 (-202)) (-522))) (-15 -2964 ((-960) (-1068) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2408 ((-960) (-522) (-522) (-522) (-628 (-154 (-202))) (-522))) (-15 -1419 ((-960) (-1068) (-1068) (-522) (-522) (-628 (-154 (-202))) (-522) (-628 (-154 (-202))) (-522) (-522) (-628 (-154 (-202))) (-522))) (-15 -3134 ((-960) (-1068) (-522) (-522) (-522) (-522) (-628 (-154 (-202))) (-628 (-154 (-202))) (-522))))
-((-2481 (((-960) (-522) (-522) (-522) (-522) (-522) (-108) (-522) (-108) (-522) (-628 (-154 (-202))) (-628 (-154 (-202))) (-522)) 64)) (-4051 (((-960) (-522) (-522) (-522) (-522) (-522) (-108) (-522) (-108) (-522) (-628 (-202)) (-628 (-202)) (-522)) 60)) (-1489 (((-960) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE))) (-363)) 56) (((-960) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE)))) 55)) (-3817 (((-960) (-522) (-522) (-522) (-202) (-108) (-522) (-628 (-202)) (-628 (-202)) (-522)) 37)) (-2436 (((-960) (-522) (-522) (-202) (-202) (-522) (-522) (-628 (-202)) (-522)) 33)) (-3337 (((-960) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-522) (-522) (-522)) 29)) (-3158 (((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 28)) (-4173 (((-960) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 27)) (-4098 (((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 26)) (-3992 (((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522)) 25)) (-1655 (((-960) (-522) (-522) (-628 (-202)) (-522)) 24)) (-4089 (((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 23)) (-1959 (((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 22)) (-2786 (((-960) (-628 (-202)) (-522) (-522) (-522) (-522)) 21)) (-3897 (((-960) (-522) (-522) (-628 (-202)) (-522)) 20)))
-(((-693) (-10 -7 (-15 -3897 ((-960) (-522) (-522) (-628 (-202)) (-522))) (-15 -2786 ((-960) (-628 (-202)) (-522) (-522) (-522) (-522))) (-15 -1959 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -4089 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1655 ((-960) (-522) (-522) (-628 (-202)) (-522))) (-15 -3992 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522))) (-15 -4098 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -4173 ((-960) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3158 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3337 ((-960) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-522) (-522) (-522))) (-15 -2436 ((-960) (-522) (-522) (-202) (-202) (-522) (-522) (-628 (-202)) (-522))) (-15 -3817 ((-960) (-522) (-522) (-522) (-202) (-108) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1489 ((-960) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE))))) (-15 -1489 ((-960) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE))) (-363))) (-15 -4051 ((-960) (-522) (-522) (-522) (-522) (-522) (-108) (-522) (-108) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2481 ((-960) (-522) (-522) (-522) (-522) (-522) (-108) (-522) (-108) (-522) (-628 (-154 (-202))) (-628 (-154 (-202))) (-522))))) (T -693))
-((-2481 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-108)) (-5 *5 (-628 (-154 (-202)))) (-5 *2 (-960)) (-5 *1 (-693)))) (-4051 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-108)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-1489 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE)))) (-5 *8 (-363)) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-693)))) (-1489 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE)))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-693)))) (-3817 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-522)) (-5 *5 (-108)) (-5 *6 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-693)))) (-2436 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-693)))) (-3337 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-693)))) (-3158 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-4173 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-4098 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-3992 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-1655 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-4089 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-1959 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-2786 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-693)))) (-3897 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))))
-(-10 -7 (-15 -3897 ((-960) (-522) (-522) (-628 (-202)) (-522))) (-15 -2786 ((-960) (-628 (-202)) (-522) (-522) (-522) (-522))) (-15 -1959 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -4089 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1655 ((-960) (-522) (-522) (-628 (-202)) (-522))) (-15 -3992 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522))) (-15 -4098 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -4173 ((-960) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3158 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3337 ((-960) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-522) (-522) (-522))) (-15 -2436 ((-960) (-522) (-522) (-202) (-202) (-522) (-522) (-628 (-202)) (-522))) (-15 -3817 ((-960) (-522) (-522) (-522) (-202) (-108) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1489 ((-960) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE))))) (-15 -1489 ((-960) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE))) (-363))) (-15 -4051 ((-960) (-522) (-522) (-522) (-522) (-522) (-108) (-522) (-108) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2481 ((-960) (-522) (-522) (-522) (-522) (-522) (-108) (-522) (-108) (-522) (-628 (-154 (-202))) (-628 (-154 (-202))) (-522))))
-((-3190 (((-960) (-522) (-522) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-68 APROD)))) 60)) (-1939 (((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-522)) (-522) (-628 (-202)) (-522) (-522) (-522) (-522)) 56)) (-4126 (((-960) (-522) (-628 (-202)) (-108) (-202) (-522) (-522) (-522) (-522) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 APROD))) (-3 (|:| |fn| (-363)) (|:| |fp| (-71 MSOLVE)))) 55)) (-1897 (((-960) (-522) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522) (-628 (-522)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522)) 36)) (-3202 (((-960) (-522) (-522) (-522) (-202) (-522) (-628 (-202)) (-628 (-202)) (-522)) 35)) (-3811 (((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 31)) (-3955 (((-960) (-522) (-628 (-202)) (-522) (-628 (-522)) (-628 (-522)) (-522) (-628 (-522)) (-628 (-202))) 30)) (-3880 (((-960) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-522)) 26)) (-2937 (((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522)) 25)) (-2824 (((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522)) 24)) (-3665 (((-960) (-522) (-628 (-154 (-202))) (-522) (-522) (-522) (-522) (-628 (-154 (-202))) (-522)) 20)))
-(((-694) (-10 -7 (-15 -3665 ((-960) (-522) (-628 (-154 (-202))) (-522) (-522) (-522) (-522) (-628 (-154 (-202))) (-522))) (-15 -2824 ((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -2937 ((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -3880 ((-960) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-522))) (-15 -3955 ((-960) (-522) (-628 (-202)) (-522) (-628 (-522)) (-628 (-522)) (-522) (-628 (-522)) (-628 (-202)))) (-15 -3811 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3202 ((-960) (-522) (-522) (-522) (-202) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1897 ((-960) (-522) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522) (-628 (-522)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522))) (-15 -4126 ((-960) (-522) (-628 (-202)) (-108) (-202) (-522) (-522) (-522) (-522) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 APROD))) (-3 (|:| |fn| (-363)) (|:| |fp| (-71 MSOLVE))))) (-15 -1939 ((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-522)) (-522) (-628 (-202)) (-522) (-522) (-522) (-522))) (-15 -3190 ((-960) (-522) (-522) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-68 APROD))))))) (T -694))
-((-3190 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-68 APROD)))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-694)))) (-1939 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-694)))) (-4126 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-108)) (-5 *6 (-202)) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-66 APROD)))) (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-71 MSOLVE)))) (-5 *2 (-960)) (-5 *1 (-694)))) (-1897 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-694)))) (-3202 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-694)))) (-3811 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-694)))) (-3955 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-694)))) (-3880 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-694)))) (-2937 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-694)))) (-2824 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-694)))) (-3665 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-154 (-202)))) (-5 *2 (-960)) (-5 *1 (-694)))))
-(-10 -7 (-15 -3665 ((-960) (-522) (-628 (-154 (-202))) (-522) (-522) (-522) (-522) (-628 (-154 (-202))) (-522))) (-15 -2824 ((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -2937 ((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -3880 ((-960) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-522))) (-15 -3955 ((-960) (-522) (-628 (-202)) (-522) (-628 (-522)) (-628 (-522)) (-522) (-628 (-522)) (-628 (-202)))) (-15 -3811 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3202 ((-960) (-522) (-522) (-522) (-202) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1897 ((-960) (-522) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522) (-628 (-522)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522))) (-15 -4126 ((-960) (-522) (-628 (-202)) (-108) (-202) (-522) (-522) (-522) (-522) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 APROD))) (-3 (|:| |fn| (-363)) (|:| |fp| (-71 MSOLVE))))) (-15 -1939 ((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-522)) (-522) (-628 (-202)) (-522) (-522) (-522) (-522))) (-15 -3190 ((-960) (-522) (-522) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-68 APROD))))))
-((-3347 (((-960) (-1068) (-522) (-522) (-628 (-202)) (-522) (-522) (-628 (-202))) 28)) (-1784 (((-960) (-1068) (-522) (-522) (-628 (-202))) 27)) (-2372 (((-960) (-1068) (-522) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522) (-628 (-202))) 26)) (-1293 (((-960) (-522) (-522) (-522) (-628 (-202))) 20)))
-(((-695) (-10 -7 (-15 -1293 ((-960) (-522) (-522) (-522) (-628 (-202)))) (-15 -2372 ((-960) (-1068) (-522) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522) (-628 (-202)))) (-15 -1784 ((-960) (-1068) (-522) (-522) (-628 (-202)))) (-15 -3347 ((-960) (-1068) (-522) (-522) (-628 (-202)) (-522) (-522) (-628 (-202)))))) (T -695))
-((-3347 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-695)))) (-1784 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-695)))) (-2372 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1068)) (-5 *5 (-628 (-202))) (-5 *6 (-628 (-522))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-695)))) (-1293 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-695)))))
-(-10 -7 (-15 -1293 ((-960) (-522) (-522) (-522) (-628 (-202)))) (-15 -2372 ((-960) (-1068) (-522) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522) (-628 (-202)))) (-15 -1784 ((-960) (-1068) (-522) (-522) (-628 (-202)))) (-15 -3347 ((-960) (-1068) (-522) (-522) (-628 (-202)) (-522) (-522) (-628 (-202)))))
-((-1255 (((-960) (-202) (-202) (-202) (-202) (-522)) 62)) (-1430 (((-960) (-202) (-202) (-202) (-522)) 61)) (-1792 (((-960) (-202) (-202) (-202) (-522)) 60)) (-3193 (((-960) (-202) (-202) (-522)) 59)) (-3188 (((-960) (-202) (-522)) 58)) (-2288 (((-960) (-202) (-522)) 57)) (-1928 (((-960) (-202) (-522)) 56)) (-1283 (((-960) (-202) (-522)) 55)) (-1863 (((-960) (-202) (-522)) 54)) (-3213 (((-960) (-202) (-522)) 53)) (-1723 (((-960) (-202) (-154 (-202)) (-522) (-1068) (-522)) 52)) (-2099 (((-960) (-202) (-154 (-202)) (-522) (-1068) (-522)) 51)) (-1980 (((-960) (-202) (-522)) 50)) (-1584 (((-960) (-202) (-522)) 49)) (-2195 (((-960) (-202) (-522)) 48)) (-3088 (((-960) (-202) (-522)) 47)) (-3198 (((-960) (-522) (-202) (-154 (-202)) (-522) (-1068) (-522)) 46)) (-3535 (((-960) (-1068) (-154 (-202)) (-1068) (-522)) 45)) (-1719 (((-960) (-1068) (-154 (-202)) (-1068) (-522)) 44)) (-3516 (((-960) (-202) (-154 (-202)) (-522) (-1068) (-522)) 43)) (-3039 (((-960) (-202) (-154 (-202)) (-522) (-1068) (-522)) 42)) (-4059 (((-960) (-202) (-522)) 39)) (-2097 (((-960) (-202) (-522)) 38)) (-4116 (((-960) (-202) (-522)) 37)) (-1689 (((-960) (-202) (-522)) 36)) (-1380 (((-960) (-202) (-522)) 35)) (-1730 (((-960) (-202) (-522)) 34)) (-3949 (((-960) (-202) (-522)) 33)) (-4136 (((-960) (-202) (-522)) 32)) (-3561 (((-960) (-202) (-522)) 31)) (-3873 (((-960) (-202) (-522)) 30)) (-1476 (((-960) (-202) (-202) (-202) (-522)) 29)) (-1609 (((-960) (-202) (-522)) 28)) (-2585 (((-960) (-202) (-522)) 27)) (-2024 (((-960) (-202) (-522)) 26)) (-1702 (((-960) (-202) (-522)) 25)) (-1443 (((-960) (-202) (-522)) 24)) (-1694 (((-960) (-154 (-202)) (-522)) 20)))
-(((-696) (-10 -7 (-15 -1694 ((-960) (-154 (-202)) (-522))) (-15 -1443 ((-960) (-202) (-522))) (-15 -1702 ((-960) (-202) (-522))) (-15 -2024 ((-960) (-202) (-522))) (-15 -2585 ((-960) (-202) (-522))) (-15 -1609 ((-960) (-202) (-522))) (-15 -1476 ((-960) (-202) (-202) (-202) (-522))) (-15 -3873 ((-960) (-202) (-522))) (-15 -3561 ((-960) (-202) (-522))) (-15 -4136 ((-960) (-202) (-522))) (-15 -3949 ((-960) (-202) (-522))) (-15 -1730 ((-960) (-202) (-522))) (-15 -1380 ((-960) (-202) (-522))) (-15 -1689 ((-960) (-202) (-522))) (-15 -4116 ((-960) (-202) (-522))) (-15 -2097 ((-960) (-202) (-522))) (-15 -4059 ((-960) (-202) (-522))) (-15 -3039 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -3516 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -1719 ((-960) (-1068) (-154 (-202)) (-1068) (-522))) (-15 -3535 ((-960) (-1068) (-154 (-202)) (-1068) (-522))) (-15 -3198 ((-960) (-522) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -3088 ((-960) (-202) (-522))) (-15 -2195 ((-960) (-202) (-522))) (-15 -1584 ((-960) (-202) (-522))) (-15 -1980 ((-960) (-202) (-522))) (-15 -2099 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -1723 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -3213 ((-960) (-202) (-522))) (-15 -1863 ((-960) (-202) (-522))) (-15 -1283 ((-960) (-202) (-522))) (-15 -1928 ((-960) (-202) (-522))) (-15 -2288 ((-960) (-202) (-522))) (-15 -3188 ((-960) (-202) (-522))) (-15 -3193 ((-960) (-202) (-202) (-522))) (-15 -1792 ((-960) (-202) (-202) (-202) (-522))) (-15 -1430 ((-960) (-202) (-202) (-202) (-522))) (-15 -1255 ((-960) (-202) (-202) (-202) (-202) (-522))))) (T -696))
-((-1255 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1430 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1792 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3193 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3188 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2288 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1928 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1283 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1863 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3213 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1723 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068)) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2099 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068)) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1980 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1584 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2195 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3088 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3198 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-522)) (-5 *5 (-154 (-202))) (-5 *6 (-1068)) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3535 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1068)) (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1719 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1068)) (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3516 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068)) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3039 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068)) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))) (-4059 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2097 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-4116 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1689 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1380 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1730 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3949 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-4136 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3561 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3873 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1476 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1609 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2585 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2024 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1702 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1443 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1694 (*1 *2 *3 *4) (-12 (-5 *3 (-154 (-202))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(-10 -7 (-15 -1694 ((-960) (-154 (-202)) (-522))) (-15 -1443 ((-960) (-202) (-522))) (-15 -1702 ((-960) (-202) (-522))) (-15 -2024 ((-960) (-202) (-522))) (-15 -2585 ((-960) (-202) (-522))) (-15 -1609 ((-960) (-202) (-522))) (-15 -1476 ((-960) (-202) (-202) (-202) (-522))) (-15 -3873 ((-960) (-202) (-522))) (-15 -3561 ((-960) (-202) (-522))) (-15 -4136 ((-960) (-202) (-522))) (-15 -3949 ((-960) (-202) (-522))) (-15 -1730 ((-960) (-202) (-522))) (-15 -1380 ((-960) (-202) (-522))) (-15 -1689 ((-960) (-202) (-522))) (-15 -4116 ((-960) (-202) (-522))) (-15 -2097 ((-960) (-202) (-522))) (-15 -4059 ((-960) (-202) (-522))) (-15 -3039 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -3516 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -1719 ((-960) (-1068) (-154 (-202)) (-1068) (-522))) (-15 -3535 ((-960) (-1068) (-154 (-202)) (-1068) (-522))) (-15 -3198 ((-960) (-522) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -3088 ((-960) (-202) (-522))) (-15 -2195 ((-960) (-202) (-522))) (-15 -1584 ((-960) (-202) (-522))) (-15 -1980 ((-960) (-202) (-522))) (-15 -2099 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -1723 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -3213 ((-960) (-202) (-522))) (-15 -1863 ((-960) (-202) (-522))) (-15 -1283 ((-960) (-202) (-522))) (-15 -1928 ((-960) (-202) (-522))) (-15 -2288 ((-960) (-202) (-522))) (-15 -3188 ((-960) (-202) (-522))) (-15 -3193 ((-960) (-202) (-202) (-522))) (-15 -1792 ((-960) (-202) (-202) (-202) (-522))) (-15 -1430 ((-960) (-202) (-202) (-202) (-522))) (-15 -1255 ((-960) (-202) (-202) (-202) (-202) (-522))))
-((-2978 (((-1171)) 18)) (-2673 (((-1068)) 22)) (-2023 (((-1068)) 21)) (-2832 (((-1018) (-1085) (-628 (-522))) 35) (((-1018) (-1085) (-628 (-202))) 31)) (-1600 (((-108)) 16)) (-4127 (((-1068) (-1068)) 25)))
-(((-697) (-10 -7 (-15 -2023 ((-1068))) (-15 -2673 ((-1068))) (-15 -4127 ((-1068) (-1068))) (-15 -2832 ((-1018) (-1085) (-628 (-202)))) (-15 -2832 ((-1018) (-1085) (-628 (-522)))) (-15 -1600 ((-108))) (-15 -2978 ((-1171))))) (T -697))
-((-2978 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-697)))) (-1600 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-697)))) (-2832 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-628 (-522))) (-5 *2 (-1018)) (-5 *1 (-697)))) (-2832 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-628 (-202))) (-5 *2 (-1018)) (-5 *1 (-697)))) (-4127 (*1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-697)))) (-2673 (*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-697)))) (-2023 (*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-697)))))
-(-10 -7 (-15 -2023 ((-1068))) (-15 -2673 ((-1068))) (-15 -4127 ((-1068) (-1068))) (-15 -2832 ((-1018) (-1085) (-628 (-202)))) (-15 -2832 ((-1018) (-1085) (-628 (-522)))) (-15 -1600 ((-108))) (-15 -2978 ((-1171))))
-((-1288 (($ $ $) 10)) (-3610 (($ $ $ $) 9)) (-3024 (($ $ $) 12)))
-(((-698 |#1|) (-10 -8 (-15 -3024 (|#1| |#1| |#1|)) (-15 -1288 (|#1| |#1| |#1|)) (-15 -3610 (|#1| |#1| |#1| |#1|))) (-699)) (T -698))
-NIL
-(-10 -8 (-15 -3024 (|#1| |#1| |#1|)) (-15 -1288 (|#1| |#1| |#1|)) (-15 -3610 (|#1| |#1| |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-1679 (($ $ (-850)) 28)) (-3277 (($ $ (-850)) 29)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-1288 (($ $ $) 25)) (-2190 (((-792) $) 11)) (-3610 (($ $ $ $) 26)) (-3024 (($ $ $) 24)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 30)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 27)))
+((-4086 (((-960) (-628 (-202)) (-522) (-108) (-522)) 24)) (-2127 (((-960) (-628 (-202)) (-522) (-108) (-522)) 23)))
+(((-683) (-10 -7 (-15 -2127 ((-960) (-628 (-202)) (-522) (-108) (-522))) (-15 -4086 ((-960) (-628 (-202)) (-522) (-108) (-522))))) (T -683))
+((-4086 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-108)) (-5 *2 (-960)) (-5 *1 (-683)))) (-2127 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-108)) (-5 *2 (-960)) (-5 *1 (-683)))))
+(-10 -7 (-15 -2127 ((-960) (-628 (-202)) (-522) (-108) (-522))) (-15 -4086 ((-960) (-628 (-202)) (-522) (-108) (-522))))
+((-3458 (((-960) (-522) (-522) (-522) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-72 FCN)))) 43)) (-1617 (((-960) (-522) (-522) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-79 FCN)))) 39)) (-3805 (((-960) (-202) (-202) (-202) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) 32)))
+(((-684) (-10 -7 (-15 -3805 ((-960) (-202) (-202) (-202) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102))))) (-15 -1617 ((-960) (-522) (-522) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-79 FCN))))) (-15 -3458 ((-960) (-522) (-522) (-522) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-72 FCN))))))) (T -684))
+((-3458 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-72 FCN)))) (-5 *2 (-960)) (-5 *1 (-684)))) (-1617 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-79 FCN)))) (-5 *2 (-960)) (-5 *1 (-684)))) (-3805 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) (-5 *2 (-960)) (-5 *1 (-684)))))
+(-10 -7 (-15 -3805 ((-960) (-202) (-202) (-202) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102))))) (-15 -1617 ((-960) (-522) (-522) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-79 FCN))))) (-15 -3458 ((-960) (-522) (-522) (-522) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-72 FCN))))))
+((-2020 (((-960) (-522) (-522) (-628 (-202)) (-522)) 33)) (-3754 (((-960) (-522) (-522) (-628 (-202)) (-522)) 32)) (-3319 (((-960) (-522) (-628 (-202)) (-522)) 31)) (-2141 (((-960) (-522) (-628 (-202)) (-522)) 30)) (-3447 (((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 29)) (-2301 (((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 28)) (-3777 (((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-522)) 27)) (-2617 (((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-522)) 26)) (-3907 (((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 23)) (-4156 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-522)) 22)) (-2225 (((-960) (-522) (-628 (-202)) (-522)) 21)) (-2385 (((-960) (-522) (-628 (-202)) (-522)) 20)))
+(((-685) (-10 -7 (-15 -2385 ((-960) (-522) (-628 (-202)) (-522))) (-15 -2225 ((-960) (-522) (-628 (-202)) (-522))) (-15 -4156 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3907 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2617 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3777 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2301 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3447 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2141 ((-960) (-522) (-628 (-202)) (-522))) (-15 -3319 ((-960) (-522) (-628 (-202)) (-522))) (-15 -3754 ((-960) (-522) (-522) (-628 (-202)) (-522))) (-15 -2020 ((-960) (-522) (-522) (-628 (-202)) (-522))))) (T -685))
+((-2020 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-3754 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-3319 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-2141 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-3447 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-2301 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-3777 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-2617 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-3907 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-4156 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-2225 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))) (-2385 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-685)))))
+(-10 -7 (-15 -2385 ((-960) (-522) (-628 (-202)) (-522))) (-15 -2225 ((-960) (-522) (-628 (-202)) (-522))) (-15 -4156 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3907 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2617 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3777 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2301 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3447 ((-960) (-522) (-522) (-1068) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2141 ((-960) (-522) (-628 (-202)) (-522))) (-15 -3319 ((-960) (-522) (-628 (-202)) (-522))) (-15 -3754 ((-960) (-522) (-522) (-628 (-202)) (-522))) (-15 -2020 ((-960) (-522) (-522) (-628 (-202)) (-522))))
+((-1293 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-202) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN)))) 52)) (-2955 (((-960) (-628 (-202)) (-628 (-202)) (-522) (-522)) 51)) (-3252 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN)))) 50)) (-3908 (((-960) (-202) (-202) (-522) (-522) (-522) (-522)) 46)) (-2783 (((-960) (-202) (-202) (-522) (-202) (-522) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) 45)) (-4182 (((-960) (-202) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) 44)) (-1450 (((-960) (-202) (-202) (-202) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) 43)) (-2793 (((-960) (-202) (-202) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) 42)) (-3569 (((-960) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) 38)) (-1599 (((-960) (-202) (-202) (-522) (-628 (-202)) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) 37)) (-2363 (((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) 33)) (-3951 (((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) 32)))
+(((-686) (-10 -7 (-15 -3951 ((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102))))) (-15 -2363 ((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102))))) (-15 -1599 ((-960) (-202) (-202) (-522) (-628 (-202)) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102))))) (-15 -3569 ((-960) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102))))) (-15 -2793 ((-960) (-202) (-202) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -1450 ((-960) (-202) (-202) (-202) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -4182 ((-960) (-202) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -2783 ((-960) (-202) (-202) (-522) (-202) (-522) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -3908 ((-960) (-202) (-202) (-522) (-522) (-522) (-522))) (-15 -3252 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN))))) (-15 -2955 ((-960) (-628 (-202)) (-628 (-202)) (-522) (-522))) (-15 -1293 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-202) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN))))))) (T -686))
+((-1293 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-2955 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-686)))) (-3252 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-3908 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-686)))) (-2783 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-4182 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-1450 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-2793 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-3569 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-1599 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-686)))) (-2363 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) (-5 *2 (-960)) (-5 *1 (-686)))) (-3951 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) (-5 *2 (-960)) (-5 *1 (-686)))))
+(-10 -7 (-15 -3951 ((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102))))) (-15 -2363 ((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102))))) (-15 -1599 ((-960) (-202) (-202) (-522) (-628 (-202)) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102))))) (-15 -3569 ((-960) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102))))) (-15 -2793 ((-960) (-202) (-202) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -1450 ((-960) (-202) (-202) (-202) (-202) (-522) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -4182 ((-960) (-202) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -2783 ((-960) (-202) (-202) (-522) (-202) (-522) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G))))) (-15 -3908 ((-960) (-202) (-202) (-522) (-522) (-522) (-522))) (-15 -3252 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-202) (-522) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN))))) (-15 -2955 ((-960) (-628 (-202)) (-628 (-202)) (-522) (-522))) (-15 -1293 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-202) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN))))))
+((-3988 (((-960) (-522) (-522) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-73 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-363)) (|:| |fp| (-74 G JACOBG JACGEP)))) 76)) (-3065 (((-960) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))) (-363) (-363)) 69) (((-960) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL)))) 68)) (-2987 (((-960) (-202) (-202) (-522) (-202) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-82 FCNF))) (-3 (|:| |fn| (-363)) (|:| |fp| (-83 FCNG)))) 57)) (-1294 (((-960) (-628 (-202)) (-628 (-202)) (-522) (-202) (-202) (-202) (-522) (-522) (-522) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) 50)) (-1346 (((-960) (-202) (-522) (-522) (-1068) (-522) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-69 PEDERV))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT)))) 49)) (-3442 (((-960) (-202) (-522) (-522) (-202) (-1068) (-202) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT)))) 45)) (-3488 (((-960) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) 42)) (-2758 (((-960) (-202) (-522) (-522) (-522) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT)))) 38)))
+(((-687) (-10 -7 (-15 -2758 ((-960) (-202) (-522) (-522) (-522) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))) (-15 -3488 ((-960) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))) (-15 -3442 ((-960) (-202) (-522) (-522) (-202) (-1068) (-202) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))) (-15 -1346 ((-960) (-202) (-522) (-522) (-1068) (-522) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-69 PEDERV))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))) (-15 -1294 ((-960) (-628 (-202)) (-628 (-202)) (-522) (-202) (-202) (-202) (-522) (-522) (-522) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))) (-15 -2987 ((-960) (-202) (-202) (-522) (-202) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-82 FCNF))) (-3 (|:| |fn| (-363)) (|:| |fp| (-83 FCNG))))) (-15 -3065 ((-960) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))))) (-15 -3065 ((-960) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))) (-363) (-363))) (-15 -3988 ((-960) (-522) (-522) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-73 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-363)) (|:| |fp| (-74 G JACOBG JACGEP))))))) (T -687))
+((-3988 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-73 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-74 G JACOBG JACGEP)))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))) (-3065 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL)))) (-5 *8 (-363)) (-5 *2 (-960)) (-5 *1 (-687)))) (-3065 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL)))) (-5 *2 (-960)) (-5 *1 (-687)))) (-2987 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-82 FCNF)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-83 FCNG)))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))) (-1294 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-202)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *2 (-960)) (-5 *1 (-687)))) (-1346 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-522)) (-5 *5 (-1068)) (-5 *6 (-628 (-202))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G)))) (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *9 (-3 (|:| |fn| (-363)) (|:| |fp| (-69 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT)))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))) (-3442 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-522)) (-5 *5 (-1068)) (-5 *6 (-628 (-202))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G)))) (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *9 (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT)))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))) (-3488 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))) (-2758 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT)))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))))
+(-10 -7 (-15 -2758 ((-960) (-202) (-522) (-522) (-522) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))) (-15 -3488 ((-960) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))) (-15 -3442 ((-960) (-202) (-522) (-522) (-202) (-1068) (-202) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))) (-15 -1346 ((-960) (-202) (-522) (-522) (-1068) (-522) (-202) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-69 PEDERV))) (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))) (-15 -1294 ((-960) (-628 (-202)) (-628 (-202)) (-522) (-202) (-202) (-202) (-522) (-522) (-522) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))) (-15 -2987 ((-960) (-202) (-202) (-522) (-202) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-82 FCNF))) (-3 (|:| |fn| (-363)) (|:| |fp| (-83 FCNG))))) (-15 -3065 ((-960) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))))) (-15 -3065 ((-960) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))) (-363) (-363))) (-15 -3988 ((-960) (-522) (-522) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-73 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-363)) (|:| |fp| (-74 G JACOBG JACGEP))))))
+((-2092 (((-960) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-616 (-202)) (-522)) 45)) (-2939 (((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-1068) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-80 PDEF))) (-3 (|:| |fn| (-363)) (|:| |fp| (-81 BNDY)))) 41)) (-3219 (((-960) (-522) (-522) (-522) (-522) (-202) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 23)))
+(((-688) (-10 -7 (-15 -3219 ((-960) (-522) (-522) (-522) (-522) (-202) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2939 ((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-1068) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-80 PDEF))) (-3 (|:| |fn| (-363)) (|:| |fp| (-81 BNDY))))) (-15 -2092 ((-960) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-616 (-202)) (-522))))) (T -688))
+((-2092 (*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 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-616 (-202))) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-688)))) (-2939 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-1068)) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-80 PDEF)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-81 BNDY)))) (-5 *2 (-960)) (-5 *1 (-688)))) (-3219 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-688)))))
+(-10 -7 (-15 -3219 ((-960) (-522) (-522) (-522) (-522) (-202) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2939 ((-960) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-1068) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-80 PDEF))) (-3 (|:| |fn| (-363)) (|:| |fp| (-81 BNDY))))) (-15 -2092 ((-960) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-616 (-202)) (-522))))
+((-2632 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-628 (-202)) (-202) (-202) (-522)) 35)) (-3265 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-202) (-202) (-522)) 34)) (-3554 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-628 (-202)) (-202) (-202) (-522)) 33)) (-4110 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 29)) (-4023 (((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 28)) (-3226 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522)) 27)) (-3945 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-522)) 23)) (-3732 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-522)) 22)) (-2281 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-522)) 21)) (-1203 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522)) 20)))
+(((-689) (-10 -7 (-15 -1203 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522))) (-15 -2281 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3732 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -3945 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -3226 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522))) (-15 -4023 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -4110 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3554 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-628 (-202)) (-202) (-202) (-522))) (-15 -3265 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-202) (-202) (-522))) (-15 -2632 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-628 (-202)) (-202) (-202) (-522))))) (T -689))
+((-2632 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *2 (-960)) (-5 *1 (-689)))) (-3265 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *2 (-960)) (-5 *1 (-689)))) (-3554 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *6 (-202)) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-689)))) (-4110 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-689)))) (-4023 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-689)))) (-3226 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *2 (-960)) (-5 *1 (-689)))) (-3945 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-689)))) (-3732 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-689)))) (-2281 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-689)))) (-1203 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-689)))))
+(-10 -7 (-15 -1203 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522))) (-15 -2281 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3732 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -3945 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -3226 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-202) (-522))) (-15 -4023 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -4110 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3554 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-628 (-202)) (-202) (-202) (-522))) (-15 -3265 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-202) (-202) (-522))) (-15 -2632 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-628 (-202)) (-202) (-202) (-522))))
+((-2721 (((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522)) 45)) (-2535 (((-960) (-522) (-522) (-522) (-202) (-628 (-202)) (-628 (-202)) (-522)) 44)) (-2761 (((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522)) 43)) (-1989 (((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 42)) (-1607 (((-960) (-1068) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522)) 41)) (-2076 (((-960) (-1068) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522)) 40)) (-3348 (((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522) (-522) (-522) (-202) (-628 (-202)) (-522)) 39)) (-1376 (((-960) (-1068) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-522))) 38)) (-3383 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-522)) 35)) (-3462 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522)) 34)) (-1539 (((-960) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522)) 33)) (-3790 (((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 32)) (-2216 (((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-202) (-522)) 31)) (-3177 (((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-522)) 30)) (-3490 (((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-522) (-522) (-522)) 29)) (-1284 (((-960) (-522) (-522) (-522) (-202) (-202) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522) (-628 (-522)) (-522) (-522) (-522)) 28)) (-2677 (((-960) (-522) (-628 (-202)) (-202) (-522)) 24)) (-2386 (((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 20)))
+(((-690) (-10 -7 (-15 -2386 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2677 ((-960) (-522) (-628 (-202)) (-202) (-522))) (-15 -1284 ((-960) (-522) (-522) (-522) (-202) (-202) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522) (-628 (-522)) (-522) (-522) (-522))) (-15 -3490 ((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-522) (-522) (-522))) (-15 -3177 ((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-522))) (-15 -2216 ((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-202) (-522))) (-15 -3790 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1539 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522))) (-15 -3462 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522))) (-15 -3383 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1376 ((-960) (-1068) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-522)))) (-15 -3348 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522) (-522) (-522) (-202) (-628 (-202)) (-522))) (-15 -2076 ((-960) (-1068) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522))) (-15 -1607 ((-960) (-1068) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1989 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2761 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522))) (-15 -2535 ((-960) (-522) (-522) (-522) (-202) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2721 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522))))) (T -690))
+((-2721 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-690)))) (-2535 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-2761 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-690)))) (-1989 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-690)))) (-1607 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-2076 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1068)) (-5 *5 (-628 (-202))) (-5 *6 (-202)) (-5 *7 (-628 (-522))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-690)))) (-3348 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *6 (-202)) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-690)))) (-1376 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1068)) (-5 *5 (-628 (-202))) (-5 *6 (-202)) (-5 *7 (-628 (-522))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-690)))) (-3383 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-690)))) (-3462 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-1539 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-3790 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-690)))) (-2216 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-3177 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-3490 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-1284 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-628 (-202))) (-5 *6 (-628 (-522))) (-5 *3 (-522)) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-2677 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))) (-2386 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-690)))))
+(-10 -7 (-15 -2386 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2677 ((-960) (-522) (-628 (-202)) (-202) (-522))) (-15 -1284 ((-960) (-522) (-522) (-522) (-202) (-202) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522) (-628 (-522)) (-522) (-522) (-522))) (-15 -3490 ((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-522) (-522) (-522))) (-15 -3177 ((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-202) (-522) (-522) (-522))) (-15 -2216 ((-960) (-522) (-202) (-202) (-628 (-202)) (-522) (-522) (-202) (-522))) (-15 -3790 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1539 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522))) (-15 -3462 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522))) (-15 -3383 ((-960) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1376 ((-960) (-1068) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-522)))) (-15 -3348 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522) (-522) (-522) (-202) (-628 (-202)) (-522))) (-15 -2076 ((-960) (-1068) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522))) (-15 -1607 ((-960) (-1068) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1989 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2761 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522))) (-15 -2535 ((-960) (-522) (-522) (-522) (-202) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2721 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522) (-628 (-202)) (-628 (-202)) (-522) (-522) (-522))))
+((-1241 (((-960) (-522) (-522) (-522) (-202) (-628 (-202)) (-522) (-628 (-202)) (-522)) 63)) (-3290 (((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-108) (-202) (-522) (-202) (-202) (-108) (-202) (-202) (-202) (-202) (-108) (-522) (-522) (-522) (-522) (-522) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-522)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-78 CONFUN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN)))) 62)) (-1585 (((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-202) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-108) (-108) (-108) (-522) (-522) (-628 (-202)) (-628 (-522)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-63 QPHESS)))) 58)) (-3625 (((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-108) (-522) (-522) (-628 (-202)) (-522)) 51)) (-3969 (((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-64 FUNCT1)))) 50)) (-2319 (((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-61 LSFUN2)))) 46)) (-3870 (((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-77 LSFUN1)))) 42)) (-3388 (((-960) (-522) (-202) (-202) (-522) (-202) (-108) (-202) (-202) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN)))) 38)))
+(((-691) (-10 -7 (-15 -3388 ((-960) (-522) (-202) (-202) (-522) (-202) (-108) (-202) (-202) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN))))) (-15 -3870 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-77 LSFUN1))))) (-15 -2319 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-61 LSFUN2))))) (-15 -3969 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-64 FUNCT1))))) (-15 -3625 ((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-108) (-522) (-522) (-628 (-202)) (-522))) (-15 -1585 ((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-202) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-108) (-108) (-108) (-522) (-522) (-628 (-202)) (-628 (-522)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-63 QPHESS))))) (-15 -3290 ((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-108) (-202) (-522) (-202) (-202) (-108) (-202) (-202) (-202) (-202) (-108) (-522) (-522) (-522) (-522) (-522) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-522)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-78 CONFUN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN))))) (-15 -1241 ((-960) (-522) (-522) (-522) (-202) (-628 (-202)) (-522) (-628 (-202)) (-522))))) (T -691))
+((-1241 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-691)))) (-3290 (*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 (-628 (-202))) (-5 *5 (-108)) (-5 *6 (-202)) (-5 *7 (-628 (-522))) (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-78 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN)))) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-691)))) (-1585 (*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 (-628 (-202))) (-5 *6 (-108)) (-5 *7 (-628 (-522))) (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-63 QPHESS)))) (-5 *3 (-522)) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-691)))) (-3625 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-108)) (-5 *2 (-960)) (-5 *1 (-691)))) (-3969 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-64 FUNCT1)))) (-5 *2 (-960)) (-5 *1 (-691)))) (-2319 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-61 LSFUN2)))) (-5 *2 (-960)) (-5 *1 (-691)))) (-3870 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-77 LSFUN1)))) (-5 *2 (-960)) (-5 *1 (-691)))) (-3388 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-522)) (-5 *5 (-108)) (-5 *6 (-628 (-202))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN)))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-691)))))
+(-10 -7 (-15 -3388 ((-960) (-522) (-202) (-202) (-522) (-202) (-108) (-202) (-202) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN))))) (-15 -3870 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-77 LSFUN1))))) (-15 -2319 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-61 LSFUN2))))) (-15 -3969 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-64 FUNCT1))))) (-15 -3625 ((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-108) (-522) (-522) (-628 (-202)) (-522))) (-15 -1585 ((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-202) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-108) (-108) (-108) (-522) (-522) (-628 (-202)) (-628 (-522)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-63 QPHESS))))) (-15 -3290 ((-960) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-522) (-108) (-202) (-522) (-202) (-202) (-108) (-202) (-202) (-202) (-202) (-108) (-522) (-522) (-522) (-522) (-522) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-522) (-628 (-522)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-78 CONFUN))) (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN))))) (-15 -1241 ((-960) (-522) (-522) (-522) (-202) (-628 (-202)) (-522) (-628 (-202)) (-522))))
+((-3079 (((-960) (-1068) (-522) (-522) (-522) (-522) (-628 (-154 (-202))) (-628 (-154 (-202))) (-522)) 46)) (-2224 (((-960) (-1068) (-1068) (-522) (-522) (-628 (-154 (-202))) (-522) (-628 (-154 (-202))) (-522) (-522) (-628 (-154 (-202))) (-522)) 45)) (-2522 (((-960) (-522) (-522) (-522) (-628 (-154 (-202))) (-522)) 44)) (-3964 (((-960) (-1068) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 40)) (-3975 (((-960) (-1068) (-1068) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-628 (-202)) (-522)) 39)) (-3010 (((-960) (-522) (-522) (-522) (-628 (-202)) (-522)) 36)) (-4212 (((-960) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522)) 35)) (-1769 (((-960) (-522) (-522) (-522) (-522) (-588 (-108)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-202) (-202) (-522)) 34)) (-2666 (((-960) (-522) (-522) (-522) (-628 (-522)) (-628 (-522)) (-628 (-522)) (-628 (-522)) (-108) (-202) (-108) (-628 (-522)) (-628 (-202)) (-522)) 33)) (-2692 (((-960) (-522) (-522) (-522) (-522) (-202) (-108) (-108) (-588 (-108)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-522)) 32)))
+(((-692) (-10 -7 (-15 -2692 ((-960) (-522) (-522) (-522) (-522) (-202) (-108) (-108) (-588 (-108)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-522))) (-15 -2666 ((-960) (-522) (-522) (-522) (-628 (-522)) (-628 (-522)) (-628 (-522)) (-628 (-522)) (-108) (-202) (-108) (-628 (-522)) (-628 (-202)) (-522))) (-15 -1769 ((-960) (-522) (-522) (-522) (-522) (-588 (-108)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-202) (-202) (-522))) (-15 -4212 ((-960) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522))) (-15 -3010 ((-960) (-522) (-522) (-522) (-628 (-202)) (-522))) (-15 -3975 ((-960) (-1068) (-1068) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-628 (-202)) (-522))) (-15 -3964 ((-960) (-1068) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2522 ((-960) (-522) (-522) (-522) (-628 (-154 (-202))) (-522))) (-15 -2224 ((-960) (-1068) (-1068) (-522) (-522) (-628 (-154 (-202))) (-522) (-628 (-154 (-202))) (-522) (-522) (-628 (-154 (-202))) (-522))) (-15 -3079 ((-960) (-1068) (-522) (-522) (-522) (-522) (-628 (-154 (-202))) (-628 (-154 (-202))) (-522))))) (T -692))
+((-3079 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-154 (-202)))) (-5 *2 (-960)) (-5 *1 (-692)))) (-2224 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-154 (-202)))) (-5 *2 (-960)) (-5 *1 (-692)))) (-2522 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-154 (-202)))) (-5 *2 (-960)) (-5 *1 (-692)))) (-3964 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-692)))) (-3975 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-692)))) (-3010 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-692)))) (-4212 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-692)))) (-1769 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-588 (-108))) (-5 *5 (-628 (-202))) (-5 *6 (-628 (-522))) (-5 *7 (-202)) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-692)))) (-2666 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-628 (-522))) (-5 *5 (-108)) (-5 *7 (-628 (-202))) (-5 *3 (-522)) (-5 *6 (-202)) (-5 *2 (-960)) (-5 *1 (-692)))) (-2692 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-588 (-108))) (-5 *7 (-628 (-202))) (-5 *8 (-628 (-522))) (-5 *3 (-522)) (-5 *4 (-202)) (-5 *5 (-108)) (-5 *2 (-960)) (-5 *1 (-692)))))
+(-10 -7 (-15 -2692 ((-960) (-522) (-522) (-522) (-522) (-202) (-108) (-108) (-588 (-108)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-522))) (-15 -2666 ((-960) (-522) (-522) (-522) (-628 (-522)) (-628 (-522)) (-628 (-522)) (-628 (-522)) (-108) (-202) (-108) (-628 (-522)) (-628 (-202)) (-522))) (-15 -1769 ((-960) (-522) (-522) (-522) (-522) (-588 (-108)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-202) (-202) (-522))) (-15 -4212 ((-960) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522))) (-15 -3010 ((-960) (-522) (-522) (-522) (-628 (-202)) (-522))) (-15 -3975 ((-960) (-1068) (-1068) (-522) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-628 (-202)) (-522))) (-15 -3964 ((-960) (-1068) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2522 ((-960) (-522) (-522) (-522) (-628 (-154 (-202))) (-522))) (-15 -2224 ((-960) (-1068) (-1068) (-522) (-522) (-628 (-154 (-202))) (-522) (-628 (-154 (-202))) (-522) (-522) (-628 (-154 (-202))) (-522))) (-15 -3079 ((-960) (-1068) (-522) (-522) (-522) (-522) (-628 (-154 (-202))) (-628 (-154 (-202))) (-522))))
+((-3086 (((-960) (-522) (-522) (-522) (-522) (-522) (-108) (-522) (-108) (-522) (-628 (-154 (-202))) (-628 (-154 (-202))) (-522)) 64)) (-3027 (((-960) (-522) (-522) (-522) (-522) (-522) (-108) (-522) (-108) (-522) (-628 (-202)) (-628 (-202)) (-522)) 60)) (-1676 (((-960) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE))) (-363)) 56) (((-960) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE)))) 55)) (-2559 (((-960) (-522) (-522) (-522) (-202) (-108) (-522) (-628 (-202)) (-628 (-202)) (-522)) 37)) (-3390 (((-960) (-522) (-522) (-202) (-202) (-522) (-522) (-628 (-202)) (-522)) 33)) (-1351 (((-960) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-522) (-522) (-522)) 29)) (-3231 (((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 28)) (-1753 (((-960) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 27)) (-3382 (((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 26)) (-3555 (((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522)) 25)) (-2452 (((-960) (-522) (-522) (-628 (-202)) (-522)) 24)) (-3315 (((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 23)) (-2975 (((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522)) 22)) (-4167 (((-960) (-628 (-202)) (-522) (-522) (-522) (-522)) 21)) (-2018 (((-960) (-522) (-522) (-628 (-202)) (-522)) 20)))
+(((-693) (-10 -7 (-15 -2018 ((-960) (-522) (-522) (-628 (-202)) (-522))) (-15 -4167 ((-960) (-628 (-202)) (-522) (-522) (-522) (-522))) (-15 -2975 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3315 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2452 ((-960) (-522) (-522) (-628 (-202)) (-522))) (-15 -3555 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522))) (-15 -3382 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1753 ((-960) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3231 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1351 ((-960) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-522) (-522) (-522))) (-15 -3390 ((-960) (-522) (-522) (-202) (-202) (-522) (-522) (-628 (-202)) (-522))) (-15 -2559 ((-960) (-522) (-522) (-522) (-202) (-108) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1676 ((-960) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE))))) (-15 -1676 ((-960) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE))) (-363))) (-15 -3027 ((-960) (-522) (-522) (-522) (-522) (-522) (-108) (-522) (-108) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3086 ((-960) (-522) (-522) (-522) (-522) (-522) (-108) (-522) (-108) (-522) (-628 (-154 (-202))) (-628 (-154 (-202))) (-522))))) (T -693))
+((-3086 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-108)) (-5 *5 (-628 (-154 (-202)))) (-5 *2 (-960)) (-5 *1 (-693)))) (-3027 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *4 (-108)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-1676 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE)))) (-5 *8 (-363)) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-693)))) (-1676 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT)))) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE)))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-693)))) (-2559 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-522)) (-5 *5 (-108)) (-5 *6 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-693)))) (-3390 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-693)))) (-1351 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-693)))) (-3231 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-1753 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-3382 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-3555 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-2452 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-3315 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-2975 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))) (-4167 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-693)))) (-2018 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-693)))))
+(-10 -7 (-15 -2018 ((-960) (-522) (-522) (-628 (-202)) (-522))) (-15 -4167 ((-960) (-628 (-202)) (-522) (-522) (-522) (-522))) (-15 -2975 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3315 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2452 ((-960) (-522) (-522) (-628 (-202)) (-522))) (-15 -3555 ((-960) (-522) (-522) (-522) (-522) (-628 (-202)) (-522))) (-15 -3382 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1753 ((-960) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3231 ((-960) (-522) (-522) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1351 ((-960) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-522) (-522) (-522))) (-15 -3390 ((-960) (-522) (-522) (-202) (-202) (-522) (-522) (-628 (-202)) (-522))) (-15 -2559 ((-960) (-522) (-522) (-522) (-202) (-108) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -1676 ((-960) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE))))) (-15 -1676 ((-960) (-522) (-522) (-202) (-522) (-522) (-522) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE))) (-363))) (-15 -3027 ((-960) (-522) (-522) (-522) (-522) (-522) (-108) (-522) (-108) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -3086 ((-960) (-522) (-522) (-522) (-522) (-522) (-108) (-522) (-108) (-522) (-628 (-154 (-202))) (-628 (-154 (-202))) (-522))))
+((-2302 (((-960) (-522) (-522) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-68 APROD)))) 60)) (-1467 (((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-522)) (-522) (-628 (-202)) (-522) (-522) (-522) (-522)) 56)) (-2523 (((-960) (-522) (-628 (-202)) (-108) (-202) (-522) (-522) (-522) (-522) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 APROD))) (-3 (|:| |fn| (-363)) (|:| |fp| (-71 MSOLVE)))) 55)) (-4133 (((-960) (-522) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522) (-628 (-522)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522)) 36)) (-2447 (((-960) (-522) (-522) (-522) (-202) (-522) (-628 (-202)) (-628 (-202)) (-522)) 35)) (-2474 (((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522)) 31)) (-1385 (((-960) (-522) (-628 (-202)) (-522) (-628 (-522)) (-628 (-522)) (-522) (-628 (-522)) (-628 (-202))) 30)) (-1879 (((-960) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-522)) 26)) (-3682 (((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522)) 25)) (-2823 (((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522)) 24)) (-1564 (((-960) (-522) (-628 (-154 (-202))) (-522) (-522) (-522) (-522) (-628 (-154 (-202))) (-522)) 20)))
+(((-694) (-10 -7 (-15 -1564 ((-960) (-522) (-628 (-154 (-202))) (-522) (-522) (-522) (-522) (-628 (-154 (-202))) (-522))) (-15 -2823 ((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -3682 ((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -1879 ((-960) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-522))) (-15 -1385 ((-960) (-522) (-628 (-202)) (-522) (-628 (-522)) (-628 (-522)) (-522) (-628 (-522)) (-628 (-202)))) (-15 -2474 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2447 ((-960) (-522) (-522) (-522) (-202) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -4133 ((-960) (-522) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522) (-628 (-522)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522))) (-15 -2523 ((-960) (-522) (-628 (-202)) (-108) (-202) (-522) (-522) (-522) (-522) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 APROD))) (-3 (|:| |fn| (-363)) (|:| |fp| (-71 MSOLVE))))) (-15 -1467 ((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-522)) (-522) (-628 (-202)) (-522) (-522) (-522) (-522))) (-15 -2302 ((-960) (-522) (-522) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-68 APROD))))))) (T -694))
+((-2302 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-68 APROD)))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-694)))) (-1467 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-694)))) (-2523 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-108)) (-5 *6 (-202)) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-66 APROD)))) (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-71 MSOLVE)))) (-5 *2 (-960)) (-5 *1 (-694)))) (-4133 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-694)))) (-2447 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-694)))) (-2474 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-694)))) (-1385 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-694)))) (-1879 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-694)))) (-3682 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-694)))) (-2823 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-694)))) (-1564 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-154 (-202)))) (-5 *2 (-960)) (-5 *1 (-694)))))
+(-10 -7 (-15 -1564 ((-960) (-522) (-628 (-154 (-202))) (-522) (-522) (-522) (-522) (-628 (-154 (-202))) (-522))) (-15 -2823 ((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -3682 ((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-522))) (-15 -1879 ((-960) (-628 (-202)) (-522) (-628 (-202)) (-522) (-522) (-522))) (-15 -1385 ((-960) (-522) (-628 (-202)) (-522) (-628 (-522)) (-628 (-522)) (-522) (-628 (-522)) (-628 (-202)))) (-15 -2474 ((-960) (-522) (-522) (-628 (-202)) (-628 (-202)) (-628 (-202)) (-522))) (-15 -2447 ((-960) (-522) (-522) (-522) (-202) (-522) (-628 (-202)) (-628 (-202)) (-522))) (-15 -4133 ((-960) (-522) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522) (-628 (-522)) (-628 (-202)) (-628 (-522)) (-628 (-522)) (-628 (-202)) (-628 (-202)) (-628 (-522)) (-522))) (-15 -2523 ((-960) (-522) (-628 (-202)) (-108) (-202) (-522) (-522) (-522) (-522) (-202) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-66 APROD))) (-3 (|:| |fn| (-363)) (|:| |fp| (-71 MSOLVE))))) (-15 -1467 ((-960) (-522) (-628 (-202)) (-522) (-628 (-202)) (-628 (-522)) (-522) (-628 (-202)) (-522) (-522) (-522) (-522))) (-15 -2302 ((-960) (-522) (-522) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-628 (-202)) (-522) (-3 (|:| |fn| (-363)) (|:| |fp| (-68 APROD))))))
+((-1435 (((-960) (-1068) (-522) (-522) (-628 (-202)) (-522) (-522) (-628 (-202))) 28)) (-3638 (((-960) (-1068) (-522) (-522) (-628 (-202))) 27)) (-4001 (((-960) (-1068) (-522) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522) (-628 (-202))) 26)) (-1659 (((-960) (-522) (-522) (-522) (-628 (-202))) 20)))
+(((-695) (-10 -7 (-15 -1659 ((-960) (-522) (-522) (-522) (-628 (-202)))) (-15 -4001 ((-960) (-1068) (-522) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522) (-628 (-202)))) (-15 -3638 ((-960) (-1068) (-522) (-522) (-628 (-202)))) (-15 -1435 ((-960) (-1068) (-522) (-522) (-628 (-202)) (-522) (-522) (-628 (-202)))))) (T -695))
+((-1435 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-695)))) (-3638 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-695)))) (-4001 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1068)) (-5 *5 (-628 (-202))) (-5 *6 (-628 (-522))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-695)))) (-1659 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960)) (-5 *1 (-695)))))
+(-10 -7 (-15 -1659 ((-960) (-522) (-522) (-522) (-628 (-202)))) (-15 -4001 ((-960) (-1068) (-522) (-522) (-628 (-202)) (-522) (-628 (-522)) (-522) (-628 (-202)))) (-15 -3638 ((-960) (-1068) (-522) (-522) (-628 (-202)))) (-15 -1435 ((-960) (-1068) (-522) (-522) (-628 (-202)) (-522) (-522) (-628 (-202)))))
+((-2517 (((-960) (-202) (-202) (-202) (-202) (-522)) 62)) (-2332 (((-960) (-202) (-202) (-202) (-522)) 61)) (-3720 (((-960) (-202) (-202) (-202) (-522)) 60)) (-2347 (((-960) (-202) (-202) (-522)) 59)) (-2275 (((-960) (-202) (-522)) 58)) (-2467 (((-960) (-202) (-522)) 57)) (-1383 (((-960) (-202) (-522)) 56)) (-1550 (((-960) (-202) (-522)) 55)) (-2663 (((-960) (-202) (-522)) 54)) (-2571 (((-960) (-202) (-522)) 53)) (-1277 (((-960) (-202) (-154 (-202)) (-522) (-1068) (-522)) 52)) (-1259 (((-960) (-202) (-154 (-202)) (-522) (-1068) (-522)) 51)) (-3152 (((-960) (-202) (-522)) 50)) (-3671 (((-960) (-202) (-522)) 49)) (-2238 (((-960) (-202) (-522)) 48)) (-3773 (((-960) (-202) (-522)) 47)) (-2407 (((-960) (-522) (-202) (-154 (-202)) (-522) (-1068) (-522)) 46)) (-2785 (((-960) (-1068) (-154 (-202)) (-1068) (-522)) 45)) (-1234 (((-960) (-1068) (-154 (-202)) (-1068) (-522)) 44)) (-2552 (((-960) (-202) (-154 (-202)) (-522) (-1068) (-522)) 43)) (-1527 (((-960) (-202) (-154 (-202)) (-522) (-1068) (-522)) 42)) (-3097 (((-960) (-202) (-522)) 39)) (-1237 (((-960) (-202) (-522)) 38)) (-2387 (((-960) (-202) (-522)) 37)) (-2825 (((-960) (-202) (-522)) 36)) (-3666 (((-960) (-202) (-522)) 35)) (-1335 (((-960) (-202) (-522)) 34)) (-1319 (((-960) (-202) (-522)) 33)) (-2646 (((-960) (-202) (-522)) 32)) (-1790 (((-960) (-202) (-522)) 31)) (-1822 (((-960) (-202) (-522)) 30)) (-1545 (((-960) (-202) (-202) (-202) (-522)) 29)) (-3850 (((-960) (-202) (-522)) 28)) (-3022 (((-960) (-202) (-522)) 27)) (-2326 (((-960) (-202) (-522)) 26)) (-4089 (((-960) (-202) (-522)) 25)) (-2471 (((-960) (-202) (-522)) 24)) (-4020 (((-960) (-154 (-202)) (-522)) 20)))
+(((-696) (-10 -7 (-15 -4020 ((-960) (-154 (-202)) (-522))) (-15 -2471 ((-960) (-202) (-522))) (-15 -4089 ((-960) (-202) (-522))) (-15 -2326 ((-960) (-202) (-522))) (-15 -3022 ((-960) (-202) (-522))) (-15 -3850 ((-960) (-202) (-522))) (-15 -1545 ((-960) (-202) (-202) (-202) (-522))) (-15 -1822 ((-960) (-202) (-522))) (-15 -1790 ((-960) (-202) (-522))) (-15 -2646 ((-960) (-202) (-522))) (-15 -1319 ((-960) (-202) (-522))) (-15 -1335 ((-960) (-202) (-522))) (-15 -3666 ((-960) (-202) (-522))) (-15 -2825 ((-960) (-202) (-522))) (-15 -2387 ((-960) (-202) (-522))) (-15 -1237 ((-960) (-202) (-522))) (-15 -3097 ((-960) (-202) (-522))) (-15 -1527 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -2552 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -1234 ((-960) (-1068) (-154 (-202)) (-1068) (-522))) (-15 -2785 ((-960) (-1068) (-154 (-202)) (-1068) (-522))) (-15 -2407 ((-960) (-522) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -3773 ((-960) (-202) (-522))) (-15 -2238 ((-960) (-202) (-522))) (-15 -3671 ((-960) (-202) (-522))) (-15 -3152 ((-960) (-202) (-522))) (-15 -1259 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -1277 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -2571 ((-960) (-202) (-522))) (-15 -2663 ((-960) (-202) (-522))) (-15 -1550 ((-960) (-202) (-522))) (-15 -1383 ((-960) (-202) (-522))) (-15 -2467 ((-960) (-202) (-522))) (-15 -2275 ((-960) (-202) (-522))) (-15 -2347 ((-960) (-202) (-202) (-522))) (-15 -3720 ((-960) (-202) (-202) (-202) (-522))) (-15 -2332 ((-960) (-202) (-202) (-202) (-522))) (-15 -2517 ((-960) (-202) (-202) (-202) (-202) (-522))))) (T -696))
+((-2517 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2332 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3720 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2347 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2275 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2467 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1383 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1550 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2663 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2571 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1277 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068)) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1259 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068)) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3671 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3773 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2407 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-522)) (-5 *5 (-154 (-202))) (-5 *6 (-1068)) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2785 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1068)) (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1234 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1068)) (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2552 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068)) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1527 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068)) (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3097 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1237 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2387 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2825 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3666 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1335 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1319 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2646 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1790 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1822 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-1545 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3850 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-3022 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2326 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-4089 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-2471 (*1 *2 *3 *4) (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))) (-4020 (*1 *2 *3 *4) (-12 (-5 *3 (-154 (-202))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(-10 -7 (-15 -4020 ((-960) (-154 (-202)) (-522))) (-15 -2471 ((-960) (-202) (-522))) (-15 -4089 ((-960) (-202) (-522))) (-15 -2326 ((-960) (-202) (-522))) (-15 -3022 ((-960) (-202) (-522))) (-15 -3850 ((-960) (-202) (-522))) (-15 -1545 ((-960) (-202) (-202) (-202) (-522))) (-15 -1822 ((-960) (-202) (-522))) (-15 -1790 ((-960) (-202) (-522))) (-15 -2646 ((-960) (-202) (-522))) (-15 -1319 ((-960) (-202) (-522))) (-15 -1335 ((-960) (-202) (-522))) (-15 -3666 ((-960) (-202) (-522))) (-15 -2825 ((-960) (-202) (-522))) (-15 -2387 ((-960) (-202) (-522))) (-15 -1237 ((-960) (-202) (-522))) (-15 -3097 ((-960) (-202) (-522))) (-15 -1527 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -2552 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -1234 ((-960) (-1068) (-154 (-202)) (-1068) (-522))) (-15 -2785 ((-960) (-1068) (-154 (-202)) (-1068) (-522))) (-15 -2407 ((-960) (-522) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -3773 ((-960) (-202) (-522))) (-15 -2238 ((-960) (-202) (-522))) (-15 -3671 ((-960) (-202) (-522))) (-15 -3152 ((-960) (-202) (-522))) (-15 -1259 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -1277 ((-960) (-202) (-154 (-202)) (-522) (-1068) (-522))) (-15 -2571 ((-960) (-202) (-522))) (-15 -2663 ((-960) (-202) (-522))) (-15 -1550 ((-960) (-202) (-522))) (-15 -1383 ((-960) (-202) (-522))) (-15 -2467 ((-960) (-202) (-522))) (-15 -2275 ((-960) (-202) (-522))) (-15 -2347 ((-960) (-202) (-202) (-522))) (-15 -3720 ((-960) (-202) (-202) (-202) (-522))) (-15 -2332 ((-960) (-202) (-202) (-202) (-522))) (-15 -2517 ((-960) (-202) (-202) (-202) (-202) (-522))))
+((-4051 (((-1171)) 18)) (-3821 (((-1068)) 22)) (-2312 (((-1068)) 21)) (-2878 (((-1018) (-1085) (-628 (-522))) 35) (((-1018) (-1085) (-628 (-202))) 31)) (-1655 (((-108)) 16)) (-2537 (((-1068) (-1068)) 25)))
+(((-697) (-10 -7 (-15 -2312 ((-1068))) (-15 -3821 ((-1068))) (-15 -2537 ((-1068) (-1068))) (-15 -2878 ((-1018) (-1085) (-628 (-202)))) (-15 -2878 ((-1018) (-1085) (-628 (-522)))) (-15 -1655 ((-108))) (-15 -4051 ((-1171))))) (T -697))
+((-4051 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-697)))) (-1655 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-697)))) (-2878 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-628 (-522))) (-5 *2 (-1018)) (-5 *1 (-697)))) (-2878 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-628 (-202))) (-5 *2 (-1018)) (-5 *1 (-697)))) (-2537 (*1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-697)))) (-3821 (*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-697)))) (-2312 (*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-697)))))
+(-10 -7 (-15 -2312 ((-1068))) (-15 -3821 ((-1068))) (-15 -2537 ((-1068) (-1068))) (-15 -2878 ((-1018) (-1085) (-628 (-202)))) (-15 -2878 ((-1018) (-1085) (-628 (-522)))) (-15 -1655 ((-108))) (-15 -4051 ((-1171))))
+((-1596 (($ $ $) 10)) (-2185 (($ $ $ $) 9)) (-1369 (($ $ $) 12)))
+(((-698 |#1|) (-10 -8 (-15 -1369 (|#1| |#1| |#1|)) (-15 -1596 (|#1| |#1| |#1|)) (-15 -2185 (|#1| |#1| |#1| |#1|))) (-699)) (T -698))
+NIL
+(-10 -8 (-15 -1369 (|#1| |#1| |#1|)) (-15 -1596 (|#1| |#1| |#1|)) (-15 -2185 (|#1| |#1| |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-2698 (($ $ (-850)) 28)) (-1946 (($ $ (-850)) 29)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1596 (($ $ $) 25)) (-2217 (((-792) $) 11)) (-2185 (($ $ $ $) 26)) (-1369 (($ $ $) 24)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 30)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 27)))
(((-699) (-1197)) (T -699))
-((-3610 (*1 *1 *1 *1 *1) (-4 *1 (-699))) (-1288 (*1 *1 *1 *1) (-4 *1 (-699))) (-3024 (*1 *1 *1 *1) (-4 *1 (-699))))
-(-13 (-21) (-658) (-10 -8 (-15 -3610 ($ $ $ $)) (-15 -1288 ($ $ $)) (-15 -3024 ($ $ $))))
+((-2185 (*1 *1 *1 *1 *1) (-4 *1 (-699))) (-1596 (*1 *1 *1 *1) (-4 *1 (-699))) (-1369 (*1 *1 *1 *1) (-4 *1 (-699))))
+(-13 (-21) (-658) (-10 -8 (-15 -2185 ($ $ $ $)) (-15 -1596 ($ $ $)) (-15 -1369 ($ $ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-658) . T) ((-1014) . T))
-((-2190 (((-792) $) NIL) (($ (-522)) 10)))
-(((-700 |#1|) (-10 -8 (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|))) (-701)) (T -700))
+((-2217 (((-792) $) NIL) (($ (-522)) 10)))
+(((-700 |#1|) (-10 -8 (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|))) (-701)) (T -700))
NIL
-(-10 -8 (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-3637 (((-3 $ "failed") $) 40)) (-1679 (($ $ (-850)) 28) (($ $ (-708)) 35)) (-2682 (((-3 $ "failed") $) 38)) (-2782 (((-108) $) 34)) (-2231 (((-3 $ "failed") $) 39)) (-3277 (($ $ (-850)) 29) (($ $ (-708)) 36)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-1288 (($ $ $) 25)) (-2190 (((-792) $) 11) (($ (-522)) 31)) (-2323 (((-708)) 32)) (-3610 (($ $ $ $) 26)) (-3024 (($ $ $) 24)) (-3566 (($) 18 T CONST)) (-3577 (($) 33 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 30) (($ $ (-708)) 37)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 27)))
+(-10 -8 (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-1279 (((-3 $ "failed") $) 40)) (-2698 (($ $ (-850)) 28) (($ $ (-708)) 35)) (-3920 (((-3 $ "failed") $) 38)) (-2859 (((-108) $) 34)) (-3070 (((-3 $ "failed") $) 39)) (-1946 (($ $ (-850)) 29) (($ $ (-708)) 36)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1596 (($ $ $) 25)) (-2217 (((-792) $) 11) (($ (-522)) 31)) (-2742 (((-708)) 32)) (-2185 (($ $ $ $) 26)) (-1369 (($ $ $) 24)) (-3697 (($) 18 T CONST)) (-3709 (($) 33 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 30) (($ $ (-708)) 37)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 27)))
(((-701) (-1197)) (T -701))
-((-2323 (*1 *2) (-12 (-4 *1 (-701)) (-5 *2 (-708)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-701)))))
-(-13 (-699) (-660) (-10 -8 (-15 -2323 ((-708))) (-15 -2190 ($ (-522)))))
+((-2742 (*1 *2) (-12 (-4 *1 (-701)) (-5 *2 (-708)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-701)))))
+(-13 (-699) (-660) (-10 -8 (-15 -2742 ((-708))) (-15 -2217 ($ (-522)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-658) . T) ((-660) . T) ((-699) . T) ((-1014) . T))
-((-1825 (((-588 (-2 (|:| |outval| (-154 |#1|)) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 (-154 |#1|)))))) (-628 (-154 (-382 (-522)))) |#1|) 27)) (-1465 (((-588 (-154 |#1|)) (-628 (-154 (-382 (-522)))) |#1|) 19)) (-2051 (((-881 (-154 (-382 (-522)))) (-628 (-154 (-382 (-522)))) (-1085)) 16) (((-881 (-154 (-382 (-522)))) (-628 (-154 (-382 (-522))))) 15)))
-(((-702 |#1|) (-10 -7 (-15 -2051 ((-881 (-154 (-382 (-522)))) (-628 (-154 (-382 (-522)))))) (-15 -2051 ((-881 (-154 (-382 (-522)))) (-628 (-154 (-382 (-522)))) (-1085))) (-15 -1465 ((-588 (-154 |#1|)) (-628 (-154 (-382 (-522)))) |#1|)) (-15 -1825 ((-588 (-2 (|:| |outval| (-154 |#1|)) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 (-154 |#1|)))))) (-628 (-154 (-382 (-522)))) |#1|))) (-13 (-338) (-782))) (T -702))
-((-1825 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-154 (-382 (-522))))) (-5 *2 (-588 (-2 (|:| |outval| (-154 *4)) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 (-154 *4))))))) (-5 *1 (-702 *4)) (-4 *4 (-13 (-338) (-782))))) (-1465 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-154 (-382 (-522))))) (-5 *2 (-588 (-154 *4))) (-5 *1 (-702 *4)) (-4 *4 (-13 (-338) (-782))))) (-2051 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-154 (-382 (-522))))) (-5 *4 (-1085)) (-5 *2 (-881 (-154 (-382 (-522))))) (-5 *1 (-702 *5)) (-4 *5 (-13 (-338) (-782))))) (-2051 (*1 *2 *3) (-12 (-5 *3 (-628 (-154 (-382 (-522))))) (-5 *2 (-881 (-154 (-382 (-522))))) (-5 *1 (-702 *4)) (-4 *4 (-13 (-338) (-782))))))
-(-10 -7 (-15 -2051 ((-881 (-154 (-382 (-522)))) (-628 (-154 (-382 (-522)))))) (-15 -2051 ((-881 (-154 (-382 (-522)))) (-628 (-154 (-382 (-522)))) (-1085))) (-15 -1465 ((-588 (-154 |#1|)) (-628 (-154 (-382 (-522)))) |#1|)) (-15 -1825 ((-588 (-2 (|:| |outval| (-154 |#1|)) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 (-154 |#1|)))))) (-628 (-154 (-382 (-522)))) |#1|)))
-((-2702 (((-158 (-522)) |#1|) 25)))
-(((-703 |#1|) (-10 -7 (-15 -2702 ((-158 (-522)) |#1|))) (-379)) (T -703))
-((-2702 (*1 *2 *3) (-12 (-5 *2 (-158 (-522))) (-5 *1 (-703 *3)) (-4 *3 (-379)))))
-(-10 -7 (-15 -2702 ((-158 (-522)) |#1|)))
-((-3703 ((|#1| |#1| |#1|) 25)) (-3344 ((|#1| |#1| |#1|) 24)) (-3470 ((|#1| |#1| |#1|) 32)) (-3671 ((|#1| |#1| |#1|) 28)) (-3829 (((-3 |#1| "failed") |#1| |#1|) 27)) (-2509 (((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|) 23)))
-(((-704 |#1| |#2|) (-10 -7 (-15 -2509 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -3344 (|#1| |#1| |#1|)) (-15 -3703 (|#1| |#1| |#1|)) (-15 -3829 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3671 (|#1| |#1| |#1|)) (-15 -3470 (|#1| |#1| |#1|))) (-647 |#2|) (-338)) (T -704))
-((-3470 (*1 *2 *2 *2) (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3)))) (-3671 (*1 *2 *2 *2) (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3)))) (-3829 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3)))) (-3703 (*1 *2 *2 *2) (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3)))) (-3344 (*1 *2 *2 *2) (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3)))) (-2509 (*1 *2 *3 *3) (-12 (-4 *4 (-338)) (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-704 *3 *4)) (-4 *3 (-647 *4)))))
-(-10 -7 (-15 -2509 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -3344 (|#1| |#1| |#1|)) (-15 -3703 (|#1| |#1| |#1|)) (-15 -3829 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3671 (|#1| |#1| |#1|)) (-15 -3470 (|#1| |#1| |#1|)))
-((-3784 (((-2 (|:| -3855 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522)))) (-522)) 58)) (-3882 (((-2 (|:| -3855 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522))))) 56)) (-2769 (((-522)) 68)))
-(((-705 |#1| |#2|) (-10 -7 (-15 -2769 ((-522))) (-15 -3882 ((-2 (|:| -3855 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522)))))) (-15 -3784 ((-2 (|:| -3855 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522)))) (-522)))) (-1142 (-522)) (-384 (-522) |#1|)) (T -705))
-((-3784 (*1 *2 *3) (-12 (-5 *3 (-522)) (-4 *4 (-1142 *3)) (-5 *2 (-2 (|:| -3855 (-628 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-628 *3)))) (-5 *1 (-705 *4 *5)) (-4 *5 (-384 *3 *4)))) (-3882 (*1 *2) (-12 (-4 *3 (-1142 (-522))) (-5 *2 (-2 (|:| -3855 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522))))) (-5 *1 (-705 *3 *4)) (-4 *4 (-384 (-522) *3)))) (-2769 (*1 *2) (-12 (-4 *3 (-1142 *2)) (-5 *2 (-522)) (-5 *1 (-705 *3 *4)) (-4 *4 (-384 *2 *3)))))
-(-10 -7 (-15 -2769 ((-522))) (-15 -3882 ((-2 (|:| -3855 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522)))))) (-15 -3784 ((-2 (|:| -3855 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522)))) (-522))))
-((-1416 (((-108) $ $) NIL)) (-1484 (((-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) $) 15)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 14) (($ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 8) (($ (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 10) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))))) 12)) (-1531 (((-108) $ $) NIL)))
-(((-706) (-13 (-1014) (-10 -8 (-15 -2190 ($ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2190 ($ (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2190 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))) (-15 -2190 ((-792) $)) (-15 -1484 ((-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) $))))) (T -706))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-706)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *1 (-706)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *1 (-706)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))))) (-5 *1 (-706)))) (-1484 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))))) (-5 *1 (-706)))))
-(-13 (-1014) (-10 -8 (-15 -2190 ($ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2190 ($ (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2190 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))) (-15 -2190 ((-792) $)) (-15 -1484 ((-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) $))))
-((-2138 (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|))) 14) (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)) (-588 (-1085))) 13)) (-3426 (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|))) 16) (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)) (-588 (-1085))) 15)))
-(((-707 |#1|) (-10 -7 (-15 -2138 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -2138 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)))) (-15 -3426 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -3426 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|))))) (-514)) (T -707))
-((-3426 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-707 *4)))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-588 (-1085))) (-4 *5 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-707 *5)))) (-2138 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-707 *4)))) (-2138 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-588 (-1085))) (-4 *5 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-707 *5)))))
-(-10 -7 (-15 -2138 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -2138 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)))) (-15 -3426 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -3426 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1210 (($ $ $) 8)) (-1233 (((-3 $ "failed") $ $) 11)) (-1662 (($ $ (-522)) 9)) (-3175 (($) NIL T CONST)) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($ $) NIL)) (-2254 (($ $ $) NIL)) (-2782 (((-108) $) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2259 (($ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2190 (((-792) $) NIL)) (-3510 (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (* (($ (-708) $) NIL) (($ (-850) $) NIL) (($ $ $) NIL)))
-(((-708) (-13 (-730) (-664) (-10 -8 (-15 -2254 ($ $ $)) (-15 -2277 ($ $ $)) (-15 -2259 ($ $ $)) (-15 -2752 ((-2 (|:| -1353 $) (|:| -3421 $)) $ $)) (-15 -2232 ((-3 $ "failed") $ $)) (-15 -1662 ($ $ (-522))) (-15 -3255 ($ $)) (-6 (-4240 "*"))))) (T -708))
-((-2254 (*1 *1 *1 *1) (-5 *1 (-708))) (-2277 (*1 *1 *1 *1) (-5 *1 (-708))) (-2259 (*1 *1 *1 *1) (-5 *1 (-708))) (-2752 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1353 (-708)) (|:| -3421 (-708)))) (-5 *1 (-708)))) (-2232 (*1 *1 *1 *1) (|partial| -5 *1 (-708))) (-1662 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-708)))) (-3255 (*1 *1 *1) (-5 *1 (-708))))
-(-13 (-730) (-664) (-10 -8 (-15 -2254 ($ $ $)) (-15 -2277 ($ $ $)) (-15 -2259 ($ $ $)) (-15 -2752 ((-2 (|:| -1353 $) (|:| -3421 $)) $ $)) (-15 -2232 ((-3 $ "failed") $ $)) (-15 -1662 ($ $ (-522))) (-15 -3255 ($ $)) (-6 (-4240 "*"))))
-((-3426 (((-3 |#2| "failed") |#2| |#2| (-110) (-1085)) 35)))
-(((-709 |#1| |#2|) (-10 -7 (-15 -3426 ((-3 |#2| "failed") |#2| |#2| (-110) (-1085)))) (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)) (-13 (-29 |#1|) (-1106) (-887))) (T -709))
-((-3426 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-110)) (-5 *4 (-1085)) (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *1 (-709 *5 *2)) (-4 *2 (-13 (-29 *5) (-1106) (-887))))))
-(-10 -7 (-15 -3426 ((-3 |#2| "failed") |#2| |#2| (-110) (-1085))))
-((-2190 (((-711) |#1|) 8)))
-(((-710 |#1|) (-10 -7 (-15 -2190 ((-711) |#1|))) (-1120)) (T -710))
-((-2190 (*1 *2 *3) (-12 (-5 *2 (-711)) (-5 *1 (-710 *3)) (-4 *3 (-1120)))))
-(-10 -7 (-15 -2190 ((-711) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 7)) (-1531 (((-108) $ $) 9)))
+((-2204 (((-588 (-2 (|:| |outval| (-154 |#1|)) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 (-154 |#1|)))))) (-628 (-154 (-382 (-522)))) |#1|) 27)) (-2704 (((-588 (-154 |#1|)) (-628 (-154 (-382 (-522)))) |#1|) 19)) (-2645 (((-881 (-154 (-382 (-522)))) (-628 (-154 (-382 (-522)))) (-1085)) 16) (((-881 (-154 (-382 (-522)))) (-628 (-154 (-382 (-522))))) 15)))
+(((-702 |#1|) (-10 -7 (-15 -2645 ((-881 (-154 (-382 (-522)))) (-628 (-154 (-382 (-522)))))) (-15 -2645 ((-881 (-154 (-382 (-522)))) (-628 (-154 (-382 (-522)))) (-1085))) (-15 -2704 ((-588 (-154 |#1|)) (-628 (-154 (-382 (-522)))) |#1|)) (-15 -2204 ((-588 (-2 (|:| |outval| (-154 |#1|)) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 (-154 |#1|)))))) (-628 (-154 (-382 (-522)))) |#1|))) (-13 (-338) (-782))) (T -702))
+((-2204 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-154 (-382 (-522))))) (-5 *2 (-588 (-2 (|:| |outval| (-154 *4)) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 (-154 *4))))))) (-5 *1 (-702 *4)) (-4 *4 (-13 (-338) (-782))))) (-2704 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-154 (-382 (-522))))) (-5 *2 (-588 (-154 *4))) (-5 *1 (-702 *4)) (-4 *4 (-13 (-338) (-782))))) (-2645 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-154 (-382 (-522))))) (-5 *4 (-1085)) (-5 *2 (-881 (-154 (-382 (-522))))) (-5 *1 (-702 *5)) (-4 *5 (-13 (-338) (-782))))) (-2645 (*1 *2 *3) (-12 (-5 *3 (-628 (-154 (-382 (-522))))) (-5 *2 (-881 (-154 (-382 (-522))))) (-5 *1 (-702 *4)) (-4 *4 (-13 (-338) (-782))))))
+(-10 -7 (-15 -2645 ((-881 (-154 (-382 (-522)))) (-628 (-154 (-382 (-522)))))) (-15 -2645 ((-881 (-154 (-382 (-522)))) (-628 (-154 (-382 (-522)))) (-1085))) (-15 -2704 ((-588 (-154 |#1|)) (-628 (-154 (-382 (-522)))) |#1|)) (-15 -2204 ((-588 (-2 (|:| |outval| (-154 |#1|)) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 (-154 |#1|)))))) (-628 (-154 (-382 (-522)))) |#1|)))
+((-1471 (((-158 (-522)) |#1|) 25)))
+(((-703 |#1|) (-10 -7 (-15 -1471 ((-158 (-522)) |#1|))) (-379)) (T -703))
+((-1471 (*1 *2 *3) (-12 (-5 *2 (-158 (-522))) (-5 *1 (-703 *3)) (-4 *3 (-379)))))
+(-10 -7 (-15 -1471 ((-158 (-522)) |#1|)))
+((-3755 ((|#1| |#1| |#1|) 25)) (-1416 ((|#1| |#1| |#1|) 24)) (-3283 ((|#1| |#1| |#1|) 32)) (-3453 ((|#1| |#1| |#1|) 28)) (-2708 (((-3 |#1| "failed") |#1| |#1|) 27)) (-2070 (((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|) 23)))
+(((-704 |#1| |#2|) (-10 -7 (-15 -2070 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -1416 (|#1| |#1| |#1|)) (-15 -3755 (|#1| |#1| |#1|)) (-15 -2708 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3453 (|#1| |#1| |#1|)) (-15 -3283 (|#1| |#1| |#1|))) (-647 |#2|) (-338)) (T -704))
+((-3283 (*1 *2 *2 *2) (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3)))) (-3453 (*1 *2 *2 *2) (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3)))) (-2708 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3)))) (-3755 (*1 *2 *2 *2) (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3)))) (-1416 (*1 *2 *2 *2) (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3)))) (-2070 (*1 *2 *3 *3) (-12 (-4 *4 (-338)) (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-704 *3 *4)) (-4 *3 (-647 *4)))))
+(-10 -7 (-15 -2070 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -1416 (|#1| |#1| |#1|)) (-15 -3755 (|#1| |#1| |#1|)) (-15 -2708 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3453 (|#1| |#1| |#1|)) (-15 -3283 (|#1| |#1| |#1|)))
+((-3387 (((-2 (|:| -2905 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522)))) (-522)) 58)) (-1886 (((-2 (|:| -2905 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522))))) 56)) (-1615 (((-522)) 68)))
+(((-705 |#1| |#2|) (-10 -7 (-15 -1615 ((-522))) (-15 -1886 ((-2 (|:| -2905 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522)))))) (-15 -3387 ((-2 (|:| -2905 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522)))) (-522)))) (-1142 (-522)) (-384 (-522) |#1|)) (T -705))
+((-3387 (*1 *2 *3) (-12 (-5 *3 (-522)) (-4 *4 (-1142 *3)) (-5 *2 (-2 (|:| -2905 (-628 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-628 *3)))) (-5 *1 (-705 *4 *5)) (-4 *5 (-384 *3 *4)))) (-1886 (*1 *2) (-12 (-4 *3 (-1142 (-522))) (-5 *2 (-2 (|:| -2905 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522))))) (-5 *1 (-705 *3 *4)) (-4 *4 (-384 (-522) *3)))) (-1615 (*1 *2) (-12 (-4 *3 (-1142 *2)) (-5 *2 (-522)) (-5 *1 (-705 *3 *4)) (-4 *4 (-384 *2 *3)))))
+(-10 -7 (-15 -1615 ((-522))) (-15 -1886 ((-2 (|:| -2905 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522)))))) (-15 -3387 ((-2 (|:| -2905 (-628 (-522))) (|:| |basisDen| (-522)) (|:| |basisInv| (-628 (-522)))) (-522))))
+((-1419 (((-108) $ $) NIL)) (-1478 (((-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) $) 15)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 14) (($ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 8) (($ (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 10) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))))) 12)) (-1562 (((-108) $ $) NIL)))
+(((-706) (-13 (-1014) (-10 -8 (-15 -2217 ($ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2217 ($ (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2217 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))) (-15 -2217 ((-792) $)) (-15 -1478 ((-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) $))))) (T -706))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-706)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *1 (-706)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *1 (-706)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))))) (-5 *1 (-706)))) (-1478 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))))) (-5 *1 (-706)))))
+(-13 (-1014) (-10 -8 (-15 -2217 ($ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2217 ($ (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2217 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))) (-15 -2217 ((-792) $)) (-15 -1478 ((-3 (|:| |nia| (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| |mdnia| (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) $))))
+((-2984 (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|))) 14) (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)) (-588 (-1085))) 13)) (-2925 (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|))) 16) (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)) (-588 (-1085))) 15)))
+(((-707 |#1|) (-10 -7 (-15 -2984 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -2984 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)))) (-15 -2925 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -2925 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|))))) (-514)) (T -707))
+((-2925 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-707 *4)))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-588 (-1085))) (-4 *5 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-707 *5)))) (-2984 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-707 *4)))) (-2984 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-588 (-1085))) (-4 *5 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-707 *5)))))
+(-10 -7 (-15 -2984 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -2984 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)))) (-15 -2925 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -2925 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-881 |#1|)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-1827 (($ $ $) 8)) (-2265 (((-3 $ "failed") $ $) 11)) (-1736 (($ $ (-522)) 9)) (-3367 (($) NIL T CONST)) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($ $) NIL)) (-2303 (($ $ $) NIL)) (-2859 (((-108) $) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2308 (($ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2217 (((-792) $) NIL)) (-3622 (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (* (($ (-708) $) NIL) (($ (-850) $) NIL) (($ $ $) NIL)))
+(((-708) (-13 (-730) (-664) (-10 -8 (-15 -2303 ($ $ $)) (-15 -2333 ($ $ $)) (-15 -2308 ($ $ $)) (-15 -4164 ((-2 (|:| -3450 $) (|:| -4002 $)) $ $)) (-15 -2276 ((-3 $ "failed") $ $)) (-15 -1736 ($ $ (-522))) (-15 -3344 ($ $)) (-6 (-4240 "*"))))) (T -708))
+((-2303 (*1 *1 *1 *1) (-5 *1 (-708))) (-2333 (*1 *1 *1 *1) (-5 *1 (-708))) (-2308 (*1 *1 *1 *1) (-5 *1 (-708))) (-4164 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3450 (-708)) (|:| -4002 (-708)))) (-5 *1 (-708)))) (-2276 (*1 *1 *1 *1) (|partial| -5 *1 (-708))) (-1736 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-708)))) (-3344 (*1 *1 *1) (-5 *1 (-708))))
+(-13 (-730) (-664) (-10 -8 (-15 -2303 ($ $ $)) (-15 -2333 ($ $ $)) (-15 -2308 ($ $ $)) (-15 -4164 ((-2 (|:| -3450 $) (|:| -4002 $)) $ $)) (-15 -2276 ((-3 $ "failed") $ $)) (-15 -1736 ($ $ (-522))) (-15 -3344 ($ $)) (-6 (-4240 "*"))))
+((-2925 (((-3 |#2| "failed") |#2| |#2| (-110) (-1085)) 35)))
+(((-709 |#1| |#2|) (-10 -7 (-15 -2925 ((-3 |#2| "failed") |#2| |#2| (-110) (-1085)))) (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)) (-13 (-29 |#1|) (-1106) (-887))) (T -709))
+((-2925 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-110)) (-5 *4 (-1085)) (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *1 (-709 *5 *2)) (-4 *2 (-13 (-29 *5) (-1106) (-887))))))
+(-10 -7 (-15 -2925 ((-3 |#2| "failed") |#2| |#2| (-110) (-1085))))
+((-2217 (((-711) |#1|) 8)))
+(((-710 |#1|) (-10 -7 (-15 -2217 ((-711) |#1|))) (-1120)) (T -710))
+((-2217 (*1 *2 *3) (-12 (-5 *2 (-711)) (-5 *1 (-710 *3)) (-4 *3 (-1120)))))
+(-10 -7 (-15 -2217 ((-711) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 7)) (-1562 (((-108) $ $) 9)))
(((-711) (-1014)) (T -711))
NIL
(-1014)
-((-2100 ((|#2| |#4|) 35)))
-(((-712 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2100 (|#2| |#4|))) (-426) (-1142 |#1|) (-662 |#1| |#2|) (-1142 |#3|)) (T -712))
-((-2100 (*1 *2 *3) (-12 (-4 *4 (-426)) (-4 *5 (-662 *4 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-712 *4 *2 *5 *3)) (-4 *3 (-1142 *5)))))
-(-10 -7 (-15 -2100 (|#2| |#4|)))
-((-2682 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 56)) (-2216 (((-1171) (-1068) (-1068) |#4| |#5|) 33)) (-2403 ((|#4| |#4| |#5|) 73)) (-2305 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#5|) 77)) (-3484 (((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|) 15)))
-(((-713 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2682 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -2403 (|#4| |#4| |#5|)) (-15 -2305 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#5|)) (-15 -2216 ((-1171) (-1068) (-1068) |#4| |#5|)) (-15 -3484 ((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|)) (T -713))
-((-3484 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1886 *4)))) (-5 *1 (-713 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2216 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1068)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *4 (-985 *6 *7 *8)) (-5 *2 (-1171)) (-5 *1 (-713 *6 *7 *8 *4 *5)) (-4 *5 (-990 *6 *7 *8 *4)))) (-2305 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4)))) (-5 *1 (-713 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2403 (*1 *2 *2 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *2 (-985 *4 *5 *6)) (-5 *1 (-713 *4 *5 *6 *2 *3)) (-4 *3 (-990 *4 *5 *6 *2)))) (-2682 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-713 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(-10 -7 (-15 -2682 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -2403 (|#4| |#4| |#5|)) (-15 -2305 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#5|)) (-15 -2216 ((-1171) (-1068) (-1068) |#4| |#5|)) (-15 -3484 ((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|)))
-((-1297 (((-3 (-1081 (-1081 |#1|)) "failed") |#4|) 44)) (-2340 (((-588 |#4|) |#4|) 15)) (-3428 ((|#4| |#4|) 11)))
-(((-714 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2340 ((-588 |#4|) |#4|)) (-15 -1297 ((-3 (-1081 (-1081 |#1|)) "failed") |#4|)) (-15 -3428 (|#4| |#4|))) (-324) (-304 |#1|) (-1142 |#2|) (-1142 |#3|) (-850)) (T -714))
-((-3428 (*1 *2 *2) (-12 (-4 *3 (-324)) (-4 *4 (-304 *3)) (-4 *5 (-1142 *4)) (-5 *1 (-714 *3 *4 *5 *2 *6)) (-4 *2 (-1142 *5)) (-14 *6 (-850)))) (-1297 (*1 *2 *3) (|partial| -12 (-4 *4 (-324)) (-4 *5 (-304 *4)) (-4 *6 (-1142 *5)) (-5 *2 (-1081 (-1081 *4))) (-5 *1 (-714 *4 *5 *6 *3 *7)) (-4 *3 (-1142 *6)) (-14 *7 (-850)))) (-2340 (*1 *2 *3) (-12 (-4 *4 (-324)) (-4 *5 (-304 *4)) (-4 *6 (-1142 *5)) (-5 *2 (-588 *3)) (-5 *1 (-714 *4 *5 *6 *3 *7)) (-4 *3 (-1142 *6)) (-14 *7 (-850)))))
-(-10 -7 (-15 -2340 ((-588 |#4|) |#4|)) (-15 -1297 ((-3 (-1081 (-1081 |#1|)) "failed") |#4|)) (-15 -3428 (|#4| |#4|)))
-((-3112 (((-2 (|:| |deter| (-588 (-1081 |#5|))) (|:| |dterm| (-588 (-588 (-2 (|:| -2522 (-708)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-588 |#1|)) (|:| |nlead| (-588 |#5|))) (-1081 |#5|) (-588 |#1|) (-588 |#5|)) 53)) (-4008 (((-588 (-708)) |#1|) 12)))
-(((-715 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3112 ((-2 (|:| |deter| (-588 (-1081 |#5|))) (|:| |dterm| (-588 (-588 (-2 (|:| -2522 (-708)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-588 |#1|)) (|:| |nlead| (-588 |#5|))) (-1081 |#5|) (-588 |#1|) (-588 |#5|))) (-15 -4008 ((-588 (-708)) |#1|))) (-1142 |#4|) (-730) (-784) (-283) (-878 |#4| |#2| |#3|)) (T -715))
-((-4008 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-5 *2 (-588 (-708))) (-5 *1 (-715 *3 *4 *5 *6 *7)) (-4 *3 (-1142 *6)) (-4 *7 (-878 *6 *4 *5)))) (-3112 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1142 *9)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-283)) (-4 *10 (-878 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-588 (-1081 *10))) (|:| |dterm| (-588 (-588 (-2 (|:| -2522 (-708)) (|:| |pcoef| *10))))) (|:| |nfacts| (-588 *6)) (|:| |nlead| (-588 *10)))) (-5 *1 (-715 *6 *7 *8 *9 *10)) (-5 *3 (-1081 *10)) (-5 *4 (-588 *6)) (-5 *5 (-588 *10)))))
-(-10 -7 (-15 -3112 ((-2 (|:| |deter| (-588 (-1081 |#5|))) (|:| |dterm| (-588 (-588 (-2 (|:| -2522 (-708)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-588 |#1|)) (|:| |nlead| (-588 |#5|))) (-1081 |#5|) (-588 |#1|) (-588 |#5|))) (-15 -4008 ((-588 (-708)) |#1|)))
-((-2217 (((-588 (-2 (|:| |outval| |#1|) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 |#1|))))) (-628 (-382 (-522))) |#1|) 27)) (-1497 (((-588 |#1|) (-628 (-382 (-522))) |#1|) 19)) (-2051 (((-881 (-382 (-522))) (-628 (-382 (-522))) (-1085)) 16) (((-881 (-382 (-522))) (-628 (-382 (-522)))) 15)))
-(((-716 |#1|) (-10 -7 (-15 -2051 ((-881 (-382 (-522))) (-628 (-382 (-522))))) (-15 -2051 ((-881 (-382 (-522))) (-628 (-382 (-522))) (-1085))) (-15 -1497 ((-588 |#1|) (-628 (-382 (-522))) |#1|)) (-15 -2217 ((-588 (-2 (|:| |outval| |#1|) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 |#1|))))) (-628 (-382 (-522))) |#1|))) (-13 (-338) (-782))) (T -716))
-((-2217 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *2 (-588 (-2 (|:| |outval| *4) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 *4)))))) (-5 *1 (-716 *4)) (-4 *4 (-13 (-338) (-782))))) (-1497 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *2 (-588 *4)) (-5 *1 (-716 *4)) (-4 *4 (-13 (-338) (-782))))) (-2051 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *4 (-1085)) (-5 *2 (-881 (-382 (-522)))) (-5 *1 (-716 *5)) (-4 *5 (-13 (-338) (-782))))) (-2051 (*1 *2 *3) (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *2 (-881 (-382 (-522)))) (-5 *1 (-716 *4)) (-4 *4 (-13 (-338) (-782))))))
-(-10 -7 (-15 -2051 ((-881 (-382 (-522))) (-628 (-382 (-522))))) (-15 -2051 ((-881 (-382 (-522))) (-628 (-382 (-522))) (-1085))) (-15 -1497 ((-588 |#1|) (-628 (-382 (-522))) |#1|)) (-15 -2217 ((-588 (-2 (|:| |outval| |#1|) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 |#1|))))) (-628 (-382 (-522))) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 34)) (-4090 (((-588 |#2|) $) NIL)) (-1282 (((-1081 $) $ |#2|) NIL) (((-1081 |#1|) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 |#2|)) NIL)) (-3835 (($ $) 28)) (-2134 (((-108) $ $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3984 (($ $ $) 93 (|has| |#1| (-514)))) (-2467 (((-588 $) $ $) 106 (|has| |#1| (-514)))) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3119 (($ $) NIL (|has| |#1| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-881 (-382 (-522)))) NIL (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085))))) (((-3 $ "failed") (-881 (-522))) NIL (-3708 (-12 (|has| |#1| (-37 (-522))) (|has| |#2| (-563 (-1085))) (-2401 (|has| |#1| (-37 (-382 (-522)))))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085)))))) (((-3 $ "failed") (-881 |#1|)) NIL (-3708 (-12 (|has| |#2| (-563 (-1085))) (-2401 (|has| |#1| (-37 (-382 (-522))))) (-2401 (|has| |#1| (-37 (-522))))) (-12 (|has| |#1| (-37 (-522))) (|has| |#2| (-563 (-1085))) (-2401 (|has| |#1| (-37 (-382 (-522))))) (-2401 (|has| |#1| (-507)))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085))) (-2401 (|has| |#1| (-919 (-522))))))) (((-3 (-1037 |#1| |#2|) "failed") $) 18)) (-1484 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) ((|#2| $) NIL) (($ (-881 (-382 (-522)))) NIL (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085))))) (($ (-881 (-522))) NIL (-3708 (-12 (|has| |#1| (-37 (-522))) (|has| |#2| (-563 (-1085))) (-2401 (|has| |#1| (-37 (-382 (-522)))))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085)))))) (($ (-881 |#1|)) NIL (-3708 (-12 (|has| |#2| (-563 (-1085))) (-2401 (|has| |#1| (-37 (-382 (-522))))) (-2401 (|has| |#1| (-37 (-522))))) (-12 (|has| |#1| (-37 (-522))) (|has| |#2| (-563 (-1085))) (-2401 (|has| |#1| (-37 (-382 (-522))))) (-2401 (|has| |#1| (-507)))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085))) (-2401 (|has| |#1| (-919 (-522))))))) (((-1037 |#1| |#2|) $) NIL)) (-1950 (($ $ $ |#2|) NIL (|has| |#1| (-157))) (($ $ $) 104 (|has| |#1| (-514)))) (-3156 (($ $) NIL) (($ $ |#2|) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-1934 (((-108) $ $) NIL) (((-108) $ (-588 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-1630 (((-108) $) NIL)) (-1541 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 70)) (-1258 (($ $) 119 (|has| |#1| (-426)))) (-2071 (($ $) NIL (|has| |#1| (-426))) (($ $ |#2|) NIL (|has| |#1| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#1| (-838)))) (-3429 (($ $) NIL (|has| |#1| (-514)))) (-2705 (($ $) NIL (|has| |#1| (-514)))) (-1704 (($ $ $) 65) (($ $ $ |#2|) NIL)) (-4069 (($ $ $) 68) (($ $ $ |#2|) NIL)) (-2671 (($ $ |#1| (-494 |#2|) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| |#1| (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| |#1| (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-3341 (((-108) $ $) NIL) (((-108) $ (-588 $)) NIL)) (-1460 (($ $ $ $ $) 90 (|has| |#1| (-514)))) (-1521 ((|#2| $) 19)) (-4073 (($ (-1081 |#1|) |#2|) NIL) (($ (-1081 $) |#2|) NIL)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-494 |#2|)) NIL) (($ $ |#2| (-708)) 36) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-2924 (($ $ $) 60)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ |#2|) NIL)) (-3012 (((-108) $) NIL)) (-2925 (((-494 |#2|) $) NIL) (((-708) $ |#2|) NIL) (((-588 (-708)) $ (-588 |#2|)) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-3903 (((-708) $) 20)) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3861 (($ (-1 (-494 |#2|) (-494 |#2|)) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-3145 (((-3 |#2| "failed") $) NIL)) (-3547 (($ $) NIL (|has| |#1| (-426)))) (-1842 (($ $) NIL (|has| |#1| (-426)))) (-1269 (((-588 $) $) NIL)) (-3447 (($ $) 37)) (-1313 (($ $) NIL (|has| |#1| (-426)))) (-3405 (((-588 $) $) 41)) (-3786 (($ $) 39)) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL) (($ $ |#2|) 45)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-4019 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -4042 (-708))) $ $) 82)) (-1938 (((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -1353 $) (|:| -3421 $)) $ $) 67) (((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -1353 $) (|:| -3421 $)) $ $ |#2|) NIL)) (-3592 (((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -3421 $)) $ $) NIL) (((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -3421 $)) $ $ |#2|) NIL)) (-1819 (($ $ $) 72) (($ $ $ |#2|) NIL)) (-1599 (($ $ $) 75) (($ $ $ |#2|) NIL)) (-2385 (((-1068) $) NIL)) (-1331 (($ $ $) 108 (|has| |#1| (-514)))) (-1817 (((-588 $) $) 30)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| |#2|) (|:| -1400 (-708))) "failed") $) NIL)) (-3409 (((-108) $ $) NIL) (((-108) $ (-588 $)) NIL)) (-1451 (($ $ $) NIL)) (-3802 (($ $) 21)) (-2123 (((-108) $ $) NIL)) (-2230 (((-108) $ $) NIL) (((-108) $ (-588 $)) NIL)) (-2680 (($ $ $) NIL)) (-4002 (($ $) 23)) (-4151 (((-1032) $) NIL)) (-3461 (((-2 (|:| -2259 $) (|:| |coef2| $)) $ $) 99 (|has| |#1| (-514)))) (-3738 (((-2 (|:| -2259 $) (|:| |coef1| $)) $ $) 96 (|has| |#1| (-514)))) (-3108 (((-108) $) 52)) (-3118 ((|#1| $) 55)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2259 ((|#1| |#1| $) 116 (|has| |#1| (-426))) (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-838)))) (-3905 (((-2 (|:| -2259 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 102 (|has| |#1| (-514)))) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-514)))) (-3620 (($ $ |#1|) 112 (|has| |#1| (-514))) (($ $ $) NIL (|has| |#1| (-514)))) (-3195 (($ $ |#1|) 111 (|has| |#1| (-514))) (($ $ $) NIL (|has| |#1| (-514)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-588 |#2|) (-588 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-588 |#2|) (-588 $)) NIL)) (-2769 (($ $ |#2|) NIL (|has| |#1| (-157)))) (-2157 (($ $ |#2|) NIL) (($ $ (-588 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-2793 (((-494 |#2|) $) NIL) (((-708) $ |#2|) 43) (((-588 (-708)) $ (-588 |#2|)) NIL)) (-2044 (($ $) NIL)) (-1635 (($ $) 33)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| |#1| (-563 (-498))) (|has| |#2| (-563 (-498))))) (($ (-881 (-382 (-522)))) NIL (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085))))) (($ (-881 (-522))) NIL (-3708 (-12 (|has| |#1| (-37 (-522))) (|has| |#2| (-563 (-1085))) (-2401 (|has| |#1| (-37 (-382 (-522)))))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085)))))) (($ (-881 |#1|)) NIL (|has| |#2| (-563 (-1085)))) (((-1068) $) NIL (-12 (|has| |#1| (-962 (-522))) (|has| |#2| (-563 (-1085))))) (((-881 |#1|) $) NIL (|has| |#2| (-563 (-1085))))) (-2255 ((|#1| $) 115 (|has| |#1| (-426))) (($ $ |#2|) NIL (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-881 |#1|) $) NIL (|has| |#2| (-563 (-1085)))) (((-1037 |#1| |#2|) $) 15) (($ (-1037 |#1| |#2|)) 16) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-494 |#2|)) NIL) (($ $ |#2| (-708)) 44) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 13 T CONST)) (-2618 (((-3 (-108) "failed") $ $) NIL)) (-3577 (($) 35 T CONST)) (-2298 (($ $ $ $ (-708)) 88 (|has| |#1| (-514)))) (-3818 (($ $ $ (-708)) 87 (|has| |#1| (-514)))) (-2213 (($ $ |#2|) NIL) (($ $ (-588 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) 54)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) 64)) (-1602 (($ $ $) 74)) (** (($ $ (-850)) NIL) (($ $ (-708)) 61)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 59) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 58) (($ $ |#1|) NIL)))
+((-1269 ((|#2| |#4|) 35)))
+(((-712 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1269 (|#2| |#4|))) (-426) (-1142 |#1|) (-662 |#1| |#2|) (-1142 |#3|)) (T -712))
+((-1269 (*1 *2 *3) (-12 (-4 *4 (-426)) (-4 *5 (-662 *4 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-712 *4 *2 *5 *3)) (-4 *3 (-1142 *5)))))
+(-10 -7 (-15 -1269 (|#2| |#4|)))
+((-3920 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 56)) (-1520 (((-1171) (-1068) (-1068) |#4| |#5|) 33)) (-1398 ((|#4| |#4| |#5|) 73)) (-2774 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#5|) 77)) (-3391 (((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|) 15)))
+(((-713 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3920 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1398 (|#4| |#4| |#5|)) (-15 -2774 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#5|)) (-15 -1520 ((-1171) (-1068) (-1068) |#4| |#5|)) (-15 -3391 ((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|)) (T -713))
+((-3391 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1974 *4)))) (-5 *1 (-713 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-1520 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1068)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *4 (-985 *6 *7 *8)) (-5 *2 (-1171)) (-5 *1 (-713 *6 *7 *8 *4 *5)) (-4 *5 (-990 *6 *7 *8 *4)))) (-2774 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4)))) (-5 *1 (-713 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-1398 (*1 *2 *2 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *2 (-985 *4 *5 *6)) (-5 *1 (-713 *4 *5 *6 *2 *3)) (-4 *3 (-990 *4 *5 *6 *2)))) (-3920 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-713 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(-10 -7 (-15 -3920 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1398 (|#4| |#4| |#5|)) (-15 -2774 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#5|)) (-15 -1520 ((-1171) (-1068) (-1068) |#4| |#5|)) (-15 -3391 ((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|)))
+((-3700 (((-3 (-1081 (-1081 |#1|)) "failed") |#4|) 44)) (-1979 (((-588 |#4|) |#4|) 15)) (-2938 ((|#4| |#4|) 11)))
+(((-714 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1979 ((-588 |#4|) |#4|)) (-15 -3700 ((-3 (-1081 (-1081 |#1|)) "failed") |#4|)) (-15 -2938 (|#4| |#4|))) (-324) (-304 |#1|) (-1142 |#2|) (-1142 |#3|) (-850)) (T -714))
+((-2938 (*1 *2 *2) (-12 (-4 *3 (-324)) (-4 *4 (-304 *3)) (-4 *5 (-1142 *4)) (-5 *1 (-714 *3 *4 *5 *2 *6)) (-4 *2 (-1142 *5)) (-14 *6 (-850)))) (-3700 (*1 *2 *3) (|partial| -12 (-4 *4 (-324)) (-4 *5 (-304 *4)) (-4 *6 (-1142 *5)) (-5 *2 (-1081 (-1081 *4))) (-5 *1 (-714 *4 *5 *6 *3 *7)) (-4 *3 (-1142 *6)) (-14 *7 (-850)))) (-1979 (*1 *2 *3) (-12 (-4 *4 (-324)) (-4 *5 (-304 *4)) (-4 *6 (-1142 *5)) (-5 *2 (-588 *3)) (-5 *1 (-714 *4 *5 *6 *3 *7)) (-4 *3 (-1142 *6)) (-14 *7 (-850)))))
+(-10 -7 (-15 -1979 ((-588 |#4|) |#4|)) (-15 -3700 ((-3 (-1081 (-1081 |#1|)) "failed") |#4|)) (-15 -2938 (|#4| |#4|)))
+((-2911 (((-2 (|:| |deter| (-588 (-1081 |#5|))) (|:| |dterm| (-588 (-588 (-2 (|:| -2170 (-708)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-588 |#1|)) (|:| |nlead| (-588 |#5|))) (-1081 |#5|) (-588 |#1|) (-588 |#5|)) 53)) (-3704 (((-588 (-708)) |#1|) 12)))
+(((-715 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2911 ((-2 (|:| |deter| (-588 (-1081 |#5|))) (|:| |dterm| (-588 (-588 (-2 (|:| -2170 (-708)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-588 |#1|)) (|:| |nlead| (-588 |#5|))) (-1081 |#5|) (-588 |#1|) (-588 |#5|))) (-15 -3704 ((-588 (-708)) |#1|))) (-1142 |#4|) (-730) (-784) (-283) (-878 |#4| |#2| |#3|)) (T -715))
+((-3704 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-5 *2 (-588 (-708))) (-5 *1 (-715 *3 *4 *5 *6 *7)) (-4 *3 (-1142 *6)) (-4 *7 (-878 *6 *4 *5)))) (-2911 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1142 *9)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-283)) (-4 *10 (-878 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-588 (-1081 *10))) (|:| |dterm| (-588 (-588 (-2 (|:| -2170 (-708)) (|:| |pcoef| *10))))) (|:| |nfacts| (-588 *6)) (|:| |nlead| (-588 *10)))) (-5 *1 (-715 *6 *7 *8 *9 *10)) (-5 *3 (-1081 *10)) (-5 *4 (-588 *6)) (-5 *5 (-588 *10)))))
+(-10 -7 (-15 -2911 ((-2 (|:| |deter| (-588 (-1081 |#5|))) (|:| |dterm| (-588 (-588 (-2 (|:| -2170 (-708)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-588 |#1|)) (|:| |nlead| (-588 |#5|))) (-1081 |#5|) (-588 |#1|) (-588 |#5|))) (-15 -3704 ((-588 (-708)) |#1|)))
+((-1533 (((-588 (-2 (|:| |outval| |#1|) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 |#1|))))) (-628 (-382 (-522))) |#1|) 27)) (-1756 (((-588 |#1|) (-628 (-382 (-522))) |#1|) 19)) (-2645 (((-881 (-382 (-522))) (-628 (-382 (-522))) (-1085)) 16) (((-881 (-382 (-522))) (-628 (-382 (-522)))) 15)))
+(((-716 |#1|) (-10 -7 (-15 -2645 ((-881 (-382 (-522))) (-628 (-382 (-522))))) (-15 -2645 ((-881 (-382 (-522))) (-628 (-382 (-522))) (-1085))) (-15 -1756 ((-588 |#1|) (-628 (-382 (-522))) |#1|)) (-15 -1533 ((-588 (-2 (|:| |outval| |#1|) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 |#1|))))) (-628 (-382 (-522))) |#1|))) (-13 (-338) (-782))) (T -716))
+((-1533 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *2 (-588 (-2 (|:| |outval| *4) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 *4)))))) (-5 *1 (-716 *4)) (-4 *4 (-13 (-338) (-782))))) (-1756 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *2 (-588 *4)) (-5 *1 (-716 *4)) (-4 *4 (-13 (-338) (-782))))) (-2645 (*1 *2 *3 *4) (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *4 (-1085)) (-5 *2 (-881 (-382 (-522)))) (-5 *1 (-716 *5)) (-4 *5 (-13 (-338) (-782))))) (-2645 (*1 *2 *3) (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *2 (-881 (-382 (-522)))) (-5 *1 (-716 *4)) (-4 *4 (-13 (-338) (-782))))))
+(-10 -7 (-15 -2645 ((-881 (-382 (-522))) (-628 (-382 (-522))))) (-15 -2645 ((-881 (-382 (-522))) (-628 (-382 (-522))) (-1085))) (-15 -1756 ((-588 |#1|) (-628 (-382 (-522))) |#1|)) (-15 -1533 ((-588 (-2 (|:| |outval| |#1|) (|:| |outmult| (-522)) (|:| |outvect| (-588 (-628 |#1|))))) (-628 (-382 (-522))) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 34)) (-3533 (((-588 |#2|) $) NIL)) (-1264 (((-1081 $) $ |#2|) NIL) (((-1081 |#1|) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 |#2|)) NIL)) (-3961 (($ $) 28)) (-2942 (((-108) $ $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3485 (($ $ $) 93 (|has| |#1| (-514)))) (-2817 (((-588 $) $ $) 106 (|has| |#1| (-514)))) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2961 (($ $) NIL (|has| |#1| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-881 (-382 (-522)))) NIL (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085))))) (((-3 $ "failed") (-881 (-522))) NIL (-3844 (-12 (|has| |#1| (-37 (-522))) (|has| |#2| (-563 (-1085))) (-2473 (|has| |#1| (-37 (-382 (-522)))))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085)))))) (((-3 $ "failed") (-881 |#1|)) NIL (-3844 (-12 (|has| |#2| (-563 (-1085))) (-2473 (|has| |#1| (-37 (-382 (-522))))) (-2473 (|has| |#1| (-37 (-522))))) (-12 (|has| |#1| (-37 (-522))) (|has| |#2| (-563 (-1085))) (-2473 (|has| |#1| (-37 (-382 (-522))))) (-2473 (|has| |#1| (-507)))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085))) (-2473 (|has| |#1| (-919 (-522))))))) (((-3 (-1037 |#1| |#2|) "failed") $) 18)) (-1478 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) ((|#2| $) NIL) (($ (-881 (-382 (-522)))) NIL (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085))))) (($ (-881 (-522))) NIL (-3844 (-12 (|has| |#1| (-37 (-522))) (|has| |#2| (-563 (-1085))) (-2473 (|has| |#1| (-37 (-382 (-522)))))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085)))))) (($ (-881 |#1|)) NIL (-3844 (-12 (|has| |#2| (-563 (-1085))) (-2473 (|has| |#1| (-37 (-382 (-522))))) (-2473 (|has| |#1| (-37 (-522))))) (-12 (|has| |#1| (-37 (-522))) (|has| |#2| (-563 (-1085))) (-2473 (|has| |#1| (-37 (-382 (-522))))) (-2473 (|has| |#1| (-507)))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085))) (-2473 (|has| |#1| (-919 (-522))))))) (((-1037 |#1| |#2|) $) NIL)) (-2908 (($ $ $ |#2|) NIL (|has| |#1| (-157))) (($ $ $) 104 (|has| |#1| (-514)))) (-3241 (($ $) NIL) (($ $ |#2|) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-1426 (((-108) $ $) NIL) (((-108) $ (-588 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2184 (((-108) $) NIL)) (-3370 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 70)) (-2563 (($ $) 119 (|has| |#1| (-426)))) (-2883 (($ $) NIL (|has| |#1| (-426))) (($ $ |#2|) NIL (|has| |#1| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#1| (-838)))) (-2948 (($ $) NIL (|has| |#1| (-514)))) (-1510 (($ $) NIL (|has| |#1| (-514)))) (-4107 (($ $ $) 65) (($ $ $ |#2|) NIL)) (-3168 (($ $ $) 68) (($ $ $ |#2|) NIL)) (-3792 (($ $ |#1| (-494 |#2|) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| |#1| (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| |#1| (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-1384 (((-108) $ $) NIL) (((-108) $ (-588 $)) NIL)) (-2662 (($ $ $ $ $) 90 (|has| |#1| (-514)))) (-1933 ((|#2| $) 19)) (-3520 (($ (-1081 |#1|) |#2|) NIL) (($ (-1081 $) |#2|) NIL)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-494 |#2|)) NIL) (($ $ |#2| (-708)) 36) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-3556 (($ $ $) 60)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ |#2|) NIL)) (-1257 (((-108) $) NIL)) (-3564 (((-494 |#2|) $) NIL) (((-708) $ |#2|) NIL) (((-588 (-708)) $ (-588 |#2|)) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2059 (((-708) $) 20)) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-1723 (($ (-1 (-494 |#2|) (-494 |#2|)) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3155 (((-3 |#2| "failed") $) NIL)) (-2894 (($ $) NIL (|has| |#1| (-426)))) (-2408 (($ $) NIL (|has| |#1| (-426)))) (-2697 (((-588 $) $) NIL)) (-3110 (($ $) 37)) (-1840 (($ $) NIL (|has| |#1| (-426)))) (-3814 (((-588 $) $) 41)) (-3409 (($ $) 39)) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL) (($ $ |#2|) 45)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-3816 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -4062 (-708))) $ $) 82)) (-1456 (((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -3450 $) (|:| -4002 $)) $ $) 67) (((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -3450 $) (|:| -4002 $)) $ $ |#2|) NIL)) (-2038 (((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -4002 $)) $ $) NIL) (((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -4002 $)) $ $ |#2|) NIL)) (-3968 (($ $ $) 72) (($ $ $ |#2|) NIL)) (-3787 (($ $ $) 75) (($ $ $ |#2|) NIL)) (-2311 (((-1068) $) NIL)) (-1998 (($ $ $) 108 (|has| |#1| (-514)))) (-3946 (((-588 $) $) 30)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| |#2|) (|:| -3858 (-708))) "failed") $) NIL)) (-3864 (((-108) $ $) NIL) (((-108) $ (-588 $)) NIL)) (-2556 (($ $ $) NIL)) (-3937 (($ $) 21)) (-1517 (((-108) $ $) NIL)) (-3060 (((-108) $ $) NIL) (((-108) $ (-588 $)) NIL)) (-3896 (($ $ $) NIL)) (-3655 (($ $) 23)) (-4174 (((-1032) $) NIL)) (-3214 (((-2 (|:| -2308 $) (|:| |coef2| $)) $ $) 99 (|has| |#1| (-514)))) (-2997 (((-2 (|:| -2308 $) (|:| |coef1| $)) $ $) 96 (|has| |#1| (-514)))) (-3199 (((-108) $) 52)) (-3207 ((|#1| $) 55)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2308 ((|#1| |#1| $) 116 (|has| |#1| (-426))) (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-838)))) (-2078 (((-2 (|:| -2308 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 102 (|has| |#1| (-514)))) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-514)))) (-4139 (($ $ |#1|) 112 (|has| |#1| (-514))) (($ $ $) NIL (|has| |#1| (-514)))) (-2376 (($ $ |#1|) 111 (|has| |#1| (-514))) (($ $ $) NIL (|has| |#1| (-514)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-588 |#2|) (-588 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-588 |#2|) (-588 $)) NIL)) (-1615 (($ $ |#2|) NIL (|has| |#1| (-157)))) (-2731 (($ $ |#2|) NIL) (($ $ (-588 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-2487 (((-494 |#2|) $) NIL) (((-708) $ |#2|) 43) (((-588 (-708)) $ (-588 |#2|)) NIL)) (-2581 (($ $) NIL)) (-2209 (($ $) 33)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| |#1| (-563 (-498))) (|has| |#2| (-563 (-498))))) (($ (-881 (-382 (-522)))) NIL (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085))))) (($ (-881 (-522))) NIL (-3844 (-12 (|has| |#1| (-37 (-522))) (|has| |#2| (-563 (-1085))) (-2473 (|has| |#1| (-37 (-382 (-522)))))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#2| (-563 (-1085)))))) (($ (-881 |#1|)) NIL (|has| |#2| (-563 (-1085)))) (((-1068) $) NIL (-12 (|has| |#1| (-962 (-522))) (|has| |#2| (-563 (-1085))))) (((-881 |#1|) $) NIL (|has| |#2| (-563 (-1085))))) (-2988 ((|#1| $) 115 (|has| |#1| (-426))) (($ $ |#2|) NIL (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-881 |#1|) $) NIL (|has| |#2| (-563 (-1085)))) (((-1037 |#1| |#2|) $) 15) (($ (-1037 |#1| |#2|)) 16) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-494 |#2|)) NIL) (($ $ |#2| (-708)) 44) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 13 T CONST)) (-1679 (((-3 (-108) "failed") $ $) NIL)) (-3709 (($) 35 T CONST)) (-2580 (($ $ $ $ (-708)) 88 (|has| |#1| (-514)))) (-2575 (($ $ $ (-708)) 87 (|has| |#1| (-514)))) (-2252 (($ $ |#2|) NIL) (($ $ (-588 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) 54)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) 64)) (-1661 (($ $ $) 74)) (** (($ $ (-850)) NIL) (($ $ (-708)) 61)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 59) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 58) (($ $ |#1|) NIL)))
(((-717 |#1| |#2|) (-13 (-985 |#1| (-494 |#2|) |#2|) (-562 (-1037 |#1| |#2|)) (-962 (-1037 |#1| |#2|))) (-971) (-784)) (T -717))
NIL
(-13 (-985 |#1| (-494 |#2|) |#2|) (-562 (-1037 |#1| |#2|)) (-962 (-1037 |#1| |#2|)))
-((-1391 (((-719 |#2|) (-1 |#2| |#1|) (-719 |#1|)) 13)))
-(((-718 |#1| |#2|) (-10 -7 (-15 -1391 ((-719 |#2|) (-1 |#2| |#1|) (-719 |#1|)))) (-971) (-971)) (T -718))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-719 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-5 *2 (-719 *6)) (-5 *1 (-718 *5 *6)))))
-(-10 -7 (-15 -1391 ((-719 |#2|) (-1 |#2| |#1|) (-719 |#1|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 12)) (-3960 (((-1166 |#1|) $ (-708)) NIL)) (-4090 (((-588 (-999)) $) NIL)) (-3793 (($ (-1081 |#1|)) NIL)) (-1282 (((-1081 $) $ (-999)) NIL) (((-1081 |#1|) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 (-999))) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1728 (((-588 $) $ $) 39 (|has| |#1| (-514)))) (-3984 (($ $ $) 35 (|has| |#1| (-514)))) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3119 (($ $) NIL (|has| |#1| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-3242 (($ $ (-708)) NIL)) (-2272 (($ $ (-708)) NIL)) (-1441 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-426)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-999) "failed") $) NIL) (((-3 (-1081 |#1|) "failed") $) 10)) (-1484 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-999) $) NIL) (((-1081 |#1|) $) NIL)) (-1950 (($ $ $ (-999)) NIL (|has| |#1| (-157))) ((|#1| $ $) 43 (|has| |#1| (-157)))) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-3156 (($ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-2052 (($ $ $) NIL)) (-4152 (($ $ $) 71 (|has| |#1| (-514)))) (-1541 (((-2 (|:| -2977 |#1|) (|:| -1353 $) (|:| -3421 $)) $ $) 70 (|has| |#1| (-514)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2071 (($ $) NIL (|has| |#1| (-426))) (($ $ (-999)) NIL (|has| |#1| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#1| (-838)))) (-2671 (($ $ |#1| (-708) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-999) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-999) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3714 (((-708) $ $) NIL (|has| |#1| (-514)))) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-3004 (((-3 $ "failed") $) NIL (|has| |#1| (-1061)))) (-4073 (($ (-1081 |#1|) (-999)) NIL) (($ (-1081 $) (-999)) NIL)) (-2073 (($ $ (-708)) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-708)) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-2924 (($ $ $) 20)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ (-999)) NIL) (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2925 (((-708) $) NIL) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3861 (($ (-1 (-708) (-708)) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-3624 (((-1081 |#1|) $) NIL)) (-3145 (((-3 (-999) "failed") $) NIL)) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-4019 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -4042 (-708))) $ $) 26)) (-2763 (($ $ $) 29)) (-3196 (($ $ $) 32)) (-1938 (((-2 (|:| -2977 |#1|) (|:| |gap| (-708)) (|:| -1353 $) (|:| -3421 $)) $ $) 31)) (-2385 (((-1068) $) NIL)) (-1331 (($ $ $) 41 (|has| |#1| (-514)))) (-3114 (((-2 (|:| -1353 $) (|:| -3421 $)) $ (-708)) NIL)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-999)) (|:| -1400 (-708))) "failed") $) NIL)) (-1858 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3802 (($) NIL (|has| |#1| (-1061)) CONST)) (-4151 (((-1032) $) NIL)) (-3461 (((-2 (|:| -2259 $) (|:| |coef2| $)) $ $) 67 (|has| |#1| (-514)))) (-3738 (((-2 (|:| -2259 $) (|:| |coef1| $)) $ $) 63 (|has| |#1| (-514)))) (-1705 (((-2 (|:| -1950 |#1|) (|:| |coef2| $)) $ $) 55 (|has| |#1| (-514)))) (-1545 (((-2 (|:| -1950 |#1|) (|:| |coef1| $)) $ $) 51 (|has| |#1| (-514)))) (-3108 (((-108) $) 13)) (-3118 ((|#1| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2600 (($ $ (-708) |#1| $) 19)) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-838)))) (-3905 (((-2 (|:| -2259 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 59 (|has| |#1| (-514)))) (-1699 (((-2 (|:| -1950 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 47 (|has| |#1| (-514)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-999) |#1|) NIL) (($ $ (-588 (-999)) (-588 |#1|)) NIL) (($ $ (-999) $) NIL) (($ $ (-588 (-999)) (-588 $)) NIL)) (-3730 (((-708) $) NIL (|has| |#1| (-338)))) (-2545 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-382 $) (-382 $) (-382 $)) NIL (|has| |#1| (-514))) ((|#1| (-382 $) |#1|) NIL (|has| |#1| (-338))) (((-382 $) $ (-382 $)) NIL (|has| |#1| (-514)))) (-4158 (((-3 $ "failed") $ (-708)) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-2769 (($ $ (-999)) NIL (|has| |#1| (-157))) ((|#1| $) NIL (|has| |#1| (-157)))) (-2157 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-2793 (((-708) $) NIL) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| (-999) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-999) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-999) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2255 ((|#1| $) NIL (|has| |#1| (-426))) (($ $ (-999)) NIL (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-3097 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514))) (((-3 (-382 $) "failed") (-382 $) $) NIL (|has| |#1| (-514)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-999)) NIL) (((-1081 |#1|) $) 7) (($ (-1081 |#1|)) 8) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-708)) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 21 T CONST)) (-3577 (($) 24 T CONST)) (-2213 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $) 28) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 23) (($ $ |#1|) NIL)))
-(((-719 |#1|) (-13 (-1142 |#1|) (-562 (-1081 |#1|)) (-962 (-1081 |#1|)) (-10 -8 (-15 -2600 ($ $ (-708) |#1| $)) (-15 -2924 ($ $ $)) (-15 -4019 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -4042 (-708))) $ $)) (-15 -2763 ($ $ $)) (-15 -1938 ((-2 (|:| -2977 |#1|) (|:| |gap| (-708)) (|:| -1353 $) (|:| -3421 $)) $ $)) (-15 -3196 ($ $ $)) (IF (|has| |#1| (-514)) (PROGN (-15 -1728 ((-588 $) $ $)) (-15 -1331 ($ $ $)) (-15 -3905 ((-2 (|:| -2259 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3738 ((-2 (|:| -2259 $) (|:| |coef1| $)) $ $)) (-15 -3461 ((-2 (|:| -2259 $) (|:| |coef2| $)) $ $)) (-15 -1699 ((-2 (|:| -1950 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1545 ((-2 (|:| -1950 |#1|) (|:| |coef1| $)) $ $)) (-15 -1705 ((-2 (|:| -1950 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-971)) (T -719))
-((-2600 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-708)) (-5 *1 (-719 *3)) (-4 *3 (-971)))) (-2924 (*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-971)))) (-4019 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-719 *3)) (|:| |polden| *3) (|:| -4042 (-708)))) (-5 *1 (-719 *3)) (-4 *3 (-971)))) (-2763 (*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-971)))) (-1938 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2977 *3) (|:| |gap| (-708)) (|:| -1353 (-719 *3)) (|:| -3421 (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-971)))) (-3196 (*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-971)))) (-1728 (*1 *2 *1 *1) (-12 (-5 *2 (-588 (-719 *3))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))) (-1331 (*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-514)) (-4 *2 (-971)))) (-3905 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2259 (-719 *3)) (|:| |coef1| (-719 *3)) (|:| |coef2| (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))) (-3738 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2259 (-719 *3)) (|:| |coef1| (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))) (-3461 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2259 (-719 *3)) (|:| |coef2| (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))) (-1699 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1950 *3) (|:| |coef1| (-719 *3)) (|:| |coef2| (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))) (-1545 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1950 *3) (|:| |coef1| (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))) (-1705 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1950 *3) (|:| |coef2| (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))))
-(-13 (-1142 |#1|) (-562 (-1081 |#1|)) (-962 (-1081 |#1|)) (-10 -8 (-15 -2600 ($ $ (-708) |#1| $)) (-15 -2924 ($ $ $)) (-15 -4019 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -4042 (-708))) $ $)) (-15 -2763 ($ $ $)) (-15 -1938 ((-2 (|:| -2977 |#1|) (|:| |gap| (-708)) (|:| -1353 $) (|:| -3421 $)) $ $)) (-15 -3196 ($ $ $)) (IF (|has| |#1| (-514)) (PROGN (-15 -1728 ((-588 $) $ $)) (-15 -1331 ($ $ $)) (-15 -3905 ((-2 (|:| -2259 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3738 ((-2 (|:| -2259 $) (|:| |coef1| $)) $ $)) (-15 -3461 ((-2 (|:| -2259 $) (|:| |coef2| $)) $ $)) (-15 -1699 ((-2 (|:| -1950 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1545 ((-2 (|:| -1950 |#1|) (|:| |coef1| $)) $ $)) (-15 -1705 ((-2 (|:| -1950 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
-((-4214 ((|#1| (-708) |#1|) 33 (|has| |#1| (-37 (-382 (-522)))))) (-1437 ((|#1| (-708) |#1|) 23)) (-2068 ((|#1| (-708) |#1|) 35 (|has| |#1| (-37 (-382 (-522)))))))
-(((-720 |#1|) (-10 -7 (-15 -1437 (|#1| (-708) |#1|)) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -2068 (|#1| (-708) |#1|)) (-15 -4214 (|#1| (-708) |#1|))) |%noBranch|)) (-157)) (T -720))
-((-4214 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-720 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-157)))) (-2068 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-720 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-157)))) (-1437 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-720 *2)) (-4 *2 (-157)))))
-(-10 -7 (-15 -1437 (|#1| (-708) |#1|)) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -2068 (|#1| (-708) |#1|)) (-15 -4214 (|#1| (-708) |#1|))) |%noBranch|))
-((-1416 (((-108) $ $) 7)) (-2950 (((-588 (-2 (|:| -1650 $) (|:| -1544 (-588 |#4|)))) (-588 |#4|)) 85)) (-4125 (((-588 $) (-588 |#4|)) 86) (((-588 $) (-588 |#4|) (-108)) 111)) (-4090 (((-588 |#3|) $) 33)) (-2690 (((-108) $) 26)) (-4140 (((-108) $) 17 (|has| |#1| (-514)))) (-3575 (((-108) |#4| $) 101) (((-108) $) 97)) (-3607 ((|#4| |#4| $) 92)) (-3119 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 $))) |#4| $) 126)) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |#3|) 27)) (-4141 (((-108) $ (-708)) 44)) (-1628 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 79)) (-3175 (($) 45 T CONST)) (-3639 (((-108) $) 22 (|has| |#1| (-514)))) (-3982 (((-108) $ $) 24 (|has| |#1| (-514)))) (-3996 (((-108) $ $) 23 (|has| |#1| (-514)))) (-3538 (((-108) $) 25 (|has| |#1| (-514)))) (-2149 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3050 (((-588 |#4|) (-588 |#4|) $) 18 (|has| |#1| (-514)))) (-1787 (((-588 |#4|) (-588 |#4|) $) 19 (|has| |#1| (-514)))) (-1297 (((-3 $ "failed") (-588 |#4|)) 36)) (-1484 (($ (-588 |#4|)) 35)) (-2306 (((-3 $ "failed") $) 82)) (-2806 ((|#4| |#4| $) 89)) (-2333 (($ $) 68 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#4| $) 67 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4238)))) (-3421 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-514)))) (-1934 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-4164 ((|#4| |#4| $) 87)) (-3864 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-2091 (((-2 (|:| -1650 (-588 |#4|)) (|:| -1544 (-588 |#4|))) $) 105)) (-2208 (((-108) |#4| $) 136)) (-3129 (((-108) |#4| $) 133)) (-2198 (((-108) |#4| $) 137) (((-108) $) 134)) (-3837 (((-588 |#4|) $) 52 (|has| $ (-6 -4238)))) (-3341 (((-108) |#4| $) 104) (((-108) $) 103)) (-1521 ((|#3| $) 34)) (-3352 (((-108) $ (-708)) 43)) (-3308 (((-588 |#4|) $) 53 (|has| $ (-6 -4238)))) (-2246 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#4| |#4|) $) 47)) (-2458 (((-588 |#3|) $) 32)) (-1606 (((-108) |#3| $) 31)) (-2720 (((-108) $ (-708)) 42)) (-2385 (((-1068) $) 9)) (-3959 (((-3 |#4| (-588 $)) |#4| |#4| $) 128)) (-1331 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 $))) |#4| |#4| $) 127)) (-1442 (((-3 |#4| "failed") $) 83)) (-2893 (((-588 $) |#4| $) 129)) (-4190 (((-3 (-108) (-588 $)) |#4| $) 132)) (-3878 (((-588 (-2 (|:| |val| (-108)) (|:| -1886 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-2416 (((-588 $) |#4| $) 125) (((-588 $) (-588 |#4|) $) 124) (((-588 $) (-588 |#4|) (-588 $)) 123) (((-588 $) |#4| (-588 $)) 122)) (-2135 (($ |#4| $) 117) (($ (-588 |#4|) $) 116)) (-2242 (((-588 |#4|) $) 107)) (-3409 (((-108) |#4| $) 99) (((-108) $) 95)) (-1451 ((|#4| |#4| $) 90)) (-2123 (((-108) $ $) 110)) (-2039 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-514)))) (-2230 (((-108) |#4| $) 100) (((-108) $) 96)) (-2680 ((|#4| |#4| $) 91)) (-4151 (((-1032) $) 10)) (-2294 (((-3 |#4| "failed") $) 84)) (-1414 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-3307 (((-3 $ "failed") $ |#4|) 78)) (-3719 (($ $ |#4|) 77) (((-588 $) |#4| $) 115) (((-588 $) |#4| (-588 $)) 114) (((-588 $) (-588 |#4|) $) 113) (((-588 $) (-588 |#4|) (-588 $)) 112)) (-3053 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#4|) (-588 |#4|)) 59 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) 57 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) 56 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-1536 (((-108) $ $) 38)) (-3985 (((-108) $) 41)) (-3775 (($) 40)) (-2793 (((-708) $) 106)) (-4168 (((-708) |#4| $) 54 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4238)))) (-2404 (($ $) 39)) (-1431 (((-498) $) 69 (|has| |#4| (-563 (-498))))) (-2201 (($ (-588 |#4|)) 60)) (-2020 (($ $ |#3|) 28)) (-3606 (($ $ |#3|) 30)) (-3968 (($ $) 88)) (-2463 (($ $ |#3|) 29)) (-2190 (((-792) $) 11) (((-588 |#4|) $) 37)) (-1974 (((-708) $) 76 (|has| |#3| (-343)))) (-3989 (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-4212 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) 98)) (-2188 (((-588 $) |#4| $) 121) (((-588 $) |#4| (-588 $)) 120) (((-588 $) (-588 |#4|) $) 119) (((-588 $) (-588 |#4|) (-588 $)) 118)) (-3648 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4238)))) (-2360 (((-588 |#3|) $) 81)) (-3021 (((-108) |#4| $) 135)) (-2351 (((-108) |#3| $) 80)) (-1531 (((-108) $ $) 6)) (-3480 (((-708) $) 46 (|has| $ (-6 -4238)))))
+((-3810 (((-719 |#2|) (-1 |#2| |#1|) (-719 |#1|)) 13)))
+(((-718 |#1| |#2|) (-10 -7 (-15 -3810 ((-719 |#2|) (-1 |#2| |#1|) (-719 |#1|)))) (-971) (-971)) (T -718))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-719 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-5 *2 (-719 *6)) (-5 *1 (-718 *5 *6)))))
+(-10 -7 (-15 -3810 ((-719 |#2|) (-1 |#2| |#1|) (-719 |#1|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 12)) (-1428 (((-1166 |#1|) $ (-708)) NIL)) (-3533 (((-588 (-999)) $) NIL)) (-2264 (($ (-1081 |#1|)) NIL)) (-1264 (((-1081 $) $ (-999)) NIL) (((-1081 |#1|) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 (-999))) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1314 (((-588 $) $ $) 39 (|has| |#1| (-514)))) (-3485 (($ $ $) 35 (|has| |#1| (-514)))) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2961 (($ $) NIL (|has| |#1| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-1633 (($ $ (-708)) NIL)) (-2165 (($ $ (-708)) NIL)) (-2458 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-426)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-999) "failed") $) NIL) (((-3 (-1081 |#1|) "failed") $) 10)) (-1478 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-999) $) NIL) (((-1081 |#1|) $) NIL)) (-2908 (($ $ $ (-999)) NIL (|has| |#1| (-157))) ((|#1| $ $) 43 (|has| |#1| (-157)))) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-3241 (($ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-2659 (($ $ $) NIL)) (-2830 (($ $ $) 71 (|has| |#1| (-514)))) (-3370 (((-2 (|:| -3112 |#1|) (|:| -3450 $) (|:| -4002 $)) $ $) 70 (|has| |#1| (-514)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2883 (($ $) NIL (|has| |#1| (-426))) (($ $ (-999)) NIL (|has| |#1| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#1| (-838)))) (-3792 (($ $ |#1| (-708) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-999) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-999) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3872 (((-708) $ $) NIL (|has| |#1| (-514)))) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-4208 (((-3 $ "failed") $) NIL (|has| |#1| (-1061)))) (-3520 (($ (-1081 |#1|) (-999)) NIL) (($ (-1081 $) (-999)) NIL)) (-2895 (($ $ (-708)) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-708)) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-3556 (($ $ $) 20)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ (-999)) NIL) (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-3564 (((-708) $) NIL) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-1723 (($ (-1 (-708) (-708)) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-4178 (((-1081 |#1|) $) NIL)) (-3155 (((-3 (-999) "failed") $) NIL)) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-3816 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -4062 (-708))) $ $) 26)) (-1554 (($ $ $) 29)) (-2393 (($ $ $) 32)) (-1456 (((-2 (|:| -3112 |#1|) (|:| |gap| (-708)) (|:| -3450 $) (|:| -4002 $)) $ $) 31)) (-2311 (((-1068) $) NIL)) (-1998 (($ $ $) 41 (|has| |#1| (-514)))) (-2927 (((-2 (|:| -3450 $) (|:| -4002 $)) $ (-708)) NIL)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| (-999)) (|:| -3858 (-708))) "failed") $) NIL)) (-2611 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3937 (($) NIL (|has| |#1| (-1061)) CONST)) (-4174 (((-1032) $) NIL)) (-3214 (((-2 (|:| -2308 $) (|:| |coef2| $)) $ $) 67 (|has| |#1| (-514)))) (-2997 (((-2 (|:| -2308 $) (|:| |coef1| $)) $ $) 63 (|has| |#1| (-514)))) (-4115 (((-2 (|:| -2908 |#1|) (|:| |coef2| $)) $ $) 55 (|has| |#1| (-514)))) (-3400 (((-2 (|:| -2908 |#1|) (|:| |coef1| $)) $ $) 51 (|has| |#1| (-514)))) (-3199 (((-108) $) 13)) (-3207 ((|#1| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-1953 (($ $ (-708) |#1| $) 19)) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-838)))) (-2078 (((-2 (|:| -2308 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 59 (|has| |#1| (-514)))) (-4065 (((-2 (|:| -2908 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 47 (|has| |#1| (-514)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-999) |#1|) NIL) (($ $ (-588 (-999)) (-588 |#1|)) NIL) (($ $ (-999) $) NIL) (($ $ (-588 (-999)) (-588 $)) NIL)) (-4031 (((-708) $) NIL (|has| |#1| (-338)))) (-2683 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-382 $) (-382 $) (-382 $)) NIL (|has| |#1| (-514))) ((|#1| (-382 $) |#1|) NIL (|has| |#1| (-338))) (((-382 $) $ (-382 $)) NIL (|has| |#1| (-514)))) (-2877 (((-3 $ "failed") $ (-708)) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-1615 (($ $ (-999)) NIL (|has| |#1| (-157))) ((|#1| $) NIL (|has| |#1| (-157)))) (-2731 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-2487 (((-708) $) NIL) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| (-999) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-999) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-999) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2988 ((|#1| $) NIL (|has| |#1| (-426))) (($ $ (-999)) NIL (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-3884 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514))) (((-3 (-382 $) "failed") (-382 $) $) NIL (|has| |#1| (-514)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-999)) NIL) (((-1081 |#1|) $) 7) (($ (-1081 |#1|)) 8) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-708)) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 21 T CONST)) (-3709 (($) 24 T CONST)) (-2252 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $) 28) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 23) (($ $ |#1|) NIL)))
+(((-719 |#1|) (-13 (-1142 |#1|) (-562 (-1081 |#1|)) (-962 (-1081 |#1|)) (-10 -8 (-15 -1953 ($ $ (-708) |#1| $)) (-15 -3556 ($ $ $)) (-15 -3816 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -4062 (-708))) $ $)) (-15 -1554 ($ $ $)) (-15 -1456 ((-2 (|:| -3112 |#1|) (|:| |gap| (-708)) (|:| -3450 $) (|:| -4002 $)) $ $)) (-15 -2393 ($ $ $)) (IF (|has| |#1| (-514)) (PROGN (-15 -1314 ((-588 $) $ $)) (-15 -1998 ($ $ $)) (-15 -2078 ((-2 (|:| -2308 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2997 ((-2 (|:| -2308 $) (|:| |coef1| $)) $ $)) (-15 -3214 ((-2 (|:| -2308 $) (|:| |coef2| $)) $ $)) (-15 -4065 ((-2 (|:| -2908 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3400 ((-2 (|:| -2908 |#1|) (|:| |coef1| $)) $ $)) (-15 -4115 ((-2 (|:| -2908 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-971)) (T -719))
+((-1953 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-708)) (-5 *1 (-719 *3)) (-4 *3 (-971)))) (-3556 (*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-971)))) (-3816 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-719 *3)) (|:| |polden| *3) (|:| -4062 (-708)))) (-5 *1 (-719 *3)) (-4 *3 (-971)))) (-1554 (*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-971)))) (-1456 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3112 *3) (|:| |gap| (-708)) (|:| -3450 (-719 *3)) (|:| -4002 (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-971)))) (-2393 (*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-971)))) (-1314 (*1 *2 *1 *1) (-12 (-5 *2 (-588 (-719 *3))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))) (-1998 (*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-514)) (-4 *2 (-971)))) (-2078 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2308 (-719 *3)) (|:| |coef1| (-719 *3)) (|:| |coef2| (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))) (-2997 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2308 (-719 *3)) (|:| |coef1| (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))) (-3214 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2308 (-719 *3)) (|:| |coef2| (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))) (-4065 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2908 *3) (|:| |coef1| (-719 *3)) (|:| |coef2| (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))) (-3400 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2908 *3) (|:| |coef1| (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))) (-4115 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2908 *3) (|:| |coef2| (-719 *3)))) (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))))
+(-13 (-1142 |#1|) (-562 (-1081 |#1|)) (-962 (-1081 |#1|)) (-10 -8 (-15 -1953 ($ $ (-708) |#1| $)) (-15 -3556 ($ $ $)) (-15 -3816 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -4062 (-708))) $ $)) (-15 -1554 ($ $ $)) (-15 -1456 ((-2 (|:| -3112 |#1|) (|:| |gap| (-708)) (|:| -3450 $) (|:| -4002 $)) $ $)) (-15 -2393 ($ $ $)) (IF (|has| |#1| (-514)) (PROGN (-15 -1314 ((-588 $) $ $)) (-15 -1998 ($ $ $)) (-15 -2078 ((-2 (|:| -2308 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2997 ((-2 (|:| -2308 $) (|:| |coef1| $)) $ $)) (-15 -3214 ((-2 (|:| -2308 $) (|:| |coef2| $)) $ $)) (-15 -4065 ((-2 (|:| -2908 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3400 ((-2 (|:| -2908 |#1|) (|:| |coef1| $)) $ $)) (-15 -4115 ((-2 (|:| -2908 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
+((-2121 ((|#1| (-708) |#1|) 33 (|has| |#1| (-37 (-382 (-522)))))) (-2406 ((|#1| (-708) |#1|) 23)) (-2858 ((|#1| (-708) |#1|) 35 (|has| |#1| (-37 (-382 (-522)))))))
+(((-720 |#1|) (-10 -7 (-15 -2406 (|#1| (-708) |#1|)) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -2858 (|#1| (-708) |#1|)) (-15 -2121 (|#1| (-708) |#1|))) |%noBranch|)) (-157)) (T -720))
+((-2121 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-720 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-157)))) (-2858 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-720 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-157)))) (-2406 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-720 *2)) (-4 *2 (-157)))))
+(-10 -7 (-15 -2406 (|#1| (-708) |#1|)) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -2858 (|#1| (-708) |#1|)) (-15 -2121 (|#1| (-708) |#1|))) |%noBranch|))
+((-1419 (((-108) $ $) 7)) (-3829 (((-588 (-2 (|:| -1720 $) (|:| -1566 (-588 |#4|)))) (-588 |#4|)) 85)) (-2510 (((-588 $) (-588 |#4|)) 86) (((-588 $) (-588 |#4|) (-108)) 111)) (-3533 (((-588 |#3|) $) 33)) (-2161 (((-108) $) 26)) (-2702 (((-108) $) 17 (|has| |#1| (-514)))) (-1900 (((-108) |#4| $) 101) (((-108) $) 97)) (-2163 ((|#4| |#4| $) 92)) (-2961 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 $))) |#4| $) 126)) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |#3|) 27)) (-2717 (((-108) $ (-708)) 44)) (-1696 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 79)) (-3367 (($) 45 T CONST)) (-1298 (((-108) $) 22 (|has| |#1| (-514)))) (-1657 (((-108) $ $) 24 (|has| |#1| (-514)))) (-3598 (((-108) $ $) 23 (|has| |#1| (-514)))) (-2818 (((-108) $) 25 (|has| |#1| (-514)))) (-3090 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3461 (((-588 |#4|) (-588 |#4|) $) 18 (|has| |#1| (-514)))) (-3668 (((-588 |#4|) (-588 |#4|) $) 19 (|has| |#1| (-514)))) (-3700 (((-3 $ "failed") (-588 |#4|)) 36)) (-1478 (($ (-588 |#4|)) 35)) (-2352 (((-3 $ "failed") $) 82)) (-2625 ((|#4| |#4| $) 89)) (-2379 (($ $) 68 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#4| $) 67 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4238)))) (-4002 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-514)))) (-1426 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-2918 ((|#4| |#4| $) 87)) (-2153 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-1199 (((-2 (|:| -1720 (-588 |#4|)) (|:| -1566 (-588 |#4|))) $) 105)) (-2396 (((-108) |#4| $) 136)) (-3039 (((-108) |#4| $) 133)) (-2278 (((-108) |#4| $) 137) (((-108) $) 134)) (-2395 (((-588 |#4|) $) 52 (|has| $ (-6 -4238)))) (-1384 (((-108) |#4| $) 104) (((-108) $) 103)) (-1933 ((|#3| $) 34)) (-1480 (((-108) $ (-708)) 43)) (-4084 (((-588 |#4|) $) 53 (|has| $ (-6 -4238)))) (-4176 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#4| |#4|) $) 47)) (-2714 (((-588 |#3|) $) 32)) (-3826 (((-108) |#3| $) 31)) (-3309 (((-108) $ (-708)) 42)) (-2311 (((-1068) $) 9)) (-1418 (((-3 |#4| (-588 $)) |#4| |#4| $) 128)) (-1998 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 $))) |#4| |#4| $) 127)) (-1442 (((-3 |#4| "failed") $) 83)) (-1468 (((-588 $) |#4| $) 129)) (-1892 (((-3 (-108) (-588 $)) |#4| $) 132)) (-1862 (((-588 (-2 (|:| |val| (-108)) (|:| -1974 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-2251 (((-588 $) |#4| $) 125) (((-588 $) (-588 |#4|) $) 124) (((-588 $) (-588 |#4|) (-588 $)) 123) (((-588 $) |#4| (-588 $)) 122)) (-2953 (($ |#4| $) 117) (($ (-588 |#4|) $) 116)) (-4138 (((-588 |#4|) $) 107)) (-3864 (((-108) |#4| $) 99) (((-108) $) 95)) (-2556 ((|#4| |#4| $) 90)) (-1517 (((-108) $ $) 110)) (-2507 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-514)))) (-3060 (((-108) |#4| $) 100) (((-108) $) 96)) (-3896 ((|#4| |#4| $) 91)) (-4174 (((-1032) $) 10)) (-2337 (((-3 |#4| "failed") $) 84)) (-2187 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-4078 (((-3 $ "failed") $ |#4|) 78)) (-3934 (($ $ |#4|) 77) (((-588 $) |#4| $) 115) (((-588 $) |#4| (-588 $)) 114) (((-588 $) (-588 |#4|) $) 113) (((-588 $) (-588 |#4|) (-588 $)) 112)) (-3487 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#4|) (-588 |#4|)) 59 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) 57 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) 56 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-2065 (((-108) $ $) 38)) (-3494 (((-108) $) 41)) (-3298 (($) 40)) (-2487 (((-708) $) 106)) (-4187 (((-708) |#4| $) 54 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4238)))) (-2463 (($ $) 39)) (-3873 (((-498) $) 69 (|has| |#4| (-563 (-498))))) (-2227 (($ (-588 |#4|)) 60)) (-2271 (($ $ |#3|) 28)) (-2154 (($ $ |#3|) 30)) (-1524 (($ $) 88)) (-2773 (($ $ |#3|) 29)) (-2217 (((-792) $) 11) (((-588 |#4|) $) 37)) (-3111 (((-708) $) 76 (|has| |#3| (-343)))) (-3538 (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-2102 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) 98)) (-3386 (((-588 $) |#4| $) 121) (((-588 $) |#4| (-588 $)) 120) (((-588 $) (-588 |#4|) $) 119) (((-588 $) (-588 |#4|) (-588 $)) 118)) (-1381 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4238)))) (-1982 (((-588 |#3|) $) 81)) (-1336 (((-108) |#4| $) 135)) (-1711 (((-108) |#3| $) 80)) (-1562 (((-108) $ $) 6)) (-3591 (((-708) $) 46 (|has| $ (-6 -4238)))))
(((-721 |#1| |#2| |#3| |#4|) (-1197) (-426) (-730) (-784) (-985 |t#1| |t#2| |t#3|)) (T -721))
NIL
(-13 (-990 |t#1| |t#2| |t#3| |t#4|))
(((-33) . T) ((-97) . T) ((-562 (-588 |#4|)) . T) ((-562 (-792)) . T) ((-139 |#4|) . T) ((-563 (-498)) |has| |#4| (-563 (-498))) ((-285 |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))) ((-461 |#4|) . T) ((-483 |#4| |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))) ((-903 |#1| |#2| |#3| |#4|) . T) ((-990 |#1| |#2| |#3| |#4|) . T) ((-1014) . T) ((-1114 |#1| |#2| |#3| |#4|) . T) ((-1120) . T))
-((-2603 (((-3 (-354) "failed") (-291 |#1|) (-850)) 60 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-3 (-354) "failed") (-291 |#1|)) 52 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-3 (-354) "failed") (-382 (-881 |#1|)) (-850)) 39 (|has| |#1| (-514))) (((-3 (-354) "failed") (-382 (-881 |#1|))) 35 (|has| |#1| (-514))) (((-3 (-354) "failed") (-881 |#1|) (-850)) 30 (|has| |#1| (-971))) (((-3 (-354) "failed") (-881 |#1|)) 24 (|has| |#1| (-971)))) (-2389 (((-354) (-291 |#1|) (-850)) 92 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-354) (-291 |#1|)) 87 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-354) (-382 (-881 |#1|)) (-850)) 84 (|has| |#1| (-514))) (((-354) (-382 (-881 |#1|))) 81 (|has| |#1| (-514))) (((-354) (-881 |#1|) (-850)) 80 (|has| |#1| (-971))) (((-354) (-881 |#1|)) 77 (|has| |#1| (-971))) (((-354) |#1| (-850)) 73) (((-354) |#1|) 22)) (-3454 (((-3 (-154 (-354)) "failed") (-291 (-154 |#1|)) (-850)) 68 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-3 (-154 (-354)) "failed") (-291 (-154 |#1|))) 58 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-3 (-154 (-354)) "failed") (-291 |#1|) (-850)) 61 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-3 (-154 (-354)) "failed") (-291 |#1|)) 59 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-3 (-154 (-354)) "failed") (-382 (-881 (-154 |#1|))) (-850)) 44 (|has| |#1| (-514))) (((-3 (-154 (-354)) "failed") (-382 (-881 (-154 |#1|)))) 43 (|has| |#1| (-514))) (((-3 (-154 (-354)) "failed") (-382 (-881 |#1|)) (-850)) 38 (|has| |#1| (-514))) (((-3 (-154 (-354)) "failed") (-382 (-881 |#1|))) 37 (|has| |#1| (-514))) (((-3 (-154 (-354)) "failed") (-881 |#1|) (-850)) 28 (|has| |#1| (-971))) (((-3 (-154 (-354)) "failed") (-881 |#1|)) 26 (|has| |#1| (-971))) (((-3 (-154 (-354)) "failed") (-881 (-154 |#1|)) (-850)) 17 (|has| |#1| (-157))) (((-3 (-154 (-354)) "failed") (-881 (-154 |#1|))) 14 (|has| |#1| (-157)))) (-1244 (((-154 (-354)) (-291 (-154 |#1|)) (-850)) 95 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-154 (-354)) (-291 (-154 |#1|))) 94 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-154 (-354)) (-291 |#1|) (-850)) 93 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-154 (-354)) (-291 |#1|)) 91 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-154 (-354)) (-382 (-881 (-154 |#1|))) (-850)) 86 (|has| |#1| (-514))) (((-154 (-354)) (-382 (-881 (-154 |#1|)))) 85 (|has| |#1| (-514))) (((-154 (-354)) (-382 (-881 |#1|)) (-850)) 83 (|has| |#1| (-514))) (((-154 (-354)) (-382 (-881 |#1|))) 82 (|has| |#1| (-514))) (((-154 (-354)) (-881 |#1|) (-850)) 79 (|has| |#1| (-971))) (((-154 (-354)) (-881 |#1|)) 78 (|has| |#1| (-971))) (((-154 (-354)) (-881 (-154 |#1|)) (-850)) 75 (|has| |#1| (-157))) (((-154 (-354)) (-881 (-154 |#1|))) 74 (|has| |#1| (-157))) (((-154 (-354)) (-154 |#1|) (-850)) 16 (|has| |#1| (-157))) (((-154 (-354)) (-154 |#1|)) 12 (|has| |#1| (-157))) (((-154 (-354)) |#1| (-850)) 27) (((-154 (-354)) |#1|) 25)))
-(((-722 |#1|) (-10 -7 (-15 -2389 ((-354) |#1|)) (-15 -2389 ((-354) |#1| (-850))) (-15 -1244 ((-154 (-354)) |#1|)) (-15 -1244 ((-154 (-354)) |#1| (-850))) (IF (|has| |#1| (-157)) (PROGN (-15 -1244 ((-154 (-354)) (-154 |#1|))) (-15 -1244 ((-154 (-354)) (-154 |#1|) (-850))) (-15 -1244 ((-154 (-354)) (-881 (-154 |#1|)))) (-15 -1244 ((-154 (-354)) (-881 (-154 |#1|)) (-850)))) |%noBranch|) (IF (|has| |#1| (-971)) (PROGN (-15 -2389 ((-354) (-881 |#1|))) (-15 -2389 ((-354) (-881 |#1|) (-850))) (-15 -1244 ((-154 (-354)) (-881 |#1|))) (-15 -1244 ((-154 (-354)) (-881 |#1|) (-850)))) |%noBranch|) (IF (|has| |#1| (-514)) (PROGN (-15 -2389 ((-354) (-382 (-881 |#1|)))) (-15 -2389 ((-354) (-382 (-881 |#1|)) (-850))) (-15 -1244 ((-154 (-354)) (-382 (-881 |#1|)))) (-15 -1244 ((-154 (-354)) (-382 (-881 |#1|)) (-850))) (-15 -1244 ((-154 (-354)) (-382 (-881 (-154 |#1|))))) (-15 -1244 ((-154 (-354)) (-382 (-881 (-154 |#1|))) (-850))) (IF (|has| |#1| (-784)) (PROGN (-15 -2389 ((-354) (-291 |#1|))) (-15 -2389 ((-354) (-291 |#1|) (-850))) (-15 -1244 ((-154 (-354)) (-291 |#1|))) (-15 -1244 ((-154 (-354)) (-291 |#1|) (-850))) (-15 -1244 ((-154 (-354)) (-291 (-154 |#1|)))) (-15 -1244 ((-154 (-354)) (-291 (-154 |#1|)) (-850)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-157)) (PROGN (-15 -3454 ((-3 (-154 (-354)) "failed") (-881 (-154 |#1|)))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-881 (-154 |#1|)) (-850)))) |%noBranch|) (IF (|has| |#1| (-971)) (PROGN (-15 -2603 ((-3 (-354) "failed") (-881 |#1|))) (-15 -2603 ((-3 (-354) "failed") (-881 |#1|) (-850))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-881 |#1|))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-881 |#1|) (-850)))) |%noBranch|) (IF (|has| |#1| (-514)) (PROGN (-15 -2603 ((-3 (-354) "failed") (-382 (-881 |#1|)))) (-15 -2603 ((-3 (-354) "failed") (-382 (-881 |#1|)) (-850))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-382 (-881 |#1|)))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-382 (-881 |#1|)) (-850))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-382 (-881 (-154 |#1|))))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-382 (-881 (-154 |#1|))) (-850))) (IF (|has| |#1| (-784)) (PROGN (-15 -2603 ((-3 (-354) "failed") (-291 |#1|))) (-15 -2603 ((-3 (-354) "failed") (-291 |#1|) (-850))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-291 |#1|))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-291 |#1|) (-850))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-291 (-154 |#1|)))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-291 (-154 |#1|)) (-850)))) |%noBranch|)) |%noBranch|)) (-563 (-354))) (T -722))
-((-3454 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-291 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-3454 (*1 *2 *3) (|partial| -12 (-5 *3 (-291 (-154 *4))) (-4 *4 (-514)) (-4 *4 (-784)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-3454 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-3454 (*1 *2 *3) (|partial| -12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-2603 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784)) (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))) (-2603 (*1 *2 *3) (|partial| -12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784)) (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4)))) (-3454 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-382 (-881 (-154 *5)))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-3454 (*1 *2 *3) (|partial| -12 (-5 *3 (-382 (-881 (-154 *4)))) (-4 *4 (-514)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-3454 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-3454 (*1 *2 *3) (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-2603 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))) (-2603 (*1 *2 *3) (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4)))) (-3454 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-3454 (*1 *2 *3) (|partial| -12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-2603 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971)) (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))) (-2603 (*1 *2 *3) (|partial| -12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4)))) (-3454 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-881 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-157)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-3454 (*1 *2 *3) (|partial| -12 (-5 *3 (-881 (-154 *4))) (-4 *4 (-157)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1244 (*1 *2 *3 *4) (-12 (-5 *3 (-291 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1244 (*1 *2 *3) (-12 (-5 *3 (-291 (-154 *4))) (-4 *4 (-514)) (-4 *4 (-784)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1244 (*1 *2 *3 *4) (-12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1244 (*1 *2 *3) (-12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-2389 (*1 *2 *3 *4) (-12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784)) (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))) (-2389 (*1 *2 *3) (-12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784)) (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4)))) (-1244 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 (-154 *5)))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1244 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 (-154 *4)))) (-4 *4 (-514)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1244 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1244 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-2389 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))) (-2389 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4)))) (-1244 (*1 *2 *3 *4) (-12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1244 (*1 *2 *3) (-12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-2389 (*1 *2 *3 *4) (-12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971)) (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))) (-2389 (*1 *2 *3) (-12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4)))) (-1244 (*1 *2 *3 *4) (-12 (-5 *3 (-881 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-157)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1244 (*1 *2 *3) (-12 (-5 *3 (-881 (-154 *4))) (-4 *4 (-157)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1244 (*1 *2 *3 *4) (-12 (-5 *3 (-154 *5)) (-5 *4 (-850)) (-4 *5 (-157)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1244 (*1 *2 *3) (-12 (-5 *3 (-154 *4)) (-4 *4 (-157)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1244 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-5 *2 (-154 (-354))) (-5 *1 (-722 *3)) (-4 *3 (-563 (-354))))) (-1244 (*1 *2 *3) (-12 (-5 *2 (-154 (-354))) (-5 *1 (-722 *3)) (-4 *3 (-563 (-354))))) (-2389 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-5 *2 (-354)) (-5 *1 (-722 *3)) (-4 *3 (-563 *2)))) (-2389 (*1 *2 *3) (-12 (-5 *2 (-354)) (-5 *1 (-722 *3)) (-4 *3 (-563 *2)))))
-(-10 -7 (-15 -2389 ((-354) |#1|)) (-15 -2389 ((-354) |#1| (-850))) (-15 -1244 ((-154 (-354)) |#1|)) (-15 -1244 ((-154 (-354)) |#1| (-850))) (IF (|has| |#1| (-157)) (PROGN (-15 -1244 ((-154 (-354)) (-154 |#1|))) (-15 -1244 ((-154 (-354)) (-154 |#1|) (-850))) (-15 -1244 ((-154 (-354)) (-881 (-154 |#1|)))) (-15 -1244 ((-154 (-354)) (-881 (-154 |#1|)) (-850)))) |%noBranch|) (IF (|has| |#1| (-971)) (PROGN (-15 -2389 ((-354) (-881 |#1|))) (-15 -2389 ((-354) (-881 |#1|) (-850))) (-15 -1244 ((-154 (-354)) (-881 |#1|))) (-15 -1244 ((-154 (-354)) (-881 |#1|) (-850)))) |%noBranch|) (IF (|has| |#1| (-514)) (PROGN (-15 -2389 ((-354) (-382 (-881 |#1|)))) (-15 -2389 ((-354) (-382 (-881 |#1|)) (-850))) (-15 -1244 ((-154 (-354)) (-382 (-881 |#1|)))) (-15 -1244 ((-154 (-354)) (-382 (-881 |#1|)) (-850))) (-15 -1244 ((-154 (-354)) (-382 (-881 (-154 |#1|))))) (-15 -1244 ((-154 (-354)) (-382 (-881 (-154 |#1|))) (-850))) (IF (|has| |#1| (-784)) (PROGN (-15 -2389 ((-354) (-291 |#1|))) (-15 -2389 ((-354) (-291 |#1|) (-850))) (-15 -1244 ((-154 (-354)) (-291 |#1|))) (-15 -1244 ((-154 (-354)) (-291 |#1|) (-850))) (-15 -1244 ((-154 (-354)) (-291 (-154 |#1|)))) (-15 -1244 ((-154 (-354)) (-291 (-154 |#1|)) (-850)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-157)) (PROGN (-15 -3454 ((-3 (-154 (-354)) "failed") (-881 (-154 |#1|)))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-881 (-154 |#1|)) (-850)))) |%noBranch|) (IF (|has| |#1| (-971)) (PROGN (-15 -2603 ((-3 (-354) "failed") (-881 |#1|))) (-15 -2603 ((-3 (-354) "failed") (-881 |#1|) (-850))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-881 |#1|))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-881 |#1|) (-850)))) |%noBranch|) (IF (|has| |#1| (-514)) (PROGN (-15 -2603 ((-3 (-354) "failed") (-382 (-881 |#1|)))) (-15 -2603 ((-3 (-354) "failed") (-382 (-881 |#1|)) (-850))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-382 (-881 |#1|)))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-382 (-881 |#1|)) (-850))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-382 (-881 (-154 |#1|))))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-382 (-881 (-154 |#1|))) (-850))) (IF (|has| |#1| (-784)) (PROGN (-15 -2603 ((-3 (-354) "failed") (-291 |#1|))) (-15 -2603 ((-3 (-354) "failed") (-291 |#1|) (-850))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-291 |#1|))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-291 |#1|) (-850))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-291 (-154 |#1|)))) (-15 -3454 ((-3 (-154 (-354)) "failed") (-291 (-154 |#1|)) (-850)))) |%noBranch|)) |%noBranch|))
-((-1838 (((-850) (-1068)) 64)) (-3489 (((-3 (-354) "failed") (-1068)) 33)) (-4109 (((-354) (-1068)) 31)) (-2161 (((-850) (-1068)) 54)) (-2043 (((-1068) (-850)) 55)) (-2882 (((-1068) (-850)) 53)))
-(((-723) (-10 -7 (-15 -2882 ((-1068) (-850))) (-15 -2161 ((-850) (-1068))) (-15 -2043 ((-1068) (-850))) (-15 -1838 ((-850) (-1068))) (-15 -4109 ((-354) (-1068))) (-15 -3489 ((-3 (-354) "failed") (-1068))))) (T -723))
-((-3489 (*1 *2 *3) (|partial| -12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-723)))) (-4109 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-723)))) (-1838 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-850)) (-5 *1 (-723)))) (-2043 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1068)) (-5 *1 (-723)))) (-2161 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-850)) (-5 *1 (-723)))) (-2882 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1068)) (-5 *1 (-723)))))
-(-10 -7 (-15 -2882 ((-1068) (-850))) (-15 -2161 ((-850) (-1068))) (-15 -2043 ((-1068) (-850))) (-15 -1838 ((-850) (-1068))) (-15 -4109 ((-354) (-1068))) (-15 -3489 ((-3 (-354) "failed") (-1068))))
-((-1416 (((-108) $ $) 7)) (-1354 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 15) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 13)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 16) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-1531 (((-108) $ $) 6)))
+((-1984 (((-3 (-354) "failed") (-291 |#1|) (-850)) 60 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-3 (-354) "failed") (-291 |#1|)) 52 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-3 (-354) "failed") (-382 (-881 |#1|)) (-850)) 39 (|has| |#1| (-514))) (((-3 (-354) "failed") (-382 (-881 |#1|))) 35 (|has| |#1| (-514))) (((-3 (-354) "failed") (-881 |#1|) (-850)) 30 (|has| |#1| (-971))) (((-3 (-354) "failed") (-881 |#1|)) 24 (|has| |#1| (-971)))) (-3895 (((-354) (-291 |#1|) (-850)) 92 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-354) (-291 |#1|)) 87 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-354) (-382 (-881 |#1|)) (-850)) 84 (|has| |#1| (-514))) (((-354) (-382 (-881 |#1|))) 81 (|has| |#1| (-514))) (((-354) (-881 |#1|) (-850)) 80 (|has| |#1| (-971))) (((-354) (-881 |#1|)) 77 (|has| |#1| (-971))) (((-354) |#1| (-850)) 73) (((-354) |#1|) 22)) (-3159 (((-3 (-154 (-354)) "failed") (-291 (-154 |#1|)) (-850)) 68 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-3 (-154 (-354)) "failed") (-291 (-154 |#1|))) 58 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-3 (-154 (-354)) "failed") (-291 |#1|) (-850)) 61 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-3 (-154 (-354)) "failed") (-291 |#1|)) 59 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-3 (-154 (-354)) "failed") (-382 (-881 (-154 |#1|))) (-850)) 44 (|has| |#1| (-514))) (((-3 (-154 (-354)) "failed") (-382 (-881 (-154 |#1|)))) 43 (|has| |#1| (-514))) (((-3 (-154 (-354)) "failed") (-382 (-881 |#1|)) (-850)) 38 (|has| |#1| (-514))) (((-3 (-154 (-354)) "failed") (-382 (-881 |#1|))) 37 (|has| |#1| (-514))) (((-3 (-154 (-354)) "failed") (-881 |#1|) (-850)) 28 (|has| |#1| (-971))) (((-3 (-154 (-354)) "failed") (-881 |#1|)) 26 (|has| |#1| (-971))) (((-3 (-154 (-354)) "failed") (-881 (-154 |#1|)) (-850)) 17 (|has| |#1| (-157))) (((-3 (-154 (-354)) "failed") (-881 (-154 |#1|))) 14 (|has| |#1| (-157)))) (-1232 (((-154 (-354)) (-291 (-154 |#1|)) (-850)) 95 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-154 (-354)) (-291 (-154 |#1|))) 94 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-154 (-354)) (-291 |#1|) (-850)) 93 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-154 (-354)) (-291 |#1|)) 91 (-12 (|has| |#1| (-514)) (|has| |#1| (-784)))) (((-154 (-354)) (-382 (-881 (-154 |#1|))) (-850)) 86 (|has| |#1| (-514))) (((-154 (-354)) (-382 (-881 (-154 |#1|)))) 85 (|has| |#1| (-514))) (((-154 (-354)) (-382 (-881 |#1|)) (-850)) 83 (|has| |#1| (-514))) (((-154 (-354)) (-382 (-881 |#1|))) 82 (|has| |#1| (-514))) (((-154 (-354)) (-881 |#1|) (-850)) 79 (|has| |#1| (-971))) (((-154 (-354)) (-881 |#1|)) 78 (|has| |#1| (-971))) (((-154 (-354)) (-881 (-154 |#1|)) (-850)) 75 (|has| |#1| (-157))) (((-154 (-354)) (-881 (-154 |#1|))) 74 (|has| |#1| (-157))) (((-154 (-354)) (-154 |#1|) (-850)) 16 (|has| |#1| (-157))) (((-154 (-354)) (-154 |#1|)) 12 (|has| |#1| (-157))) (((-154 (-354)) |#1| (-850)) 27) (((-154 (-354)) |#1|) 25)))
+(((-722 |#1|) (-10 -7 (-15 -3895 ((-354) |#1|)) (-15 -3895 ((-354) |#1| (-850))) (-15 -1232 ((-154 (-354)) |#1|)) (-15 -1232 ((-154 (-354)) |#1| (-850))) (IF (|has| |#1| (-157)) (PROGN (-15 -1232 ((-154 (-354)) (-154 |#1|))) (-15 -1232 ((-154 (-354)) (-154 |#1|) (-850))) (-15 -1232 ((-154 (-354)) (-881 (-154 |#1|)))) (-15 -1232 ((-154 (-354)) (-881 (-154 |#1|)) (-850)))) |%noBranch|) (IF (|has| |#1| (-971)) (PROGN (-15 -3895 ((-354) (-881 |#1|))) (-15 -3895 ((-354) (-881 |#1|) (-850))) (-15 -1232 ((-154 (-354)) (-881 |#1|))) (-15 -1232 ((-154 (-354)) (-881 |#1|) (-850)))) |%noBranch|) (IF (|has| |#1| (-514)) (PROGN (-15 -3895 ((-354) (-382 (-881 |#1|)))) (-15 -3895 ((-354) (-382 (-881 |#1|)) (-850))) (-15 -1232 ((-154 (-354)) (-382 (-881 |#1|)))) (-15 -1232 ((-154 (-354)) (-382 (-881 |#1|)) (-850))) (-15 -1232 ((-154 (-354)) (-382 (-881 (-154 |#1|))))) (-15 -1232 ((-154 (-354)) (-382 (-881 (-154 |#1|))) (-850))) (IF (|has| |#1| (-784)) (PROGN (-15 -3895 ((-354) (-291 |#1|))) (-15 -3895 ((-354) (-291 |#1|) (-850))) (-15 -1232 ((-154 (-354)) (-291 |#1|))) (-15 -1232 ((-154 (-354)) (-291 |#1|) (-850))) (-15 -1232 ((-154 (-354)) (-291 (-154 |#1|)))) (-15 -1232 ((-154 (-354)) (-291 (-154 |#1|)) (-850)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-157)) (PROGN (-15 -3159 ((-3 (-154 (-354)) "failed") (-881 (-154 |#1|)))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-881 (-154 |#1|)) (-850)))) |%noBranch|) (IF (|has| |#1| (-971)) (PROGN (-15 -1984 ((-3 (-354) "failed") (-881 |#1|))) (-15 -1984 ((-3 (-354) "failed") (-881 |#1|) (-850))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-881 |#1|))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-881 |#1|) (-850)))) |%noBranch|) (IF (|has| |#1| (-514)) (PROGN (-15 -1984 ((-3 (-354) "failed") (-382 (-881 |#1|)))) (-15 -1984 ((-3 (-354) "failed") (-382 (-881 |#1|)) (-850))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-382 (-881 |#1|)))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-382 (-881 |#1|)) (-850))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-382 (-881 (-154 |#1|))))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-382 (-881 (-154 |#1|))) (-850))) (IF (|has| |#1| (-784)) (PROGN (-15 -1984 ((-3 (-354) "failed") (-291 |#1|))) (-15 -1984 ((-3 (-354) "failed") (-291 |#1|) (-850))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-291 |#1|))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-291 |#1|) (-850))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-291 (-154 |#1|)))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-291 (-154 |#1|)) (-850)))) |%noBranch|)) |%noBranch|)) (-563 (-354))) (T -722))
+((-3159 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-291 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-3159 (*1 *2 *3) (|partial| -12 (-5 *3 (-291 (-154 *4))) (-4 *4 (-514)) (-4 *4 (-784)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-3159 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-3159 (*1 *2 *3) (|partial| -12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1984 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784)) (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))) (-1984 (*1 *2 *3) (|partial| -12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784)) (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4)))) (-3159 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-382 (-881 (-154 *5)))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-3159 (*1 *2 *3) (|partial| -12 (-5 *3 (-382 (-881 (-154 *4)))) (-4 *4 (-514)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-3159 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-3159 (*1 *2 *3) (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1984 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))) (-1984 (*1 *2 *3) (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4)))) (-3159 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-3159 (*1 *2 *3) (|partial| -12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1984 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971)) (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))) (-1984 (*1 *2 *3) (|partial| -12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4)))) (-3159 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-881 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-157)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-3159 (*1 *2 *3) (|partial| -12 (-5 *3 (-881 (-154 *4))) (-4 *4 (-157)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1232 (*1 *2 *3 *4) (-12 (-5 *3 (-291 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1232 (*1 *2 *3) (-12 (-5 *3 (-291 (-154 *4))) (-4 *4 (-514)) (-4 *4 (-784)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1232 (*1 *2 *3 *4) (-12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1232 (*1 *2 *3) (-12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-3895 (*1 *2 *3 *4) (-12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784)) (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))) (-3895 (*1 *2 *3) (-12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784)) (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4)))) (-1232 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 (-154 *5)))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1232 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 (-154 *4)))) (-4 *4 (-514)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1232 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1232 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-3895 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))) (-3895 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4)))) (-1232 (*1 *2 *3 *4) (-12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1232 (*1 *2 *3) (-12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-3895 (*1 *2 *3 *4) (-12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971)) (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))) (-3895 (*1 *2 *3) (-12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4)))) (-1232 (*1 *2 *3 *4) (-12 (-5 *3 (-881 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-157)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1232 (*1 *2 *3) (-12 (-5 *3 (-881 (-154 *4))) (-4 *4 (-157)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1232 (*1 *2 *3 *4) (-12 (-5 *3 (-154 *5)) (-5 *4 (-850)) (-4 *5 (-157)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5)))) (-1232 (*1 *2 *3) (-12 (-5 *3 (-154 *4)) (-4 *4 (-157)) (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4)))) (-1232 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-5 *2 (-154 (-354))) (-5 *1 (-722 *3)) (-4 *3 (-563 (-354))))) (-1232 (*1 *2 *3) (-12 (-5 *2 (-154 (-354))) (-5 *1 (-722 *3)) (-4 *3 (-563 (-354))))) (-3895 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-5 *2 (-354)) (-5 *1 (-722 *3)) (-4 *3 (-563 *2)))) (-3895 (*1 *2 *3) (-12 (-5 *2 (-354)) (-5 *1 (-722 *3)) (-4 *3 (-563 *2)))))
+(-10 -7 (-15 -3895 ((-354) |#1|)) (-15 -3895 ((-354) |#1| (-850))) (-15 -1232 ((-154 (-354)) |#1|)) (-15 -1232 ((-154 (-354)) |#1| (-850))) (IF (|has| |#1| (-157)) (PROGN (-15 -1232 ((-154 (-354)) (-154 |#1|))) (-15 -1232 ((-154 (-354)) (-154 |#1|) (-850))) (-15 -1232 ((-154 (-354)) (-881 (-154 |#1|)))) (-15 -1232 ((-154 (-354)) (-881 (-154 |#1|)) (-850)))) |%noBranch|) (IF (|has| |#1| (-971)) (PROGN (-15 -3895 ((-354) (-881 |#1|))) (-15 -3895 ((-354) (-881 |#1|) (-850))) (-15 -1232 ((-154 (-354)) (-881 |#1|))) (-15 -1232 ((-154 (-354)) (-881 |#1|) (-850)))) |%noBranch|) (IF (|has| |#1| (-514)) (PROGN (-15 -3895 ((-354) (-382 (-881 |#1|)))) (-15 -3895 ((-354) (-382 (-881 |#1|)) (-850))) (-15 -1232 ((-154 (-354)) (-382 (-881 |#1|)))) (-15 -1232 ((-154 (-354)) (-382 (-881 |#1|)) (-850))) (-15 -1232 ((-154 (-354)) (-382 (-881 (-154 |#1|))))) (-15 -1232 ((-154 (-354)) (-382 (-881 (-154 |#1|))) (-850))) (IF (|has| |#1| (-784)) (PROGN (-15 -3895 ((-354) (-291 |#1|))) (-15 -3895 ((-354) (-291 |#1|) (-850))) (-15 -1232 ((-154 (-354)) (-291 |#1|))) (-15 -1232 ((-154 (-354)) (-291 |#1|) (-850))) (-15 -1232 ((-154 (-354)) (-291 (-154 |#1|)))) (-15 -1232 ((-154 (-354)) (-291 (-154 |#1|)) (-850)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-157)) (PROGN (-15 -3159 ((-3 (-154 (-354)) "failed") (-881 (-154 |#1|)))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-881 (-154 |#1|)) (-850)))) |%noBranch|) (IF (|has| |#1| (-971)) (PROGN (-15 -1984 ((-3 (-354) "failed") (-881 |#1|))) (-15 -1984 ((-3 (-354) "failed") (-881 |#1|) (-850))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-881 |#1|))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-881 |#1|) (-850)))) |%noBranch|) (IF (|has| |#1| (-514)) (PROGN (-15 -1984 ((-3 (-354) "failed") (-382 (-881 |#1|)))) (-15 -1984 ((-3 (-354) "failed") (-382 (-881 |#1|)) (-850))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-382 (-881 |#1|)))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-382 (-881 |#1|)) (-850))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-382 (-881 (-154 |#1|))))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-382 (-881 (-154 |#1|))) (-850))) (IF (|has| |#1| (-784)) (PROGN (-15 -1984 ((-3 (-354) "failed") (-291 |#1|))) (-15 -1984 ((-3 (-354) "failed") (-291 |#1|) (-850))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-291 |#1|))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-291 |#1|) (-850))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-291 (-154 |#1|)))) (-15 -3159 ((-3 (-154 (-354)) "failed") (-291 (-154 |#1|)) (-850)))) |%noBranch|)) |%noBranch|))
+((-2348 (((-850) (-1068)) 64)) (-2233 (((-3 (-354) "failed") (-1068)) 33)) (-2285 (((-354) (-1068)) 31)) (-3172 (((-850) (-1068)) 54)) (-2564 (((-1068) (-850)) 55)) (-1386 (((-1068) (-850)) 53)))
+(((-723) (-10 -7 (-15 -1386 ((-1068) (-850))) (-15 -3172 ((-850) (-1068))) (-15 -2564 ((-1068) (-850))) (-15 -2348 ((-850) (-1068))) (-15 -2285 ((-354) (-1068))) (-15 -2233 ((-3 (-354) "failed") (-1068))))) (T -723))
+((-2233 (*1 *2 *3) (|partial| -12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-723)))) (-2285 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-723)))) (-2348 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-850)) (-5 *1 (-723)))) (-2564 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1068)) (-5 *1 (-723)))) (-3172 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-850)) (-5 *1 (-723)))) (-1386 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1068)) (-5 *1 (-723)))))
+(-10 -7 (-15 -1386 ((-1068) (-850))) (-15 -3172 ((-850) (-1068))) (-15 -2564 ((-1068) (-850))) (-15 -2348 ((-850) (-1068))) (-15 -2285 ((-354) (-1068))) (-15 -2233 ((-3 (-354) "failed") (-1068))))
+((-1419 (((-108) $ $) 7)) (-3459 (((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 15) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)) 13)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 16) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-1562 (((-108) $ $) 6)))
(((-724) (-1197)) (T -724))
-((-1798 (*1 *2 *3 *4) (-12 (-4 *1 (-724)) (-5 *3 (-983)) (-5 *4 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960)))))) (-1354 (*1 *2 *3 *2) (-12 (-4 *1 (-724)) (-5 *2 (-960)) (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))))) (-1798 (*1 *2 *3 *4) (-12 (-4 *1 (-724)) (-5 *3 (-983)) (-5 *4 (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960)))))) (-1354 (*1 *2 *3 *2) (-12 (-4 *1 (-724)) (-5 *2 (-960)) (-5 *3 (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))))))
-(-13 (-1014) (-10 -7 (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1354 ((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -1354 ((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)))))
+((-1361 (*1 *2 *3 *4) (-12 (-4 *1 (-724)) (-5 *3 (-983)) (-5 *4 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960)))))) (-3459 (*1 *2 *3 *2) (-12 (-4 *1 (-724)) (-5 *2 (-960)) (-5 *3 (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))))) (-1361 (*1 *2 *3 *4) (-12 (-4 *1 (-724)) (-5 *3 (-983)) (-5 *4 (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960)))))) (-3459 (*1 *2 *3 *2) (-12 (-4 *1 (-724)) (-5 *2 (-960)) (-5 *3 (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))))))
+(-13 (-1014) (-10 -7 (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3459 ((-960) (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202))) (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)) (|:| |extra| (-960))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3459 ((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) (-960)))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-3485 (((-1171) (-1166 (-354)) (-522) (-354) (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3621 (-354))) (-354) (-1166 (-354)) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354))) 44) (((-1171) (-1166 (-354)) (-522) (-354) (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3621 (-354))) (-354) (-1166 (-354)) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354))) 43)) (-2455 (((-1171) (-1166 (-354)) (-522) (-354) (-354) (-522) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354))) 50)) (-1445 (((-1171) (-1166 (-354)) (-522) (-354) (-354) (-354) (-354) (-522) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354))) 41)) (-3139 (((-1171) (-1166 (-354)) (-522) (-354) (-354) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354))) 52) (((-1171) (-1166 (-354)) (-522) (-354) (-354) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354))) 51)))
-(((-725) (-10 -7 (-15 -3139 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))) (-15 -3139 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)))) (-15 -1445 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-354) (-354) (-522) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))) (-15 -3485 ((-1171) (-1166 (-354)) (-522) (-354) (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3621 (-354))) (-354) (-1166 (-354)) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))) (-15 -3485 ((-1171) (-1166 (-354)) (-522) (-354) (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3621 (-354))) (-354) (-1166 (-354)) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)))) (-15 -2455 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-522) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))))) (T -725))
-((-2455 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354))) (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171)) (-5 *1 (-725)))) (-3485 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-522)) (-5 *6 (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3621 (-354)))) (-5 *7 (-1 (-1171) (-1166 *5) (-1166 *5) (-354))) (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171)) (-5 *1 (-725)))) (-3485 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-522)) (-5 *6 (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3621 (-354)))) (-5 *7 (-1 (-1171) (-1166 *5) (-1166 *5) (-354))) (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171)) (-5 *1 (-725)))) (-1445 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354))) (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171)) (-5 *1 (-725)))) (-3139 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354))) (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171)) (-5 *1 (-725)))) (-3139 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354))) (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171)) (-5 *1 (-725)))))
-(-10 -7 (-15 -3139 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))) (-15 -3139 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)))) (-15 -1445 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-354) (-354) (-522) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))) (-15 -3485 ((-1171) (-1166 (-354)) (-522) (-354) (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3621 (-354))) (-354) (-1166 (-354)) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))) (-15 -3485 ((-1171) (-1166 (-354)) (-522) (-354) (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3621 (-354))) (-354) (-1166 (-354)) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)))) (-15 -2455 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-522) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))))
-((-1368 (((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522)) 53)) (-3332 (((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522)) 30)) (-3676 (((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522)) 52)) (-3965 (((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522)) 28)) (-3597 (((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522)) 51)) (-2300 (((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522)) 18)) (-3843 (((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522)) 31)) (-3760 (((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522)) 29)) (-4026 (((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522)) 27)))
-(((-726) (-10 -7 (-15 -4026 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522))) (-15 -3760 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522))) (-15 -3843 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522))) (-15 -2300 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -3965 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -3332 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -3597 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -3676 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -1368 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))))) (T -726))
-((-1368 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-3676 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-3597 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-3332 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-3965 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-2300 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-3843 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-3760 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-4026 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))))
-(-10 -7 (-15 -4026 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522))) (-15 -3760 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522))) (-15 -3843 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522))) (-15 -2300 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -3965 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -3332 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -3597 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -3676 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -1368 ((-2 (|:| -3435 (-354)) (|:| -2972 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))))
-((-2124 (((-1116 |#1|) |#1| (-202) (-522)) 45)))
-(((-727 |#1|) (-10 -7 (-15 -2124 ((-1116 |#1|) |#1| (-202) (-522)))) (-901)) (T -727))
-((-2124 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-202)) (-5 *5 (-522)) (-5 *2 (-1116 *3)) (-5 *1 (-727 *3)) (-4 *3 (-901)))))
-(-10 -7 (-15 -2124 ((-1116 |#1|) |#1| (-202) (-522))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 24)) (-1233 (((-3 $ "failed") $ $) 26)) (-3175 (($) 23 T CONST)) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3566 (($) 22 T CONST)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)) (-1612 (($ $ $) 28) (($ $) 27)) (-1602 (($ $ $) 20)) (* (($ (-708) $) 25) (($ (-850) $) 21) (($ (-522) $) 29)))
+((-3402 (((-1171) (-1166 (-354)) (-522) (-354) (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3745 (-354))) (-354) (-1166 (-354)) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354))) 44) (((-1171) (-1166 (-354)) (-522) (-354) (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3745 (-354))) (-354) (-1166 (-354)) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354))) 43)) (-2671 (((-1171) (-1166 (-354)) (-522) (-354) (-354) (-522) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354))) 50)) (-2498 (((-1171) (-1166 (-354)) (-522) (-354) (-354) (-354) (-354) (-522) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354))) 41)) (-3114 (((-1171) (-1166 (-354)) (-522) (-354) (-354) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354))) 52) (((-1171) (-1166 (-354)) (-522) (-354) (-354) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354))) 51)))
+(((-725) (-10 -7 (-15 -3114 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))) (-15 -3114 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)))) (-15 -2498 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-354) (-354) (-522) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))) (-15 -3402 ((-1171) (-1166 (-354)) (-522) (-354) (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3745 (-354))) (-354) (-1166 (-354)) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))) (-15 -3402 ((-1171) (-1166 (-354)) (-522) (-354) (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3745 (-354))) (-354) (-1166 (-354)) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)))) (-15 -2671 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-522) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))))) (T -725))
+((-2671 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354))) (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171)) (-5 *1 (-725)))) (-3402 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-522)) (-5 *6 (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3745 (-354)))) (-5 *7 (-1 (-1171) (-1166 *5) (-1166 *5) (-354))) (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171)) (-5 *1 (-725)))) (-3402 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-522)) (-5 *6 (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3745 (-354)))) (-5 *7 (-1 (-1171) (-1166 *5) (-1166 *5) (-354))) (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171)) (-5 *1 (-725)))) (-2498 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354))) (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171)) (-5 *1 (-725)))) (-3114 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354))) (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171)) (-5 *1 (-725)))) (-3114 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354))) (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171)) (-5 *1 (-725)))))
+(-10 -7 (-15 -3114 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))) (-15 -3114 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)))) (-15 -2498 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-354) (-354) (-522) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))) (-15 -3402 ((-1171) (-1166 (-354)) (-522) (-354) (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3745 (-354))) (-354) (-1166 (-354)) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))) (-15 -3402 ((-1171) (-1166 (-354)) (-522) (-354) (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3745 (-354))) (-354) (-1166 (-354)) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)) (-1166 (-354)))) (-15 -2671 ((-1171) (-1166 (-354)) (-522) (-354) (-354) (-522) (-1 (-1171) (-1166 (-354)) (-1166 (-354)) (-354)))))
+((-3548 (((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522)) 53)) (-1300 (((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522)) 30)) (-3499 (((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522)) 52)) (-1482 (((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522)) 28)) (-2071 (((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522)) 51)) (-2700 (((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522)) 18)) (-2824 (((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522)) 31)) (-3179 (((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522)) 29)) (-3901 (((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522)) 27)))
+(((-726) (-10 -7 (-15 -3901 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522))) (-15 -3179 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522))) (-15 -2824 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522))) (-15 -2700 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -1482 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -1300 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -2071 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -3499 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -3548 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))))) (T -726))
+((-3548 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-3499 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-2071 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-1300 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-1482 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-2700 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-2824 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-3179 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))) (-3901 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354)) (-5 *2 (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522)) (|:| |success| (-108)))) (-5 *1 (-726)) (-5 *5 (-522)))))
+(-10 -7 (-15 -3901 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522))) (-15 -3179 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522))) (-15 -2824 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522) (-522))) (-15 -2700 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -1482 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -1300 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -2071 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -3499 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))) (-15 -3548 ((-2 (|:| -3526 (-354)) (|:| -3106 (-354)) (|:| |totalpts| (-522)) (|:| |success| (-108))) (-1 (-354) (-354)) (-354) (-354) (-354) (-354) (-522) (-522))))
+((-1530 (((-1116 |#1|) |#1| (-202) (-522)) 45)))
+(((-727 |#1|) (-10 -7 (-15 -1530 ((-1116 |#1|) |#1| (-202) (-522)))) (-901)) (T -727))
+((-1530 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-202)) (-5 *5 (-522)) (-5 *2 (-1116 *3)) (-5 *1 (-727 *3)) (-4 *3 (-901)))))
+(-10 -7 (-15 -1530 ((-1116 |#1|) |#1| (-202) (-522))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 24)) (-2265 (((-3 $ "failed") $ $) 26)) (-3367 (($) 23 T CONST)) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3697 (($) 22 T CONST)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)) (-1672 (($ $ $) 28) (($ $) 27)) (-1661 (($ $ $) 20)) (* (($ (-708) $) 25) (($ (-850) $) 21) (($ (-522) $) 29)))
(((-728) (-1197)) (T -728))
NIL
(-13 (-732) (-21))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-729) . T) ((-731) . T) ((-732) . T) ((-784) . T) ((-1014) . T))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 24)) (-3175 (($) 23 T CONST)) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3566 (($) 22 T CONST)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)) (-1602 (($ $ $) 20)) (* (($ (-708) $) 25) (($ (-850) $) 21)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 24)) (-3367 (($) 23 T CONST)) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3697 (($) 22 T CONST)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)) (-1661 (($ $ $) 20)) (* (($ (-708) $) 25) (($ (-850) $) 21)))
(((-729) (-1197)) (T -729))
NIL
(-13 (-731) (-23))
(((-23) . T) ((-25) . T) ((-97) . T) ((-562 (-792)) . T) ((-731) . T) ((-784) . T) ((-1014) . T))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 24)) (-1210 (($ $ $) 27)) (-1233 (((-3 $ "failed") $ $) 26)) (-3175 (($) 23 T CONST)) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3566 (($) 22 T CONST)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)) (-1602 (($ $ $) 20)) (* (($ (-708) $) 25) (($ (-850) $) 21)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 24)) (-1827 (($ $ $) 27)) (-2265 (((-3 $ "failed") $ $) 26)) (-3367 (($) 23 T CONST)) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3697 (($) 22 T CONST)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)) (-1661 (($ $ $) 20)) (* (($ (-708) $) 25) (($ (-850) $) 21)))
(((-730) (-1197)) (T -730))
-((-1210 (*1 *1 *1 *1) (-4 *1 (-730))))
-(-13 (-732) (-10 -8 (-15 -1210 ($ $ $))))
+((-1827 (*1 *1 *1 *1) (-4 *1 (-730))))
+(-13 (-732) (-10 -8 (-15 -1827 ($ $ $))))
(((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-729) . T) ((-731) . T) ((-732) . T) ((-784) . T) ((-1014) . T))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 24)) (-3175 (($) 23 T CONST)) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3566 (($) 22 T CONST)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)) (-1602 (($ $ $) 20)) (* (($ (-708) $) 25) (($ (-850) $) 21)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 24)) (-3367 (($) 23 T CONST)) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3697 (($) 22 T CONST)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)) (-1661 (($ $ $) 20)) (* (($ (-708) $) 25) (($ (-850) $) 21)))
(((-731) (-1197)) (T -731))
NIL
(-13 (-784) (-23))
(((-23) . T) ((-25) . T) ((-97) . T) ((-562 (-792)) . T) ((-784) . T) ((-1014) . T))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 24)) (-1233 (((-3 $ "failed") $ $) 26)) (-3175 (($) 23 T CONST)) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3566 (($) 22 T CONST)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)) (-1602 (($ $ $) 20)) (* (($ (-708) $) 25) (($ (-850) $) 21)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 24)) (-2265 (((-3 $ "failed") $ $) 26)) (-3367 (($) 23 T CONST)) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3697 (($) 22 T CONST)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)) (-1661 (($ $ $) 20)) (* (($ (-708) $) 25) (($ (-850) $) 21)))
(((-732) (-1197)) (T -732))
NIL
(-13 (-729) (-124))
(((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-729) . T) ((-731) . T) ((-784) . T) ((-1014) . T))
-((-2250 (((-108) $) 41)) (-1297 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#2| "failed") $) 44)) (-1484 (((-522) $) NIL) (((-382 (-522)) $) NIL) ((|#2| $) 42)) (-1664 (((-3 (-382 (-522)) "failed") $) 78)) (-1770 (((-108) $) 72)) (-1492 (((-382 (-522)) $) 76)) (-2100 ((|#2| $) 26)) (-1391 (($ (-1 |#2| |#2|) $) 23)) (-3098 (($ $) 61)) (-1431 (((-498) $) 67)) (-3122 (($ $) 21)) (-2190 (((-792) $) 56) (($ (-522)) 39) (($ |#2|) 37) (($ (-382 (-522))) NIL)) (-2323 (((-708)) 10)) (-2241 ((|#2| $) 71)) (-1531 (((-108) $ $) 29)) (-1549 (((-108) $ $) 69)) (-1612 (($ $) 31) (($ $ $) NIL)) (-1602 (($ $ $) 30)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 35) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 32)))
-(((-733 |#1| |#2|) (-10 -8 (-15 -1549 ((-108) |#1| |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -3098 (|#1| |#1|)) (-15 -1664 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1492 ((-382 (-522)) |#1|)) (-15 -1770 ((-108) |#1|)) (-15 -2241 (|#2| |#1|)) (-15 -2100 (|#2| |#1|)) (-15 -3122 (|#1| |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -2190 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2190 (|#1| (-522))) (-15 -2323 ((-708))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 -2250 ((-108) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -1602 (|#1| |#1| |#1|)) (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|))) (-734 |#2|) (-157)) (T -733))
-((-2323 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-708)) (-5 *1 (-733 *3 *4)) (-4 *3 (-734 *4)))))
-(-10 -8 (-15 -1549 ((-108) |#1| |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -3098 (|#1| |#1|)) (-15 -1664 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1492 ((-382 (-522)) |#1|)) (-15 -1770 ((-108) |#1|)) (-15 -2241 (|#2| |#1|)) (-15 -2100 (|#2| |#1|)) (-15 -3122 (|#1| |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -2190 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2190 (|#1| (-522))) (-15 -2323 ((-708))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 -2250 ((-108) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -1602 (|#1| |#1| |#1|)) (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-1629 (((-708)) 53 (|has| |#1| (-343)))) (-3175 (($) 17 T CONST)) (-1297 (((-3 (-522) "failed") $) 94 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 92 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 90)) (-1484 (((-522) $) 95 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 93 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 89)) (-2682 (((-3 $ "failed") $) 34)) (-1937 ((|#1| $) 79)) (-1664 (((-3 (-382 (-522)) "failed") $) 66 (|has| |#1| (-507)))) (-1770 (((-108) $) 68 (|has| |#1| (-507)))) (-1492 (((-382 (-522)) $) 67 (|has| |#1| (-507)))) (-3255 (($) 56 (|has| |#1| (-343)))) (-2782 (((-108) $) 31)) (-2015 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 70)) (-2100 ((|#1| $) 71)) (-2814 (($ $ $) 62 (|has| |#1| (-784)))) (-2446 (($ $ $) 61 (|has| |#1| (-784)))) (-1391 (($ (-1 |#1| |#1|) $) 81)) (-2120 (((-850) $) 55 (|has| |#1| (-343)))) (-2385 (((-1068) $) 9)) (-3098 (($ $) 65 (|has| |#1| (-338)))) (-2717 (($ (-850)) 54 (|has| |#1| (-343)))) (-3823 ((|#1| $) 76)) (-3116 ((|#1| $) 77)) (-3995 ((|#1| $) 78)) (-2252 ((|#1| $) 72)) (-1245 ((|#1| $) 73)) (-3559 ((|#1| $) 74)) (-1477 ((|#1| $) 75)) (-4151 (((-1032) $) 10)) (-2289 (($ $ (-588 |#1|) (-588 |#1|)) 87 (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) 86 (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) 85 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) 84 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 83 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) 82 (|has| |#1| (-483 (-1085) |#1|)))) (-2545 (($ $ |#1|) 88 (|has| |#1| (-262 |#1| |#1|)))) (-1431 (((-498) $) 63 (|has| |#1| (-563 (-498))))) (-3122 (($ $) 80)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37) (($ (-382 (-522))) 91 (|has| |#1| (-962 (-382 (-522)))))) (-2143 (((-3 $ "failed") $) 64 (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-2241 ((|#1| $) 69 (|has| |#1| (-980)))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1574 (((-108) $ $) 59 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 58 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 60 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 57 (|has| |#1| (-784)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
+((-2944 (((-108) $) 41)) (-3700 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#2| "failed") $) 44)) (-1478 (((-522) $) NIL) (((-382 (-522)) $) NIL) ((|#2| $) 42)) (-2549 (((-3 (-382 (-522)) "failed") $) 78)) (-3519 (((-108) $) 72)) (-1699 (((-382 (-522)) $) 76)) (-1269 ((|#2| $) 26)) (-3810 (($ (-1 |#2| |#2|) $) 23)) (-3193 (($ $) 61)) (-3873 (((-498) $) 67)) (-2983 (($ $) 21)) (-2217 (((-792) $) 56) (($ (-522)) 39) (($ |#2|) 37) (($ (-382 (-522))) NIL)) (-2742 (((-708)) 10)) (-4126 ((|#2| $) 71)) (-1562 (((-108) $ $) 29)) (-1587 (((-108) $ $) 69)) (-1672 (($ $) 31) (($ $ $) NIL)) (-1661 (($ $ $) 30)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 35) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 32)))
+(((-733 |#1| |#2|) (-10 -8 (-15 -1587 ((-108) |#1| |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -3193 (|#1| |#1|)) (-15 -2549 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1699 ((-382 (-522)) |#1|)) (-15 -3519 ((-108) |#1|)) (-15 -4126 (|#2| |#1|)) (-15 -1269 (|#2| |#1|)) (-15 -2983 (|#1| |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -2217 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2217 (|#1| (-522))) (-15 -2742 ((-708))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 -2944 ((-108) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -1661 (|#1| |#1| |#1|)) (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|))) (-734 |#2|) (-157)) (T -733))
+((-2742 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-708)) (-5 *1 (-733 *3 *4)) (-4 *3 (-734 *4)))))
+(-10 -8 (-15 -1587 ((-108) |#1| |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -3193 (|#1| |#1|)) (-15 -2549 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1699 ((-382 (-522)) |#1|)) (-15 -3519 ((-108) |#1|)) (-15 -4126 (|#2| |#1|)) (-15 -1269 (|#2| |#1|)) (-15 -2983 (|#1| |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -2217 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2217 (|#1| (-522))) (-15 -2742 ((-708))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 -2944 ((-108) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -1661 (|#1| |#1| |#1|)) (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-1685 (((-708)) 53 (|has| |#1| (-343)))) (-3367 (($) 17 T CONST)) (-3700 (((-3 (-522) "failed") $) 94 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 92 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 90)) (-1478 (((-522) $) 95 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 93 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 89)) (-3920 (((-3 $ "failed") $) 34)) (-2025 ((|#1| $) 79)) (-2549 (((-3 (-382 (-522)) "failed") $) 66 (|has| |#1| (-507)))) (-3519 (((-108) $) 68 (|has| |#1| (-507)))) (-1699 (((-382 (-522)) $) 67 (|has| |#1| (-507)))) (-3344 (($) 56 (|has| |#1| (-343)))) (-2859 (((-108) $) 31)) (-2210 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 70)) (-1269 ((|#1| $) 71)) (-1308 (($ $ $) 62 (|has| |#1| (-784)))) (-2524 (($ $ $) 61 (|has| |#1| (-784)))) (-3810 (($ (-1 |#1| |#1|) $) 81)) (-1475 (((-850) $) 55 (|has| |#1| (-343)))) (-2311 (((-1068) $) 9)) (-3193 (($ $) 65 (|has| |#1| (-338)))) (-2882 (($ (-850)) 54 (|has| |#1| (-343)))) (-2624 ((|#1| $) 76)) (-2940 ((|#1| $) 77)) (-3584 ((|#1| $) 78)) (-2965 ((|#1| $) 72)) (-2412 ((|#1| $) 73)) (-1773 ((|#1| $) 74)) (-1555 ((|#1| $) 75)) (-4174 (((-1032) $) 10)) (-2330 (($ $ (-588 |#1|) (-588 |#1|)) 87 (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) 86 (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) 85 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) 84 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 83 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) 82 (|has| |#1| (-483 (-1085) |#1|)))) (-2683 (($ $ |#1|) 88 (|has| |#1| (-262 |#1| |#1|)))) (-3873 (((-498) $) 63 (|has| |#1| (-563 (-498))))) (-2983 (($ $) 80)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37) (($ (-382 (-522))) 91 (|has| |#1| (-962 (-382 (-522)))))) (-3040 (((-3 $ "failed") $) 64 (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-4126 ((|#1| $) 69 (|has| |#1| (-980)))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1623 (((-108) $ $) 59 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 58 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 60 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 57 (|has| |#1| (-784)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38)))
(((-734 |#1|) (-1197) (-157)) (T -734))
-((-3122 (*1 *1 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-1937 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-3995 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-3116 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-3823 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-1477 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-3559 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-1245 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-2252 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-2100 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-2015 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-2241 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)) (-4 *2 (-980)))) (-1770 (*1 *2 *1) (-12 (-4 *1 (-734 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-108)))) (-1492 (*1 *2 *1) (-12 (-4 *1 (-734 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-382 (-522))))) (-1664 (*1 *2 *1) (|partial| -12 (-4 *1 (-734 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-382 (-522))))) (-3098 (*1 *1 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)) (-4 *2 (-338)))))
-(-13 (-37 |t#1|) (-386 |t#1|) (-313 |t#1|) (-10 -8 (-15 -3122 ($ $)) (-15 -1937 (|t#1| $)) (-15 -3995 (|t#1| $)) (-15 -3116 (|t#1| $)) (-15 -3823 (|t#1| $)) (-15 -1477 (|t#1| $)) (-15 -3559 (|t#1| $)) (-15 -1245 (|t#1| $)) (-15 -2252 (|t#1| $)) (-15 -2100 (|t#1| $)) (-15 -2015 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-343)) (-6 (-343)) |%noBranch|) (IF (|has| |t#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |t#1| (-980)) (-15 -2241 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-507)) (PROGN (-15 -1770 ((-108) $)) (-15 -1492 ((-382 (-522)) $)) (-15 -1664 ((-3 (-382 (-522)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-338)) (-15 -3098 ($ $)) |%noBranch|)))
+((-2983 (*1 *1 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-2025 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-3584 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-2940 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-2624 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-1555 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-1773 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-2412 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-2965 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-1269 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-2210 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))) (-4126 (*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)) (-4 *2 (-980)))) (-3519 (*1 *2 *1) (-12 (-4 *1 (-734 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-108)))) (-1699 (*1 *2 *1) (-12 (-4 *1 (-734 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-382 (-522))))) (-2549 (*1 *2 *1) (|partial| -12 (-4 *1 (-734 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-382 (-522))))) (-3193 (*1 *1 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)) (-4 *2 (-338)))))
+(-13 (-37 |t#1|) (-386 |t#1|) (-313 |t#1|) (-10 -8 (-15 -2983 ($ $)) (-15 -2025 (|t#1| $)) (-15 -3584 (|t#1| $)) (-15 -2940 (|t#1| $)) (-15 -2624 (|t#1| $)) (-15 -1555 (|t#1| $)) (-15 -1773 (|t#1| $)) (-15 -2412 (|t#1| $)) (-15 -2965 (|t#1| $)) (-15 -1269 (|t#1| $)) (-15 -2210 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-343)) (-6 (-343)) |%noBranch|) (IF (|has| |t#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |t#1| (-980)) (-15 -4126 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-507)) (PROGN (-15 -3519 ((-108) $)) (-15 -1699 ((-382 (-522)) $)) (-15 -2549 ((-3 (-382 (-522)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-338)) (-15 -3193 ($ $)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 |#1| $) |has| |#1| (-262 |#1| |#1|)) ((-285 |#1|) |has| |#1| (-285 |#1|)) ((-343) |has| |#1| (-343)) ((-313 |#1|) . T) ((-386 |#1|) . T) ((-483 (-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)) ((-483 |#1| |#1|) |has| |#1| (-285 |#1|)) ((-590 |#1|) . T) ((-590 $) . T) ((-655 |#1|) . T) ((-664) . T) ((-784) |has| |#1| (-784)) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-977 |#1|) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1391 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
-(((-735 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1391 (|#3| (-1 |#4| |#2|) |#1|))) (-734 |#2|) (-157) (-734 |#4|) (-157)) (T -735))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-157)) (-4 *6 (-157)) (-4 *2 (-734 *6)) (-5 *1 (-735 *4 *5 *2 *6)) (-4 *4 (-734 *5)))))
-(-10 -7 (-15 -1391 (|#3| (-1 |#4| |#2|) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1629 (((-708)) NIL (|has| |#1| (-343)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL) (((-3 (-925 |#1|) "failed") $) 35) (((-3 (-522) "failed") $) NIL (-3708 (|has| (-925 |#1|) (-962 (-522))) (|has| |#1| (-962 (-522))))) (((-3 (-382 (-522)) "failed") $) NIL (-3708 (|has| (-925 |#1|) (-962 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-1484 ((|#1| $) NIL) (((-925 |#1|) $) 33) (((-522) $) NIL (-3708 (|has| (-925 |#1|) (-962 (-522))) (|has| |#1| (-962 (-522))))) (((-382 (-522)) $) NIL (-3708 (|has| (-925 |#1|) (-962 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-2682 (((-3 $ "failed") $) NIL)) (-1937 ((|#1| $) 16)) (-1664 (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-507)))) (-1770 (((-108) $) NIL (|has| |#1| (-507)))) (-1492 (((-382 (-522)) $) NIL (|has| |#1| (-507)))) (-3255 (($) NIL (|has| |#1| (-343)))) (-2782 (((-108) $) NIL)) (-2015 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-925 |#1|) (-925 |#1|)) 29)) (-2100 ((|#1| $) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2120 (((-850) $) NIL (|has| |#1| (-343)))) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL (|has| |#1| (-338)))) (-2717 (($ (-850)) NIL (|has| |#1| (-343)))) (-3823 ((|#1| $) 22)) (-3116 ((|#1| $) 20)) (-3995 ((|#1| $) 18)) (-2252 ((|#1| $) 26)) (-1245 ((|#1| $) 25)) (-3559 ((|#1| $) 24)) (-1477 ((|#1| $) 23)) (-4151 (((-1032) $) NIL)) (-2289 (($ $ (-588 |#1|) (-588 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) NIL (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-483 (-1085) |#1|)))) (-2545 (($ $ |#1|) NIL (|has| |#1| (-262 |#1| |#1|)))) (-1431 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-3122 (($ $) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-925 |#1|)) 30) (($ (-382 (-522))) NIL (-3708 (|has| (-925 |#1|) (-962 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-2241 ((|#1| $) NIL (|has| |#1| (-980)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 8 T CONST)) (-3577 (($) 12 T CONST)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-736 |#1|) (-13 (-734 |#1|) (-386 (-925 |#1|)) (-10 -8 (-15 -2015 ($ (-925 |#1|) (-925 |#1|))))) (-157)) (T -736))
-((-2015 (*1 *1 *2 *2) (-12 (-5 *2 (-925 *3)) (-4 *3 (-157)) (-5 *1 (-736 *3)))))
-(-13 (-734 |#1|) (-386 (-925 |#1|)) (-10 -8 (-15 -2015 ($ (-925 |#1|) (-925 |#1|)))))
-((-1416 (((-108) $ $) 7)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3462 (((-960) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 13)) (-1531 (((-108) $ $) 6)))
+((-3810 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
+(((-735 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3810 (|#3| (-1 |#4| |#2|) |#1|))) (-734 |#2|) (-157) (-734 |#4|) (-157)) (T -735))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-157)) (-4 *6 (-157)) (-4 *2 (-734 *6)) (-5 *1 (-735 *4 *5 *2 *6)) (-4 *4 (-734 *5)))))
+(-10 -7 (-15 -3810 (|#3| (-1 |#4| |#2|) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1685 (((-708)) NIL (|has| |#1| (-343)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL) (((-3 (-925 |#1|) "failed") $) 35) (((-3 (-522) "failed") $) NIL (-3844 (|has| (-925 |#1|) (-962 (-522))) (|has| |#1| (-962 (-522))))) (((-3 (-382 (-522)) "failed") $) NIL (-3844 (|has| (-925 |#1|) (-962 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-1478 ((|#1| $) NIL) (((-925 |#1|) $) 33) (((-522) $) NIL (-3844 (|has| (-925 |#1|) (-962 (-522))) (|has| |#1| (-962 (-522))))) (((-382 (-522)) $) NIL (-3844 (|has| (-925 |#1|) (-962 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-3920 (((-3 $ "failed") $) NIL)) (-2025 ((|#1| $) 16)) (-2549 (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-507)))) (-3519 (((-108) $) NIL (|has| |#1| (-507)))) (-1699 (((-382 (-522)) $) NIL (|has| |#1| (-507)))) (-3344 (($) NIL (|has| |#1| (-343)))) (-2859 (((-108) $) NIL)) (-2210 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-925 |#1|) (-925 |#1|)) 29)) (-1269 ((|#1| $) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1475 (((-850) $) NIL (|has| |#1| (-343)))) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL (|has| |#1| (-338)))) (-2882 (($ (-850)) NIL (|has| |#1| (-343)))) (-2624 ((|#1| $) 22)) (-2940 ((|#1| $) 20)) (-3584 ((|#1| $) 18)) (-2965 ((|#1| $) 26)) (-2412 ((|#1| $) 25)) (-1773 ((|#1| $) 24)) (-1555 ((|#1| $) 23)) (-4174 (((-1032) $) NIL)) (-2330 (($ $ (-588 |#1|) (-588 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) NIL (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-483 (-1085) |#1|)))) (-2683 (($ $ |#1|) NIL (|has| |#1| (-262 |#1| |#1|)))) (-3873 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2983 (($ $) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-925 |#1|)) 30) (($ (-382 (-522))) NIL (-3844 (|has| (-925 |#1|) (-962 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-4126 ((|#1| $) NIL (|has| |#1| (-980)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 8 T CONST)) (-3709 (($) 12 T CONST)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-736 |#1|) (-13 (-734 |#1|) (-386 (-925 |#1|)) (-10 -8 (-15 -2210 ($ (-925 |#1|) (-925 |#1|))))) (-157)) (T -736))
+((-2210 (*1 *1 *2 *2) (-12 (-5 *2 (-925 *3)) (-4 *3 (-157)) (-5 *1 (-736 *3)))))
+(-13 (-734 |#1|) (-386 (-925 |#1|)) (-10 -8 (-15 -2210 ($ (-925 |#1|) (-925 |#1|)))))
+((-1419 (((-108) $ $) 7)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3221 (((-960) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 13)) (-1562 (((-108) $ $) 6)))
(((-737) (-1197)) (T -737))
-((-1798 (*1 *2 *3 *4) (-12 (-4 *1 (-737)) (-5 *3 (-983)) (-5 *4 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)))))) (-3462 (*1 *2 *3) (-12 (-4 *1 (-737)) (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-960)))))
-(-13 (-1014) (-10 -7 (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3462 ((-960) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))))))
+((-1361 (*1 *2 *3 *4) (-12 (-4 *1 (-737)) (-5 *3 (-983)) (-5 *4 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)))))) (-3221 (*1 *2 *3) (-12 (-4 *1 (-737)) (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-960)))))
+(-13 (-1014) (-10 -7 (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -3221 ((-960) (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-2483 (((-2 (|:| |particular| |#2|) (|:| -3855 (-588 |#2|))) |#3| |#2| (-1085)) 19)))
-(((-738 |#1| |#2| |#3|) (-10 -7 (-15 -2483 ((-2 (|:| |particular| |#2|) (|:| -3855 (-588 |#2|))) |#3| |#2| (-1085)))) (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)) (-13 (-29 |#1|) (-1106) (-887)) (-598 |#2|)) (T -738))
-((-2483 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1085)) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-4 *4 (-13 (-29 *6) (-1106) (-887))) (-5 *2 (-2 (|:| |particular| *4) (|:| -3855 (-588 *4)))) (-5 *1 (-738 *6 *4 *3)) (-4 *3 (-598 *4)))))
-(-10 -7 (-15 -2483 ((-2 (|:| |particular| |#2|) (|:| -3855 (-588 |#2|))) |#3| |#2| (-1085))))
-((-3426 (((-3 |#2| "failed") |#2| (-110) (-270 |#2|) (-588 |#2|)) 26) (((-3 |#2| "failed") (-270 |#2|) (-110) (-270 |#2|) (-588 |#2|)) 27) (((-3 (-2 (|:| |particular| |#2|) (|:| -3855 (-588 |#2|))) |#2| "failed") |#2| (-110) (-1085)) 16) (((-3 (-2 (|:| |particular| |#2|) (|:| -3855 (-588 |#2|))) |#2| "failed") (-270 |#2|) (-110) (-1085)) 17) (((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -3855 (-588 (-1166 |#2|)))) "failed") (-588 |#2|) (-588 (-110)) (-1085)) 22) (((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -3855 (-588 (-1166 |#2|)))) "failed") (-588 (-270 |#2|)) (-588 (-110)) (-1085)) 24) (((-3 (-588 (-1166 |#2|)) "failed") (-628 |#2|) (-1085)) 36) (((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -3855 (-588 (-1166 |#2|)))) "failed") (-628 |#2|) (-1166 |#2|) (-1085)) 34)))
-(((-739 |#1| |#2|) (-10 -7 (-15 -3426 ((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -3855 (-588 (-1166 |#2|)))) "failed") (-628 |#2|) (-1166 |#2|) (-1085))) (-15 -3426 ((-3 (-588 (-1166 |#2|)) "failed") (-628 |#2|) (-1085))) (-15 -3426 ((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -3855 (-588 (-1166 |#2|)))) "failed") (-588 (-270 |#2|)) (-588 (-110)) (-1085))) (-15 -3426 ((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -3855 (-588 (-1166 |#2|)))) "failed") (-588 |#2|) (-588 (-110)) (-1085))) (-15 -3426 ((-3 (-2 (|:| |particular| |#2|) (|:| -3855 (-588 |#2|))) |#2| "failed") (-270 |#2|) (-110) (-1085))) (-15 -3426 ((-3 (-2 (|:| |particular| |#2|) (|:| -3855 (-588 |#2|))) |#2| "failed") |#2| (-110) (-1085))) (-15 -3426 ((-3 |#2| "failed") (-270 |#2|) (-110) (-270 |#2|) (-588 |#2|))) (-15 -3426 ((-3 |#2| "failed") |#2| (-110) (-270 |#2|) (-588 |#2|)))) (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)) (-13 (-29 |#1|) (-1106) (-887))) (T -739))
-((-3426 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-110)) (-5 *4 (-270 *2)) (-5 *5 (-588 *2)) (-4 *2 (-13 (-29 *6) (-1106) (-887))) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *1 (-739 *6 *2)))) (-3426 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-270 *2)) (-5 *4 (-110)) (-5 *5 (-588 *2)) (-4 *2 (-13 (-29 *6) (-1106) (-887))) (-5 *1 (-739 *6 *2)) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))))) (-3426 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-110)) (-5 *5 (-1085)) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -3855 (-588 *3))) *3 "failed")) (-5 *1 (-739 *6 *3)) (-4 *3 (-13 (-29 *6) (-1106) (-887))))) (-3426 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-270 *7)) (-5 *4 (-110)) (-5 *5 (-1085)) (-4 *7 (-13 (-29 *6) (-1106) (-887))) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -3855 (-588 *7))) *7 "failed")) (-5 *1 (-739 *6 *7)))) (-3426 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-588 *7)) (-5 *4 (-588 (-110))) (-5 *5 (-1085)) (-4 *7 (-13 (-29 *6) (-1106) (-887))) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-2 (|:| |particular| (-1166 *7)) (|:| -3855 (-588 (-1166 *7))))) (-5 *1 (-739 *6 *7)))) (-3426 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-588 (-270 *7))) (-5 *4 (-588 (-110))) (-5 *5 (-1085)) (-4 *7 (-13 (-29 *6) (-1106) (-887))) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-2 (|:| |particular| (-1166 *7)) (|:| -3855 (-588 (-1166 *7))))) (-5 *1 (-739 *6 *7)))) (-3426 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-628 *6)) (-5 *4 (-1085)) (-4 *6 (-13 (-29 *5) (-1106) (-887))) (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-588 (-1166 *6))) (-5 *1 (-739 *5 *6)))) (-3426 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-628 *7)) (-5 *5 (-1085)) (-4 *7 (-13 (-29 *6) (-1106) (-887))) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-2 (|:| |particular| (-1166 *7)) (|:| -3855 (-588 (-1166 *7))))) (-5 *1 (-739 *6 *7)) (-5 *4 (-1166 *7)))))
-(-10 -7 (-15 -3426 ((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -3855 (-588 (-1166 |#2|)))) "failed") (-628 |#2|) (-1166 |#2|) (-1085))) (-15 -3426 ((-3 (-588 (-1166 |#2|)) "failed") (-628 |#2|) (-1085))) (-15 -3426 ((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -3855 (-588 (-1166 |#2|)))) "failed") (-588 (-270 |#2|)) (-588 (-110)) (-1085))) (-15 -3426 ((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -3855 (-588 (-1166 |#2|)))) "failed") (-588 |#2|) (-588 (-110)) (-1085))) (-15 -3426 ((-3 (-2 (|:| |particular| |#2|) (|:| -3855 (-588 |#2|))) |#2| "failed") (-270 |#2|) (-110) (-1085))) (-15 -3426 ((-3 (-2 (|:| |particular| |#2|) (|:| -3855 (-588 |#2|))) |#2| "failed") |#2| (-110) (-1085))) (-15 -3426 ((-3 |#2| "failed") (-270 |#2|) (-110) (-270 |#2|) (-588 |#2|))) (-15 -3426 ((-3 |#2| "failed") |#2| (-110) (-270 |#2|) (-588 |#2|))))
-((-3623 (($) 9)) (-3773 (((-3 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))) "failed") (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 26)) (-2966 (((-588 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) $) 23)) (-4095 (($ (-2 (|:| -2530 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))))) 20)) (-1827 (($ (-588 (-2 (|:| -2530 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))))))) 18)) (-2313 (((-1171)) 12)))
-(((-740) (-10 -8 (-15 -3623 ($)) (-15 -2313 ((-1171))) (-15 -2966 ((-588 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) $)) (-15 -1827 ($ (-588 (-2 (|:| -2530 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))))))) (-15 -4095 ($ (-2 (|:| -2530 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))))))) (-15 -3773 ((-3 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))) "failed") (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))) (T -740))
-((-3773 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))) (-5 *1 (-740)))) (-4095 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2530 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))))) (-5 *1 (-740)))) (-1827 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -2530 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))))))) (-5 *1 (-740)))) (-2966 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-5 *1 (-740)))) (-2313 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-740)))) (-3623 (*1 *1) (-5 *1 (-740))))
-(-10 -8 (-15 -3623 ($)) (-15 -2313 ((-1171))) (-15 -2966 ((-588 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) $)) (-15 -1827 ($ (-588 (-2 (|:| -2530 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))))))) (-15 -4095 ($ (-2 (|:| -2530 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3048 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))))))) (-15 -3773 ((-3 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))) "failed") (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))
-((-3622 ((|#2| |#2| (-1085)) 15)) (-2187 ((|#2| |#2| (-1085)) 47)) (-3383 (((-1 |#2| |#2|) (-1085)) 11)))
-(((-741 |#1| |#2|) (-10 -7 (-15 -3622 (|#2| |#2| (-1085))) (-15 -2187 (|#2| |#2| (-1085))) (-15 -3383 ((-1 |#2| |#2|) (-1085)))) (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)) (-13 (-29 |#1|) (-1106) (-887))) (T -741))
-((-3383 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-1 *5 *5)) (-5 *1 (-741 *4 *5)) (-4 *5 (-13 (-29 *4) (-1106) (-887))))) (-2187 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *1 (-741 *4 *2)) (-4 *2 (-13 (-29 *4) (-1106) (-887))))) (-3622 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *1 (-741 *4 *2)) (-4 *2 (-13 (-29 *4) (-1106) (-887))))))
-(-10 -7 (-15 -3622 (|#2| |#2| (-1085))) (-15 -2187 (|#2| |#2| (-1085))) (-15 -3383 ((-1 |#2| |#2|) (-1085))))
-((-3426 (((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-588 (-354)) (-354) (-354)) 114) (((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-588 (-354)) (-354)) 115) (((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-588 (-354)) (-354)) 117) (((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-354)) 118) (((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-354)) 119) (((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354))) 120) (((-960) (-745) (-983)) 105) (((-960) (-745)) 106)) (-1798 (((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-745) (-983)) 71) (((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-745)) 73)))
-(((-742) (-10 -7 (-15 -3426 ((-960) (-745))) (-15 -3426 ((-960) (-745) (-983))) (-15 -3426 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)))) (-15 -3426 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-354))) (-15 -3426 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-354))) (-15 -3426 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-588 (-354)) (-354))) (-15 -3426 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-588 (-354)) (-354))) (-15 -3426 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-588 (-354)) (-354) (-354))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-745))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-745) (-983))))) (T -742))
-((-1798 (*1 *2 *3 *4) (-12 (-5 *3 (-745)) (-5 *4 (-983)) (-5 *2 (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *1 (-742)))) (-1798 (*1 *2 *3) (-12 (-5 *3 (-745)) (-5 *2 (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *1 (-742)))) (-3426 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1166 (-291 *4))) (-5 *5 (-588 (-354))) (-5 *6 (-291 (-354))) (-5 *4 (-354)) (-5 *2 (-960)) (-5 *1 (-742)))) (-3426 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1166 (-291 *4))) (-5 *5 (-588 (-354))) (-5 *6 (-291 (-354))) (-5 *4 (-354)) (-5 *2 (-960)) (-5 *1 (-742)))) (-3426 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1166 (-291 (-354)))) (-5 *4 (-354)) (-5 *5 (-588 *4)) (-5 *2 (-960)) (-5 *1 (-742)))) (-3426 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1166 (-291 *4))) (-5 *5 (-588 (-354))) (-5 *6 (-291 (-354))) (-5 *4 (-354)) (-5 *2 (-960)) (-5 *1 (-742)))) (-3426 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1166 (-291 (-354)))) (-5 *4 (-354)) (-5 *5 (-588 *4)) (-5 *2 (-960)) (-5 *1 (-742)))) (-3426 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1166 (-291 (-354)))) (-5 *4 (-354)) (-5 *5 (-588 *4)) (-5 *2 (-960)) (-5 *1 (-742)))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-745)) (-5 *4 (-983)) (-5 *2 (-960)) (-5 *1 (-742)))) (-3426 (*1 *2 *3) (-12 (-5 *3 (-745)) (-5 *2 (-960)) (-5 *1 (-742)))))
-(-10 -7 (-15 -3426 ((-960) (-745))) (-15 -3426 ((-960) (-745) (-983))) (-15 -3426 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)))) (-15 -3426 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-354))) (-15 -3426 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-354))) (-15 -3426 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-588 (-354)) (-354))) (-15 -3426 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-588 (-354)) (-354))) (-15 -3426 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-588 (-354)) (-354) (-354))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-745))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-745) (-983))))
-((-3304 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -3855 (-588 |#4|))) (-595 |#4|) |#4|) 32)))
-(((-743 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3304 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -3855 (-588 |#4|))) (-595 |#4|) |#4|))) (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|)) (T -743))
-((-3304 (*1 *2 *3 *4) (-12 (-5 *3 (-595 *4)) (-4 *4 (-317 *5 *6 *7)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4)))) (-5 *1 (-743 *5 *6 *7 *4)))))
-(-10 -7 (-15 -3304 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -3855 (-588 |#4|))) (-595 |#4|) |#4|)))
-((-2297 (((-2 (|:| -3197 |#3|) (|:| |rh| (-588 (-382 |#2|)))) |#4| (-588 (-382 |#2|))) 52)) (-3908 (((-588 (-2 (|:| -1893 |#2|) (|:| -1607 |#2|))) |#4| |#2|) 60) (((-588 (-2 (|:| -1893 |#2|) (|:| -1607 |#2|))) |#4|) 59) (((-588 (-2 (|:| -1893 |#2|) (|:| -1607 |#2|))) |#3| |#2|) 20) (((-588 (-2 (|:| -1893 |#2|) (|:| -1607 |#2|))) |#3|) 21)) (-1201 ((|#2| |#4| |#1|) 61) ((|#2| |#3| |#1|) 27)) (-2117 ((|#2| |#3| (-588 (-382 |#2|))) 94) (((-3 |#2| "failed") |#3| (-382 |#2|)) 91)))
-(((-744 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2117 ((-3 |#2| "failed") |#3| (-382 |#2|))) (-15 -2117 (|#2| |#3| (-588 (-382 |#2|)))) (-15 -3908 ((-588 (-2 (|:| -1893 |#2|) (|:| -1607 |#2|))) |#3|)) (-15 -3908 ((-588 (-2 (|:| -1893 |#2|) (|:| -1607 |#2|))) |#3| |#2|)) (-15 -1201 (|#2| |#3| |#1|)) (-15 -3908 ((-588 (-2 (|:| -1893 |#2|) (|:| -1607 |#2|))) |#4|)) (-15 -3908 ((-588 (-2 (|:| -1893 |#2|) (|:| -1607 |#2|))) |#4| |#2|)) (-15 -1201 (|#2| |#4| |#1|)) (-15 -2297 ((-2 (|:| -3197 |#3|) (|:| |rh| (-588 (-382 |#2|)))) |#4| (-588 (-382 |#2|))))) (-13 (-338) (-135) (-962 (-382 (-522)))) (-1142 |#1|) (-598 |#2|) (-598 (-382 |#2|))) (T -744))
-((-2297 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-2 (|:| -3197 *7) (|:| |rh| (-588 (-382 *6))))) (-5 *1 (-744 *5 *6 *7 *3)) (-5 *4 (-588 (-382 *6))) (-4 *7 (-598 *6)) (-4 *3 (-598 (-382 *6))))) (-1201 (*1 *2 *3 *4) (-12 (-4 *2 (-1142 *4)) (-5 *1 (-744 *4 *2 *5 *3)) (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-598 *2)) (-4 *3 (-598 (-382 *2))))) (-3908 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *4 (-1142 *5)) (-5 *2 (-588 (-2 (|:| -1893 *4) (|:| -1607 *4)))) (-5 *1 (-744 *5 *4 *6 *3)) (-4 *6 (-598 *4)) (-4 *3 (-598 (-382 *4))))) (-3908 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *2 (-588 (-2 (|:| -1893 *5) (|:| -1607 *5)))) (-5 *1 (-744 *4 *5 *6 *3)) (-4 *6 (-598 *5)) (-4 *3 (-598 (-382 *5))))) (-1201 (*1 *2 *3 *4) (-12 (-4 *2 (-1142 *4)) (-5 *1 (-744 *4 *2 *3 *5)) (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2)) (-4 *5 (-598 (-382 *2))))) (-3908 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *4 (-1142 *5)) (-5 *2 (-588 (-2 (|:| -1893 *4) (|:| -1607 *4)))) (-5 *1 (-744 *5 *4 *3 *6)) (-4 *3 (-598 *4)) (-4 *6 (-598 (-382 *4))))) (-3908 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *2 (-588 (-2 (|:| -1893 *5) (|:| -1607 *5)))) (-5 *1 (-744 *4 *5 *3 *6)) (-4 *3 (-598 *5)) (-4 *6 (-598 (-382 *5))))) (-2117 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-382 *2))) (-4 *2 (-1142 *5)) (-5 *1 (-744 *5 *2 *3 *6)) (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2)) (-4 *6 (-598 (-382 *2))))) (-2117 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-382 *2)) (-4 *2 (-1142 *5)) (-5 *1 (-744 *5 *2 *3 *6)) (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2)) (-4 *6 (-598 *4)))))
-(-10 -7 (-15 -2117 ((-3 |#2| "failed") |#3| (-382 |#2|))) (-15 -2117 (|#2| |#3| (-588 (-382 |#2|)))) (-15 -3908 ((-588 (-2 (|:| -1893 |#2|) (|:| -1607 |#2|))) |#3|)) (-15 -3908 ((-588 (-2 (|:| -1893 |#2|) (|:| -1607 |#2|))) |#3| |#2|)) (-15 -1201 (|#2| |#3| |#1|)) (-15 -3908 ((-588 (-2 (|:| -1893 |#2|) (|:| -1607 |#2|))) |#4|)) (-15 -3908 ((-588 (-2 (|:| -1893 |#2|) (|:| -1607 |#2|))) |#4| |#2|)) (-15 -1201 (|#2| |#4| |#1|)) (-15 -2297 ((-2 (|:| -3197 |#3|) (|:| |rh| (-588 (-382 |#2|)))) |#4| (-588 (-382 |#2|)))))
-((-1416 (((-108) $ $) NIL)) (-1484 (((-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) $) 9)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 11) (($ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 8)) (-1531 (((-108) $ $) NIL)))
-(((-745) (-13 (-1014) (-10 -8 (-15 -2190 ($ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2190 ((-792) $)) (-15 -1484 ((-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) $))))) (T -745))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-745)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *1 (-745)))) (-1484 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *1 (-745)))))
-(-13 (-1014) (-10 -8 (-15 -2190 ($ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2190 ((-792) $)) (-15 -1484 ((-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) $))))
-((-2674 (((-588 (-2 (|:| |frac| (-382 |#2|)) (|:| -3197 |#3|))) |#3| (-1 (-588 |#2|) |#2| (-1081 |#2|)) (-1 (-393 |#2|) |#2|)) 117)) (-3380 (((-588 (-2 (|:| |poly| |#2|) (|:| -3197 |#3|))) |#3| (-1 (-588 |#1|) |#2|)) 45)) (-2576 (((-588 (-2 (|:| |deg| (-708)) (|:| -3197 |#2|))) |#3|) 94)) (-3249 ((|#2| |#3|) 37)) (-3439 (((-588 (-2 (|:| -2677 |#1|) (|:| -3197 |#3|))) |#3| (-1 (-588 |#1|) |#2|)) 81)) (-1360 ((|#3| |#3| (-382 |#2|)) 62) ((|#3| |#3| |#2|) 78)))
-(((-746 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3249 (|#2| |#3|)) (-15 -2576 ((-588 (-2 (|:| |deg| (-708)) (|:| -3197 |#2|))) |#3|)) (-15 -3439 ((-588 (-2 (|:| -2677 |#1|) (|:| -3197 |#3|))) |#3| (-1 (-588 |#1|) |#2|))) (-15 -3380 ((-588 (-2 (|:| |poly| |#2|) (|:| -3197 |#3|))) |#3| (-1 (-588 |#1|) |#2|))) (-15 -2674 ((-588 (-2 (|:| |frac| (-382 |#2|)) (|:| -3197 |#3|))) |#3| (-1 (-588 |#2|) |#2| (-1081 |#2|)) (-1 (-393 |#2|) |#2|))) (-15 -1360 (|#3| |#3| |#2|)) (-15 -1360 (|#3| |#3| (-382 |#2|)))) (-13 (-338) (-135) (-962 (-382 (-522)))) (-1142 |#1|) (-598 |#2|) (-598 (-382 |#2|))) (T -746))
-((-1360 (*1 *2 *2 *3) (-12 (-5 *3 (-382 *5)) (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *1 (-746 *4 *5 *2 *6)) (-4 *2 (-598 *5)) (-4 *6 (-598 *3)))) (-1360 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-1142 *4)) (-5 *1 (-746 *4 *3 *2 *5)) (-4 *2 (-598 *3)) (-4 *5 (-598 (-382 *3))))) (-2674 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-588 *7) *7 (-1081 *7))) (-5 *5 (-1 (-393 *7) *7)) (-4 *7 (-1142 *6)) (-4 *6 (-13 (-338) (-135) (-962 (-382 (-522))))) (-5 *2 (-588 (-2 (|:| |frac| (-382 *7)) (|:| -3197 *3)))) (-5 *1 (-746 *6 *7 *3 *8)) (-4 *3 (-598 *7)) (-4 *8 (-598 (-382 *7))))) (-3380 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-588 *5) *6)) (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-2 (|:| |poly| *6) (|:| -3197 *3)))) (-5 *1 (-746 *5 *6 *3 *7)) (-4 *3 (-598 *6)) (-4 *7 (-598 (-382 *6))))) (-3439 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-588 *5) *6)) (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-2 (|:| -2677 *5) (|:| -3197 *3)))) (-5 *1 (-746 *5 *6 *3 *7)) (-4 *3 (-598 *6)) (-4 *7 (-598 (-382 *6))))) (-2576 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *2 (-588 (-2 (|:| |deg| (-708)) (|:| -3197 *5)))) (-5 *1 (-746 *4 *5 *3 *6)) (-4 *3 (-598 *5)) (-4 *6 (-598 (-382 *5))))) (-3249 (*1 *2 *3) (-12 (-4 *2 (-1142 *4)) (-5 *1 (-746 *4 *2 *3 *5)) (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2)) (-4 *5 (-598 (-382 *2))))))
-(-10 -7 (-15 -3249 (|#2| |#3|)) (-15 -2576 ((-588 (-2 (|:| |deg| (-708)) (|:| -3197 |#2|))) |#3|)) (-15 -3439 ((-588 (-2 (|:| -2677 |#1|) (|:| -3197 |#3|))) |#3| (-1 (-588 |#1|) |#2|))) (-15 -3380 ((-588 (-2 (|:| |poly| |#2|) (|:| -3197 |#3|))) |#3| (-1 (-588 |#1|) |#2|))) (-15 -2674 ((-588 (-2 (|:| |frac| (-382 |#2|)) (|:| -3197 |#3|))) |#3| (-1 (-588 |#2|) |#2| (-1081 |#2|)) (-1 (-393 |#2|) |#2|))) (-15 -1360 (|#3| |#3| |#2|)) (-15 -1360 (|#3| |#3| (-382 |#2|))))
-((-2183 (((-2 (|:| -3855 (-588 (-382 |#2|))) (|:| -1222 (-628 |#1|))) (-596 |#2| (-382 |#2|)) (-588 (-382 |#2|))) 118) (((-2 (|:| |particular| (-3 (-382 |#2|) "failed")) (|:| -3855 (-588 (-382 |#2|)))) (-596 |#2| (-382 |#2|)) (-382 |#2|)) 117) (((-2 (|:| -3855 (-588 (-382 |#2|))) (|:| -1222 (-628 |#1|))) (-595 (-382 |#2|)) (-588 (-382 |#2|))) 112) (((-2 (|:| |particular| (-3 (-382 |#2|) "failed")) (|:| -3855 (-588 (-382 |#2|)))) (-595 (-382 |#2|)) (-382 |#2|)) 110)) (-1933 ((|#2| (-596 |#2| (-382 |#2|))) 77) ((|#2| (-595 (-382 |#2|))) 81)))
-(((-747 |#1| |#2|) (-10 -7 (-15 -2183 ((-2 (|:| |particular| (-3 (-382 |#2|) "failed")) (|:| -3855 (-588 (-382 |#2|)))) (-595 (-382 |#2|)) (-382 |#2|))) (-15 -2183 ((-2 (|:| -3855 (-588 (-382 |#2|))) (|:| -1222 (-628 |#1|))) (-595 (-382 |#2|)) (-588 (-382 |#2|)))) (-15 -2183 ((-2 (|:| |particular| (-3 (-382 |#2|) "failed")) (|:| -3855 (-588 (-382 |#2|)))) (-596 |#2| (-382 |#2|)) (-382 |#2|))) (-15 -2183 ((-2 (|:| -3855 (-588 (-382 |#2|))) (|:| -1222 (-628 |#1|))) (-596 |#2| (-382 |#2|)) (-588 (-382 |#2|)))) (-15 -1933 (|#2| (-595 (-382 |#2|)))) (-15 -1933 (|#2| (-596 |#2| (-382 |#2|))))) (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))) (-1142 |#1|)) (T -747))
-((-1933 (*1 *2 *3) (-12 (-5 *3 (-596 *2 (-382 *2))) (-4 *2 (-1142 *4)) (-5 *1 (-747 *4 *2)) (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))))) (-1933 (*1 *2 *3) (-12 (-5 *3 (-595 (-382 *2))) (-4 *2 (-1142 *4)) (-5 *1 (-747 *4 *2)) (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))))) (-2183 (*1 *2 *3 *4) (-12 (-5 *3 (-596 *6 (-382 *6))) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-2 (|:| -3855 (-588 (-382 *6))) (|:| -1222 (-628 *5)))) (-5 *1 (-747 *5 *6)) (-5 *4 (-588 (-382 *6))))) (-2183 (*1 *2 *3 *4) (-12 (-5 *3 (-596 *6 (-382 *6))) (-5 *4 (-382 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4)))) (-5 *1 (-747 *5 *6)))) (-2183 (*1 *2 *3 *4) (-12 (-5 *3 (-595 (-382 *6))) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-2 (|:| -3855 (-588 (-382 *6))) (|:| -1222 (-628 *5)))) (-5 *1 (-747 *5 *6)) (-5 *4 (-588 (-382 *6))))) (-2183 (*1 *2 *3 *4) (-12 (-5 *3 (-595 (-382 *6))) (-5 *4 (-382 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4)))) (-5 *1 (-747 *5 *6)))))
-(-10 -7 (-15 -2183 ((-2 (|:| |particular| (-3 (-382 |#2|) "failed")) (|:| -3855 (-588 (-382 |#2|)))) (-595 (-382 |#2|)) (-382 |#2|))) (-15 -2183 ((-2 (|:| -3855 (-588 (-382 |#2|))) (|:| -1222 (-628 |#1|))) (-595 (-382 |#2|)) (-588 (-382 |#2|)))) (-15 -2183 ((-2 (|:| |particular| (-3 (-382 |#2|) "failed")) (|:| -3855 (-588 (-382 |#2|)))) (-596 |#2| (-382 |#2|)) (-382 |#2|))) (-15 -2183 ((-2 (|:| -3855 (-588 (-382 |#2|))) (|:| -1222 (-628 |#1|))) (-596 |#2| (-382 |#2|)) (-588 (-382 |#2|)))) (-15 -1933 (|#2| (-595 (-382 |#2|)))) (-15 -1933 (|#2| (-596 |#2| (-382 |#2|)))))
-((-1371 (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#1|))) |#5| |#4|) 47)))
-(((-748 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1371 ((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#1|))) |#5| |#4|))) (-338) (-598 |#1|) (-1142 |#1|) (-662 |#1| |#3|) (-598 |#4|)) (T -748))
-((-1371 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *7 (-1142 *5)) (-4 *4 (-662 *5 *7)) (-5 *2 (-2 (|:| -1222 (-628 *6)) (|:| |vec| (-1166 *5)))) (-5 *1 (-748 *5 *6 *7 *4 *3)) (-4 *6 (-598 *5)) (-4 *3 (-598 *4)))))
-(-10 -7 (-15 -1371 ((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#1|))) |#5| |#4|)))
-((-2674 (((-588 (-2 (|:| |frac| (-382 |#2|)) (|:| -3197 (-596 |#2| (-382 |#2|))))) (-596 |#2| (-382 |#2|)) (-1 (-393 |#2|) |#2|)) 43)) (-1973 (((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-393 |#2|) |#2|)) 134 (|has| |#1| (-27))) (((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|))) 135 (|has| |#1| (-27))) (((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-393 |#2|) |#2|)) 136 (|has| |#1| (-27))) (((-588 (-382 |#2|)) (-595 (-382 |#2|))) 137 (|has| |#1| (-27))) (((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|) (-1 (-393 |#2|) |#2|)) 36) (((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|)) 37) (((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|) (-1 (-393 |#2|) |#2|)) 34) (((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|)) 35)) (-3380 (((-588 (-2 (|:| |poly| |#2|) (|:| -3197 (-596 |#2| (-382 |#2|))))) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|)) 81)))
-(((-749 |#1| |#2|) (-10 -7 (-15 -1973 ((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (-15 -1973 ((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|) (-1 (-393 |#2|) |#2|))) (-15 -1973 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (-15 -1973 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|) (-1 (-393 |#2|) |#2|))) (-15 -2674 ((-588 (-2 (|:| |frac| (-382 |#2|)) (|:| -3197 (-596 |#2| (-382 |#2|))))) (-596 |#2| (-382 |#2|)) (-1 (-393 |#2|) |#2|))) (-15 -3380 ((-588 (-2 (|:| |poly| |#2|) (|:| -3197 (-596 |#2| (-382 |#2|))))) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1973 ((-588 (-382 |#2|)) (-595 (-382 |#2|)))) (-15 -1973 ((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-393 |#2|) |#2|))) (-15 -1973 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)))) (-15 -1973 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-393 |#2|) |#2|)))) |%noBranch|)) (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))) (-1142 |#1|)) (T -749))
-((-1973 (*1 *2 *3 *4) (-12 (-5 *3 (-596 *6 (-382 *6))) (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6)))) (-1973 (*1 *2 *3) (-12 (-5 *3 (-596 *5 (-382 *5))) (-4 *5 (-1142 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-588 (-382 *5))) (-5 *1 (-749 *4 *5)))) (-1973 (*1 *2 *3 *4) (-12 (-5 *3 (-595 (-382 *6))) (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6)))) (-1973 (*1 *2 *3) (-12 (-5 *3 (-595 (-382 *5))) (-4 *5 (-1142 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-588 (-382 *5))) (-5 *1 (-749 *4 *5)))) (-3380 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-588 *5) *6)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-2 (|:| |poly| *6) (|:| -3197 (-596 *6 (-382 *6)))))) (-5 *1 (-749 *5 *6)) (-5 *3 (-596 *6 (-382 *6))))) (-2674 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-588 (-2 (|:| |frac| (-382 *6)) (|:| -3197 (-596 *6 (-382 *6)))))) (-5 *1 (-749 *5 *6)) (-5 *3 (-596 *6 (-382 *6))))) (-1973 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-596 *7 (-382 *7))) (-5 *4 (-1 (-588 *6) *7)) (-5 *5 (-1 (-393 *7) *7)) (-4 *6 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *7 (-1142 *6)) (-5 *2 (-588 (-382 *7))) (-5 *1 (-749 *6 *7)))) (-1973 (*1 *2 *3 *4) (-12 (-5 *3 (-596 *6 (-382 *6))) (-5 *4 (-1 (-588 *5) *6)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6)))) (-1973 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-595 (-382 *7))) (-5 *4 (-1 (-588 *6) *7)) (-5 *5 (-1 (-393 *7) *7)) (-4 *6 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *7 (-1142 *6)) (-5 *2 (-588 (-382 *7))) (-5 *1 (-749 *6 *7)))) (-1973 (*1 *2 *3 *4) (-12 (-5 *3 (-595 (-382 *6))) (-5 *4 (-1 (-588 *5) *6)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6)))))
-(-10 -7 (-15 -1973 ((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (-15 -1973 ((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|) (-1 (-393 |#2|) |#2|))) (-15 -1973 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (-15 -1973 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|) (-1 (-393 |#2|) |#2|))) (-15 -2674 ((-588 (-2 (|:| |frac| (-382 |#2|)) (|:| -3197 (-596 |#2| (-382 |#2|))))) (-596 |#2| (-382 |#2|)) (-1 (-393 |#2|) |#2|))) (-15 -3380 ((-588 (-2 (|:| |poly| |#2|) (|:| -3197 (-596 |#2| (-382 |#2|))))) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1973 ((-588 (-382 |#2|)) (-595 (-382 |#2|)))) (-15 -1973 ((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-393 |#2|) |#2|))) (-15 -1973 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)))) (-15 -1973 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-393 |#2|) |#2|)))) |%noBranch|))
-((-2486 (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#1|))) (-628 |#2|) (-1166 |#1|)) 85) (((-2 (|:| A (-628 |#1|)) (|:| |eqs| (-588 (-2 (|:| C (-628 |#1|)) (|:| |g| (-1166 |#1|)) (|:| -3197 |#2|) (|:| |rh| |#1|))))) (-628 |#1|) (-1166 |#1|)) 14)) (-2138 (((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|)))) (-628 |#2|) (-1166 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -3855 (-588 |#1|))) |#2| |#1|)) 91)) (-3426 (((-3 (-2 (|:| |particular| (-1166 |#1|)) (|:| -3855 (-628 |#1|))) "failed") (-628 |#1|) (-1166 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -3855 (-588 |#1|))) "failed") |#2| |#1|)) 44)))
-(((-750 |#1| |#2|) (-10 -7 (-15 -2486 ((-2 (|:| A (-628 |#1|)) (|:| |eqs| (-588 (-2 (|:| C (-628 |#1|)) (|:| |g| (-1166 |#1|)) (|:| -3197 |#2|) (|:| |rh| |#1|))))) (-628 |#1|) (-1166 |#1|))) (-15 -2486 ((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#1|))) (-628 |#2|) (-1166 |#1|))) (-15 -3426 ((-3 (-2 (|:| |particular| (-1166 |#1|)) (|:| -3855 (-628 |#1|))) "failed") (-628 |#1|) (-1166 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -3855 (-588 |#1|))) "failed") |#2| |#1|))) (-15 -2138 ((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|)))) (-628 |#2|) (-1166 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -3855 (-588 |#1|))) |#2| |#1|)))) (-338) (-598 |#1|)) (T -750))
-((-2138 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -3855 (-588 *6))) *7 *6)) (-4 *6 (-338)) (-4 *7 (-598 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1166 *6) "failed")) (|:| -3855 (-588 (-1166 *6))))) (-5 *1 (-750 *6 *7)) (-5 *4 (-1166 *6)))) (-3426 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -3855 (-588 *6))) "failed") *7 *6)) (-4 *6 (-338)) (-4 *7 (-598 *6)) (-5 *2 (-2 (|:| |particular| (-1166 *6)) (|:| -3855 (-628 *6)))) (-5 *1 (-750 *6 *7)) (-5 *3 (-628 *6)) (-5 *4 (-1166 *6)))) (-2486 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *6 (-598 *5)) (-5 *2 (-2 (|:| -1222 (-628 *6)) (|:| |vec| (-1166 *5)))) (-5 *1 (-750 *5 *6)) (-5 *3 (-628 *6)) (-5 *4 (-1166 *5)))) (-2486 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-5 *2 (-2 (|:| A (-628 *5)) (|:| |eqs| (-588 (-2 (|:| C (-628 *5)) (|:| |g| (-1166 *5)) (|:| -3197 *6) (|:| |rh| *5)))))) (-5 *1 (-750 *5 *6)) (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)) (-4 *6 (-598 *5)))))
-(-10 -7 (-15 -2486 ((-2 (|:| A (-628 |#1|)) (|:| |eqs| (-588 (-2 (|:| C (-628 |#1|)) (|:| |g| (-1166 |#1|)) (|:| -3197 |#2|) (|:| |rh| |#1|))))) (-628 |#1|) (-1166 |#1|))) (-15 -2486 ((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#1|))) (-628 |#2|) (-1166 |#1|))) (-15 -3426 ((-3 (-2 (|:| |particular| (-1166 |#1|)) (|:| -3855 (-628 |#1|))) "failed") (-628 |#1|) (-1166 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -3855 (-588 |#1|))) "failed") |#2| |#1|))) (-15 -2138 ((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -3855 (-588 (-1166 |#1|)))) (-628 |#2|) (-1166 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -3855 (-588 |#1|))) |#2| |#1|))))
-((-1463 (((-628 |#1|) (-588 |#1|) (-708)) 13) (((-628 |#1|) (-588 |#1|)) 14)) (-1556 (((-3 (-1166 |#1|) "failed") |#2| |#1| (-588 |#1|)) 34)) (-2307 (((-3 |#1| "failed") |#2| |#1| (-588 |#1|) (-1 |#1| |#1|)) 42)))
-(((-751 |#1| |#2|) (-10 -7 (-15 -1463 ((-628 |#1|) (-588 |#1|))) (-15 -1463 ((-628 |#1|) (-588 |#1|) (-708))) (-15 -1556 ((-3 (-1166 |#1|) "failed") |#2| |#1| (-588 |#1|))) (-15 -2307 ((-3 |#1| "failed") |#2| |#1| (-588 |#1|) (-1 |#1| |#1|)))) (-338) (-598 |#1|)) (T -751))
-((-2307 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-588 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-338)) (-5 *1 (-751 *2 *3)) (-4 *3 (-598 *2)))) (-1556 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-588 *4)) (-4 *4 (-338)) (-5 *2 (-1166 *4)) (-5 *1 (-751 *4 *3)) (-4 *3 (-598 *4)))) (-1463 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *5)) (-5 *4 (-708)) (-4 *5 (-338)) (-5 *2 (-628 *5)) (-5 *1 (-751 *5 *6)) (-4 *6 (-598 *5)))) (-1463 (*1 *2 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-338)) (-5 *2 (-628 *4)) (-5 *1 (-751 *4 *5)) (-4 *5 (-598 *4)))))
-(-10 -7 (-15 -1463 ((-628 |#1|) (-588 |#1|))) (-15 -1463 ((-628 |#1|) (-588 |#1|) (-708))) (-15 -1556 ((-3 (-1166 |#1|) "failed") |#2| |#1| (-588 |#1|))) (-15 -2307 ((-3 |#1| "failed") |#2| |#1| (-588 |#1|) (-1 |#1| |#1|))))
-((-1416 (((-108) $ $) NIL (|has| |#2| (-1014)))) (-2250 (((-108) $) NIL (|has| |#2| (-124)))) (-2468 (($ (-850)) NIL (|has| |#2| (-971)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1210 (($ $ $) NIL (|has| |#2| (-730)))) (-1233 (((-3 $ "failed") $ $) NIL (|has| |#2| (-124)))) (-4141 (((-108) $ (-708)) NIL)) (-1629 (((-708)) NIL (|has| |#2| (-343)))) (-1341 (((-522) $) NIL (|has| |#2| (-782)))) (-2379 ((|#2| $ (-522) |#2|) NIL (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1014)))) (-1484 (((-522) $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-382 (-522)) $) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) ((|#2| $) NIL (|has| |#2| (-1014)))) (-2096 (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL (|has| |#2| (-971))) (((-628 |#2|) (-628 $)) NIL (|has| |#2| (-971)))) (-2682 (((-3 $ "failed") $) NIL (|has| |#2| (-971)))) (-3255 (($) NIL (|has| |#2| (-343)))) (-3854 ((|#2| $ (-522) |#2|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#2| $ (-522)) NIL)) (-3687 (((-108) $) NIL (|has| |#2| (-782)))) (-3837 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2782 (((-108) $) NIL (|has| |#2| (-971)))) (-2556 (((-108) $) NIL (|has| |#2| (-782)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-3308 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-3838 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#2| |#2|) $) NIL)) (-2120 (((-850) $) NIL (|has| |#2| (-343)))) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#2| (-1014)))) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-2717 (($ (-850)) NIL (|has| |#2| (-343)))) (-4151 (((-1032) $) NIL (|has| |#2| (-1014)))) (-2294 ((|#2| $) NIL (|has| (-522) (-784)))) (-2602 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1525 (((-588 |#2|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#2| $ (-522) |#2|) NIL) ((|#2| $ (-522)) NIL)) (-1883 ((|#2| $ $) NIL (|has| |#2| (-971)))) (-1962 (($ (-1166 |#2|)) NIL)) (-4078 (((-126)) NIL (|has| |#2| (-338)))) (-2157 (($ $) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-971)))) (-4168 (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-1166 |#2|) $) NIL) (($ (-522)) NIL (-3708 (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014))) (|has| |#2| (-971)))) (($ (-382 (-522))) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (($ |#2|) NIL (|has| |#2| (-1014))) (((-792) $) NIL (|has| |#2| (-562 (-792))))) (-2323 (((-708)) NIL (|has| |#2| (-971)))) (-3648 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2241 (($ $) NIL (|has| |#2| (-782)))) (-3510 (($ $ (-708)) NIL (|has| |#2| (-971))) (($ $ (-850)) NIL (|has| |#2| (-971)))) (-3566 (($) NIL (|has| |#2| (-124)) CONST)) (-3577 (($) NIL (|has| |#2| (-971)) CONST)) (-2213 (($ $) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-971)))) (-1574 (((-108) $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1558 (((-108) $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1531 (((-108) $ $) NIL (|has| |#2| (-1014)))) (-1566 (((-108) $ $) NIL (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1549 (((-108) $ $) 11 (-3708 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1620 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1612 (($ $ $) NIL (|has| |#2| (-971))) (($ $) NIL (|has| |#2| (-971)))) (-1602 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-708)) NIL (|has| |#2| (-971))) (($ $ (-850)) NIL (|has| |#2| (-971)))) (* (($ $ $) NIL (|has| |#2| (-971))) (($ (-522) $) NIL (|has| |#2| (-971))) (($ $ |#2|) NIL (|has| |#2| (-664))) (($ |#2| $) NIL (|has| |#2| (-664))) (($ (-708) $) NIL (|has| |#2| (-124))) (($ (-850) $) NIL (|has| |#2| (-25)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-3104 (((-2 (|:| |particular| |#2|) (|:| -2905 (-588 |#2|))) |#3| |#2| (-1085)) 19)))
+(((-738 |#1| |#2| |#3|) (-10 -7 (-15 -3104 ((-2 (|:| |particular| |#2|) (|:| -2905 (-588 |#2|))) |#3| |#2| (-1085)))) (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)) (-13 (-29 |#1|) (-1106) (-887)) (-598 |#2|)) (T -738))
+((-3104 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1085)) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-4 *4 (-13 (-29 *6) (-1106) (-887))) (-5 *2 (-2 (|:| |particular| *4) (|:| -2905 (-588 *4)))) (-5 *1 (-738 *6 *4 *3)) (-4 *3 (-598 *4)))))
+(-10 -7 (-15 -3104 ((-2 (|:| |particular| |#2|) (|:| -2905 (-588 |#2|))) |#3| |#2| (-1085))))
+((-2925 (((-3 |#2| "failed") |#2| (-110) (-270 |#2|) (-588 |#2|)) 26) (((-3 |#2| "failed") (-270 |#2|) (-110) (-270 |#2|) (-588 |#2|)) 27) (((-3 (-2 (|:| |particular| |#2|) (|:| -2905 (-588 |#2|))) |#2| "failed") |#2| (-110) (-1085)) 16) (((-3 (-2 (|:| |particular| |#2|) (|:| -2905 (-588 |#2|))) |#2| "failed") (-270 |#2|) (-110) (-1085)) 17) (((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -2905 (-588 (-1166 |#2|)))) "failed") (-588 |#2|) (-588 (-110)) (-1085)) 22) (((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -2905 (-588 (-1166 |#2|)))) "failed") (-588 (-270 |#2|)) (-588 (-110)) (-1085)) 24) (((-3 (-588 (-1166 |#2|)) "failed") (-628 |#2|) (-1085)) 36) (((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -2905 (-588 (-1166 |#2|)))) "failed") (-628 |#2|) (-1166 |#2|) (-1085)) 34)))
+(((-739 |#1| |#2|) (-10 -7 (-15 -2925 ((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -2905 (-588 (-1166 |#2|)))) "failed") (-628 |#2|) (-1166 |#2|) (-1085))) (-15 -2925 ((-3 (-588 (-1166 |#2|)) "failed") (-628 |#2|) (-1085))) (-15 -2925 ((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -2905 (-588 (-1166 |#2|)))) "failed") (-588 (-270 |#2|)) (-588 (-110)) (-1085))) (-15 -2925 ((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -2905 (-588 (-1166 |#2|)))) "failed") (-588 |#2|) (-588 (-110)) (-1085))) (-15 -2925 ((-3 (-2 (|:| |particular| |#2|) (|:| -2905 (-588 |#2|))) |#2| "failed") (-270 |#2|) (-110) (-1085))) (-15 -2925 ((-3 (-2 (|:| |particular| |#2|) (|:| -2905 (-588 |#2|))) |#2| "failed") |#2| (-110) (-1085))) (-15 -2925 ((-3 |#2| "failed") (-270 |#2|) (-110) (-270 |#2|) (-588 |#2|))) (-15 -2925 ((-3 |#2| "failed") |#2| (-110) (-270 |#2|) (-588 |#2|)))) (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)) (-13 (-29 |#1|) (-1106) (-887))) (T -739))
+((-2925 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-110)) (-5 *4 (-270 *2)) (-5 *5 (-588 *2)) (-4 *2 (-13 (-29 *6) (-1106) (-887))) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *1 (-739 *6 *2)))) (-2925 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-270 *2)) (-5 *4 (-110)) (-5 *5 (-588 *2)) (-4 *2 (-13 (-29 *6) (-1106) (-887))) (-5 *1 (-739 *6 *2)) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))))) (-2925 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-110)) (-5 *5 (-1085)) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -2905 (-588 *3))) *3 "failed")) (-5 *1 (-739 *6 *3)) (-4 *3 (-13 (-29 *6) (-1106) (-887))))) (-2925 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-270 *7)) (-5 *4 (-110)) (-5 *5 (-1085)) (-4 *7 (-13 (-29 *6) (-1106) (-887))) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -2905 (-588 *7))) *7 "failed")) (-5 *1 (-739 *6 *7)))) (-2925 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-588 *7)) (-5 *4 (-588 (-110))) (-5 *5 (-1085)) (-4 *7 (-13 (-29 *6) (-1106) (-887))) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-2 (|:| |particular| (-1166 *7)) (|:| -2905 (-588 (-1166 *7))))) (-5 *1 (-739 *6 *7)))) (-2925 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-588 (-270 *7))) (-5 *4 (-588 (-110))) (-5 *5 (-1085)) (-4 *7 (-13 (-29 *6) (-1106) (-887))) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-2 (|:| |particular| (-1166 *7)) (|:| -2905 (-588 (-1166 *7))))) (-5 *1 (-739 *6 *7)))) (-2925 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-628 *6)) (-5 *4 (-1085)) (-4 *6 (-13 (-29 *5) (-1106) (-887))) (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-588 (-1166 *6))) (-5 *1 (-739 *5 *6)))) (-2925 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-628 *7)) (-5 *5 (-1085)) (-4 *7 (-13 (-29 *6) (-1106) (-887))) (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-2 (|:| |particular| (-1166 *7)) (|:| -2905 (-588 (-1166 *7))))) (-5 *1 (-739 *6 *7)) (-5 *4 (-1166 *7)))))
+(-10 -7 (-15 -2925 ((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -2905 (-588 (-1166 |#2|)))) "failed") (-628 |#2|) (-1166 |#2|) (-1085))) (-15 -2925 ((-3 (-588 (-1166 |#2|)) "failed") (-628 |#2|) (-1085))) (-15 -2925 ((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -2905 (-588 (-1166 |#2|)))) "failed") (-588 (-270 |#2|)) (-588 (-110)) (-1085))) (-15 -2925 ((-3 (-2 (|:| |particular| (-1166 |#2|)) (|:| -2905 (-588 (-1166 |#2|)))) "failed") (-588 |#2|) (-588 (-110)) (-1085))) (-15 -2925 ((-3 (-2 (|:| |particular| |#2|) (|:| -2905 (-588 |#2|))) |#2| "failed") (-270 |#2|) (-110) (-1085))) (-15 -2925 ((-3 (-2 (|:| |particular| |#2|) (|:| -2905 (-588 |#2|))) |#2| "failed") |#2| (-110) (-1085))) (-15 -2925 ((-3 |#2| "failed") (-270 |#2|) (-110) (-270 |#2|) (-588 |#2|))) (-15 -2925 ((-3 |#2| "failed") |#2| (-110) (-270 |#2|) (-588 |#2|))))
+((-4162 (($) 9)) (-3278 (((-3 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))) "failed") (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 26)) (-2562 (((-588 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) $) 23)) (-3365 (($ (-2 (|:| -2644 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))))) 20)) (-2226 (($ (-588 (-2 (|:| -2644 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))))))) 18)) (-2417 (((-1171)) 12)))
+(((-740) (-10 -8 (-15 -4162 ($)) (-15 -2417 ((-1171))) (-15 -2562 ((-588 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) $)) (-15 -2226 ($ (-588 (-2 (|:| -2644 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))))))) (-15 -3365 ($ (-2 (|:| -2644 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))))))) (-15 -3278 ((-3 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))) "failed") (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))) (T -740))
+((-3278 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *2 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))) (-5 *1 (-740)))) (-3365 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2644 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))))) (-5 *1 (-740)))) (-2226 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -2644 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))))))) (-5 *1 (-740)))) (-2562 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-5 *1 (-740)))) (-2417 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-740)))) (-4162 (*1 *1) (-5 *1 (-740))))
+(-10 -8 (-15 -4162 ($)) (-15 -2417 ((-1171))) (-15 -2562 ((-588 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) $)) (-15 -2226 ($ (-588 (-2 (|:| -2644 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354)))))))) (-15 -3365 ($ (-2 (|:| -2644 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (|:| -3149 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))))))) (-15 -3278 ((-3 (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354)) (|:| |expense| (-354)) (|:| |accuracy| (-354)) (|:| |intermediateResults| (-354))) "failed") (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))))
+((-4149 ((|#2| |#2| (-1085)) 15)) (-3377 ((|#2| |#2| (-1085)) 47)) (-3596 (((-1 |#2| |#2|) (-1085)) 11)))
+(((-741 |#1| |#2|) (-10 -7 (-15 -4149 (|#2| |#2| (-1085))) (-15 -3377 (|#2| |#2| (-1085))) (-15 -3596 ((-1 |#2| |#2|) (-1085)))) (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)) (-13 (-29 |#1|) (-1106) (-887))) (T -741))
+((-3596 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-1 *5 *5)) (-5 *1 (-741 *4 *5)) (-4 *5 (-13 (-29 *4) (-1106) (-887))))) (-3377 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *1 (-741 *4 *2)) (-4 *2 (-13 (-29 *4) (-1106) (-887))))) (-4149 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *1 (-741 *4 *2)) (-4 *2 (-13 (-29 *4) (-1106) (-887))))))
+(-10 -7 (-15 -4149 (|#2| |#2| (-1085))) (-15 -3377 (|#2| |#2| (-1085))) (-15 -3596 ((-1 |#2| |#2|) (-1085))))
+((-2925 (((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-588 (-354)) (-354) (-354)) 114) (((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-588 (-354)) (-354)) 115) (((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-588 (-354)) (-354)) 117) (((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-354)) 118) (((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-354)) 119) (((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354))) 120) (((-960) (-745) (-983)) 105) (((-960) (-745)) 106)) (-1361 (((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-745) (-983)) 71) (((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-745)) 73)))
+(((-742) (-10 -7 (-15 -2925 ((-960) (-745))) (-15 -2925 ((-960) (-745) (-983))) (-15 -2925 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)))) (-15 -2925 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-354))) (-15 -2925 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-354))) (-15 -2925 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-588 (-354)) (-354))) (-15 -2925 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-588 (-354)) (-354))) (-15 -2925 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-588 (-354)) (-354) (-354))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-745))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-745) (-983))))) (T -742))
+((-1361 (*1 *2 *3 *4) (-12 (-5 *3 (-745)) (-5 *4 (-983)) (-5 *2 (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *1 (-742)))) (-1361 (*1 *2 *3) (-12 (-5 *3 (-745)) (-5 *2 (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *1 (-742)))) (-2925 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1166 (-291 *4))) (-5 *5 (-588 (-354))) (-5 *6 (-291 (-354))) (-5 *4 (-354)) (-5 *2 (-960)) (-5 *1 (-742)))) (-2925 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1166 (-291 *4))) (-5 *5 (-588 (-354))) (-5 *6 (-291 (-354))) (-5 *4 (-354)) (-5 *2 (-960)) (-5 *1 (-742)))) (-2925 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1166 (-291 (-354)))) (-5 *4 (-354)) (-5 *5 (-588 *4)) (-5 *2 (-960)) (-5 *1 (-742)))) (-2925 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1166 (-291 *4))) (-5 *5 (-588 (-354))) (-5 *6 (-291 (-354))) (-5 *4 (-354)) (-5 *2 (-960)) (-5 *1 (-742)))) (-2925 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1166 (-291 (-354)))) (-5 *4 (-354)) (-5 *5 (-588 *4)) (-5 *2 (-960)) (-5 *1 (-742)))) (-2925 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1166 (-291 (-354)))) (-5 *4 (-354)) (-5 *5 (-588 *4)) (-5 *2 (-960)) (-5 *1 (-742)))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-745)) (-5 *4 (-983)) (-5 *2 (-960)) (-5 *1 (-742)))) (-2925 (*1 *2 *3) (-12 (-5 *3 (-745)) (-5 *2 (-960)) (-5 *1 (-742)))))
+(-10 -7 (-15 -2925 ((-960) (-745))) (-15 -2925 ((-960) (-745) (-983))) (-15 -2925 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)))) (-15 -2925 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-354))) (-15 -2925 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-354))) (-15 -2925 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-588 (-354)) (-354))) (-15 -2925 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-588 (-354)) (-354))) (-15 -2925 ((-960) (-1166 (-291 (-354))) (-354) (-354) (-588 (-354)) (-291 (-354)) (-588 (-354)) (-354) (-354))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-745))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-745) (-983))))
+((-4061 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2905 (-588 |#4|))) (-595 |#4|) |#4|) 32)))
+(((-743 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4061 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2905 (-588 |#4|))) (-595 |#4|) |#4|))) (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|)) (T -743))
+((-4061 (*1 *2 *3 *4) (-12 (-5 *3 (-595 *4)) (-4 *4 (-317 *5 *6 *7)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4)))) (-5 *1 (-743 *5 *6 *7 *4)))))
+(-10 -7 (-15 -4061 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2905 (-588 |#4|))) (-595 |#4|) |#4|)))
+((-2567 (((-2 (|:| -3277 |#3|) (|:| |rh| (-588 (-382 |#2|)))) |#4| (-588 (-382 |#2|))) 52)) (-2106 (((-588 (-2 (|:| -1980 |#2|) (|:| -1656 |#2|))) |#4| |#2|) 60) (((-588 (-2 (|:| -1980 |#2|) (|:| -1656 |#2|))) |#4|) 59) (((-588 (-2 (|:| -1980 |#2|) (|:| -1656 |#2|))) |#3| |#2|) 20) (((-588 (-2 (|:| -1980 |#2|) (|:| -1656 |#2|))) |#3|) 21)) (-1754 ((|#2| |#4| |#1|) 61) ((|#2| |#3| |#1|) 27)) (-1440 ((|#2| |#3| (-588 (-382 |#2|))) 94) (((-3 |#2| "failed") |#3| (-382 |#2|)) 91)))
+(((-744 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1440 ((-3 |#2| "failed") |#3| (-382 |#2|))) (-15 -1440 (|#2| |#3| (-588 (-382 |#2|)))) (-15 -2106 ((-588 (-2 (|:| -1980 |#2|) (|:| -1656 |#2|))) |#3|)) (-15 -2106 ((-588 (-2 (|:| -1980 |#2|) (|:| -1656 |#2|))) |#3| |#2|)) (-15 -1754 (|#2| |#3| |#1|)) (-15 -2106 ((-588 (-2 (|:| -1980 |#2|) (|:| -1656 |#2|))) |#4|)) (-15 -2106 ((-588 (-2 (|:| -1980 |#2|) (|:| -1656 |#2|))) |#4| |#2|)) (-15 -1754 (|#2| |#4| |#1|)) (-15 -2567 ((-2 (|:| -3277 |#3|) (|:| |rh| (-588 (-382 |#2|)))) |#4| (-588 (-382 |#2|))))) (-13 (-338) (-135) (-962 (-382 (-522)))) (-1142 |#1|) (-598 |#2|) (-598 (-382 |#2|))) (T -744))
+((-2567 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-2 (|:| -3277 *7) (|:| |rh| (-588 (-382 *6))))) (-5 *1 (-744 *5 *6 *7 *3)) (-5 *4 (-588 (-382 *6))) (-4 *7 (-598 *6)) (-4 *3 (-598 (-382 *6))))) (-1754 (*1 *2 *3 *4) (-12 (-4 *2 (-1142 *4)) (-5 *1 (-744 *4 *2 *5 *3)) (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-598 *2)) (-4 *3 (-598 (-382 *2))))) (-2106 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *4 (-1142 *5)) (-5 *2 (-588 (-2 (|:| -1980 *4) (|:| -1656 *4)))) (-5 *1 (-744 *5 *4 *6 *3)) (-4 *6 (-598 *4)) (-4 *3 (-598 (-382 *4))))) (-2106 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *2 (-588 (-2 (|:| -1980 *5) (|:| -1656 *5)))) (-5 *1 (-744 *4 *5 *6 *3)) (-4 *6 (-598 *5)) (-4 *3 (-598 (-382 *5))))) (-1754 (*1 *2 *3 *4) (-12 (-4 *2 (-1142 *4)) (-5 *1 (-744 *4 *2 *3 *5)) (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2)) (-4 *5 (-598 (-382 *2))))) (-2106 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *4 (-1142 *5)) (-5 *2 (-588 (-2 (|:| -1980 *4) (|:| -1656 *4)))) (-5 *1 (-744 *5 *4 *3 *6)) (-4 *3 (-598 *4)) (-4 *6 (-598 (-382 *4))))) (-2106 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *2 (-588 (-2 (|:| -1980 *5) (|:| -1656 *5)))) (-5 *1 (-744 *4 *5 *3 *6)) (-4 *3 (-598 *5)) (-4 *6 (-598 (-382 *5))))) (-1440 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-382 *2))) (-4 *2 (-1142 *5)) (-5 *1 (-744 *5 *2 *3 *6)) (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2)) (-4 *6 (-598 (-382 *2))))) (-1440 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-382 *2)) (-4 *2 (-1142 *5)) (-5 *1 (-744 *5 *2 *3 *6)) (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2)) (-4 *6 (-598 *4)))))
+(-10 -7 (-15 -1440 ((-3 |#2| "failed") |#3| (-382 |#2|))) (-15 -1440 (|#2| |#3| (-588 (-382 |#2|)))) (-15 -2106 ((-588 (-2 (|:| -1980 |#2|) (|:| -1656 |#2|))) |#3|)) (-15 -2106 ((-588 (-2 (|:| -1980 |#2|) (|:| -1656 |#2|))) |#3| |#2|)) (-15 -1754 (|#2| |#3| |#1|)) (-15 -2106 ((-588 (-2 (|:| -1980 |#2|) (|:| -1656 |#2|))) |#4|)) (-15 -2106 ((-588 (-2 (|:| -1980 |#2|) (|:| -1656 |#2|))) |#4| |#2|)) (-15 -1754 (|#2| |#4| |#1|)) (-15 -2567 ((-2 (|:| -3277 |#3|) (|:| |rh| (-588 (-382 |#2|)))) |#4| (-588 (-382 |#2|)))))
+((-1419 (((-108) $ $) NIL)) (-1478 (((-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) $) 9)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 11) (($ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) 8)) (-1562 (((-108) $ $) NIL)))
+(((-745) (-13 (-1014) (-10 -8 (-15 -2217 ($ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2217 ((-792) $)) (-15 -1478 ((-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) $))))) (T -745))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-745)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *1 (-745)))) (-1478 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202)))) (-5 *1 (-745)))))
+(-13 (-1014) (-10 -8 (-15 -2217 ($ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))))) (-15 -2217 ((-792) $)) (-15 -1478 ((-2 (|:| |xinit| (-202)) (|:| |xend| (-202)) (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202))) (|:| |abserr| (-202)) (|:| |relerr| (-202))) $))))
+((-3836 (((-588 (-2 (|:| |frac| (-382 |#2|)) (|:| -3277 |#3|))) |#3| (-1 (-588 |#2|) |#2| (-1081 |#2|)) (-1 (-393 |#2|) |#2|)) 117)) (-3563 (((-588 (-2 (|:| |poly| |#2|) (|:| -3277 |#3|))) |#3| (-1 (-588 |#1|) |#2|)) 45)) (-2615 (((-588 (-2 (|:| |deg| (-708)) (|:| -3277 |#2|))) |#3|) 94)) (-1701 ((|#2| |#3|) 37)) (-3045 (((-588 (-2 (|:| -2855 |#1|) (|:| -3277 |#3|))) |#3| (-1 (-588 |#1|) |#2|)) 81)) (-3507 ((|#3| |#3| (-382 |#2|)) 62) ((|#3| |#3| |#2|) 78)))
+(((-746 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1701 (|#2| |#3|)) (-15 -2615 ((-588 (-2 (|:| |deg| (-708)) (|:| -3277 |#2|))) |#3|)) (-15 -3045 ((-588 (-2 (|:| -2855 |#1|) (|:| -3277 |#3|))) |#3| (-1 (-588 |#1|) |#2|))) (-15 -3563 ((-588 (-2 (|:| |poly| |#2|) (|:| -3277 |#3|))) |#3| (-1 (-588 |#1|) |#2|))) (-15 -3836 ((-588 (-2 (|:| |frac| (-382 |#2|)) (|:| -3277 |#3|))) |#3| (-1 (-588 |#2|) |#2| (-1081 |#2|)) (-1 (-393 |#2|) |#2|))) (-15 -3507 (|#3| |#3| |#2|)) (-15 -3507 (|#3| |#3| (-382 |#2|)))) (-13 (-338) (-135) (-962 (-382 (-522)))) (-1142 |#1|) (-598 |#2|) (-598 (-382 |#2|))) (T -746))
+((-3507 (*1 *2 *2 *3) (-12 (-5 *3 (-382 *5)) (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *1 (-746 *4 *5 *2 *6)) (-4 *2 (-598 *5)) (-4 *6 (-598 *3)))) (-3507 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-1142 *4)) (-5 *1 (-746 *4 *3 *2 *5)) (-4 *2 (-598 *3)) (-4 *5 (-598 (-382 *3))))) (-3836 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-588 *7) *7 (-1081 *7))) (-5 *5 (-1 (-393 *7) *7)) (-4 *7 (-1142 *6)) (-4 *6 (-13 (-338) (-135) (-962 (-382 (-522))))) (-5 *2 (-588 (-2 (|:| |frac| (-382 *7)) (|:| -3277 *3)))) (-5 *1 (-746 *6 *7 *3 *8)) (-4 *3 (-598 *7)) (-4 *8 (-598 (-382 *7))))) (-3563 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-588 *5) *6)) (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-2 (|:| |poly| *6) (|:| -3277 *3)))) (-5 *1 (-746 *5 *6 *3 *7)) (-4 *3 (-598 *6)) (-4 *7 (-598 (-382 *6))))) (-3045 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-588 *5) *6)) (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-2 (|:| -2855 *5) (|:| -3277 *3)))) (-5 *1 (-746 *5 *6 *3 *7)) (-4 *3 (-598 *6)) (-4 *7 (-598 (-382 *6))))) (-2615 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-1142 *4)) (-5 *2 (-588 (-2 (|:| |deg| (-708)) (|:| -3277 *5)))) (-5 *1 (-746 *4 *5 *3 *6)) (-4 *3 (-598 *5)) (-4 *6 (-598 (-382 *5))))) (-1701 (*1 *2 *3) (-12 (-4 *2 (-1142 *4)) (-5 *1 (-746 *4 *2 *3 *5)) (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2)) (-4 *5 (-598 (-382 *2))))))
+(-10 -7 (-15 -1701 (|#2| |#3|)) (-15 -2615 ((-588 (-2 (|:| |deg| (-708)) (|:| -3277 |#2|))) |#3|)) (-15 -3045 ((-588 (-2 (|:| -2855 |#1|) (|:| -3277 |#3|))) |#3| (-1 (-588 |#1|) |#2|))) (-15 -3563 ((-588 (-2 (|:| |poly| |#2|) (|:| -3277 |#3|))) |#3| (-1 (-588 |#1|) |#2|))) (-15 -3836 ((-588 (-2 (|:| |frac| (-382 |#2|)) (|:| -3277 |#3|))) |#3| (-1 (-588 |#2|) |#2| (-1081 |#2|)) (-1 (-393 |#2|) |#2|))) (-15 -3507 (|#3| |#3| |#2|)) (-15 -3507 (|#3| |#3| (-382 |#2|))))
+((-3338 (((-2 (|:| -2905 (-588 (-382 |#2|))) (|:| -2149 (-628 |#1|))) (-596 |#2| (-382 |#2|)) (-588 (-382 |#2|))) 118) (((-2 (|:| |particular| (-3 (-382 |#2|) "failed")) (|:| -2905 (-588 (-382 |#2|)))) (-596 |#2| (-382 |#2|)) (-382 |#2|)) 117) (((-2 (|:| -2905 (-588 (-382 |#2|))) (|:| -2149 (-628 |#1|))) (-595 (-382 |#2|)) (-588 (-382 |#2|))) 112) (((-2 (|:| |particular| (-3 (-382 |#2|) "failed")) (|:| -2905 (-588 (-382 |#2|)))) (-595 (-382 |#2|)) (-382 |#2|)) 110)) (-1415 ((|#2| (-596 |#2| (-382 |#2|))) 77) ((|#2| (-595 (-382 |#2|))) 81)))
+(((-747 |#1| |#2|) (-10 -7 (-15 -3338 ((-2 (|:| |particular| (-3 (-382 |#2|) "failed")) (|:| -2905 (-588 (-382 |#2|)))) (-595 (-382 |#2|)) (-382 |#2|))) (-15 -3338 ((-2 (|:| -2905 (-588 (-382 |#2|))) (|:| -2149 (-628 |#1|))) (-595 (-382 |#2|)) (-588 (-382 |#2|)))) (-15 -3338 ((-2 (|:| |particular| (-3 (-382 |#2|) "failed")) (|:| -2905 (-588 (-382 |#2|)))) (-596 |#2| (-382 |#2|)) (-382 |#2|))) (-15 -3338 ((-2 (|:| -2905 (-588 (-382 |#2|))) (|:| -2149 (-628 |#1|))) (-596 |#2| (-382 |#2|)) (-588 (-382 |#2|)))) (-15 -1415 (|#2| (-595 (-382 |#2|)))) (-15 -1415 (|#2| (-596 |#2| (-382 |#2|))))) (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))) (-1142 |#1|)) (T -747))
+((-1415 (*1 *2 *3) (-12 (-5 *3 (-596 *2 (-382 *2))) (-4 *2 (-1142 *4)) (-5 *1 (-747 *4 *2)) (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))))) (-1415 (*1 *2 *3) (-12 (-5 *3 (-595 (-382 *2))) (-4 *2 (-1142 *4)) (-5 *1 (-747 *4 *2)) (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))))) (-3338 (*1 *2 *3 *4) (-12 (-5 *3 (-596 *6 (-382 *6))) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-2 (|:| -2905 (-588 (-382 *6))) (|:| -2149 (-628 *5)))) (-5 *1 (-747 *5 *6)) (-5 *4 (-588 (-382 *6))))) (-3338 (*1 *2 *3 *4) (-12 (-5 *3 (-596 *6 (-382 *6))) (-5 *4 (-382 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4)))) (-5 *1 (-747 *5 *6)))) (-3338 (*1 *2 *3 *4) (-12 (-5 *3 (-595 (-382 *6))) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-2 (|:| -2905 (-588 (-382 *6))) (|:| -2149 (-628 *5)))) (-5 *1 (-747 *5 *6)) (-5 *4 (-588 (-382 *6))))) (-3338 (*1 *2 *3 *4) (-12 (-5 *3 (-595 (-382 *6))) (-5 *4 (-382 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4)))) (-5 *1 (-747 *5 *6)))))
+(-10 -7 (-15 -3338 ((-2 (|:| |particular| (-3 (-382 |#2|) "failed")) (|:| -2905 (-588 (-382 |#2|)))) (-595 (-382 |#2|)) (-382 |#2|))) (-15 -3338 ((-2 (|:| -2905 (-588 (-382 |#2|))) (|:| -2149 (-628 |#1|))) (-595 (-382 |#2|)) (-588 (-382 |#2|)))) (-15 -3338 ((-2 (|:| |particular| (-3 (-382 |#2|) "failed")) (|:| -2905 (-588 (-382 |#2|)))) (-596 |#2| (-382 |#2|)) (-382 |#2|))) (-15 -3338 ((-2 (|:| -2905 (-588 (-382 |#2|))) (|:| -2149 (-628 |#1|))) (-596 |#2| (-382 |#2|)) (-588 (-382 |#2|)))) (-15 -1415 (|#2| (-595 (-382 |#2|)))) (-15 -1415 (|#2| (-596 |#2| (-382 |#2|)))))
+((-3577 (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#1|))) |#5| |#4|) 47)))
+(((-748 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3577 ((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#1|))) |#5| |#4|))) (-338) (-598 |#1|) (-1142 |#1|) (-662 |#1| |#3|) (-598 |#4|)) (T -748))
+((-3577 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *7 (-1142 *5)) (-4 *4 (-662 *5 *7)) (-5 *2 (-2 (|:| -2149 (-628 *6)) (|:| |vec| (-1166 *5)))) (-5 *1 (-748 *5 *6 *7 *4 *3)) (-4 *6 (-598 *5)) (-4 *3 (-598 *4)))))
+(-10 -7 (-15 -3577 ((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#1|))) |#5| |#4|)))
+((-3836 (((-588 (-2 (|:| |frac| (-382 |#2|)) (|:| -3277 (-596 |#2| (-382 |#2|))))) (-596 |#2| (-382 |#2|)) (-1 (-393 |#2|) |#2|)) 43)) (-3102 (((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-393 |#2|) |#2|)) 134 (|has| |#1| (-27))) (((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|))) 135 (|has| |#1| (-27))) (((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-393 |#2|) |#2|)) 136 (|has| |#1| (-27))) (((-588 (-382 |#2|)) (-595 (-382 |#2|))) 137 (|has| |#1| (-27))) (((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|) (-1 (-393 |#2|) |#2|)) 36) (((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|)) 37) (((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|) (-1 (-393 |#2|) |#2|)) 34) (((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|)) 35)) (-3563 (((-588 (-2 (|:| |poly| |#2|) (|:| -3277 (-596 |#2| (-382 |#2|))))) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|)) 81)))
+(((-749 |#1| |#2|) (-10 -7 (-15 -3102 ((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (-15 -3102 ((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|) (-1 (-393 |#2|) |#2|))) (-15 -3102 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (-15 -3102 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|) (-1 (-393 |#2|) |#2|))) (-15 -3836 ((-588 (-2 (|:| |frac| (-382 |#2|)) (|:| -3277 (-596 |#2| (-382 |#2|))))) (-596 |#2| (-382 |#2|)) (-1 (-393 |#2|) |#2|))) (-15 -3563 ((-588 (-2 (|:| |poly| |#2|) (|:| -3277 (-596 |#2| (-382 |#2|))))) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3102 ((-588 (-382 |#2|)) (-595 (-382 |#2|)))) (-15 -3102 ((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-393 |#2|) |#2|))) (-15 -3102 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)))) (-15 -3102 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-393 |#2|) |#2|)))) |%noBranch|)) (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))) (-1142 |#1|)) (T -749))
+((-3102 (*1 *2 *3 *4) (-12 (-5 *3 (-596 *6 (-382 *6))) (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6)))) (-3102 (*1 *2 *3) (-12 (-5 *3 (-596 *5 (-382 *5))) (-4 *5 (-1142 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-588 (-382 *5))) (-5 *1 (-749 *4 *5)))) (-3102 (*1 *2 *3 *4) (-12 (-5 *3 (-595 (-382 *6))) (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6)))) (-3102 (*1 *2 *3) (-12 (-5 *3 (-595 (-382 *5))) (-4 *5 (-1142 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-588 (-382 *5))) (-5 *1 (-749 *4 *5)))) (-3563 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-588 *5) *6)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-2 (|:| |poly| *6) (|:| -3277 (-596 *6 (-382 *6)))))) (-5 *1 (-749 *5 *6)) (-5 *3 (-596 *6 (-382 *6))))) (-3836 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-5 *2 (-588 (-2 (|:| |frac| (-382 *6)) (|:| -3277 (-596 *6 (-382 *6)))))) (-5 *1 (-749 *5 *6)) (-5 *3 (-596 *6 (-382 *6))))) (-3102 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-596 *7 (-382 *7))) (-5 *4 (-1 (-588 *6) *7)) (-5 *5 (-1 (-393 *7) *7)) (-4 *6 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *7 (-1142 *6)) (-5 *2 (-588 (-382 *7))) (-5 *1 (-749 *6 *7)))) (-3102 (*1 *2 *3 *4) (-12 (-5 *3 (-596 *6 (-382 *6))) (-5 *4 (-1 (-588 *5) *6)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6)))) (-3102 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-595 (-382 *7))) (-5 *4 (-1 (-588 *6) *7)) (-5 *5 (-1 (-393 *7) *7)) (-4 *6 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *7 (-1142 *6)) (-5 *2 (-588 (-382 *7))) (-5 *1 (-749 *6 *7)))) (-3102 (*1 *2 *3 *4) (-12 (-5 *3 (-595 (-382 *6))) (-5 *4 (-1 (-588 *5) *6)) (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))) (-4 *6 (-1142 *5)) (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6)))))
+(-10 -7 (-15 -3102 ((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (-15 -3102 ((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-588 |#1|) |#2|) (-1 (-393 |#2|) |#2|))) (-15 -3102 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (-15 -3102 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|) (-1 (-393 |#2|) |#2|))) (-15 -3836 ((-588 (-2 (|:| |frac| (-382 |#2|)) (|:| -3277 (-596 |#2| (-382 |#2|))))) (-596 |#2| (-382 |#2|)) (-1 (-393 |#2|) |#2|))) (-15 -3563 ((-588 (-2 (|:| |poly| |#2|) (|:| -3277 (-596 |#2| (-382 |#2|))))) (-596 |#2| (-382 |#2|)) (-1 (-588 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3102 ((-588 (-382 |#2|)) (-595 (-382 |#2|)))) (-15 -3102 ((-588 (-382 |#2|)) (-595 (-382 |#2|)) (-1 (-393 |#2|) |#2|))) (-15 -3102 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)))) (-15 -3102 ((-588 (-382 |#2|)) (-596 |#2| (-382 |#2|)) (-1 (-393 |#2|) |#2|)))) |%noBranch|))
+((-3820 (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#1|))) (-628 |#2|) (-1166 |#1|)) 85) (((-2 (|:| A (-628 |#1|)) (|:| |eqs| (-588 (-2 (|:| C (-628 |#1|)) (|:| |g| (-1166 |#1|)) (|:| -3277 |#2|) (|:| |rh| |#1|))))) (-628 |#1|) (-1166 |#1|)) 14)) (-2984 (((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|)))) (-628 |#2|) (-1166 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2905 (-588 |#1|))) |#2| |#1|)) 91)) (-2925 (((-3 (-2 (|:| |particular| (-1166 |#1|)) (|:| -2905 (-628 |#1|))) "failed") (-628 |#1|) (-1166 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2905 (-588 |#1|))) "failed") |#2| |#1|)) 44)))
+(((-750 |#1| |#2|) (-10 -7 (-15 -3820 ((-2 (|:| A (-628 |#1|)) (|:| |eqs| (-588 (-2 (|:| C (-628 |#1|)) (|:| |g| (-1166 |#1|)) (|:| -3277 |#2|) (|:| |rh| |#1|))))) (-628 |#1|) (-1166 |#1|))) (-15 -3820 ((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#1|))) (-628 |#2|) (-1166 |#1|))) (-15 -2925 ((-3 (-2 (|:| |particular| (-1166 |#1|)) (|:| -2905 (-628 |#1|))) "failed") (-628 |#1|) (-1166 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2905 (-588 |#1|))) "failed") |#2| |#1|))) (-15 -2984 ((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|)))) (-628 |#2|) (-1166 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2905 (-588 |#1|))) |#2| |#1|)))) (-338) (-598 |#1|)) (T -750))
+((-2984 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -2905 (-588 *6))) *7 *6)) (-4 *6 (-338)) (-4 *7 (-598 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1166 *6) "failed")) (|:| -2905 (-588 (-1166 *6))))) (-5 *1 (-750 *6 *7)) (-5 *4 (-1166 *6)))) (-2925 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -2905 (-588 *6))) "failed") *7 *6)) (-4 *6 (-338)) (-4 *7 (-598 *6)) (-5 *2 (-2 (|:| |particular| (-1166 *6)) (|:| -2905 (-628 *6)))) (-5 *1 (-750 *6 *7)) (-5 *3 (-628 *6)) (-5 *4 (-1166 *6)))) (-3820 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-4 *6 (-598 *5)) (-5 *2 (-2 (|:| -2149 (-628 *6)) (|:| |vec| (-1166 *5)))) (-5 *1 (-750 *5 *6)) (-5 *3 (-628 *6)) (-5 *4 (-1166 *5)))) (-3820 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-5 *2 (-2 (|:| A (-628 *5)) (|:| |eqs| (-588 (-2 (|:| C (-628 *5)) (|:| |g| (-1166 *5)) (|:| -3277 *6) (|:| |rh| *5)))))) (-5 *1 (-750 *5 *6)) (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)) (-4 *6 (-598 *5)))))
+(-10 -7 (-15 -3820 ((-2 (|:| A (-628 |#1|)) (|:| |eqs| (-588 (-2 (|:| C (-628 |#1|)) (|:| |g| (-1166 |#1|)) (|:| -3277 |#2|) (|:| |rh| |#1|))))) (-628 |#1|) (-1166 |#1|))) (-15 -3820 ((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#1|))) (-628 |#2|) (-1166 |#1|))) (-15 -2925 ((-3 (-2 (|:| |particular| (-1166 |#1|)) (|:| -2905 (-628 |#1|))) "failed") (-628 |#1|) (-1166 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2905 (-588 |#1|))) "failed") |#2| |#1|))) (-15 -2984 ((-2 (|:| |particular| (-3 (-1166 |#1|) "failed")) (|:| -2905 (-588 (-1166 |#1|)))) (-628 |#2|) (-1166 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2905 (-588 |#1|))) |#2| |#1|))))
+((-2690 (((-628 |#1|) (-588 |#1|) (-708)) 13) (((-628 |#1|) (-588 |#1|)) 14)) (-3473 (((-3 (-1166 |#1|) "failed") |#2| |#1| (-588 |#1|)) 34)) (-2786 (((-3 |#1| "failed") |#2| |#1| (-588 |#1|) (-1 |#1| |#1|)) 42)))
+(((-751 |#1| |#2|) (-10 -7 (-15 -2690 ((-628 |#1|) (-588 |#1|))) (-15 -2690 ((-628 |#1|) (-588 |#1|) (-708))) (-15 -3473 ((-3 (-1166 |#1|) "failed") |#2| |#1| (-588 |#1|))) (-15 -2786 ((-3 |#1| "failed") |#2| |#1| (-588 |#1|) (-1 |#1| |#1|)))) (-338) (-598 |#1|)) (T -751))
+((-2786 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-588 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-338)) (-5 *1 (-751 *2 *3)) (-4 *3 (-598 *2)))) (-3473 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-588 *4)) (-4 *4 (-338)) (-5 *2 (-1166 *4)) (-5 *1 (-751 *4 *3)) (-4 *3 (-598 *4)))) (-2690 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *5)) (-5 *4 (-708)) (-4 *5 (-338)) (-5 *2 (-628 *5)) (-5 *1 (-751 *5 *6)) (-4 *6 (-598 *5)))) (-2690 (*1 *2 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-338)) (-5 *2 (-628 *4)) (-5 *1 (-751 *4 *5)) (-4 *5 (-598 *4)))))
+(-10 -7 (-15 -2690 ((-628 |#1|) (-588 |#1|))) (-15 -2690 ((-628 |#1|) (-588 |#1|) (-708))) (-15 -3473 ((-3 (-1166 |#1|) "failed") |#2| |#1| (-588 |#1|))) (-15 -2786 ((-3 |#1| "failed") |#2| |#1| (-588 |#1|) (-1 |#1| |#1|))))
+((-1419 (((-108) $ $) NIL (|has| |#2| (-1014)))) (-2944 (((-108) $) NIL (|has| |#2| (-124)))) (-2826 (($ (-850)) NIL (|has| |#2| (-971)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1827 (($ $ $) NIL (|has| |#2| (-730)))) (-2265 (((-3 $ "failed") $ $) NIL (|has| |#2| (-124)))) (-2717 (((-108) $ (-708)) NIL)) (-1685 (((-708)) NIL (|has| |#2| (-343)))) (-3355 (((-522) $) NIL (|has| |#2| (-782)))) (-2437 ((|#2| $ (-522) |#2|) NIL (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1014)))) (-1478 (((-522) $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014)))) (((-382 (-522)) $) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) ((|#2| $) NIL (|has| |#2| (-1014)))) (-1226 (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#2| (-971)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL (|has| |#2| (-971))) (((-628 |#2|) (-628 $)) NIL (|has| |#2| (-971)))) (-3920 (((-3 $ "failed") $) NIL (|has| |#2| (-971)))) (-3344 (($) NIL (|has| |#2| (-343)))) (-2411 ((|#2| $ (-522) |#2|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#2| $ (-522)) NIL)) (-3603 (((-108) $) NIL (|has| |#2| (-782)))) (-2395 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2859 (((-108) $) NIL (|has| |#2| (-971)))) (-3740 (((-108) $) NIL (|has| |#2| (-782)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-4084 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-2397 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#2| |#2|) $) NIL)) (-1475 (((-850) $) NIL (|has| |#2| (-343)))) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#2| (-1014)))) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-2882 (($ (-850)) NIL (|has| |#2| (-343)))) (-4174 (((-1032) $) NIL (|has| |#2| (-1014)))) (-2337 ((|#2| $) NIL (|has| (-522) (-784)))) (-1972 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1973 (((-588 |#2|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#2| $ (-522) |#2|) NIL) ((|#2| $ (-522)) NIL)) (-4024 ((|#2| $ $) NIL (|has| |#2| (-971)))) (-2041 (($ (-1166 |#2|)) NIL)) (-3222 (((-126)) NIL (|has| |#2| (-338)))) (-2731 (($ $) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-971)))) (-4187 (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-1166 |#2|) $) NIL) (($ (-522)) NIL (-3844 (-12 (|has| |#2| (-962 (-522))) (|has| |#2| (-1014))) (|has| |#2| (-971)))) (($ (-382 (-522))) NIL (-12 (|has| |#2| (-962 (-382 (-522)))) (|has| |#2| (-1014)))) (($ |#2|) NIL (|has| |#2| (-1014))) (((-792) $) NIL (|has| |#2| (-562 (-792))))) (-2742 (((-708)) NIL (|has| |#2| (-971)))) (-1381 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-4126 (($ $) NIL (|has| |#2| (-782)))) (-3622 (($ $ (-708)) NIL (|has| |#2| (-971))) (($ $ (-850)) NIL (|has| |#2| (-971)))) (-3697 (($) NIL (|has| |#2| (-124)) CONST)) (-3709 (($) NIL (|has| |#2| (-971)) CONST)) (-2252 (($ $) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#2| (-210)) (|has| |#2| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#2| (-829 (-1085))) (|has| |#2| (-971)))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#2| (-971))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-971)))) (-1623 (((-108) $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1597 (((-108) $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1562 (((-108) $ $) NIL (|has| |#2| (-1014)))) (-1609 (((-108) $ $) NIL (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1587 (((-108) $ $) 11 (-3844 (|has| |#2| (-730)) (|has| |#2| (-782))))) (-1682 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1672 (($ $ $) NIL (|has| |#2| (-971))) (($ $) NIL (|has| |#2| (-971)))) (-1661 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-708)) NIL (|has| |#2| (-971))) (($ $ (-850)) NIL (|has| |#2| (-971)))) (* (($ $ $) NIL (|has| |#2| (-971))) (($ (-522) $) NIL (|has| |#2| (-971))) (($ $ |#2|) NIL (|has| |#2| (-664))) (($ |#2| $) NIL (|has| |#2| (-664))) (($ (-708) $) NIL (|has| |#2| (-124))) (($ (-850) $) NIL (|has| |#2| (-25)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-752 |#1| |#2| |#3|) (-215 |#1| |#2|) (-708) (-730) (-1 (-108) (-1166 |#2|) (-1166 |#2|))) (T -752))
NIL
(-215 |#1| |#2|)
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4040 (((-588 (-708)) $) NIL) (((-588 (-708)) $ (-1085)) NIL)) (-3152 (((-708) $) NIL) (((-708) $ (-1085)) NIL)) (-4090 (((-588 (-755 (-1085))) $) NIL)) (-1282 (((-1081 $) $ (-755 (-1085))) NIL) (((-1081 |#1|) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 (-755 (-1085)))) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3119 (($ $) NIL (|has| |#1| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1292 (($ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-755 (-1085)) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL) (((-3 (-1037 |#1| (-1085)) "failed") $) NIL)) (-1484 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-755 (-1085)) $) NIL) (((-1085) $) NIL) (((-1037 |#1| (-1085)) $) NIL)) (-1950 (($ $ $ (-755 (-1085))) NIL (|has| |#1| (-157)))) (-3156 (($ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#1| (-426))) (($ $ (-755 (-1085))) NIL (|has| |#1| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#1| (-838)))) (-2671 (($ $ |#1| (-494 (-755 (-1085))) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-755 (-1085)) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-755 (-1085)) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3714 (((-708) $ (-1085)) NIL) (((-708) $) NIL)) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-4073 (($ (-1081 |#1|) (-755 (-1085))) NIL) (($ (-1081 $) (-755 (-1085))) NIL)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-494 (-755 (-1085)))) NIL) (($ $ (-755 (-1085)) (-708)) NIL) (($ $ (-588 (-755 (-1085))) (-588 (-708))) NIL)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ (-755 (-1085))) NIL)) (-2925 (((-494 (-755 (-1085))) $) NIL) (((-708) $ (-755 (-1085))) NIL) (((-588 (-708)) $ (-588 (-755 (-1085)))) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3861 (($ (-1 (-494 (-755 (-1085))) (-494 (-755 (-1085)))) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-3830 (((-1 $ (-708)) (-1085)) NIL) (((-1 $ (-708)) $) NIL (|has| |#1| (-210)))) (-3145 (((-3 (-755 (-1085)) "failed") $) NIL)) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-1570 (((-755 (-1085)) $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2385 (((-1068) $) NIL)) (-1494 (((-108) $) NIL)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-755 (-1085))) (|:| -1400 (-708))) "failed") $) NIL)) (-1901 (($ $) NIL)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) NIL)) (-3118 ((|#1| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-838)))) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-755 (-1085)) |#1|) NIL) (($ $ (-588 (-755 (-1085))) (-588 |#1|)) NIL) (($ $ (-755 (-1085)) $) NIL) (($ $ (-588 (-755 (-1085))) (-588 $)) NIL) (($ $ (-1085) $) NIL (|has| |#1| (-210))) (($ $ (-588 (-1085)) (-588 $)) NIL (|has| |#1| (-210))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-210))) (($ $ (-588 (-1085)) (-588 |#1|)) NIL (|has| |#1| (-210)))) (-2769 (($ $ (-755 (-1085))) NIL (|has| |#1| (-157)))) (-2157 (($ $ (-755 (-1085))) NIL) (($ $ (-588 (-755 (-1085)))) NIL) (($ $ (-755 (-1085)) (-708)) NIL) (($ $ (-588 (-755 (-1085))) (-588 (-708))) NIL) (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3013 (((-588 (-1085)) $) NIL)) (-2793 (((-494 (-755 (-1085))) $) NIL) (((-708) $ (-755 (-1085))) NIL) (((-588 (-708)) $ (-588 (-755 (-1085)))) NIL) (((-708) $ (-1085)) NIL)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| (-755 (-1085)) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-755 (-1085)) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-755 (-1085)) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2255 ((|#1| $) NIL (|has| |#1| (-426))) (($ $ (-755 (-1085))) NIL (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-755 (-1085))) NIL) (($ (-1085)) NIL) (($ (-1037 |#1| (-1085))) NIL) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-494 (-755 (-1085)))) NIL) (($ $ (-755 (-1085)) (-708)) NIL) (($ $ (-588 (-755 (-1085))) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-755 (-1085))) NIL) (($ $ (-588 (-755 (-1085)))) NIL) (($ $ (-755 (-1085)) (-708)) NIL) (($ $ (-588 (-755 (-1085))) (-588 (-708))) NIL) (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-4044 (((-588 (-708)) $) NIL) (((-588 (-708)) $ (-1085)) NIL)) (-3192 (((-708) $) NIL) (((-708) $ (-1085)) NIL)) (-3533 (((-588 (-755 (-1085))) $) NIL)) (-1264 (((-1081 $) $ (-755 (-1085))) NIL) (((-1081 |#1|) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 (-755 (-1085)))) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2961 (($ $) NIL (|has| |#1| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1646 (($ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-755 (-1085)) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL) (((-3 (-1037 |#1| (-1085)) "failed") $) NIL)) (-1478 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-755 (-1085)) $) NIL) (((-1085) $) NIL) (((-1037 |#1| (-1085)) $) NIL)) (-2908 (($ $ $ (-755 (-1085))) NIL (|has| |#1| (-157)))) (-3241 (($ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#1| (-426))) (($ $ (-755 (-1085))) NIL (|has| |#1| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#1| (-838)))) (-3792 (($ $ |#1| (-494 (-755 (-1085))) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-755 (-1085)) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-755 (-1085)) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3872 (((-708) $ (-1085)) NIL) (((-708) $) NIL)) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-3520 (($ (-1081 |#1|) (-755 (-1085))) NIL) (($ (-1081 $) (-755 (-1085))) NIL)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-494 (-755 (-1085)))) NIL) (($ $ (-755 (-1085)) (-708)) NIL) (($ $ (-588 (-755 (-1085))) (-588 (-708))) NIL)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ (-755 (-1085))) NIL)) (-3564 (((-494 (-755 (-1085))) $) NIL) (((-708) $ (-755 (-1085))) NIL) (((-588 (-708)) $ (-588 (-755 (-1085)))) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-1723 (($ (-1 (-494 (-755 (-1085))) (-494 (-755 (-1085)))) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-2718 (((-1 $ (-708)) (-1085)) NIL) (((-1 $ (-708)) $) NIL (|has| |#1| (-210)))) (-3155 (((-3 (-755 (-1085)) "failed") $) NIL)) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-1611 (((-755 (-1085)) $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2311 (((-1068) $) NIL)) (-1717 (((-108) $) NIL)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| (-755 (-1085))) (|:| -3858 (-708))) "failed") $) NIL)) (-1992 (($ $) NIL)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) NIL)) (-3207 ((|#1| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-838)))) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-755 (-1085)) |#1|) NIL) (($ $ (-588 (-755 (-1085))) (-588 |#1|)) NIL) (($ $ (-755 (-1085)) $) NIL) (($ $ (-588 (-755 (-1085))) (-588 $)) NIL) (($ $ (-1085) $) NIL (|has| |#1| (-210))) (($ $ (-588 (-1085)) (-588 $)) NIL (|has| |#1| (-210))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-210))) (($ $ (-588 (-1085)) (-588 |#1|)) NIL (|has| |#1| (-210)))) (-1615 (($ $ (-755 (-1085))) NIL (|has| |#1| (-157)))) (-2731 (($ $ (-755 (-1085))) NIL) (($ $ (-588 (-755 (-1085)))) NIL) (($ $ (-755 (-1085)) (-708)) NIL) (($ $ (-588 (-755 (-1085))) (-588 (-708))) NIL) (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1266 (((-588 (-1085)) $) NIL)) (-2487 (((-494 (-755 (-1085))) $) NIL) (((-708) $ (-755 (-1085))) NIL) (((-588 (-708)) $ (-588 (-755 (-1085)))) NIL) (((-708) $ (-1085)) NIL)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| (-755 (-1085)) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-755 (-1085)) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-755 (-1085)) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2988 ((|#1| $) NIL (|has| |#1| (-426))) (($ $ (-755 (-1085))) NIL (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-755 (-1085))) NIL) (($ (-1085)) NIL) (($ (-1037 |#1| (-1085))) NIL) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-494 (-755 (-1085)))) NIL) (($ $ (-755 (-1085)) (-708)) NIL) (($ $ (-588 (-755 (-1085))) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-755 (-1085))) NIL) (($ $ (-588 (-755 (-1085)))) NIL) (($ $ (-755 (-1085)) (-708)) NIL) (($ $ (-588 (-755 (-1085))) (-588 (-708))) NIL) (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-753 |#1|) (-13 (-229 |#1| (-1085) (-755 (-1085)) (-494 (-755 (-1085)))) (-962 (-1037 |#1| (-1085)))) (-971)) (T -753))
NIL
(-13 (-229 |#1| (-1085) (-755 (-1085)) (-494 (-755 (-1085)))) (-962 (-1037 |#1| (-1085))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#2| (-338)))) (-2022 (($ $) NIL (|has| |#2| (-338)))) (-3739 (((-108) $) NIL (|has| |#2| (-338)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL (|has| |#2| (-338)))) (-3450 (((-393 $) $) NIL (|has| |#2| (-338)))) (-1687 (((-108) $ $) NIL (|has| |#2| (-338)))) (-3175 (($) NIL T CONST)) (-2277 (($ $ $) NIL (|has| |#2| (-338)))) (-2682 (((-3 $ "failed") $) NIL)) (-2254 (($ $ $) NIL (|has| |#2| (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#2| (-338)))) (-2813 (((-108) $) NIL (|has| |#2| (-338)))) (-2782 (((-108) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#2| (-338)))) (-2224 (($ (-588 $)) NIL (|has| |#2| (-338))) (($ $ $) NIL (|has| |#2| (-338)))) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 20 (|has| |#2| (-338)))) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#2| (-338)))) (-2259 (($ (-588 $)) NIL (|has| |#2| (-338))) (($ $ $) NIL (|has| |#2| (-338)))) (-1916 (((-393 $) $) NIL (|has| |#2| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#2| (-338)))) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#2| (-338)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#2| (-338)))) (-3730 (((-708) $) NIL (|has| |#2| (-338)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#2| (-338)))) (-2157 (($ $ (-708)) NIL) (($ $) 13)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-382 (-522))) NIL (|has| |#2| (-338))) (($ $) NIL (|has| |#2| (-338)))) (-2323 (((-708)) NIL)) (-3958 (((-108) $ $) NIL (|has| |#2| (-338)))) (-3510 (($ $ (-708)) NIL) (($ $ (-850)) NIL) (($ $ (-522)) NIL (|has| |#2| (-338)))) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-708)) NIL) (($ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) 15 (|has| |#2| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL) (($ $ (-522)) 18 (|has| |#2| (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-382 (-522)) $) NIL (|has| |#2| (-338))) (($ $ (-382 (-522))) NIL (|has| |#2| (-338)))))
-(((-754 |#1| |#2| |#3|) (-13 (-107 $ $) (-210) (-10 -8 (IF (|has| |#2| (-338)) (-6 (-338)) |%noBranch|) (-15 -2190 ($ |#2|)) (-15 -2190 (|#2| $)))) (-1014) (-829 |#1|) |#1|) (T -754))
-((-2190 (*1 *1 *2) (-12 (-4 *3 (-1014)) (-14 *4 *3) (-5 *1 (-754 *3 *2 *4)) (-4 *2 (-829 *3)))) (-2190 (*1 *2 *1) (-12 (-4 *2 (-829 *3)) (-5 *1 (-754 *3 *2 *4)) (-4 *3 (-1014)) (-14 *4 *3))))
-(-13 (-107 $ $) (-210) (-10 -8 (IF (|has| |#2| (-338)) (-6 (-338)) |%noBranch|) (-15 -2190 ($ |#2|)) (-15 -2190 (|#2| $))))
-((-1416 (((-108) $ $) NIL)) (-3152 (((-708) $) NIL)) (-1611 ((|#1| $) 10)) (-1297 (((-3 |#1| "failed") $) NIL)) (-1484 ((|#1| $) NIL)) (-3714 (((-708) $) 11)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-3830 (($ |#1| (-708)) 9)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2157 (($ $) NIL) (($ $ (-708)) NIL)) (-2190 (((-792) $) NIL) (($ |#1|) NIL)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#2| (-338)))) (-2298 (($ $) NIL (|has| |#2| (-338)))) (-3007 (((-108) $) NIL (|has| |#2| (-338)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL (|has| |#2| (-338)))) (-3133 (((-393 $) $) NIL (|has| |#2| (-338)))) (-2805 (((-108) $ $) NIL (|has| |#2| (-338)))) (-3367 (($) NIL T CONST)) (-2333 (($ $ $) NIL (|has| |#2| (-338)))) (-3920 (((-3 $ "failed") $) NIL)) (-2303 (($ $ $) NIL (|has| |#2| (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#2| (-338)))) (-2725 (((-108) $) NIL (|has| |#2| (-338)))) (-2859 (((-108) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#2| (-338)))) (-2267 (($ (-588 $)) NIL (|has| |#2| (-338))) (($ $ $) NIL (|has| |#2| (-338)))) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 20 (|has| |#2| (-338)))) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#2| (-338)))) (-2308 (($ (-588 $)) NIL (|has| |#2| (-338))) (($ $ $) NIL (|has| |#2| (-338)))) (-2006 (((-393 $) $) NIL (|has| |#2| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#2| (-338)))) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#2| (-338)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#2| (-338)))) (-4031 (((-708) $) NIL (|has| |#2| (-338)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#2| (-338)))) (-2731 (($ $ (-708)) NIL) (($ $) 13)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-382 (-522))) NIL (|has| |#2| (-338))) (($ $) NIL (|has| |#2| (-338)))) (-2742 (((-708)) NIL)) (-1407 (((-108) $ $) NIL (|has| |#2| (-338)))) (-3622 (($ $ (-708)) NIL) (($ $ (-850)) NIL) (($ $ (-522)) NIL (|has| |#2| (-338)))) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-708)) NIL) (($ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) 15 (|has| |#2| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL) (($ $ (-522)) 18 (|has| |#2| (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-382 (-522)) $) NIL (|has| |#2| (-338))) (($ $ (-382 (-522))) NIL (|has| |#2| (-338)))))
+(((-754 |#1| |#2| |#3|) (-13 (-107 $ $) (-210) (-10 -8 (IF (|has| |#2| (-338)) (-6 (-338)) |%noBranch|) (-15 -2217 ($ |#2|)) (-15 -2217 (|#2| $)))) (-1014) (-829 |#1|) |#1|) (T -754))
+((-2217 (*1 *1 *2) (-12 (-4 *3 (-1014)) (-14 *4 *3) (-5 *1 (-754 *3 *2 *4)) (-4 *2 (-829 *3)))) (-2217 (*1 *2 *1) (-12 (-4 *2 (-829 *3)) (-5 *1 (-754 *3 *2 *4)) (-4 *3 (-1014)) (-14 *4 *3))))
+(-13 (-107 $ $) (-210) (-10 -8 (IF (|has| |#2| (-338)) (-6 (-338)) |%noBranch|) (-15 -2217 ($ |#2|)) (-15 -2217 (|#2| $))))
+((-1419 (((-108) $ $) NIL)) (-3192 (((-708) $) NIL)) (-1660 ((|#1| $) 10)) (-3700 (((-3 |#1| "failed") $) NIL)) (-1478 ((|#1| $) NIL)) (-3872 (((-708) $) 11)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2718 (($ |#1| (-708)) 9)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2731 (($ $) NIL) (($ $ (-708)) NIL)) (-2217 (((-792) $) NIL) (($ |#1|) NIL)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) NIL)))
(((-755 |#1|) (-242 |#1|) (-784)) (T -755))
NIL
(-242 |#1|)
-((-1416 (((-108) $ $) NIL)) (-4106 (((-588 |#1|) $) 29)) (-1629 (((-708) $) NIL)) (-3175 (($) NIL T CONST)) (-1200 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 19)) (-1297 (((-3 |#1| "failed") $) NIL)) (-1484 ((|#1| $) NIL)) (-2306 (($ $) 31)) (-2682 (((-3 $ "failed") $) NIL)) (-4124 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-2782 (((-108) $) NIL)) (-3750 ((|#1| $ (-522)) NIL)) (-1905 (((-708) $ (-522)) NIL)) (-1225 (($ $) 36)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2987 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 16)) (-3523 (((-108) $ $) 34)) (-2517 (((-708) $) 25)) (-2385 (((-1068) $) NIL)) (-3599 (($ $ $) NIL)) (-1671 (($ $ $) NIL)) (-4151 (((-1032) $) NIL)) (-2294 ((|#1| $) 30)) (-2976 (((-588 (-2 (|:| |gen| |#1|) (|:| -3266 (-708)))) $) NIL)) (-2243 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-2190 (((-792) $) NIL) (($ |#1|) NIL)) (-3510 (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3577 (($) 14 T CONST)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 35)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL) (($ |#1| (-708)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-756 |#1|) (-13 (-780) (-962 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-708))) (-15 -2294 (|#1| $)) (-15 -2306 ($ $)) (-15 -1225 ($ $)) (-15 -3523 ((-108) $ $)) (-15 -1671 ($ $ $)) (-15 -3599 ($ $ $)) (-15 -2987 ((-3 $ "failed") $ $)) (-15 -1200 ((-3 $ "failed") $ $)) (-15 -2987 ((-3 $ "failed") $ |#1|)) (-15 -1200 ((-3 $ "failed") $ |#1|)) (-15 -2243 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -4124 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1629 ((-708) $)) (-15 -1905 ((-708) $ (-522))) (-15 -3750 (|#1| $ (-522))) (-15 -2976 ((-588 (-2 (|:| |gen| |#1|) (|:| -3266 (-708)))) $)) (-15 -2517 ((-708) $)) (-15 -4106 ((-588 |#1|) $)))) (-784)) (T -756))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-2294 (*1 *2 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-2306 (*1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-1225 (*1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-3523 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-756 *3)) (-4 *3 (-784)))) (-1671 (*1 *1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-3599 (*1 *1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-2987 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-1200 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-2987 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-1200 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-2243 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-756 *3)) (|:| |rm| (-756 *3)))) (-5 *1 (-756 *3)) (-4 *3 (-784)))) (-4124 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-756 *3)) (|:| |mm| (-756 *3)) (|:| |rm| (-756 *3)))) (-5 *1 (-756 *3)) (-4 *3 (-784)))) (-1629 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-756 *3)) (-4 *3 (-784)))) (-1905 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-708)) (-5 *1 (-756 *4)) (-4 *4 (-784)))) (-3750 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-2976 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3266 (-708))))) (-5 *1 (-756 *3)) (-4 *3 (-784)))) (-2517 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-756 *3)) (-4 *3 (-784)))) (-4106 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-756 *3)) (-4 *3 (-784)))))
-(-13 (-780) (-962 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-708))) (-15 -2294 (|#1| $)) (-15 -2306 ($ $)) (-15 -1225 ($ $)) (-15 -3523 ((-108) $ $)) (-15 -1671 ($ $ $)) (-15 -3599 ($ $ $)) (-15 -2987 ((-3 $ "failed") $ $)) (-15 -1200 ((-3 $ "failed") $ $)) (-15 -2987 ((-3 $ "failed") $ |#1|)) (-15 -1200 ((-3 $ "failed") $ |#1|)) (-15 -2243 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -4124 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1629 ((-708) $)) (-15 -1905 ((-708) $ (-522))) (-15 -3750 (|#1| $ (-522))) (-15 -2976 ((-588 (-2 (|:| |gen| |#1|) (|:| -3266 (-708)))) $)) (-15 -2517 ((-708) $)) (-15 -4106 ((-588 |#1|) $))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-1341 (((-522) $) 53)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-3687 (((-108) $) 51)) (-2782 (((-108) $) 31)) (-2556 (((-108) $) 52)) (-2814 (($ $ $) 50)) (-2446 (($ $ $) 49)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2232 (((-3 $ "failed") $ $) 42)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-2241 (($ $) 54)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1574 (((-108) $ $) 47)) (-1558 (((-108) $ $) 46)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 48)) (-1549 (((-108) $ $) 45)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-1419 (((-108) $ $) NIL)) (-4127 (((-588 |#1|) $) 29)) (-1685 (((-708) $) NIL)) (-3367 (($) NIL T CONST)) (-1745 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 19)) (-3700 (((-3 |#1| "failed") $) NIL)) (-1478 ((|#1| $) NIL)) (-2352 (($ $) 31)) (-3920 (((-3 $ "failed") $) NIL)) (-2496 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-2859 (((-108) $) NIL)) (-3108 ((|#1| $ (-522)) NIL)) (-4213 (((-708) $ (-522)) NIL)) (-2182 (($ $) 36)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-4038 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 16)) (-2618 (((-108) $ $) 34)) (-4030 (((-708) $) 25)) (-2311 (((-1068) $) NIL)) (-2089 (($ $ $) NIL)) (-2629 (($ $ $) NIL)) (-4174 (((-1032) $) NIL)) (-2337 ((|#1| $) 30)) (-4045 (((-588 (-2 (|:| |gen| |#1|) (|:| -3357 (-708)))) $) NIL)) (-2289 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-2217 (((-792) $) NIL) (($ |#1|) NIL)) (-3622 (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3709 (($) 14 T CONST)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 35)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL) (($ |#1| (-708)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-756 |#1|) (-13 (-780) (-962 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-708))) (-15 -2337 (|#1| $)) (-15 -2352 ($ $)) (-15 -2182 ($ $)) (-15 -2618 ((-108) $ $)) (-15 -2629 ($ $ $)) (-15 -2089 ($ $ $)) (-15 -4038 ((-3 $ "failed") $ $)) (-15 -1745 ((-3 $ "failed") $ $)) (-15 -4038 ((-3 $ "failed") $ |#1|)) (-15 -1745 ((-3 $ "failed") $ |#1|)) (-15 -2289 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2496 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1685 ((-708) $)) (-15 -4213 ((-708) $ (-522))) (-15 -3108 (|#1| $ (-522))) (-15 -4045 ((-588 (-2 (|:| |gen| |#1|) (|:| -3357 (-708)))) $)) (-15 -4030 ((-708) $)) (-15 -4127 ((-588 |#1|) $)))) (-784)) (T -756))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-2337 (*1 *2 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-2352 (*1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-2182 (*1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-2618 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-756 *3)) (-4 *3 (-784)))) (-2629 (*1 *1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-2089 (*1 *1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-4038 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-1745 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-4038 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-1745 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-2289 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-756 *3)) (|:| |rm| (-756 *3)))) (-5 *1 (-756 *3)) (-4 *3 (-784)))) (-2496 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-756 *3)) (|:| |mm| (-756 *3)) (|:| |rm| (-756 *3)))) (-5 *1 (-756 *3)) (-4 *3 (-784)))) (-1685 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-756 *3)) (-4 *3 (-784)))) (-4213 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-708)) (-5 *1 (-756 *4)) (-4 *4 (-784)))) (-3108 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-756 *2)) (-4 *2 (-784)))) (-4045 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3357 (-708))))) (-5 *1 (-756 *3)) (-4 *3 (-784)))) (-4030 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-756 *3)) (-4 *3 (-784)))) (-4127 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-756 *3)) (-4 *3 (-784)))))
+(-13 (-780) (-962 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-708))) (-15 -2337 (|#1| $)) (-15 -2352 ($ $)) (-15 -2182 ($ $)) (-15 -2618 ((-108) $ $)) (-15 -2629 ($ $ $)) (-15 -2089 ($ $ $)) (-15 -4038 ((-3 $ "failed") $ $)) (-15 -1745 ((-3 $ "failed") $ $)) (-15 -4038 ((-3 $ "failed") $ |#1|)) (-15 -1745 ((-3 $ "failed") $ |#1|)) (-15 -2289 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2496 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1685 ((-708) $)) (-15 -4213 ((-708) $ (-522))) (-15 -3108 (|#1| $ (-522))) (-15 -4045 ((-588 (-2 (|:| |gen| |#1|) (|:| -3357 (-708)))) $)) (-15 -4030 ((-708) $)) (-15 -4127 ((-588 |#1|) $))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-3355 (((-522) $) 53)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-3603 (((-108) $) 51)) (-2859 (((-108) $) 31)) (-3740 (((-108) $) 52)) (-1308 (($ $ $) 50)) (-2524 (($ $ $) 49)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2276 (((-3 $ "failed") $ $) 42)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-4126 (($ $) 54)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1623 (((-108) $ $) 47)) (-1597 (((-108) $ $) 46)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 48)) (-1587 (((-108) $ $) 45)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-757) (-1197)) (T -757))
NIL
(-13 (-514) (-782))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-157) . T) ((-266) . T) ((-514) . T) ((-590 $) . T) ((-655 $) . T) ((-664) . T) ((-728) . T) ((-729) . T) ((-731) . T) ((-732) . T) ((-782) . T) ((-784) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-3520 (($ (-1032)) 7)) (-2819 (((-108) $ (-1068) (-1032)) 15)) (-1381 (((-759) $) 12)) (-3278 (((-759) $) 11)) (-3165 (((-1171) $) 9)) (-3054 (((-108) $ (-1032)) 16)))
-(((-758) (-10 -8 (-15 -3520 ($ (-1032))) (-15 -3165 ((-1171) $)) (-15 -3278 ((-759) $)) (-15 -1381 ((-759) $)) (-15 -2819 ((-108) $ (-1068) (-1032))) (-15 -3054 ((-108) $ (-1032))))) (T -758))
-((-3054 (*1 *2 *1 *3) (-12 (-5 *3 (-1032)) (-5 *2 (-108)) (-5 *1 (-758)))) (-2819 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-1032)) (-5 *2 (-108)) (-5 *1 (-758)))) (-1381 (*1 *2 *1) (-12 (-5 *2 (-759)) (-5 *1 (-758)))) (-3278 (*1 *2 *1) (-12 (-5 *2 (-759)) (-5 *1 (-758)))) (-3165 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-758)))) (-3520 (*1 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-758)))))
-(-10 -8 (-15 -3520 ($ (-1032))) (-15 -3165 ((-1171) $)) (-15 -3278 ((-759) $)) (-15 -1381 ((-759) $)) (-15 -2819 ((-108) $ (-1068) (-1032))) (-15 -3054 ((-108) $ (-1032))))
-((-2686 (((-1171) $ (-760)) 12)) (-3876 (((-1171) $ (-1085)) 32)) (-1726 (((-1171) $ (-1068) (-1068)) 34)) (-4009 (((-1171) $ (-1068)) 33)) (-3761 (((-1171) $) 19)) (-2354 (((-1171) $ (-522)) 28)) (-1199 (((-1171) $ (-202)) 30)) (-2946 (((-1171) $) 18)) (-4046 (((-1171) $) 26)) (-2529 (((-1171) $) 25)) (-2262 (((-1171) $) 23)) (-2484 (((-1171) $) 24)) (-2000 (((-1171) $) 22)) (-3272 (((-1171) $) 21)) (-3522 (((-1171) $) 20)) (-2004 (((-1171) $) 16)) (-3271 (((-1171) $) 17)) (-2519 (((-1171) $) 15)) (-1690 (((-1171) $) 14)) (-2534 (((-1171) $) 13)) (-2218 (($ (-1068) (-760)) 9)) (-1772 (($ (-1068) (-1068) (-760)) 8)) (-2929 (((-1085) $) 51)) (-3966 (((-1085) $) 55)) (-2687 (((-2 (|:| |cd| (-1068)) (|:| -2888 (-1068))) $) 54)) (-2448 (((-1068) $) 52)) (-2605 (((-1171) $) 41)) (-2384 (((-522) $) 49)) (-2209 (((-202) $) 50)) (-2273 (((-1171) $) 40)) (-2089 (((-1171) $) 48)) (-3067 (((-1171) $) 47)) (-1739 (((-1171) $) 45)) (-2350 (((-1171) $) 46)) (-1721 (((-1171) $) 44)) (-2541 (((-1171) $) 43)) (-1515 (((-1171) $) 42)) (-1880 (((-1171) $) 38)) (-3296 (((-1171) $) 39)) (-3427 (((-1171) $) 37)) (-3847 (((-1171) $) 36)) (-4001 (((-1171) $) 35)) (-3360 (((-1171) $) 11)))
-(((-759) (-10 -8 (-15 -1772 ($ (-1068) (-1068) (-760))) (-15 -2218 ($ (-1068) (-760))) (-15 -3360 ((-1171) $)) (-15 -2686 ((-1171) $ (-760))) (-15 -2534 ((-1171) $)) (-15 -1690 ((-1171) $)) (-15 -2519 ((-1171) $)) (-15 -2004 ((-1171) $)) (-15 -3271 ((-1171) $)) (-15 -2946 ((-1171) $)) (-15 -3761 ((-1171) $)) (-15 -3522 ((-1171) $)) (-15 -3272 ((-1171) $)) (-15 -2000 ((-1171) $)) (-15 -2262 ((-1171) $)) (-15 -2484 ((-1171) $)) (-15 -2529 ((-1171) $)) (-15 -4046 ((-1171) $)) (-15 -2354 ((-1171) $ (-522))) (-15 -1199 ((-1171) $ (-202))) (-15 -3876 ((-1171) $ (-1085))) (-15 -4009 ((-1171) $ (-1068))) (-15 -1726 ((-1171) $ (-1068) (-1068))) (-15 -4001 ((-1171) $)) (-15 -3847 ((-1171) $)) (-15 -3427 ((-1171) $)) (-15 -1880 ((-1171) $)) (-15 -3296 ((-1171) $)) (-15 -2273 ((-1171) $)) (-15 -2605 ((-1171) $)) (-15 -1515 ((-1171) $)) (-15 -2541 ((-1171) $)) (-15 -1721 ((-1171) $)) (-15 -1739 ((-1171) $)) (-15 -2350 ((-1171) $)) (-15 -3067 ((-1171) $)) (-15 -2089 ((-1171) $)) (-15 -2384 ((-522) $)) (-15 -2209 ((-202) $)) (-15 -2929 ((-1085) $)) (-15 -2448 ((-1068) $)) (-15 -2687 ((-2 (|:| |cd| (-1068)) (|:| -2888 (-1068))) $)) (-15 -3966 ((-1085) $)))) (T -759))
-((-3966 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-759)))) (-2687 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1068)) (|:| -2888 (-1068)))) (-5 *1 (-759)))) (-2448 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-759)))) (-2929 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-759)))) (-2209 (*1 *2 *1) (-12 (-5 *2 (-202)) (-5 *1 (-759)))) (-2384 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-759)))) (-2089 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3067 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2350 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1739 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1721 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2541 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1515 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2605 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2273 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3296 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1880 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3427 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3847 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-4001 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1726 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-759)))) (-4009 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-759)))) (-3876 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-759)))) (-1199 (*1 *2 *1 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1171)) (-5 *1 (-759)))) (-2354 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-759)))) (-4046 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2529 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2484 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2262 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2000 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3272 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3522 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3761 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2946 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3271 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2004 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2519 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1690 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2534 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2686 (*1 *2 *1 *3) (-12 (-5 *3 (-760)) (-5 *2 (-1171)) (-5 *1 (-759)))) (-3360 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2218 (*1 *1 *2 *3) (-12 (-5 *2 (-1068)) (-5 *3 (-760)) (-5 *1 (-759)))) (-1772 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1068)) (-5 *3 (-760)) (-5 *1 (-759)))))
-(-10 -8 (-15 -1772 ($ (-1068) (-1068) (-760))) (-15 -2218 ($ (-1068) (-760))) (-15 -3360 ((-1171) $)) (-15 -2686 ((-1171) $ (-760))) (-15 -2534 ((-1171) $)) (-15 -1690 ((-1171) $)) (-15 -2519 ((-1171) $)) (-15 -2004 ((-1171) $)) (-15 -3271 ((-1171) $)) (-15 -2946 ((-1171) $)) (-15 -3761 ((-1171) $)) (-15 -3522 ((-1171) $)) (-15 -3272 ((-1171) $)) (-15 -2000 ((-1171) $)) (-15 -2262 ((-1171) $)) (-15 -2484 ((-1171) $)) (-15 -2529 ((-1171) $)) (-15 -4046 ((-1171) $)) (-15 -2354 ((-1171) $ (-522))) (-15 -1199 ((-1171) $ (-202))) (-15 -3876 ((-1171) $ (-1085))) (-15 -4009 ((-1171) $ (-1068))) (-15 -1726 ((-1171) $ (-1068) (-1068))) (-15 -4001 ((-1171) $)) (-15 -3847 ((-1171) $)) (-15 -3427 ((-1171) $)) (-15 -1880 ((-1171) $)) (-15 -3296 ((-1171) $)) (-15 -2273 ((-1171) $)) (-15 -2605 ((-1171) $)) (-15 -1515 ((-1171) $)) (-15 -2541 ((-1171) $)) (-15 -1721 ((-1171) $)) (-15 -1739 ((-1171) $)) (-15 -2350 ((-1171) $)) (-15 -3067 ((-1171) $)) (-15 -2089 ((-1171) $)) (-15 -2384 ((-522) $)) (-15 -2209 ((-202) $)) (-15 -2929 ((-1085) $)) (-15 -2448 ((-1068) $)) (-15 -2687 ((-2 (|:| |cd| (-1068)) (|:| -2888 (-1068))) $)) (-15 -3966 ((-1085) $)))
-((-1416 (((-108) $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 12)) (-2026 (($) 15)) (-1927 (($) 13)) (-3767 (($) 16)) (-4128 (($) 14)) (-1531 (((-108) $ $) 8)))
-(((-760) (-13 (-1014) (-10 -8 (-15 -1927 ($)) (-15 -2026 ($)) (-15 -3767 ($)) (-15 -4128 ($))))) (T -760))
-((-1927 (*1 *1) (-5 *1 (-760))) (-2026 (*1 *1) (-5 *1 (-760))) (-3767 (*1 *1) (-5 *1 (-760))) (-4128 (*1 *1) (-5 *1 (-760))))
-(-13 (-1014) (-10 -8 (-15 -1927 ($)) (-15 -2026 ($)) (-15 -3767 ($)) (-15 -4128 ($))))
-((-1416 (((-108) $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 21) (($ (-1085)) 17)) (-3234 (((-108) $) 10)) (-3034 (((-108) $) 9)) (-3858 (((-108) $) 11)) (-1680 (((-108) $) 8)) (-1531 (((-108) $ $) 19)))
-(((-761) (-13 (-1014) (-10 -8 (-15 -2190 ($ (-1085))) (-15 -1680 ((-108) $)) (-15 -3034 ((-108) $)) (-15 -3234 ((-108) $)) (-15 -3858 ((-108) $))))) (T -761))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-761)))) (-1680 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))) (-3034 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))) (-3234 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))) (-3858 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))))
-(-13 (-1014) (-10 -8 (-15 -2190 ($ (-1085))) (-15 -1680 ((-108) $)) (-15 -3034 ((-108) $)) (-15 -3234 ((-108) $)) (-15 -3858 ((-108) $))))
-((-1416 (((-108) $ $) NIL)) (-2470 (($ (-761) (-588 (-1085))) 24)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-4022 (((-761) $) 25)) (-3397 (((-588 (-1085)) $) 26)) (-2190 (((-792) $) 23)) (-1531 (((-108) $ $) NIL)))
-(((-762) (-13 (-1014) (-10 -8 (-15 -4022 ((-761) $)) (-15 -3397 ((-588 (-1085)) $)) (-15 -2470 ($ (-761) (-588 (-1085))))))) (T -762))
-((-4022 (*1 *2 *1) (-12 (-5 *2 (-761)) (-5 *1 (-762)))) (-3397 (*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-762)))) (-2470 (*1 *1 *2 *3) (-12 (-5 *2 (-761)) (-5 *3 (-588 (-1085))) (-5 *1 (-762)))))
-(-13 (-1014) (-10 -8 (-15 -4022 ((-761) $)) (-15 -3397 ((-588 (-1085)) $)) (-15 -2470 ($ (-761) (-588 (-1085))))))
-((-4149 (((-1171) (-759) (-291 |#1|) (-108)) 22) (((-1171) (-759) (-291 |#1|)) 76) (((-1068) (-291 |#1|) (-108)) 75) (((-1068) (-291 |#1|)) 74)))
-(((-763 |#1|) (-10 -7 (-15 -4149 ((-1068) (-291 |#1|))) (-15 -4149 ((-1068) (-291 |#1|) (-108))) (-15 -4149 ((-1171) (-759) (-291 |#1|))) (-15 -4149 ((-1171) (-759) (-291 |#1|) (-108)))) (-13 (-765) (-784) (-971))) (T -763))
-((-4149 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-759)) (-5 *4 (-291 *6)) (-5 *5 (-108)) (-4 *6 (-13 (-765) (-784) (-971))) (-5 *2 (-1171)) (-5 *1 (-763 *6)))) (-4149 (*1 *2 *3 *4) (-12 (-5 *3 (-759)) (-5 *4 (-291 *5)) (-4 *5 (-13 (-765) (-784) (-971))) (-5 *2 (-1171)) (-5 *1 (-763 *5)))) (-4149 (*1 *2 *3 *4) (-12 (-5 *3 (-291 *5)) (-5 *4 (-108)) (-4 *5 (-13 (-765) (-784) (-971))) (-5 *2 (-1068)) (-5 *1 (-763 *5)))) (-4149 (*1 *2 *3) (-12 (-5 *3 (-291 *4)) (-4 *4 (-13 (-765) (-784) (-971))) (-5 *2 (-1068)) (-5 *1 (-763 *4)))))
-(-10 -7 (-15 -4149 ((-1068) (-291 |#1|))) (-15 -4149 ((-1068) (-291 |#1|) (-108))) (-15 -4149 ((-1171) (-759) (-291 |#1|))) (-15 -4149 ((-1171) (-759) (-291 |#1|) (-108))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2237 ((|#1| $) 10)) (-1420 (($ |#1|) 9)) (-2782 (((-108) $) NIL)) (-4049 (($ |#2| (-708)) NIL)) (-2925 (((-708) $) NIL)) (-3138 ((|#2| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2157 (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $) NIL (|has| |#1| (-210)))) (-2793 (((-708) $) NIL)) (-2190 (((-792) $) 17) (($ (-522)) NIL) (($ |#2|) NIL (|has| |#2| (-157)))) (-3243 ((|#2| $ (-708)) NIL)) (-2323 (((-708)) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $) NIL (|has| |#1| (-210)))) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-764 |#1| |#2|) (-13 (-647 |#2|) (-10 -8 (IF (|has| |#1| (-210)) (-6 (-210)) |%noBranch|) (-15 -1420 ($ |#1|)) (-15 -2237 (|#1| $)))) (-647 |#2|) (-971)) (T -764))
-((-1420 (*1 *1 *2) (-12 (-4 *3 (-971)) (-5 *1 (-764 *2 *3)) (-4 *2 (-647 *3)))) (-2237 (*1 *2 *1) (-12 (-4 *2 (-647 *3)) (-5 *1 (-764 *2 *3)) (-4 *3 (-971)))))
-(-13 (-647 |#2|) (-10 -8 (IF (|has| |#1| (-210)) (-6 (-210)) |%noBranch|) (-15 -1420 ($ |#1|)) (-15 -2237 (|#1| $))))
-((-4149 (((-1171) (-759) $ (-108)) 9) (((-1171) (-759) $) 8) (((-1068) $ (-108)) 7) (((-1068) $) 6)))
+((-2578 (($ (-1032)) 7)) (-2769 (((-108) $ (-1068) (-1032)) 15)) (-3675 (((-759) $) 12)) (-1955 (((-759) $) 11)) (-3287 (((-1171) $) 9)) (-3497 (((-108) $ (-1032)) 16)))
+(((-758) (-10 -8 (-15 -2578 ($ (-1032))) (-15 -3287 ((-1171) $)) (-15 -1955 ((-759) $)) (-15 -3675 ((-759) $)) (-15 -2769 ((-108) $ (-1068) (-1032))) (-15 -3497 ((-108) $ (-1032))))) (T -758))
+((-3497 (*1 *2 *1 *3) (-12 (-5 *3 (-1032)) (-5 *2 (-108)) (-5 *1 (-758)))) (-2769 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-1032)) (-5 *2 (-108)) (-5 *1 (-758)))) (-3675 (*1 *2 *1) (-12 (-5 *2 (-759)) (-5 *1 (-758)))) (-1955 (*1 *2 *1) (-12 (-5 *2 (-759)) (-5 *1 (-758)))) (-3287 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-758)))) (-2578 (*1 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-758)))))
+(-10 -8 (-15 -2578 ($ (-1032))) (-15 -3287 ((-1171) $)) (-15 -1955 ((-759) $)) (-15 -3675 ((-759) $)) (-15 -2769 ((-108) $ (-1068) (-1032))) (-15 -3497 ((-108) $ (-1032))))
+((-3967 (((-1171) $ (-760)) 12)) (-1846 (((-1171) $ (-1085)) 32)) (-1305 (((-1171) $ (-1068) (-1068)) 34)) (-3715 (((-1171) $ (-1068)) 33)) (-3187 (((-1171) $) 19)) (-1746 (((-1171) $ (-522)) 28)) (-1733 (((-1171) $ (-202)) 30)) (-3780 (((-1171) $) 18)) (-2994 (((-1171) $) 26)) (-2229 (((-1171) $) 25)) (-2073 (((-1171) $) 23)) (-3794 (((-1171) $) 24)) (-3292 (((-1171) $) 22)) (-1895 (((-1171) $) 21)) (-2606 (((-1171) $) 20)) (-3321 (((-1171) $) 16)) (-1885 (((-1171) $) 17)) (-2139 (((-1171) $) 15)) (-2836 (((-1171) $) 14)) (-3484 (((-1171) $) 13)) (-1580 (($ (-1068) (-760)) 9)) (-3541 (($ (-1068) (-1068) (-760)) 8)) (-3609 (((-1085) $) 51)) (-1495 (((-1085) $) 55)) (-3976 (((-2 (|:| |cd| (-1068)) (|:| -3015 (-1068))) $) 54)) (-3667 (((-1068) $) 52)) (-2004 (((-1171) $) 41)) (-2296 (((-522) $) 49)) (-2410 (((-202) $) 50)) (-2176 (((-1171) $) 40)) (-4202 (((-1171) $) 48)) (-3599 (((-1171) $) 47)) (-1409 (((-1171) $) 45)) (-1702 (((-1171) $) 46)) (-1256 (((-1171) $) 44)) (-3535 (((-1171) $) 43)) (-1877 (((-1171) $) 42)) (-2851 (((-1171) $) 38)) (-2123 (((-1171) $) 39)) (-2929 (((-1171) $) 37)) (-2863 (((-1171) $) 36)) (-3645 (((-1171) $) 35)) (-1556 (((-1171) $) 11)))
+(((-759) (-10 -8 (-15 -3541 ($ (-1068) (-1068) (-760))) (-15 -1580 ($ (-1068) (-760))) (-15 -1556 ((-1171) $)) (-15 -3967 ((-1171) $ (-760))) (-15 -3484 ((-1171) $)) (-15 -2836 ((-1171) $)) (-15 -2139 ((-1171) $)) (-15 -3321 ((-1171) $)) (-15 -1885 ((-1171) $)) (-15 -3780 ((-1171) $)) (-15 -3187 ((-1171) $)) (-15 -2606 ((-1171) $)) (-15 -1895 ((-1171) $)) (-15 -3292 ((-1171) $)) (-15 -2073 ((-1171) $)) (-15 -3794 ((-1171) $)) (-15 -2229 ((-1171) $)) (-15 -2994 ((-1171) $)) (-15 -1746 ((-1171) $ (-522))) (-15 -1733 ((-1171) $ (-202))) (-15 -1846 ((-1171) $ (-1085))) (-15 -3715 ((-1171) $ (-1068))) (-15 -1305 ((-1171) $ (-1068) (-1068))) (-15 -3645 ((-1171) $)) (-15 -2863 ((-1171) $)) (-15 -2929 ((-1171) $)) (-15 -2851 ((-1171) $)) (-15 -2123 ((-1171) $)) (-15 -2176 ((-1171) $)) (-15 -2004 ((-1171) $)) (-15 -1877 ((-1171) $)) (-15 -3535 ((-1171) $)) (-15 -1256 ((-1171) $)) (-15 -1409 ((-1171) $)) (-15 -1702 ((-1171) $)) (-15 -3599 ((-1171) $)) (-15 -4202 ((-1171) $)) (-15 -2296 ((-522) $)) (-15 -2410 ((-202) $)) (-15 -3609 ((-1085) $)) (-15 -3667 ((-1068) $)) (-15 -3976 ((-2 (|:| |cd| (-1068)) (|:| -3015 (-1068))) $)) (-15 -1495 ((-1085) $)))) (T -759))
+((-1495 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-759)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1068)) (|:| -3015 (-1068)))) (-5 *1 (-759)))) (-3667 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-759)))) (-3609 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-759)))) (-2410 (*1 *2 *1) (-12 (-5 *2 (-202)) (-5 *1 (-759)))) (-2296 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-759)))) (-4202 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3599 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1702 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1409 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1256 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3535 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1877 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2004 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2176 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2123 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2851 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2929 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2863 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3645 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1305 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-759)))) (-3715 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-759)))) (-1846 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-759)))) (-1733 (*1 *2 *1 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1171)) (-5 *1 (-759)))) (-1746 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-759)))) (-2994 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2229 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3794 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2073 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3292 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1895 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2606 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3187 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1885 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3321 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2139 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-2836 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3484 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-3967 (*1 *2 *1 *3) (-12 (-5 *3 (-760)) (-5 *2 (-1171)) (-5 *1 (-759)))) (-1556 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))) (-1580 (*1 *1 *2 *3) (-12 (-5 *2 (-1068)) (-5 *3 (-760)) (-5 *1 (-759)))) (-3541 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1068)) (-5 *3 (-760)) (-5 *1 (-759)))))
+(-10 -8 (-15 -3541 ($ (-1068) (-1068) (-760))) (-15 -1580 ($ (-1068) (-760))) (-15 -1556 ((-1171) $)) (-15 -3967 ((-1171) $ (-760))) (-15 -3484 ((-1171) $)) (-15 -2836 ((-1171) $)) (-15 -2139 ((-1171) $)) (-15 -3321 ((-1171) $)) (-15 -1885 ((-1171) $)) (-15 -3780 ((-1171) $)) (-15 -3187 ((-1171) $)) (-15 -2606 ((-1171) $)) (-15 -1895 ((-1171) $)) (-15 -3292 ((-1171) $)) (-15 -2073 ((-1171) $)) (-15 -3794 ((-1171) $)) (-15 -2229 ((-1171) $)) (-15 -2994 ((-1171) $)) (-15 -1746 ((-1171) $ (-522))) (-15 -1733 ((-1171) $ (-202))) (-15 -1846 ((-1171) $ (-1085))) (-15 -3715 ((-1171) $ (-1068))) (-15 -1305 ((-1171) $ (-1068) (-1068))) (-15 -3645 ((-1171) $)) (-15 -2863 ((-1171) $)) (-15 -2929 ((-1171) $)) (-15 -2851 ((-1171) $)) (-15 -2123 ((-1171) $)) (-15 -2176 ((-1171) $)) (-15 -2004 ((-1171) $)) (-15 -1877 ((-1171) $)) (-15 -3535 ((-1171) $)) (-15 -1256 ((-1171) $)) (-15 -1409 ((-1171) $)) (-15 -1702 ((-1171) $)) (-15 -3599 ((-1171) $)) (-15 -4202 ((-1171) $)) (-15 -2296 ((-522) $)) (-15 -2410 ((-202) $)) (-15 -3609 ((-1085) $)) (-15 -3667 ((-1068) $)) (-15 -3976 ((-2 (|:| |cd| (-1068)) (|:| -3015 (-1068))) $)) (-15 -1495 ((-1085) $)))
+((-1419 (((-108) $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 12)) (-2356 (($) 15)) (-1373 (($) 13)) (-3234 (($) 16)) (-2553 (($) 14)) (-1562 (((-108) $ $) 8)))
+(((-760) (-13 (-1014) (-10 -8 (-15 -1373 ($)) (-15 -2356 ($)) (-15 -3234 ($)) (-15 -2553 ($))))) (T -760))
+((-1373 (*1 *1) (-5 *1 (-760))) (-2356 (*1 *1) (-5 *1 (-760))) (-3234 (*1 *1) (-5 *1 (-760))) (-2553 (*1 *1) (-5 *1 (-760))))
+(-13 (-1014) (-10 -8 (-15 -1373 ($)) (-15 -2356 ($)) (-15 -3234 ($)) (-15 -2553 ($))))
+((-1419 (((-108) $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 21) (($ (-1085)) 17)) (-2831 (((-108) $) 10)) (-1474 (((-108) $) 9)) (-1691 (((-108) $) 11)) (-2712 (((-108) $) 8)) (-1562 (((-108) $ $) 19)))
+(((-761) (-13 (-1014) (-10 -8 (-15 -2217 ($ (-1085))) (-15 -2712 ((-108) $)) (-15 -1474 ((-108) $)) (-15 -2831 ((-108) $)) (-15 -1691 ((-108) $))))) (T -761))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-761)))) (-2712 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))) (-1474 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))) (-2831 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))) (-1691 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))))
+(-13 (-1014) (-10 -8 (-15 -2217 ($ (-1085))) (-15 -2712 ((-108) $)) (-15 -1474 ((-108) $)) (-15 -2831 ((-108) $)) (-15 -1691 ((-108) $))))
+((-1419 (((-108) $ $) NIL)) (-2837 (($ (-761) (-588 (-1085))) 24)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3852 (((-761) $) 25)) (-3737 (((-588 (-1085)) $) 26)) (-2217 (((-792) $) 23)) (-1562 (((-108) $ $) NIL)))
+(((-762) (-13 (-1014) (-10 -8 (-15 -3852 ((-761) $)) (-15 -3737 ((-588 (-1085)) $)) (-15 -2837 ($ (-761) (-588 (-1085))))))) (T -762))
+((-3852 (*1 *2 *1) (-12 (-5 *2 (-761)) (-5 *1 (-762)))) (-3737 (*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-762)))) (-2837 (*1 *1 *2 *3) (-12 (-5 *2 (-761)) (-5 *3 (-588 (-1085))) (-5 *1 (-762)))))
+(-13 (-1014) (-10 -8 (-15 -3852 ((-761) $)) (-15 -3737 ((-588 (-1085)) $)) (-15 -2837 ($ (-761) (-588 (-1085))))))
+((-2810 (((-1171) (-759) (-291 |#1|) (-108)) 22) (((-1171) (-759) (-291 |#1|)) 76) (((-1068) (-291 |#1|) (-108)) 75) (((-1068) (-291 |#1|)) 74)))
+(((-763 |#1|) (-10 -7 (-15 -2810 ((-1068) (-291 |#1|))) (-15 -2810 ((-1068) (-291 |#1|) (-108))) (-15 -2810 ((-1171) (-759) (-291 |#1|))) (-15 -2810 ((-1171) (-759) (-291 |#1|) (-108)))) (-13 (-765) (-784) (-971))) (T -763))
+((-2810 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-759)) (-5 *4 (-291 *6)) (-5 *5 (-108)) (-4 *6 (-13 (-765) (-784) (-971))) (-5 *2 (-1171)) (-5 *1 (-763 *6)))) (-2810 (*1 *2 *3 *4) (-12 (-5 *3 (-759)) (-5 *4 (-291 *5)) (-4 *5 (-13 (-765) (-784) (-971))) (-5 *2 (-1171)) (-5 *1 (-763 *5)))) (-2810 (*1 *2 *3 *4) (-12 (-5 *3 (-291 *5)) (-5 *4 (-108)) (-4 *5 (-13 (-765) (-784) (-971))) (-5 *2 (-1068)) (-5 *1 (-763 *5)))) (-2810 (*1 *2 *3) (-12 (-5 *3 (-291 *4)) (-4 *4 (-13 (-765) (-784) (-971))) (-5 *2 (-1068)) (-5 *1 (-763 *4)))))
+(-10 -7 (-15 -2810 ((-1068) (-291 |#1|))) (-15 -2810 ((-1068) (-291 |#1|) (-108))) (-15 -2810 ((-1171) (-759) (-291 |#1|))) (-15 -2810 ((-1171) (-759) (-291 |#1|) (-108))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-1726 ((|#1| $) 10)) (-1410 (($ |#1|) 9)) (-2859 (((-108) $) NIL)) (-3500 (($ |#2| (-708)) NIL)) (-3564 (((-708) $) NIL)) (-3224 ((|#2| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2731 (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $) NIL (|has| |#1| (-210)))) (-2487 (((-708) $) NIL)) (-2217 (((-792) $) 17) (($ (-522)) NIL) (($ |#2|) NIL (|has| |#2| (-157)))) (-1643 ((|#2| $ (-708)) NIL)) (-2742 (((-708)) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $) NIL (|has| |#1| (-210)))) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-764 |#1| |#2|) (-13 (-647 |#2|) (-10 -8 (IF (|has| |#1| (-210)) (-6 (-210)) |%noBranch|) (-15 -1410 ($ |#1|)) (-15 -1726 (|#1| $)))) (-647 |#2|) (-971)) (T -764))
+((-1410 (*1 *1 *2) (-12 (-4 *3 (-971)) (-5 *1 (-764 *2 *3)) (-4 *2 (-647 *3)))) (-1726 (*1 *2 *1) (-12 (-4 *2 (-647 *3)) (-5 *1 (-764 *2 *3)) (-4 *3 (-971)))))
+(-13 (-647 |#2|) (-10 -8 (IF (|has| |#1| (-210)) (-6 (-210)) |%noBranch|) (-15 -1410 ($ |#1|)) (-15 -1726 (|#1| $))))
+((-2810 (((-1171) (-759) $ (-108)) 9) (((-1171) (-759) $) 8) (((-1068) $ (-108)) 7) (((-1068) $) 6)))
(((-765) (-1197)) (T -765))
-((-4149 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-765)) (-5 *3 (-759)) (-5 *4 (-108)) (-5 *2 (-1171)))) (-4149 (*1 *2 *3 *1) (-12 (-4 *1 (-765)) (-5 *3 (-759)) (-5 *2 (-1171)))) (-4149 (*1 *2 *1 *3) (-12 (-4 *1 (-765)) (-5 *3 (-108)) (-5 *2 (-1068)))) (-4149 (*1 *2 *1) (-12 (-4 *1 (-765)) (-5 *2 (-1068)))))
-(-13 (-10 -8 (-15 -4149 ((-1068) $)) (-15 -4149 ((-1068) $ (-108))) (-15 -4149 ((-1171) (-759) $)) (-15 -4149 ((-1171) (-759) $ (-108)))))
-((-3798 (((-287) (-1068) (-1068)) 12)) (-1229 (((-108) (-1068) (-1068)) 34)) (-2999 (((-108) (-1068)) 33)) (-2450 (((-51) (-1068)) 25)) (-3925 (((-51) (-1068)) 23)) (-3724 (((-51) (-759)) 17)) (-3531 (((-588 (-1068)) (-1068)) 28)) (-1557 (((-588 (-1068))) 27)))
-(((-766) (-10 -7 (-15 -3724 ((-51) (-759))) (-15 -3925 ((-51) (-1068))) (-15 -2450 ((-51) (-1068))) (-15 -1557 ((-588 (-1068)))) (-15 -3531 ((-588 (-1068)) (-1068))) (-15 -2999 ((-108) (-1068))) (-15 -1229 ((-108) (-1068) (-1068))) (-15 -3798 ((-287) (-1068) (-1068))))) (T -766))
-((-3798 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-287)) (-5 *1 (-766)))) (-1229 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-108)) (-5 *1 (-766)))) (-2999 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-108)) (-5 *1 (-766)))) (-3531 (*1 *2 *3) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-766)) (-5 *3 (-1068)))) (-1557 (*1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-766)))) (-2450 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-51)) (-5 *1 (-766)))) (-3925 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-51)) (-5 *1 (-766)))) (-3724 (*1 *2 *3) (-12 (-5 *3 (-759)) (-5 *2 (-51)) (-5 *1 (-766)))))
-(-10 -7 (-15 -3724 ((-51) (-759))) (-15 -3925 ((-51) (-1068))) (-15 -2450 ((-51) (-1068))) (-15 -1557 ((-588 (-1068)))) (-15 -3531 ((-588 (-1068)) (-1068))) (-15 -2999 ((-108) (-1068))) (-15 -1229 ((-108) (-1068) (-1068))) (-15 -3798 ((-287) (-1068) (-1068))))
-((-1416 (((-108) $ $) 19)) (-2270 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-2079 (($ $ $) 72)) (-3557 (((-108) $ $) 73)) (-4141 (((-108) $ (-708)) 8)) (-1764 (($ (-588 |#1|)) 68) (($) 67)) (-2790 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-3362 (($ $) 62)) (-2333 (($ $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3859 (($ |#1| $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4238)))) (-1423 (($ |#1| $) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4238)))) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-2814 ((|#1| $) 78)) (-1369 (($ $ $) 81)) (-2160 (($ $ $) 80)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2446 ((|#1| $) 79)) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22)) (-2416 (($ $ $) 69)) (-2116 ((|#1| $) 39)) (-4095 (($ |#1| $) 40) (($ |#1| $ (-708)) 63)) (-4151 (((-1032) $) 21)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-4087 ((|#1| $) 41)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-3698 (((-588 (-2 (|:| -3048 |#1|) (|:| -4168 (-708)))) $) 61)) (-3417 (($ $ |#1|) 71) (($ $ $) 70)) (-3990 (($) 49) (($ (-588 |#1|)) 48)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-1431 (((-498) $) 59 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 50)) (-2190 (((-792) $) 18)) (-3392 (($ (-588 |#1|)) 66) (($) 65)) (-2795 (($ (-588 |#1|)) 42)) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20)) (-1549 (((-108) $ $) 64)) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-2810 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-765)) (-5 *3 (-759)) (-5 *4 (-108)) (-5 *2 (-1171)))) (-2810 (*1 *2 *3 *1) (-12 (-4 *1 (-765)) (-5 *3 (-759)) (-5 *2 (-1171)))) (-2810 (*1 *2 *1 *3) (-12 (-4 *1 (-765)) (-5 *3 (-108)) (-5 *2 (-1068)))) (-2810 (*1 *2 *1) (-12 (-4 *1 (-765)) (-5 *2 (-1068)))))
+(-13 (-10 -8 (-15 -2810 ((-1068) $)) (-15 -2810 ((-1068) $ (-108))) (-15 -2810 ((-1171) (-759) $)) (-15 -2810 ((-1171) (-759) $ (-108)))))
+((-2320 (((-287) (-1068) (-1068)) 12)) (-2219 (((-108) (-1068) (-1068)) 34)) (-4146 (((-108) (-1068)) 33)) (-2547 (((-51) (-1068)) 25)) (-4105 (((-51) (-1068)) 23)) (-3979 (((-51) (-759)) 17)) (-2732 (((-588 (-1068)) (-1068)) 28)) (-3481 (((-588 (-1068))) 27)))
+(((-766) (-10 -7 (-15 -3979 ((-51) (-759))) (-15 -4105 ((-51) (-1068))) (-15 -2547 ((-51) (-1068))) (-15 -3481 ((-588 (-1068)))) (-15 -2732 ((-588 (-1068)) (-1068))) (-15 -4146 ((-108) (-1068))) (-15 -2219 ((-108) (-1068) (-1068))) (-15 -2320 ((-287) (-1068) (-1068))))) (T -766))
+((-2320 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-287)) (-5 *1 (-766)))) (-2219 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-108)) (-5 *1 (-766)))) (-4146 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-108)) (-5 *1 (-766)))) (-2732 (*1 *2 *3) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-766)) (-5 *3 (-1068)))) (-3481 (*1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-766)))) (-2547 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-51)) (-5 *1 (-766)))) (-4105 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-51)) (-5 *1 (-766)))) (-3979 (*1 *2 *3) (-12 (-5 *3 (-759)) (-5 *2 (-51)) (-5 *1 (-766)))))
+(-10 -7 (-15 -3979 ((-51) (-759))) (-15 -4105 ((-51) (-1068))) (-15 -2547 ((-51) (-1068))) (-15 -3481 ((-588 (-1068)))) (-15 -2732 ((-588 (-1068)) (-1068))) (-15 -4146 ((-108) (-1068))) (-15 -2219 ((-108) (-1068) (-1068))) (-15 -2320 ((-287) (-1068) (-1068))))
+((-1419 (((-108) $ $) 19)) (-2323 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-4099 (($ $ $) 72)) (-1751 (((-108) $ $) 73)) (-2717 (((-108) $ (-708)) 8)) (-1852 (($ (-588 |#1|)) 68) (($) 67)) (-1213 (($ (-1 (-108) |#1|) $) 45 (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-1581 (($ $) 62)) (-2379 (($ $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1700 (($ |#1| $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) 46 (|has| $ (-6 -4238)))) (-1424 (($ |#1| $) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 54 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4238)))) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-1308 ((|#1| $) 78)) (-3557 (($ $ $) 81)) (-3164 (($ $ $) 80)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2524 ((|#1| $) 79)) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22)) (-2251 (($ $ $) 69)) (-1431 ((|#1| $) 39)) (-3365 (($ |#1| $) 40) (($ |#1| $ (-708)) 63)) (-4174 (((-1032) $) 21)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 51)) (-3295 ((|#1| $) 41)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-3699 (((-588 (-2 (|:| -3149 |#1|) (|:| -4187 (-708)))) $) 61)) (-3962 (($ $ |#1|) 71) (($ $ $) 70)) (-3546 (($) 49) (($ (-588 |#1|)) 48)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-3873 (((-498) $) 59 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 50)) (-2217 (((-792) $) 18)) (-3482 (($ (-588 |#1|)) 66) (($) 65)) (-2501 (($ (-588 |#1|)) 42)) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20)) (-1587 (((-108) $ $) 64)) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-767 |#1|) (-1197) (-784)) (T -767))
-((-2814 (*1 *2 *1) (-12 (-4 *1 (-767 *2)) (-4 *2 (-784)))))
-(-13 (-674 |t#1|) (-896 |t#1|) (-10 -8 (-15 -2814 (|t#1| $))))
+((-1308 (*1 *2 *1) (-12 (-4 *1 (-767 *2)) (-4 *2 (-784)))))
+(-13 (-674 |t#1|) (-896 |t#1|) (-10 -8 (-15 -1308 (|t#1| $))))
(((-33) . T) ((-102 |#1|) . T) ((-97) . T) ((-562 (-792)) . T) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-212 |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-633 |#1|) . T) ((-674 |#1|) . T) ((-896 |#1|) . T) ((-1012 |#1|) . T) ((-1014) . T) ((-1120) . T))
-((-3181 (((-1171) (-1032) (-1032)) 47)) (-3899 (((-1171) (-758) (-51)) 44)) (-3556 (((-51) (-758)) 16)))
-(((-768) (-10 -7 (-15 -3556 ((-51) (-758))) (-15 -3899 ((-1171) (-758) (-51))) (-15 -3181 ((-1171) (-1032) (-1032))))) (T -768))
-((-3181 (*1 *2 *3 *3) (-12 (-5 *3 (-1032)) (-5 *2 (-1171)) (-5 *1 (-768)))) (-3899 (*1 *2 *3 *4) (-12 (-5 *3 (-758)) (-5 *4 (-51)) (-5 *2 (-1171)) (-5 *1 (-768)))) (-3556 (*1 *2 *3) (-12 (-5 *3 (-758)) (-5 *2 (-51)) (-5 *1 (-768)))))
-(-10 -7 (-15 -3556 ((-51) (-758))) (-15 -3899 ((-1171) (-758) (-51))) (-15 -3181 ((-1171) (-1032) (-1032))))
-((-1391 (((-770 |#2|) (-1 |#2| |#1|) (-770 |#1|) (-770 |#2|)) 12) (((-770 |#2|) (-1 |#2| |#1|) (-770 |#1|)) 13)))
-(((-769 |#1| |#2|) (-10 -7 (-15 -1391 ((-770 |#2|) (-1 |#2| |#1|) (-770 |#1|))) (-15 -1391 ((-770 |#2|) (-1 |#2| |#1|) (-770 |#1|) (-770 |#2|)))) (-1014) (-1014)) (T -769))
-((-1391 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-770 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-770 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *1 (-769 *5 *6)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-770 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *2 (-770 *6)) (-5 *1 (-769 *5 *6)))))
-(-10 -7 (-15 -1391 ((-770 |#2|) (-1 |#2| |#1|) (-770 |#1|))) (-15 -1391 ((-770 |#2|) (-1 |#2| |#1|) (-770 |#1|) (-770 |#2|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL (|has| |#1| (-21)))) (-1233 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-1341 (((-522) $) NIL (|has| |#1| (-782)))) (-3175 (($) NIL (|has| |#1| (-21)) CONST)) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 15)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 9)) (-2682 (((-3 $ "failed") $) 40 (|has| |#1| (-782)))) (-1664 (((-3 (-382 (-522)) "failed") $) 48 (|has| |#1| (-507)))) (-1770 (((-108) $) 43 (|has| |#1| (-507)))) (-1492 (((-382 (-522)) $) 45 (|has| |#1| (-507)))) (-3687 (((-108) $) NIL (|has| |#1| (-782)))) (-2782 (((-108) $) NIL (|has| |#1| (-782)))) (-2556 (((-108) $) NIL (|has| |#1| (-782)))) (-2814 (($ $ $) NIL (|has| |#1| (-782)))) (-2446 (($ $ $) NIL (|has| |#1| (-782)))) (-2385 (((-1068) $) NIL)) (-2849 (($) 13)) (-2365 (((-108) $) 12)) (-4151 (((-1032) $) NIL)) (-3827 (((-108) $) 11)) (-2190 (((-792) $) 18) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) 8) (($ (-522)) NIL (-3708 (|has| |#1| (-782)) (|has| |#1| (-962 (-522)))))) (-2323 (((-708)) 34 (|has| |#1| (-782)))) (-2241 (($ $) NIL (|has| |#1| (-782)))) (-3510 (($ $ (-850)) NIL (|has| |#1| (-782))) (($ $ (-708)) NIL (|has| |#1| (-782)))) (-3566 (($) 22 (|has| |#1| (-21)) CONST)) (-3577 (($) 31 (|has| |#1| (-782)) CONST)) (-1574 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1531 (((-108) $ $) 20)) (-1566 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1549 (((-108) $ $) 42 (|has| |#1| (-782)))) (-1612 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 27 (|has| |#1| (-21)))) (-1602 (($ $ $) 29 (|has| |#1| (-21)))) (** (($ $ (-850)) NIL (|has| |#1| (-782))) (($ $ (-708)) NIL (|has| |#1| (-782)))) (* (($ $ $) 37 (|has| |#1| (-782))) (($ (-522) $) 25 (|has| |#1| (-21))) (($ (-708) $) NIL (|has| |#1| (-21))) (($ (-850) $) NIL (|has| |#1| (-21)))))
-(((-770 |#1|) (-13 (-1014) (-386 |#1|) (-10 -8 (-15 -2849 ($)) (-15 -3827 ((-108) $)) (-15 -2365 ((-108) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-782)) |%noBranch|) (IF (|has| |#1| (-507)) (PROGN (-15 -1770 ((-108) $)) (-15 -1492 ((-382 (-522)) $)) (-15 -1664 ((-3 (-382 (-522)) "failed") $))) |%noBranch|))) (-1014)) (T -770))
-((-2849 (*1 *1) (-12 (-5 *1 (-770 *2)) (-4 *2 (-1014)))) (-3827 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-770 *3)) (-4 *3 (-1014)))) (-2365 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-770 *3)) (-4 *3 (-1014)))) (-1770 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-770 *3)) (-4 *3 (-507)) (-4 *3 (-1014)))) (-1492 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-770 *3)) (-4 *3 (-507)) (-4 *3 (-1014)))) (-1664 (*1 *2 *1) (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-770 *3)) (-4 *3 (-507)) (-4 *3 (-1014)))))
-(-13 (-1014) (-386 |#1|) (-10 -8 (-15 -2849 ($)) (-15 -3827 ((-108) $)) (-15 -2365 ((-108) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-782)) |%noBranch|) (IF (|has| |#1| (-507)) (PROGN (-15 -1770 ((-108) $)) (-15 -1492 ((-382 (-522)) $)) (-15 -1664 ((-3 (-382 (-522)) "failed") $))) |%noBranch|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL) (((-3 (-110) "failed") $) NIL)) (-1484 ((|#1| $) NIL) (((-110) $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2995 ((|#1| (-110) |#1|) NIL)) (-2782 (((-108) $) NIL)) (-1491 (($ |#1| (-336 (-110))) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2657 (($ $ (-1 |#1| |#1|)) NIL)) (-3250 (($ $ (-1 |#1| |#1|)) NIL)) (-2545 ((|#1| $ |#1|) NIL)) (-1786 ((|#1| |#1|) NIL (|has| |#1| (-157)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-110)) NIL)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-3785 (($ $) NIL (|has| |#1| (-157))) (($ $ $) NIL (|has| |#1| (-157)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ (-110) (-522)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-157))) (($ $ |#1|) NIL (|has| |#1| (-157)))))
-(((-771 |#1|) (-13 (-971) (-962 |#1|) (-962 (-110)) (-262 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-157)) (PROGN (-6 (-37 |#1|)) (-15 -3785 ($ $)) (-15 -3785 ($ $ $)) (-15 -1786 (|#1| |#1|))) |%noBranch|) (-15 -3250 ($ $ (-1 |#1| |#1|))) (-15 -2657 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-110) (-522))) (-15 ** ($ $ (-522))) (-15 -2995 (|#1| (-110) |#1|)) (-15 -1491 ($ |#1| (-336 (-110)))))) (-971)) (T -771))
-((-3785 (*1 *1 *1) (-12 (-5 *1 (-771 *2)) (-4 *2 (-157)) (-4 *2 (-971)))) (-3785 (*1 *1 *1 *1) (-12 (-5 *1 (-771 *2)) (-4 *2 (-157)) (-4 *2 (-971)))) (-1786 (*1 *2 *2) (-12 (-5 *1 (-771 *2)) (-4 *2 (-157)) (-4 *2 (-971)))) (-3250 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-771 *3)))) (-2657 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-771 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-522)) (-5 *1 (-771 *4)) (-4 *4 (-971)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-771 *3)) (-4 *3 (-971)))) (-2995 (*1 *2 *3 *2) (-12 (-5 *3 (-110)) (-5 *1 (-771 *2)) (-4 *2 (-971)))) (-1491 (*1 *1 *2 *3) (-12 (-5 *3 (-336 (-110))) (-5 *1 (-771 *2)) (-4 *2 (-971)))))
-(-13 (-971) (-962 |#1|) (-962 (-110)) (-262 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-157)) (PROGN (-6 (-37 |#1|)) (-15 -3785 ($ $)) (-15 -3785 ($ $ $)) (-15 -1786 (|#1| |#1|))) |%noBranch|) (-15 -3250 ($ $ (-1 |#1| |#1|))) (-15 -2657 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-110) (-522))) (-15 ** ($ $ (-522))) (-15 -2995 (|#1| (-110) |#1|)) (-15 -1491 ($ |#1| (-336 (-110))))))
-((-2136 (((-192 (-472)) (-1068)) 8)))
-(((-772) (-10 -7 (-15 -2136 ((-192 (-472)) (-1068))))) (T -772))
-((-2136 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-192 (-472))) (-5 *1 (-772)))))
-(-10 -7 (-15 -2136 ((-192 (-472)) (-1068))))
-((-1416 (((-108) $ $) 7)) (-3619 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) 14) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 13)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 16) (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) 15)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-1531 (((-108) $ $) 6)))
+((-2205 (((-1171) (-1032) (-1032)) 47)) (-2026 (((-1171) (-758) (-51)) 44)) (-1740 (((-51) (-758)) 16)))
+(((-768) (-10 -7 (-15 -1740 ((-51) (-758))) (-15 -2026 ((-1171) (-758) (-51))) (-15 -2205 ((-1171) (-1032) (-1032))))) (T -768))
+((-2205 (*1 *2 *3 *3) (-12 (-5 *3 (-1032)) (-5 *2 (-1171)) (-5 *1 (-768)))) (-2026 (*1 *2 *3 *4) (-12 (-5 *3 (-758)) (-5 *4 (-51)) (-5 *2 (-1171)) (-5 *1 (-768)))) (-1740 (*1 *2 *3) (-12 (-5 *3 (-758)) (-5 *2 (-51)) (-5 *1 (-768)))))
+(-10 -7 (-15 -1740 ((-51) (-758))) (-15 -2026 ((-1171) (-758) (-51))) (-15 -2205 ((-1171) (-1032) (-1032))))
+((-3810 (((-770 |#2|) (-1 |#2| |#1|) (-770 |#1|) (-770 |#2|)) 12) (((-770 |#2|) (-1 |#2| |#1|) (-770 |#1|)) 13)))
+(((-769 |#1| |#2|) (-10 -7 (-15 -3810 ((-770 |#2|) (-1 |#2| |#1|) (-770 |#1|))) (-15 -3810 ((-770 |#2|) (-1 |#2| |#1|) (-770 |#1|) (-770 |#2|)))) (-1014) (-1014)) (T -769))
+((-3810 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-770 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-770 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *1 (-769 *5 *6)))) (-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-770 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *2 (-770 *6)) (-5 *1 (-769 *5 *6)))))
+(-10 -7 (-15 -3810 ((-770 |#2|) (-1 |#2| |#1|) (-770 |#1|))) (-15 -3810 ((-770 |#2|) (-1 |#2| |#1|) (-770 |#1|) (-770 |#2|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL (|has| |#1| (-21)))) (-2265 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3355 (((-522) $) NIL (|has| |#1| (-782)))) (-3367 (($) NIL (|has| |#1| (-21)) CONST)) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 15)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 9)) (-3920 (((-3 $ "failed") $) 40 (|has| |#1| (-782)))) (-2549 (((-3 (-382 (-522)) "failed") $) 48 (|has| |#1| (-507)))) (-3519 (((-108) $) 43 (|has| |#1| (-507)))) (-1699 (((-382 (-522)) $) 45 (|has| |#1| (-507)))) (-3603 (((-108) $) NIL (|has| |#1| (-782)))) (-2859 (((-108) $) NIL (|has| |#1| (-782)))) (-3740 (((-108) $) NIL (|has| |#1| (-782)))) (-1308 (($ $ $) NIL (|has| |#1| (-782)))) (-2524 (($ $ $) NIL (|has| |#1| (-782)))) (-2311 (((-1068) $) NIL)) (-2990 (($) 13)) (-3927 (((-108) $) 12)) (-4174 (((-1032) $) NIL)) (-2680 (((-108) $) 11)) (-2217 (((-792) $) 18) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) 8) (($ (-522)) NIL (-3844 (|has| |#1| (-782)) (|has| |#1| (-962 (-522)))))) (-2742 (((-708)) 34 (|has| |#1| (-782)))) (-4126 (($ $) NIL (|has| |#1| (-782)))) (-3622 (($ $ (-850)) NIL (|has| |#1| (-782))) (($ $ (-708)) NIL (|has| |#1| (-782)))) (-3697 (($) 22 (|has| |#1| (-21)) CONST)) (-3709 (($) 31 (|has| |#1| (-782)) CONST)) (-1623 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1562 (((-108) $ $) 20)) (-1609 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1587 (((-108) $ $) 42 (|has| |#1| (-782)))) (-1672 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 27 (|has| |#1| (-21)))) (-1661 (($ $ $) 29 (|has| |#1| (-21)))) (** (($ $ (-850)) NIL (|has| |#1| (-782))) (($ $ (-708)) NIL (|has| |#1| (-782)))) (* (($ $ $) 37 (|has| |#1| (-782))) (($ (-522) $) 25 (|has| |#1| (-21))) (($ (-708) $) NIL (|has| |#1| (-21))) (($ (-850) $) NIL (|has| |#1| (-21)))))
+(((-770 |#1|) (-13 (-1014) (-386 |#1|) (-10 -8 (-15 -2990 ($)) (-15 -2680 ((-108) $)) (-15 -3927 ((-108) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-782)) |%noBranch|) (IF (|has| |#1| (-507)) (PROGN (-15 -3519 ((-108) $)) (-15 -1699 ((-382 (-522)) $)) (-15 -2549 ((-3 (-382 (-522)) "failed") $))) |%noBranch|))) (-1014)) (T -770))
+((-2990 (*1 *1) (-12 (-5 *1 (-770 *2)) (-4 *2 (-1014)))) (-2680 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-770 *3)) (-4 *3 (-1014)))) (-3927 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-770 *3)) (-4 *3 (-1014)))) (-3519 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-770 *3)) (-4 *3 (-507)) (-4 *3 (-1014)))) (-1699 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-770 *3)) (-4 *3 (-507)) (-4 *3 (-1014)))) (-2549 (*1 *2 *1) (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-770 *3)) (-4 *3 (-507)) (-4 *3 (-1014)))))
+(-13 (-1014) (-386 |#1|) (-10 -8 (-15 -2990 ($)) (-15 -2680 ((-108) $)) (-15 -3927 ((-108) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-782)) |%noBranch|) (IF (|has| |#1| (-507)) (PROGN (-15 -3519 ((-108) $)) (-15 -1699 ((-382 (-522)) $)) (-15 -2549 ((-3 (-382 (-522)) "failed") $))) |%noBranch|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL) (((-3 (-110) "failed") $) NIL)) (-1478 ((|#1| $) NIL) (((-110) $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-4106 ((|#1| (-110) |#1|) NIL)) (-2859 (((-108) $) NIL)) (-1687 (($ |#1| (-336 (-110))) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1786 (($ $ (-1 |#1| |#1|)) NIL)) (-1710 (($ $ (-1 |#1| |#1|)) NIL)) (-2683 ((|#1| $ |#1|) NIL)) (-3658 ((|#1| |#1|) NIL (|has| |#1| (-157)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-110)) NIL)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-3397 (($ $) NIL (|has| |#1| (-157))) (($ $ $) NIL (|has| |#1| (-157)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ (-110) (-522)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-157))) (($ $ |#1|) NIL (|has| |#1| (-157)))))
+(((-771 |#1|) (-13 (-971) (-962 |#1|) (-962 (-110)) (-262 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-157)) (PROGN (-6 (-37 |#1|)) (-15 -3397 ($ $)) (-15 -3397 ($ $ $)) (-15 -3658 (|#1| |#1|))) |%noBranch|) (-15 -1710 ($ $ (-1 |#1| |#1|))) (-15 -1786 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-110) (-522))) (-15 ** ($ $ (-522))) (-15 -4106 (|#1| (-110) |#1|)) (-15 -1687 ($ |#1| (-336 (-110)))))) (-971)) (T -771))
+((-3397 (*1 *1 *1) (-12 (-5 *1 (-771 *2)) (-4 *2 (-157)) (-4 *2 (-971)))) (-3397 (*1 *1 *1 *1) (-12 (-5 *1 (-771 *2)) (-4 *2 (-157)) (-4 *2 (-971)))) (-3658 (*1 *2 *2) (-12 (-5 *1 (-771 *2)) (-4 *2 (-157)) (-4 *2 (-971)))) (-1710 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-771 *3)))) (-1786 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-771 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-522)) (-5 *1 (-771 *4)) (-4 *4 (-971)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-771 *3)) (-4 *3 (-971)))) (-4106 (*1 *2 *3 *2) (-12 (-5 *3 (-110)) (-5 *1 (-771 *2)) (-4 *2 (-971)))) (-1687 (*1 *1 *2 *3) (-12 (-5 *3 (-336 (-110))) (-5 *1 (-771 *2)) (-4 *2 (-971)))))
+(-13 (-971) (-962 |#1|) (-962 (-110)) (-262 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |#1| (-157)) (PROGN (-6 (-37 |#1|)) (-15 -3397 ($ $)) (-15 -3397 ($ $ $)) (-15 -3658 (|#1| |#1|))) |%noBranch|) (-15 -1710 ($ $ (-1 |#1| |#1|))) (-15 -1786 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-110) (-522))) (-15 ** ($ $ (-522))) (-15 -4106 (|#1| (-110) |#1|)) (-15 -1687 ($ |#1| (-336 (-110))))))
+((-2962 (((-192 (-472)) (-1068)) 8)))
+(((-772) (-10 -7 (-15 -2962 ((-192 (-472)) (-1068))))) (T -772))
+((-2962 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-192 (-472))) (-5 *1 (-772)))))
+(-10 -7 (-15 -2962 ((-192 (-472)) (-1068))))
+((-1419 (((-108) $ $) 7)) (-4128 (((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) 14) (((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 13)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 16) (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) 15)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-1562 (((-108) $ $) 6)))
(((-773) (-1197)) (T -773))
-((-1798 (*1 *2 *3 *4) (-12 (-4 *1 (-773)) (-5 *3 (-983)) (-5 *4 (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (-5 *2 (-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)))))) (-1798 (*1 *2 *3 *4) (-12 (-4 *1 (-773)) (-5 *3 (-983)) (-5 *4 (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) (-5 *2 (-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)))))) (-3619 (*1 *2 *3) (-12 (-4 *1 (-773)) (-5 *3 (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) (-5 *2 (-960)))) (-3619 (*1 *2 *3) (-12 (-4 *1 (-773)) (-5 *3 (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (-5 *2 (-960)))))
-(-13 (-1014) (-10 -7 (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))) (-15 -3619 ((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))) (-15 -3619 ((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))))))
+((-1361 (*1 *2 *3 *4) (-12 (-4 *1 (-773)) (-5 *3 (-983)) (-5 *4 (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (-5 *2 (-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)))))) (-1361 (*1 *2 *3 *4) (-12 (-4 *1 (-773)) (-5 *3 (-983)) (-5 *4 (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) (-5 *2 (-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)))))) (-4128 (*1 *2 *3) (-12 (-4 *1 (-773)) (-5 *3 (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) (-5 *2 (-960)))) (-4128 (*1 *2 *3) (-12 (-4 *1 (-773)) (-5 *3 (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (-5 *2 (-960)))))
+(-13 (-1014) (-10 -7 (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))) (-15 -4128 ((-960) (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))) (-15 -4128 ((-960) (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-2003 (((-960) (-588 (-291 (-354))) (-588 (-354))) 143) (((-960) (-291 (-354)) (-588 (-354))) 141) (((-960) (-291 (-354)) (-588 (-354)) (-588 (-777 (-354))) (-588 (-777 (-354)))) 140) (((-960) (-291 (-354)) (-588 (-354)) (-588 (-777 (-354))) (-588 (-291 (-354))) (-588 (-777 (-354)))) 139) (((-960) (-775)) 112) (((-960) (-775) (-983)) 111)) (-1798 (((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-775) (-983)) 76) (((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-775)) 78)) (-3914 (((-960) (-588 (-291 (-354))) (-588 (-354))) 144) (((-960) (-775)) 128)))
-(((-774) (-10 -7 (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-775))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-775) (-983))) (-15 -2003 ((-960) (-775) (-983))) (-15 -2003 ((-960) (-775))) (-15 -3914 ((-960) (-775))) (-15 -2003 ((-960) (-291 (-354)) (-588 (-354)) (-588 (-777 (-354))) (-588 (-291 (-354))) (-588 (-777 (-354))))) (-15 -2003 ((-960) (-291 (-354)) (-588 (-354)) (-588 (-777 (-354))) (-588 (-777 (-354))))) (-15 -2003 ((-960) (-291 (-354)) (-588 (-354)))) (-15 -2003 ((-960) (-588 (-291 (-354))) (-588 (-354)))) (-15 -3914 ((-960) (-588 (-291 (-354))) (-588 (-354)))))) (T -774))
-((-3914 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-291 (-354)))) (-5 *4 (-588 (-354))) (-5 *2 (-960)) (-5 *1 (-774)))) (-2003 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-291 (-354)))) (-5 *4 (-588 (-354))) (-5 *2 (-960)) (-5 *1 (-774)))) (-2003 (*1 *2 *3 *4) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-354))) (-5 *2 (-960)) (-5 *1 (-774)))) (-2003 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-354))) (-5 *5 (-588 (-777 (-354)))) (-5 *2 (-960)) (-5 *1 (-774)))) (-2003 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-588 (-354))) (-5 *5 (-588 (-777 (-354)))) (-5 *6 (-588 (-291 (-354)))) (-5 *3 (-291 (-354))) (-5 *2 (-960)) (-5 *1 (-774)))) (-3914 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-960)) (-5 *1 (-774)))) (-2003 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-960)) (-5 *1 (-774)))) (-2003 (*1 *2 *3 *4) (-12 (-5 *3 (-775)) (-5 *4 (-983)) (-5 *2 (-960)) (-5 *1 (-774)))) (-1798 (*1 *2 *3 *4) (-12 (-5 *3 (-775)) (-5 *4 (-983)) (-5 *2 (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *1 (-774)))) (-1798 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *1 (-774)))))
-(-10 -7 (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-775))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-775) (-983))) (-15 -2003 ((-960) (-775) (-983))) (-15 -2003 ((-960) (-775))) (-15 -3914 ((-960) (-775))) (-15 -2003 ((-960) (-291 (-354)) (-588 (-354)) (-588 (-777 (-354))) (-588 (-291 (-354))) (-588 (-777 (-354))))) (-15 -2003 ((-960) (-291 (-354)) (-588 (-354)) (-588 (-777 (-354))) (-588 (-777 (-354))))) (-15 -2003 ((-960) (-291 (-354)) (-588 (-354)))) (-15 -2003 ((-960) (-588 (-291 (-354))) (-588 (-354)))) (-15 -3914 ((-960) (-588 (-291 (-354))) (-588 (-354)))))
-((-1416 (((-108) $ $) NIL)) (-1484 (((-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))) $) 15)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 14) (($ (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 8) (($ (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) 10) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))))) 12)) (-1531 (((-108) $ $) NIL)))
-(((-775) (-13 (-1014) (-10 -8 (-15 -2190 ($ (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))))) (-15 -2190 ($ (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))) (-15 -2190 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))))) (-15 -2190 ((-792) $)) (-15 -1484 ((-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))) $))))) (T -775))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-775)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (-5 *1 (-775)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))) (-5 *1 (-775)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))))) (-5 *1 (-775)))) (-1484 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202))))))) (-5 *1 (-775)))))
-(-13 (-1014) (-10 -8 (-15 -2190 ($ (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))))) (-15 -2190 ($ (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))) (-15 -2190 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))))) (-15 -2190 ((-792) $)) (-15 -1484 ((-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))) $))))
-((-1391 (((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|) (-777 |#2|) (-777 |#2|)) 13) (((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|)) 14)))
-(((-776 |#1| |#2|) (-10 -7 (-15 -1391 ((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|))) (-15 -1391 ((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|) (-777 |#2|) (-777 |#2|)))) (-1014) (-1014)) (T -776))
-((-1391 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-777 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-777 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *1 (-776 *5 *6)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-777 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *2 (-777 *6)) (-5 *1 (-776 *5 *6)))))
-(-10 -7 (-15 -1391 ((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|))) (-15 -1391 ((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|) (-777 |#2|) (-777 |#2|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL (|has| |#1| (-21)))) (-3346 (((-1032) $) 24)) (-1233 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-1341 (((-522) $) NIL (|has| |#1| (-782)))) (-3175 (($) NIL (|has| |#1| (-21)) CONST)) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 16)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 9)) (-2682 (((-3 $ "failed") $) 47 (|has| |#1| (-782)))) (-1664 (((-3 (-382 (-522)) "failed") $) 54 (|has| |#1| (-507)))) (-1770 (((-108) $) 49 (|has| |#1| (-507)))) (-1492 (((-382 (-522)) $) 52 (|has| |#1| (-507)))) (-3687 (((-108) $) NIL (|has| |#1| (-782)))) (-2873 (($) 13)) (-2782 (((-108) $) NIL (|has| |#1| (-782)))) (-2556 (((-108) $) NIL (|has| |#1| (-782)))) (-2886 (($) 14)) (-2814 (($ $ $) NIL (|has| |#1| (-782)))) (-2446 (($ $ $) NIL (|has| |#1| (-782)))) (-2385 (((-1068) $) NIL)) (-2365 (((-108) $) 12)) (-4151 (((-1032) $) NIL)) (-3827 (((-108) $) 11)) (-2190 (((-792) $) 22) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) 8) (($ (-522)) NIL (-3708 (|has| |#1| (-782)) (|has| |#1| (-962 (-522)))))) (-2323 (((-708)) 41 (|has| |#1| (-782)))) (-2241 (($ $) NIL (|has| |#1| (-782)))) (-3510 (($ $ (-850)) NIL (|has| |#1| (-782))) (($ $ (-708)) NIL (|has| |#1| (-782)))) (-3566 (($) 29 (|has| |#1| (-21)) CONST)) (-3577 (($) 38 (|has| |#1| (-782)) CONST)) (-1574 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1531 (((-108) $ $) 27)) (-1566 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1549 (((-108) $ $) 48 (|has| |#1| (-782)))) (-1612 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 34 (|has| |#1| (-21)))) (-1602 (($ $ $) 36 (|has| |#1| (-21)))) (** (($ $ (-850)) NIL (|has| |#1| (-782))) (($ $ (-708)) NIL (|has| |#1| (-782)))) (* (($ $ $) 44 (|has| |#1| (-782))) (($ (-522) $) 32 (|has| |#1| (-21))) (($ (-708) $) NIL (|has| |#1| (-21))) (($ (-850) $) NIL (|has| |#1| (-21)))))
-(((-777 |#1|) (-13 (-1014) (-386 |#1|) (-10 -8 (-15 -2873 ($)) (-15 -2886 ($)) (-15 -3827 ((-108) $)) (-15 -2365 ((-108) $)) (-15 -3346 ((-1032) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-782)) |%noBranch|) (IF (|has| |#1| (-507)) (PROGN (-15 -1770 ((-108) $)) (-15 -1492 ((-382 (-522)) $)) (-15 -1664 ((-3 (-382 (-522)) "failed") $))) |%noBranch|))) (-1014)) (T -777))
-((-2873 (*1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1014)))) (-2886 (*1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1014)))) (-3827 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-777 *3)) (-4 *3 (-1014)))) (-2365 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-777 *3)) (-4 *3 (-1014)))) (-3346 (*1 *2 *1) (-12 (-5 *2 (-1032)) (-5 *1 (-777 *3)) (-4 *3 (-1014)))) (-1770 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-777 *3)) (-4 *3 (-507)) (-4 *3 (-1014)))) (-1492 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-777 *3)) (-4 *3 (-507)) (-4 *3 (-1014)))) (-1664 (*1 *2 *1) (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-777 *3)) (-4 *3 (-507)) (-4 *3 (-1014)))))
-(-13 (-1014) (-386 |#1|) (-10 -8 (-15 -2873 ($)) (-15 -2886 ($)) (-15 -3827 ((-108) $)) (-15 -2365 ((-108) $)) (-15 -3346 ((-1032) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-782)) |%noBranch|) (IF (|has| |#1| (-507)) (PROGN (-15 -1770 ((-108) $)) (-15 -1492 ((-382 (-522)) $)) (-15 -1664 ((-3 (-382 (-522)) "failed") $))) |%noBranch|)))
-((-1416 (((-108) $ $) 7)) (-1629 (((-708)) 20)) (-3255 (($) 23)) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-2120 (((-850) $) 22)) (-2385 (((-1068) $) 9)) (-2717 (($ (-850)) 21)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)))
+((-2055 (((-960) (-588 (-291 (-354))) (-588 (-354))) 143) (((-960) (-291 (-354)) (-588 (-354))) 141) (((-960) (-291 (-354)) (-588 (-354)) (-588 (-777 (-354))) (-588 (-777 (-354)))) 140) (((-960) (-291 (-354)) (-588 (-354)) (-588 (-777 (-354))) (-588 (-291 (-354))) (-588 (-777 (-354)))) 139) (((-960) (-775)) 112) (((-960) (-775) (-983)) 111)) (-1361 (((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-775) (-983)) 76) (((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-775)) 78)) (-2158 (((-960) (-588 (-291 (-354))) (-588 (-354))) 144) (((-960) (-775)) 128)))
+(((-774) (-10 -7 (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-775))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-775) (-983))) (-15 -2055 ((-960) (-775) (-983))) (-15 -2055 ((-960) (-775))) (-15 -2158 ((-960) (-775))) (-15 -2055 ((-960) (-291 (-354)) (-588 (-354)) (-588 (-777 (-354))) (-588 (-291 (-354))) (-588 (-777 (-354))))) (-15 -2055 ((-960) (-291 (-354)) (-588 (-354)) (-588 (-777 (-354))) (-588 (-777 (-354))))) (-15 -2055 ((-960) (-291 (-354)) (-588 (-354)))) (-15 -2055 ((-960) (-588 (-291 (-354))) (-588 (-354)))) (-15 -2158 ((-960) (-588 (-291 (-354))) (-588 (-354)))))) (T -774))
+((-2158 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-291 (-354)))) (-5 *4 (-588 (-354))) (-5 *2 (-960)) (-5 *1 (-774)))) (-2055 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-291 (-354)))) (-5 *4 (-588 (-354))) (-5 *2 (-960)) (-5 *1 (-774)))) (-2055 (*1 *2 *3 *4) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-354))) (-5 *2 (-960)) (-5 *1 (-774)))) (-2055 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-354))) (-5 *5 (-588 (-777 (-354)))) (-5 *2 (-960)) (-5 *1 (-774)))) (-2055 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-588 (-354))) (-5 *5 (-588 (-777 (-354)))) (-5 *6 (-588 (-291 (-354)))) (-5 *3 (-291 (-354))) (-5 *2 (-960)) (-5 *1 (-774)))) (-2158 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-960)) (-5 *1 (-774)))) (-2055 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-960)) (-5 *1 (-774)))) (-2055 (*1 *2 *3 *4) (-12 (-5 *3 (-775)) (-5 *4 (-983)) (-5 *2 (-960)) (-5 *1 (-774)))) (-1361 (*1 *2 *3 *4) (-12 (-5 *3 (-775)) (-5 *4 (-983)) (-5 *2 (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *1 (-774)))) (-1361 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *1 (-774)))))
+(-10 -7 (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-775))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-775) (-983))) (-15 -2055 ((-960) (-775) (-983))) (-15 -2055 ((-960) (-775))) (-15 -2158 ((-960) (-775))) (-15 -2055 ((-960) (-291 (-354)) (-588 (-354)) (-588 (-777 (-354))) (-588 (-291 (-354))) (-588 (-777 (-354))))) (-15 -2055 ((-960) (-291 (-354)) (-588 (-354)) (-588 (-777 (-354))) (-588 (-777 (-354))))) (-15 -2055 ((-960) (-291 (-354)) (-588 (-354)))) (-15 -2055 ((-960) (-588 (-291 (-354))) (-588 (-354)))) (-15 -2158 ((-960) (-588 (-291 (-354))) (-588 (-354)))))
+((-1419 (((-108) $ $) NIL)) (-1478 (((-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))) $) 15)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 14) (($ (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) 8) (($ (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) 10) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))))) 12)) (-1562 (((-108) $ $) NIL)))
+(((-775) (-13 (-1014) (-10 -8 (-15 -2217 ($ (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))))) (-15 -2217 ($ (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))) (-15 -2217 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))))) (-15 -2217 ((-792) $)) (-15 -1478 ((-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))) $))))) (T -775))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-775)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (-5 *1 (-775)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))) (-5 *1 (-775)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))))) (-5 *1 (-775)))) (-1478 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202))))))) (-5 *1 (-775)))))
+(-13 (-1014) (-10 -8 (-15 -2217 ($ (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202))))))) (-15 -2217 ($ (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))) (-15 -2217 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))))) (-15 -2217 ((-792) $)) (-15 -1478 ((-3 (|:| |noa| (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202))) (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202)))) (|:| |ub| (-588 (-777 (-202)))))) (|:| |lsa| (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))) $))))
+((-3810 (((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|) (-777 |#2|) (-777 |#2|)) 13) (((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|)) 14)))
+(((-776 |#1| |#2|) (-10 -7 (-15 -3810 ((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|))) (-15 -3810 ((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|) (-777 |#2|) (-777 |#2|)))) (-1014) (-1014)) (T -776))
+((-3810 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-777 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-777 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *1 (-776 *5 *6)))) (-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-777 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *2 (-777 *6)) (-5 *1 (-776 *5 *6)))))
+(-10 -7 (-15 -3810 ((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|))) (-15 -3810 ((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|) (-777 |#2|) (-777 |#2|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL (|has| |#1| (-21)))) (-1425 (((-1032) $) 24)) (-2265 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3355 (((-522) $) NIL (|has| |#1| (-782)))) (-3367 (($) NIL (|has| |#1| (-21)) CONST)) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 16)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 9)) (-3920 (((-3 $ "failed") $) 47 (|has| |#1| (-782)))) (-2549 (((-3 (-382 (-522)) "failed") $) 54 (|has| |#1| (-507)))) (-3519 (((-108) $) 49 (|has| |#1| (-507)))) (-1699 (((-382 (-522)) $) 52 (|has| |#1| (-507)))) (-3603 (((-108) $) NIL (|has| |#1| (-782)))) (-3012 (($) 13)) (-2859 (((-108) $) NIL (|has| |#1| (-782)))) (-3740 (((-108) $) NIL (|has| |#1| (-782)))) (-3025 (($) 14)) (-1308 (($ $ $) NIL (|has| |#1| (-782)))) (-2524 (($ $ $) NIL (|has| |#1| (-782)))) (-2311 (((-1068) $) NIL)) (-3927 (((-108) $) 12)) (-4174 (((-1032) $) NIL)) (-2680 (((-108) $) 11)) (-2217 (((-792) $) 22) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) 8) (($ (-522)) NIL (-3844 (|has| |#1| (-782)) (|has| |#1| (-962 (-522)))))) (-2742 (((-708)) 41 (|has| |#1| (-782)))) (-4126 (($ $) NIL (|has| |#1| (-782)))) (-3622 (($ $ (-850)) NIL (|has| |#1| (-782))) (($ $ (-708)) NIL (|has| |#1| (-782)))) (-3697 (($) 29 (|has| |#1| (-21)) CONST)) (-3709 (($) 38 (|has| |#1| (-782)) CONST)) (-1623 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1562 (((-108) $ $) 27)) (-1609 (((-108) $ $) NIL (|has| |#1| (-782)))) (-1587 (((-108) $ $) 48 (|has| |#1| (-782)))) (-1672 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 34 (|has| |#1| (-21)))) (-1661 (($ $ $) 36 (|has| |#1| (-21)))) (** (($ $ (-850)) NIL (|has| |#1| (-782))) (($ $ (-708)) NIL (|has| |#1| (-782)))) (* (($ $ $) 44 (|has| |#1| (-782))) (($ (-522) $) 32 (|has| |#1| (-21))) (($ (-708) $) NIL (|has| |#1| (-21))) (($ (-850) $) NIL (|has| |#1| (-21)))))
+(((-777 |#1|) (-13 (-1014) (-386 |#1|) (-10 -8 (-15 -3012 ($)) (-15 -3025 ($)) (-15 -2680 ((-108) $)) (-15 -3927 ((-108) $)) (-15 -1425 ((-1032) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-782)) |%noBranch|) (IF (|has| |#1| (-507)) (PROGN (-15 -3519 ((-108) $)) (-15 -1699 ((-382 (-522)) $)) (-15 -2549 ((-3 (-382 (-522)) "failed") $))) |%noBranch|))) (-1014)) (T -777))
+((-3012 (*1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1014)))) (-3025 (*1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1014)))) (-2680 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-777 *3)) (-4 *3 (-1014)))) (-3927 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-777 *3)) (-4 *3 (-1014)))) (-1425 (*1 *2 *1) (-12 (-5 *2 (-1032)) (-5 *1 (-777 *3)) (-4 *3 (-1014)))) (-3519 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-777 *3)) (-4 *3 (-507)) (-4 *3 (-1014)))) (-1699 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-777 *3)) (-4 *3 (-507)) (-4 *3 (-1014)))) (-2549 (*1 *2 *1) (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-777 *3)) (-4 *3 (-507)) (-4 *3 (-1014)))))
+(-13 (-1014) (-386 |#1|) (-10 -8 (-15 -3012 ($)) (-15 -3025 ($)) (-15 -2680 ((-108) $)) (-15 -3927 ((-108) $)) (-15 -1425 ((-1032) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-782)) |%noBranch|) (IF (|has| |#1| (-507)) (PROGN (-15 -3519 ((-108) $)) (-15 -1699 ((-382 (-522)) $)) (-15 -2549 ((-3 (-382 (-522)) "failed") $))) |%noBranch|)))
+((-1419 (((-108) $ $) 7)) (-1685 (((-708)) 20)) (-3344 (($) 23)) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-1475 (((-850) $) 22)) (-2311 (((-1068) $) 9)) (-2882 (($ (-850)) 21)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)))
(((-778) (-1197)) (T -778))
NIL
(-13 (-784) (-343))
(((-97) . T) ((-562 (-792)) . T) ((-343) . T) ((-784) . T) ((-1014) . T))
-((-4075 (((-108) (-1166 |#2|) (-1166 |#2|)) 17)) (-1869 (((-108) (-1166 |#2|) (-1166 |#2|)) 18)) (-2235 (((-108) (-1166 |#2|) (-1166 |#2|)) 14)))
-(((-779 |#1| |#2|) (-10 -7 (-15 -2235 ((-108) (-1166 |#2|) (-1166 |#2|))) (-15 -4075 ((-108) (-1166 |#2|) (-1166 |#2|))) (-15 -1869 ((-108) (-1166 |#2|) (-1166 |#2|)))) (-708) (-729)) (T -779))
-((-1869 (*1 *2 *3 *3) (-12 (-5 *3 (-1166 *5)) (-4 *5 (-729)) (-5 *2 (-108)) (-5 *1 (-779 *4 *5)) (-14 *4 (-708)))) (-4075 (*1 *2 *3 *3) (-12 (-5 *3 (-1166 *5)) (-4 *5 (-729)) (-5 *2 (-108)) (-5 *1 (-779 *4 *5)) (-14 *4 (-708)))) (-2235 (*1 *2 *3 *3) (-12 (-5 *3 (-1166 *5)) (-4 *5 (-729)) (-5 *2 (-108)) (-5 *1 (-779 *4 *5)) (-14 *4 (-708)))))
-(-10 -7 (-15 -2235 ((-108) (-1166 |#2|) (-1166 |#2|))) (-15 -4075 ((-108) (-1166 |#2|) (-1166 |#2|))) (-15 -1869 ((-108) (-1166 |#2|) (-1166 |#2|))))
-((-1416 (((-108) $ $) 7)) (-3175 (($) 24 T CONST)) (-2682 (((-3 $ "failed") $) 28)) (-2782 (((-108) $) 25)) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3510 (($ $ (-708)) 27) (($ $ (-850)) 22)) (-3577 (($) 23 T CONST)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)) (** (($ $ (-708)) 26) (($ $ (-850)) 21)) (* (($ $ $) 20)))
+((-3206 (((-108) (-1166 |#2|) (-1166 |#2|)) 17)) (-2737 (((-108) (-1166 |#2|) (-1166 |#2|)) 18)) (-1706 (((-108) (-1166 |#2|) (-1166 |#2|)) 14)))
+(((-779 |#1| |#2|) (-10 -7 (-15 -1706 ((-108) (-1166 |#2|) (-1166 |#2|))) (-15 -3206 ((-108) (-1166 |#2|) (-1166 |#2|))) (-15 -2737 ((-108) (-1166 |#2|) (-1166 |#2|)))) (-708) (-729)) (T -779))
+((-2737 (*1 *2 *3 *3) (-12 (-5 *3 (-1166 *5)) (-4 *5 (-729)) (-5 *2 (-108)) (-5 *1 (-779 *4 *5)) (-14 *4 (-708)))) (-3206 (*1 *2 *3 *3) (-12 (-5 *3 (-1166 *5)) (-4 *5 (-729)) (-5 *2 (-108)) (-5 *1 (-779 *4 *5)) (-14 *4 (-708)))) (-1706 (*1 *2 *3 *3) (-12 (-5 *3 (-1166 *5)) (-4 *5 (-729)) (-5 *2 (-108)) (-5 *1 (-779 *4 *5)) (-14 *4 (-708)))))
+(-10 -7 (-15 -1706 ((-108) (-1166 |#2|) (-1166 |#2|))) (-15 -3206 ((-108) (-1166 |#2|) (-1166 |#2|))) (-15 -2737 ((-108) (-1166 |#2|) (-1166 |#2|))))
+((-1419 (((-108) $ $) 7)) (-3367 (($) 24 T CONST)) (-3920 (((-3 $ "failed") $) 28)) (-2859 (((-108) $) 25)) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3622 (($ $ (-708)) 27) (($ $ (-850)) 22)) (-3709 (($) 23 T CONST)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)) (** (($ $ (-708)) 26) (($ $ (-850)) 21)) (* (($ $ $) 20)))
(((-780) (-1197)) (T -780))
NIL
(-13 (-784) (-664))
(((-97) . T) ((-562 (-792)) . T) ((-664) . T) ((-784) . T) ((-1026) . T) ((-1014) . T))
-((-1341 (((-522) $) 17)) (-3687 (((-108) $) 10)) (-2556 (((-108) $) 11)) (-2241 (($ $) 19)))
-(((-781 |#1|) (-10 -8 (-15 -2241 (|#1| |#1|)) (-15 -1341 ((-522) |#1|)) (-15 -2556 ((-108) |#1|)) (-15 -3687 ((-108) |#1|))) (-782)) (T -781))
+((-3355 (((-522) $) 17)) (-3603 (((-108) $) 10)) (-3740 (((-108) $) 11)) (-4126 (($ $) 19)))
+(((-781 |#1|) (-10 -8 (-15 -4126 (|#1| |#1|)) (-15 -3355 ((-522) |#1|)) (-15 -3740 ((-108) |#1|)) (-15 -3603 ((-108) |#1|))) (-782)) (T -781))
NIL
-(-10 -8 (-15 -2241 (|#1| |#1|)) (-15 -1341 ((-522) |#1|)) (-15 -2556 ((-108) |#1|)) (-15 -3687 ((-108) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 24)) (-1233 (((-3 $ "failed") $ $) 26)) (-1341 (((-522) $) 33)) (-3175 (($) 23 T CONST)) (-2682 (((-3 $ "failed") $) 39)) (-3687 (((-108) $) 35)) (-2782 (((-108) $) 42)) (-2556 (((-108) $) 34)) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ (-522)) 45)) (-2323 (((-708)) 44)) (-2241 (($ $) 32)) (-3510 (($ $ (-708)) 40) (($ $ (-850)) 36)) (-3566 (($) 22 T CONST)) (-3577 (($) 43 T CONST)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)) (-1612 (($ $ $) 28) (($ $) 27)) (-1602 (($ $ $) 20)) (** (($ $ (-708)) 41) (($ $ (-850)) 37)) (* (($ (-708) $) 25) (($ (-850) $) 21) (($ (-522) $) 29) (($ $ $) 38)))
+(-10 -8 (-15 -4126 (|#1| |#1|)) (-15 -3355 ((-522) |#1|)) (-15 -3740 ((-108) |#1|)) (-15 -3603 ((-108) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 24)) (-2265 (((-3 $ "failed") $ $) 26)) (-3355 (((-522) $) 33)) (-3367 (($) 23 T CONST)) (-3920 (((-3 $ "failed") $) 39)) (-3603 (((-108) $) 35)) (-2859 (((-108) $) 42)) (-3740 (((-108) $) 34)) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ (-522)) 45)) (-2742 (((-708)) 44)) (-4126 (($ $) 32)) (-3622 (($ $ (-708)) 40) (($ $ (-850)) 36)) (-3697 (($) 22 T CONST)) (-3709 (($) 43 T CONST)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)) (-1672 (($ $ $) 28) (($ $) 27)) (-1661 (($ $ $) 20)) (** (($ $ (-708)) 41) (($ $ (-850)) 37)) (* (($ (-708) $) 25) (($ (-850) $) 21) (($ (-522) $) 29) (($ $ $) 38)))
(((-782) (-1197)) (T -782))
-((-3687 (*1 *2 *1) (-12 (-4 *1 (-782)) (-5 *2 (-108)))) (-2556 (*1 *2 *1) (-12 (-4 *1 (-782)) (-5 *2 (-108)))) (-1341 (*1 *2 *1) (-12 (-4 *1 (-782)) (-5 *2 (-522)))) (-2241 (*1 *1 *1) (-4 *1 (-782))))
-(-13 (-728) (-971) (-664) (-10 -8 (-15 -3687 ((-108) $)) (-15 -2556 ((-108) $)) (-15 -1341 ((-522) $)) (-15 -2241 ($ $))))
+((-3603 (*1 *2 *1) (-12 (-4 *1 (-782)) (-5 *2 (-108)))) (-3740 (*1 *2 *1) (-12 (-4 *1 (-782)) (-5 *2 (-108)))) (-3355 (*1 *2 *1) (-12 (-4 *1 (-782)) (-5 *2 (-522)))) (-4126 (*1 *1 *1) (-4 *1 (-782))))
+(-13 (-728) (-971) (-664) (-10 -8 (-15 -3603 ((-108) $)) (-15 -3740 ((-108) $)) (-15 -3355 ((-522) $)) (-15 -4126 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 $) . T) ((-664) . T) ((-728) . T) ((-729) . T) ((-731) . T) ((-732) . T) ((-784) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-2814 (($ $ $) 10)) (-2446 (($ $ $) 9)) (-1574 (((-108) $ $) 13)) (-1558 (((-108) $ $) 11)) (-1566 (((-108) $ $) 14)))
-(((-783 |#1|) (-10 -8 (-15 -2814 (|#1| |#1| |#1|)) (-15 -2446 (|#1| |#1| |#1|)) (-15 -1566 ((-108) |#1| |#1|)) (-15 -1574 ((-108) |#1| |#1|)) (-15 -1558 ((-108) |#1| |#1|))) (-784)) (T -783))
+((-1308 (($ $ $) 10)) (-2524 (($ $ $) 9)) (-1623 (((-108) $ $) 13)) (-1597 (((-108) $ $) 11)) (-1609 (((-108) $ $) 14)))
+(((-783 |#1|) (-10 -8 (-15 -1308 (|#1| |#1| |#1|)) (-15 -2524 (|#1| |#1| |#1|)) (-15 -1609 ((-108) |#1| |#1|)) (-15 -1623 ((-108) |#1| |#1|)) (-15 -1597 ((-108) |#1| |#1|))) (-784)) (T -783))
NIL
-(-10 -8 (-15 -2814 (|#1| |#1| |#1|)) (-15 -2446 (|#1| |#1| |#1|)) (-15 -1566 ((-108) |#1| |#1|)) (-15 -1574 ((-108) |#1| |#1|)) (-15 -1558 ((-108) |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2814 (($ $ $) 13)) (-2446 (($ $ $) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-1574 (((-108) $ $) 16)) (-1558 (((-108) $ $) 17)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 15)) (-1549 (((-108) $ $) 18)))
+(-10 -8 (-15 -1308 (|#1| |#1| |#1|)) (-15 -2524 (|#1| |#1| |#1|)) (-15 -1609 ((-108) |#1| |#1|)) (-15 -1623 ((-108) |#1| |#1|)) (-15 -1597 ((-108) |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-1308 (($ $ $) 13)) (-2524 (($ $ $) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-1623 (((-108) $ $) 16)) (-1597 (((-108) $ $) 17)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 15)) (-1587 (((-108) $ $) 18)))
(((-784) (-1197)) (T -784))
-((-1549 (*1 *2 *1 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108)))) (-1558 (*1 *2 *1 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108)))) (-1574 (*1 *2 *1 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108)))) (-1566 (*1 *2 *1 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108)))) (-2446 (*1 *1 *1 *1) (-4 *1 (-784))) (-2814 (*1 *1 *1 *1) (-4 *1 (-784))))
-(-13 (-1014) (-10 -8 (-15 -1549 ((-108) $ $)) (-15 -1558 ((-108) $ $)) (-15 -1574 ((-108) $ $)) (-15 -1566 ((-108) $ $)) (-15 -2446 ($ $ $)) (-15 -2814 ($ $ $))))
+((-1587 (*1 *2 *1 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108)))) (-1597 (*1 *2 *1 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108)))) (-1623 (*1 *2 *1 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108)))) (-1609 (*1 *2 *1 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108)))) (-2524 (*1 *1 *1 *1) (-4 *1 (-784))) (-1308 (*1 *1 *1 *1) (-4 *1 (-784))))
+(-13 (-1014) (-10 -8 (-15 -1587 ((-108) $ $)) (-15 -1597 ((-108) $ $)) (-15 -1623 ((-108) $ $)) (-15 -1609 ((-108) $ $)) (-15 -2524 ($ $ $)) (-15 -1308 ($ $ $))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-3376 (($ $ $) 46)) (-3951 (($ $ $) 45)) (-2652 (($ $ $) 43)) (-2612 (($ $ $) 52)) (-1230 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 47)) (-3280 (((-3 $ "failed") $ $) 50)) (-1297 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#2| "failed") $) 26)) (-2071 (($ $) 36)) (-3703 (($ $ $) 40)) (-3344 (($ $ $) 39)) (-3470 (($ $ $) 48)) (-3671 (($ $ $) 54)) (-1336 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 42)) (-3829 (((-3 $ "failed") $ $) 49)) (-2232 (((-3 $ "failed") $ |#2|) 29)) (-2255 ((|#2| $) 33)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL) (($ |#2|) 12)) (-3916 (((-588 |#2|) $) 19)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 23)))
-(((-785 |#1| |#2|) (-10 -8 (-15 -3470 (|#1| |#1| |#1|)) (-15 -1230 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -1383 |#1|)) |#1| |#1|)) (-15 -2612 (|#1| |#1| |#1|)) (-15 -3280 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3376 (|#1| |#1| |#1|)) (-15 -3951 (|#1| |#1| |#1|)) (-15 -2652 (|#1| |#1| |#1|)) (-15 -1336 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -1383 |#1|)) |#1| |#1|)) (-15 -3671 (|#1| |#1| |#1|)) (-15 -3829 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3703 (|#1| |#1| |#1|)) (-15 -3344 (|#1| |#1| |#1|)) (-15 -2071 (|#1| |#1|)) (-15 -2255 (|#2| |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3916 ((-588 |#2|) |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2190 (|#1| (-522))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -2190 ((-792) |#1|))) (-786 |#2|) (-971)) (T -785))
+((-3525 (($ $ $) 46)) (-1342 (($ $ $) 45)) (-1734 (($ $ $) 43)) (-3320 (($ $ $) 52)) (-2228 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 47)) (-1975 (((-3 $ "failed") $ $) 50)) (-3700 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#2| "failed") $) 26)) (-2883 (($ $) 36)) (-3755 (($ $ $) 40)) (-1416 (($ $ $) 39)) (-3283 (($ $ $) 48)) (-3453 (($ $ $) 54)) (-2045 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 42)) (-2708 (((-3 $ "failed") $ $) 49)) (-2276 (((-3 $ "failed") $ |#2|) 29)) (-2988 ((|#2| $) 33)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL) (($ |#2|) 12)) (-2180 (((-588 |#2|) $) 19)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 23)))
+(((-785 |#1| |#2|) (-10 -8 (-15 -3283 (|#1| |#1| |#1|)) (-15 -2228 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -1368 |#1|)) |#1| |#1|)) (-15 -3320 (|#1| |#1| |#1|)) (-15 -1975 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3525 (|#1| |#1| |#1|)) (-15 -1342 (|#1| |#1| |#1|)) (-15 -1734 (|#1| |#1| |#1|)) (-15 -2045 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -1368 |#1|)) |#1| |#1|)) (-15 -3453 (|#1| |#1| |#1|)) (-15 -2708 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3755 (|#1| |#1| |#1|)) (-15 -1416 (|#1| |#1| |#1|)) (-15 -2883 (|#1| |#1|)) (-15 -2988 (|#2| |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2180 ((-588 |#2|) |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2217 (|#1| (-522))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -2217 ((-792) |#1|))) (-786 |#2|) (-971)) (T -785))
NIL
-(-10 -8 (-15 -3470 (|#1| |#1| |#1|)) (-15 -1230 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -1383 |#1|)) |#1| |#1|)) (-15 -2612 (|#1| |#1| |#1|)) (-15 -3280 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3376 (|#1| |#1| |#1|)) (-15 -3951 (|#1| |#1| |#1|)) (-15 -2652 (|#1| |#1| |#1|)) (-15 -1336 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -1383 |#1|)) |#1| |#1|)) (-15 -3671 (|#1| |#1| |#1|)) (-15 -3829 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3703 (|#1| |#1| |#1|)) (-15 -3344 (|#1| |#1| |#1|)) (-15 -2071 (|#1| |#1|)) (-15 -2255 (|#2| |#1|)) (-15 -2232 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3916 ((-588 |#2|) |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2190 (|#1| (-522))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-3376 (($ $ $) 45 (|has| |#1| (-338)))) (-3951 (($ $ $) 46 (|has| |#1| (-338)))) (-2652 (($ $ $) 48 (|has| |#1| (-338)))) (-2612 (($ $ $) 43 (|has| |#1| (-338)))) (-1230 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 42 (|has| |#1| (-338)))) (-3280 (((-3 $ "failed") $ $) 44 (|has| |#1| (-338)))) (-3653 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 47 (|has| |#1| (-338)))) (-1297 (((-3 (-522) "failed") $) 74 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 72 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 69)) (-1484 (((-522) $) 75 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 73 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 68)) (-3156 (($ $) 64)) (-2682 (((-3 $ "failed") $) 34)) (-2071 (($ $) 55 (|has| |#1| (-426)))) (-2782 (((-108) $) 31)) (-4049 (($ |#1| (-708)) 62)) (-2953 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57 (|has| |#1| (-514)))) (-2514 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 58 (|has| |#1| (-514)))) (-2925 (((-708) $) 66)) (-3703 (($ $ $) 52 (|has| |#1| (-338)))) (-3344 (($ $ $) 53 (|has| |#1| (-338)))) (-3470 (($ $ $) 41 (|has| |#1| (-338)))) (-3671 (($ $ $) 50 (|has| |#1| (-338)))) (-1336 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 49 (|has| |#1| (-338)))) (-3829 (((-3 $ "failed") $ $) 51 (|has| |#1| (-338)))) (-2509 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 54 (|has| |#1| (-338)))) (-3138 ((|#1| $) 65)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2232 (((-3 $ "failed") $ |#1|) 59 (|has| |#1| (-514)))) (-2793 (((-708) $) 67)) (-2255 ((|#1| $) 56 (|has| |#1| (-426)))) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 71 (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) 70)) (-3916 (((-588 |#1|) $) 61)) (-3243 ((|#1| $ (-708)) 63)) (-2323 (((-708)) 29)) (-1616 ((|#1| $ |#1| |#1|) 60)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 77) (($ |#1| $) 76)))
+(-10 -8 (-15 -3283 (|#1| |#1| |#1|)) (-15 -2228 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -1368 |#1|)) |#1| |#1|)) (-15 -3320 (|#1| |#1| |#1|)) (-15 -1975 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3525 (|#1| |#1| |#1|)) (-15 -1342 (|#1| |#1| |#1|)) (-15 -1734 (|#1| |#1| |#1|)) (-15 -2045 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -1368 |#1|)) |#1| |#1|)) (-15 -3453 (|#1| |#1| |#1|)) (-15 -2708 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3755 (|#1| |#1| |#1|)) (-15 -1416 (|#1| |#1| |#1|)) (-15 -2883 (|#1| |#1|)) (-15 -2988 (|#2| |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2180 ((-588 |#2|) |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2217 (|#1| (-522))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3525 (($ $ $) 45 (|has| |#1| (-338)))) (-1342 (($ $ $) 46 (|has| |#1| (-338)))) (-1734 (($ $ $) 48 (|has| |#1| (-338)))) (-3320 (($ $ $) 43 (|has| |#1| (-338)))) (-2228 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 42 (|has| |#1| (-338)))) (-1975 (((-3 $ "failed") $ $) 44 (|has| |#1| (-338)))) (-1432 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 47 (|has| |#1| (-338)))) (-3700 (((-3 (-522) "failed") $) 74 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 72 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 69)) (-1478 (((-522) $) 75 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 73 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 68)) (-3241 (($ $) 64)) (-3920 (((-3 $ "failed") $) 34)) (-2883 (($ $) 55 (|has| |#1| (-426)))) (-2859 (((-108) $) 31)) (-3500 (($ |#1| (-708)) 62)) (-3865 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57 (|has| |#1| (-514)))) (-2118 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 58 (|has| |#1| (-514)))) (-3564 (((-708) $) 66)) (-3755 (($ $ $) 52 (|has| |#1| (-338)))) (-1416 (($ $ $) 53 (|has| |#1| (-338)))) (-3283 (($ $ $) 41 (|has| |#1| (-338)))) (-3453 (($ $ $) 50 (|has| |#1| (-338)))) (-2045 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 49 (|has| |#1| (-338)))) (-2708 (((-3 $ "failed") $ $) 51 (|has| |#1| (-338)))) (-2070 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 54 (|has| |#1| (-338)))) (-3224 ((|#1| $) 65)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2276 (((-3 $ "failed") $ |#1|) 59 (|has| |#1| (-514)))) (-2487 (((-708) $) 67)) (-2988 ((|#1| $) 56 (|has| |#1| (-426)))) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 71 (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) 70)) (-2180 (((-588 |#1|) $) 61)) (-1643 ((|#1| $ (-708)) 63)) (-2742 (((-708)) 29)) (-1664 ((|#1| $ |#1| |#1|) 60)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 77) (($ |#1| $) 76)))
(((-786 |#1|) (-1197) (-971)) (T -786))
-((-2793 (*1 *2 *1) (-12 (-4 *1 (-786 *3)) (-4 *3 (-971)) (-5 *2 (-708)))) (-2925 (*1 *2 *1) (-12 (-4 *1 (-786 *3)) (-4 *3 (-971)) (-5 *2 (-708)))) (-3138 (*1 *2 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)))) (-3156 (*1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)))) (-3243 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-786 *2)) (-4 *2 (-971)))) (-4049 (*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-786 *2)) (-4 *2 (-971)))) (-3916 (*1 *2 *1) (-12 (-4 *1 (-786 *3)) (-4 *3 (-971)) (-5 *2 (-588 *3)))) (-1616 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)))) (-2232 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-514)))) (-2514 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-786 *3)))) (-2953 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-786 *3)))) (-2255 (*1 *2 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-426)))) (-2071 (*1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-426)))) (-2509 (*1 *2 *1 *1) (-12 (-4 *3 (-338)) (-4 *3 (-971)) (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-786 *3)))) (-3344 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-3703 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-3829 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-3671 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-1336 (*1 *2 *1 *1) (-12 (-4 *3 (-338)) (-4 *3 (-971)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -1383 *1))) (-4 *1 (-786 *3)))) (-2652 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-3653 (*1 *2 *1 *1) (-12 (-4 *3 (-338)) (-4 *3 (-971)) (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-786 *3)))) (-3951 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-3376 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-3280 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-2612 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-1230 (*1 *2 *1 *1) (-12 (-4 *3 (-338)) (-4 *3 (-971)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -1383 *1))) (-4 *1 (-786 *3)))) (-3470 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
-(-13 (-971) (-107 |t#1| |t#1|) (-386 |t#1|) (-10 -8 (-15 -2793 ((-708) $)) (-15 -2925 ((-708) $)) (-15 -3138 (|t#1| $)) (-15 -3156 ($ $)) (-15 -3243 (|t#1| $ (-708))) (-15 -4049 ($ |t#1| (-708))) (-15 -3916 ((-588 |t#1|) $)) (-15 -1616 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-157)) (-6 (-37 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-514)) (PROGN (-15 -2232 ((-3 $ "failed") $ |t#1|)) (-15 -2514 ((-2 (|:| -1353 $) (|:| -3421 $)) $ $)) (-15 -2953 ((-2 (|:| -1353 $) (|:| -3421 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-426)) (PROGN (-15 -2255 (|t#1| $)) (-15 -2071 ($ $))) |%noBranch|) (IF (|has| |t#1| (-338)) (PROGN (-15 -2509 ((-2 (|:| -1353 $) (|:| -3421 $)) $ $)) (-15 -3344 ($ $ $)) (-15 -3703 ($ $ $)) (-15 -3829 ((-3 $ "failed") $ $)) (-15 -3671 ($ $ $)) (-15 -1336 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $)) (-15 -2652 ($ $ $)) (-15 -3653 ((-2 (|:| -1353 $) (|:| -3421 $)) $ $)) (-15 -3951 ($ $ $)) (-15 -3376 ($ $ $)) (-15 -3280 ((-3 $ "failed") $ $)) (-15 -2612 ($ $ $)) (-15 -1230 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $)) (-15 -3470 ($ $ $))) |%noBranch|)))
+((-2487 (*1 *2 *1) (-12 (-4 *1 (-786 *3)) (-4 *3 (-971)) (-5 *2 (-708)))) (-3564 (*1 *2 *1) (-12 (-4 *1 (-786 *3)) (-4 *3 (-971)) (-5 *2 (-708)))) (-3224 (*1 *2 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)))) (-3241 (*1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)))) (-1643 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-786 *2)) (-4 *2 (-971)))) (-3500 (*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-786 *2)) (-4 *2 (-971)))) (-2180 (*1 *2 *1) (-12 (-4 *1 (-786 *3)) (-4 *3 (-971)) (-5 *2 (-588 *3)))) (-1664 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)))) (-2276 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-514)))) (-2118 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-786 *3)))) (-3865 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-786 *3)))) (-2988 (*1 *2 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-426)))) (-2883 (*1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-426)))) (-2070 (*1 *2 *1 *1) (-12 (-4 *3 (-338)) (-4 *3 (-971)) (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-786 *3)))) (-1416 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-3755 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-2708 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-3453 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-2045 (*1 *2 *1 *1) (-12 (-4 *3 (-338)) (-4 *3 (-971)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -1368 *1))) (-4 *1 (-786 *3)))) (-1734 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-1432 (*1 *2 *1 *1) (-12 (-4 *3 (-338)) (-4 *3 (-971)) (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-786 *3)))) (-1342 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-3525 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-1975 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-3320 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-2228 (*1 *2 *1 *1) (-12 (-4 *3 (-338)) (-4 *3 (-971)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -1368 *1))) (-4 *1 (-786 *3)))) (-3283 (*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+(-13 (-971) (-107 |t#1| |t#1|) (-386 |t#1|) (-10 -8 (-15 -2487 ((-708) $)) (-15 -3564 ((-708) $)) (-15 -3224 (|t#1| $)) (-15 -3241 ($ $)) (-15 -1643 (|t#1| $ (-708))) (-15 -3500 ($ |t#1| (-708))) (-15 -2180 ((-588 |t#1|) $)) (-15 -1664 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-157)) (-6 (-37 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-514)) (PROGN (-15 -2276 ((-3 $ "failed") $ |t#1|)) (-15 -2118 ((-2 (|:| -3450 $) (|:| -4002 $)) $ $)) (-15 -3865 ((-2 (|:| -3450 $) (|:| -4002 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-426)) (PROGN (-15 -2988 (|t#1| $)) (-15 -2883 ($ $))) |%noBranch|) (IF (|has| |t#1| (-338)) (PROGN (-15 -2070 ((-2 (|:| -3450 $) (|:| -4002 $)) $ $)) (-15 -1416 ($ $ $)) (-15 -3755 ($ $ $)) (-15 -2708 ((-3 $ "failed") $ $)) (-15 -3453 ($ $ $)) (-15 -2045 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $)) (-15 -1734 ($ $ $)) (-15 -1432 ((-2 (|:| -3450 $) (|:| -4002 $)) $ $)) (-15 -1342 ($ $ $)) (-15 -3525 ($ $ $)) (-15 -1975 ((-3 $ "failed") $ $)) (-15 -3320 ($ $ $)) (-15 -2228 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $)) (-15 -3283 ($ $ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) |has| |#1| (-157)) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-562 (-792)) . T) ((-386 |#1|) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-655 |#1|) |has| |#1| (-157)) ((-664) . T) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-977 |#1|) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-2487 ((|#2| |#2| |#2| (-94 |#1|) (-1 |#1| |#1|)) 21)) (-3653 (((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2| (-94 |#1|)) 44 (|has| |#1| (-338)))) (-2953 (((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2| (-94 |#1|)) 41 (|has| |#1| (-514)))) (-2514 (((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2| (-94 |#1|)) 40 (|has| |#1| (-514)))) (-2509 (((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2| (-94 |#1|)) 43 (|has| |#1| (-338)))) (-1616 ((|#1| |#2| |#1| |#1| (-94 |#1|) (-1 |#1| |#1|)) 32)))
-(((-787 |#1| |#2|) (-10 -7 (-15 -2487 (|#2| |#2| |#2| (-94 |#1|) (-1 |#1| |#1|))) (-15 -1616 (|#1| |#2| |#1| |#1| (-94 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-514)) (PROGN (-15 -2514 ((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -2953 ((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-15 -2509 ((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -3653 ((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|)) (-971) (-786 |#1|)) (T -787))
-((-3653 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-338)) (-4 *5 (-971)) (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-787 *5 *3)) (-4 *3 (-786 *5)))) (-2509 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-338)) (-4 *5 (-971)) (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-787 *5 *3)) (-4 *3 (-786 *5)))) (-2953 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-514)) (-4 *5 (-971)) (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-787 *5 *3)) (-4 *3 (-786 *5)))) (-2514 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-514)) (-4 *5 (-971)) (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-787 *5 *3)) (-4 *3 (-786 *5)))) (-1616 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-94 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-971)) (-5 *1 (-787 *2 *3)) (-4 *3 (-786 *2)))) (-2487 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-971)) (-5 *1 (-787 *5 *2)) (-4 *2 (-786 *5)))))
-(-10 -7 (-15 -2487 (|#2| |#2| |#2| (-94 |#1|) (-1 |#1| |#1|))) (-15 -1616 (|#1| |#2| |#1| |#1| (-94 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-514)) (PROGN (-15 -2514 ((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -2953 ((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-15 -2509 ((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -3653 ((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3376 (($ $ $) NIL (|has| |#1| (-338)))) (-3951 (($ $ $) NIL (|has| |#1| (-338)))) (-2652 (($ $ $) NIL (|has| |#1| (-338)))) (-2612 (($ $ $) NIL (|has| |#1| (-338)))) (-1230 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3280 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-3653 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 25 (|has| |#1| (-338)))) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#1| (-426)))) (-3445 (((-792) $ (-792)) NIL)) (-2782 (((-108) $) NIL)) (-4049 (($ |#1| (-708)) NIL)) (-2953 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 21 (|has| |#1| (-514)))) (-2514 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 19 (|has| |#1| (-514)))) (-2925 (((-708) $) NIL)) (-3703 (($ $ $) NIL (|has| |#1| (-338)))) (-3344 (($ $ $) NIL (|has| |#1| (-338)))) (-3470 (($ $ $) NIL (|has| |#1| (-338)))) (-3671 (($ $ $) NIL (|has| |#1| (-338)))) (-1336 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3829 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-2509 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 23 (|has| |#1| (-338)))) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-2793 (((-708) $) NIL)) (-2255 ((|#1| $) NIL (|has| |#1| (-426)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) NIL)) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-708)) NIL)) (-2323 (((-708)) NIL)) (-1616 ((|#1| $ |#1| |#1|) 15)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-788 |#1| |#2| |#3|) (-13 (-786 |#1|) (-10 -8 (-15 -3445 ((-792) $ (-792))))) (-971) (-94 |#1|) (-1 |#1| |#1|)) (T -788))
-((-3445 (*1 *2 *1 *2) (-12 (-5 *2 (-792)) (-5 *1 (-788 *3 *4 *5)) (-4 *3 (-971)) (-14 *4 (-94 *3)) (-14 *5 (-1 *3 *3)))))
-(-13 (-786 |#1|) (-10 -8 (-15 -3445 ((-792) $ (-792)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3376 (($ $ $) NIL (|has| |#2| (-338)))) (-3951 (($ $ $) NIL (|has| |#2| (-338)))) (-2652 (($ $ $) NIL (|has| |#2| (-338)))) (-2612 (($ $ $) NIL (|has| |#2| (-338)))) (-1230 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#2| (-338)))) (-3280 (((-3 $ "failed") $ $) NIL (|has| |#2| (-338)))) (-3653 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#2| (-338)))) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 |#2| "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) ((|#2| $) NIL)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#2| (-426)))) (-2782 (((-108) $) NIL)) (-4049 (($ |#2| (-708)) 16)) (-2953 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#2| (-514)))) (-2514 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#2| (-514)))) (-2925 (((-708) $) NIL)) (-3703 (($ $ $) NIL (|has| |#2| (-338)))) (-3344 (($ $ $) NIL (|has| |#2| (-338)))) (-3470 (($ $ $) NIL (|has| |#2| (-338)))) (-3671 (($ $ $) NIL (|has| |#2| (-338)))) (-1336 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#2| (-338)))) (-3829 (((-3 $ "failed") $ $) NIL (|has| |#2| (-338)))) (-2509 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#2| (-338)))) (-3138 ((|#2| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2232 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514)))) (-2793 (((-708) $) NIL)) (-2255 ((|#2| $) NIL (|has| |#2| (-426)))) (-2190 (((-792) $) 23) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#2| (-962 (-382 (-522))))) (($ |#2|) NIL) (($ (-1162 |#1|)) 18)) (-3916 (((-588 |#2|) $) NIL)) (-3243 ((|#2| $ (-708)) NIL)) (-2323 (((-708)) NIL)) (-1616 ((|#2| $ |#2| |#2|) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) 13 T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-789 |#1| |#2| |#3| |#4|) (-13 (-786 |#2|) (-10 -8 (-15 -2190 ($ (-1162 |#1|))))) (-1085) (-971) (-94 |#2|) (-1 |#2| |#2|)) (T -789))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1162 *3)) (-14 *3 (-1085)) (-5 *1 (-789 *3 *4 *5 *6)) (-4 *4 (-971)) (-14 *5 (-94 *4)) (-14 *6 (-1 *4 *4)))))
-(-13 (-786 |#2|) (-10 -8 (-15 -2190 ($ (-1162 |#1|)))))
-((-3084 ((|#1| (-708) |#1|) 35 (|has| |#1| (-37 (-382 (-522)))))) (-1309 ((|#1| (-708) (-708) |#1|) 27) ((|#1| (-708) |#1|) 20)) (-2944 ((|#1| (-708) |#1|) 31)) (-2163 ((|#1| (-708) |#1|) 29)) (-2279 ((|#1| (-708) |#1|) 28)))
-(((-790 |#1|) (-10 -7 (-15 -2279 (|#1| (-708) |#1|)) (-15 -2163 (|#1| (-708) |#1|)) (-15 -2944 (|#1| (-708) |#1|)) (-15 -1309 (|#1| (-708) |#1|)) (-15 -1309 (|#1| (-708) (-708) |#1|)) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -3084 (|#1| (-708) |#1|)) |%noBranch|)) (-157)) (T -790))
-((-3084 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-157)))) (-1309 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))) (-1309 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))) (-2944 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))) (-2163 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))) (-2279 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))))
-(-10 -7 (-15 -2279 (|#1| (-708) |#1|)) (-15 -2163 (|#1| (-708) |#1|)) (-15 -2944 (|#1| (-708) |#1|)) (-15 -1309 (|#1| (-708) |#1|)) (-15 -1309 (|#1| (-708) (-708) |#1|)) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -3084 (|#1| (-708) |#1|)) |%noBranch|))
-((-1416 (((-108) $ $) NIL)) (-3435 (((-522) $) 12)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 18) (($ (-522)) 11)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 8)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 9)))
-(((-791) (-13 (-784) (-10 -8 (-15 -2190 ($ (-522))) (-15 -3435 ((-522) $))))) (T -791))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-791)))) (-3435 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-791)))))
-(-13 (-784) (-10 -8 (-15 -2190 ($ (-522))) (-15 -3435 ((-522) $))))
-((-1416 (((-108) $ $) NIL)) (-1508 (($ $ $) 115)) (-2645 (((-522) $) 30) (((-522)) 35)) (-1999 (($ (-522)) 44)) (-2410 (($ $ $) 45) (($ (-588 $)) 76)) (-2922 (($ $ (-588 $)) 74)) (-1774 (((-522) $) 33)) (-2133 (($ $ $) 63)) (-3518 (($ $) 128) (($ $ $) 129) (($ $ $ $) 130)) (-3915 (((-522) $) 32)) (-2337 (($ $ $) 62)) (-1507 (($ $) 105)) (-1984 (($ $ $) 119)) (-1998 (($ (-588 $)) 52)) (-2526 (($ $ (-588 $)) 69)) (-1636 (($ (-522) (-522)) 46)) (-1799 (($ $) 116) (($ $ $) 117)) (-1924 (($ $ (-522)) 40) (($ $) 43)) (-2277 (($ $ $) 89)) (-3825 (($ $ $) 122)) (-1396 (($ $) 106)) (-2254 (($ $ $) 90)) (-2574 (($ $) 131) (($ $ $) 132) (($ $ $ $) 133)) (-2050 (((-1171) $) 8)) (-3717 (($ $) 109) (($ $ (-708)) 112)) (-1467 (($ $ $) 65)) (-4123 (($ $ $) 64)) (-3375 (($ $ (-588 $)) 100)) (-1828 (($ $ $) 104)) (-1756 (($ (-588 $)) 50)) (-1953 (($ $) 60) (($ (-588 $)) 61)) (-3044 (($ $ $) 113)) (-3102 (($ $) 107)) (-2396 (($ $ $) 118)) (-3445 (($ (-522)) 20) (($ (-1085)) 22) (($ (-1068)) 29) (($ (-202)) 24)) (-3999 (($ $ $) 93)) (-2401 (($ $) 94)) (-1675 (((-1171) (-1068)) 14)) (-2840 (($ (-1068)) 13)) (-1366 (($ (-588 (-588 $))) 48)) (-1913 (($ $ (-522)) 39) (($ $) 42)) (-2385 (((-1068) $) NIL)) (-2907 (($ $ $) 121)) (-3622 (($ $) 134) (($ $ $) 135) (($ $ $ $) 136)) (-3881 (((-108) $) 98)) (-3262 (($ $ (-588 $)) 102) (($ $ $ $) 103)) (-2482 (($ (-522)) 36)) (-4155 (((-522) $) 31) (((-522)) 34)) (-2186 (($ $ $) 37) (($ (-588 $)) 75)) (-4151 (((-1032) $) NIL)) (-2232 (($ $ $) 91)) (-3775 (($) 12)) (-2545 (($ $ (-588 $)) 99)) (-1883 (($ $) 108) (($ $ (-708)) 111)) (-2243 (($ $ $) 88)) (-2157 (($ $ (-708)) 127)) (-3901 (($ (-588 $)) 51)) (-2190 (((-792) $) 18)) (-1893 (($ $ (-522)) 38) (($ $) 41)) (-1841 (($ $) 58) (($ (-588 $)) 59)) (-3392 (($ $) 56) (($ (-588 $)) 57)) (-2308 (($ $) 114)) (-2948 (($ (-588 $)) 55)) (-1480 (($ $ $) 97)) (-3712 (($ $ $) 120)) (-4015 (($ $ $) 92)) (-2430 (($ $ $) 77)) (-1673 (($ $ $) 95) (($ $) 96)) (-1574 (($ $ $) 81)) (-1558 (($ $ $) 79)) (-1531 (((-108) $ $) 15) (($ $ $) 16)) (-1566 (($ $ $) 80)) (-1549 (($ $ $) 78)) (-1620 (($ $ $) 86)) (-1612 (($ $ $) 83) (($ $) 84)) (-1602 (($ $ $) 82)) (** (($ $ $) 87)) (* (($ $ $) 85)))
-(((-792) (-13 (-1014) (-10 -8 (-15 -2050 ((-1171) $)) (-15 -2840 ($ (-1068))) (-15 -1675 ((-1171) (-1068))) (-15 -3445 ($ (-522))) (-15 -3445 ($ (-1085))) (-15 -3445 ($ (-1068))) (-15 -3445 ($ (-202))) (-15 -3775 ($)) (-15 -2645 ((-522) $)) (-15 -4155 ((-522) $)) (-15 -2645 ((-522))) (-15 -4155 ((-522))) (-15 -3915 ((-522) $)) (-15 -1774 ((-522) $)) (-15 -2482 ($ (-522))) (-15 -1999 ($ (-522))) (-15 -1636 ($ (-522) (-522))) (-15 -1913 ($ $ (-522))) (-15 -1924 ($ $ (-522))) (-15 -1893 ($ $ (-522))) (-15 -1913 ($ $)) (-15 -1924 ($ $)) (-15 -1893 ($ $)) (-15 -2186 ($ $ $)) (-15 -2410 ($ $ $)) (-15 -2186 ($ (-588 $))) (-15 -2410 ($ (-588 $))) (-15 -3375 ($ $ (-588 $))) (-15 -3262 ($ $ (-588 $))) (-15 -3262 ($ $ $ $)) (-15 -1828 ($ $ $)) (-15 -3881 ((-108) $)) (-15 -2545 ($ $ (-588 $))) (-15 -1507 ($ $)) (-15 -2907 ($ $ $)) (-15 -2308 ($ $)) (-15 -1366 ($ (-588 (-588 $)))) (-15 -1508 ($ $ $)) (-15 -1799 ($ $)) (-15 -1799 ($ $ $)) (-15 -2396 ($ $ $)) (-15 -1984 ($ $ $)) (-15 -3712 ($ $ $)) (-15 -3825 ($ $ $)) (-15 -2157 ($ $ (-708))) (-15 -1480 ($ $ $)) (-15 -2337 ($ $ $)) (-15 -2133 ($ $ $)) (-15 -4123 ($ $ $)) (-15 -1467 ($ $ $)) (-15 -2526 ($ $ (-588 $))) (-15 -2922 ($ $ (-588 $))) (-15 -1396 ($ $)) (-15 -1883 ($ $)) (-15 -1883 ($ $ (-708))) (-15 -3717 ($ $)) (-15 -3717 ($ $ (-708))) (-15 -3102 ($ $)) (-15 -3044 ($ $ $)) (-15 -3518 ($ $)) (-15 -3518 ($ $ $)) (-15 -3518 ($ $ $ $)) (-15 -2574 ($ $)) (-15 -2574 ($ $ $)) (-15 -2574 ($ $ $ $)) (-15 -3622 ($ $)) (-15 -3622 ($ $ $)) (-15 -3622 ($ $ $ $)) (-15 -3392 ($ $)) (-15 -3392 ($ (-588 $))) (-15 -1841 ($ $)) (-15 -1841 ($ (-588 $))) (-15 -1953 ($ $)) (-15 -1953 ($ (-588 $))) (-15 -1756 ($ (-588 $))) (-15 -3901 ($ (-588 $))) (-15 -1998 ($ (-588 $))) (-15 -2948 ($ (-588 $))) (-15 -1531 ($ $ $)) (-15 -2430 ($ $ $)) (-15 -1549 ($ $ $)) (-15 -1558 ($ $ $)) (-15 -1566 ($ $ $)) (-15 -1574 ($ $ $)) (-15 -1602 ($ $ $)) (-15 -1612 ($ $ $)) (-15 -1612 ($ $)) (-15 * ($ $ $)) (-15 -1620 ($ $ $)) (-15 ** ($ $ $)) (-15 -2243 ($ $ $)) (-15 -2277 ($ $ $)) (-15 -2254 ($ $ $)) (-15 -2232 ($ $ $)) (-15 -4015 ($ $ $)) (-15 -3999 ($ $ $)) (-15 -2401 ($ $)) (-15 -1673 ($ $ $)) (-15 -1673 ($ $))))) (T -792))
-((-2050 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-792)))) (-2840 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-792)))) (-1675 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-792)))) (-3445 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-3445 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-792)))) (-3445 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-792)))) (-3445 (*1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-792)))) (-3775 (*1 *1) (-5 *1 (-792))) (-2645 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-4155 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-2645 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-4155 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-3915 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-1774 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-2482 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-1999 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-1636 (*1 *1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-1913 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-1924 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-1893 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-1913 (*1 *1 *1) (-5 *1 (-792))) (-1924 (*1 *1 *1) (-5 *1 (-792))) (-1893 (*1 *1 *1) (-5 *1 (-792))) (-2186 (*1 *1 *1 *1) (-5 *1 (-792))) (-2410 (*1 *1 *1 *1) (-5 *1 (-792))) (-2186 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-2410 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-3375 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-3262 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-3262 (*1 *1 *1 *1 *1) (-5 *1 (-792))) (-1828 (*1 *1 *1 *1) (-5 *1 (-792))) (-3881 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-792)))) (-2545 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-1507 (*1 *1 *1) (-5 *1 (-792))) (-2907 (*1 *1 *1 *1) (-5 *1 (-792))) (-2308 (*1 *1 *1) (-5 *1 (-792))) (-1366 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 (-792)))) (-5 *1 (-792)))) (-1508 (*1 *1 *1 *1) (-5 *1 (-792))) (-1799 (*1 *1 *1) (-5 *1 (-792))) (-1799 (*1 *1 *1 *1) (-5 *1 (-792))) (-2396 (*1 *1 *1 *1) (-5 *1 (-792))) (-1984 (*1 *1 *1 *1) (-5 *1 (-792))) (-3712 (*1 *1 *1 *1) (-5 *1 (-792))) (-3825 (*1 *1 *1 *1) (-5 *1 (-792))) (-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-792)))) (-1480 (*1 *1 *1 *1) (-5 *1 (-792))) (-2337 (*1 *1 *1 *1) (-5 *1 (-792))) (-2133 (*1 *1 *1 *1) (-5 *1 (-792))) (-4123 (*1 *1 *1 *1) (-5 *1 (-792))) (-1467 (*1 *1 *1 *1) (-5 *1 (-792))) (-2526 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-2922 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-1396 (*1 *1 *1) (-5 *1 (-792))) (-1883 (*1 *1 *1) (-5 *1 (-792))) (-1883 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-792)))) (-3717 (*1 *1 *1) (-5 *1 (-792))) (-3717 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-792)))) (-3102 (*1 *1 *1) (-5 *1 (-792))) (-3044 (*1 *1 *1 *1) (-5 *1 (-792))) (-3518 (*1 *1 *1) (-5 *1 (-792))) (-3518 (*1 *1 *1 *1) (-5 *1 (-792))) (-3518 (*1 *1 *1 *1 *1) (-5 *1 (-792))) (-2574 (*1 *1 *1) (-5 *1 (-792))) (-2574 (*1 *1 *1 *1) (-5 *1 (-792))) (-2574 (*1 *1 *1 *1 *1) (-5 *1 (-792))) (-3622 (*1 *1 *1) (-5 *1 (-792))) (-3622 (*1 *1 *1 *1) (-5 *1 (-792))) (-3622 (*1 *1 *1 *1 *1) (-5 *1 (-792))) (-3392 (*1 *1 *1) (-5 *1 (-792))) (-3392 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-1841 (*1 *1 *1) (-5 *1 (-792))) (-1841 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-1953 (*1 *1 *1) (-5 *1 (-792))) (-1953 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-3901 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-1998 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-2948 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-1531 (*1 *1 *1 *1) (-5 *1 (-792))) (-2430 (*1 *1 *1 *1) (-5 *1 (-792))) (-1549 (*1 *1 *1 *1) (-5 *1 (-792))) (-1558 (*1 *1 *1 *1) (-5 *1 (-792))) (-1566 (*1 *1 *1 *1) (-5 *1 (-792))) (-1574 (*1 *1 *1 *1) (-5 *1 (-792))) (-1602 (*1 *1 *1 *1) (-5 *1 (-792))) (-1612 (*1 *1 *1 *1) (-5 *1 (-792))) (-1612 (*1 *1 *1) (-5 *1 (-792))) (* (*1 *1 *1 *1) (-5 *1 (-792))) (-1620 (*1 *1 *1 *1) (-5 *1 (-792))) (** (*1 *1 *1 *1) (-5 *1 (-792))) (-2243 (*1 *1 *1 *1) (-5 *1 (-792))) (-2277 (*1 *1 *1 *1) (-5 *1 (-792))) (-2254 (*1 *1 *1 *1) (-5 *1 (-792))) (-2232 (*1 *1 *1 *1) (-5 *1 (-792))) (-4015 (*1 *1 *1 *1) (-5 *1 (-792))) (-3999 (*1 *1 *1 *1) (-5 *1 (-792))) (-2401 (*1 *1 *1) (-5 *1 (-792))) (-1673 (*1 *1 *1 *1) (-5 *1 (-792))) (-1673 (*1 *1 *1) (-5 *1 (-792))))
-(-13 (-1014) (-10 -8 (-15 -2050 ((-1171) $)) (-15 -2840 ($ (-1068))) (-15 -1675 ((-1171) (-1068))) (-15 -3445 ($ (-522))) (-15 -3445 ($ (-1085))) (-15 -3445 ($ (-1068))) (-15 -3445 ($ (-202))) (-15 -3775 ($)) (-15 -2645 ((-522) $)) (-15 -4155 ((-522) $)) (-15 -2645 ((-522))) (-15 -4155 ((-522))) (-15 -3915 ((-522) $)) (-15 -1774 ((-522) $)) (-15 -2482 ($ (-522))) (-15 -1999 ($ (-522))) (-15 -1636 ($ (-522) (-522))) (-15 -1913 ($ $ (-522))) (-15 -1924 ($ $ (-522))) (-15 -1893 ($ $ (-522))) (-15 -1913 ($ $)) (-15 -1924 ($ $)) (-15 -1893 ($ $)) (-15 -2186 ($ $ $)) (-15 -2410 ($ $ $)) (-15 -2186 ($ (-588 $))) (-15 -2410 ($ (-588 $))) (-15 -3375 ($ $ (-588 $))) (-15 -3262 ($ $ (-588 $))) (-15 -3262 ($ $ $ $)) (-15 -1828 ($ $ $)) (-15 -3881 ((-108) $)) (-15 -2545 ($ $ (-588 $))) (-15 -1507 ($ $)) (-15 -2907 ($ $ $)) (-15 -2308 ($ $)) (-15 -1366 ($ (-588 (-588 $)))) (-15 -1508 ($ $ $)) (-15 -1799 ($ $)) (-15 -1799 ($ $ $)) (-15 -2396 ($ $ $)) (-15 -1984 ($ $ $)) (-15 -3712 ($ $ $)) (-15 -3825 ($ $ $)) (-15 -2157 ($ $ (-708))) (-15 -1480 ($ $ $)) (-15 -2337 ($ $ $)) (-15 -2133 ($ $ $)) (-15 -4123 ($ $ $)) (-15 -1467 ($ $ $)) (-15 -2526 ($ $ (-588 $))) (-15 -2922 ($ $ (-588 $))) (-15 -1396 ($ $)) (-15 -1883 ($ $)) (-15 -1883 ($ $ (-708))) (-15 -3717 ($ $)) (-15 -3717 ($ $ (-708))) (-15 -3102 ($ $)) (-15 -3044 ($ $ $)) (-15 -3518 ($ $)) (-15 -3518 ($ $ $)) (-15 -3518 ($ $ $ $)) (-15 -2574 ($ $)) (-15 -2574 ($ $ $)) (-15 -2574 ($ $ $ $)) (-15 -3622 ($ $)) (-15 -3622 ($ $ $)) (-15 -3622 ($ $ $ $)) (-15 -3392 ($ $)) (-15 -3392 ($ (-588 $))) (-15 -1841 ($ $)) (-15 -1841 ($ (-588 $))) (-15 -1953 ($ $)) (-15 -1953 ($ (-588 $))) (-15 -1756 ($ (-588 $))) (-15 -3901 ($ (-588 $))) (-15 -1998 ($ (-588 $))) (-15 -2948 ($ (-588 $))) (-15 -1531 ($ $ $)) (-15 -2430 ($ $ $)) (-15 -1549 ($ $ $)) (-15 -1558 ($ $ $)) (-15 -1566 ($ $ $)) (-15 -1574 ($ $ $)) (-15 -1602 ($ $ $)) (-15 -1612 ($ $ $)) (-15 -1612 ($ $)) (-15 * ($ $ $)) (-15 -1620 ($ $ $)) (-15 ** ($ $ $)) (-15 -2243 ($ $ $)) (-15 -2277 ($ $ $)) (-15 -2254 ($ $ $)) (-15 -2232 ($ $ $)) (-15 -4015 ($ $ $)) (-15 -3999 ($ $ $)) (-15 -2401 ($ $)) (-15 -1673 ($ $ $)) (-15 -1673 ($ $))))
-((-1483 (((-1171) (-588 (-51))) 24)) (-1585 (((-1171) (-1068) (-792)) 14) (((-1171) (-792)) 9) (((-1171) (-1068)) 11)))
-(((-793) (-10 -7 (-15 -1585 ((-1171) (-1068))) (-15 -1585 ((-1171) (-792))) (-15 -1585 ((-1171) (-1068) (-792))) (-15 -1483 ((-1171) (-588 (-51)))))) (T -793))
-((-1483 (*1 *2 *3) (-12 (-5 *3 (-588 (-51))) (-5 *2 (-1171)) (-5 *1 (-793)))) (-1585 (*1 *2 *3 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-792)) (-5 *2 (-1171)) (-5 *1 (-793)))) (-1585 (*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-793)))) (-1585 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-793)))))
-(-10 -7 (-15 -1585 ((-1171) (-1068))) (-15 -1585 ((-1171) (-792))) (-15 -1585 ((-1171) (-1068) (-792))) (-15 -1483 ((-1171) (-588 (-51)))))
-((-1416 (((-108) $ $) NIL)) (-1611 (((-3 $ "failed") (-1085)) 32)) (-1629 (((-708)) 30)) (-3255 (($) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2120 (((-850) $) 28)) (-2385 (((-1068) $) 38)) (-2717 (($ (-850)) 27)) (-4151 (((-1032) $) NIL)) (-1431 (((-1085) $) 13) (((-498) $) 19) (((-821 (-354)) $) 25) (((-821 (-522)) $) 22)) (-2190 (((-792) $) 16)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 35)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 34)))
-(((-794 |#1|) (-13 (-778) (-563 (-1085)) (-563 (-498)) (-563 (-821 (-354))) (-563 (-821 (-522))) (-10 -8 (-15 -1611 ((-3 $ "failed") (-1085))))) (-588 (-1085))) (T -794))
-((-1611 (*1 *1 *2) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-794 *3)) (-14 *3 (-588 *2)))))
-(-13 (-778) (-563 (-1085)) (-563 (-498)) (-563 (-821 (-354))) (-563 (-821 (-522))) (-10 -8 (-15 -1611 ((-3 $ "failed") (-1085)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) NIL)) (-2782 (((-108) $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (((-881 |#1|) $) NIL) (($ (-881 |#1|)) NIL) (($ |#1|) NIL (|has| |#1| (-157)))) (-2323 (((-708)) NIL)) (-1809 (((-1171) (-708)) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1620 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-157))) (($ $ |#1|) NIL (|has| |#1| (-157)))))
-(((-795 |#1| |#2| |#3| |#4|) (-13 (-971) (-10 -8 (IF (|has| |#1| (-157)) (-6 (-37 |#1|)) |%noBranch|) (-15 -2190 ((-881 |#1|) $)) (-15 -2190 ($ (-881 |#1|))) (IF (|has| |#1| (-338)) (-15 -1620 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1809 ((-1171) (-708))))) (-971) (-588 (-1085)) (-588 (-708)) (-708)) (T -795))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-881 *3)) (-5 *1 (-795 *3 *4 *5 *6)) (-4 *3 (-971)) (-14 *4 (-588 (-1085))) (-14 *5 (-588 (-708))) (-14 *6 (-708)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-881 *3)) (-4 *3 (-971)) (-5 *1 (-795 *3 *4 *5 *6)) (-14 *4 (-588 (-1085))) (-14 *5 (-588 (-708))) (-14 *6 (-708)))) (-1620 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-795 *2 *3 *4 *5)) (-4 *2 (-338)) (-4 *2 (-971)) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-708))) (-14 *5 (-708)))) (-1809 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-795 *4 *5 *6 *7)) (-4 *4 (-971)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 *3)) (-14 *7 *3))))
-(-13 (-971) (-10 -8 (IF (|has| |#1| (-157)) (-6 (-37 |#1|)) |%noBranch|) (-15 -2190 ((-881 |#1|) $)) (-15 -2190 ($ (-881 |#1|))) (IF (|has| |#1| (-338)) (-15 -1620 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1809 ((-1171) (-708)))))
-((-2113 (((-3 (-158 |#3|) "failed") (-708) (-708) |#2| |#2|) 31)) (-1553 (((-3 (-382 |#3|) "failed") (-708) (-708) |#2| |#2|) 24)))
-(((-796 |#1| |#2| |#3|) (-10 -7 (-15 -1553 ((-3 (-382 |#3|) "failed") (-708) (-708) |#2| |#2|)) (-15 -2113 ((-3 (-158 |#3|) "failed") (-708) (-708) |#2| |#2|))) (-338) (-1157 |#1|) (-1142 |#1|)) (T -796))
-((-2113 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-708)) (-4 *5 (-338)) (-5 *2 (-158 *6)) (-5 *1 (-796 *5 *4 *6)) (-4 *4 (-1157 *5)) (-4 *6 (-1142 *5)))) (-1553 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-708)) (-4 *5 (-338)) (-5 *2 (-382 *6)) (-5 *1 (-796 *5 *4 *6)) (-4 *4 (-1157 *5)) (-4 *6 (-1142 *5)))))
-(-10 -7 (-15 -1553 ((-3 (-382 |#3|) "failed") (-708) (-708) |#2| |#2|)) (-15 -2113 ((-3 (-158 |#3|) "failed") (-708) (-708) |#2| |#2|)))
-((-1553 (((-3 (-382 (-1139 |#2| |#1|)) "failed") (-708) (-708) (-1158 |#1| |#2| |#3|)) 28) (((-3 (-382 (-1139 |#2| |#1|)) "failed") (-708) (-708) (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|)) 26)))
-(((-797 |#1| |#2| |#3|) (-10 -7 (-15 -1553 ((-3 (-382 (-1139 |#2| |#1|)) "failed") (-708) (-708) (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|))) (-15 -1553 ((-3 (-382 (-1139 |#2| |#1|)) "failed") (-708) (-708) (-1158 |#1| |#2| |#3|)))) (-338) (-1085) |#1|) (T -797))
-((-1553 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-708)) (-5 *4 (-1158 *5 *6 *7)) (-4 *5 (-338)) (-14 *6 (-1085)) (-14 *7 *5) (-5 *2 (-382 (-1139 *6 *5))) (-5 *1 (-797 *5 *6 *7)))) (-1553 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-708)) (-5 *4 (-1158 *5 *6 *7)) (-4 *5 (-338)) (-14 *6 (-1085)) (-14 *7 *5) (-5 *2 (-382 (-1139 *6 *5))) (-5 *1 (-797 *5 *6 *7)))))
-(-10 -7 (-15 -1553 ((-3 (-382 (-1139 |#2| |#1|)) "failed") (-708) (-708) (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|))) (-15 -1553 ((-3 (-382 (-1139 |#2| |#1|)) "failed") (-708) (-708) (-1158 |#1| |#2| |#3|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-1929 (($ $ (-522)) 62)) (-1687 (((-108) $ $) 59)) (-3175 (($) 17 T CONST)) (-1799 (($ (-1081 (-522)) (-522)) 61)) (-2277 (($ $ $) 55)) (-2682 (((-3 $ "failed") $) 34)) (-1573 (($ $) 64)) (-2254 (($ $ $) 56)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-3714 (((-708) $) 69)) (-2782 (((-108) $) 31)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-3010 (((-522)) 66)) (-1337 (((-522) $) 65)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-3719 (($ $ (-522)) 68)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-3730 (((-708) $) 58)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57)) (-2615 (((-1066 (-522)) $) 70)) (-1522 (($ $) 67)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-3898 (((-522) $ (-522)) 63)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-2572 ((|#2| |#2| |#2| (-94 |#1|) (-1 |#1| |#1|)) 21)) (-1432 (((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2| (-94 |#1|)) 44 (|has| |#1| (-338)))) (-3865 (((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2| (-94 |#1|)) 41 (|has| |#1| (-514)))) (-2118 (((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2| (-94 |#1|)) 40 (|has| |#1| (-514)))) (-2070 (((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2| (-94 |#1|)) 43 (|has| |#1| (-338)))) (-1664 ((|#1| |#2| |#1| |#1| (-94 |#1|) (-1 |#1| |#1|)) 32)))
+(((-787 |#1| |#2|) (-10 -7 (-15 -2572 (|#2| |#2| |#2| (-94 |#1|) (-1 |#1| |#1|))) (-15 -1664 (|#1| |#2| |#1| |#1| (-94 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-514)) (PROGN (-15 -2118 ((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -3865 ((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-15 -2070 ((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -1432 ((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|)) (-971) (-786 |#1|)) (T -787))
+((-1432 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-338)) (-4 *5 (-971)) (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-787 *5 *3)) (-4 *3 (-786 *5)))) (-2070 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-338)) (-4 *5 (-971)) (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-787 *5 *3)) (-4 *3 (-786 *5)))) (-3865 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-514)) (-4 *5 (-971)) (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-787 *5 *3)) (-4 *3 (-786 *5)))) (-2118 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-94 *5)) (-4 *5 (-514)) (-4 *5 (-971)) (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-787 *5 *3)) (-4 *3 (-786 *5)))) (-1664 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-94 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-971)) (-5 *1 (-787 *2 *3)) (-4 *3 (-786 *2)))) (-2572 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-971)) (-5 *1 (-787 *5 *2)) (-4 *2 (-786 *5)))))
+(-10 -7 (-15 -2572 (|#2| |#2| |#2| (-94 |#1|) (-1 |#1| |#1|))) (-15 -1664 (|#1| |#2| |#1| |#1| (-94 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-514)) (PROGN (-15 -2118 ((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -3865 ((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-15 -2070 ((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2| (-94 |#1|))) (-15 -1432 ((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2| (-94 |#1|)))) |%noBranch|))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3525 (($ $ $) NIL (|has| |#1| (-338)))) (-1342 (($ $ $) NIL (|has| |#1| (-338)))) (-1734 (($ $ $) NIL (|has| |#1| (-338)))) (-3320 (($ $ $) NIL (|has| |#1| (-338)))) (-2228 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-1975 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-1432 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 25 (|has| |#1| (-338)))) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#1| (-426)))) (-3094 (((-792) $ (-792)) NIL)) (-2859 (((-108) $) NIL)) (-3500 (($ |#1| (-708)) NIL)) (-3865 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 21 (|has| |#1| (-514)))) (-2118 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 19 (|has| |#1| (-514)))) (-3564 (((-708) $) NIL)) (-3755 (($ $ $) NIL (|has| |#1| (-338)))) (-1416 (($ $ $) NIL (|has| |#1| (-338)))) (-3283 (($ $ $) NIL (|has| |#1| (-338)))) (-3453 (($ $ $) NIL (|has| |#1| (-338)))) (-2045 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-2708 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-2070 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 23 (|has| |#1| (-338)))) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-2487 (((-708) $) NIL)) (-2988 ((|#1| $) NIL (|has| |#1| (-426)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#1| (-962 (-382 (-522))))) (($ |#1|) NIL)) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-708)) NIL)) (-2742 (((-708)) NIL)) (-1664 ((|#1| $ |#1| |#1|) 15)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-788 |#1| |#2| |#3|) (-13 (-786 |#1|) (-10 -8 (-15 -3094 ((-792) $ (-792))))) (-971) (-94 |#1|) (-1 |#1| |#1|)) (T -788))
+((-3094 (*1 *2 *1 *2) (-12 (-5 *2 (-792)) (-5 *1 (-788 *3 *4 *5)) (-4 *3 (-971)) (-14 *4 (-94 *3)) (-14 *5 (-1 *3 *3)))))
+(-13 (-786 |#1|) (-10 -8 (-15 -3094 ((-792) $ (-792)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3525 (($ $ $) NIL (|has| |#2| (-338)))) (-1342 (($ $ $) NIL (|has| |#2| (-338)))) (-1734 (($ $ $) NIL (|has| |#2| (-338)))) (-3320 (($ $ $) NIL (|has| |#2| (-338)))) (-2228 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#2| (-338)))) (-1975 (((-3 $ "failed") $ $) NIL (|has| |#2| (-338)))) (-1432 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#2| (-338)))) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 |#2| "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) ((|#2| $) NIL)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#2| (-426)))) (-2859 (((-108) $) NIL)) (-3500 (($ |#2| (-708)) 16)) (-3865 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#2| (-514)))) (-2118 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#2| (-514)))) (-3564 (((-708) $) NIL)) (-3755 (($ $ $) NIL (|has| |#2| (-338)))) (-1416 (($ $ $) NIL (|has| |#2| (-338)))) (-3283 (($ $ $) NIL (|has| |#2| (-338)))) (-3453 (($ $ $) NIL (|has| |#2| (-338)))) (-2045 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#2| (-338)))) (-2708 (((-3 $ "failed") $ $) NIL (|has| |#2| (-338)))) (-2070 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#2| (-338)))) (-3224 ((|#2| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2276 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514)))) (-2487 (((-708) $) NIL)) (-2988 ((|#2| $) NIL (|has| |#2| (-426)))) (-2217 (((-792) $) 23) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#2| (-962 (-382 (-522))))) (($ |#2|) NIL) (($ (-1162 |#1|)) 18)) (-2180 (((-588 |#2|) $) NIL)) (-1643 ((|#2| $ (-708)) NIL)) (-2742 (((-708)) NIL)) (-1664 ((|#2| $ |#2| |#2|) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) 13 T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-789 |#1| |#2| |#3| |#4|) (-13 (-786 |#2|) (-10 -8 (-15 -2217 ($ (-1162 |#1|))))) (-1085) (-971) (-94 |#2|) (-1 |#2| |#2|)) (T -789))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1162 *3)) (-14 *3 (-1085)) (-5 *1 (-789 *3 *4 *5 *6)) (-4 *4 (-971)) (-14 *5 (-94 *4)) (-14 *6 (-1 *4 *4)))))
+(-13 (-786 |#2|) (-10 -8 (-15 -2217 ($ (-1162 |#1|)))))
+((-3743 ((|#1| (-708) |#1|) 35 (|has| |#1| (-37 (-382 (-522)))))) (-1806 ((|#1| (-708) (-708) |#1|) 27) ((|#1| (-708) |#1|) 20)) (-3759 ((|#1| (-708) |#1|) 31)) (-3188 ((|#1| (-708) |#1|) 29)) (-2270 ((|#1| (-708) |#1|) 28)))
+(((-790 |#1|) (-10 -7 (-15 -2270 (|#1| (-708) |#1|)) (-15 -3188 (|#1| (-708) |#1|)) (-15 -3759 (|#1| (-708) |#1|)) (-15 -1806 (|#1| (-708) |#1|)) (-15 -1806 (|#1| (-708) (-708) |#1|)) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -3743 (|#1| (-708) |#1|)) |%noBranch|)) (-157)) (T -790))
+((-3743 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-157)))) (-1806 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))) (-1806 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))) (-3759 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))) (-3188 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))) (-2270 (*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))))
+(-10 -7 (-15 -2270 (|#1| (-708) |#1|)) (-15 -3188 (|#1| (-708) |#1|)) (-15 -3759 (|#1| (-708) |#1|)) (-15 -1806 (|#1| (-708) |#1|)) (-15 -1806 (|#1| (-708) (-708) |#1|)) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -3743 (|#1| (-708) |#1|)) |%noBranch|))
+((-1419 (((-108) $ $) NIL)) (-3526 (((-522) $) 12)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 18) (($ (-522)) 11)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 8)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 9)))
+(((-791) (-13 (-784) (-10 -8 (-15 -2217 ($ (-522))) (-15 -3526 ((-522) $))))) (T -791))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-791)))) (-3526 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-791)))))
+(-13 (-784) (-10 -8 (-15 -2217 ($ (-522))) (-15 -3526 ((-522) $))))
+((-1419 (((-108) $ $) NIL)) (-1826 (($ $ $) 115)) (-2815 (((-522) $) 30) (((-522)) 35)) (-3284 (($ (-522)) 44)) (-2554 (($ $ $) 45) (($ (-588 $)) 76)) (-3537 (($ $ (-588 $)) 74)) (-3559 (((-522) $) 33)) (-2934 (($ $ $) 63)) (-3640 (($ $) 128) (($ $ $) 129) (($ $ $ $) 130)) (-2169 (((-522) $) 32)) (-1949 (($ $ $) 62)) (-1513 (($ $) 105)) (-3174 (($ $ $) 119)) (-3273 (($ (-588 $)) 52)) (-4039 (($ $ (-588 $)) 69)) (-2221 (($ (-522) (-522)) 46)) (-3763 (($ $) 116) (($ $ $) 117)) (-2002 (($ $ (-522)) 40) (($ $) 43)) (-2333 (($ $ $) 89)) (-2651 (($ $ $) 122)) (-3806 (($ $) 106)) (-2303 (($ $ $) 90)) (-2592 (($ $) 131) (($ $ $) 132) (($ $ $ $) 133)) (-2100 (((-1171) $) 8)) (-3909 (($ $) 109) (($ $ (-708)) 112)) (-2736 (($ $ $) 65)) (-2482 (($ $ $) 64)) (-3476 (($ $ (-588 $)) 100)) (-2236 (($ $ $) 104)) (-3414 (($ (-588 $)) 50)) (-2930 (($ $) 60) (($ (-588 $)) 61)) (-3415 (($ $ $) 113)) (-3932 (($ $) 107)) (-1356 (($ $ $) 118)) (-3094 (($ (-522)) 20) (($ (-1085)) 22) (($ (-1068)) 29) (($ (-202)) 24)) (-4070 (($ $ $) 93)) (-2473 (($ $) 94)) (-2655 (((-1171) (-1068)) 14)) (-2970 (($ (-1068)) 13)) (-1347 (($ (-588 (-588 $))) 48)) (-1993 (($ $ (-522)) 39) (($ $) 42)) (-2311 (((-1068) $) NIL)) (-3032 (($ $ $) 121)) (-4149 (($ $) 134) (($ $ $) 135) (($ $ $ $) 136)) (-3993 (((-108) $) 98)) (-1821 (($ $ (-588 $)) 102) (($ $ $ $) 103)) (-3095 (($ (-522)) 36)) (-4179 (((-522) $) 31) (((-522)) 34)) (-3368 (($ $ $) 37) (($ (-588 $)) 75)) (-4174 (((-1032) $) NIL)) (-2276 (($ $ $) 91)) (-3298 (($) 12)) (-2683 (($ $ (-588 $)) 99)) (-4024 (($ $) 108) (($ $ (-708)) 111)) (-2289 (($ $ $) 88)) (-2731 (($ $ (-708)) 127)) (-2043 (($ (-588 $)) 51)) (-2217 (((-792) $) 18)) (-1980 (($ $ (-522)) 38) (($ $) 41)) (-2394 (($ $) 58) (($ (-588 $)) 59)) (-3482 (($ $) 56) (($ (-588 $)) 57)) (-3811 (($ $) 114)) (-3801 (($ (-588 $)) 55)) (-1591 (($ $ $) 97)) (-3849 (($ $ $) 120)) (-4079 (($ $ $) 92)) (-2488 (($ $ $) 77)) (-1752 (($ $ $) 95) (($ $) 96)) (-1623 (($ $ $) 81)) (-1597 (($ $ $) 79)) (-1562 (((-108) $ $) 15) (($ $ $) 16)) (-1609 (($ $ $) 80)) (-1587 (($ $ $) 78)) (-1682 (($ $ $) 86)) (-1672 (($ $ $) 83) (($ $) 84)) (-1661 (($ $ $) 82)) (** (($ $ $) 87)) (* (($ $ $) 85)))
+(((-792) (-13 (-1014) (-10 -8 (-15 -2100 ((-1171) $)) (-15 -2970 ($ (-1068))) (-15 -2655 ((-1171) (-1068))) (-15 -3094 ($ (-522))) (-15 -3094 ($ (-1085))) (-15 -3094 ($ (-1068))) (-15 -3094 ($ (-202))) (-15 -3298 ($)) (-15 -2815 ((-522) $)) (-15 -4179 ((-522) $)) (-15 -2815 ((-522))) (-15 -4179 ((-522))) (-15 -2169 ((-522) $)) (-15 -3559 ((-522) $)) (-15 -3095 ($ (-522))) (-15 -3284 ($ (-522))) (-15 -2221 ($ (-522) (-522))) (-15 -1993 ($ $ (-522))) (-15 -2002 ($ $ (-522))) (-15 -1980 ($ $ (-522))) (-15 -1993 ($ $)) (-15 -2002 ($ $)) (-15 -1980 ($ $)) (-15 -3368 ($ $ $)) (-15 -2554 ($ $ $)) (-15 -3368 ($ (-588 $))) (-15 -2554 ($ (-588 $))) (-15 -3476 ($ $ (-588 $))) (-15 -1821 ($ $ (-588 $))) (-15 -1821 ($ $ $ $)) (-15 -2236 ($ $ $)) (-15 -3993 ((-108) $)) (-15 -2683 ($ $ (-588 $))) (-15 -1513 ($ $)) (-15 -3032 ($ $ $)) (-15 -3811 ($ $)) (-15 -1347 ($ (-588 (-588 $)))) (-15 -1826 ($ $ $)) (-15 -3763 ($ $)) (-15 -3763 ($ $ $)) (-15 -1356 ($ $ $)) (-15 -3174 ($ $ $)) (-15 -3849 ($ $ $)) (-15 -2651 ($ $ $)) (-15 -2731 ($ $ (-708))) (-15 -1591 ($ $ $)) (-15 -1949 ($ $ $)) (-15 -2934 ($ $ $)) (-15 -2482 ($ $ $)) (-15 -2736 ($ $ $)) (-15 -4039 ($ $ (-588 $))) (-15 -3537 ($ $ (-588 $))) (-15 -3806 ($ $)) (-15 -4024 ($ $)) (-15 -4024 ($ $ (-708))) (-15 -3909 ($ $)) (-15 -3909 ($ $ (-708))) (-15 -3932 ($ $)) (-15 -3415 ($ $ $)) (-15 -3640 ($ $)) (-15 -3640 ($ $ $)) (-15 -3640 ($ $ $ $)) (-15 -2592 ($ $)) (-15 -2592 ($ $ $)) (-15 -2592 ($ $ $ $)) (-15 -4149 ($ $)) (-15 -4149 ($ $ $)) (-15 -4149 ($ $ $ $)) (-15 -3482 ($ $)) (-15 -3482 ($ (-588 $))) (-15 -2394 ($ $)) (-15 -2394 ($ (-588 $))) (-15 -2930 ($ $)) (-15 -2930 ($ (-588 $))) (-15 -3414 ($ (-588 $))) (-15 -2043 ($ (-588 $))) (-15 -3273 ($ (-588 $))) (-15 -3801 ($ (-588 $))) (-15 -1562 ($ $ $)) (-15 -2488 ($ $ $)) (-15 -1587 ($ $ $)) (-15 -1597 ($ $ $)) (-15 -1609 ($ $ $)) (-15 -1623 ($ $ $)) (-15 -1661 ($ $ $)) (-15 -1672 ($ $ $)) (-15 -1672 ($ $)) (-15 * ($ $ $)) (-15 -1682 ($ $ $)) (-15 ** ($ $ $)) (-15 -2289 ($ $ $)) (-15 -2333 ($ $ $)) (-15 -2303 ($ $ $)) (-15 -2276 ($ $ $)) (-15 -4079 ($ $ $)) (-15 -4070 ($ $ $)) (-15 -2473 ($ $)) (-15 -1752 ($ $ $)) (-15 -1752 ($ $))))) (T -792))
+((-2100 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-792)))) (-2970 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-792)))) (-2655 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-792)))) (-3094 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-3094 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-792)))) (-3094 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-792)))) (-3094 (*1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-792)))) (-3298 (*1 *1) (-5 *1 (-792))) (-2815 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-4179 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-2815 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-4179 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-2169 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-3559 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-3095 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-3284 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-2221 (*1 *1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-1993 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-2002 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-1980 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))) (-1993 (*1 *1 *1) (-5 *1 (-792))) (-2002 (*1 *1 *1) (-5 *1 (-792))) (-1980 (*1 *1 *1) (-5 *1 (-792))) (-3368 (*1 *1 *1 *1) (-5 *1 (-792))) (-2554 (*1 *1 *1 *1) (-5 *1 (-792))) (-3368 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-2554 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-3476 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-1821 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-1821 (*1 *1 *1 *1 *1) (-5 *1 (-792))) (-2236 (*1 *1 *1 *1) (-5 *1 (-792))) (-3993 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-792)))) (-2683 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-1513 (*1 *1 *1) (-5 *1 (-792))) (-3032 (*1 *1 *1 *1) (-5 *1 (-792))) (-3811 (*1 *1 *1) (-5 *1 (-792))) (-1347 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 (-792)))) (-5 *1 (-792)))) (-1826 (*1 *1 *1 *1) (-5 *1 (-792))) (-3763 (*1 *1 *1) (-5 *1 (-792))) (-3763 (*1 *1 *1 *1) (-5 *1 (-792))) (-1356 (*1 *1 *1 *1) (-5 *1 (-792))) (-3174 (*1 *1 *1 *1) (-5 *1 (-792))) (-3849 (*1 *1 *1 *1) (-5 *1 (-792))) (-2651 (*1 *1 *1 *1) (-5 *1 (-792))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-792)))) (-1591 (*1 *1 *1 *1) (-5 *1 (-792))) (-1949 (*1 *1 *1 *1) (-5 *1 (-792))) (-2934 (*1 *1 *1 *1) (-5 *1 (-792))) (-2482 (*1 *1 *1 *1) (-5 *1 (-792))) (-2736 (*1 *1 *1 *1) (-5 *1 (-792))) (-4039 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-3537 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-3806 (*1 *1 *1) (-5 *1 (-792))) (-4024 (*1 *1 *1) (-5 *1 (-792))) (-4024 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-792)))) (-3909 (*1 *1 *1) (-5 *1 (-792))) (-3909 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-792)))) (-3932 (*1 *1 *1) (-5 *1 (-792))) (-3415 (*1 *1 *1 *1) (-5 *1 (-792))) (-3640 (*1 *1 *1) (-5 *1 (-792))) (-3640 (*1 *1 *1 *1) (-5 *1 (-792))) (-3640 (*1 *1 *1 *1 *1) (-5 *1 (-792))) (-2592 (*1 *1 *1) (-5 *1 (-792))) (-2592 (*1 *1 *1 *1) (-5 *1 (-792))) (-2592 (*1 *1 *1 *1 *1) (-5 *1 (-792))) (-4149 (*1 *1 *1) (-5 *1 (-792))) (-4149 (*1 *1 *1 *1) (-5 *1 (-792))) (-4149 (*1 *1 *1 *1 *1) (-5 *1 (-792))) (-3482 (*1 *1 *1) (-5 *1 (-792))) (-3482 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-2394 (*1 *1 *1) (-5 *1 (-792))) (-2394 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-2930 (*1 *1 *1) (-5 *1 (-792))) (-2930 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-3414 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-2043 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-3273 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-3801 (*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))) (-1562 (*1 *1 *1 *1) (-5 *1 (-792))) (-2488 (*1 *1 *1 *1) (-5 *1 (-792))) (-1587 (*1 *1 *1 *1) (-5 *1 (-792))) (-1597 (*1 *1 *1 *1) (-5 *1 (-792))) (-1609 (*1 *1 *1 *1) (-5 *1 (-792))) (-1623 (*1 *1 *1 *1) (-5 *1 (-792))) (-1661 (*1 *1 *1 *1) (-5 *1 (-792))) (-1672 (*1 *1 *1 *1) (-5 *1 (-792))) (-1672 (*1 *1 *1) (-5 *1 (-792))) (* (*1 *1 *1 *1) (-5 *1 (-792))) (-1682 (*1 *1 *1 *1) (-5 *1 (-792))) (** (*1 *1 *1 *1) (-5 *1 (-792))) (-2289 (*1 *1 *1 *1) (-5 *1 (-792))) (-2333 (*1 *1 *1 *1) (-5 *1 (-792))) (-2303 (*1 *1 *1 *1) (-5 *1 (-792))) (-2276 (*1 *1 *1 *1) (-5 *1 (-792))) (-4079 (*1 *1 *1 *1) (-5 *1 (-792))) (-4070 (*1 *1 *1 *1) (-5 *1 (-792))) (-2473 (*1 *1 *1) (-5 *1 (-792))) (-1752 (*1 *1 *1 *1) (-5 *1 (-792))) (-1752 (*1 *1 *1) (-5 *1 (-792))))
+(-13 (-1014) (-10 -8 (-15 -2100 ((-1171) $)) (-15 -2970 ($ (-1068))) (-15 -2655 ((-1171) (-1068))) (-15 -3094 ($ (-522))) (-15 -3094 ($ (-1085))) (-15 -3094 ($ (-1068))) (-15 -3094 ($ (-202))) (-15 -3298 ($)) (-15 -2815 ((-522) $)) (-15 -4179 ((-522) $)) (-15 -2815 ((-522))) (-15 -4179 ((-522))) (-15 -2169 ((-522) $)) (-15 -3559 ((-522) $)) (-15 -3095 ($ (-522))) (-15 -3284 ($ (-522))) (-15 -2221 ($ (-522) (-522))) (-15 -1993 ($ $ (-522))) (-15 -2002 ($ $ (-522))) (-15 -1980 ($ $ (-522))) (-15 -1993 ($ $)) (-15 -2002 ($ $)) (-15 -1980 ($ $)) (-15 -3368 ($ $ $)) (-15 -2554 ($ $ $)) (-15 -3368 ($ (-588 $))) (-15 -2554 ($ (-588 $))) (-15 -3476 ($ $ (-588 $))) (-15 -1821 ($ $ (-588 $))) (-15 -1821 ($ $ $ $)) (-15 -2236 ($ $ $)) (-15 -3993 ((-108) $)) (-15 -2683 ($ $ (-588 $))) (-15 -1513 ($ $)) (-15 -3032 ($ $ $)) (-15 -3811 ($ $)) (-15 -1347 ($ (-588 (-588 $)))) (-15 -1826 ($ $ $)) (-15 -3763 ($ $)) (-15 -3763 ($ $ $)) (-15 -1356 ($ $ $)) (-15 -3174 ($ $ $)) (-15 -3849 ($ $ $)) (-15 -2651 ($ $ $)) (-15 -2731 ($ $ (-708))) (-15 -1591 ($ $ $)) (-15 -1949 ($ $ $)) (-15 -2934 ($ $ $)) (-15 -2482 ($ $ $)) (-15 -2736 ($ $ $)) (-15 -4039 ($ $ (-588 $))) (-15 -3537 ($ $ (-588 $))) (-15 -3806 ($ $)) (-15 -4024 ($ $)) (-15 -4024 ($ $ (-708))) (-15 -3909 ($ $)) (-15 -3909 ($ $ (-708))) (-15 -3932 ($ $)) (-15 -3415 ($ $ $)) (-15 -3640 ($ $)) (-15 -3640 ($ $ $)) (-15 -3640 ($ $ $ $)) (-15 -2592 ($ $)) (-15 -2592 ($ $ $)) (-15 -2592 ($ $ $ $)) (-15 -4149 ($ $)) (-15 -4149 ($ $ $)) (-15 -4149 ($ $ $ $)) (-15 -3482 ($ $)) (-15 -3482 ($ (-588 $))) (-15 -2394 ($ $)) (-15 -2394 ($ (-588 $))) (-15 -2930 ($ $)) (-15 -2930 ($ (-588 $))) (-15 -3414 ($ (-588 $))) (-15 -2043 ($ (-588 $))) (-15 -3273 ($ (-588 $))) (-15 -3801 ($ (-588 $))) (-15 -1562 ($ $ $)) (-15 -2488 ($ $ $)) (-15 -1587 ($ $ $)) (-15 -1597 ($ $ $)) (-15 -1609 ($ $ $)) (-15 -1623 ($ $ $)) (-15 -1661 ($ $ $)) (-15 -1672 ($ $ $)) (-15 -1672 ($ $)) (-15 * ($ $ $)) (-15 -1682 ($ $ $)) (-15 ** ($ $ $)) (-15 -2289 ($ $ $)) (-15 -2333 ($ $ $)) (-15 -2303 ($ $ $)) (-15 -2276 ($ $ $)) (-15 -4079 ($ $ $)) (-15 -4070 ($ $ $)) (-15 -2473 ($ $)) (-15 -1752 ($ $ $)) (-15 -1752 ($ $))))
+((-1492 (((-1171) (-588 (-51))) 24)) (-1637 (((-1171) (-1068) (-792)) 14) (((-1171) (-792)) 9) (((-1171) (-1068)) 11)))
+(((-793) (-10 -7 (-15 -1637 ((-1171) (-1068))) (-15 -1637 ((-1171) (-792))) (-15 -1637 ((-1171) (-1068) (-792))) (-15 -1492 ((-1171) (-588 (-51)))))) (T -793))
+((-1492 (*1 *2 *3) (-12 (-5 *3 (-588 (-51))) (-5 *2 (-1171)) (-5 *1 (-793)))) (-1637 (*1 *2 *3 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-792)) (-5 *2 (-1171)) (-5 *1 (-793)))) (-1637 (*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-793)))) (-1637 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-793)))))
+(-10 -7 (-15 -1637 ((-1171) (-1068))) (-15 -1637 ((-1171) (-792))) (-15 -1637 ((-1171) (-1068) (-792))) (-15 -1492 ((-1171) (-588 (-51)))))
+((-1419 (((-108) $ $) NIL)) (-1660 (((-3 $ "failed") (-1085)) 32)) (-1685 (((-708)) 30)) (-3344 (($) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-1475 (((-850) $) 28)) (-2311 (((-1068) $) 38)) (-2882 (($ (-850)) 27)) (-4174 (((-1032) $) NIL)) (-3873 (((-1085) $) 13) (((-498) $) 19) (((-821 (-354)) $) 25) (((-821 (-522)) $) 22)) (-2217 (((-792) $) 16)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 35)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 34)))
+(((-794 |#1|) (-13 (-778) (-563 (-1085)) (-563 (-498)) (-563 (-821 (-354))) (-563 (-821 (-522))) (-10 -8 (-15 -1660 ((-3 $ "failed") (-1085))))) (-588 (-1085))) (T -794))
+((-1660 (*1 *1 *2) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-794 *3)) (-14 *3 (-588 *2)))))
+(-13 (-778) (-563 (-1085)) (-563 (-498)) (-563 (-821 (-354))) (-563 (-821 (-522))) (-10 -8 (-15 -1660 ((-3 $ "failed") (-1085)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) NIL)) (-2859 (((-108) $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (((-881 |#1|) $) NIL) (($ (-881 |#1|)) NIL) (($ |#1|) NIL (|has| |#1| (-157)))) (-2742 (((-708)) NIL)) (-3860 (((-1171) (-708)) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1682 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-157))) (($ $ |#1|) NIL (|has| |#1| (-157)))))
+(((-795 |#1| |#2| |#3| |#4|) (-13 (-971) (-10 -8 (IF (|has| |#1| (-157)) (-6 (-37 |#1|)) |%noBranch|) (-15 -2217 ((-881 |#1|) $)) (-15 -2217 ($ (-881 |#1|))) (IF (|has| |#1| (-338)) (-15 -1682 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3860 ((-1171) (-708))))) (-971) (-588 (-1085)) (-588 (-708)) (-708)) (T -795))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-881 *3)) (-5 *1 (-795 *3 *4 *5 *6)) (-4 *3 (-971)) (-14 *4 (-588 (-1085))) (-14 *5 (-588 (-708))) (-14 *6 (-708)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-881 *3)) (-4 *3 (-971)) (-5 *1 (-795 *3 *4 *5 *6)) (-14 *4 (-588 (-1085))) (-14 *5 (-588 (-708))) (-14 *6 (-708)))) (-1682 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-795 *2 *3 *4 *5)) (-4 *2 (-338)) (-4 *2 (-971)) (-14 *3 (-588 (-1085))) (-14 *4 (-588 (-708))) (-14 *5 (-708)))) (-3860 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-795 *4 *5 *6 *7)) (-4 *4 (-971)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 *3)) (-14 *7 *3))))
+(-13 (-971) (-10 -8 (IF (|has| |#1| (-157)) (-6 (-37 |#1|)) |%noBranch|) (-15 -2217 ((-881 |#1|) $)) (-15 -2217 ($ (-881 |#1|))) (IF (|has| |#1| (-338)) (-15 -1682 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3860 ((-1171) (-708)))))
+((-1401 (((-3 (-158 |#3|) "failed") (-708) (-708) |#2| |#2|) 31)) (-3456 (((-3 (-382 |#3|) "failed") (-708) (-708) |#2| |#2|) 24)))
+(((-796 |#1| |#2| |#3|) (-10 -7 (-15 -3456 ((-3 (-382 |#3|) "failed") (-708) (-708) |#2| |#2|)) (-15 -1401 ((-3 (-158 |#3|) "failed") (-708) (-708) |#2| |#2|))) (-338) (-1157 |#1|) (-1142 |#1|)) (T -796))
+((-1401 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-708)) (-4 *5 (-338)) (-5 *2 (-158 *6)) (-5 *1 (-796 *5 *4 *6)) (-4 *4 (-1157 *5)) (-4 *6 (-1142 *5)))) (-3456 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-708)) (-4 *5 (-338)) (-5 *2 (-382 *6)) (-5 *1 (-796 *5 *4 *6)) (-4 *4 (-1157 *5)) (-4 *6 (-1142 *5)))))
+(-10 -7 (-15 -3456 ((-3 (-382 |#3|) "failed") (-708) (-708) |#2| |#2|)) (-15 -1401 ((-3 (-158 |#3|) "failed") (-708) (-708) |#2| |#2|)))
+((-3456 (((-3 (-382 (-1139 |#2| |#1|)) "failed") (-708) (-708) (-1158 |#1| |#2| |#3|)) 28) (((-3 (-382 (-1139 |#2| |#1|)) "failed") (-708) (-708) (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|)) 26)))
+(((-797 |#1| |#2| |#3|) (-10 -7 (-15 -3456 ((-3 (-382 (-1139 |#2| |#1|)) "failed") (-708) (-708) (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|))) (-15 -3456 ((-3 (-382 (-1139 |#2| |#1|)) "failed") (-708) (-708) (-1158 |#1| |#2| |#3|)))) (-338) (-1085) |#1|) (T -797))
+((-3456 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-708)) (-5 *4 (-1158 *5 *6 *7)) (-4 *5 (-338)) (-14 *6 (-1085)) (-14 *7 *5) (-5 *2 (-382 (-1139 *6 *5))) (-5 *1 (-797 *5 *6 *7)))) (-3456 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-708)) (-5 *4 (-1158 *5 *6 *7)) (-4 *5 (-338)) (-14 *6 (-1085)) (-14 *7 *5) (-5 *2 (-382 (-1139 *6 *5))) (-5 *1 (-797 *5 *6 *7)))))
+(-10 -7 (-15 -3456 ((-3 (-382 (-1139 |#2| |#1|)) "failed") (-708) (-708) (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|))) (-15 -3456 ((-3 (-382 (-1139 |#2| |#1|)) "failed") (-708) (-708) (-1158 |#1| |#2| |#3|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-2016 (($ $ (-522)) 62)) (-2805 (((-108) $ $) 59)) (-3367 (($) 17 T CONST)) (-3763 (($ (-1081 (-522)) (-522)) 61)) (-2333 (($ $ $) 55)) (-3920 (((-3 $ "failed") $) 34)) (-3606 (($ $) 64)) (-2303 (($ $ $) 56)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-3872 (((-708) $) 69)) (-2859 (((-108) $) 31)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-1246 (((-522)) 66)) (-3316 (((-522) $) 65)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-3934 (($ $ (-522)) 68)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-4031 (((-708) $) 58)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57)) (-3353 (((-1066 (-522)) $) 70)) (-1944 (($ $) 67)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-3996 (((-522) $ (-522)) 63)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-798 |#1|) (-1197) (-522)) (T -798))
-((-2615 (*1 *2 *1) (-12 (-4 *1 (-798 *3)) (-5 *2 (-1066 (-522))))) (-3714 (*1 *2 *1) (-12 (-4 *1 (-798 *3)) (-5 *2 (-708)))) (-3719 (*1 *1 *1 *2) (-12 (-4 *1 (-798 *3)) (-5 *2 (-522)))) (-1522 (*1 *1 *1) (-4 *1 (-798 *2))) (-3010 (*1 *2) (-12 (-4 *1 (-798 *3)) (-5 *2 (-522)))) (-1337 (*1 *2 *1) (-12 (-4 *1 (-798 *3)) (-5 *2 (-522)))) (-1573 (*1 *1 *1) (-4 *1 (-798 *2))) (-3898 (*1 *2 *1 *2) (-12 (-4 *1 (-798 *3)) (-5 *2 (-522)))) (-1929 (*1 *1 *1 *2) (-12 (-4 *1 (-798 *3)) (-5 *2 (-522)))) (-1799 (*1 *1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *3 (-522)) (-4 *1 (-798 *4)))))
-(-13 (-283) (-135) (-10 -8 (-15 -2615 ((-1066 (-522)) $)) (-15 -3714 ((-708) $)) (-15 -3719 ($ $ (-522))) (-15 -1522 ($ $)) (-15 -3010 ((-522))) (-15 -1337 ((-522) $)) (-15 -1573 ($ $)) (-15 -3898 ((-522) $ (-522))) (-15 -1929 ($ $ (-522))) (-15 -1799 ($ (-1081 (-522)) (-522)))))
+((-3353 (*1 *2 *1) (-12 (-4 *1 (-798 *3)) (-5 *2 (-1066 (-522))))) (-3872 (*1 *2 *1) (-12 (-4 *1 (-798 *3)) (-5 *2 (-708)))) (-3934 (*1 *1 *1 *2) (-12 (-4 *1 (-798 *3)) (-5 *2 (-522)))) (-1944 (*1 *1 *1) (-4 *1 (-798 *2))) (-1246 (*1 *2) (-12 (-4 *1 (-798 *3)) (-5 *2 (-522)))) (-3316 (*1 *2 *1) (-12 (-4 *1 (-798 *3)) (-5 *2 (-522)))) (-3606 (*1 *1 *1) (-4 *1 (-798 *2))) (-3996 (*1 *2 *1 *2) (-12 (-4 *1 (-798 *3)) (-5 *2 (-522)))) (-2016 (*1 *1 *1 *2) (-12 (-4 *1 (-798 *3)) (-5 *2 (-522)))) (-3763 (*1 *1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *3 (-522)) (-4 *1 (-798 *4)))))
+(-13 (-283) (-135) (-10 -8 (-15 -3353 ((-1066 (-522)) $)) (-15 -3872 ((-708) $)) (-15 -3934 ($ $ (-522))) (-15 -1944 ($ $)) (-15 -1246 ((-522))) (-15 -3316 ((-522) $)) (-15 -3606 ($ $)) (-15 -3996 ((-522) $ (-522))) (-15 -2016 ($ $ (-522))) (-15 -3763 ($ (-1081 (-522)) (-522)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-135) . T) ((-562 (-792)) . T) ((-157) . T) ((-266) . T) ((-283) . T) ((-426) . T) ((-514) . T) ((-590 $) . T) ((-655 $) . T) ((-664) . T) ((-849) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1929 (($ $ (-522)) NIL)) (-1687 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-1799 (($ (-1081 (-522)) (-522)) NIL)) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-1573 (($ $) NIL)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-3714 (((-708) $) NIL)) (-2782 (((-108) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3010 (((-522)) NIL)) (-1337 (((-522) $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3719 (($ $ (-522)) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2615 (((-1066 (-522)) $) NIL)) (-1522 (($ $) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL)) (-2323 (((-708)) NIL)) (-3958 (((-108) $ $) NIL)) (-3898 (((-522) $ (-522)) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2016 (($ $ (-522)) NIL)) (-2805 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-3763 (($ (-1081 (-522)) (-522)) NIL)) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3606 (($ $) NIL)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-3872 (((-708) $) NIL)) (-2859 (((-108) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1246 (((-522)) NIL)) (-3316 (((-522) $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3934 (($ $ (-522)) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-3353 (((-1066 (-522)) $) NIL)) (-1944 (($ $) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL)) (-2742 (((-708)) NIL)) (-1407 (((-108) $ $) NIL)) (-3996 (((-522) $ (-522)) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL)))
(((-799 |#1|) (-798 |#1|) (-522)) (T -799))
NIL
(-798 |#1|)
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2229 (((-799 |#1|) $) NIL (|has| (-799 |#1|) (-283)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-799 |#1|) (-838)))) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-799 |#1|) (-838)))) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL (|has| (-799 |#1|) (-757)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-799 |#1|) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| (-799 |#1|) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-799 |#1|) (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| (-799 |#1|) (-962 (-522))))) (-1484 (((-799 |#1|) $) NIL) (((-1085) $) NIL (|has| (-799 |#1|) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-799 |#1|) (-962 (-522)))) (((-522) $) NIL (|has| (-799 |#1|) (-962 (-522))))) (-3701 (($ $) NIL) (($ (-522) $) NIL)) (-2277 (($ $ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| (-799 |#1|) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-799 |#1|) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-799 |#1|))) (|:| |vec| (-1166 (-799 |#1|)))) (-628 $) (-1166 $)) NIL) (((-628 (-799 |#1|)) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| (-799 |#1|) (-507)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-3687 (((-108) $) NIL (|has| (-799 |#1|) (-757)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-799 |#1|) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-799 |#1|) (-815 (-354))))) (-2782 (((-108) $) NIL)) (-2902 (($ $) NIL)) (-2805 (((-799 |#1|) $) NIL)) (-3004 (((-3 $ "failed") $) NIL (|has| (-799 |#1|) (-1061)))) (-2556 (((-108) $) NIL (|has| (-799 |#1|) (-757)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2814 (($ $ $) NIL (|has| (-799 |#1|) (-784)))) (-2446 (($ $ $) NIL (|has| (-799 |#1|) (-784)))) (-1391 (($ (-1 (-799 |#1|) (-799 |#1|)) $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| (-799 |#1|) (-1061)) CONST)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3933 (($ $) NIL (|has| (-799 |#1|) (-283)))) (-3686 (((-799 |#1|) $) NIL (|has| (-799 |#1|) (-507)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-799 |#1|) (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-799 |#1|) (-838)))) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2289 (($ $ (-588 (-799 |#1|)) (-588 (-799 |#1|))) NIL (|has| (-799 |#1|) (-285 (-799 |#1|)))) (($ $ (-799 |#1|) (-799 |#1|)) NIL (|has| (-799 |#1|) (-285 (-799 |#1|)))) (($ $ (-270 (-799 |#1|))) NIL (|has| (-799 |#1|) (-285 (-799 |#1|)))) (($ $ (-588 (-270 (-799 |#1|)))) NIL (|has| (-799 |#1|) (-285 (-799 |#1|)))) (($ $ (-588 (-1085)) (-588 (-799 |#1|))) NIL (|has| (-799 |#1|) (-483 (-1085) (-799 |#1|)))) (($ $ (-1085) (-799 |#1|)) NIL (|has| (-799 |#1|) (-483 (-1085) (-799 |#1|))))) (-3730 (((-708) $) NIL)) (-2545 (($ $ (-799 |#1|)) NIL (|has| (-799 |#1|) (-262 (-799 |#1|) (-799 |#1|))))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2157 (($ $) NIL (|has| (-799 |#1|) (-210))) (($ $ (-708)) NIL (|has| (-799 |#1|) (-210))) (($ $ (-1085)) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-1 (-799 |#1|) (-799 |#1|)) (-708)) NIL) (($ $ (-1 (-799 |#1|) (-799 |#1|))) NIL)) (-3533 (($ $) NIL)) (-2816 (((-799 |#1|) $) NIL)) (-1431 (((-821 (-522)) $) NIL (|has| (-799 |#1|) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-799 |#1|) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-799 |#1|) (-563 (-498)))) (((-354) $) NIL (|has| (-799 |#1|) (-947))) (((-202) $) NIL (|has| (-799 |#1|) (-947)))) (-2702 (((-158 (-382 (-522))) $) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-799 |#1|) (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-799 |#1|)) NIL) (($ (-1085)) NIL (|has| (-799 |#1|) (-962 (-1085))))) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| (-799 |#1|) (-838))) (|has| (-799 |#1|) (-133))))) (-2323 (((-708)) NIL)) (-3025 (((-799 |#1|) $) NIL (|has| (-799 |#1|) (-507)))) (-3958 (((-108) $ $) NIL)) (-3898 (((-382 (-522)) $ (-522)) NIL)) (-2241 (($ $) NIL (|has| (-799 |#1|) (-757)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $) NIL (|has| (-799 |#1|) (-210))) (($ $ (-708)) NIL (|has| (-799 |#1|) (-210))) (($ $ (-1085)) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-1 (-799 |#1|) (-799 |#1|)) (-708)) NIL) (($ $ (-1 (-799 |#1|) (-799 |#1|))) NIL)) (-1574 (((-108) $ $) NIL (|has| (-799 |#1|) (-784)))) (-1558 (((-108) $ $) NIL (|has| (-799 |#1|) (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| (-799 |#1|) (-784)))) (-1549 (((-108) $ $) NIL (|has| (-799 |#1|) (-784)))) (-1620 (($ $ $) NIL) (($ (-799 |#1|) (-799 |#1|)) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-799 |#1|) $) NIL) (($ $ (-799 |#1|)) NIL)))
-(((-800 |#1|) (-13 (-919 (-799 |#1|)) (-10 -8 (-15 -3898 ((-382 (-522)) $ (-522))) (-15 -2702 ((-158 (-382 (-522))) $)) (-15 -3701 ($ $)) (-15 -3701 ($ (-522) $)))) (-522)) (T -800))
-((-3898 (*1 *2 *1 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-800 *4)) (-14 *4 *3) (-5 *3 (-522)))) (-2702 (*1 *2 *1) (-12 (-5 *2 (-158 (-382 (-522)))) (-5 *1 (-800 *3)) (-14 *3 (-522)))) (-3701 (*1 *1 *1) (-12 (-5 *1 (-800 *2)) (-14 *2 (-522)))) (-3701 (*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-800 *3)) (-14 *3 *2))))
-(-13 (-919 (-799 |#1|)) (-10 -8 (-15 -3898 ((-382 (-522)) $ (-522))) (-15 -2702 ((-158 (-382 (-522))) $)) (-15 -3701 ($ $)) (-15 -3701 ($ (-522) $))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2229 ((|#2| $) NIL (|has| |#2| (-283)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL (|has| |#2| (-757)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#2| "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| |#2| (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522))))) (-1484 ((|#2| $) NIL) (((-1085) $) NIL (|has| |#2| (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-522)))) (((-522) $) NIL (|has| |#2| (-962 (-522))))) (-3701 (($ $) 31) (($ (-522) $) 32)) (-2277 (($ $ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) 53)) (-3255 (($) NIL (|has| |#2| (-507)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-3687 (((-108) $) NIL (|has| |#2| (-757)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| |#2| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| |#2| (-815 (-354))))) (-2782 (((-108) $) NIL)) (-2902 (($ $) NIL)) (-2805 ((|#2| $) NIL)) (-3004 (((-3 $ "failed") $) NIL (|has| |#2| (-1061)))) (-2556 (((-108) $) NIL (|has| |#2| (-757)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2814 (($ $ $) NIL (|has| |#2| (-784)))) (-2446 (($ $ $) NIL (|has| |#2| (-784)))) (-1391 (($ (-1 |#2| |#2|) $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 49)) (-3802 (($) NIL (|has| |#2| (-1061)) CONST)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3933 (($ $) NIL (|has| |#2| (-283)))) (-3686 ((|#2| $) NIL (|has| |#2| (-507)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2289 (($ $ (-588 |#2|) (-588 |#2|)) NIL (|has| |#2| (-285 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-285 |#2|))) (($ $ (-270 |#2|)) NIL (|has| |#2| (-285 |#2|))) (($ $ (-588 (-270 |#2|))) NIL (|has| |#2| (-285 |#2|))) (($ $ (-588 (-1085)) (-588 |#2|)) NIL (|has| |#2| (-483 (-1085) |#2|))) (($ $ (-1085) |#2|) NIL (|has| |#2| (-483 (-1085) |#2|)))) (-3730 (((-708) $) NIL)) (-2545 (($ $ |#2|) NIL (|has| |#2| (-262 |#2| |#2|)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2157 (($ $) NIL (|has| |#2| (-210))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-3533 (($ $) NIL)) (-2816 ((|#2| $) NIL)) (-1431 (((-821 (-522)) $) NIL (|has| |#2| (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| |#2| (-563 (-821 (-354))))) (((-498) $) NIL (|has| |#2| (-563 (-498)))) (((-354) $) NIL (|has| |#2| (-947))) (((-202) $) NIL (|has| |#2| (-947)))) (-2702 (((-158 (-382 (-522))) $) 68)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838))))) (-2190 (((-792) $) 86) (($ (-522)) 19) (($ $) NIL) (($ (-382 (-522))) 24) (($ |#2|) 18) (($ (-1085)) NIL (|has| |#2| (-962 (-1085))))) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#2| (-133))))) (-2323 (((-708)) NIL)) (-3025 ((|#2| $) NIL (|has| |#2| (-507)))) (-3958 (((-108) $ $) NIL)) (-3898 (((-382 (-522)) $ (-522)) 60)) (-2241 (($ $) NIL (|has| |#2| (-757)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 14 T CONST)) (-3577 (($) 16 T CONST)) (-2213 (($ $) NIL (|has| |#2| (-210))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1574 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1531 (((-108) $ $) 35)) (-1566 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1620 (($ $ $) 23) (($ |#2| |#2|) 54)) (-1612 (($ $) 39) (($ $ $) 41)) (-1602 (($ $ $) 37)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 50)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 42) (($ $ $) 44) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ |#2| $) 55) (($ $ |#2|) NIL)))
-(((-801 |#1| |#2|) (-13 (-919 |#2|) (-10 -8 (-15 -3898 ((-382 (-522)) $ (-522))) (-15 -2702 ((-158 (-382 (-522))) $)) (-15 -3701 ($ $)) (-15 -3701 ($ (-522) $)))) (-522) (-798 |#1|)) (T -801))
-((-3898 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-382 (-522))) (-5 *1 (-801 *4 *5)) (-5 *3 (-522)) (-4 *5 (-798 *4)))) (-2702 (*1 *2 *1) (-12 (-14 *3 (-522)) (-5 *2 (-158 (-382 (-522)))) (-5 *1 (-801 *3 *4)) (-4 *4 (-798 *3)))) (-3701 (*1 *1 *1) (-12 (-14 *2 (-522)) (-5 *1 (-801 *2 *3)) (-4 *3 (-798 *2)))) (-3701 (*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-14 *3 *2) (-5 *1 (-801 *3 *4)) (-4 *4 (-798 *3)))))
-(-13 (-919 |#2|) (-10 -8 (-15 -3898 ((-382 (-522)) $ (-522))) (-15 -2702 ((-158 (-382 (-522))) $)) (-15 -3701 ($ $)) (-15 -3701 ($ (-522) $))))
-((-1416 (((-108) $ $) NIL (-12 (|has| |#1| (-1014)) (|has| |#2| (-1014))))) (-2081 ((|#2| $) 12)) (-2751 (($ |#1| |#2|) 9)) (-2385 (((-1068) $) NIL (-12 (|has| |#1| (-1014)) (|has| |#2| (-1014))))) (-4151 (((-1032) $) NIL (-12 (|has| |#1| (-1014)) (|has| |#2| (-1014))))) (-2294 ((|#1| $) 11)) (-2201 (($ |#1| |#2|) 10)) (-2190 (((-792) $) 18 (-3708 (-12 (|has| |#1| (-562 (-792))) (|has| |#2| (-562 (-792)))) (-12 (|has| |#1| (-1014)) (|has| |#2| (-1014)))))) (-1531 (((-108) $ $) 22 (-12 (|has| |#1| (-1014)) (|has| |#2| (-1014))))))
-(((-802 |#1| |#2|) (-13 (-1120) (-10 -8 (IF (|has| |#1| (-562 (-792))) (IF (|has| |#2| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1014)) (IF (|has| |#2| (-1014)) (-6 (-1014)) |%noBranch|) |%noBranch|) (-15 -2751 ($ |#1| |#2|)) (-15 -2201 ($ |#1| |#2|)) (-15 -2294 (|#1| $)) (-15 -2081 (|#2| $)))) (-1120) (-1120)) (T -802))
-((-2751 (*1 *1 *2 *3) (-12 (-5 *1 (-802 *2 *3)) (-4 *2 (-1120)) (-4 *3 (-1120)))) (-2201 (*1 *1 *2 *3) (-12 (-5 *1 (-802 *2 *3)) (-4 *2 (-1120)) (-4 *3 (-1120)))) (-2294 (*1 *2 *1) (-12 (-4 *2 (-1120)) (-5 *1 (-802 *2 *3)) (-4 *3 (-1120)))) (-2081 (*1 *2 *1) (-12 (-4 *2 (-1120)) (-5 *1 (-802 *3 *2)) (-4 *3 (-1120)))))
-(-13 (-1120) (-10 -8 (IF (|has| |#1| (-562 (-792))) (IF (|has| |#2| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1014)) (IF (|has| |#2| (-1014)) (-6 (-1014)) |%noBranch|) |%noBranch|) (-15 -2751 ($ |#1| |#2|)) (-15 -2201 ($ |#1| |#2|)) (-15 -2294 (|#1| $)) (-15 -2081 (|#2| $))))
-((-1416 (((-108) $ $) NIL)) (-3455 (((-522) $) 15)) (-2508 (($ (-143)) 11)) (-3526 (($ (-143)) 12)) (-2385 (((-1068) $) NIL)) (-3912 (((-143) $) 13)) (-4151 (((-1032) $) NIL)) (-2617 (($ (-143)) 9)) (-4121 (($ (-143)) 8)) (-2190 (((-792) $) 23) (($ (-143)) 16)) (-2239 (($ (-143)) 10)) (-1531 (((-108) $ $) NIL)))
-(((-803) (-13 (-1014) (-10 -8 (-15 -4121 ($ (-143))) (-15 -2617 ($ (-143))) (-15 -2239 ($ (-143))) (-15 -2508 ($ (-143))) (-15 -3526 ($ (-143))) (-15 -3912 ((-143) $)) (-15 -3455 ((-522) $)) (-15 -2190 ($ (-143)))))) (T -803))
-((-4121 (*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))) (-2617 (*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))) (-2239 (*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))) (-2508 (*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))) (-3526 (*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))) (-3912 (*1 *2 *1) (-12 (-5 *2 (-143)) (-5 *1 (-803)))) (-3455 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-803)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))))
-(-13 (-1014) (-10 -8 (-15 -4121 ($ (-143))) (-15 -2617 ($ (-143))) (-15 -2239 ($ (-143))) (-15 -2508 ($ (-143))) (-15 -3526 ($ (-143))) (-15 -3912 ((-143) $)) (-15 -3455 ((-522) $)) (-15 -2190 ($ (-143)))))
-((-2190 (((-291 (-522)) (-382 (-881 (-47)))) 21) (((-291 (-522)) (-881 (-47))) 16)))
-(((-804) (-10 -7 (-15 -2190 ((-291 (-522)) (-881 (-47)))) (-15 -2190 ((-291 (-522)) (-382 (-881 (-47))))))) (T -804))
-((-2190 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 (-47)))) (-5 *2 (-291 (-522))) (-5 *1 (-804)))) (-2190 (*1 *2 *3) (-12 (-5 *3 (-881 (-47))) (-5 *2 (-291 (-522))) (-5 *1 (-804)))))
-(-10 -7 (-15 -2190 ((-291 (-522)) (-881 (-47)))) (-15 -2190 ((-291 (-522)) (-382 (-881 (-47))))))
-((-1391 (((-806 |#2|) (-1 |#2| |#1|) (-806 |#1|)) 14)))
-(((-805 |#1| |#2|) (-10 -7 (-15 -1391 ((-806 |#2|) (-1 |#2| |#1|) (-806 |#1|)))) (-1120) (-1120)) (T -805))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-806 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-806 *6)) (-5 *1 (-805 *5 *6)))))
-(-10 -7 (-15 -1391 ((-806 |#2|) (-1 |#2| |#1|) (-806 |#1|))))
-((-2616 (($ |#1| |#1|) 8)) (-1714 ((|#1| $ (-708)) 10)))
-(((-806 |#1|) (-10 -8 (-15 -2616 ($ |#1| |#1|)) (-15 -1714 (|#1| $ (-708)))) (-1120)) (T -806))
-((-1714 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-806 *2)) (-4 *2 (-1120)))) (-2616 (*1 *1 *2 *2) (-12 (-5 *1 (-806 *2)) (-4 *2 (-1120)))))
-(-10 -8 (-15 -2616 ($ |#1| |#1|)) (-15 -1714 (|#1| $ (-708))))
-((-1391 (((-808 |#2|) (-1 |#2| |#1|) (-808 |#1|)) 14)))
-(((-807 |#1| |#2|) (-10 -7 (-15 -1391 ((-808 |#2|) (-1 |#2| |#1|) (-808 |#1|)))) (-1120) (-1120)) (T -807))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-808 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-808 *6)) (-5 *1 (-807 *5 *6)))))
-(-10 -7 (-15 -1391 ((-808 |#2|) (-1 |#2| |#1|) (-808 |#1|))))
-((-2616 (($ |#1| |#1| |#1|) 8)) (-1714 ((|#1| $ (-708)) 10)))
-(((-808 |#1|) (-10 -8 (-15 -2616 ($ |#1| |#1| |#1|)) (-15 -1714 (|#1| $ (-708)))) (-1120)) (T -808))
-((-1714 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-808 *2)) (-4 *2 (-1120)))) (-2616 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-808 *2)) (-4 *2 (-1120)))))
-(-10 -8 (-15 -2616 ($ |#1| |#1| |#1|)) (-15 -1714 (|#1| $ (-708))))
-((-1685 (((-588 (-1090)) (-1068)) 8)))
-(((-809) (-10 -7 (-15 -1685 ((-588 (-1090)) (-1068))))) (T -809))
-((-1685 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-588 (-1090))) (-5 *1 (-809)))))
-(-10 -7 (-15 -1685 ((-588 (-1090)) (-1068))))
-((-1391 (((-811 |#2|) (-1 |#2| |#1|) (-811 |#1|)) 14)))
-(((-810 |#1| |#2|) (-10 -7 (-15 -1391 ((-811 |#2|) (-1 |#2| |#1|) (-811 |#1|)))) (-1120) (-1120)) (T -810))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-811 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-811 *6)) (-5 *1 (-810 *5 *6)))))
-(-10 -7 (-15 -1391 ((-811 |#2|) (-1 |#2| |#1|) (-811 |#1|))))
-((-2295 (($ |#1| |#1| |#1|) 8)) (-1714 ((|#1| $ (-708)) 10)))
-(((-811 |#1|) (-10 -8 (-15 -2295 ($ |#1| |#1| |#1|)) (-15 -1714 (|#1| $ (-708)))) (-1120)) (T -811))
-((-1714 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-811 *2)) (-4 *2 (-1120)))) (-2295 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-811 *2)) (-4 *2 (-1120)))))
-(-10 -8 (-15 -2295 ($ |#1| |#1| |#1|)) (-15 -1714 (|#1| $ (-708))))
-((-1765 (((-1066 (-588 (-522))) (-588 (-522)) (-1066 (-588 (-522)))) 32)) (-3140 (((-1066 (-588 (-522))) (-588 (-522)) (-588 (-522))) 28)) (-3563 (((-1066 (-588 (-522))) (-588 (-522))) 41) (((-1066 (-588 (-522))) (-588 (-522)) (-588 (-522))) 40)) (-1833 (((-1066 (-588 (-522))) (-522)) 42)) (-3408 (((-1066 (-588 (-522))) (-522) (-522)) 22) (((-1066 (-588 (-522))) (-522)) 16) (((-1066 (-588 (-522))) (-522) (-522) (-522)) 12)) (-2447 (((-1066 (-588 (-522))) (-1066 (-588 (-522)))) 26)) (-3122 (((-588 (-522)) (-588 (-522))) 25)))
-(((-812) (-10 -7 (-15 -3408 ((-1066 (-588 (-522))) (-522) (-522) (-522))) (-15 -3408 ((-1066 (-588 (-522))) (-522))) (-15 -3408 ((-1066 (-588 (-522))) (-522) (-522))) (-15 -3122 ((-588 (-522)) (-588 (-522)))) (-15 -2447 ((-1066 (-588 (-522))) (-1066 (-588 (-522))))) (-15 -3140 ((-1066 (-588 (-522))) (-588 (-522)) (-588 (-522)))) (-15 -1765 ((-1066 (-588 (-522))) (-588 (-522)) (-1066 (-588 (-522))))) (-15 -3563 ((-1066 (-588 (-522))) (-588 (-522)) (-588 (-522)))) (-15 -3563 ((-1066 (-588 (-522))) (-588 (-522)))) (-15 -1833 ((-1066 (-588 (-522))) (-522))))) (T -812))
-((-1833 (*1 *2 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522)))) (-3563 (*1 *2 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-588 (-522))))) (-3563 (*1 *2 *3 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-588 (-522))))) (-1765 (*1 *2 *3 *2) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *3 (-588 (-522))) (-5 *1 (-812)))) (-3140 (*1 *2 *3 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-588 (-522))))) (-2447 (*1 *2 *2) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)))) (-3122 (*1 *2 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-812)))) (-3408 (*1 *2 *3 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522)))) (-3408 (*1 *2 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522)))) (-3408 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522)))))
-(-10 -7 (-15 -3408 ((-1066 (-588 (-522))) (-522) (-522) (-522))) (-15 -3408 ((-1066 (-588 (-522))) (-522))) (-15 -3408 ((-1066 (-588 (-522))) (-522) (-522))) (-15 -3122 ((-588 (-522)) (-588 (-522)))) (-15 -2447 ((-1066 (-588 (-522))) (-1066 (-588 (-522))))) (-15 -3140 ((-1066 (-588 (-522))) (-588 (-522)) (-588 (-522)))) (-15 -1765 ((-1066 (-588 (-522))) (-588 (-522)) (-1066 (-588 (-522))))) (-15 -3563 ((-1066 (-588 (-522))) (-588 (-522)) (-588 (-522)))) (-15 -3563 ((-1066 (-588 (-522))) (-588 (-522)))) (-15 -1833 ((-1066 (-588 (-522))) (-522))))
-((-1431 (((-821 (-354)) $) 9 (|has| |#1| (-563 (-821 (-354))))) (((-821 (-522)) $) 8 (|has| |#1| (-563 (-821 (-522)))))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3049 (((-799 |#1|) $) NIL (|has| (-799 |#1|) (-283)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-799 |#1|) (-838)))) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-799 |#1|) (-838)))) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL (|has| (-799 |#1|) (-757)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-799 |#1|) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| (-799 |#1|) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-799 |#1|) (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| (-799 |#1|) (-962 (-522))))) (-1478 (((-799 |#1|) $) NIL) (((-1085) $) NIL (|has| (-799 |#1|) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-799 |#1|) (-962 (-522)))) (((-522) $) NIL (|has| (-799 |#1|) (-962 (-522))))) (-3734 (($ $) NIL) (($ (-522) $) NIL)) (-2333 (($ $ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| (-799 |#1|) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-799 |#1|) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-799 |#1|))) (|:| |vec| (-1166 (-799 |#1|)))) (-628 $) (-1166 $)) NIL) (((-628 (-799 |#1|)) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| (-799 |#1|) (-507)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3603 (((-108) $) NIL (|has| (-799 |#1|) (-757)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-799 |#1|) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-799 |#1|) (-815 (-354))))) (-2859 (((-108) $) NIL)) (-1558 (($ $) NIL)) (-2947 (((-799 |#1|) $) NIL)) (-4208 (((-3 $ "failed") $) NIL (|has| (-799 |#1|) (-1061)))) (-3740 (((-108) $) NIL (|has| (-799 |#1|) (-757)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1308 (($ $ $) NIL (|has| (-799 |#1|) (-784)))) (-2524 (($ $ $) NIL (|has| (-799 |#1|) (-784)))) (-3810 (($ (-1 (-799 |#1|) (-799 |#1|)) $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| (-799 |#1|) (-1061)) CONST)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4194 (($ $) NIL (|has| (-799 |#1|) (-283)))) (-3592 (((-799 |#1|) $) NIL (|has| (-799 |#1|) (-507)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-799 |#1|) (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-799 |#1|) (-838)))) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2330 (($ $ (-588 (-799 |#1|)) (-588 (-799 |#1|))) NIL (|has| (-799 |#1|) (-285 (-799 |#1|)))) (($ $ (-799 |#1|) (-799 |#1|)) NIL (|has| (-799 |#1|) (-285 (-799 |#1|)))) (($ $ (-270 (-799 |#1|))) NIL (|has| (-799 |#1|) (-285 (-799 |#1|)))) (($ $ (-588 (-270 (-799 |#1|)))) NIL (|has| (-799 |#1|) (-285 (-799 |#1|)))) (($ $ (-588 (-1085)) (-588 (-799 |#1|))) NIL (|has| (-799 |#1|) (-483 (-1085) (-799 |#1|)))) (($ $ (-1085) (-799 |#1|)) NIL (|has| (-799 |#1|) (-483 (-1085) (-799 |#1|))))) (-4031 (((-708) $) NIL)) (-2683 (($ $ (-799 |#1|)) NIL (|has| (-799 |#1|) (-262 (-799 |#1|) (-799 |#1|))))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2731 (($ $) NIL (|has| (-799 |#1|) (-210))) (($ $ (-708)) NIL (|has| (-799 |#1|) (-210))) (($ $ (-1085)) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-1 (-799 |#1|) (-799 |#1|)) (-708)) NIL) (($ $ (-1 (-799 |#1|) (-799 |#1|))) NIL)) (-2762 (($ $) NIL)) (-2959 (((-799 |#1|) $) NIL)) (-3873 (((-821 (-522)) $) NIL (|has| (-799 |#1|) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-799 |#1|) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-799 |#1|) (-563 (-498)))) (((-354) $) NIL (|has| (-799 |#1|) (-947))) (((-202) $) NIL (|has| (-799 |#1|) (-947)))) (-1471 (((-158 (-382 (-522))) $) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-799 |#1|) (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL) (($ (-799 |#1|)) NIL) (($ (-1085)) NIL (|has| (-799 |#1|) (-962 (-1085))))) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| (-799 |#1|) (-838))) (|has| (-799 |#1|) (-133))))) (-2742 (((-708)) NIL)) (-1379 (((-799 |#1|) $) NIL (|has| (-799 |#1|) (-507)))) (-1407 (((-108) $ $) NIL)) (-3996 (((-382 (-522)) $ (-522)) NIL)) (-4126 (($ $) NIL (|has| (-799 |#1|) (-757)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $) NIL (|has| (-799 |#1|) (-210))) (($ $ (-708)) NIL (|has| (-799 |#1|) (-210))) (($ $ (-1085)) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-799 |#1|) (-829 (-1085)))) (($ $ (-1 (-799 |#1|) (-799 |#1|)) (-708)) NIL) (($ $ (-1 (-799 |#1|) (-799 |#1|))) NIL)) (-1623 (((-108) $ $) NIL (|has| (-799 |#1|) (-784)))) (-1597 (((-108) $ $) NIL (|has| (-799 |#1|) (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| (-799 |#1|) (-784)))) (-1587 (((-108) $ $) NIL (|has| (-799 |#1|) (-784)))) (-1682 (($ $ $) NIL) (($ (-799 |#1|) (-799 |#1|)) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-799 |#1|) $) NIL) (($ $ (-799 |#1|)) NIL)))
+(((-800 |#1|) (-13 (-919 (-799 |#1|)) (-10 -8 (-15 -3996 ((-382 (-522)) $ (-522))) (-15 -1471 ((-158 (-382 (-522))) $)) (-15 -3734 ($ $)) (-15 -3734 ($ (-522) $)))) (-522)) (T -800))
+((-3996 (*1 *2 *1 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-800 *4)) (-14 *4 *3) (-5 *3 (-522)))) (-1471 (*1 *2 *1) (-12 (-5 *2 (-158 (-382 (-522)))) (-5 *1 (-800 *3)) (-14 *3 (-522)))) (-3734 (*1 *1 *1) (-12 (-5 *1 (-800 *2)) (-14 *2 (-522)))) (-3734 (*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-800 *3)) (-14 *3 *2))))
+(-13 (-919 (-799 |#1|)) (-10 -8 (-15 -3996 ((-382 (-522)) $ (-522))) (-15 -1471 ((-158 (-382 (-522))) $)) (-15 -3734 ($ $)) (-15 -3734 ($ (-522) $))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3049 ((|#2| $) NIL (|has| |#2| (-283)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL (|has| |#2| (-757)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#2| "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (|has| |#2| (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522))))) (-1478 ((|#2| $) NIL) (((-1085) $) NIL (|has| |#2| (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-522)))) (((-522) $) NIL (|has| |#2| (-962 (-522))))) (-3734 (($ $) 31) (($ (-522) $) 32)) (-2333 (($ $ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) 53)) (-3344 (($) NIL (|has| |#2| (-507)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3603 (((-108) $) NIL (|has| |#2| (-757)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| |#2| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| |#2| (-815 (-354))))) (-2859 (((-108) $) NIL)) (-1558 (($ $) NIL)) (-2947 ((|#2| $) NIL)) (-4208 (((-3 $ "failed") $) NIL (|has| |#2| (-1061)))) (-3740 (((-108) $) NIL (|has| |#2| (-757)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1308 (($ $ $) NIL (|has| |#2| (-784)))) (-2524 (($ $ $) NIL (|has| |#2| (-784)))) (-3810 (($ (-1 |#2| |#2|) $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 49)) (-3937 (($) NIL (|has| |#2| (-1061)) CONST)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4194 (($ $) NIL (|has| |#2| (-283)))) (-3592 ((|#2| $) NIL (|has| |#2| (-507)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2330 (($ $ (-588 |#2|) (-588 |#2|)) NIL (|has| |#2| (-285 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-285 |#2|))) (($ $ (-270 |#2|)) NIL (|has| |#2| (-285 |#2|))) (($ $ (-588 (-270 |#2|))) NIL (|has| |#2| (-285 |#2|))) (($ $ (-588 (-1085)) (-588 |#2|)) NIL (|has| |#2| (-483 (-1085) |#2|))) (($ $ (-1085) |#2|) NIL (|has| |#2| (-483 (-1085) |#2|)))) (-4031 (((-708) $) NIL)) (-2683 (($ $ |#2|) NIL (|has| |#2| (-262 |#2| |#2|)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2731 (($ $) NIL (|has| |#2| (-210))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2762 (($ $) NIL)) (-2959 ((|#2| $) NIL)) (-3873 (((-821 (-522)) $) NIL (|has| |#2| (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| |#2| (-563 (-821 (-354))))) (((-498) $) NIL (|has| |#2| (-563 (-498)))) (((-354) $) NIL (|has| |#2| (-947))) (((-202) $) NIL (|has| |#2| (-947)))) (-1471 (((-158 (-382 (-522))) $) 68)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838))))) (-2217 (((-792) $) 86) (($ (-522)) 19) (($ $) NIL) (($ (-382 (-522))) 24) (($ |#2|) 18) (($ (-1085)) NIL (|has| |#2| (-962 (-1085))))) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#2| (-133))))) (-2742 (((-708)) NIL)) (-1379 ((|#2| $) NIL (|has| |#2| (-507)))) (-1407 (((-108) $ $) NIL)) (-3996 (((-382 (-522)) $ (-522)) 60)) (-4126 (($ $) NIL (|has| |#2| (-757)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 14 T CONST)) (-3709 (($) 16 T CONST)) (-2252 (($ $) NIL (|has| |#2| (-210))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1623 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1562 (((-108) $ $) 35)) (-1609 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1682 (($ $ $) 23) (($ |#2| |#2|) 54)) (-1672 (($ $) 39) (($ $ $) 41)) (-1661 (($ $ $) 37)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) 50)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 42) (($ $ $) 44) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ |#2| $) 55) (($ $ |#2|) NIL)))
+(((-801 |#1| |#2|) (-13 (-919 |#2|) (-10 -8 (-15 -3996 ((-382 (-522)) $ (-522))) (-15 -1471 ((-158 (-382 (-522))) $)) (-15 -3734 ($ $)) (-15 -3734 ($ (-522) $)))) (-522) (-798 |#1|)) (T -801))
+((-3996 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-382 (-522))) (-5 *1 (-801 *4 *5)) (-5 *3 (-522)) (-4 *5 (-798 *4)))) (-1471 (*1 *2 *1) (-12 (-14 *3 (-522)) (-5 *2 (-158 (-382 (-522)))) (-5 *1 (-801 *3 *4)) (-4 *4 (-798 *3)))) (-3734 (*1 *1 *1) (-12 (-14 *2 (-522)) (-5 *1 (-801 *2 *3)) (-4 *3 (-798 *2)))) (-3734 (*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-14 *3 *2) (-5 *1 (-801 *3 *4)) (-4 *4 (-798 *3)))))
+(-13 (-919 |#2|) (-10 -8 (-15 -3996 ((-382 (-522)) $ (-522))) (-15 -1471 ((-158 (-382 (-522))) $)) (-15 -3734 ($ $)) (-15 -3734 ($ (-522) $))))
+((-1419 (((-108) $ $) NIL (-12 (|has| |#1| (-1014)) (|has| |#2| (-1014))))) (-2116 ((|#2| $) 12)) (-2901 (($ |#1| |#2|) 9)) (-2311 (((-1068) $) NIL (-12 (|has| |#1| (-1014)) (|has| |#2| (-1014))))) (-4174 (((-1032) $) NIL (-12 (|has| |#1| (-1014)) (|has| |#2| (-1014))))) (-2337 ((|#1| $) 11)) (-2227 (($ |#1| |#2|) 10)) (-2217 (((-792) $) 18 (-3844 (-12 (|has| |#1| (-562 (-792))) (|has| |#2| (-562 (-792)))) (-12 (|has| |#1| (-1014)) (|has| |#2| (-1014)))))) (-1562 (((-108) $ $) 22 (-12 (|has| |#1| (-1014)) (|has| |#2| (-1014))))))
+(((-802 |#1| |#2|) (-13 (-1120) (-10 -8 (IF (|has| |#1| (-562 (-792))) (IF (|has| |#2| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1014)) (IF (|has| |#2| (-1014)) (-6 (-1014)) |%noBranch|) |%noBranch|) (-15 -2901 ($ |#1| |#2|)) (-15 -2227 ($ |#1| |#2|)) (-15 -2337 (|#1| $)) (-15 -2116 (|#2| $)))) (-1120) (-1120)) (T -802))
+((-2901 (*1 *1 *2 *3) (-12 (-5 *1 (-802 *2 *3)) (-4 *2 (-1120)) (-4 *3 (-1120)))) (-2227 (*1 *1 *2 *3) (-12 (-5 *1 (-802 *2 *3)) (-4 *2 (-1120)) (-4 *3 (-1120)))) (-2337 (*1 *2 *1) (-12 (-4 *2 (-1120)) (-5 *1 (-802 *2 *3)) (-4 *3 (-1120)))) (-2116 (*1 *2 *1) (-12 (-4 *2 (-1120)) (-5 *1 (-802 *3 *2)) (-4 *3 (-1120)))))
+(-13 (-1120) (-10 -8 (IF (|has| |#1| (-562 (-792))) (IF (|has| |#2| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1014)) (IF (|has| |#2| (-1014)) (-6 (-1014)) |%noBranch|) |%noBranch|) (-15 -2901 ($ |#1| |#2|)) (-15 -2227 ($ |#1| |#2|)) (-15 -2337 (|#1| $)) (-15 -2116 (|#2| $))))
+((-1419 (((-108) $ $) NIL)) (-3167 (((-522) $) 15)) (-2060 (($ (-143)) 11)) (-2658 (($ (-143)) 12)) (-2311 (((-1068) $) NIL)) (-2137 (((-143) $) 13)) (-4174 (((-1032) $) NIL)) (-2787 (($ (-143)) 9)) (-2455 (($ (-143)) 8)) (-2217 (((-792) $) 23) (($ (-143)) 16)) (-2272 (($ (-143)) 10)) (-1562 (((-108) $ $) NIL)))
+(((-803) (-13 (-1014) (-10 -8 (-15 -2455 ($ (-143))) (-15 -2787 ($ (-143))) (-15 -2272 ($ (-143))) (-15 -2060 ($ (-143))) (-15 -2658 ($ (-143))) (-15 -2137 ((-143) $)) (-15 -3167 ((-522) $)) (-15 -2217 ($ (-143)))))) (T -803))
+((-2455 (*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))) (-2787 (*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))) (-2272 (*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))) (-2060 (*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))) (-2658 (*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))) (-2137 (*1 *2 *1) (-12 (-5 *2 (-143)) (-5 *1 (-803)))) (-3167 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-803)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))))
+(-13 (-1014) (-10 -8 (-15 -2455 ($ (-143))) (-15 -2787 ($ (-143))) (-15 -2272 ($ (-143))) (-15 -2060 ($ (-143))) (-15 -2658 ($ (-143))) (-15 -2137 ((-143) $)) (-15 -3167 ((-522) $)) (-15 -2217 ($ (-143)))))
+((-2217 (((-291 (-522)) (-382 (-881 (-47)))) 21) (((-291 (-522)) (-881 (-47))) 16)))
+(((-804) (-10 -7 (-15 -2217 ((-291 (-522)) (-881 (-47)))) (-15 -2217 ((-291 (-522)) (-382 (-881 (-47))))))) (T -804))
+((-2217 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 (-47)))) (-5 *2 (-291 (-522))) (-5 *1 (-804)))) (-2217 (*1 *2 *3) (-12 (-5 *3 (-881 (-47))) (-5 *2 (-291 (-522))) (-5 *1 (-804)))))
+(-10 -7 (-15 -2217 ((-291 (-522)) (-881 (-47)))) (-15 -2217 ((-291 (-522)) (-382 (-881 (-47))))))
+((-3810 (((-806 |#2|) (-1 |#2| |#1|) (-806 |#1|)) 14)))
+(((-805 |#1| |#2|) (-10 -7 (-15 -3810 ((-806 |#2|) (-1 |#2| |#1|) (-806 |#1|)))) (-1120) (-1120)) (T -805))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-806 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-806 *6)) (-5 *1 (-805 *5 *6)))))
+(-10 -7 (-15 -3810 ((-806 |#2|) (-1 |#2| |#1|) (-806 |#1|))))
+((-3364 (($ |#1| |#1|) 8)) (-4217 ((|#1| $ (-708)) 10)))
+(((-806 |#1|) (-10 -8 (-15 -3364 ($ |#1| |#1|)) (-15 -4217 (|#1| $ (-708)))) (-1120)) (T -806))
+((-4217 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-806 *2)) (-4 *2 (-1120)))) (-3364 (*1 *1 *2 *2) (-12 (-5 *1 (-806 *2)) (-4 *2 (-1120)))))
+(-10 -8 (-15 -3364 ($ |#1| |#1|)) (-15 -4217 (|#1| $ (-708))))
+((-3810 (((-808 |#2|) (-1 |#2| |#1|) (-808 |#1|)) 14)))
+(((-807 |#1| |#2|) (-10 -7 (-15 -3810 ((-808 |#2|) (-1 |#2| |#1|) (-808 |#1|)))) (-1120) (-1120)) (T -807))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-808 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-808 *6)) (-5 *1 (-807 *5 *6)))))
+(-10 -7 (-15 -3810 ((-808 |#2|) (-1 |#2| |#1|) (-808 |#1|))))
+((-3364 (($ |#1| |#1| |#1|) 8)) (-4217 ((|#1| $ (-708)) 10)))
+(((-808 |#1|) (-10 -8 (-15 -3364 ($ |#1| |#1| |#1|)) (-15 -4217 (|#1| $ (-708)))) (-1120)) (T -808))
+((-4217 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-808 *2)) (-4 *2 (-1120)))) (-3364 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-808 *2)) (-4 *2 (-1120)))))
+(-10 -8 (-15 -3364 ($ |#1| |#1| |#1|)) (-15 -4217 (|#1| $ (-708))))
+((-2784 (((-588 (-1090)) (-1068)) 8)))
+(((-809) (-10 -7 (-15 -2784 ((-588 (-1090)) (-1068))))) (T -809))
+((-2784 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-588 (-1090))) (-5 *1 (-809)))))
+(-10 -7 (-15 -2784 ((-588 (-1090)) (-1068))))
+((-3810 (((-811 |#2|) (-1 |#2| |#1|) (-811 |#1|)) 14)))
+(((-810 |#1| |#2|) (-10 -7 (-15 -3810 ((-811 |#2|) (-1 |#2| |#1|) (-811 |#1|)))) (-1120) (-1120)) (T -810))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-811 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-811 *6)) (-5 *1 (-810 *5 *6)))))
+(-10 -7 (-15 -3810 ((-811 |#2|) (-1 |#2| |#1|) (-811 |#1|))))
+((-2536 (($ |#1| |#1| |#1|) 8)) (-4217 ((|#1| $ (-708)) 10)))
+(((-811 |#1|) (-10 -8 (-15 -2536 ($ |#1| |#1| |#1|)) (-15 -4217 (|#1| $ (-708)))) (-1120)) (T -811))
+((-4217 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-811 *2)) (-4 *2 (-1120)))) (-2536 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-811 *2)) (-4 *2 (-1120)))))
+(-10 -8 (-15 -2536 ($ |#1| |#1| |#1|)) (-15 -4217 (|#1| $ (-708))))
+((-3478 (((-1066 (-588 (-522))) (-588 (-522)) (-1066 (-588 (-522)))) 32)) (-3121 (((-1066 (-588 (-522))) (-588 (-522)) (-588 (-522))) 28)) (-1807 (((-1066 (-588 (-522))) (-588 (-522))) 41) (((-1066 (-588 (-522))) (-588 (-522)) (-588 (-522))) 40)) (-2290 (((-1066 (-588 (-522))) (-522)) 42)) (-3851 (((-1066 (-588 (-522))) (-522) (-522)) 22) (((-1066 (-588 (-522))) (-522)) 16) (((-1066 (-588 (-522))) (-522) (-522) (-522)) 12)) (-3659 (((-1066 (-588 (-522))) (-1066 (-588 (-522)))) 26)) (-2983 (((-588 (-522)) (-588 (-522))) 25)))
+(((-812) (-10 -7 (-15 -3851 ((-1066 (-588 (-522))) (-522) (-522) (-522))) (-15 -3851 ((-1066 (-588 (-522))) (-522))) (-15 -3851 ((-1066 (-588 (-522))) (-522) (-522))) (-15 -2983 ((-588 (-522)) (-588 (-522)))) (-15 -3659 ((-1066 (-588 (-522))) (-1066 (-588 (-522))))) (-15 -3121 ((-1066 (-588 (-522))) (-588 (-522)) (-588 (-522)))) (-15 -3478 ((-1066 (-588 (-522))) (-588 (-522)) (-1066 (-588 (-522))))) (-15 -1807 ((-1066 (-588 (-522))) (-588 (-522)) (-588 (-522)))) (-15 -1807 ((-1066 (-588 (-522))) (-588 (-522)))) (-15 -2290 ((-1066 (-588 (-522))) (-522))))) (T -812))
+((-2290 (*1 *2 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522)))) (-1807 (*1 *2 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-588 (-522))))) (-1807 (*1 *2 *3 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-588 (-522))))) (-3478 (*1 *2 *3 *2) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *3 (-588 (-522))) (-5 *1 (-812)))) (-3121 (*1 *2 *3 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-588 (-522))))) (-3659 (*1 *2 *2) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)))) (-2983 (*1 *2 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-812)))) (-3851 (*1 *2 *3 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522)))) (-3851 (*1 *2 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522)))) (-3851 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522)))))
+(-10 -7 (-15 -3851 ((-1066 (-588 (-522))) (-522) (-522) (-522))) (-15 -3851 ((-1066 (-588 (-522))) (-522))) (-15 -3851 ((-1066 (-588 (-522))) (-522) (-522))) (-15 -2983 ((-588 (-522)) (-588 (-522)))) (-15 -3659 ((-1066 (-588 (-522))) (-1066 (-588 (-522))))) (-15 -3121 ((-1066 (-588 (-522))) (-588 (-522)) (-588 (-522)))) (-15 -3478 ((-1066 (-588 (-522))) (-588 (-522)) (-1066 (-588 (-522))))) (-15 -1807 ((-1066 (-588 (-522))) (-588 (-522)) (-588 (-522)))) (-15 -1807 ((-1066 (-588 (-522))) (-588 (-522)))) (-15 -2290 ((-1066 (-588 (-522))) (-522))))
+((-3873 (((-821 (-354)) $) 9 (|has| |#1| (-563 (-821 (-354))))) (((-821 (-522)) $) 8 (|has| |#1| (-563 (-821 (-522)))))))
(((-813 |#1|) (-1197) (-1120)) (T -813))
NIL
(-13 (-10 -7 (IF (|has| |t#1| (-563 (-821 (-522)))) (-6 (-563 (-821 (-522)))) |%noBranch|) (IF (|has| |t#1| (-563 (-821 (-354)))) (-6 (-563 (-821 (-354)))) |%noBranch|)))
(((-563 (-821 (-354))) |has| |#1| (-563 (-821 (-354)))) ((-563 (-821 (-522))) |has| |#1| (-563 (-821 (-522)))))
-((-1416 (((-108) $ $) NIL)) (-1811 (($) 14)) (-3030 (($ (-818 |#1| |#2|) (-818 |#1| |#3|)) 27)) (-3831 (((-818 |#1| |#3|) $) 16)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2989 (((-108) $) 22)) (-3083 (($) 19)) (-2190 (((-792) $) 30)) (-2347 (((-818 |#1| |#2|) $) 15)) (-1531 (((-108) $ $) 25)))
-(((-814 |#1| |#2| |#3|) (-13 (-1014) (-10 -8 (-15 -2989 ((-108) $)) (-15 -3083 ($)) (-15 -1811 ($)) (-15 -3030 ($ (-818 |#1| |#2|) (-818 |#1| |#3|))) (-15 -2347 ((-818 |#1| |#2|) $)) (-15 -3831 ((-818 |#1| |#3|) $)))) (-1014) (-1014) (-608 |#2|)) (T -814))
-((-2989 (*1 *2 *1) (-12 (-4 *4 (-1014)) (-5 *2 (-108)) (-5 *1 (-814 *3 *4 *5)) (-4 *3 (-1014)) (-4 *5 (-608 *4)))) (-3083 (*1 *1) (-12 (-4 *3 (-1014)) (-5 *1 (-814 *2 *3 *4)) (-4 *2 (-1014)) (-4 *4 (-608 *3)))) (-1811 (*1 *1) (-12 (-4 *3 (-1014)) (-5 *1 (-814 *2 *3 *4)) (-4 *2 (-1014)) (-4 *4 (-608 *3)))) (-3030 (*1 *1 *2 *3) (-12 (-5 *2 (-818 *4 *5)) (-5 *3 (-818 *4 *6)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-608 *5)) (-5 *1 (-814 *4 *5 *6)))) (-2347 (*1 *2 *1) (-12 (-4 *4 (-1014)) (-5 *2 (-818 *3 *4)) (-5 *1 (-814 *3 *4 *5)) (-4 *3 (-1014)) (-4 *5 (-608 *4)))) (-3831 (*1 *2 *1) (-12 (-4 *4 (-1014)) (-5 *2 (-818 *3 *5)) (-5 *1 (-814 *3 *4 *5)) (-4 *3 (-1014)) (-4 *5 (-608 *4)))))
-(-13 (-1014) (-10 -8 (-15 -2989 ((-108) $)) (-15 -3083 ($)) (-15 -1811 ($)) (-15 -3030 ($ (-818 |#1| |#2|) (-818 |#1| |#3|))) (-15 -2347 ((-818 |#1| |#2|) $)) (-15 -3831 ((-818 |#1| |#3|) $))))
-((-1416 (((-108) $ $) 7)) (-4011 (((-818 |#1| $) $ (-821 |#1|) (-818 |#1| $)) 13)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-1531 (((-108) $ $) 6)))
+((-1419 (((-108) $ $) NIL)) (-1893 (($) 14)) (-1429 (($ (-818 |#1| |#2|) (-818 |#1| |#3|)) 27)) (-2389 (((-818 |#1| |#3|) $) 16)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-4055 (((-108) $) 22)) (-3181 (($) 19)) (-2217 (((-792) $) 30)) (-1666 (((-818 |#1| |#2|) $) 15)) (-1562 (((-108) $ $) 25)))
+(((-814 |#1| |#2| |#3|) (-13 (-1014) (-10 -8 (-15 -4055 ((-108) $)) (-15 -3181 ($)) (-15 -1893 ($)) (-15 -1429 ($ (-818 |#1| |#2|) (-818 |#1| |#3|))) (-15 -1666 ((-818 |#1| |#2|) $)) (-15 -2389 ((-818 |#1| |#3|) $)))) (-1014) (-1014) (-608 |#2|)) (T -814))
+((-4055 (*1 *2 *1) (-12 (-4 *4 (-1014)) (-5 *2 (-108)) (-5 *1 (-814 *3 *4 *5)) (-4 *3 (-1014)) (-4 *5 (-608 *4)))) (-3181 (*1 *1) (-12 (-4 *3 (-1014)) (-5 *1 (-814 *2 *3 *4)) (-4 *2 (-1014)) (-4 *4 (-608 *3)))) (-1893 (*1 *1) (-12 (-4 *3 (-1014)) (-5 *1 (-814 *2 *3 *4)) (-4 *2 (-1014)) (-4 *4 (-608 *3)))) (-1429 (*1 *1 *2 *3) (-12 (-5 *2 (-818 *4 *5)) (-5 *3 (-818 *4 *6)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-608 *5)) (-5 *1 (-814 *4 *5 *6)))) (-1666 (*1 *2 *1) (-12 (-4 *4 (-1014)) (-5 *2 (-818 *3 *4)) (-5 *1 (-814 *3 *4 *5)) (-4 *3 (-1014)) (-4 *5 (-608 *4)))) (-2389 (*1 *2 *1) (-12 (-4 *4 (-1014)) (-5 *2 (-818 *3 *5)) (-5 *1 (-814 *3 *4 *5)) (-4 *3 (-1014)) (-4 *5 (-608 *4)))))
+(-13 (-1014) (-10 -8 (-15 -4055 ((-108) $)) (-15 -3181 ($)) (-15 -1893 ($)) (-15 -1429 ($ (-818 |#1| |#2|) (-818 |#1| |#3|))) (-15 -1666 ((-818 |#1| |#2|) $)) (-15 -2389 ((-818 |#1| |#3|) $))))
+((-1419 (((-108) $ $) 7)) (-3738 (((-818 |#1| $) $ (-821 |#1|) (-818 |#1| $)) 13)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-1562 (((-108) $ $) 6)))
(((-815 |#1|) (-1197) (-1014)) (T -815))
-((-4011 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-818 *4 *1)) (-5 *3 (-821 *4)) (-4 *1 (-815 *4)) (-4 *4 (-1014)))))
-(-13 (-1014) (-10 -8 (-15 -4011 ((-818 |t#1| $) $ (-821 |t#1|) (-818 |t#1| $)))))
+((-3738 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-818 *4 *1)) (-5 *3 (-821 *4)) (-4 *1 (-815 *4)) (-4 *4 (-1014)))))
+(-13 (-1014) (-10 -8 (-15 -3738 ((-818 |t#1| $) $ (-821 |t#1|) (-818 |t#1| $)))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-2249 (((-108) (-588 |#2|) |#3|) 23) (((-108) |#2| |#3|) 18)) (-1801 (((-818 |#1| |#2|) |#2| |#3|) 43 (-12 (-2401 (|has| |#2| (-962 (-1085)))) (-2401 (|has| |#2| (-971))))) (((-588 (-270 (-881 |#2|))) |#2| |#3|) 42 (-12 (|has| |#2| (-971)) (-2401 (|has| |#2| (-962 (-1085)))))) (((-588 (-270 |#2|)) |#2| |#3|) 35 (|has| |#2| (-962 (-1085)))) (((-814 |#1| |#2| (-588 |#2|)) (-588 |#2|) |#3|) 21)))
-(((-816 |#1| |#2| |#3|) (-10 -7 (-15 -2249 ((-108) |#2| |#3|)) (-15 -2249 ((-108) (-588 |#2|) |#3|)) (-15 -1801 ((-814 |#1| |#2| (-588 |#2|)) (-588 |#2|) |#3|)) (IF (|has| |#2| (-962 (-1085))) (-15 -1801 ((-588 (-270 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-971)) (-15 -1801 ((-588 (-270 (-881 |#2|))) |#2| |#3|)) (-15 -1801 ((-818 |#1| |#2|) |#2| |#3|))))) (-1014) (-815 |#1|) (-563 (-821 |#1|))) (T -816))
-((-1801 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-5 *2 (-818 *5 *3)) (-5 *1 (-816 *5 *3 *4)) (-2401 (-4 *3 (-962 (-1085)))) (-2401 (-4 *3 (-971))) (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5))))) (-1801 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-5 *2 (-588 (-270 (-881 *3)))) (-5 *1 (-816 *5 *3 *4)) (-4 *3 (-971)) (-2401 (-4 *3 (-962 (-1085)))) (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5))))) (-1801 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-5 *2 (-588 (-270 *3))) (-5 *1 (-816 *5 *3 *4)) (-4 *3 (-962 (-1085))) (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5))))) (-1801 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-4 *6 (-815 *5)) (-5 *2 (-814 *5 *6 (-588 *6))) (-5 *1 (-816 *5 *6 *4)) (-5 *3 (-588 *6)) (-4 *4 (-563 (-821 *5))))) (-2249 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *6)) (-4 *6 (-815 *5)) (-4 *5 (-1014)) (-5 *2 (-108)) (-5 *1 (-816 *5 *6 *4)) (-4 *4 (-563 (-821 *5))))) (-2249 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-5 *2 (-108)) (-5 *1 (-816 *5 *3 *4)) (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5))))))
-(-10 -7 (-15 -2249 ((-108) |#2| |#3|)) (-15 -2249 ((-108) (-588 |#2|) |#3|)) (-15 -1801 ((-814 |#1| |#2| (-588 |#2|)) (-588 |#2|) |#3|)) (IF (|has| |#2| (-962 (-1085))) (-15 -1801 ((-588 (-270 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-971)) (-15 -1801 ((-588 (-270 (-881 |#2|))) |#2| |#3|)) (-15 -1801 ((-818 |#1| |#2|) |#2| |#3|)))))
-((-1391 (((-818 |#1| |#3|) (-1 |#3| |#2|) (-818 |#1| |#2|)) 21)))
-(((-817 |#1| |#2| |#3|) (-10 -7 (-15 -1391 ((-818 |#1| |#3|) (-1 |#3| |#2|) (-818 |#1| |#2|)))) (-1014) (-1014) (-1014)) (T -817))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-818 *5 *6)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-818 *5 *7)) (-5 *1 (-817 *5 *6 *7)))))
-(-10 -7 (-15 -1391 ((-818 |#1| |#3|) (-1 |#3| |#2|) (-818 |#1| |#2|))))
-((-1416 (((-108) $ $) NIL)) (-2270 (($ $ $) 37)) (-1582 (((-3 (-108) "failed") $ (-821 |#1|)) 34)) (-1811 (($) 11)) (-2385 (((-1068) $) NIL)) (-1212 (($ (-821 |#1|) |#2| $) 20)) (-4151 (((-1032) $) NIL)) (-4099 (((-3 |#2| "failed") (-821 |#1|) $) 48)) (-2989 (((-108) $) 14)) (-3083 (($) 12)) (-1991 (((-588 (-2 (|:| -2530 (-1085)) (|:| -3048 |#2|))) $) 25)) (-2201 (($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 |#2|)))) 23)) (-2190 (((-792) $) 42)) (-1701 (($ (-821 |#1|) |#2| $ |#2|) 46)) (-4175 (($ (-821 |#1|) |#2| $) 45)) (-1531 (((-108) $ $) 39)))
-(((-818 |#1| |#2|) (-13 (-1014) (-10 -8 (-15 -2989 ((-108) $)) (-15 -3083 ($)) (-15 -1811 ($)) (-15 -2270 ($ $ $)) (-15 -4099 ((-3 |#2| "failed") (-821 |#1|) $)) (-15 -4175 ($ (-821 |#1|) |#2| $)) (-15 -1212 ($ (-821 |#1|) |#2| $)) (-15 -1701 ($ (-821 |#1|) |#2| $ |#2|)) (-15 -1991 ((-588 (-2 (|:| -2530 (-1085)) (|:| -3048 |#2|))) $)) (-15 -2201 ($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 |#2|))))) (-15 -1582 ((-3 (-108) "failed") $ (-821 |#1|))))) (-1014) (-1014)) (T -818))
-((-2989 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-818 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-3083 (*1 *1) (-12 (-5 *1 (-818 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-1811 (*1 *1) (-12 (-5 *1 (-818 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-2270 (*1 *1 *1 *1) (-12 (-5 *1 (-818 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-4099 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-4 *2 (-1014)) (-5 *1 (-818 *4 *2)))) (-4175 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-818 *4 *3)) (-4 *3 (-1014)))) (-1212 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-818 *4 *3)) (-4 *3 (-1014)))) (-1701 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-818 *4 *3)) (-4 *3 (-1014)))) (-1991 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 *4)))) (-5 *1 (-818 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-2201 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 *4)))) (-4 *4 (-1014)) (-5 *1 (-818 *3 *4)) (-4 *3 (-1014)))) (-1582 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-5 *2 (-108)) (-5 *1 (-818 *4 *5)) (-4 *5 (-1014)))))
-(-13 (-1014) (-10 -8 (-15 -2989 ((-108) $)) (-15 -3083 ($)) (-15 -1811 ($)) (-15 -2270 ($ $ $)) (-15 -4099 ((-3 |#2| "failed") (-821 |#1|) $)) (-15 -4175 ($ (-821 |#1|) |#2| $)) (-15 -1212 ($ (-821 |#1|) |#2| $)) (-15 -1701 ($ (-821 |#1|) |#2| $ |#2|)) (-15 -1991 ((-588 (-2 (|:| -2530 (-1085)) (|:| -3048 |#2|))) $)) (-15 -2201 ($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 |#2|))))) (-15 -1582 ((-3 (-108) "failed") $ (-821 |#1|)))))
-((-1870 (((-821 |#1|) (-821 |#1|) (-588 (-1085)) (-1 (-108) (-588 |#2|))) 30) (((-821 |#1|) (-821 |#1|) (-588 (-1 (-108) |#2|))) 42) (((-821 |#1|) (-821 |#1|) (-1 (-108) |#2|)) 33)) (-1582 (((-108) (-588 |#2|) (-821 |#1|)) 39) (((-108) |#2| (-821 |#1|)) 35)) (-4005 (((-1 (-108) |#2|) (-821 |#1|)) 14)) (-2038 (((-588 |#2|) (-821 |#1|)) 23)) (-1348 (((-821 |#1|) (-821 |#1|) |#2|) 19)))
-(((-819 |#1| |#2|) (-10 -7 (-15 -1870 ((-821 |#1|) (-821 |#1|) (-1 (-108) |#2|))) (-15 -1870 ((-821 |#1|) (-821 |#1|) (-588 (-1 (-108) |#2|)))) (-15 -1870 ((-821 |#1|) (-821 |#1|) (-588 (-1085)) (-1 (-108) (-588 |#2|)))) (-15 -4005 ((-1 (-108) |#2|) (-821 |#1|))) (-15 -1582 ((-108) |#2| (-821 |#1|))) (-15 -1582 ((-108) (-588 |#2|) (-821 |#1|))) (-15 -1348 ((-821 |#1|) (-821 |#1|) |#2|)) (-15 -2038 ((-588 |#2|) (-821 |#1|)))) (-1014) (-1120)) (T -819))
-((-2038 (*1 *2 *3) (-12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-5 *2 (-588 *5)) (-5 *1 (-819 *4 *5)) (-4 *5 (-1120)))) (-1348 (*1 *2 *2 *3) (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-819 *4 *3)) (-4 *3 (-1120)))) (-1582 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *6)) (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-4 *6 (-1120)) (-5 *2 (-108)) (-5 *1 (-819 *5 *6)))) (-1582 (*1 *2 *3 *4) (-12 (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-5 *2 (-108)) (-5 *1 (-819 *5 *3)) (-4 *3 (-1120)))) (-4005 (*1 *2 *3) (-12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-5 *2 (-1 (-108) *5)) (-5 *1 (-819 *4 *5)) (-4 *5 (-1120)))) (-1870 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-821 *5)) (-5 *3 (-588 (-1085))) (-5 *4 (-1 (-108) (-588 *6))) (-4 *5 (-1014)) (-4 *6 (-1120)) (-5 *1 (-819 *5 *6)))) (-1870 (*1 *2 *2 *3) (-12 (-5 *2 (-821 *4)) (-5 *3 (-588 (-1 (-108) *5))) (-4 *4 (-1014)) (-4 *5 (-1120)) (-5 *1 (-819 *4 *5)))) (-1870 (*1 *2 *2 *3) (-12 (-5 *2 (-821 *4)) (-5 *3 (-1 (-108) *5)) (-4 *4 (-1014)) (-4 *5 (-1120)) (-5 *1 (-819 *4 *5)))))
-(-10 -7 (-15 -1870 ((-821 |#1|) (-821 |#1|) (-1 (-108) |#2|))) (-15 -1870 ((-821 |#1|) (-821 |#1|) (-588 (-1 (-108) |#2|)))) (-15 -1870 ((-821 |#1|) (-821 |#1|) (-588 (-1085)) (-1 (-108) (-588 |#2|)))) (-15 -4005 ((-1 (-108) |#2|) (-821 |#1|))) (-15 -1582 ((-108) |#2| (-821 |#1|))) (-15 -1582 ((-108) (-588 |#2|) (-821 |#1|))) (-15 -1348 ((-821 |#1|) (-821 |#1|) |#2|)) (-15 -2038 ((-588 |#2|) (-821 |#1|))))
-((-1391 (((-821 |#2|) (-1 |#2| |#1|) (-821 |#1|)) 17)))
-(((-820 |#1| |#2|) (-10 -7 (-15 -1391 ((-821 |#2|) (-1 |#2| |#1|) (-821 |#1|)))) (-1014) (-1014)) (T -820))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *2 (-821 *6)) (-5 *1 (-820 *5 *6)))))
-(-10 -7 (-15 -1391 ((-821 |#2|) (-1 |#2| |#1|) (-821 |#1|))))
-((-1416 (((-108) $ $) NIL)) (-3952 (($ $ (-588 (-51))) 63)) (-4090 (((-588 $) $) 117)) (-3850 (((-2 (|:| |var| (-588 (-1085))) (|:| |pred| (-51))) $) 23)) (-2031 (((-108) $) 30)) (-2938 (($ $ (-588 (-1085)) (-51)) 25)) (-3894 (($ $ (-588 (-51))) 62)) (-1297 (((-3 |#1| "failed") $) 60) (((-3 (-1085) "failed") $) 139)) (-1484 ((|#1| $) 56) (((-1085) $) NIL)) (-3415 (($ $) 107)) (-3942 (((-108) $) 46)) (-2409 (((-588 (-51)) $) 44)) (-1818 (($ (-1085) (-108) (-108) (-108)) 64)) (-3328 (((-3 (-588 $) "failed") (-588 $)) 71)) (-3318 (((-108) $) 49)) (-2620 (((-108) $) 48)) (-2385 (((-1068) $) NIL)) (-2462 (((-3 (-588 $) "failed") $) 35)) (-4076 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 42)) (-2170 (((-3 (-2 (|:| |val| $) (|:| -1400 $)) "failed") $) 82)) (-4193 (((-3 (-588 $) "failed") $) 32)) (-3922 (((-3 (-588 $) "failed") $ (-110)) 106) (((-3 (-2 (|:| -1420 (-110)) (|:| |arg| (-588 $))) "failed") $) 94)) (-2454 (((-3 (-588 $) "failed") $) 36)) (-3285 (((-3 (-2 (|:| |val| $) (|:| -1400 (-708))) "failed") $) 39)) (-2456 (((-108) $) 29)) (-4151 (((-1032) $) NIL)) (-4122 (((-108) $) 21)) (-3225 (((-108) $) 45)) (-1384 (((-588 (-51)) $) 110)) (-3244 (((-108) $) 47)) (-2545 (($ (-110) (-588 $)) 91)) (-1253 (((-708) $) 28)) (-2404 (($ $) 61)) (-1431 (($ (-588 $)) 58)) (-1328 (((-108) $) 26)) (-2190 (((-792) $) 51) (($ |#1|) 18) (($ (-1085)) 65)) (-1348 (($ $ (-51)) 109)) (-3566 (($) 90 T CONST)) (-3577 (($) 72 T CONST)) (-1531 (((-108) $ $) 78)) (-1620 (($ $ $) 99)) (-1602 (($ $ $) 103)) (** (($ $ (-708)) 98) (($ $ $) 52)) (* (($ $ $) 104)))
-(((-821 |#1|) (-13 (-1014) (-962 |#1|) (-962 (-1085)) (-10 -8 (-15 0 ($) -2677) (-15 1 ($) -2677) (-15 -4193 ((-3 (-588 $) "failed") $)) (-15 -2462 ((-3 (-588 $) "failed") $)) (-15 -3922 ((-3 (-588 $) "failed") $ (-110))) (-15 -3922 ((-3 (-2 (|:| -1420 (-110)) (|:| |arg| (-588 $))) "failed") $)) (-15 -3285 ((-3 (-2 (|:| |val| $) (|:| -1400 (-708))) "failed") $)) (-15 -4076 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2454 ((-3 (-588 $) "failed") $)) (-15 -2170 ((-3 (-2 (|:| |val| $) (|:| -1400 $)) "failed") $)) (-15 -2545 ($ (-110) (-588 $))) (-15 -1602 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-708))) (-15 ** ($ $ $)) (-15 -1620 ($ $ $)) (-15 -1253 ((-708) $)) (-15 -1431 ($ (-588 $))) (-15 -2404 ($ $)) (-15 -2456 ((-108) $)) (-15 -3942 ((-108) $)) (-15 -2031 ((-108) $)) (-15 -1328 ((-108) $)) (-15 -3244 ((-108) $)) (-15 -2620 ((-108) $)) (-15 -3318 ((-108) $)) (-15 -3225 ((-108) $)) (-15 -2409 ((-588 (-51)) $)) (-15 -3894 ($ $ (-588 (-51)))) (-15 -3952 ($ $ (-588 (-51)))) (-15 -1818 ($ (-1085) (-108) (-108) (-108))) (-15 -2938 ($ $ (-588 (-1085)) (-51))) (-15 -3850 ((-2 (|:| |var| (-588 (-1085))) (|:| |pred| (-51))) $)) (-15 -4122 ((-108) $)) (-15 -3415 ($ $)) (-15 -1348 ($ $ (-51))) (-15 -1384 ((-588 (-51)) $)) (-15 -4090 ((-588 $) $)) (-15 -3328 ((-3 (-588 $) "failed") (-588 $))))) (-1014)) (T -821))
-((-3566 (*1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (-3577 (*1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (-4193 (*1 *2 *1) (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2462 (*1 *2 *1) (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3922 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-110)) (-5 *2 (-588 (-821 *4))) (-5 *1 (-821 *4)) (-4 *4 (-1014)))) (-3922 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -1420 (-110)) (|:| |arg| (-588 (-821 *3))))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3285 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-821 *3)) (|:| -1400 (-708)))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-4076 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-821 *3)) (|:| |den| (-821 *3)))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2454 (*1 *2 *1) (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2170 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-821 *3)) (|:| -1400 (-821 *3)))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2545 (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-588 (-821 *4))) (-5 *1 (-821 *4)) (-4 *4 (-1014)))) (-1602 (*1 *1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (-1620 (*1 *1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (-1253 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-1431 (*1 *1 *2) (-12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2404 (*1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (-2456 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3942 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2031 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-1328 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3244 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2620 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3318 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3225 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2409 (*1 *2 *1) (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3894 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3952 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-1818 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-108)) (-5 *1 (-821 *4)) (-4 *4 (-1014)))) (-2938 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-51)) (-5 *1 (-821 *4)) (-4 *4 (-1014)))) (-3850 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-588 (-1085))) (|:| |pred| (-51)))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-4122 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3415 (*1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (-1348 (*1 *1 *1 *2) (-12 (-5 *2 (-51)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-1384 (*1 *2 *1) (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-4090 (*1 *2 *1) (-12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3328 (*1 *2 *2) (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(-13 (-1014) (-962 |#1|) (-962 (-1085)) (-10 -8 (-15 (-3566) ($) -2677) (-15 (-3577) ($) -2677) (-15 -4193 ((-3 (-588 $) "failed") $)) (-15 -2462 ((-3 (-588 $) "failed") $)) (-15 -3922 ((-3 (-588 $) "failed") $ (-110))) (-15 -3922 ((-3 (-2 (|:| -1420 (-110)) (|:| |arg| (-588 $))) "failed") $)) (-15 -3285 ((-3 (-2 (|:| |val| $) (|:| -1400 (-708))) "failed") $)) (-15 -4076 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2454 ((-3 (-588 $) "failed") $)) (-15 -2170 ((-3 (-2 (|:| |val| $) (|:| -1400 $)) "failed") $)) (-15 -2545 ($ (-110) (-588 $))) (-15 -1602 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-708))) (-15 ** ($ $ $)) (-15 -1620 ($ $ $)) (-15 -1253 ((-708) $)) (-15 -1431 ($ (-588 $))) (-15 -2404 ($ $)) (-15 -2456 ((-108) $)) (-15 -3942 ((-108) $)) (-15 -2031 ((-108) $)) (-15 -1328 ((-108) $)) (-15 -3244 ((-108) $)) (-15 -2620 ((-108) $)) (-15 -3318 ((-108) $)) (-15 -3225 ((-108) $)) (-15 -2409 ((-588 (-51)) $)) (-15 -3894 ($ $ (-588 (-51)))) (-15 -3952 ($ $ (-588 (-51)))) (-15 -1818 ($ (-1085) (-108) (-108) (-108))) (-15 -2938 ($ $ (-588 (-1085)) (-51))) (-15 -3850 ((-2 (|:| |var| (-588 (-1085))) (|:| |pred| (-51))) $)) (-15 -4122 ((-108) $)) (-15 -3415 ($ $)) (-15 -1348 ($ $ (-51))) (-15 -1384 ((-588 (-51)) $)) (-15 -4090 ((-588 $) $)) (-15 -3328 ((-3 (-588 $) "failed") (-588 $)))))
-((-1416 (((-108) $ $) NIL)) (-4106 (((-588 |#1|) $) 16)) (-1289 (((-108) $) 38)) (-1297 (((-3 (-613 |#1|) "failed") $) 41)) (-1484 (((-613 |#1|) $) 39)) (-2306 (($ $) 18)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2517 (((-708) $) 45)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2294 (((-613 |#1|) $) 17)) (-2190 (((-792) $) 37) (($ (-613 |#1|)) 21) (((-756 |#1|) $) 27) (($ |#1|) 20)) (-3577 (($) 8 T CONST)) (-2238 (((-588 (-613 |#1|)) $) 23)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 11)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 48)))
-(((-822 |#1|) (-13 (-784) (-962 (-613 |#1|)) (-10 -8 (-15 1 ($) -2677) (-15 -2190 ((-756 |#1|) $)) (-15 -2190 ($ |#1|)) (-15 -2294 ((-613 |#1|) $)) (-15 -2517 ((-708) $)) (-15 -2238 ((-588 (-613 |#1|)) $)) (-15 -2306 ($ $)) (-15 -1289 ((-108) $)) (-15 -4106 ((-588 |#1|) $)))) (-784)) (T -822))
-((-3577 (*1 *1) (-12 (-5 *1 (-822 *2)) (-4 *2 (-784)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-756 *3)) (-5 *1 (-822 *3)) (-4 *3 (-784)))) (-2190 (*1 *1 *2) (-12 (-5 *1 (-822 *2)) (-4 *2 (-784)))) (-2294 (*1 *2 *1) (-12 (-5 *2 (-613 *3)) (-5 *1 (-822 *3)) (-4 *3 (-784)))) (-2517 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-822 *3)) (-4 *3 (-784)))) (-2238 (*1 *2 *1) (-12 (-5 *2 (-588 (-613 *3))) (-5 *1 (-822 *3)) (-4 *3 (-784)))) (-2306 (*1 *1 *1) (-12 (-5 *1 (-822 *2)) (-4 *2 (-784)))) (-1289 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-822 *3)) (-4 *3 (-784)))) (-4106 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-822 *3)) (-4 *3 (-784)))))
-(-13 (-784) (-962 (-613 |#1|)) (-10 -8 (-15 (-3577) ($) -2677) (-15 -2190 ((-756 |#1|) $)) (-15 -2190 ($ |#1|)) (-15 -2294 ((-613 |#1|) $)) (-15 -2517 ((-708) $)) (-15 -2238 ((-588 (-613 |#1|)) $)) (-15 -2306 ($ $)) (-15 -1289 ((-108) $)) (-15 -4106 ((-588 |#1|) $))))
-((-1830 ((|#1| |#1| |#1|) 20)))
-(((-823 |#1| |#2|) (-10 -7 (-15 -1830 (|#1| |#1| |#1|))) (-1142 |#2|) (-971)) (T -823))
-((-1830 (*1 *2 *2 *2) (-12 (-4 *3 (-971)) (-5 *1 (-823 *2 *3)) (-4 *2 (-1142 *3)))))
-(-10 -7 (-15 -1830 (|#1| |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-1798 (((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 14)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3377 (((-960) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 13)) (-1531 (((-108) $ $) 6)))
+((-2935 (((-108) (-588 |#2|) |#3|) 23) (((-108) |#2| |#3|) 18)) (-3774 (((-818 |#1| |#2|) |#2| |#3|) 43 (-12 (-2473 (|has| |#2| (-962 (-1085)))) (-2473 (|has| |#2| (-971))))) (((-588 (-270 (-881 |#2|))) |#2| |#3|) 42 (-12 (|has| |#2| (-971)) (-2473 (|has| |#2| (-962 (-1085)))))) (((-588 (-270 |#2|)) |#2| |#3|) 35 (|has| |#2| (-962 (-1085)))) (((-814 |#1| |#2| (-588 |#2|)) (-588 |#2|) |#3|) 21)))
+(((-816 |#1| |#2| |#3|) (-10 -7 (-15 -2935 ((-108) |#2| |#3|)) (-15 -2935 ((-108) (-588 |#2|) |#3|)) (-15 -3774 ((-814 |#1| |#2| (-588 |#2|)) (-588 |#2|) |#3|)) (IF (|has| |#2| (-962 (-1085))) (-15 -3774 ((-588 (-270 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-971)) (-15 -3774 ((-588 (-270 (-881 |#2|))) |#2| |#3|)) (-15 -3774 ((-818 |#1| |#2|) |#2| |#3|))))) (-1014) (-815 |#1|) (-563 (-821 |#1|))) (T -816))
+((-3774 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-5 *2 (-818 *5 *3)) (-5 *1 (-816 *5 *3 *4)) (-2473 (-4 *3 (-962 (-1085)))) (-2473 (-4 *3 (-971))) (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5))))) (-3774 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-5 *2 (-588 (-270 (-881 *3)))) (-5 *1 (-816 *5 *3 *4)) (-4 *3 (-971)) (-2473 (-4 *3 (-962 (-1085)))) (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5))))) (-3774 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-5 *2 (-588 (-270 *3))) (-5 *1 (-816 *5 *3 *4)) (-4 *3 (-962 (-1085))) (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5))))) (-3774 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-4 *6 (-815 *5)) (-5 *2 (-814 *5 *6 (-588 *6))) (-5 *1 (-816 *5 *6 *4)) (-5 *3 (-588 *6)) (-4 *4 (-563 (-821 *5))))) (-2935 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *6)) (-4 *6 (-815 *5)) (-4 *5 (-1014)) (-5 *2 (-108)) (-5 *1 (-816 *5 *6 *4)) (-4 *4 (-563 (-821 *5))))) (-2935 (*1 *2 *3 *4) (-12 (-4 *5 (-1014)) (-5 *2 (-108)) (-5 *1 (-816 *5 *3 *4)) (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5))))))
+(-10 -7 (-15 -2935 ((-108) |#2| |#3|)) (-15 -2935 ((-108) (-588 |#2|) |#3|)) (-15 -3774 ((-814 |#1| |#2| (-588 |#2|)) (-588 |#2|) |#3|)) (IF (|has| |#2| (-962 (-1085))) (-15 -3774 ((-588 (-270 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-971)) (-15 -3774 ((-588 (-270 (-881 |#2|))) |#2| |#3|)) (-15 -3774 ((-818 |#1| |#2|) |#2| |#3|)))))
+((-3810 (((-818 |#1| |#3|) (-1 |#3| |#2|) (-818 |#1| |#2|)) 21)))
+(((-817 |#1| |#2| |#3|) (-10 -7 (-15 -3810 ((-818 |#1| |#3|) (-1 |#3| |#2|) (-818 |#1| |#2|)))) (-1014) (-1014) (-1014)) (T -817))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-818 *5 *6)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-818 *5 *7)) (-5 *1 (-817 *5 *6 *7)))))
+(-10 -7 (-15 -3810 ((-818 |#1| |#3|) (-1 |#3| |#2|) (-818 |#1| |#2|))))
+((-1419 (((-108) $ $) NIL)) (-2323 (($ $ $) 37)) (-3651 (((-3 (-108) "failed") $ (-821 |#1|)) 34)) (-1893 (($) 11)) (-2311 (((-1068) $) NIL)) (-1845 (($ (-821 |#1|) |#2| $) 20)) (-4174 (((-1032) $) NIL)) (-3392 (((-3 |#2| "failed") (-821 |#1|) $) 48)) (-4055 (((-108) $) 14)) (-3181 (($) 12)) (-2058 (((-588 (-2 (|:| -2644 (-1085)) (|:| -3149 |#2|))) $) 25)) (-2227 (($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 |#2|)))) 23)) (-2217 (((-792) $) 42)) (-4081 (($ (-821 |#1|) |#2| $ |#2|) 46)) (-1774 (($ (-821 |#1|) |#2| $) 45)) (-1562 (((-108) $ $) 39)))
+(((-818 |#1| |#2|) (-13 (-1014) (-10 -8 (-15 -4055 ((-108) $)) (-15 -3181 ($)) (-15 -1893 ($)) (-15 -2323 ($ $ $)) (-15 -3392 ((-3 |#2| "failed") (-821 |#1|) $)) (-15 -1774 ($ (-821 |#1|) |#2| $)) (-15 -1845 ($ (-821 |#1|) |#2| $)) (-15 -4081 ($ (-821 |#1|) |#2| $ |#2|)) (-15 -2058 ((-588 (-2 (|:| -2644 (-1085)) (|:| -3149 |#2|))) $)) (-15 -2227 ($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 |#2|))))) (-15 -3651 ((-3 (-108) "failed") $ (-821 |#1|))))) (-1014) (-1014)) (T -818))
+((-4055 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-818 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-3181 (*1 *1) (-12 (-5 *1 (-818 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-1893 (*1 *1) (-12 (-5 *1 (-818 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-2323 (*1 *1 *1 *1) (-12 (-5 *1 (-818 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-3392 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-4 *2 (-1014)) (-5 *1 (-818 *4 *2)))) (-1774 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-818 *4 *3)) (-4 *3 (-1014)))) (-1845 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-818 *4 *3)) (-4 *3 (-1014)))) (-4081 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-818 *4 *3)) (-4 *3 (-1014)))) (-2058 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 *4)))) (-5 *1 (-818 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-2227 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 *4)))) (-4 *4 (-1014)) (-5 *1 (-818 *3 *4)) (-4 *3 (-1014)))) (-3651 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-5 *2 (-108)) (-5 *1 (-818 *4 *5)) (-4 *5 (-1014)))))
+(-13 (-1014) (-10 -8 (-15 -4055 ((-108) $)) (-15 -3181 ($)) (-15 -1893 ($)) (-15 -2323 ($ $ $)) (-15 -3392 ((-3 |#2| "failed") (-821 |#1|) $)) (-15 -1774 ($ (-821 |#1|) |#2| $)) (-15 -1845 ($ (-821 |#1|) |#2| $)) (-15 -4081 ($ (-821 |#1|) |#2| $ |#2|)) (-15 -2058 ((-588 (-2 (|:| -2644 (-1085)) (|:| -3149 |#2|))) $)) (-15 -2227 ($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 |#2|))))) (-15 -3651 ((-3 (-108) "failed") $ (-821 |#1|)))))
+((-1958 (((-821 |#1|) (-821 |#1|) (-588 (-1085)) (-1 (-108) (-588 |#2|))) 30) (((-821 |#1|) (-821 |#1|) (-588 (-1 (-108) |#2|))) 42) (((-821 |#1|) (-821 |#1|) (-1 (-108) |#2|)) 33)) (-3651 (((-108) (-588 |#2|) (-821 |#1|)) 39) (((-108) |#2| (-821 |#1|)) 35)) (-2260 (((-1 (-108) |#2|) (-821 |#1|)) 14)) (-2490 (((-588 |#2|) (-821 |#1|)) 23)) (-3413 (((-821 |#1|) (-821 |#1|) |#2|) 19)))
+(((-819 |#1| |#2|) (-10 -7 (-15 -1958 ((-821 |#1|) (-821 |#1|) (-1 (-108) |#2|))) (-15 -1958 ((-821 |#1|) (-821 |#1|) (-588 (-1 (-108) |#2|)))) (-15 -1958 ((-821 |#1|) (-821 |#1|) (-588 (-1085)) (-1 (-108) (-588 |#2|)))) (-15 -2260 ((-1 (-108) |#2|) (-821 |#1|))) (-15 -3651 ((-108) |#2| (-821 |#1|))) (-15 -3651 ((-108) (-588 |#2|) (-821 |#1|))) (-15 -3413 ((-821 |#1|) (-821 |#1|) |#2|)) (-15 -2490 ((-588 |#2|) (-821 |#1|)))) (-1014) (-1120)) (T -819))
+((-2490 (*1 *2 *3) (-12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-5 *2 (-588 *5)) (-5 *1 (-819 *4 *5)) (-4 *5 (-1120)))) (-3413 (*1 *2 *2 *3) (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-819 *4 *3)) (-4 *3 (-1120)))) (-3651 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *6)) (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-4 *6 (-1120)) (-5 *2 (-108)) (-5 *1 (-819 *5 *6)))) (-3651 (*1 *2 *3 *4) (-12 (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-5 *2 (-108)) (-5 *1 (-819 *5 *3)) (-4 *3 (-1120)))) (-2260 (*1 *2 *3) (-12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-5 *2 (-1 (-108) *5)) (-5 *1 (-819 *4 *5)) (-4 *5 (-1120)))) (-1958 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-821 *5)) (-5 *3 (-588 (-1085))) (-5 *4 (-1 (-108) (-588 *6))) (-4 *5 (-1014)) (-4 *6 (-1120)) (-5 *1 (-819 *5 *6)))) (-1958 (*1 *2 *2 *3) (-12 (-5 *2 (-821 *4)) (-5 *3 (-588 (-1 (-108) *5))) (-4 *4 (-1014)) (-4 *5 (-1120)) (-5 *1 (-819 *4 *5)))) (-1958 (*1 *2 *2 *3) (-12 (-5 *2 (-821 *4)) (-5 *3 (-1 (-108) *5)) (-4 *4 (-1014)) (-4 *5 (-1120)) (-5 *1 (-819 *4 *5)))))
+(-10 -7 (-15 -1958 ((-821 |#1|) (-821 |#1|) (-1 (-108) |#2|))) (-15 -1958 ((-821 |#1|) (-821 |#1|) (-588 (-1 (-108) |#2|)))) (-15 -1958 ((-821 |#1|) (-821 |#1|) (-588 (-1085)) (-1 (-108) (-588 |#2|)))) (-15 -2260 ((-1 (-108) |#2|) (-821 |#1|))) (-15 -3651 ((-108) |#2| (-821 |#1|))) (-15 -3651 ((-108) (-588 |#2|) (-821 |#1|))) (-15 -3413 ((-821 |#1|) (-821 |#1|) |#2|)) (-15 -2490 ((-588 |#2|) (-821 |#1|))))
+((-3810 (((-821 |#2|) (-1 |#2| |#1|) (-821 |#1|)) 17)))
+(((-820 |#1| |#2|) (-10 -7 (-15 -3810 ((-821 |#2|) (-1 |#2| |#1|) (-821 |#1|)))) (-1014) (-1014)) (T -820))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *2 (-821 *6)) (-5 *1 (-820 *5 *6)))))
+(-10 -7 (-15 -3810 ((-821 |#2|) (-1 |#2| |#1|) (-821 |#1|))))
+((-1419 (((-108) $ $) NIL)) (-1354 (($ $ (-588 (-51))) 63)) (-3533 (((-588 $) $) 117)) (-2879 (((-2 (|:| |var| (-588 (-1085))) (|:| |pred| (-51))) $) 23)) (-2415 (((-108) $) 30)) (-3692 (($ $ (-588 (-1085)) (-51)) 25)) (-1986 (($ $ (-588 (-51))) 62)) (-3700 (((-3 |#1| "failed") $) 60) (((-3 (-1085) "failed") $) 139)) (-1478 ((|#1| $) 56) (((-1085) $) NIL)) (-3940 (($ $) 107)) (-1261 (((-108) $) 46)) (-2538 (((-588 (-51)) $) 44)) (-3954 (($ (-1085) (-108) (-108) (-108)) 64)) (-1263 (((-3 (-588 $) "failed") (-588 $)) 71)) (-4193 (((-108) $) 49)) (-1703 (((-108) $) 48)) (-2311 (((-1068) $) NIL)) (-2760 (((-3 (-588 $) "failed") $) 35)) (-4118 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 42)) (-3242 (((-3 (-2 (|:| |val| $) (|:| -3858 $)) "failed") $) 82)) (-1919 (((-3 (-588 $) "failed") $) 32)) (-4094 (((-3 (-588 $) "failed") $ (-110)) 106) (((-3 (-2 (|:| -1410 (-110)) (|:| |arg| (-588 $))) "failed") $) 94)) (-2656 (((-3 (-588 $) "failed") $) 36)) (-2024 (((-3 (-2 (|:| |val| $) (|:| -3858 (-708))) "failed") $) 39)) (-2685 (((-108) $) 29)) (-4174 (((-1032) $) NIL)) (-2469 (((-108) $) 21)) (-2723 (((-108) $) 45)) (-3686 (((-588 (-51)) $) 110)) (-1654 (((-108) $) 47)) (-2683 (($ (-110) (-588 $)) 91)) (-3735 (((-708) $) 28)) (-2463 (($ $) 61)) (-3873 (($ (-588 $)) 58)) (-1967 (((-108) $) 26)) (-2217 (((-792) $) 51) (($ |#1|) 18) (($ (-1085)) 65)) (-3413 (($ $ (-51)) 109)) (-3697 (($) 90 T CONST)) (-3709 (($) 72 T CONST)) (-1562 (((-108) $ $) 78)) (-1682 (($ $ $) 99)) (-1661 (($ $ $) 103)) (** (($ $ (-708)) 98) (($ $ $) 52)) (* (($ $ $) 104)))
+(((-821 |#1|) (-13 (-1014) (-962 |#1|) (-962 (-1085)) (-10 -8 (-15 0 ($) -2855) (-15 1 ($) -2855) (-15 -1919 ((-3 (-588 $) "failed") $)) (-15 -2760 ((-3 (-588 $) "failed") $)) (-15 -4094 ((-3 (-588 $) "failed") $ (-110))) (-15 -4094 ((-3 (-2 (|:| -1410 (-110)) (|:| |arg| (-588 $))) "failed") $)) (-15 -2024 ((-3 (-2 (|:| |val| $) (|:| -3858 (-708))) "failed") $)) (-15 -4118 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2656 ((-3 (-588 $) "failed") $)) (-15 -3242 ((-3 (-2 (|:| |val| $) (|:| -3858 $)) "failed") $)) (-15 -2683 ($ (-110) (-588 $))) (-15 -1661 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-708))) (-15 ** ($ $ $)) (-15 -1682 ($ $ $)) (-15 -3735 ((-708) $)) (-15 -3873 ($ (-588 $))) (-15 -2463 ($ $)) (-15 -2685 ((-108) $)) (-15 -1261 ((-108) $)) (-15 -2415 ((-108) $)) (-15 -1967 ((-108) $)) (-15 -1654 ((-108) $)) (-15 -1703 ((-108) $)) (-15 -4193 ((-108) $)) (-15 -2723 ((-108) $)) (-15 -2538 ((-588 (-51)) $)) (-15 -1986 ($ $ (-588 (-51)))) (-15 -1354 ($ $ (-588 (-51)))) (-15 -3954 ($ (-1085) (-108) (-108) (-108))) (-15 -3692 ($ $ (-588 (-1085)) (-51))) (-15 -2879 ((-2 (|:| |var| (-588 (-1085))) (|:| |pred| (-51))) $)) (-15 -2469 ((-108) $)) (-15 -3940 ($ $)) (-15 -3413 ($ $ (-51))) (-15 -3686 ((-588 (-51)) $)) (-15 -3533 ((-588 $) $)) (-15 -1263 ((-3 (-588 $) "failed") (-588 $))))) (-1014)) (T -821))
+((-3697 (*1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (-3709 (*1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (-1919 (*1 *2 *1) (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2760 (*1 *2 *1) (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-4094 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-110)) (-5 *2 (-588 (-821 *4))) (-5 *1 (-821 *4)) (-4 *4 (-1014)))) (-4094 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -1410 (-110)) (|:| |arg| (-588 (-821 *3))))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2024 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-821 *3)) (|:| -3858 (-708)))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-4118 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-821 *3)) (|:| |den| (-821 *3)))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2656 (*1 *2 *1) (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3242 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-821 *3)) (|:| -3858 (-821 *3)))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2683 (*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-588 (-821 *4))) (-5 *1 (-821 *4)) (-4 *4 (-1014)))) (-1661 (*1 *1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (-1682 (*1 *1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (-3735 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3873 (*1 *1 *2) (-12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2463 (*1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (-2685 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-1261 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2415 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-1967 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-1654 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-1703 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-4193 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2723 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2538 (*1 *2 *1) (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-1986 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-1354 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3954 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-108)) (-5 *1 (-821 *4)) (-4 *4 (-1014)))) (-3692 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-51)) (-5 *1 (-821 *4)) (-4 *4 (-1014)))) (-2879 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-588 (-1085))) (|:| |pred| (-51)))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-2469 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3940 (*1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))) (-3413 (*1 *1 *1 *2) (-12 (-5 *2 (-51)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3686 (*1 *2 *1) (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-3533 (*1 *2 *1) (-12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))) (-1263 (*1 *2 *2) (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(-13 (-1014) (-962 |#1|) (-962 (-1085)) (-10 -8 (-15 (-3697) ($) -2855) (-15 (-3709) ($) -2855) (-15 -1919 ((-3 (-588 $) "failed") $)) (-15 -2760 ((-3 (-588 $) "failed") $)) (-15 -4094 ((-3 (-588 $) "failed") $ (-110))) (-15 -4094 ((-3 (-2 (|:| -1410 (-110)) (|:| |arg| (-588 $))) "failed") $)) (-15 -2024 ((-3 (-2 (|:| |val| $) (|:| -3858 (-708))) "failed") $)) (-15 -4118 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2656 ((-3 (-588 $) "failed") $)) (-15 -3242 ((-3 (-2 (|:| |val| $) (|:| -3858 $)) "failed") $)) (-15 -2683 ($ (-110) (-588 $))) (-15 -1661 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-708))) (-15 ** ($ $ $)) (-15 -1682 ($ $ $)) (-15 -3735 ((-708) $)) (-15 -3873 ($ (-588 $))) (-15 -2463 ($ $)) (-15 -2685 ((-108) $)) (-15 -1261 ((-108) $)) (-15 -2415 ((-108) $)) (-15 -1967 ((-108) $)) (-15 -1654 ((-108) $)) (-15 -1703 ((-108) $)) (-15 -4193 ((-108) $)) (-15 -2723 ((-108) $)) (-15 -2538 ((-588 (-51)) $)) (-15 -1986 ($ $ (-588 (-51)))) (-15 -1354 ($ $ (-588 (-51)))) (-15 -3954 ($ (-1085) (-108) (-108) (-108))) (-15 -3692 ($ $ (-588 (-1085)) (-51))) (-15 -2879 ((-2 (|:| |var| (-588 (-1085))) (|:| |pred| (-51))) $)) (-15 -2469 ((-108) $)) (-15 -3940 ($ $)) (-15 -3413 ($ $ (-51))) (-15 -3686 ((-588 (-51)) $)) (-15 -3533 ((-588 $) $)) (-15 -1263 ((-3 (-588 $) "failed") (-588 $)))))
+((-1419 (((-108) $ $) NIL)) (-4127 (((-588 |#1|) $) 16)) (-1608 (((-108) $) 38)) (-3700 (((-3 (-613 |#1|) "failed") $) 41)) (-1478 (((-613 |#1|) $) 39)) (-2352 (($ $) 18)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-4030 (((-708) $) 45)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2337 (((-613 |#1|) $) 17)) (-2217 (((-792) $) 37) (($ (-613 |#1|)) 21) (((-756 |#1|) $) 27) (($ |#1|) 20)) (-3709 (($) 8 T CONST)) (-1738 (((-588 (-613 |#1|)) $) 23)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 11)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 48)))
+(((-822 |#1|) (-13 (-784) (-962 (-613 |#1|)) (-10 -8 (-15 1 ($) -2855) (-15 -2217 ((-756 |#1|) $)) (-15 -2217 ($ |#1|)) (-15 -2337 ((-613 |#1|) $)) (-15 -4030 ((-708) $)) (-15 -1738 ((-588 (-613 |#1|)) $)) (-15 -2352 ($ $)) (-15 -1608 ((-108) $)) (-15 -4127 ((-588 |#1|) $)))) (-784)) (T -822))
+((-3709 (*1 *1) (-12 (-5 *1 (-822 *2)) (-4 *2 (-784)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-756 *3)) (-5 *1 (-822 *3)) (-4 *3 (-784)))) (-2217 (*1 *1 *2) (-12 (-5 *1 (-822 *2)) (-4 *2 (-784)))) (-2337 (*1 *2 *1) (-12 (-5 *2 (-613 *3)) (-5 *1 (-822 *3)) (-4 *3 (-784)))) (-4030 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-822 *3)) (-4 *3 (-784)))) (-1738 (*1 *2 *1) (-12 (-5 *2 (-588 (-613 *3))) (-5 *1 (-822 *3)) (-4 *3 (-784)))) (-2352 (*1 *1 *1) (-12 (-5 *1 (-822 *2)) (-4 *2 (-784)))) (-1608 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-822 *3)) (-4 *3 (-784)))) (-4127 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-822 *3)) (-4 *3 (-784)))))
+(-13 (-784) (-962 (-613 |#1|)) (-10 -8 (-15 (-3709) ($) -2855) (-15 -2217 ((-756 |#1|) $)) (-15 -2217 ($ |#1|)) (-15 -2337 ((-613 |#1|) $)) (-15 -4030 ((-708) $)) (-15 -1738 ((-588 (-613 |#1|)) $)) (-15 -2352 ($ $)) (-15 -1608 ((-108) $)) (-15 -4127 ((-588 |#1|) $))))
+((-2262 ((|#1| |#1| |#1|) 20)))
+(((-823 |#1| |#2|) (-10 -7 (-15 -2262 (|#1| |#1| |#1|))) (-1142 |#2|) (-971)) (T -823))
+((-2262 (*1 *2 *2 *2) (-12 (-4 *3 (-971)) (-5 *1 (-823 *2 *3)) (-4 *2 (-1142 *3)))))
+(-10 -7 (-15 -2262 (|#1| |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-1361 (((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 14)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3536 (((-960) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 13)) (-1562 (((-108) $ $) 6)))
(((-824) (-1197)) (T -824))
-((-1798 (*1 *2 *3 *4) (-12 (-4 *1 (-824)) (-5 *3 (-983)) (-5 *4 (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) (-5 *2 (-2 (|:| -1798 (-354)) (|:| |explanations| (-1068)))))) (-3377 (*1 *2 *3) (-12 (-4 *1 (-824)) (-5 *3 (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) (-5 *2 (-960)))))
-(-13 (-1014) (-10 -7 (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))))) (-15 -3377 ((-960) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))))))
+((-1361 (*1 *2 *3 *4) (-12 (-4 *1 (-824)) (-5 *3 (-983)) (-5 *4 (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) (-5 *2 (-2 (|:| -1361 (-354)) (|:| |explanations| (-1068)))))) (-3536 (*1 *2 *3) (-12 (-4 *1 (-824)) (-5 *3 (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) (-5 *2 (-960)))))
+(-13 (-1014) (-10 -7 (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))) (-983) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))))) (-15 -3536 ((-960) (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1806 ((|#1| |#1| (-708)) 24)) (-3741 (((-3 |#1| "failed") |#1| |#1|) 23)) (-3496 (((-3 (-2 (|:| -1913 |#1|) (|:| -1924 |#1|)) "failed") |#1| (-708) (-708)) 27) (((-588 |#1|) |#1|) 29)))
-(((-825 |#1| |#2|) (-10 -7 (-15 -3496 ((-588 |#1|) |#1|)) (-15 -3496 ((-3 (-2 (|:| -1913 |#1|) (|:| -1924 |#1|)) "failed") |#1| (-708) (-708))) (-15 -3741 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1806 (|#1| |#1| (-708)))) (-1142 |#2|) (-338)) (T -825))
-((-1806 (*1 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-338)) (-5 *1 (-825 *2 *4)) (-4 *2 (-1142 *4)))) (-3741 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-338)) (-5 *1 (-825 *2 *3)) (-4 *2 (-1142 *3)))) (-3496 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-708)) (-4 *5 (-338)) (-5 *2 (-2 (|:| -1913 *3) (|:| -1924 *3))) (-5 *1 (-825 *3 *5)) (-4 *3 (-1142 *5)))) (-3496 (*1 *2 *3) (-12 (-4 *4 (-338)) (-5 *2 (-588 *3)) (-5 *1 (-825 *3 *4)) (-4 *3 (-1142 *4)))))
-(-10 -7 (-15 -3496 ((-588 |#1|) |#1|)) (-15 -3496 ((-3 (-2 (|:| -1913 |#1|) (|:| -1924 |#1|)) "failed") |#1| (-708) (-708))) (-15 -3741 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1806 (|#1| |#1| (-708))))
-((-3426 (((-960) (-354) (-354) (-354) (-354) (-708) (-708) (-588 (-291 (-354))) (-588 (-588 (-291 (-354)))) (-1068)) 92) (((-960) (-354) (-354) (-354) (-354) (-708) (-708) (-588 (-291 (-354))) (-588 (-588 (-291 (-354)))) (-1068) (-202)) 87) (((-960) (-827) (-983)) 76) (((-960) (-827)) 77)) (-1798 (((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-827) (-983)) 50) (((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-827)) 52)))
-(((-826) (-10 -7 (-15 -3426 ((-960) (-827))) (-15 -3426 ((-960) (-827) (-983))) (-15 -3426 ((-960) (-354) (-354) (-354) (-354) (-708) (-708) (-588 (-291 (-354))) (-588 (-588 (-291 (-354)))) (-1068) (-202))) (-15 -3426 ((-960) (-354) (-354) (-354) (-354) (-708) (-708) (-588 (-291 (-354))) (-588 (-588 (-291 (-354)))) (-1068))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-827))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-827) (-983))))) (T -826))
-((-1798 (*1 *2 *3 *4) (-12 (-5 *3 (-827)) (-5 *4 (-983)) (-5 *2 (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *1 (-826)))) (-1798 (*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *1 (-826)))) (-3426 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-708)) (-5 *6 (-588 (-588 (-291 *3)))) (-5 *7 (-1068)) (-5 *5 (-588 (-291 (-354)))) (-5 *3 (-354)) (-5 *2 (-960)) (-5 *1 (-826)))) (-3426 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-708)) (-5 *6 (-588 (-588 (-291 *3)))) (-5 *7 (-1068)) (-5 *8 (-202)) (-5 *5 (-588 (-291 (-354)))) (-5 *3 (-354)) (-5 *2 (-960)) (-5 *1 (-826)))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-827)) (-5 *4 (-983)) (-5 *2 (-960)) (-5 *1 (-826)))) (-3426 (*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-960)) (-5 *1 (-826)))))
-(-10 -7 (-15 -3426 ((-960) (-827))) (-15 -3426 ((-960) (-827) (-983))) (-15 -3426 ((-960) (-354) (-354) (-354) (-354) (-708) (-708) (-588 (-291 (-354))) (-588 (-588 (-291 (-354)))) (-1068) (-202))) (-15 -3426 ((-960) (-354) (-354) (-354) (-354) (-708) (-708) (-588 (-291 (-354))) (-588 (-588 (-291 (-354)))) (-1068))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-827))) (-15 -1798 ((-2 (|:| -1798 (-354)) (|:| -2888 (-1068)) (|:| |explanations| (-588 (-1068)))) (-827) (-983))))
-((-1416 (((-108) $ $) NIL)) (-1484 (((-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))) $) 10)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 12) (($ (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 9)) (-1531 (((-108) $ $) NIL)))
-(((-827) (-13 (-1014) (-10 -8 (-15 -2190 ($ (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))))) (-15 -2190 ((-792) $)) (-15 -1484 ((-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))) $))))) (T -827))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-827)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) (-5 *1 (-827)))) (-1484 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) (-5 *1 (-827)))))
-(-13 (-1014) (-10 -8 (-15 -2190 ($ (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))))) (-15 -2190 ((-792) $)) (-15 -1484 ((-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))) $))))
-((-2157 (($ $ |#2|) NIL) (($ $ (-588 |#2|)) 10) (($ $ |#2| (-708)) 12) (($ $ (-588 |#2|) (-588 (-708))) 15)) (-2213 (($ $ |#2|) 16) (($ $ (-588 |#2|)) 18) (($ $ |#2| (-708)) 19) (($ $ (-588 |#2|) (-588 (-708))) 21)))
-(((-828 |#1| |#2|) (-10 -8 (-15 -2213 (|#1| |#1| (-588 |#2|) (-588 (-708)))) (-15 -2213 (|#1| |#1| |#2| (-708))) (-15 -2213 (|#1| |#1| (-588 |#2|))) (-15 -2213 (|#1| |#1| |#2|)) (-15 -2157 (|#1| |#1| (-588 |#2|) (-588 (-708)))) (-15 -2157 (|#1| |#1| |#2| (-708))) (-15 -2157 (|#1| |#1| (-588 |#2|))) (-15 -2157 (|#1| |#1| |#2|))) (-829 |#2|) (-1014)) (T -828))
-NIL
-(-10 -8 (-15 -2213 (|#1| |#1| (-588 |#2|) (-588 (-708)))) (-15 -2213 (|#1| |#1| |#2| (-708))) (-15 -2213 (|#1| |#1| (-588 |#2|))) (-15 -2213 (|#1| |#1| |#2|)) (-15 -2157 (|#1| |#1| (-588 |#2|) (-588 (-708)))) (-15 -2157 (|#1| |#1| |#2| (-708))) (-15 -2157 (|#1| |#1| (-588 |#2|))) (-15 -2157 (|#1| |#1| |#2|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2157 (($ $ |#1|) 42) (($ $ (-588 |#1|)) 41) (($ $ |#1| (-708)) 40) (($ $ (-588 |#1|) (-588 (-708))) 39)) (-2190 (((-792) $) 11) (($ (-522)) 28)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ |#1|) 38) (($ $ (-588 |#1|)) 37) (($ $ |#1| (-708)) 36) (($ $ (-588 |#1|) (-588 (-708))) 35)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-3822 ((|#1| |#1| (-708)) 24)) (-3031 (((-3 |#1| "failed") |#1| |#1|) 23)) (-2327 (((-3 (-2 (|:| -1993 |#1|) (|:| -2002 |#1|)) "failed") |#1| (-708) (-708)) 27) (((-588 |#1|) |#1|) 29)))
+(((-825 |#1| |#2|) (-10 -7 (-15 -2327 ((-588 |#1|) |#1|)) (-15 -2327 ((-3 (-2 (|:| -1993 |#1|) (|:| -2002 |#1|)) "failed") |#1| (-708) (-708))) (-15 -3031 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3822 (|#1| |#1| (-708)))) (-1142 |#2|) (-338)) (T -825))
+((-3822 (*1 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-338)) (-5 *1 (-825 *2 *4)) (-4 *2 (-1142 *4)))) (-3031 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-338)) (-5 *1 (-825 *2 *3)) (-4 *2 (-1142 *3)))) (-2327 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-708)) (-4 *5 (-338)) (-5 *2 (-2 (|:| -1993 *3) (|:| -2002 *3))) (-5 *1 (-825 *3 *5)) (-4 *3 (-1142 *5)))) (-2327 (*1 *2 *3) (-12 (-4 *4 (-338)) (-5 *2 (-588 *3)) (-5 *1 (-825 *3 *4)) (-4 *3 (-1142 *4)))))
+(-10 -7 (-15 -2327 ((-588 |#1|) |#1|)) (-15 -2327 ((-3 (-2 (|:| -1993 |#1|) (|:| -2002 |#1|)) "failed") |#1| (-708) (-708))) (-15 -3031 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3822 (|#1| |#1| (-708))))
+((-2925 (((-960) (-354) (-354) (-354) (-354) (-708) (-708) (-588 (-291 (-354))) (-588 (-588 (-291 (-354)))) (-1068)) 92) (((-960) (-354) (-354) (-354) (-354) (-708) (-708) (-588 (-291 (-354))) (-588 (-588 (-291 (-354)))) (-1068) (-202)) 87) (((-960) (-827) (-983)) 76) (((-960) (-827)) 77)) (-1361 (((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-827) (-983)) 50) (((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-827)) 52)))
+(((-826) (-10 -7 (-15 -2925 ((-960) (-827))) (-15 -2925 ((-960) (-827) (-983))) (-15 -2925 ((-960) (-354) (-354) (-354) (-354) (-708) (-708) (-588 (-291 (-354))) (-588 (-588 (-291 (-354)))) (-1068) (-202))) (-15 -2925 ((-960) (-354) (-354) (-354) (-354) (-708) (-708) (-588 (-291 (-354))) (-588 (-588 (-291 (-354)))) (-1068))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-827))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-827) (-983))))) (T -826))
+((-1361 (*1 *2 *3 *4) (-12 (-5 *3 (-827)) (-5 *4 (-983)) (-5 *2 (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *1 (-826)))) (-1361 (*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068))))) (-5 *1 (-826)))) (-2925 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-708)) (-5 *6 (-588 (-588 (-291 *3)))) (-5 *7 (-1068)) (-5 *5 (-588 (-291 (-354)))) (-5 *3 (-354)) (-5 *2 (-960)) (-5 *1 (-826)))) (-2925 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-708)) (-5 *6 (-588 (-588 (-291 *3)))) (-5 *7 (-1068)) (-5 *8 (-202)) (-5 *5 (-588 (-291 (-354)))) (-5 *3 (-354)) (-5 *2 (-960)) (-5 *1 (-826)))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-827)) (-5 *4 (-983)) (-5 *2 (-960)) (-5 *1 (-826)))) (-2925 (*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-960)) (-5 *1 (-826)))))
+(-10 -7 (-15 -2925 ((-960) (-827))) (-15 -2925 ((-960) (-827) (-983))) (-15 -2925 ((-960) (-354) (-354) (-354) (-354) (-708) (-708) (-588 (-291 (-354))) (-588 (-588 (-291 (-354)))) (-1068) (-202))) (-15 -2925 ((-960) (-354) (-354) (-354) (-354) (-708) (-708) (-588 (-291 (-354))) (-588 (-588 (-291 (-354)))) (-1068))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-827))) (-15 -1361 ((-2 (|:| -1361 (-354)) (|:| -3015 (-1068)) (|:| |explanations| (-588 (-1068)))) (-827) (-983))))
+((-1419 (((-108) $ $) NIL)) (-1478 (((-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))) $) 10)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 12) (($ (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) 9)) (-1562 (((-108) $ $) NIL)))
+(((-827) (-13 (-1014) (-10 -8 (-15 -2217 ($ (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))))) (-15 -2217 ((-792) $)) (-15 -1478 ((-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))) $))))) (T -827))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-827)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) (-5 *1 (-827)))) (-1478 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202)))) (-5 *1 (-827)))))
+(-13 (-1014) (-10 -8 (-15 -2217 ($ (-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))))) (-15 -2217 ((-792) $)) (-15 -1478 ((-2 (|:| |pde| (-588 (-291 (-202)))) (|:| |constraints| (-588 (-2 (|:| |start| (-202)) (|:| |finish| (-202)) (|:| |grid| (-708)) (|:| |boundaryType| (-522)) (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202)))))) (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068)) (|:| |tol| (-202))) $))))
+((-2731 (($ $ |#2|) NIL) (($ $ (-588 |#2|)) 10) (($ $ |#2| (-708)) 12) (($ $ (-588 |#2|) (-588 (-708))) 15)) (-2252 (($ $ |#2|) 16) (($ $ (-588 |#2|)) 18) (($ $ |#2| (-708)) 19) (($ $ (-588 |#2|) (-588 (-708))) 21)))
+(((-828 |#1| |#2|) (-10 -8 (-15 -2252 (|#1| |#1| (-588 |#2|) (-588 (-708)))) (-15 -2252 (|#1| |#1| |#2| (-708))) (-15 -2252 (|#1| |#1| (-588 |#2|))) (-15 -2252 (|#1| |#1| |#2|)) (-15 -2731 (|#1| |#1| (-588 |#2|) (-588 (-708)))) (-15 -2731 (|#1| |#1| |#2| (-708))) (-15 -2731 (|#1| |#1| (-588 |#2|))) (-15 -2731 (|#1| |#1| |#2|))) (-829 |#2|) (-1014)) (T -828))
+NIL
+(-10 -8 (-15 -2252 (|#1| |#1| (-588 |#2|) (-588 (-708)))) (-15 -2252 (|#1| |#1| |#2| (-708))) (-15 -2252 (|#1| |#1| (-588 |#2|))) (-15 -2252 (|#1| |#1| |#2|)) (-15 -2731 (|#1| |#1| (-588 |#2|) (-588 (-708)))) (-15 -2731 (|#1| |#1| |#2| (-708))) (-15 -2731 (|#1| |#1| (-588 |#2|))) (-15 -2731 (|#1| |#1| |#2|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2731 (($ $ |#1|) 42) (($ $ (-588 |#1|)) 41) (($ $ |#1| (-708)) 40) (($ $ (-588 |#1|) (-588 (-708))) 39)) (-2217 (((-792) $) 11) (($ (-522)) 28)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ |#1|) 38) (($ $ (-588 |#1|)) 37) (($ $ |#1| (-708)) 36) (($ $ (-588 |#1|) (-588 (-708))) 35)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-829 |#1|) (-1197) (-1014)) (T -829))
-((-2157 (*1 *1 *1 *2) (-12 (-4 *1 (-829 *2)) (-4 *2 (-1014)))) (-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *1 (-829 *3)) (-4 *3 (-1014)))) (-2157 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-829 *2)) (-4 *2 (-1014)))) (-2157 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *4)) (-5 *3 (-588 (-708))) (-4 *1 (-829 *4)) (-4 *4 (-1014)))) (-2213 (*1 *1 *1 *2) (-12 (-4 *1 (-829 *2)) (-4 *2 (-1014)))) (-2213 (*1 *1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *1 (-829 *3)) (-4 *3 (-1014)))) (-2213 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-829 *2)) (-4 *2 (-1014)))) (-2213 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *4)) (-5 *3 (-588 (-708))) (-4 *1 (-829 *4)) (-4 *4 (-1014)))))
-(-13 (-971) (-10 -8 (-15 -2157 ($ $ |t#1|)) (-15 -2157 ($ $ (-588 |t#1|))) (-15 -2157 ($ $ |t#1| (-708))) (-15 -2157 ($ $ (-588 |t#1|) (-588 (-708)))) (-15 -2213 ($ $ |t#1|)) (-15 -2213 ($ $ (-588 |t#1|))) (-15 -2213 ($ $ |t#1| (-708))) (-15 -2213 ($ $ (-588 |t#1|) (-588 (-708))))))
+((-2731 (*1 *1 *1 *2) (-12 (-4 *1 (-829 *2)) (-4 *2 (-1014)))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *1 (-829 *3)) (-4 *3 (-1014)))) (-2731 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-829 *2)) (-4 *2 (-1014)))) (-2731 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *4)) (-5 *3 (-588 (-708))) (-4 *1 (-829 *4)) (-4 *4 (-1014)))) (-2252 (*1 *1 *1 *2) (-12 (-4 *1 (-829 *2)) (-4 *2 (-1014)))) (-2252 (*1 *1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *1 (-829 *3)) (-4 *3 (-1014)))) (-2252 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-829 *2)) (-4 *2 (-1014)))) (-2252 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *4)) (-5 *3 (-588 (-708))) (-4 *1 (-829 *4)) (-4 *4 (-1014)))))
+(-13 (-971) (-10 -8 (-15 -2731 ($ $ |t#1|)) (-15 -2731 ($ $ (-588 |t#1|))) (-15 -2731 ($ $ |t#1| (-708))) (-15 -2731 ($ $ (-588 |t#1|) (-588 (-708)))) (-15 -2252 ($ $ |t#1|)) (-15 -2252 ($ $ (-588 |t#1|))) (-15 -2252 ($ $ |t#1| (-708))) (-15 -2252 ($ $ (-588 |t#1|) (-588 (-708))))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 $) . T) ((-664) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3435 ((|#1| $) 26)) (-4141 (((-108) $ (-708)) NIL)) (-3628 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-1872 (($ $ $) NIL (|has| $ (-6 -4239)))) (-2173 (($ $ $) NIL (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "left" $) NIL (|has| $ (-6 -4239))) (($ $ "right" $) NIL (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-1924 (($ $) 25)) (-1797 (($ |#1|) 12) (($ $ $) 17)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) NIL)) (-2030 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-1913 (($ $) 23)) (-1279 (((-588 |#1|) $) NIL)) (-1754 (((-108) $) 20)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2011 (((-522) $ $) NIL)) (-3042 (((-108) $) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-1107 |#1|) $) 9) (((-792) $) 29 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) NIL)) (-2425 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 21 (|has| |#1| (-1014)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-830 |#1|) (-13 (-115 |#1|) (-10 -8 (-15 -1797 ($ |#1|)) (-15 -1797 ($ $ $)) (-15 -2190 ((-1107 |#1|) $)))) (-1014)) (T -830))
-((-1797 (*1 *1 *2) (-12 (-5 *1 (-830 *2)) (-4 *2 (-1014)))) (-1797 (*1 *1 *1 *1) (-12 (-5 *1 (-830 *2)) (-4 *2 (-1014)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-1107 *3)) (-5 *1 (-830 *3)) (-4 *3 (-1014)))))
-(-13 (-115 |#1|) (-10 -8 (-15 -1797 ($ |#1|)) (-15 -1797 ($ $ $)) (-15 -2190 ((-1107 |#1|) $))))
-((-3947 ((|#2| (-1052 |#1| |#2|)) 41)))
-(((-831 |#1| |#2|) (-10 -7 (-15 -3947 (|#2| (-1052 |#1| |#2|)))) (-850) (-13 (-971) (-10 -7 (-6 (-4240 "*"))))) (T -831))
-((-3947 (*1 *2 *3) (-12 (-5 *3 (-1052 *4 *2)) (-14 *4 (-850)) (-4 *2 (-13 (-971) (-10 -7 (-6 (-4240 "*"))))) (-5 *1 (-831 *4 *2)))))
-(-10 -7 (-15 -3947 (|#2| (-1052 |#1| |#2|))))
-((-1416 (((-108) $ $) 7)) (-3175 (($) 20 T CONST)) (-2682 (((-3 $ "failed") $) 16)) (-3466 (((-1016 |#1|) $ |#1|) 35)) (-2782 (((-108) $) 19)) (-2814 (($ $ $) 33 (-3708 (|has| |#1| (-784)) (|has| |#1| (-343))))) (-2446 (($ $ $) 32 (-3708 (|has| |#1| (-784)) (|has| |#1| (-343))))) (-2385 (((-1068) $) 9)) (-3098 (($ $) 27)) (-4151 (((-1032) $) 10)) (-2289 ((|#1| $ |#1|) 37)) (-2545 ((|#1| $ |#1|) 36)) (-2550 (($ (-588 (-588 |#1|))) 38)) (-2890 (($ (-588 |#1|)) 39)) (-3122 (($ $ $) 23)) (-1288 (($ $ $) 22)) (-2190 (((-792) $) 11)) (-3510 (($ $ (-850)) 13) (($ $ (-708)) 17) (($ $ (-522)) 24)) (-3577 (($) 21 T CONST)) (-1574 (((-108) $ $) 30 (-3708 (|has| |#1| (-784)) (|has| |#1| (-343))))) (-1558 (((-108) $ $) 29 (-3708 (|has| |#1| (-784)) (|has| |#1| (-343))))) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 31 (-3708 (|has| |#1| (-784)) (|has| |#1| (-343))))) (-1549 (((-108) $ $) 34)) (-1620 (($ $ $) 26)) (** (($ $ (-850)) 14) (($ $ (-708)) 18) (($ $ (-522)) 25)) (* (($ $ $) 15)))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3526 ((|#1| $) 26)) (-2717 (((-108) $ (-708)) NIL)) (-1198 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-2766 (($ $ $) NIL (|has| $ (-6 -4239)))) (-3268 (($ $ $) NIL (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) (($ $ "left" $) NIL (|has| $ (-6 -4239))) (($ $ "right" $) NIL (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-2002 (($ $) 25)) (-1891 (($ |#1|) 12) (($ $ $) 17)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) NIL)) (-2402 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-1993 (($ $) 23)) (-2548 (((-588 |#1|) $) NIL)) (-3394 (((-108) $) 20)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3381 (((-522) $ $) NIL)) (-3395 (((-108) $) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-1107 |#1|) $) 9) (((-792) $) 29 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) NIL)) (-3294 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 21 (|has| |#1| (-1014)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-830 |#1|) (-13 (-115 |#1|) (-10 -8 (-15 -1891 ($ |#1|)) (-15 -1891 ($ $ $)) (-15 -2217 ((-1107 |#1|) $)))) (-1014)) (T -830))
+((-1891 (*1 *1 *2) (-12 (-5 *1 (-830 *2)) (-4 *2 (-1014)))) (-1891 (*1 *1 *1 *1) (-12 (-5 *1 (-830 *2)) (-4 *2 (-1014)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-1107 *3)) (-5 *1 (-830 *3)) (-4 *3 (-1014)))))
+(-13 (-115 |#1|) (-10 -8 (-15 -1891 ($ |#1|)) (-15 -1891 ($ $ $)) (-15 -2217 ((-1107 |#1|) $))))
+((-1303 ((|#2| (-1052 |#1| |#2|)) 41)))
+(((-831 |#1| |#2|) (-10 -7 (-15 -1303 (|#2| (-1052 |#1| |#2|)))) (-850) (-13 (-971) (-10 -7 (-6 (-4240 "*"))))) (T -831))
+((-1303 (*1 *2 *3) (-12 (-5 *3 (-1052 *4 *2)) (-14 *4 (-850)) (-4 *2 (-13 (-971) (-10 -7 (-6 (-4240 "*"))))) (-5 *1 (-831 *4 *2)))))
+(-10 -7 (-15 -1303 (|#2| (-1052 |#1| |#2|))))
+((-1419 (((-108) $ $) 7)) (-3367 (($) 20 T CONST)) (-3920 (((-3 $ "failed") $) 16)) (-3246 (((-1016 |#1|) $ |#1|) 35)) (-2859 (((-108) $) 19)) (-1308 (($ $ $) 33 (-3844 (|has| |#1| (-784)) (|has| |#1| (-343))))) (-2524 (($ $ $) 32 (-3844 (|has| |#1| (-784)) (|has| |#1| (-343))))) (-2311 (((-1068) $) 9)) (-3193 (($ $) 27)) (-4174 (((-1032) $) 10)) (-2330 ((|#1| $ |#1|) 37)) (-2683 ((|#1| $ |#1|) 36)) (-3683 (($ (-588 (-588 |#1|))) 38)) (-1436 (($ (-588 |#1|)) 39)) (-2983 (($ $ $) 23)) (-1596 (($ $ $) 22)) (-2217 (((-792) $) 11)) (-3622 (($ $ (-850)) 13) (($ $ (-708)) 17) (($ $ (-522)) 24)) (-3709 (($) 21 T CONST)) (-1623 (((-108) $ $) 30 (-3844 (|has| |#1| (-784)) (|has| |#1| (-343))))) (-1597 (((-108) $ $) 29 (-3844 (|has| |#1| (-784)) (|has| |#1| (-343))))) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 31 (-3844 (|has| |#1| (-784)) (|has| |#1| (-343))))) (-1587 (((-108) $ $) 34)) (-1682 (($ $ $) 26)) (** (($ $ (-850)) 14) (($ $ (-708)) 18) (($ $ (-522)) 25)) (* (($ $ $) 15)))
(((-832 |#1|) (-1197) (-1014)) (T -832))
-((-2890 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-832 *3)))) (-2550 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-4 *1 (-832 *3)))) (-2289 (*1 *2 *1 *2) (-12 (-4 *1 (-832 *2)) (-4 *2 (-1014)))) (-2545 (*1 *2 *1 *2) (-12 (-4 *1 (-832 *2)) (-4 *2 (-1014)))) (-3466 (*1 *2 *1 *3) (-12 (-4 *1 (-832 *3)) (-4 *3 (-1014)) (-5 *2 (-1016 *3)))) (-1549 (*1 *2 *1 *1) (-12 (-4 *1 (-832 *3)) (-4 *3 (-1014)) (-5 *2 (-108)))))
-(-13 (-447) (-10 -8 (-15 -2890 ($ (-588 |t#1|))) (-15 -2550 ($ (-588 (-588 |t#1|)))) (-15 -2289 (|t#1| $ |t#1|)) (-15 -2545 (|t#1| $ |t#1|)) (-15 -3466 ((-1016 |t#1|) $ |t#1|)) (-15 -1549 ((-108) $ $)) (IF (|has| |t#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#1| (-343)) (-6 (-784)) |%noBranch|)))
-(((-97) . T) ((-562 (-792)) . T) ((-447) . T) ((-664) . T) ((-784) -3708 (|has| |#1| (-784)) (|has| |#1| (-343))) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-1707 (((-588 (-588 (-708))) $) 108)) (-4180 (((-588 (-708)) (-834 |#1|) $) 130)) (-2887 (((-588 (-708)) (-834 |#1|) $) 131)) (-1876 (((-588 (-834 |#1|)) $) 98)) (-3255 (((-834 |#1|) $ (-522)) 103) (((-834 |#1|) $) 104)) (-4043 (($ (-588 (-834 |#1|))) 110)) (-3714 (((-708) $) 105)) (-3565 (((-1016 (-1016 |#1|)) $) 128)) (-3466 (((-1016 |#1|) $ |#1|) 121) (((-1016 (-1016 |#1|)) $ (-1016 |#1|)) 139) (((-1016 (-588 |#1|)) $ (-588 |#1|)) 142)) (-3279 (((-1016 |#1|) $) 101)) (-2246 (((-108) (-834 |#1|) $) 92)) (-2385 (((-1068) $) NIL)) (-2457 (((-1171) $) 95) (((-1171) $ (-522) (-522)) 143)) (-4151 (((-1032) $) NIL)) (-2960 (((-588 (-834 |#1|)) $) 96)) (-2545 (((-834 |#1|) $ (-708)) 99)) (-2793 (((-708) $) 106)) (-2190 (((-792) $) 119) (((-588 (-834 |#1|)) $) 22) (($ (-588 (-834 |#1|))) 109)) (-3355 (((-588 |#1|) $) 107)) (-1531 (((-108) $ $) 136)) (-1566 (((-108) $ $) 134)) (-1549 (((-108) $ $) 133)))
-(((-833 |#1|) (-13 (-1014) (-10 -8 (-15 -2190 ((-588 (-834 |#1|)) $)) (-15 -2960 ((-588 (-834 |#1|)) $)) (-15 -2545 ((-834 |#1|) $ (-708))) (-15 -3255 ((-834 |#1|) $ (-522))) (-15 -3255 ((-834 |#1|) $)) (-15 -3714 ((-708) $)) (-15 -2793 ((-708) $)) (-15 -3355 ((-588 |#1|) $)) (-15 -1876 ((-588 (-834 |#1|)) $)) (-15 -1707 ((-588 (-588 (-708))) $)) (-15 -2190 ($ (-588 (-834 |#1|)))) (-15 -4043 ($ (-588 (-834 |#1|)))) (-15 -3466 ((-1016 |#1|) $ |#1|)) (-15 -3565 ((-1016 (-1016 |#1|)) $)) (-15 -3466 ((-1016 (-1016 |#1|)) $ (-1016 |#1|))) (-15 -3466 ((-1016 (-588 |#1|)) $ (-588 |#1|))) (-15 -2246 ((-108) (-834 |#1|) $)) (-15 -4180 ((-588 (-708)) (-834 |#1|) $)) (-15 -2887 ((-588 (-708)) (-834 |#1|) $)) (-15 -3279 ((-1016 |#1|) $)) (-15 -1549 ((-108) $ $)) (-15 -1566 ((-108) $ $)) (-15 -2457 ((-1171) $)) (-15 -2457 ((-1171) $ (-522) (-522))))) (-1014)) (T -833))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-588 (-834 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-2960 (*1 *2 *1) (-12 (-5 *2 (-588 (-834 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-2545 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *2 (-834 *4)) (-5 *1 (-833 *4)) (-4 *4 (-1014)))) (-3255 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-834 *4)) (-5 *1 (-833 *4)) (-4 *4 (-1014)))) (-3255 (*1 *2 *1) (-12 (-5 *2 (-834 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-3714 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-2793 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-3355 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-1876 (*1 *2 *1) (-12 (-5 *2 (-588 (-834 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-1707 (*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-708)))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-588 (-834 *3))) (-4 *3 (-1014)) (-5 *1 (-833 *3)))) (-4043 (*1 *1 *2) (-12 (-5 *2 (-588 (-834 *3))) (-4 *3 (-1014)) (-5 *1 (-833 *3)))) (-3466 (*1 *2 *1 *3) (-12 (-5 *2 (-1016 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-3565 (*1 *2 *1) (-12 (-5 *2 (-1016 (-1016 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-3466 (*1 *2 *1 *3) (-12 (-4 *4 (-1014)) (-5 *2 (-1016 (-1016 *4))) (-5 *1 (-833 *4)) (-5 *3 (-1016 *4)))) (-3466 (*1 *2 *1 *3) (-12 (-4 *4 (-1014)) (-5 *2 (-1016 (-588 *4))) (-5 *1 (-833 *4)) (-5 *3 (-588 *4)))) (-2246 (*1 *2 *3 *1) (-12 (-5 *3 (-834 *4)) (-4 *4 (-1014)) (-5 *2 (-108)) (-5 *1 (-833 *4)))) (-4180 (*1 *2 *3 *1) (-12 (-5 *3 (-834 *4)) (-4 *4 (-1014)) (-5 *2 (-588 (-708))) (-5 *1 (-833 *4)))) (-2887 (*1 *2 *3 *1) (-12 (-5 *3 (-834 *4)) (-4 *4 (-1014)) (-5 *2 (-588 (-708))) (-5 *1 (-833 *4)))) (-3279 (*1 *2 *1) (-12 (-5 *2 (-1016 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-1549 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-1566 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-2457 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-2457 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-833 *4)) (-4 *4 (-1014)))))
-(-13 (-1014) (-10 -8 (-15 -2190 ((-588 (-834 |#1|)) $)) (-15 -2960 ((-588 (-834 |#1|)) $)) (-15 -2545 ((-834 |#1|) $ (-708))) (-15 -3255 ((-834 |#1|) $ (-522))) (-15 -3255 ((-834 |#1|) $)) (-15 -3714 ((-708) $)) (-15 -2793 ((-708) $)) (-15 -3355 ((-588 |#1|) $)) (-15 -1876 ((-588 (-834 |#1|)) $)) (-15 -1707 ((-588 (-588 (-708))) $)) (-15 -2190 ($ (-588 (-834 |#1|)))) (-15 -4043 ($ (-588 (-834 |#1|)))) (-15 -3466 ((-1016 |#1|) $ |#1|)) (-15 -3565 ((-1016 (-1016 |#1|)) $)) (-15 -3466 ((-1016 (-1016 |#1|)) $ (-1016 |#1|))) (-15 -3466 ((-1016 (-588 |#1|)) $ (-588 |#1|))) (-15 -2246 ((-108) (-834 |#1|) $)) (-15 -4180 ((-588 (-708)) (-834 |#1|) $)) (-15 -2887 ((-588 (-708)) (-834 |#1|) $)) (-15 -3279 ((-1016 |#1|) $)) (-15 -1549 ((-108) $ $)) (-15 -1566 ((-108) $ $)) (-15 -2457 ((-1171) $)) (-15 -2457 ((-1171) $ (-522) (-522)))))
-((-1416 (((-108) $ $) NIL)) (-3216 (((-588 $) (-588 $)) 77)) (-1341 (((-522) $) 60)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) NIL)) (-3714 (((-708) $) 58)) (-3466 (((-1016 |#1|) $ |#1|) 49)) (-2782 (((-108) $) NIL)) (-2591 (((-108) $) 63)) (-4007 (((-708) $) 61)) (-3279 (((-1016 |#1|) $) 42)) (-2814 (($ $ $) NIL (-3708 (|has| |#1| (-343)) (|has| |#1| (-784))))) (-2446 (($ $ $) NIL (-3708 (|has| |#1| (-343)) (|has| |#1| (-784))))) (-1740 (((-2 (|:| |preimage| (-588 |#1|)) (|:| |image| (-588 |#1|))) $) 36)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 93)) (-4151 (((-1032) $) NIL)) (-2057 (((-1016 |#1|) $) 99 (|has| |#1| (-343)))) (-1263 (((-108) $) 59)) (-2289 ((|#1| $ |#1|) 47)) (-2545 ((|#1| $ |#1|) 94)) (-2793 (((-708) $) 44)) (-2550 (($ (-588 (-588 |#1|))) 85)) (-1449 (((-898) $) 53)) (-2890 (($ (-588 |#1|)) 21)) (-3122 (($ $ $) NIL)) (-1288 (($ $ $) NIL)) (-2854 (($ (-588 (-588 |#1|))) 39)) (-1823 (($ (-588 (-588 |#1|))) 88)) (-2501 (($ (-588 |#1|)) 96)) (-2190 (((-792) $) 84) (($ (-588 (-588 |#1|))) 66) (($ (-588 |#1|)) 67)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3577 (($) 16 T CONST)) (-1574 (((-108) $ $) NIL (-3708 (|has| |#1| (-343)) (|has| |#1| (-784))))) (-1558 (((-108) $ $) NIL (-3708 (|has| |#1| (-343)) (|has| |#1| (-784))))) (-1531 (((-108) $ $) 45)) (-1566 (((-108) $ $) NIL (-3708 (|has| |#1| (-343)) (|has| |#1| (-784))))) (-1549 (((-108) $ $) 65)) (-1620 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ $ $) 22)))
-(((-834 |#1|) (-13 (-832 |#1|) (-10 -8 (-15 -1740 ((-2 (|:| |preimage| (-588 |#1|)) (|:| |image| (-588 |#1|))) $)) (-15 -2854 ($ (-588 (-588 |#1|)))) (-15 -2190 ($ (-588 (-588 |#1|)))) (-15 -2190 ($ (-588 |#1|))) (-15 -1823 ($ (-588 (-588 |#1|)))) (-15 -2793 ((-708) $)) (-15 -3279 ((-1016 |#1|) $)) (-15 -1449 ((-898) $)) (-15 -3714 ((-708) $)) (-15 -4007 ((-708) $)) (-15 -1341 ((-522) $)) (-15 -1263 ((-108) $)) (-15 -2591 ((-108) $)) (-15 -3216 ((-588 $) (-588 $))) (IF (|has| |#1| (-343)) (-15 -2057 ((-1016 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-507)) (-15 -2501 ($ (-588 |#1|))) (IF (|has| |#1| (-343)) (-15 -2501 ($ (-588 |#1|))) |%noBranch|)))) (-1014)) (T -834))
-((-1740 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-588 *3)) (|:| |image| (-588 *3)))) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-2854 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-834 *3)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-834 *3)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-834 *3)))) (-1823 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-834 *3)))) (-2793 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-3279 (*1 *2 *1) (-12 (-5 *2 (-1016 *3)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-1449 (*1 *2 *1) (-12 (-5 *2 (-898)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-3714 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-4007 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-1341 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-1263 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-2591 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-3216 (*1 *2 *2) (-12 (-5 *2 (-588 (-834 *3))) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-2057 (*1 *2 *1) (-12 (-5 *2 (-1016 *3)) (-5 *1 (-834 *3)) (-4 *3 (-343)) (-4 *3 (-1014)))) (-2501 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-834 *3)))))
-(-13 (-832 |#1|) (-10 -8 (-15 -1740 ((-2 (|:| |preimage| (-588 |#1|)) (|:| |image| (-588 |#1|))) $)) (-15 -2854 ($ (-588 (-588 |#1|)))) (-15 -2190 ($ (-588 (-588 |#1|)))) (-15 -2190 ($ (-588 |#1|))) (-15 -1823 ($ (-588 (-588 |#1|)))) (-15 -2793 ((-708) $)) (-15 -3279 ((-1016 |#1|) $)) (-15 -1449 ((-898) $)) (-15 -3714 ((-708) $)) (-15 -4007 ((-708) $)) (-15 -1341 ((-522) $)) (-15 -1263 ((-108) $)) (-15 -2591 ((-108) $)) (-15 -3216 ((-588 $) (-588 $))) (IF (|has| |#1| (-343)) (-15 -2057 ((-1016 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-507)) (-15 -2501 ($ (-588 |#1|))) (IF (|has| |#1| (-343)) (-15 -2501 ($ (-588 |#1|))) |%noBranch|))))
-((-2689 (((-3 (-588 (-1081 |#4|)) "failed") (-588 (-1081 |#4|)) (-1081 |#4|)) 128)) (-2986 ((|#1|) 76)) (-3569 (((-393 (-1081 |#4|)) (-1081 |#4|)) 137)) (-2411 (((-393 (-1081 |#4|)) (-588 |#3|) (-1081 |#4|)) 68)) (-2572 (((-393 (-1081 |#4|)) (-1081 |#4|)) 147)) (-2342 (((-3 (-588 (-1081 |#4|)) "failed") (-588 (-1081 |#4|)) (-1081 |#4|) |#3|) 92)))
-(((-835 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2689 ((-3 (-588 (-1081 |#4|)) "failed") (-588 (-1081 |#4|)) (-1081 |#4|))) (-15 -2572 ((-393 (-1081 |#4|)) (-1081 |#4|))) (-15 -3569 ((-393 (-1081 |#4|)) (-1081 |#4|))) (-15 -2986 (|#1|)) (-15 -2342 ((-3 (-588 (-1081 |#4|)) "failed") (-588 (-1081 |#4|)) (-1081 |#4|) |#3|)) (-15 -2411 ((-393 (-1081 |#4|)) (-588 |#3|) (-1081 |#4|)))) (-838) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -835))
-((-2411 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *7)) (-4 *7 (-784)) (-4 *5 (-838)) (-4 *6 (-730)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-393 (-1081 *8))) (-5 *1 (-835 *5 *6 *7 *8)) (-5 *4 (-1081 *8)))) (-2342 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-588 (-1081 *7))) (-5 *3 (-1081 *7)) (-4 *7 (-878 *5 *6 *4)) (-4 *5 (-838)) (-4 *6 (-730)) (-4 *4 (-784)) (-5 *1 (-835 *5 *6 *4 *7)))) (-2986 (*1 *2) (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-838)) (-5 *1 (-835 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (-3569 (*1 *2 *3) (-12 (-4 *4 (-838)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-393 (-1081 *7))) (-5 *1 (-835 *4 *5 *6 *7)) (-5 *3 (-1081 *7)))) (-2572 (*1 *2 *3) (-12 (-4 *4 (-838)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-393 (-1081 *7))) (-5 *1 (-835 *4 *5 *6 *7)) (-5 *3 (-1081 *7)))) (-2689 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-1081 *7))) (-5 *3 (-1081 *7)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-838)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-835 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2689 ((-3 (-588 (-1081 |#4|)) "failed") (-588 (-1081 |#4|)) (-1081 |#4|))) (-15 -2572 ((-393 (-1081 |#4|)) (-1081 |#4|))) (-15 -3569 ((-393 (-1081 |#4|)) (-1081 |#4|))) (-15 -2986 (|#1|)) (-15 -2342 ((-3 (-588 (-1081 |#4|)) "failed") (-588 (-1081 |#4|)) (-1081 |#4|) |#3|)) (-15 -2411 ((-393 (-1081 |#4|)) (-588 |#3|) (-1081 |#4|))))
-((-2689 (((-3 (-588 (-1081 |#2|)) "failed") (-588 (-1081 |#2|)) (-1081 |#2|)) 36)) (-2986 ((|#1|) 54)) (-3569 (((-393 (-1081 |#2|)) (-1081 |#2|)) 102)) (-2411 (((-393 (-1081 |#2|)) (-1081 |#2|)) 89)) (-2572 (((-393 (-1081 |#2|)) (-1081 |#2|)) 113)))
-(((-836 |#1| |#2|) (-10 -7 (-15 -2689 ((-3 (-588 (-1081 |#2|)) "failed") (-588 (-1081 |#2|)) (-1081 |#2|))) (-15 -2572 ((-393 (-1081 |#2|)) (-1081 |#2|))) (-15 -3569 ((-393 (-1081 |#2|)) (-1081 |#2|))) (-15 -2986 (|#1|)) (-15 -2411 ((-393 (-1081 |#2|)) (-1081 |#2|)))) (-838) (-1142 |#1|)) (T -836))
-((-2411 (*1 *2 *3) (-12 (-4 *4 (-838)) (-4 *5 (-1142 *4)) (-5 *2 (-393 (-1081 *5))) (-5 *1 (-836 *4 *5)) (-5 *3 (-1081 *5)))) (-2986 (*1 *2) (-12 (-4 *2 (-838)) (-5 *1 (-836 *2 *3)) (-4 *3 (-1142 *2)))) (-3569 (*1 *2 *3) (-12 (-4 *4 (-838)) (-4 *5 (-1142 *4)) (-5 *2 (-393 (-1081 *5))) (-5 *1 (-836 *4 *5)) (-5 *3 (-1081 *5)))) (-2572 (*1 *2 *3) (-12 (-4 *4 (-838)) (-4 *5 (-1142 *4)) (-5 *2 (-393 (-1081 *5))) (-5 *1 (-836 *4 *5)) (-5 *3 (-1081 *5)))) (-2689 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-1081 *5))) (-5 *3 (-1081 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-838)) (-5 *1 (-836 *4 *5)))))
-(-10 -7 (-15 -2689 ((-3 (-588 (-1081 |#2|)) "failed") (-588 (-1081 |#2|)) (-1081 |#2|))) (-15 -2572 ((-393 (-1081 |#2|)) (-1081 |#2|))) (-15 -3569 ((-393 (-1081 |#2|)) (-1081 |#2|))) (-15 -2986 (|#1|)) (-15 -2411 ((-393 (-1081 |#2|)) (-1081 |#2|))))
-((-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 39)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 18)) (-2143 (((-3 $ "failed") $) 33)))
-(((-837 |#1|) (-10 -8 (-15 -2143 ((-3 |#1| "failed") |#1|)) (-15 -1473 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -1307 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|)))) (-838)) (T -837))
-NIL
-(-10 -8 (-15 -2143 ((-3 |#1| "failed") |#1|)) (-15 -1473 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -1307 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-1565 (((-393 (-1081 $)) (-1081 $)) 60)) (-3119 (($ $) 51)) (-3450 (((-393 $) $) 52)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 57)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2813 (((-108) $) 53)) (-2782 (((-108) $) 31)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-3729 (((-393 (-1081 $)) (-1081 $)) 58)) (-3495 (((-393 (-1081 $)) (-1081 $)) 59)) (-1916 (((-393 $) $) 50)) (-2232 (((-3 $ "failed") $ $) 42)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 56 (|has| $ (-133)))) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2143 (((-3 $ "failed") $) 55 (|has| $ (-133)))) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-1436 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-832 *3)))) (-3683 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-4 *1 (-832 *3)))) (-2330 (*1 *2 *1 *2) (-12 (-4 *1 (-832 *2)) (-4 *2 (-1014)))) (-2683 (*1 *2 *1 *2) (-12 (-4 *1 (-832 *2)) (-4 *2 (-1014)))) (-3246 (*1 *2 *1 *3) (-12 (-4 *1 (-832 *3)) (-4 *3 (-1014)) (-5 *2 (-1016 *3)))) (-1587 (*1 *2 *1 *1) (-12 (-4 *1 (-832 *3)) (-4 *3 (-1014)) (-5 *2 (-108)))))
+(-13 (-447) (-10 -8 (-15 -1436 ($ (-588 |t#1|))) (-15 -3683 ($ (-588 (-588 |t#1|)))) (-15 -2330 (|t#1| $ |t#1|)) (-15 -2683 (|t#1| $ |t#1|)) (-15 -3246 ((-1016 |t#1|) $ |t#1|)) (-15 -1587 ((-108) $ $)) (IF (|has| |t#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#1| (-343)) (-6 (-784)) |%noBranch|)))
+(((-97) . T) ((-562 (-792)) . T) ((-447) . T) ((-664) . T) ((-784) -3844 (|has| |#1| (-784)) (|has| |#1| (-343))) ((-1026) . T) ((-1014) . T))
+((-1419 (((-108) $ $) NIL)) (-4137 (((-588 (-588 (-708))) $) 108)) (-1808 (((-588 (-708)) (-834 |#1|) $) 130)) (-1417 (((-588 (-708)) (-834 |#1|) $) 131)) (-2812 (((-588 (-834 |#1|)) $) 98)) (-3344 (((-834 |#1|) $ (-522)) 103) (((-834 |#1|) $) 104)) (-4071 (($ (-588 (-834 |#1|))) 110)) (-3872 (((-708) $) 105)) (-1824 (((-1016 (-1016 |#1|)) $) 128)) (-3246 (((-1016 |#1|) $ |#1|) 121) (((-1016 (-1016 |#1|)) $ (-1016 |#1|)) 139) (((-1016 (-588 |#1|)) $ (-588 |#1|)) 142)) (-1965 (((-1016 |#1|) $) 101)) (-4176 (((-108) (-834 |#1|) $) 92)) (-2311 (((-1068) $) NIL)) (-2699 (((-1171) $) 95) (((-1171) $ (-522) (-522)) 143)) (-4174 (((-1032) $) NIL)) (-3915 (((-588 (-834 |#1|)) $) 96)) (-2683 (((-834 |#1|) $ (-708)) 99)) (-2487 (((-708) $) 106)) (-2217 (((-792) $) 119) (((-588 (-834 |#1|)) $) 22) (($ (-588 (-834 |#1|))) 109)) (-1897 (((-588 |#1|) $) 107)) (-1562 (((-108) $ $) 136)) (-1609 (((-108) $ $) 134)) (-1587 (((-108) $ $) 133)))
+(((-833 |#1|) (-13 (-1014) (-10 -8 (-15 -2217 ((-588 (-834 |#1|)) $)) (-15 -3915 ((-588 (-834 |#1|)) $)) (-15 -2683 ((-834 |#1|) $ (-708))) (-15 -3344 ((-834 |#1|) $ (-522))) (-15 -3344 ((-834 |#1|) $)) (-15 -3872 ((-708) $)) (-15 -2487 ((-708) $)) (-15 -1897 ((-588 |#1|) $)) (-15 -2812 ((-588 (-834 |#1|)) $)) (-15 -4137 ((-588 (-588 (-708))) $)) (-15 -2217 ($ (-588 (-834 |#1|)))) (-15 -4071 ($ (-588 (-834 |#1|)))) (-15 -3246 ((-1016 |#1|) $ |#1|)) (-15 -1824 ((-1016 (-1016 |#1|)) $)) (-15 -3246 ((-1016 (-1016 |#1|)) $ (-1016 |#1|))) (-15 -3246 ((-1016 (-588 |#1|)) $ (-588 |#1|))) (-15 -4176 ((-108) (-834 |#1|) $)) (-15 -1808 ((-588 (-708)) (-834 |#1|) $)) (-15 -1417 ((-588 (-708)) (-834 |#1|) $)) (-15 -1965 ((-1016 |#1|) $)) (-15 -1587 ((-108) $ $)) (-15 -1609 ((-108) $ $)) (-15 -2699 ((-1171) $)) (-15 -2699 ((-1171) $ (-522) (-522))))) (-1014)) (T -833))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-588 (-834 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-3915 (*1 *2 *1) (-12 (-5 *2 (-588 (-834 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-2683 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *2 (-834 *4)) (-5 *1 (-833 *4)) (-4 *4 (-1014)))) (-3344 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-834 *4)) (-5 *1 (-833 *4)) (-4 *4 (-1014)))) (-3344 (*1 *2 *1) (-12 (-5 *2 (-834 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-3872 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-2487 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-1897 (*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-2812 (*1 *2 *1) (-12 (-5 *2 (-588 (-834 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-4137 (*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-708)))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-588 (-834 *3))) (-4 *3 (-1014)) (-5 *1 (-833 *3)))) (-4071 (*1 *1 *2) (-12 (-5 *2 (-588 (-834 *3))) (-4 *3 (-1014)) (-5 *1 (-833 *3)))) (-3246 (*1 *2 *1 *3) (-12 (-5 *2 (-1016 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-1824 (*1 *2 *1) (-12 (-5 *2 (-1016 (-1016 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-3246 (*1 *2 *1 *3) (-12 (-4 *4 (-1014)) (-5 *2 (-1016 (-1016 *4))) (-5 *1 (-833 *4)) (-5 *3 (-1016 *4)))) (-3246 (*1 *2 *1 *3) (-12 (-4 *4 (-1014)) (-5 *2 (-1016 (-588 *4))) (-5 *1 (-833 *4)) (-5 *3 (-588 *4)))) (-4176 (*1 *2 *3 *1) (-12 (-5 *3 (-834 *4)) (-4 *4 (-1014)) (-5 *2 (-108)) (-5 *1 (-833 *4)))) (-1808 (*1 *2 *3 *1) (-12 (-5 *3 (-834 *4)) (-4 *4 (-1014)) (-5 *2 (-588 (-708))) (-5 *1 (-833 *4)))) (-1417 (*1 *2 *3 *1) (-12 (-5 *3 (-834 *4)) (-4 *4 (-1014)) (-5 *2 (-588 (-708))) (-5 *1 (-833 *4)))) (-1965 (*1 *2 *1) (-12 (-5 *2 (-1016 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-1587 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-1609 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-2699 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))) (-2699 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-833 *4)) (-4 *4 (-1014)))))
+(-13 (-1014) (-10 -8 (-15 -2217 ((-588 (-834 |#1|)) $)) (-15 -3915 ((-588 (-834 |#1|)) $)) (-15 -2683 ((-834 |#1|) $ (-708))) (-15 -3344 ((-834 |#1|) $ (-522))) (-15 -3344 ((-834 |#1|) $)) (-15 -3872 ((-708) $)) (-15 -2487 ((-708) $)) (-15 -1897 ((-588 |#1|) $)) (-15 -2812 ((-588 (-834 |#1|)) $)) (-15 -4137 ((-588 (-588 (-708))) $)) (-15 -2217 ($ (-588 (-834 |#1|)))) (-15 -4071 ($ (-588 (-834 |#1|)))) (-15 -3246 ((-1016 |#1|) $ |#1|)) (-15 -1824 ((-1016 (-1016 |#1|)) $)) (-15 -3246 ((-1016 (-1016 |#1|)) $ (-1016 |#1|))) (-15 -3246 ((-1016 (-588 |#1|)) $ (-588 |#1|))) (-15 -4176 ((-108) (-834 |#1|) $)) (-15 -1808 ((-588 (-708)) (-834 |#1|) $)) (-15 -1417 ((-588 (-708)) (-834 |#1|) $)) (-15 -1965 ((-1016 |#1|) $)) (-15 -1587 ((-108) $ $)) (-15 -1609 ((-108) $ $)) (-15 -2699 ((-1171) $)) (-15 -2699 ((-1171) $ (-522) (-522)))))
+((-1419 (((-108) $ $) NIL)) (-3296 (((-588 $) (-588 $)) 77)) (-3355 (((-522) $) 60)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) NIL)) (-3872 (((-708) $) 58)) (-3246 (((-1016 |#1|) $ |#1|) 49)) (-2859 (((-108) $) NIL)) (-3077 (((-108) $) 63)) (-3693 (((-708) $) 61)) (-1965 (((-1016 |#1|) $) 42)) (-1308 (($ $ $) NIL (-3844 (|has| |#1| (-343)) (|has| |#1| (-784))))) (-2524 (($ $ $) NIL (-3844 (|has| |#1| (-343)) (|has| |#1| (-784))))) (-1420 (((-2 (|:| |preimage| (-588 |#1|)) (|:| |image| (-588 |#1|))) $) 36)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 93)) (-4174 (((-1032) $) NIL)) (-2733 (((-1016 |#1|) $) 99 (|has| |#1| (-343)))) (-2626 (((-108) $) 59)) (-2330 ((|#1| $ |#1|) 47)) (-2683 ((|#1| $ |#1|) 94)) (-2487 (((-708) $) 44)) (-3683 (($ (-588 (-588 |#1|))) 85)) (-2540 (((-898) $) 53)) (-1436 (($ (-588 |#1|)) 21)) (-2983 (($ $ $) NIL)) (-1596 (($ $ $) NIL)) (-4183 (($ (-588 (-588 |#1|))) 39)) (-2189 (($ (-588 (-588 |#1|))) 88)) (-4200 (($ (-588 |#1|)) 96)) (-2217 (((-792) $) 84) (($ (-588 (-588 |#1|))) 66) (($ (-588 |#1|)) 67)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3709 (($) 16 T CONST)) (-1623 (((-108) $ $) NIL (-3844 (|has| |#1| (-343)) (|has| |#1| (-784))))) (-1597 (((-108) $ $) NIL (-3844 (|has| |#1| (-343)) (|has| |#1| (-784))))) (-1562 (((-108) $ $) 45)) (-1609 (((-108) $ $) NIL (-3844 (|has| |#1| (-343)) (|has| |#1| (-784))))) (-1587 (((-108) $ $) 65)) (-1682 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ $ $) 22)))
+(((-834 |#1|) (-13 (-832 |#1|) (-10 -8 (-15 -1420 ((-2 (|:| |preimage| (-588 |#1|)) (|:| |image| (-588 |#1|))) $)) (-15 -4183 ($ (-588 (-588 |#1|)))) (-15 -2217 ($ (-588 (-588 |#1|)))) (-15 -2217 ($ (-588 |#1|))) (-15 -2189 ($ (-588 (-588 |#1|)))) (-15 -2487 ((-708) $)) (-15 -1965 ((-1016 |#1|) $)) (-15 -2540 ((-898) $)) (-15 -3872 ((-708) $)) (-15 -3693 ((-708) $)) (-15 -3355 ((-522) $)) (-15 -2626 ((-108) $)) (-15 -3077 ((-108) $)) (-15 -3296 ((-588 $) (-588 $))) (IF (|has| |#1| (-343)) (-15 -2733 ((-1016 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-507)) (-15 -4200 ($ (-588 |#1|))) (IF (|has| |#1| (-343)) (-15 -4200 ($ (-588 |#1|))) |%noBranch|)))) (-1014)) (T -834))
+((-1420 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-588 *3)) (|:| |image| (-588 *3)))) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-4183 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-834 *3)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-834 *3)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-834 *3)))) (-2189 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-834 *3)))) (-2487 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-1965 (*1 *2 *1) (-12 (-5 *2 (-1016 *3)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-2540 (*1 *2 *1) (-12 (-5 *2 (-898)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-3872 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-3693 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-3355 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-2626 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-3077 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-3296 (*1 *2 *2) (-12 (-5 *2 (-588 (-834 *3))) (-5 *1 (-834 *3)) (-4 *3 (-1014)))) (-2733 (*1 *2 *1) (-12 (-5 *2 (-1016 *3)) (-5 *1 (-834 *3)) (-4 *3 (-343)) (-4 *3 (-1014)))) (-4200 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-834 *3)))))
+(-13 (-832 |#1|) (-10 -8 (-15 -1420 ((-2 (|:| |preimage| (-588 |#1|)) (|:| |image| (-588 |#1|))) $)) (-15 -4183 ($ (-588 (-588 |#1|)))) (-15 -2217 ($ (-588 (-588 |#1|)))) (-15 -2217 ($ (-588 |#1|))) (-15 -2189 ($ (-588 (-588 |#1|)))) (-15 -2487 ((-708) $)) (-15 -1965 ((-1016 |#1|) $)) (-15 -2540 ((-898) $)) (-15 -3872 ((-708) $)) (-15 -3693 ((-708) $)) (-15 -3355 ((-522) $)) (-15 -2626 ((-108) $)) (-15 -3077 ((-108) $)) (-15 -3296 ((-588 $) (-588 $))) (IF (|has| |#1| (-343)) (-15 -2733 ((-1016 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-507)) (-15 -4200 ($ (-588 |#1|))) (IF (|has| |#1| (-343)) (-15 -4200 ($ (-588 |#1|))) |%noBranch|))))
+((-2151 (((-3 (-588 (-1081 |#4|)) "failed") (-588 (-1081 |#4|)) (-1081 |#4|)) 128)) (-4028 ((|#1|) 76)) (-1850 (((-393 (-1081 |#4|)) (-1081 |#4|)) 137)) (-2568 (((-393 (-1081 |#4|)) (-588 |#3|) (-1081 |#4|)) 68)) (-3916 (((-393 (-1081 |#4|)) (-1081 |#4|)) 147)) (-1604 (((-3 (-588 (-1081 |#4|)) "failed") (-588 (-1081 |#4|)) (-1081 |#4|) |#3|) 92)))
+(((-835 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2151 ((-3 (-588 (-1081 |#4|)) "failed") (-588 (-1081 |#4|)) (-1081 |#4|))) (-15 -3916 ((-393 (-1081 |#4|)) (-1081 |#4|))) (-15 -1850 ((-393 (-1081 |#4|)) (-1081 |#4|))) (-15 -4028 (|#1|)) (-15 -1604 ((-3 (-588 (-1081 |#4|)) "failed") (-588 (-1081 |#4|)) (-1081 |#4|) |#3|)) (-15 -2568 ((-393 (-1081 |#4|)) (-588 |#3|) (-1081 |#4|)))) (-838) (-730) (-784) (-878 |#1| |#2| |#3|)) (T -835))
+((-2568 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *7)) (-4 *7 (-784)) (-4 *5 (-838)) (-4 *6 (-730)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-393 (-1081 *8))) (-5 *1 (-835 *5 *6 *7 *8)) (-5 *4 (-1081 *8)))) (-1604 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-588 (-1081 *7))) (-5 *3 (-1081 *7)) (-4 *7 (-878 *5 *6 *4)) (-4 *5 (-838)) (-4 *6 (-730)) (-4 *4 (-784)) (-5 *1 (-835 *5 *6 *4 *7)))) (-4028 (*1 *2) (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-838)) (-5 *1 (-835 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))) (-1850 (*1 *2 *3) (-12 (-4 *4 (-838)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-393 (-1081 *7))) (-5 *1 (-835 *4 *5 *6 *7)) (-5 *3 (-1081 *7)))) (-3916 (*1 *2 *3) (-12 (-4 *4 (-838)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-393 (-1081 *7))) (-5 *1 (-835 *4 *5 *6 *7)) (-5 *3 (-1081 *7)))) (-2151 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-1081 *7))) (-5 *3 (-1081 *7)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-838)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-835 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2151 ((-3 (-588 (-1081 |#4|)) "failed") (-588 (-1081 |#4|)) (-1081 |#4|))) (-15 -3916 ((-393 (-1081 |#4|)) (-1081 |#4|))) (-15 -1850 ((-393 (-1081 |#4|)) (-1081 |#4|))) (-15 -4028 (|#1|)) (-15 -1604 ((-3 (-588 (-1081 |#4|)) "failed") (-588 (-1081 |#4|)) (-1081 |#4|) |#3|)) (-15 -2568 ((-393 (-1081 |#4|)) (-588 |#3|) (-1081 |#4|))))
+((-2151 (((-3 (-588 (-1081 |#2|)) "failed") (-588 (-1081 |#2|)) (-1081 |#2|)) 36)) (-4028 ((|#1|) 54)) (-1850 (((-393 (-1081 |#2|)) (-1081 |#2|)) 102)) (-2568 (((-393 (-1081 |#2|)) (-1081 |#2|)) 89)) (-3916 (((-393 (-1081 |#2|)) (-1081 |#2|)) 113)))
+(((-836 |#1| |#2|) (-10 -7 (-15 -2151 ((-3 (-588 (-1081 |#2|)) "failed") (-588 (-1081 |#2|)) (-1081 |#2|))) (-15 -3916 ((-393 (-1081 |#2|)) (-1081 |#2|))) (-15 -1850 ((-393 (-1081 |#2|)) (-1081 |#2|))) (-15 -4028 (|#1|)) (-15 -2568 ((-393 (-1081 |#2|)) (-1081 |#2|)))) (-838) (-1142 |#1|)) (T -836))
+((-2568 (*1 *2 *3) (-12 (-4 *4 (-838)) (-4 *5 (-1142 *4)) (-5 *2 (-393 (-1081 *5))) (-5 *1 (-836 *4 *5)) (-5 *3 (-1081 *5)))) (-4028 (*1 *2) (-12 (-4 *2 (-838)) (-5 *1 (-836 *2 *3)) (-4 *3 (-1142 *2)))) (-1850 (*1 *2 *3) (-12 (-4 *4 (-838)) (-4 *5 (-1142 *4)) (-5 *2 (-393 (-1081 *5))) (-5 *1 (-836 *4 *5)) (-5 *3 (-1081 *5)))) (-3916 (*1 *2 *3) (-12 (-4 *4 (-838)) (-4 *5 (-1142 *4)) (-5 *2 (-393 (-1081 *5))) (-5 *1 (-836 *4 *5)) (-5 *3 (-1081 *5)))) (-2151 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-1081 *5))) (-5 *3 (-1081 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-838)) (-5 *1 (-836 *4 *5)))))
+(-10 -7 (-15 -2151 ((-3 (-588 (-1081 |#2|)) "failed") (-588 (-1081 |#2|)) (-1081 |#2|))) (-15 -3916 ((-393 (-1081 |#2|)) (-1081 |#2|))) (-15 -1850 ((-393 (-1081 |#2|)) (-1081 |#2|))) (-15 -4028 (|#1|)) (-15 -2568 ((-393 (-1081 |#2|)) (-1081 |#2|))))
+((-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 39)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 18)) (-3040 (((-3 $ "failed") $) 33)))
+(((-837 |#1|) (-10 -8 (-15 -3040 ((-3 |#1| "failed") |#1|)) (-15 -2800 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -1789 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|)))) (-838)) (T -837))
+NIL
+(-10 -8 (-15 -3040 ((-3 |#1| "failed") |#1|)) (-15 -2800 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -1789 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-3543 (((-393 (-1081 $)) (-1081 $)) 60)) (-2961 (($ $) 51)) (-3133 (((-393 $) $) 52)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 57)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2725 (((-108) $) 53)) (-2859 (((-108) $) 31)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-4022 (((-393 (-1081 $)) (-1081 $)) 58)) (-2313 (((-393 (-1081 $)) (-1081 $)) 59)) (-2006 (((-393 $) $) 50)) (-2276 (((-3 $ "failed") $ $) 42)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 56 (|has| $ (-133)))) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-3040 (((-3 $ "failed") $) 55 (|has| $ (-133)))) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-838) (-1197)) (T -838))
-((-1307 (*1 *2 *2 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-838)))) (-1565 (*1 *2 *3) (-12 (-4 *1 (-838)) (-5 *2 (-393 (-1081 *1))) (-5 *3 (-1081 *1)))) (-3495 (*1 *2 *3) (-12 (-4 *1 (-838)) (-5 *2 (-393 (-1081 *1))) (-5 *3 (-1081 *1)))) (-3729 (*1 *2 *3) (-12 (-4 *1 (-838)) (-5 *2 (-393 (-1081 *1))) (-5 *3 (-1081 *1)))) (-1473 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-1081 *1))) (-5 *3 (-1081 *1)) (-4 *1 (-838)))) (-2412 (*1 *2 *3) (|partial| -12 (-5 *3 (-628 *1)) (-4 *1 (-133)) (-4 *1 (-838)) (-5 *2 (-1166 *1)))) (-2143 (*1 *1 *1) (|partial| -12 (-4 *1 (-133)) (-4 *1 (-838)))))
-(-13 (-1124) (-10 -8 (-15 -1565 ((-393 (-1081 $)) (-1081 $))) (-15 -3495 ((-393 (-1081 $)) (-1081 $))) (-15 -3729 ((-393 (-1081 $)) (-1081 $))) (-15 -1307 ((-1081 $) (-1081 $) (-1081 $))) (-15 -1473 ((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $))) (IF (|has| $ (-133)) (PROGN (-15 -2412 ((-3 (-1166 $) "failed") (-628 $))) (-15 -2143 ((-3 $ "failed") $))) |%noBranch|)))
+((-1789 (*1 *2 *2 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-838)))) (-3543 (*1 *2 *3) (-12 (-4 *1 (-838)) (-5 *2 (-393 (-1081 *1))) (-5 *3 (-1081 *1)))) (-2313 (*1 *2 *3) (-12 (-4 *1 (-838)) (-5 *2 (-393 (-1081 *1))) (-5 *3 (-1081 *1)))) (-4022 (*1 *2 *3) (-12 (-4 *1 (-838)) (-5 *2 (-393 (-1081 *1))) (-5 *3 (-1081 *1)))) (-2800 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-588 (-1081 *1))) (-5 *3 (-1081 *1)) (-4 *1 (-838)))) (-2583 (*1 *2 *3) (|partial| -12 (-5 *3 (-628 *1)) (-4 *1 (-133)) (-4 *1 (-838)) (-5 *2 (-1166 *1)))) (-3040 (*1 *1 *1) (|partial| -12 (-4 *1 (-133)) (-4 *1 (-838)))))
+(-13 (-1124) (-10 -8 (-15 -3543 ((-393 (-1081 $)) (-1081 $))) (-15 -2313 ((-393 (-1081 $)) (-1081 $))) (-15 -4022 ((-393 (-1081 $)) (-1081 $))) (-15 -1789 ((-1081 $) (-1081 $) (-1081 $))) (-15 -2800 ((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $))) (IF (|has| $ (-133)) (PROGN (-15 -2583 ((-3 (-1166 $) "failed") (-628 $))) (-15 -3040 ((-3 $ "failed") $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-157) . T) ((-266) . T) ((-426) . T) ((-514) . T) ((-590 $) . T) ((-655 $) . T) ((-664) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1651 (((-108) $) NIL)) (-2219 (((-708)) NIL)) (-1865 (($ $ (-850)) NIL (|has| $ (-343))) (($ $) NIL)) (-1398 (((-1094 (-850) (-708)) (-522)) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1629 (((-708)) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 $ "failed") $) NIL)) (-1484 (($ $) NIL)) (-3766 (($ (-1166 $)) NIL)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-1223 (($) NIL)) (-2511 (((-108) $) NIL)) (-2111 (($ $) NIL) (($ $ (-708)) NIL)) (-2813 (((-108) $) NIL)) (-3714 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-2782 (((-108) $) NIL)) (-3400 (($) NIL (|has| $ (-343)))) (-2741 (((-108) $) NIL (|has| $ (-343)))) (-2100 (($ $ (-850)) NIL (|has| $ (-343))) (($ $) NIL)) (-3004 (((-3 $ "failed") $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1712 (((-1081 $) $ (-850)) NIL (|has| $ (-343))) (((-1081 $) $) NIL)) (-2120 (((-850) $) NIL)) (-3074 (((-1081 $) $) NIL (|has| $ (-343)))) (-2941 (((-3 (-1081 $) "failed") $ $) NIL (|has| $ (-343))) (((-1081 $) $) NIL (|has| $ (-343)))) (-1425 (($ $ (-1081 $)) NIL (|has| $ (-343)))) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL T CONST)) (-2717 (($ (-850)) NIL)) (-2822 (((-108) $) NIL)) (-4151 (((-1032) $) NIL)) (-1383 (($) NIL (|has| $ (-343)))) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL)) (-1916 (((-393 $) $) NIL)) (-2621 (((-850)) NIL) (((-770 (-850))) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3018 (((-3 (-708) "failed") $ $) NIL) (((-708) $) NIL)) (-4078 (((-126)) NIL)) (-2157 (($ $ (-708)) NIL) (($ $) NIL)) (-2793 (((-850) $) NIL) (((-770 (-850)) $) NIL)) (-1479 (((-1081 $)) NIL)) (-2581 (($) NIL)) (-1299 (($) NIL (|has| $ (-343)))) (-3677 (((-628 $) (-1166 $)) NIL) (((-1166 $) $) NIL)) (-1431 (((-522) $) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL)) (-2143 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-2323 (((-708)) NIL)) (-3855 (((-1166 $) (-850)) NIL) (((-1166 $)) NIL)) (-3958 (((-108) $ $) NIL)) (-2351 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-3428 (($ $ (-708)) NIL (|has| $ (-343))) (($ $) NIL (|has| $ (-343)))) (-2213 (($ $ (-708)) NIL) (($ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2400 (((-108) $) NIL)) (-1593 (((-708)) NIL)) (-1945 (($ $ (-850)) NIL (|has| $ (-343))) (($ $) NIL)) (-3833 (((-1094 (-850) (-708)) (-522)) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-1685 (((-708)) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 $ "failed") $) NIL)) (-1478 (($ $) NIL)) (-3225 (($ (-1166 $)) NIL)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2160 (($) NIL)) (-2087 (((-108) $) NIL)) (-1380 (($ $) NIL) (($ $ (-708)) NIL)) (-2725 (((-108) $) NIL)) (-3872 (((-770 (-850)) $) NIL) (((-850) $) NIL)) (-2859 (((-108) $) NIL)) (-3768 (($) NIL (|has| $ (-343)))) (-1372 (((-108) $) NIL (|has| $ (-343)))) (-1269 (($ $ (-850)) NIL (|has| $ (-343))) (($ $) NIL)) (-4208 (((-3 $ "failed") $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4199 (((-1081 $) $ (-850)) NIL (|has| $ (-343))) (((-1081 $) $) NIL)) (-1475 (((-850) $) NIL)) (-3657 (((-1081 $) $) NIL (|has| $ (-343)))) (-3723 (((-3 (-1081 $) "failed") $ $) NIL (|has| $ (-343))) (((-1081 $) $) NIL (|has| $ (-343)))) (-2259 (($ $ (-1081 $)) NIL (|has| $ (-343)))) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL T CONST)) (-2882 (($ (-850)) NIL)) (-2804 (((-108) $) NIL)) (-4174 (((-1032) $) NIL)) (-1368 (($) NIL (|has| $ (-343)))) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL)) (-2006 (((-393 $) $) NIL)) (-1713 (((-850)) NIL) (((-770 (-850))) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-1304 (((-3 (-708) "failed") $ $) NIL) (((-708) $) NIL)) (-3222 (((-126)) NIL)) (-2731 (($ $ (-708)) NIL) (($ $) NIL)) (-2487 (((-850) $) NIL) (((-770 (-850)) $) NIL)) (-1579 (((-1081 $)) NIL)) (-2670 (($) NIL)) (-1705 (($) NIL (|has| $ (-343)))) (-3510 (((-628 $) (-1166 $)) NIL) (((-1166 $) $) NIL)) (-3873 (((-522) $) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL)) (-3040 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-2742 (((-708)) NIL)) (-2905 (((-1166 $) (-850)) NIL) (((-1166 $)) NIL)) (-1407 (((-108) $ $) NIL)) (-1711 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2938 (($ $ (-708)) NIL (|has| $ (-343))) (($ $) NIL (|has| $ (-343)))) (-2252 (($ $ (-708)) NIL) (($ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
(((-839 |#1|) (-13 (-324) (-304 $) (-563 (-522))) (-850)) (T -839))
NIL
(-13 (-324) (-304 $) (-563 (-522)))
-((-3627 (((-3 (-2 (|:| -3714 (-708)) (|:| -2094 |#5|)) "failed") (-311 |#2| |#3| |#4| |#5|)) 76)) (-4216 (((-108) (-311 |#2| |#3| |#4| |#5|)) 16)) (-3714 (((-3 (-708) "failed") (-311 |#2| |#3| |#4| |#5|)) 14)))
-(((-840 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3714 ((-3 (-708) "failed") (-311 |#2| |#3| |#4| |#5|))) (-15 -4216 ((-108) (-311 |#2| |#3| |#4| |#5|))) (-15 -3627 ((-3 (-2 (|:| -3714 (-708)) (|:| -2094 |#5|)) "failed") (-311 |#2| |#3| |#4| |#5|)))) (-13 (-784) (-514) (-962 (-522))) (-405 |#1|) (-1142 |#2|) (-1142 (-382 |#3|)) (-317 |#2| |#3| |#4|)) (T -840))
-((-3627 (*1 *2 *3) (|partial| -12 (-5 *3 (-311 *5 *6 *7 *8)) (-4 *5 (-405 *4)) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *8 (-317 *5 *6 *7)) (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-2 (|:| -3714 (-708)) (|:| -2094 *8))) (-5 *1 (-840 *4 *5 *6 *7 *8)))) (-4216 (*1 *2 *3) (-12 (-5 *3 (-311 *5 *6 *7 *8)) (-4 *5 (-405 *4)) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *8 (-317 *5 *6 *7)) (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-108)) (-5 *1 (-840 *4 *5 *6 *7 *8)))) (-3714 (*1 *2 *3) (|partial| -12 (-5 *3 (-311 *5 *6 *7 *8)) (-4 *5 (-405 *4)) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *8 (-317 *5 *6 *7)) (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-708)) (-5 *1 (-840 *4 *5 *6 *7 *8)))))
-(-10 -7 (-15 -3714 ((-3 (-708) "failed") (-311 |#2| |#3| |#4| |#5|))) (-15 -4216 ((-108) (-311 |#2| |#3| |#4| |#5|))) (-15 -3627 ((-3 (-2 (|:| -3714 (-708)) (|:| -2094 |#5|)) "failed") (-311 |#2| |#3| |#4| |#5|))))
-((-3627 (((-3 (-2 (|:| -3714 (-708)) (|:| -2094 |#3|)) "failed") (-311 (-382 (-522)) |#1| |#2| |#3|)) 56)) (-4216 (((-108) (-311 (-382 (-522)) |#1| |#2| |#3|)) 13)) (-3714 (((-3 (-708) "failed") (-311 (-382 (-522)) |#1| |#2| |#3|)) 11)))
-(((-841 |#1| |#2| |#3|) (-10 -7 (-15 -3714 ((-3 (-708) "failed") (-311 (-382 (-522)) |#1| |#2| |#3|))) (-15 -4216 ((-108) (-311 (-382 (-522)) |#1| |#2| |#3|))) (-15 -3627 ((-3 (-2 (|:| -3714 (-708)) (|:| -2094 |#3|)) "failed") (-311 (-382 (-522)) |#1| |#2| |#3|)))) (-1142 (-382 (-522))) (-1142 (-382 |#1|)) (-317 (-382 (-522)) |#1| |#2|)) (T -841))
-((-3627 (*1 *2 *3) (|partial| -12 (-5 *3 (-311 (-382 (-522)) *4 *5 *6)) (-4 *4 (-1142 (-382 (-522)))) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 (-382 (-522)) *4 *5)) (-5 *2 (-2 (|:| -3714 (-708)) (|:| -2094 *6))) (-5 *1 (-841 *4 *5 *6)))) (-4216 (*1 *2 *3) (-12 (-5 *3 (-311 (-382 (-522)) *4 *5 *6)) (-4 *4 (-1142 (-382 (-522)))) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 (-382 (-522)) *4 *5)) (-5 *2 (-108)) (-5 *1 (-841 *4 *5 *6)))) (-3714 (*1 *2 *3) (|partial| -12 (-5 *3 (-311 (-382 (-522)) *4 *5 *6)) (-4 *4 (-1142 (-382 (-522)))) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 (-382 (-522)) *4 *5)) (-5 *2 (-708)) (-5 *1 (-841 *4 *5 *6)))))
-(-10 -7 (-15 -3714 ((-3 (-708) "failed") (-311 (-382 (-522)) |#1| |#2| |#3|))) (-15 -4216 ((-108) (-311 (-382 (-522)) |#1| |#2| |#3|))) (-15 -3627 ((-3 (-2 (|:| -3714 (-708)) (|:| -2094 |#3|)) "failed") (-311 (-382 (-522)) |#1| |#2| |#3|))))
-((-3981 ((|#2| |#2|) 25)) (-3182 (((-522) (-588 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522))))) 15)) (-3035 (((-850) (-522)) 35)) (-3782 (((-522) |#2|) 42)) (-1653 (((-522) |#2|) 21) (((-2 (|:| |den| (-522)) (|:| |gcdnum| (-522))) |#1|) 20)))
-(((-842 |#1| |#2|) (-10 -7 (-15 -3035 ((-850) (-522))) (-15 -1653 ((-2 (|:| |den| (-522)) (|:| |gcdnum| (-522))) |#1|)) (-15 -1653 ((-522) |#2|)) (-15 -3182 ((-522) (-588 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522)))))) (-15 -3782 ((-522) |#2|)) (-15 -3981 (|#2| |#2|))) (-1142 (-382 (-522))) (-1142 (-382 |#1|))) (T -842))
-((-3981 (*1 *2 *2) (-12 (-4 *3 (-1142 (-382 (-522)))) (-5 *1 (-842 *3 *2)) (-4 *2 (-1142 (-382 *3))))) (-3782 (*1 *2 *3) (-12 (-4 *4 (-1142 (-382 *2))) (-5 *2 (-522)) (-5 *1 (-842 *4 *3)) (-4 *3 (-1142 (-382 *4))))) (-3182 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522))))) (-4 *4 (-1142 (-382 *2))) (-5 *2 (-522)) (-5 *1 (-842 *4 *5)) (-4 *5 (-1142 (-382 *4))))) (-1653 (*1 *2 *3) (-12 (-4 *4 (-1142 (-382 *2))) (-5 *2 (-522)) (-5 *1 (-842 *4 *3)) (-4 *3 (-1142 (-382 *4))))) (-1653 (*1 *2 *3) (-12 (-4 *3 (-1142 (-382 (-522)))) (-5 *2 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522)))) (-5 *1 (-842 *3 *4)) (-4 *4 (-1142 (-382 *3))))) (-3035 (*1 *2 *3) (-12 (-5 *3 (-522)) (-4 *4 (-1142 (-382 *3))) (-5 *2 (-850)) (-5 *1 (-842 *4 *5)) (-4 *5 (-1142 (-382 *4))))))
-(-10 -7 (-15 -3035 ((-850) (-522))) (-15 -1653 ((-2 (|:| |den| (-522)) (|:| |gcdnum| (-522))) |#1|)) (-15 -1653 ((-522) |#2|)) (-15 -3182 ((-522) (-588 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522)))))) (-15 -3782 ((-522) |#2|)) (-15 -3981 (|#2| |#2|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2229 ((|#1| $) 81)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-2277 (($ $ $) NIL)) (-2682 (((-3 $ "failed") $) 75)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-3047 (($ |#1| (-393 |#1|)) 73)) (-3465 (((-1081 |#1|) |#1| |#1|) 40)) (-2244 (($ $) 49)) (-2782 (((-108) $) NIL)) (-2290 (((-522) $) 78)) (-1619 (($ $ (-522)) 80)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2895 ((|#1| $) 77)) (-1912 (((-393 |#1|) $) 76)) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) 74)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-3674 (($ $) 38)) (-2190 (((-792) $) 99) (($ (-522)) 54) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) 30) (((-382 |#1|) $) 59) (($ (-382 (-393 |#1|))) 67)) (-2323 (((-708)) 52)) (-3958 (((-108) $ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 23 T CONST)) (-3577 (($) 11 T CONST)) (-1531 (((-108) $ $) 68)) (-1620 (($ $ $) NIL)) (-1612 (($ $) 88) (($ $ $) NIL)) (-1602 (($ $ $) 37)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 90) (($ $ $) 36) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ |#1| $) 89) (($ $ |#1|) NIL)))
-(((-843 |#1|) (-13 (-338) (-37 |#1|) (-10 -8 (-15 -2190 ((-382 |#1|) $)) (-15 -2190 ($ (-382 (-393 |#1|)))) (-15 -3674 ($ $)) (-15 -1912 ((-393 |#1|) $)) (-15 -2895 (|#1| $)) (-15 -1619 ($ $ (-522))) (-15 -2290 ((-522) $)) (-15 -3465 ((-1081 |#1|) |#1| |#1|)) (-15 -2244 ($ $)) (-15 -3047 ($ |#1| (-393 |#1|))) (-15 -2229 (|#1| $)))) (-283)) (T -843))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-382 *3)) (-5 *1 (-843 *3)) (-4 *3 (-283)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-382 (-393 *3))) (-4 *3 (-283)) (-5 *1 (-843 *3)))) (-3674 (*1 *1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))) (-1912 (*1 *2 *1) (-12 (-5 *2 (-393 *3)) (-5 *1 (-843 *3)) (-4 *3 (-283)))) (-2895 (*1 *2 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))) (-1619 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-843 *3)) (-4 *3 (-283)))) (-2290 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-843 *3)) (-4 *3 (-283)))) (-3465 (*1 *2 *3 *3) (-12 (-5 *2 (-1081 *3)) (-5 *1 (-843 *3)) (-4 *3 (-283)))) (-2244 (*1 *1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))) (-3047 (*1 *1 *2 *3) (-12 (-5 *3 (-393 *2)) (-4 *2 (-283)) (-5 *1 (-843 *2)))) (-2229 (*1 *2 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))))
-(-13 (-338) (-37 |#1|) (-10 -8 (-15 -2190 ((-382 |#1|) $)) (-15 -2190 ($ (-382 (-393 |#1|)))) (-15 -3674 ($ $)) (-15 -1912 ((-393 |#1|) $)) (-15 -2895 (|#1| $)) (-15 -1619 ($ $ (-522))) (-15 -2290 ((-522) $)) (-15 -3465 ((-1081 |#1|) |#1| |#1|)) (-15 -2244 ($ $)) (-15 -3047 ($ |#1| (-393 |#1|))) (-15 -2229 (|#1| $))))
-((-3047 (((-51) (-881 |#1|) (-393 (-881 |#1|)) (-1085)) 16) (((-51) (-382 (-881 |#1|)) (-1085)) 17)))
-(((-844 |#1|) (-10 -7 (-15 -3047 ((-51) (-382 (-881 |#1|)) (-1085))) (-15 -3047 ((-51) (-881 |#1|) (-393 (-881 |#1|)) (-1085)))) (-13 (-283) (-135))) (T -844))
-((-3047 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-393 (-881 *6))) (-5 *5 (-1085)) (-5 *3 (-881 *6)) (-4 *6 (-13 (-283) (-135))) (-5 *2 (-51)) (-5 *1 (-844 *6)))) (-3047 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-135))) (-5 *2 (-51)) (-5 *1 (-844 *5)))))
-(-10 -7 (-15 -3047 ((-51) (-382 (-881 |#1|)) (-1085))) (-15 -3047 ((-51) (-881 |#1|) (-393 (-881 |#1|)) (-1085))))
-((-3841 ((|#4| (-588 |#4|)) 119) (((-1081 |#4|) (-1081 |#4|) (-1081 |#4|)) 66) ((|#4| |#4| |#4|) 118)) (-2259 (((-1081 |#4|) (-588 (-1081 |#4|))) 112) (((-1081 |#4|) (-1081 |#4|) (-1081 |#4|)) 49) ((|#4| (-588 |#4|)) 54) ((|#4| |#4| |#4|) 83)))
-(((-845 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2259 (|#4| |#4| |#4|)) (-15 -2259 (|#4| (-588 |#4|))) (-15 -2259 ((-1081 |#4|) (-1081 |#4|) (-1081 |#4|))) (-15 -2259 ((-1081 |#4|) (-588 (-1081 |#4|)))) (-15 -3841 (|#4| |#4| |#4|)) (-15 -3841 ((-1081 |#4|) (-1081 |#4|) (-1081 |#4|))) (-15 -3841 (|#4| (-588 |#4|)))) (-730) (-784) (-283) (-878 |#3| |#1| |#2|)) (T -845))
-((-3841 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *6 *4 *5)) (-5 *1 (-845 *4 *5 *6 *2)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)))) (-3841 (*1 *2 *2 *2) (-12 (-5 *2 (-1081 *6)) (-4 *6 (-878 *5 *3 *4)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-283)) (-5 *1 (-845 *3 *4 *5 *6)))) (-3841 (*1 *2 *2 *2) (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-283)) (-5 *1 (-845 *3 *4 *5 *2)) (-4 *2 (-878 *5 *3 *4)))) (-2259 (*1 *2 *3) (-12 (-5 *3 (-588 (-1081 *7))) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-5 *2 (-1081 *7)) (-5 *1 (-845 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))) (-2259 (*1 *2 *2 *2) (-12 (-5 *2 (-1081 *6)) (-4 *6 (-878 *5 *3 *4)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-283)) (-5 *1 (-845 *3 *4 *5 *6)))) (-2259 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *6 *4 *5)) (-5 *1 (-845 *4 *5 *6 *2)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)))) (-2259 (*1 *2 *2 *2) (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-283)) (-5 *1 (-845 *3 *4 *5 *2)) (-4 *2 (-878 *5 *3 *4)))))
-(-10 -7 (-15 -2259 (|#4| |#4| |#4|)) (-15 -2259 (|#4| (-588 |#4|))) (-15 -2259 ((-1081 |#4|) (-1081 |#4|) (-1081 |#4|))) (-15 -2259 ((-1081 |#4|) (-588 (-1081 |#4|)))) (-15 -3841 (|#4| |#4| |#4|)) (-15 -3841 ((-1081 |#4|) (-1081 |#4|) (-1081 |#4|))) (-15 -3841 (|#4| (-588 |#4|))))
-((-2697 (((-833 (-522)) (-898)) 22) (((-833 (-522)) (-588 (-522))) 19)) (-1691 (((-833 (-522)) (-588 (-522))) 46) (((-833 (-522)) (-850)) 47)) (-2493 (((-833 (-522))) 23)) (-2905 (((-833 (-522))) 36) (((-833 (-522)) (-588 (-522))) 35)) (-3333 (((-833 (-522))) 34) (((-833 (-522)) (-588 (-522))) 33)) (-3700 (((-833 (-522))) 32) (((-833 (-522)) (-588 (-522))) 31)) (-2758 (((-833 (-522))) 30) (((-833 (-522)) (-588 (-522))) 29)) (-2491 (((-833 (-522))) 28) (((-833 (-522)) (-588 (-522))) 27)) (-2899 (((-833 (-522))) 38) (((-833 (-522)) (-588 (-522))) 37)) (-3740 (((-833 (-522)) (-588 (-522))) 50) (((-833 (-522)) (-850)) 51)) (-3746 (((-833 (-522)) (-588 (-522))) 48) (((-833 (-522)) (-850)) 49)) (-2196 (((-833 (-522)) (-588 (-522))) 43) (((-833 (-522)) (-850)) 45)) (-1591 (((-833 (-522)) (-588 (-850))) 40)))
-(((-846) (-10 -7 (-15 -1691 ((-833 (-522)) (-850))) (-15 -1691 ((-833 (-522)) (-588 (-522)))) (-15 -2196 ((-833 (-522)) (-850))) (-15 -2196 ((-833 (-522)) (-588 (-522)))) (-15 -1591 ((-833 (-522)) (-588 (-850)))) (-15 -3746 ((-833 (-522)) (-850))) (-15 -3746 ((-833 (-522)) (-588 (-522)))) (-15 -3740 ((-833 (-522)) (-850))) (-15 -3740 ((-833 (-522)) (-588 (-522)))) (-15 -2491 ((-833 (-522)) (-588 (-522)))) (-15 -2491 ((-833 (-522)))) (-15 -2758 ((-833 (-522)) (-588 (-522)))) (-15 -2758 ((-833 (-522)))) (-15 -3700 ((-833 (-522)) (-588 (-522)))) (-15 -3700 ((-833 (-522)))) (-15 -3333 ((-833 (-522)) (-588 (-522)))) (-15 -3333 ((-833 (-522)))) (-15 -2905 ((-833 (-522)) (-588 (-522)))) (-15 -2905 ((-833 (-522)))) (-15 -2899 ((-833 (-522)) (-588 (-522)))) (-15 -2899 ((-833 (-522)))) (-15 -2493 ((-833 (-522)))) (-15 -2697 ((-833 (-522)) (-588 (-522)))) (-15 -2697 ((-833 (-522)) (-898))))) (T -846))
-((-2697 (*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2697 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2493 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2899 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2899 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2905 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2905 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3333 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3333 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3700 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3700 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2758 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2758 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2491 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2491 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3740 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3740 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3746 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3746 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-1591 (*1 *2 *3) (-12 (-5 *3 (-588 (-850))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2196 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2196 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-1691 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-1691 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
-(-10 -7 (-15 -1691 ((-833 (-522)) (-850))) (-15 -1691 ((-833 (-522)) (-588 (-522)))) (-15 -2196 ((-833 (-522)) (-850))) (-15 -2196 ((-833 (-522)) (-588 (-522)))) (-15 -1591 ((-833 (-522)) (-588 (-850)))) (-15 -3746 ((-833 (-522)) (-850))) (-15 -3746 ((-833 (-522)) (-588 (-522)))) (-15 -3740 ((-833 (-522)) (-850))) (-15 -3740 ((-833 (-522)) (-588 (-522)))) (-15 -2491 ((-833 (-522)) (-588 (-522)))) (-15 -2491 ((-833 (-522)))) (-15 -2758 ((-833 (-522)) (-588 (-522)))) (-15 -2758 ((-833 (-522)))) (-15 -3700 ((-833 (-522)) (-588 (-522)))) (-15 -3700 ((-833 (-522)))) (-15 -3333 ((-833 (-522)) (-588 (-522)))) (-15 -3333 ((-833 (-522)))) (-15 -2905 ((-833 (-522)) (-588 (-522)))) (-15 -2905 ((-833 (-522)))) (-15 -2899 ((-833 (-522)) (-588 (-522)))) (-15 -2899 ((-833 (-522)))) (-15 -2493 ((-833 (-522)))) (-15 -2697 ((-833 (-522)) (-588 (-522)))) (-15 -2697 ((-833 (-522)) (-898))))
-((-1750 (((-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085))) 10)) (-3683 (((-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085))) 9)))
-(((-847 |#1|) (-10 -7 (-15 -3683 ((-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -1750 ((-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085))))) (-426)) (T -847))
-((-1750 (*1 *2 *2 *3) (-12 (-5 *2 (-588 (-881 *4))) (-5 *3 (-588 (-1085))) (-4 *4 (-426)) (-5 *1 (-847 *4)))) (-3683 (*1 *2 *2 *3) (-12 (-5 *2 (-588 (-881 *4))) (-5 *3 (-588 (-1085))) (-4 *4 (-426)) (-5 *1 (-847 *4)))))
-(-10 -7 (-15 -3683 ((-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -1750 ((-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085)))))
-((-2190 (((-291 |#1|) (-451)) 15)))
-(((-848 |#1|) (-10 -7 (-15 -2190 ((-291 |#1|) (-451)))) (-13 (-784) (-514))) (T -848))
-((-2190 (*1 *2 *3) (-12 (-5 *3 (-451)) (-5 *2 (-291 *4)) (-5 *1 (-848 *4)) (-4 *4 (-13 (-784) (-514))))))
-(-10 -7 (-15 -2190 ((-291 |#1|) (-451))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-2782 (((-108) $) 31)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-4210 (((-3 (-2 (|:| -3872 (-708)) (|:| -2138 |#5|)) "failed") (-311 |#2| |#3| |#4| |#5|)) 76)) (-2144 (((-108) (-311 |#2| |#3| |#4| |#5|)) 16)) (-3872 (((-3 (-708) "failed") (-311 |#2| |#3| |#4| |#5|)) 14)))
+(((-840 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3872 ((-3 (-708) "failed") (-311 |#2| |#3| |#4| |#5|))) (-15 -2144 ((-108) (-311 |#2| |#3| |#4| |#5|))) (-15 -4210 ((-3 (-2 (|:| -3872 (-708)) (|:| -2138 |#5|)) "failed") (-311 |#2| |#3| |#4| |#5|)))) (-13 (-784) (-514) (-962 (-522))) (-405 |#1|) (-1142 |#2|) (-1142 (-382 |#3|)) (-317 |#2| |#3| |#4|)) (T -840))
+((-4210 (*1 *2 *3) (|partial| -12 (-5 *3 (-311 *5 *6 *7 *8)) (-4 *5 (-405 *4)) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *8 (-317 *5 *6 *7)) (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-2 (|:| -3872 (-708)) (|:| -2138 *8))) (-5 *1 (-840 *4 *5 *6 *7 *8)))) (-2144 (*1 *2 *3) (-12 (-5 *3 (-311 *5 *6 *7 *8)) (-4 *5 (-405 *4)) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *8 (-317 *5 *6 *7)) (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-108)) (-5 *1 (-840 *4 *5 *6 *7 *8)))) (-3872 (*1 *2 *3) (|partial| -12 (-5 *3 (-311 *5 *6 *7 *8)) (-4 *5 (-405 *4)) (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *8 (-317 *5 *6 *7)) (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-708)) (-5 *1 (-840 *4 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3872 ((-3 (-708) "failed") (-311 |#2| |#3| |#4| |#5|))) (-15 -2144 ((-108) (-311 |#2| |#3| |#4| |#5|))) (-15 -4210 ((-3 (-2 (|:| -3872 (-708)) (|:| -2138 |#5|)) "failed") (-311 |#2| |#3| |#4| |#5|))))
+((-4210 (((-3 (-2 (|:| -3872 (-708)) (|:| -2138 |#3|)) "failed") (-311 (-382 (-522)) |#1| |#2| |#3|)) 56)) (-2144 (((-108) (-311 (-382 (-522)) |#1| |#2| |#3|)) 13)) (-3872 (((-3 (-708) "failed") (-311 (-382 (-522)) |#1| |#2| |#3|)) 11)))
+(((-841 |#1| |#2| |#3|) (-10 -7 (-15 -3872 ((-3 (-708) "failed") (-311 (-382 (-522)) |#1| |#2| |#3|))) (-15 -2144 ((-108) (-311 (-382 (-522)) |#1| |#2| |#3|))) (-15 -4210 ((-3 (-2 (|:| -3872 (-708)) (|:| -2138 |#3|)) "failed") (-311 (-382 (-522)) |#1| |#2| |#3|)))) (-1142 (-382 (-522))) (-1142 (-382 |#1|)) (-317 (-382 (-522)) |#1| |#2|)) (T -841))
+((-4210 (*1 *2 *3) (|partial| -12 (-5 *3 (-311 (-382 (-522)) *4 *5 *6)) (-4 *4 (-1142 (-382 (-522)))) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 (-382 (-522)) *4 *5)) (-5 *2 (-2 (|:| -3872 (-708)) (|:| -2138 *6))) (-5 *1 (-841 *4 *5 *6)))) (-2144 (*1 *2 *3) (-12 (-5 *3 (-311 (-382 (-522)) *4 *5 *6)) (-4 *4 (-1142 (-382 (-522)))) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 (-382 (-522)) *4 *5)) (-5 *2 (-108)) (-5 *1 (-841 *4 *5 *6)))) (-3872 (*1 *2 *3) (|partial| -12 (-5 *3 (-311 (-382 (-522)) *4 *5 *6)) (-4 *4 (-1142 (-382 (-522)))) (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 (-382 (-522)) *4 *5)) (-5 *2 (-708)) (-5 *1 (-841 *4 *5 *6)))))
+(-10 -7 (-15 -3872 ((-3 (-708) "failed") (-311 (-382 (-522)) |#1| |#2| |#3|))) (-15 -2144 ((-108) (-311 (-382 (-522)) |#1| |#2| |#3|))) (-15 -4210 ((-3 (-2 (|:| -3872 (-708)) (|:| -2138 |#3|)) "failed") (-311 (-382 (-522)) |#1| |#2| |#3|))))
+((-1645 ((|#2| |#2|) 25)) (-2214 (((-522) (-588 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522))))) 15)) (-1486 (((-850) (-522)) 35)) (-3369 (((-522) |#2|) 42)) (-2426 (((-522) |#2|) 21) (((-2 (|:| |den| (-522)) (|:| |gcdnum| (-522))) |#1|) 20)))
+(((-842 |#1| |#2|) (-10 -7 (-15 -1486 ((-850) (-522))) (-15 -2426 ((-2 (|:| |den| (-522)) (|:| |gcdnum| (-522))) |#1|)) (-15 -2426 ((-522) |#2|)) (-15 -2214 ((-522) (-588 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522)))))) (-15 -3369 ((-522) |#2|)) (-15 -1645 (|#2| |#2|))) (-1142 (-382 (-522))) (-1142 (-382 |#1|))) (T -842))
+((-1645 (*1 *2 *2) (-12 (-4 *3 (-1142 (-382 (-522)))) (-5 *1 (-842 *3 *2)) (-4 *2 (-1142 (-382 *3))))) (-3369 (*1 *2 *3) (-12 (-4 *4 (-1142 (-382 *2))) (-5 *2 (-522)) (-5 *1 (-842 *4 *3)) (-4 *3 (-1142 (-382 *4))))) (-2214 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522))))) (-4 *4 (-1142 (-382 *2))) (-5 *2 (-522)) (-5 *1 (-842 *4 *5)) (-4 *5 (-1142 (-382 *4))))) (-2426 (*1 *2 *3) (-12 (-4 *4 (-1142 (-382 *2))) (-5 *2 (-522)) (-5 *1 (-842 *4 *3)) (-4 *3 (-1142 (-382 *4))))) (-2426 (*1 *2 *3) (-12 (-4 *3 (-1142 (-382 (-522)))) (-5 *2 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522)))) (-5 *1 (-842 *3 *4)) (-4 *4 (-1142 (-382 *3))))) (-1486 (*1 *2 *3) (-12 (-5 *3 (-522)) (-4 *4 (-1142 (-382 *3))) (-5 *2 (-850)) (-5 *1 (-842 *4 *5)) (-4 *5 (-1142 (-382 *4))))))
+(-10 -7 (-15 -1486 ((-850) (-522))) (-15 -2426 ((-2 (|:| |den| (-522)) (|:| |gcdnum| (-522))) |#1|)) (-15 -2426 ((-522) |#2|)) (-15 -2214 ((-522) (-588 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522)))))) (-15 -3369 ((-522) |#2|)) (-15 -1645 (|#2| |#2|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3049 ((|#1| $) 81)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-2333 (($ $ $) NIL)) (-3920 (((-3 $ "failed") $) 75)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3443 (($ |#1| (-393 |#1|)) 73)) (-3237 (((-1081 |#1|) |#1| |#1|) 40)) (-4148 (($ $) 49)) (-2859 (((-108) $) NIL)) (-2480 (((-522) $) 78)) (-3925 (($ $ (-522)) 80)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1496 ((|#1| $) 77)) (-1252 (((-393 |#1|) $) 76)) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) 74)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-3479 (($ $) 38)) (-2217 (((-792) $) 99) (($ (-522)) 54) (($ $) NIL) (($ (-382 (-522))) NIL) (($ |#1|) 30) (((-382 |#1|) $) 59) (($ (-382 (-393 |#1|))) 67)) (-2742 (((-708)) 52)) (-1407 (((-108) $ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 23 T CONST)) (-3709 (($) 11 T CONST)) (-1562 (((-108) $ $) 68)) (-1682 (($ $ $) NIL)) (-1672 (($ $) 88) (($ $ $) NIL)) (-1661 (($ $ $) 37)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 90) (($ $ $) 36) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ |#1| $) 89) (($ $ |#1|) NIL)))
+(((-843 |#1|) (-13 (-338) (-37 |#1|) (-10 -8 (-15 -2217 ((-382 |#1|) $)) (-15 -2217 ($ (-382 (-393 |#1|)))) (-15 -3479 ($ $)) (-15 -1252 ((-393 |#1|) $)) (-15 -1496 (|#1| $)) (-15 -3925 ($ $ (-522))) (-15 -2480 ((-522) $)) (-15 -3237 ((-1081 |#1|) |#1| |#1|)) (-15 -4148 ($ $)) (-15 -3443 ($ |#1| (-393 |#1|))) (-15 -3049 (|#1| $)))) (-283)) (T -843))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-382 *3)) (-5 *1 (-843 *3)) (-4 *3 (-283)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-382 (-393 *3))) (-4 *3 (-283)) (-5 *1 (-843 *3)))) (-3479 (*1 *1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))) (-1252 (*1 *2 *1) (-12 (-5 *2 (-393 *3)) (-5 *1 (-843 *3)) (-4 *3 (-283)))) (-1496 (*1 *2 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))) (-3925 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-843 *3)) (-4 *3 (-283)))) (-2480 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-843 *3)) (-4 *3 (-283)))) (-3237 (*1 *2 *3 *3) (-12 (-5 *2 (-1081 *3)) (-5 *1 (-843 *3)) (-4 *3 (-283)))) (-4148 (*1 *1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))) (-3443 (*1 *1 *2 *3) (-12 (-5 *3 (-393 *2)) (-4 *2 (-283)) (-5 *1 (-843 *2)))) (-3049 (*1 *2 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))))
+(-13 (-338) (-37 |#1|) (-10 -8 (-15 -2217 ((-382 |#1|) $)) (-15 -2217 ($ (-382 (-393 |#1|)))) (-15 -3479 ($ $)) (-15 -1252 ((-393 |#1|) $)) (-15 -1496 (|#1| $)) (-15 -3925 ($ $ (-522))) (-15 -2480 ((-522) $)) (-15 -3237 ((-1081 |#1|) |#1| |#1|)) (-15 -4148 ($ $)) (-15 -3443 ($ |#1| (-393 |#1|))) (-15 -3049 (|#1| $))))
+((-3443 (((-51) (-881 |#1|) (-393 (-881 |#1|)) (-1085)) 16) (((-51) (-382 (-881 |#1|)) (-1085)) 17)))
+(((-844 |#1|) (-10 -7 (-15 -3443 ((-51) (-382 (-881 |#1|)) (-1085))) (-15 -3443 ((-51) (-881 |#1|) (-393 (-881 |#1|)) (-1085)))) (-13 (-283) (-135))) (T -844))
+((-3443 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-393 (-881 *6))) (-5 *5 (-1085)) (-5 *3 (-881 *6)) (-4 *6 (-13 (-283) (-135))) (-5 *2 (-51)) (-5 *1 (-844 *6)))) (-3443 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-135))) (-5 *2 (-51)) (-5 *1 (-844 *5)))))
+(-10 -7 (-15 -3443 ((-51) (-382 (-881 |#1|)) (-1085))) (-15 -3443 ((-51) (-881 |#1|) (-393 (-881 |#1|)) (-1085))))
+((-2803 ((|#4| (-588 |#4|)) 119) (((-1081 |#4|) (-1081 |#4|) (-1081 |#4|)) 66) ((|#4| |#4| |#4|) 118)) (-2308 (((-1081 |#4|) (-588 (-1081 |#4|))) 112) (((-1081 |#4|) (-1081 |#4|) (-1081 |#4|)) 49) ((|#4| (-588 |#4|)) 54) ((|#4| |#4| |#4|) 83)))
+(((-845 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2308 (|#4| |#4| |#4|)) (-15 -2308 (|#4| (-588 |#4|))) (-15 -2308 ((-1081 |#4|) (-1081 |#4|) (-1081 |#4|))) (-15 -2308 ((-1081 |#4|) (-588 (-1081 |#4|)))) (-15 -2803 (|#4| |#4| |#4|)) (-15 -2803 ((-1081 |#4|) (-1081 |#4|) (-1081 |#4|))) (-15 -2803 (|#4| (-588 |#4|)))) (-730) (-784) (-283) (-878 |#3| |#1| |#2|)) (T -845))
+((-2803 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *6 *4 *5)) (-5 *1 (-845 *4 *5 *6 *2)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)))) (-2803 (*1 *2 *2 *2) (-12 (-5 *2 (-1081 *6)) (-4 *6 (-878 *5 *3 *4)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-283)) (-5 *1 (-845 *3 *4 *5 *6)))) (-2803 (*1 *2 *2 *2) (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-283)) (-5 *1 (-845 *3 *4 *5 *2)) (-4 *2 (-878 *5 *3 *4)))) (-2308 (*1 *2 *3) (-12 (-5 *3 (-588 (-1081 *7))) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-5 *2 (-1081 *7)) (-5 *1 (-845 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))) (-2308 (*1 *2 *2 *2) (-12 (-5 *2 (-1081 *6)) (-4 *6 (-878 *5 *3 *4)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-283)) (-5 *1 (-845 *3 *4 *5 *6)))) (-2308 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *6 *4 *5)) (-5 *1 (-845 *4 *5 *6 *2)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)))) (-2308 (*1 *2 *2 *2) (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-283)) (-5 *1 (-845 *3 *4 *5 *2)) (-4 *2 (-878 *5 *3 *4)))))
+(-10 -7 (-15 -2308 (|#4| |#4| |#4|)) (-15 -2308 (|#4| (-588 |#4|))) (-15 -2308 ((-1081 |#4|) (-1081 |#4|) (-1081 |#4|))) (-15 -2308 ((-1081 |#4|) (-588 (-1081 |#4|)))) (-15 -2803 (|#4| |#4| |#4|)) (-15 -2803 ((-1081 |#4|) (-1081 |#4|) (-1081 |#4|))) (-15 -2803 (|#4| (-588 |#4|))))
+((-3630 (((-833 (-522)) (-898)) 22) (((-833 (-522)) (-588 (-522))) 19)) (-3994 (((-833 (-522)) (-588 (-522))) 46) (((-833 (-522)) (-850)) 47)) (-3894 (((-833 (-522))) 23)) (-1595 (((-833 (-522))) 36) (((-833 (-522)) (-588 (-522))) 35)) (-1310 (((-833 (-522))) 34) (((-833 (-522)) (-588 (-522))) 33)) (-3722 (((-833 (-522))) 32) (((-833 (-522)) (-588 (-522))) 31)) (-1503 (((-833 (-522))) 30) (((-833 (-522)) (-588 (-522))) 29)) (-3869 (((-833 (-522))) 28) (((-833 (-522)) (-588 (-522))) 27)) (-1523 (((-833 (-522))) 38) (((-833 (-522)) (-588 (-522))) 37)) (-3018 (((-833 (-522)) (-588 (-522))) 50) (((-833 (-522)) (-850)) 51)) (-3072 (((-833 (-522)) (-588 (-522))) 48) (((-833 (-522)) (-850)) 49)) (-2249 (((-833 (-522)) (-588 (-522))) 43) (((-833 (-522)) (-850)) 45)) (-3724 (((-833 (-522)) (-588 (-850))) 40)))
+(((-846) (-10 -7 (-15 -3994 ((-833 (-522)) (-850))) (-15 -3994 ((-833 (-522)) (-588 (-522)))) (-15 -2249 ((-833 (-522)) (-850))) (-15 -2249 ((-833 (-522)) (-588 (-522)))) (-15 -3724 ((-833 (-522)) (-588 (-850)))) (-15 -3072 ((-833 (-522)) (-850))) (-15 -3072 ((-833 (-522)) (-588 (-522)))) (-15 -3018 ((-833 (-522)) (-850))) (-15 -3018 ((-833 (-522)) (-588 (-522)))) (-15 -3869 ((-833 (-522)) (-588 (-522)))) (-15 -3869 ((-833 (-522)))) (-15 -1503 ((-833 (-522)) (-588 (-522)))) (-15 -1503 ((-833 (-522)))) (-15 -3722 ((-833 (-522)) (-588 (-522)))) (-15 -3722 ((-833 (-522)))) (-15 -1310 ((-833 (-522)) (-588 (-522)))) (-15 -1310 ((-833 (-522)))) (-15 -1595 ((-833 (-522)) (-588 (-522)))) (-15 -1595 ((-833 (-522)))) (-15 -1523 ((-833 (-522)) (-588 (-522)))) (-15 -1523 ((-833 (-522)))) (-15 -3894 ((-833 (-522)))) (-15 -3630 ((-833 (-522)) (-588 (-522)))) (-15 -3630 ((-833 (-522)) (-898))))) (T -846))
+((-3630 (*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3630 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3894 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-1523 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-1523 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-1595 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-1595 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-1310 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-1310 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3722 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3722 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-1503 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-1503 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3869 (*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3869 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3018 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3018 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3072 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3072 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3724 (*1 *2 *3) (-12 (-5 *3 (-588 (-850))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2249 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-2249 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3994 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))) (-3994 (*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(-10 -7 (-15 -3994 ((-833 (-522)) (-850))) (-15 -3994 ((-833 (-522)) (-588 (-522)))) (-15 -2249 ((-833 (-522)) (-850))) (-15 -2249 ((-833 (-522)) (-588 (-522)))) (-15 -3724 ((-833 (-522)) (-588 (-850)))) (-15 -3072 ((-833 (-522)) (-850))) (-15 -3072 ((-833 (-522)) (-588 (-522)))) (-15 -3018 ((-833 (-522)) (-850))) (-15 -3018 ((-833 (-522)) (-588 (-522)))) (-15 -3869 ((-833 (-522)) (-588 (-522)))) (-15 -3869 ((-833 (-522)))) (-15 -1503 ((-833 (-522)) (-588 (-522)))) (-15 -1503 ((-833 (-522)))) (-15 -3722 ((-833 (-522)) (-588 (-522)))) (-15 -3722 ((-833 (-522)))) (-15 -1310 ((-833 (-522)) (-588 (-522)))) (-15 -1310 ((-833 (-522)))) (-15 -1595 ((-833 (-522)) (-588 (-522)))) (-15 -1595 ((-833 (-522)))) (-15 -1523 ((-833 (-522)) (-588 (-522)))) (-15 -1523 ((-833 (-522)))) (-15 -3894 ((-833 (-522)))) (-15 -3630 ((-833 (-522)) (-588 (-522)))) (-15 -3630 ((-833 (-522)) (-898))))
+((-1528 (((-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085))) 10)) (-3560 (((-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085))) 9)))
+(((-847 |#1|) (-10 -7 (-15 -3560 ((-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -1528 ((-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085))))) (-426)) (T -847))
+((-1528 (*1 *2 *2 *3) (-12 (-5 *2 (-588 (-881 *4))) (-5 *3 (-588 (-1085))) (-4 *4 (-426)) (-5 *1 (-847 *4)))) (-3560 (*1 *2 *2 *3) (-12 (-5 *2 (-588 (-881 *4))) (-5 *3 (-588 (-1085))) (-4 *4 (-426)) (-5 *1 (-847 *4)))))
+(-10 -7 (-15 -3560 ((-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -1528 ((-588 (-881 |#1|)) (-588 (-881 |#1|)) (-588 (-1085)))))
+((-2217 (((-291 |#1|) (-451)) 15)))
+(((-848 |#1|) (-10 -7 (-15 -2217 ((-291 |#1|) (-451)))) (-13 (-784) (-514))) (T -848))
+((-2217 (*1 *2 *3) (-12 (-5 *3 (-451)) (-5 *2 (-291 *4)) (-5 *1 (-848 *4)) (-4 *4 (-13 (-784) (-514))))))
+(-10 -7 (-15 -2217 ((-291 |#1|) (-451))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-2859 (((-108) $) 31)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-849) (-1197)) (T -849))
-((-3297 (*1 *2 *3) (-12 (-4 *1 (-849)) (-5 *2 (-2 (|:| -2977 (-588 *1)) (|:| -1383 *1))) (-5 *3 (-588 *1)))) (-2553 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-588 *1)) (-4 *1 (-849)))))
-(-13 (-426) (-10 -8 (-15 -3297 ((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $))) (-15 -2553 ((-3 (-588 $) "failed") (-588 $) $))))
+((-2135 (*1 *2 *3) (-12 (-4 *1 (-849)) (-5 *2 (-2 (|:| -3112 (-588 *1)) (|:| -1368 *1))) (-5 *3 (-588 *1)))) (-3716 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-588 *1)) (-4 *1 (-849)))))
+(-13 (-426) (-10 -8 (-15 -2135 ((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $))) (-15 -3716 ((-3 (-588 $) "failed") (-588 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-157) . T) ((-266) . T) ((-426) . T) ((-514) . T) ((-590 $) . T) ((-655 $) . T) ((-664) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) NIL)) (-2782 (((-108) $) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2259 (($ $ $) NIL)) (-2190 (((-792) $) NIL)) (-3510 (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3577 (($) NIL T CONST)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (* (($ (-850) $) NIL) (($ $ $) NIL)))
-(((-850) (-13 (-25) (-784) (-664) (-10 -8 (-15 -2259 ($ $ $)) (-6 (-4240 "*"))))) (T -850))
-((-2259 (*1 *1 *1 *1) (-5 *1 (-850))))
-(-13 (-25) (-784) (-664) (-10 -8 (-15 -2259 ($ $ $)) (-6 (-4240 "*"))))
-((-1540 ((|#2| (-588 |#1|) (-588 |#1|)) 24)))
-(((-851 |#1| |#2|) (-10 -7 (-15 -1540 (|#2| (-588 |#1|) (-588 |#1|)))) (-338) (-1142 |#1|)) (T -851))
-((-1540 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-338)) (-4 *2 (-1142 *4)) (-5 *1 (-851 *4 *2)))))
-(-10 -7 (-15 -1540 (|#2| (-588 |#1|) (-588 |#1|))))
-((-3774 (((-1081 |#2|) (-588 |#2|) (-588 |#2|)) 17) (((-1139 |#1| |#2|) (-1139 |#1| |#2|) (-588 |#2|) (-588 |#2|)) 13)))
-(((-852 |#1| |#2|) (-10 -7 (-15 -3774 ((-1139 |#1| |#2|) (-1139 |#1| |#2|) (-588 |#2|) (-588 |#2|))) (-15 -3774 ((-1081 |#2|) (-588 |#2|) (-588 |#2|)))) (-1085) (-338)) (T -852))
-((-3774 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *5)) (-4 *5 (-338)) (-5 *2 (-1081 *5)) (-5 *1 (-852 *4 *5)) (-14 *4 (-1085)))) (-3774 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1139 *4 *5)) (-5 *3 (-588 *5)) (-14 *4 (-1085)) (-4 *5 (-338)) (-5 *1 (-852 *4 *5)))))
-(-10 -7 (-15 -3774 ((-1139 |#1| |#2|) (-1139 |#1| |#2|) (-588 |#2|) (-588 |#2|))) (-15 -3774 ((-1081 |#2|) (-588 |#2|) (-588 |#2|))))
-((-2449 (((-522) (-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-1068)) 138)) (-3187 ((|#4| |#4|) 154)) (-3921 (((-588 (-382 (-881 |#1|))) (-588 (-1085))) 117)) (-4094 (((-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))) (-628 |#4|) (-588 (-382 (-881 |#1|))) (-588 (-588 |#4|)) (-708) (-708) (-522)) 73)) (-2582 (((-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))) (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))) (-588 |#4|)) 57)) (-1663 (((-628 |#4|) (-628 |#4|) (-588 |#4|)) 53)) (-1891 (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-1068)) 150)) (-2766 (((-522) (-628 |#4|) (-850) (-1068)) 131) (((-522) (-628 |#4|) (-588 (-1085)) (-850) (-1068)) 130) (((-522) (-628 |#4|) (-588 |#4|) (-850) (-1068)) 129) (((-522) (-628 |#4|) (-1068)) 126) (((-522) (-628 |#4|) (-588 (-1085)) (-1068)) 125) (((-522) (-628 |#4|) (-588 |#4|) (-1068)) 124) (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-850)) 123) (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 (-1085)) (-850)) 122) (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 |#4|) (-850)) 121) (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|)) 119) (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 (-1085))) 118) (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 |#4|)) 115)) (-2326 ((|#4| (-881 |#1|)) 66)) (-3722 (((-108) (-588 |#4|) (-588 (-588 |#4|))) 151)) (-1421 (((-588 (-588 (-522))) (-522) (-522)) 128)) (-3354 (((-588 (-588 |#4|)) (-588 (-588 |#4|))) 85)) (-4084 (((-708) (-588 (-2 (|:| -3166 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|))))) 83)) (-1670 (((-708) (-588 (-2 (|:| -3166 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|))))) 82)) (-1395 (((-108) (-588 (-881 |#1|))) 17) (((-108) (-588 |#4|)) 13)) (-4203 (((-2 (|:| |sysok| (-108)) (|:| |z0| (-588 |#4|)) (|:| |n0| (-588 |#4|))) (-588 |#4|) (-588 |#4|)) 69)) (-2034 (((-588 |#4|) |#4|) 47)) (-1824 (((-588 (-382 (-881 |#1|))) (-588 |#4|)) 113) (((-628 (-382 (-881 |#1|))) (-628 |#4|)) 54) (((-382 (-881 |#1|)) |#4|) 110)) (-2636 (((-2 (|:| |rgl| (-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))))))) (|:| |rgsz| (-522))) (-628 |#4|) (-588 (-382 (-881 |#1|))) (-708) (-1068) (-522)) 89)) (-1815 (((-588 (-2 (|:| -3166 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))) (-628 |#4|) (-708)) 81)) (-4157 (((-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522))))) (-628 |#4|) (-708)) 98)) (-1949 (((-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))) (-2 (|:| -1222 (-628 (-382 (-881 |#1|)))) (|:| |vec| (-588 (-382 (-881 |#1|)))) (|:| -3166 (-708)) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522))))) 46)))
-(((-853 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2766 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 |#4|))) (-15 -2766 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 (-1085)))) (-15 -2766 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|))) (-15 -2766 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 |#4|) (-850))) (-15 -2766 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 (-1085)) (-850))) (-15 -2766 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-850))) (-15 -2766 ((-522) (-628 |#4|) (-588 |#4|) (-1068))) (-15 -2766 ((-522) (-628 |#4|) (-588 (-1085)) (-1068))) (-15 -2766 ((-522) (-628 |#4|) (-1068))) (-15 -2766 ((-522) (-628 |#4|) (-588 |#4|) (-850) (-1068))) (-15 -2766 ((-522) (-628 |#4|) (-588 (-1085)) (-850) (-1068))) (-15 -2766 ((-522) (-628 |#4|) (-850) (-1068))) (-15 -2449 ((-522) (-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-1068))) (-15 -1891 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-1068))) (-15 -2636 ((-2 (|:| |rgl| (-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))))))) (|:| |rgsz| (-522))) (-628 |#4|) (-588 (-382 (-881 |#1|))) (-708) (-1068) (-522))) (-15 -1824 ((-382 (-881 |#1|)) |#4|)) (-15 -1824 ((-628 (-382 (-881 |#1|))) (-628 |#4|))) (-15 -1824 ((-588 (-382 (-881 |#1|))) (-588 |#4|))) (-15 -3921 ((-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -2326 (|#4| (-881 |#1|))) (-15 -4203 ((-2 (|:| |sysok| (-108)) (|:| |z0| (-588 |#4|)) (|:| |n0| (-588 |#4|))) (-588 |#4|) (-588 |#4|))) (-15 -1815 ((-588 (-2 (|:| -3166 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))) (-628 |#4|) (-708))) (-15 -2582 ((-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))) (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))) (-588 |#4|))) (-15 -1949 ((-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))) (-2 (|:| -1222 (-628 (-382 (-881 |#1|)))) (|:| |vec| (-588 (-382 (-881 |#1|)))) (|:| -3166 (-708)) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (-15 -2034 ((-588 |#4|) |#4|)) (-15 -1670 ((-708) (-588 (-2 (|:| -3166 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))))) (-15 -4084 ((-708) (-588 (-2 (|:| -3166 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))))) (-15 -3354 ((-588 (-588 |#4|)) (-588 (-588 |#4|)))) (-15 -1421 ((-588 (-588 (-522))) (-522) (-522))) (-15 -3722 ((-108) (-588 |#4|) (-588 (-588 |#4|)))) (-15 -4157 ((-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522))))) (-628 |#4|) (-708))) (-15 -1663 ((-628 |#4|) (-628 |#4|) (-588 |#4|))) (-15 -4094 ((-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))) (-628 |#4|) (-588 (-382 (-881 |#1|))) (-588 (-588 |#4|)) (-708) (-708) (-522))) (-15 -3187 (|#4| |#4|)) (-15 -1395 ((-108) (-588 |#4|))) (-15 -1395 ((-108) (-588 (-881 |#1|))))) (-13 (-283) (-135)) (-13 (-784) (-563 (-1085))) (-730) (-878 |#1| |#3| |#2|)) (T -853))
-((-1395 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-108)) (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))) (-1395 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-108)) (-5 *1 (-853 *4 *5 *6 *7)))) (-3187 (*1 *2 *2) (-12 (-4 *3 (-13 (-283) (-135))) (-4 *4 (-13 (-784) (-563 (-1085)))) (-4 *5 (-730)) (-5 *1 (-853 *3 *4 *5 *2)) (-4 *2 (-878 *3 *5 *4)))) (-4094 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522))))) (-5 *4 (-628 *12)) (-5 *5 (-588 (-382 (-881 *9)))) (-5 *6 (-588 (-588 *12))) (-5 *7 (-708)) (-5 *8 (-522)) (-4 *9 (-13 (-283) (-135))) (-4 *12 (-878 *9 *11 *10)) (-4 *10 (-13 (-784) (-563 (-1085)))) (-4 *11 (-730)) (-5 *2 (-2 (|:| |eqzro| (-588 *12)) (|:| |neqzro| (-588 *12)) (|:| |wcond| (-588 (-881 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *9)))) (|:| -3855 (-588 (-1166 (-382 (-881 *9))))))))) (-5 *1 (-853 *9 *10 *11 *12)))) (-1663 (*1 *2 *2 *3) (-12 (-5 *2 (-628 *7)) (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *1 (-853 *4 *5 *6 *7)))) (-4157 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *8)) (-5 *4 (-708)) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-588 (-2 (|:| |det| *8) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (-5 *1 (-853 *5 *6 *7 *8)))) (-3722 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-588 *8))) (-5 *3 (-588 *8)) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-108)) (-5 *1 (-853 *5 *6 *7 *8)))) (-1421 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-588 (-588 (-522)))) (-5 *1 (-853 *4 *5 *6 *7)) (-5 *3 (-522)) (-4 *7 (-878 *4 *6 *5)))) (-3354 (*1 *2 *2) (-12 (-5 *2 (-588 (-588 *6))) (-4 *6 (-878 *3 *5 *4)) (-4 *3 (-13 (-283) (-135))) (-4 *4 (-13 (-784) (-563 (-1085)))) (-4 *5 (-730)) (-5 *1 (-853 *3 *4 *5 *6)))) (-4084 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -3166 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| *7) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 *7))))) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-708)) (-5 *1 (-853 *4 *5 *6 *7)))) (-1670 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -3166 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| *7) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 *7))))) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-708)) (-5 *1 (-853 *4 *5 *6 *7)))) (-2034 (*1 *2 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-588 *3)) (-5 *1 (-853 *4 *5 *6 *3)) (-4 *3 (-878 *4 *6 *5)))) (-1949 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1222 (-628 (-382 (-881 *4)))) (|:| |vec| (-588 (-382 (-881 *4)))) (|:| -3166 (-708)) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522))))) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-2 (|:| |partsol| (-1166 (-382 (-881 *4)))) (|:| -3855 (-588 (-1166 (-382 (-881 *4))))))) (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))) (-2582 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1166 (-382 (-881 *4)))) (|:| -3855 (-588 (-1166 (-382 (-881 *4))))))) (-5 *3 (-588 *7)) (-4 *4 (-13 (-283) (-135))) (-4 *7 (-878 *4 *6 *5)) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *1 (-853 *4 *5 *6 *7)))) (-1815 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *8)) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-588 (-2 (|:| -3166 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| *8) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 *8))))) (-5 *1 (-853 *5 *6 *7 *8)) (-5 *4 (-708)))) (-4203 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-4 *7 (-878 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-108)) (|:| |z0| (-588 *7)) (|:| |n0| (-588 *7)))) (-5 *1 (-853 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-2326 (*1 *2 *3) (-12 (-5 *3 (-881 *4)) (-4 *4 (-13 (-283) (-135))) (-4 *2 (-878 *4 *6 *5)) (-5 *1 (-853 *4 *5 *6 *2)) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)))) (-3921 (*1 *2 *3) (-12 (-5 *3 (-588 (-1085))) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-588 (-382 (-881 *4)))) (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))) (-1824 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-588 (-382 (-881 *4)))) (-5 *1 (-853 *4 *5 *6 *7)))) (-1824 (*1 *2 *3) (-12 (-5 *3 (-628 *7)) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-628 (-382 (-881 *4)))) (-5 *1 (-853 *4 *5 *6 *7)))) (-1824 (*1 *2 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-382 (-881 *4))) (-5 *1 (-853 *4 *5 *6 *3)) (-4 *3 (-878 *4 *6 *5)))) (-2636 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-628 *11)) (-5 *4 (-588 (-382 (-881 *8)))) (-5 *5 (-708)) (-5 *6 (-1068)) (-4 *8 (-13 (-283) (-135))) (-4 *11 (-878 *8 *10 *9)) (-4 *9 (-13 (-784) (-563 (-1085)))) (-4 *10 (-730)) (-5 *2 (-2 (|:| |rgl| (-588 (-2 (|:| |eqzro| (-588 *11)) (|:| |neqzro| (-588 *11)) (|:| |wcond| (-588 (-881 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *8)))) (|:| -3855 (-588 (-1166 (-382 (-881 *8)))))))))) (|:| |rgsz| (-522)))) (-5 *1 (-853 *8 *9 *10 *11)) (-5 *7 (-522)))) (-1891 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *7)) (|:| |neqzro| (-588 *7)) (|:| |wcond| (-588 (-881 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *4)))) (|:| -3855 (-588 (-1166 (-382 (-881 *4)))))))))) (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))) (-2449 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8)) (|:| |wcond| (-588 (-881 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *5)))) (|:| -3855 (-588 (-1166 (-382 (-881 *5)))))))))) (-5 *4 (-1068)) (-4 *5 (-13 (-283) (-135))) (-4 *8 (-878 *5 *7 *6)) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *5 *6 *7 *8)))) (-2766 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *9)) (-5 *4 (-850)) (-5 *5 (-1068)) (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135))) (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *6 *7 *8 *9)))) (-2766 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-628 *10)) (-5 *4 (-588 (-1085))) (-5 *5 (-850)) (-5 *6 (-1068)) (-4 *10 (-878 *7 *9 *8)) (-4 *7 (-13 (-283) (-135))) (-4 *8 (-13 (-784) (-563 (-1085)))) (-4 *9 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *7 *8 *9 *10)))) (-2766 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-628 *10)) (-5 *4 (-588 *10)) (-5 *5 (-850)) (-5 *6 (-1068)) (-4 *10 (-878 *7 *9 *8)) (-4 *7 (-13 (-283) (-135))) (-4 *8 (-13 (-784) (-563 (-1085)))) (-4 *9 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *7 *8 *9 *10)))) (-2766 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *8)) (-5 *4 (-1068)) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *5 *6 *7 *8)))) (-2766 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *9)) (-5 *4 (-588 (-1085))) (-5 *5 (-1068)) (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135))) (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *6 *7 *8 *9)))) (-2766 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *9)) (-5 *4 (-588 *9)) (-5 *5 (-1068)) (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135))) (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *6 *7 *8 *9)))) (-2766 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *8)) (-5 *4 (-850)) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8)) (|:| |wcond| (-588 (-881 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *5)))) (|:| -3855 (-588 (-1166 (-382 (-881 *5)))))))))) (-5 *1 (-853 *5 *6 *7 *8)))) (-2766 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *9)) (-5 *4 (-588 (-1085))) (-5 *5 (-850)) (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135))) (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *9)) (|:| |neqzro| (-588 *9)) (|:| |wcond| (-588 (-881 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *6)))) (|:| -3855 (-588 (-1166 (-382 (-881 *6)))))))))) (-5 *1 (-853 *6 *7 *8 *9)))) (-2766 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *9)) (-5 *5 (-850)) (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135))) (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *9)) (|:| |neqzro| (-588 *9)) (|:| |wcond| (-588 (-881 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *6)))) (|:| -3855 (-588 (-1166 (-382 (-881 *6)))))))))) (-5 *1 (-853 *6 *7 *8 *9)) (-5 *4 (-588 *9)))) (-2766 (*1 *2 *3) (-12 (-5 *3 (-628 *7)) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *7)) (|:| |neqzro| (-588 *7)) (|:| |wcond| (-588 (-881 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *4)))) (|:| -3855 (-588 (-1166 (-382 (-881 *4)))))))))) (-5 *1 (-853 *4 *5 *6 *7)))) (-2766 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *8)) (-5 *4 (-588 (-1085))) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8)) (|:| |wcond| (-588 (-881 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *5)))) (|:| -3855 (-588 (-1166 (-382 (-881 *5)))))))))) (-5 *1 (-853 *5 *6 *7 *8)))) (-2766 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *8)) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8)) (|:| |wcond| (-588 (-881 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *5)))) (|:| -3855 (-588 (-1166 (-382 (-881 *5)))))))))) (-5 *1 (-853 *5 *6 *7 *8)) (-5 *4 (-588 *8)))))
-(-10 -7 (-15 -2766 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 |#4|))) (-15 -2766 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 (-1085)))) (-15 -2766 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|))) (-15 -2766 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 |#4|) (-850))) (-15 -2766 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 (-1085)) (-850))) (-15 -2766 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-850))) (-15 -2766 ((-522) (-628 |#4|) (-588 |#4|) (-1068))) (-15 -2766 ((-522) (-628 |#4|) (-588 (-1085)) (-1068))) (-15 -2766 ((-522) (-628 |#4|) (-1068))) (-15 -2766 ((-522) (-628 |#4|) (-588 |#4|) (-850) (-1068))) (-15 -2766 ((-522) (-628 |#4|) (-588 (-1085)) (-850) (-1068))) (-15 -2766 ((-522) (-628 |#4|) (-850) (-1068))) (-15 -2449 ((-522) (-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-1068))) (-15 -1891 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|))))))))) (-1068))) (-15 -2636 ((-2 (|:| |rgl| (-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))))))) (|:| |rgsz| (-522))) (-628 |#4|) (-588 (-382 (-881 |#1|))) (-708) (-1068) (-522))) (-15 -1824 ((-382 (-881 |#1|)) |#4|)) (-15 -1824 ((-628 (-382 (-881 |#1|))) (-628 |#4|))) (-15 -1824 ((-588 (-382 (-881 |#1|))) (-588 |#4|))) (-15 -3921 ((-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -2326 (|#4| (-881 |#1|))) (-15 -4203 ((-2 (|:| |sysok| (-108)) (|:| |z0| (-588 |#4|)) (|:| |n0| (-588 |#4|))) (-588 |#4|) (-588 |#4|))) (-15 -1815 ((-588 (-2 (|:| -3166 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))) (-628 |#4|) (-708))) (-15 -2582 ((-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))) (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))) (-588 |#4|))) (-15 -1949 ((-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))) (-2 (|:| -1222 (-628 (-382 (-881 |#1|)))) (|:| |vec| (-588 (-382 (-881 |#1|)))) (|:| -3166 (-708)) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (-15 -2034 ((-588 |#4|) |#4|)) (-15 -1670 ((-708) (-588 (-2 (|:| -3166 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))))) (-15 -4084 ((-708) (-588 (-2 (|:| -3166 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))))) (-15 -3354 ((-588 (-588 |#4|)) (-588 (-588 |#4|)))) (-15 -1421 ((-588 (-588 (-522))) (-522) (-522))) (-15 -3722 ((-108) (-588 |#4|) (-588 (-588 |#4|)))) (-15 -4157 ((-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522))))) (-628 |#4|) (-708))) (-15 -1663 ((-628 |#4|) (-628 |#4|) (-588 |#4|))) (-15 -4094 ((-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -3855 (-588 (-1166 (-382 (-881 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))) (-628 |#4|) (-588 (-382 (-881 |#1|))) (-588 (-588 |#4|)) (-708) (-708) (-522))) (-15 -3187 (|#4| |#4|)) (-15 -1395 ((-108) (-588 |#4|))) (-15 -1395 ((-108) (-588 (-881 |#1|)))))
-((-2970 (((-856) |#1| (-1085)) 16) (((-856) |#1| (-1085) (-1009 (-202))) 20)) (-1333 (((-856) |#1| |#1| (-1085) (-1009 (-202))) 18) (((-856) |#1| (-1085) (-1009 (-202))) 14)))
-(((-854 |#1|) (-10 -7 (-15 -1333 ((-856) |#1| (-1085) (-1009 (-202)))) (-15 -1333 ((-856) |#1| |#1| (-1085) (-1009 (-202)))) (-15 -2970 ((-856) |#1| (-1085) (-1009 (-202)))) (-15 -2970 ((-856) |#1| (-1085)))) (-563 (-498))) (T -854))
-((-2970 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-5 *2 (-856)) (-5 *1 (-854 *3)) (-4 *3 (-563 (-498))))) (-2970 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085)) (-5 *5 (-1009 (-202))) (-5 *2 (-856)) (-5 *1 (-854 *3)) (-4 *3 (-563 (-498))))) (-1333 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1085)) (-5 *5 (-1009 (-202))) (-5 *2 (-856)) (-5 *1 (-854 *3)) (-4 *3 (-563 (-498))))) (-1333 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085)) (-5 *5 (-1009 (-202))) (-5 *2 (-856)) (-5 *1 (-854 *3)) (-4 *3 (-563 (-498))))))
-(-10 -7 (-15 -1333 ((-856) |#1| (-1085) (-1009 (-202)))) (-15 -1333 ((-856) |#1| |#1| (-1085) (-1009 (-202)))) (-15 -2970 ((-856) |#1| (-1085) (-1009 (-202)))) (-15 -2970 ((-856) |#1| (-1085))))
-((-1879 (($ $ (-1009 (-202)) (-1009 (-202)) (-1009 (-202))) 69)) (-3821 (((-1009 (-202)) $) 40)) (-3808 (((-1009 (-202)) $) 39)) (-3794 (((-1009 (-202)) $) 38)) (-1498 (((-588 (-588 (-202))) $) 43)) (-4112 (((-1009 (-202)) $) 41)) (-1390 (((-522) (-522)) 32)) (-3148 (((-522) (-522)) 28)) (-3713 (((-522) (-522)) 30)) (-2407 (((-108) (-108)) 35)) (-3748 (((-522)) 31)) (-1499 (($ $ (-1009 (-202))) 72) (($ $) 73)) (-2118 (($ (-1 (-872 (-202)) (-202)) (-1009 (-202))) 77) (($ (-1 (-872 (-202)) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202))) 78)) (-1333 (($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202))) 80) (($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202))) 81) (($ $ (-1009 (-202))) 75)) (-3316 (((-522)) 36)) (-3617 (((-522)) 27)) (-2996 (((-522)) 29)) (-2745 (((-588 (-588 (-872 (-202)))) $) 93)) (-2158 (((-108) (-108)) 37)) (-2190 (((-792) $) 92)) (-2663 (((-108)) 34)))
-(((-855) (-13 (-901) (-10 -8 (-15 -2118 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)))) (-15 -2118 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -1333 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)))) (-15 -1333 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -1333 ($ $ (-1009 (-202)))) (-15 -1879 ($ $ (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -1499 ($ $ (-1009 (-202)))) (-15 -1499 ($ $)) (-15 -4112 ((-1009 (-202)) $)) (-15 -1498 ((-588 (-588 (-202))) $)) (-15 -3617 ((-522))) (-15 -3148 ((-522) (-522))) (-15 -2996 ((-522))) (-15 -3713 ((-522) (-522))) (-15 -3748 ((-522))) (-15 -1390 ((-522) (-522))) (-15 -2663 ((-108))) (-15 -2407 ((-108) (-108))) (-15 -3316 ((-522))) (-15 -2158 ((-108) (-108)))))) (T -855))
-((-2118 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-855)))) (-2118 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-855)))) (-1333 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-855)))) (-1333 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-855)))) (-1333 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855)))) (-1879 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855)))) (-1499 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855)))) (-1499 (*1 *1 *1) (-5 *1 (-855))) (-4112 (*1 *2 *1) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855)))) (-1498 (*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-202)))) (-5 *1 (-855)))) (-3617 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-3148 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-2996 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-3713 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-3748 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-1390 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-2663 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-855)))) (-2407 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-855)))) (-3316 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-2158 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-855)))))
-(-13 (-901) (-10 -8 (-15 -2118 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)))) (-15 -2118 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -1333 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)))) (-15 -1333 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -1333 ($ $ (-1009 (-202)))) (-15 -1879 ($ $ (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -1499 ($ $ (-1009 (-202)))) (-15 -1499 ($ $)) (-15 -4112 ((-1009 (-202)) $)) (-15 -1498 ((-588 (-588 (-202))) $)) (-15 -3617 ((-522))) (-15 -3148 ((-522) (-522))) (-15 -2996 ((-522))) (-15 -3713 ((-522) (-522))) (-15 -3748 ((-522))) (-15 -1390 ((-522) (-522))) (-15 -2663 ((-108))) (-15 -2407 ((-108) (-108))) (-15 -3316 ((-522))) (-15 -2158 ((-108) (-108)))))
-((-1879 (($ $ (-1009 (-202))) 70) (($ $ (-1009 (-202)) (-1009 (-202))) 71)) (-3808 (((-1009 (-202)) $) 43)) (-3794 (((-1009 (-202)) $) 42)) (-4112 (((-1009 (-202)) $) 44)) (-3453 (((-522) (-522)) 36)) (-2539 (((-522) (-522)) 32)) (-3576 (((-522) (-522)) 34)) (-2419 (((-108) (-108)) 38)) (-4017 (((-522)) 35)) (-1499 (($ $ (-1009 (-202))) 74) (($ $) 75)) (-2118 (($ (-1 (-872 (-202)) (-202)) (-1009 (-202))) 84) (($ (-1 (-872 (-202)) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202))) 85)) (-2970 (($ (-1 (-202) (-202)) (-1009 (-202))) 92) (($ (-1 (-202) (-202))) 95)) (-1333 (($ (-1 (-202) (-202)) (-1009 (-202))) 79) (($ (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202))) 80) (($ (-588 (-1 (-202) (-202))) (-1009 (-202))) 87) (($ (-588 (-1 (-202) (-202))) (-1009 (-202)) (-1009 (-202))) 88) (($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202))) 81) (($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202))) 82) (($ $ (-1009 (-202))) 76)) (-2104 (((-108) $) 39)) (-1877 (((-522)) 40)) (-3511 (((-522)) 31)) (-4082 (((-522)) 33)) (-2745 (((-588 (-588 (-872 (-202)))) $) 22)) (-3011 (((-108) (-108)) 41)) (-2190 (((-792) $) 106)) (-3512 (((-108)) 37)))
-(((-856) (-13 (-883) (-10 -8 (-15 -1333 ($ (-1 (-202) (-202)) (-1009 (-202)))) (-15 -1333 ($ (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -1333 ($ (-588 (-1 (-202) (-202))) (-1009 (-202)))) (-15 -1333 ($ (-588 (-1 (-202) (-202))) (-1009 (-202)) (-1009 (-202)))) (-15 -1333 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)))) (-15 -1333 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -2118 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)))) (-15 -2118 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -2970 ($ (-1 (-202) (-202)) (-1009 (-202)))) (-15 -2970 ($ (-1 (-202) (-202)))) (-15 -1333 ($ $ (-1009 (-202)))) (-15 -2104 ((-108) $)) (-15 -1879 ($ $ (-1009 (-202)))) (-15 -1879 ($ $ (-1009 (-202)) (-1009 (-202)))) (-15 -1499 ($ $ (-1009 (-202)))) (-15 -1499 ($ $)) (-15 -4112 ((-1009 (-202)) $)) (-15 -3511 ((-522))) (-15 -2539 ((-522) (-522))) (-15 -4082 ((-522))) (-15 -3576 ((-522) (-522))) (-15 -4017 ((-522))) (-15 -3453 ((-522) (-522))) (-15 -3512 ((-108))) (-15 -2419 ((-108) (-108))) (-15 -1877 ((-522))) (-15 -3011 ((-108) (-108)))))) (T -856))
-((-1333 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-1333 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-1333 (*1 *1 *2 *3) (-12 (-5 *2 (-588 (-1 (-202) (-202)))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-1333 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-588 (-1 (-202) (-202)))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-1333 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-1333 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-2118 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-2118 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-2970 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-2970 (*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *1 (-856)))) (-1333 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856)))) (-2104 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-856)))) (-1879 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856)))) (-1879 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856)))) (-1499 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856)))) (-1499 (*1 *1 *1) (-5 *1 (-856))) (-4112 (*1 *2 *1) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856)))) (-3511 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-2539 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-4082 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-3576 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-4017 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-3453 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-3512 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-856)))) (-2419 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-856)))) (-1877 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-3011 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-856)))))
-(-13 (-883) (-10 -8 (-15 -1333 ($ (-1 (-202) (-202)) (-1009 (-202)))) (-15 -1333 ($ (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -1333 ($ (-588 (-1 (-202) (-202))) (-1009 (-202)))) (-15 -1333 ($ (-588 (-1 (-202) (-202))) (-1009 (-202)) (-1009 (-202)))) (-15 -1333 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)))) (-15 -1333 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -2118 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)))) (-15 -2118 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -2970 ($ (-1 (-202) (-202)) (-1009 (-202)))) (-15 -2970 ($ (-1 (-202) (-202)))) (-15 -1333 ($ $ (-1009 (-202)))) (-15 -2104 ((-108) $)) (-15 -1879 ($ $ (-1009 (-202)))) (-15 -1879 ($ $ (-1009 (-202)) (-1009 (-202)))) (-15 -1499 ($ $ (-1009 (-202)))) (-15 -1499 ($ $)) (-15 -4112 ((-1009 (-202)) $)) (-15 -3511 ((-522))) (-15 -2539 ((-522) (-522))) (-15 -4082 ((-522))) (-15 -3576 ((-522) (-522))) (-15 -4017 ((-522))) (-15 -3453 ((-522) (-522))) (-15 -3512 ((-108))) (-15 -2419 ((-108) (-108))) (-15 -1877 ((-522))) (-15 -3011 ((-108) (-108)))))
-((-1517 (((-588 (-1009 (-202))) (-588 (-588 (-872 (-202))))) 23)))
-(((-857) (-10 -7 (-15 -1517 ((-588 (-1009 (-202))) (-588 (-588 (-872 (-202)))))))) (T -857))
-((-1517 (*1 *2 *3) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *2 (-588 (-1009 (-202)))) (-5 *1 (-857)))))
-(-10 -7 (-15 -1517 ((-588 (-1009 (-202))) (-588 (-588 (-872 (-202)))))))
-((-2699 ((|#2| |#2|) 25)) (-1793 ((|#2| |#2|) 26)) (-2677 ((|#2| |#2|) 24)) (-2983 ((|#2| |#2| (-1068)) 23)))
-(((-858 |#1| |#2|) (-10 -7 (-15 -2983 (|#2| |#2| (-1068))) (-15 -2677 (|#2| |#2|)) (-15 -2699 (|#2| |#2|)) (-15 -1793 (|#2| |#2|))) (-784) (-405 |#1|)) (T -858))
-((-1793 (*1 *2 *2) (-12 (-4 *3 (-784)) (-5 *1 (-858 *3 *2)) (-4 *2 (-405 *3)))) (-2699 (*1 *2 *2) (-12 (-4 *3 (-784)) (-5 *1 (-858 *3 *2)) (-4 *2 (-405 *3)))) (-2677 (*1 *2 *2) (-12 (-4 *3 (-784)) (-5 *1 (-858 *3 *2)) (-4 *2 (-405 *3)))) (-2983 (*1 *2 *2 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-784)) (-5 *1 (-858 *4 *2)) (-4 *2 (-405 *4)))))
-(-10 -7 (-15 -2983 (|#2| |#2| (-1068))) (-15 -2677 (|#2| |#2|)) (-15 -2699 (|#2| |#2|)) (-15 -1793 (|#2| |#2|)))
-((-2699 (((-291 (-522)) (-1085)) 15)) (-1793 (((-291 (-522)) (-1085)) 13)) (-2677 (((-291 (-522)) (-1085)) 11)) (-2983 (((-291 (-522)) (-1085) (-1068)) 18)))
-(((-859) (-10 -7 (-15 -2983 ((-291 (-522)) (-1085) (-1068))) (-15 -2677 ((-291 (-522)) (-1085))) (-15 -2699 ((-291 (-522)) (-1085))) (-15 -1793 ((-291 (-522)) (-1085))))) (T -859))
-((-1793 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-291 (-522))) (-5 *1 (-859)))) (-2699 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-291 (-522))) (-5 *1 (-859)))) (-2677 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-291 (-522))) (-5 *1 (-859)))) (-2983 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-1068)) (-5 *2 (-291 (-522))) (-5 *1 (-859)))))
-(-10 -7 (-15 -2983 ((-291 (-522)) (-1085) (-1068))) (-15 -2677 ((-291 (-522)) (-1085))) (-15 -2699 ((-291 (-522)) (-1085))) (-15 -1793 ((-291 (-522)) (-1085))))
-((-4011 (((-818 |#1| |#3|) |#2| (-821 |#1|) (-818 |#1| |#3|)) 24)) (-1454 (((-1 (-108) |#2|) (-1 (-108) |#3|)) 12)))
-(((-860 |#1| |#2| |#3|) (-10 -7 (-15 -1454 ((-1 (-108) |#2|) (-1 (-108) |#3|))) (-15 -4011 ((-818 |#1| |#3|) |#2| (-821 |#1|) (-818 |#1| |#3|)))) (-1014) (-815 |#1|) (-13 (-1014) (-962 |#2|))) (T -860))
-((-4011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *6)) (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-4 *6 (-13 (-1014) (-962 *3))) (-4 *3 (-815 *5)) (-5 *1 (-860 *5 *3 *6)))) (-1454 (*1 *2 *3) (-12 (-5 *3 (-1 (-108) *6)) (-4 *6 (-13 (-1014) (-962 *5))) (-4 *5 (-815 *4)) (-4 *4 (-1014)) (-5 *2 (-1 (-108) *5)) (-5 *1 (-860 *4 *5 *6)))))
-(-10 -7 (-15 -1454 ((-1 (-108) |#2|) (-1 (-108) |#3|))) (-15 -4011 ((-818 |#1| |#3|) |#2| (-821 |#1|) (-818 |#1| |#3|))))
-((-4011 (((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)) 29)))
-(((-861 |#1| |#2| |#3|) (-10 -7 (-15 -4011 ((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)))) (-1014) (-13 (-514) (-784) (-815 |#1|)) (-13 (-405 |#2|) (-563 (-821 |#1|)) (-815 |#1|) (-962 (-561 $)))) (T -861))
-((-4011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *3)) (-4 *5 (-1014)) (-4 *3 (-13 (-405 *6) (-563 *4) (-815 *5) (-962 (-561 $)))) (-5 *4 (-821 *5)) (-4 *6 (-13 (-514) (-784) (-815 *5))) (-5 *1 (-861 *5 *6 *3)))))
-(-10 -7 (-15 -4011 ((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))))
-((-4011 (((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|)) 12)))
-(((-862 |#1|) (-10 -7 (-15 -4011 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|)))) (-507)) (T -862))
-((-4011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 (-522) *3)) (-5 *4 (-821 (-522))) (-4 *3 (-507)) (-5 *1 (-862 *3)))))
-(-10 -7 (-15 -4011 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))))
-((-4011 (((-818 |#1| |#2|) (-561 |#2|) (-821 |#1|) (-818 |#1| |#2|)) 52)))
-(((-863 |#1| |#2|) (-10 -7 (-15 -4011 ((-818 |#1| |#2|) (-561 |#2|) (-821 |#1|) (-818 |#1| |#2|)))) (-1014) (-13 (-784) (-962 (-561 $)) (-563 (-821 |#1|)) (-815 |#1|))) (T -863))
-((-4011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *6)) (-5 *3 (-561 *6)) (-4 *5 (-1014)) (-4 *6 (-13 (-784) (-962 (-561 $)) (-563 *4) (-815 *5))) (-5 *4 (-821 *5)) (-5 *1 (-863 *5 *6)))))
-(-10 -7 (-15 -4011 ((-818 |#1| |#2|) (-561 |#2|) (-821 |#1|) (-818 |#1| |#2|))))
-((-4011 (((-814 |#1| |#2| |#3|) |#3| (-821 |#1|) (-814 |#1| |#2| |#3|)) 14)))
-(((-864 |#1| |#2| |#3|) (-10 -7 (-15 -4011 ((-814 |#1| |#2| |#3|) |#3| (-821 |#1|) (-814 |#1| |#2| |#3|)))) (-1014) (-815 |#1|) (-608 |#2|)) (T -864))
-((-4011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-814 *5 *6 *3)) (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-4 *6 (-815 *5)) (-4 *3 (-608 *6)) (-5 *1 (-864 *5 *6 *3)))))
-(-10 -7 (-15 -4011 ((-814 |#1| |#2| |#3|) |#3| (-821 |#1|) (-814 |#1| |#2| |#3|))))
-((-4011 (((-818 |#1| |#5|) |#5| (-821 |#1|) (-818 |#1| |#5|)) 17 (|has| |#3| (-815 |#1|))) (((-818 |#1| |#5|) |#5| (-821 |#1|) (-818 |#1| |#5|) (-1 (-818 |#1| |#5|) |#3| (-821 |#1|) (-818 |#1| |#5|))) 16)))
-(((-865 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4011 ((-818 |#1| |#5|) |#5| (-821 |#1|) (-818 |#1| |#5|) (-1 (-818 |#1| |#5|) |#3| (-821 |#1|) (-818 |#1| |#5|)))) (IF (|has| |#3| (-815 |#1|)) (-15 -4011 ((-818 |#1| |#5|) |#5| (-821 |#1|) (-818 |#1| |#5|))) |%noBranch|)) (-1014) (-730) (-784) (-13 (-971) (-784) (-815 |#1|)) (-13 (-878 |#4| |#2| |#3|) (-563 (-821 |#1|)))) (T -865))
-((-4011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *3)) (-4 *5 (-1014)) (-4 *3 (-13 (-878 *8 *6 *7) (-563 *4))) (-5 *4 (-821 *5)) (-4 *7 (-815 *5)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-13 (-971) (-784) (-815 *5))) (-5 *1 (-865 *5 *6 *7 *8 *3)))) (-4011 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-818 *6 *3) *8 (-821 *6) (-818 *6 *3))) (-4 *8 (-784)) (-5 *2 (-818 *6 *3)) (-5 *4 (-821 *6)) (-4 *6 (-1014)) (-4 *3 (-13 (-878 *9 *7 *8) (-563 *4))) (-4 *7 (-730)) (-4 *9 (-13 (-971) (-784) (-815 *6))) (-5 *1 (-865 *6 *7 *8 *9 *3)))))
-(-10 -7 (-15 -4011 ((-818 |#1| |#5|) |#5| (-821 |#1|) (-818 |#1| |#5|) (-1 (-818 |#1| |#5|) |#3| (-821 |#1|) (-818 |#1| |#5|)))) (IF (|has| |#3| (-815 |#1|)) (-15 -4011 ((-818 |#1| |#5|) |#5| (-821 |#1|) (-818 |#1| |#5|))) |%noBranch|))
-((-1870 ((|#2| |#2| (-588 (-1 (-108) |#3|))) 11) ((|#2| |#2| (-1 (-108) |#3|)) 12)))
-(((-866 |#1| |#2| |#3|) (-10 -7 (-15 -1870 (|#2| |#2| (-1 (-108) |#3|))) (-15 -1870 (|#2| |#2| (-588 (-1 (-108) |#3|))))) (-784) (-405 |#1|) (-1120)) (T -866))
-((-1870 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-1 (-108) *5))) (-4 *5 (-1120)) (-4 *4 (-784)) (-5 *1 (-866 *4 *2 *5)) (-4 *2 (-405 *4)))) (-1870 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *5)) (-4 *5 (-1120)) (-4 *4 (-784)) (-5 *1 (-866 *4 *2 *5)) (-4 *2 (-405 *4)))))
-(-10 -7 (-15 -1870 (|#2| |#2| (-1 (-108) |#3|))) (-15 -1870 (|#2| |#2| (-588 (-1 (-108) |#3|)))))
-((-1870 (((-291 (-522)) (-1085) (-588 (-1 (-108) |#1|))) 16) (((-291 (-522)) (-1085) (-1 (-108) |#1|)) 13)))
-(((-867 |#1|) (-10 -7 (-15 -1870 ((-291 (-522)) (-1085) (-1 (-108) |#1|))) (-15 -1870 ((-291 (-522)) (-1085) (-588 (-1 (-108) |#1|))))) (-1120)) (T -867))
-((-1870 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-588 (-1 (-108) *5))) (-4 *5 (-1120)) (-5 *2 (-291 (-522))) (-5 *1 (-867 *5)))) (-1870 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-1 (-108) *5)) (-4 *5 (-1120)) (-5 *2 (-291 (-522))) (-5 *1 (-867 *5)))))
-(-10 -7 (-15 -1870 ((-291 (-522)) (-1085) (-1 (-108) |#1|))) (-15 -1870 ((-291 (-522)) (-1085) (-588 (-1 (-108) |#1|)))))
-((-4011 (((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)) 25)))
-(((-868 |#1| |#2| |#3|) (-10 -7 (-15 -4011 ((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)))) (-1014) (-13 (-514) (-815 |#1|) (-563 (-821 |#1|))) (-919 |#2|)) (T -868))
-((-4011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *3)) (-4 *5 (-1014)) (-4 *3 (-919 *6)) (-4 *6 (-13 (-514) (-815 *5) (-563 *4))) (-5 *4 (-821 *5)) (-5 *1 (-868 *5 *6 *3)))))
-(-10 -7 (-15 -4011 ((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))))
-((-4011 (((-818 |#1| (-1085)) (-1085) (-821 |#1|) (-818 |#1| (-1085))) 17)))
-(((-869 |#1|) (-10 -7 (-15 -4011 ((-818 |#1| (-1085)) (-1085) (-821 |#1|) (-818 |#1| (-1085))))) (-1014)) (T -869))
-((-4011 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 (-1085))) (-5 *3 (-1085)) (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-5 *1 (-869 *5)))))
-(-10 -7 (-15 -4011 ((-818 |#1| (-1085)) (-1085) (-821 |#1|) (-818 |#1| (-1085)))))
-((-1993 (((-818 |#1| |#3|) (-588 |#3|) (-588 (-821 |#1|)) (-818 |#1| |#3|) (-1 (-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))) 33)) (-4011 (((-818 |#1| |#3|) (-588 |#3|) (-588 (-821 |#1|)) (-1 |#3| (-588 |#3|)) (-818 |#1| |#3|) (-1 (-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))) 32)))
-(((-870 |#1| |#2| |#3|) (-10 -7 (-15 -4011 ((-818 |#1| |#3|) (-588 |#3|) (-588 (-821 |#1|)) (-1 |#3| (-588 |#3|)) (-818 |#1| |#3|) (-1 (-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)))) (-15 -1993 ((-818 |#1| |#3|) (-588 |#3|) (-588 (-821 |#1|)) (-818 |#1| |#3|) (-1 (-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))))) (-1014) (-13 (-971) (-784)) (-13 (-971) (-563 (-821 |#1|)) (-962 |#2|))) (T -870))
-((-1993 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 (-821 *6))) (-5 *5 (-1 (-818 *6 *8) *8 (-821 *6) (-818 *6 *8))) (-4 *6 (-1014)) (-4 *8 (-13 (-971) (-563 (-821 *6)) (-962 *7))) (-5 *2 (-818 *6 *8)) (-4 *7 (-13 (-971) (-784))) (-5 *1 (-870 *6 *7 *8)))) (-4011 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-588 (-821 *7))) (-5 *5 (-1 *9 (-588 *9))) (-5 *6 (-1 (-818 *7 *9) *9 (-821 *7) (-818 *7 *9))) (-4 *7 (-1014)) (-4 *9 (-13 (-971) (-563 (-821 *7)) (-962 *8))) (-5 *2 (-818 *7 *9)) (-5 *3 (-588 *9)) (-4 *8 (-13 (-971) (-784))) (-5 *1 (-870 *7 *8 *9)))))
-(-10 -7 (-15 -4011 ((-818 |#1| |#3|) (-588 |#3|) (-588 (-821 |#1|)) (-1 |#3| (-588 |#3|)) (-818 |#1| |#3|) (-1 (-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)))) (-15 -1993 ((-818 |#1| |#3|) (-588 |#3|) (-588 (-821 |#1|)) (-818 |#1| |#3|) (-1 (-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)))))
-((-3735 (((-1081 (-382 (-522))) (-522)) 62)) (-3239 (((-1081 (-522)) (-522)) 65)) (-3261 (((-1081 (-522)) (-522)) 59)) (-2165 (((-522) (-1081 (-522))) 54)) (-3475 (((-1081 (-382 (-522))) (-522)) 48)) (-1437 (((-1081 (-522)) (-522)) 37)) (-2163 (((-1081 (-522)) (-522)) 67)) (-2279 (((-1081 (-522)) (-522)) 66)) (-1763 (((-1081 (-382 (-522))) (-522)) 50)))
-(((-871) (-10 -7 (-15 -1763 ((-1081 (-382 (-522))) (-522))) (-15 -2279 ((-1081 (-522)) (-522))) (-15 -2163 ((-1081 (-522)) (-522))) (-15 -1437 ((-1081 (-522)) (-522))) (-15 -3475 ((-1081 (-382 (-522))) (-522))) (-15 -2165 ((-522) (-1081 (-522)))) (-15 -3261 ((-1081 (-522)) (-522))) (-15 -3239 ((-1081 (-522)) (-522))) (-15 -3735 ((-1081 (-382 (-522))) (-522))))) (T -871))
-((-3735 (*1 *2 *3) (-12 (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-871)) (-5 *3 (-522)))) (-3239 (*1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))) (-3261 (*1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))) (-2165 (*1 *2 *3) (-12 (-5 *3 (-1081 (-522))) (-5 *2 (-522)) (-5 *1 (-871)))) (-3475 (*1 *2 *3) (-12 (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-871)) (-5 *3 (-522)))) (-1437 (*1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))) (-2163 (*1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))) (-2279 (*1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))) (-1763 (*1 *2 *3) (-12 (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-871)) (-5 *3 (-522)))))
-(-10 -7 (-15 -1763 ((-1081 (-382 (-522))) (-522))) (-15 -2279 ((-1081 (-522)) (-522))) (-15 -2163 ((-1081 (-522)) (-522))) (-15 -1437 ((-1081 (-522)) (-522))) (-15 -3475 ((-1081 (-382 (-522))) (-522))) (-15 -2165 ((-522) (-1081 (-522)))) (-15 -3261 ((-1081 (-522)) (-522))) (-15 -3239 ((-1081 (-522)) (-522))) (-15 -3735 ((-1081 (-382 (-522))) (-522))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3483 (($ (-708)) NIL (|has| |#1| (-23)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-3537 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3216 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#1| $ (-522) |#1|) 11 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1423 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) NIL)) (-3238 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-2736 (($ (-588 |#1|)) 13)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-3957 (((-628 |#1|) $ $) NIL (|has| |#1| (-971)))) (-1811 (($ (-708) |#1|) 8)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) 10 (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2160 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2845 ((|#1| $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-971))))) (-2720 (((-108) $ (-708)) NIL)) (-2517 ((|#1| $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-971))))) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1661 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2294 ((|#1| $) NIL (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2602 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-3719 (($ $ (-588 |#1|)) 24)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) 18) (($ $ (-1133 (-522))) NIL)) (-1883 ((|#1| $ $) NIL (|has| |#1| (-971)))) (-4078 (((-850) $) 16)) (-3696 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-3230 (($ $ $) 22)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| |#1| (-563 (-498)))) (($ (-588 |#1|)) 17)) (-2201 (($ (-588 |#1|)) NIL)) (-4165 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 23) (($ (-588 $)) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1612 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1602 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-522) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-664))) (($ $ |#1|) NIL (|has| |#1| (-664)))) (-3480 (((-708) $) 14 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) NIL)) (-2859 (((-108) $) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2308 (($ $ $) NIL)) (-2217 (((-792) $) NIL)) (-3622 (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3709 (($) NIL T CONST)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (* (($ (-850) $) NIL) (($ $ $) NIL)))
+(((-850) (-13 (-25) (-784) (-664) (-10 -8 (-15 -2308 ($ $ $)) (-6 (-4240 "*"))))) (T -850))
+((-2308 (*1 *1 *1 *1) (-5 *1 (-850))))
+(-13 (-25) (-784) (-664) (-10 -8 (-15 -2308 ($ $ $)) (-6 (-4240 "*"))))
+((-3360 ((|#2| (-588 |#1|) (-588 |#1|)) 24)))
+(((-851 |#1| |#2|) (-10 -7 (-15 -3360 (|#2| (-588 |#1|) (-588 |#1|)))) (-338) (-1142 |#1|)) (T -851))
+((-3360 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-338)) (-4 *2 (-1142 *4)) (-5 *1 (-851 *4 *2)))))
+(-10 -7 (-15 -3360 (|#2| (-588 |#1|) (-588 |#1|))))
+((-3288 (((-1081 |#2|) (-588 |#2|) (-588 |#2|)) 17) (((-1139 |#1| |#2|) (-1139 |#1| |#2|) (-588 |#2|) (-588 |#2|)) 13)))
+(((-852 |#1| |#2|) (-10 -7 (-15 -3288 ((-1139 |#1| |#2|) (-1139 |#1| |#2|) (-588 |#2|) (-588 |#2|))) (-15 -3288 ((-1081 |#2|) (-588 |#2|) (-588 |#2|)))) (-1085) (-338)) (T -852))
+((-3288 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *5)) (-4 *5 (-338)) (-5 *2 (-1081 *5)) (-5 *1 (-852 *4 *5)) (-14 *4 (-1085)))) (-3288 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1139 *4 *5)) (-5 *3 (-588 *5)) (-14 *4 (-1085)) (-4 *5 (-338)) (-5 *1 (-852 *4 *5)))))
+(-10 -7 (-15 -3288 ((-1139 |#1| |#2|) (-1139 |#1| |#2|) (-588 |#2|) (-588 |#2|))) (-15 -3288 ((-1081 |#2|) (-588 |#2|) (-588 |#2|))))
+((-2533 (((-522) (-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-1068)) 138)) (-2261 ((|#4| |#4|) 154)) (-4087 (((-588 (-382 (-881 |#1|))) (-588 (-1085))) 117)) (-3354 (((-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))) (-628 |#4|) (-588 (-382 (-881 |#1|))) (-588 (-588 |#4|)) (-708) (-708) (-522)) 73)) (-2686 (((-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))) (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))) (-588 |#4|)) 57)) (-2534 (((-628 |#4|) (-628 |#4|) (-588 |#4|)) 53)) (-4085 (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-1068)) 150)) (-1590 (((-522) (-628 |#4|) (-850) (-1068)) 131) (((-522) (-628 |#4|) (-588 (-1085)) (-850) (-1068)) 130) (((-522) (-628 |#4|) (-588 |#4|) (-850) (-1068)) 129) (((-522) (-628 |#4|) (-1068)) 126) (((-522) (-628 |#4|) (-588 (-1085)) (-1068)) 125) (((-522) (-628 |#4|) (-588 |#4|) (-1068)) 124) (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-850)) 123) (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 (-1085)) (-850)) 122) (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 |#4|) (-850)) 121) (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|)) 119) (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 (-1085))) 118) (((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 |#4|)) 115)) (-2945 ((|#4| (-881 |#1|)) 66)) (-3957 (((-108) (-588 |#4|) (-588 (-588 |#4|))) 151)) (-2235 (((-588 (-588 (-522))) (-522) (-522)) 128)) (-1506 (((-588 (-588 |#4|)) (-588 (-588 |#4|))) 85)) (-3266 (((-708) (-588 (-2 (|:| -1692 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|))))) 83)) (-2616 (((-708) (-588 (-2 (|:| -1692 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|))))) 82)) (-3793 (((-108) (-588 (-881 |#1|))) 17) (((-108) (-588 |#4|)) 13)) (-2021 (((-2 (|:| |sysok| (-108)) (|:| |z0| (-588 |#4|)) (|:| |n0| (-588 |#4|))) (-588 |#4|) (-588 |#4|)) 69)) (-2442 (((-588 |#4|) |#4|) 47)) (-2196 (((-588 (-382 (-881 |#1|))) (-588 |#4|)) 113) (((-628 (-382 (-881 |#1|))) (-628 |#4|)) 54) (((-382 (-881 |#1|)) |#4|) 110)) (-2423 (((-2 (|:| |rgl| (-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))))))) (|:| |rgsz| (-522))) (-628 |#4|) (-588 (-382 (-881 |#1|))) (-708) (-1068) (-522)) 89)) (-3917 (((-588 (-2 (|:| -1692 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))) (-628 |#4|) (-708)) 81)) (-2869 (((-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522))))) (-628 |#4|) (-708)) 98)) (-1582 (((-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))) (-2 (|:| -2149 (-628 (-382 (-881 |#1|)))) (|:| |vec| (-588 (-382 (-881 |#1|)))) (|:| -1692 (-708)) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522))))) 46)))
+(((-853 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1590 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 |#4|))) (-15 -1590 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 (-1085)))) (-15 -1590 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|))) (-15 -1590 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 |#4|) (-850))) (-15 -1590 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 (-1085)) (-850))) (-15 -1590 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-850))) (-15 -1590 ((-522) (-628 |#4|) (-588 |#4|) (-1068))) (-15 -1590 ((-522) (-628 |#4|) (-588 (-1085)) (-1068))) (-15 -1590 ((-522) (-628 |#4|) (-1068))) (-15 -1590 ((-522) (-628 |#4|) (-588 |#4|) (-850) (-1068))) (-15 -1590 ((-522) (-628 |#4|) (-588 (-1085)) (-850) (-1068))) (-15 -1590 ((-522) (-628 |#4|) (-850) (-1068))) (-15 -2533 ((-522) (-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-1068))) (-15 -4085 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-1068))) (-15 -2423 ((-2 (|:| |rgl| (-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))))))) (|:| |rgsz| (-522))) (-628 |#4|) (-588 (-382 (-881 |#1|))) (-708) (-1068) (-522))) (-15 -2196 ((-382 (-881 |#1|)) |#4|)) (-15 -2196 ((-628 (-382 (-881 |#1|))) (-628 |#4|))) (-15 -2196 ((-588 (-382 (-881 |#1|))) (-588 |#4|))) (-15 -4087 ((-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -2945 (|#4| (-881 |#1|))) (-15 -2021 ((-2 (|:| |sysok| (-108)) (|:| |z0| (-588 |#4|)) (|:| |n0| (-588 |#4|))) (-588 |#4|) (-588 |#4|))) (-15 -3917 ((-588 (-2 (|:| -1692 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))) (-628 |#4|) (-708))) (-15 -2686 ((-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))) (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))) (-588 |#4|))) (-15 -1582 ((-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))) (-2 (|:| -2149 (-628 (-382 (-881 |#1|)))) (|:| |vec| (-588 (-382 (-881 |#1|)))) (|:| -1692 (-708)) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (-15 -2442 ((-588 |#4|) |#4|)) (-15 -2616 ((-708) (-588 (-2 (|:| -1692 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))))) (-15 -3266 ((-708) (-588 (-2 (|:| -1692 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))))) (-15 -1506 ((-588 (-588 |#4|)) (-588 (-588 |#4|)))) (-15 -2235 ((-588 (-588 (-522))) (-522) (-522))) (-15 -3957 ((-108) (-588 |#4|) (-588 (-588 |#4|)))) (-15 -2869 ((-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522))))) (-628 |#4|) (-708))) (-15 -2534 ((-628 |#4|) (-628 |#4|) (-588 |#4|))) (-15 -3354 ((-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))) (-628 |#4|) (-588 (-382 (-881 |#1|))) (-588 (-588 |#4|)) (-708) (-708) (-522))) (-15 -2261 (|#4| |#4|)) (-15 -3793 ((-108) (-588 |#4|))) (-15 -3793 ((-108) (-588 (-881 |#1|))))) (-13 (-283) (-135)) (-13 (-784) (-563 (-1085))) (-730) (-878 |#1| |#3| |#2|)) (T -853))
+((-3793 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-108)) (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))) (-3793 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-108)) (-5 *1 (-853 *4 *5 *6 *7)))) (-2261 (*1 *2 *2) (-12 (-4 *3 (-13 (-283) (-135))) (-4 *4 (-13 (-784) (-563 (-1085)))) (-4 *5 (-730)) (-5 *1 (-853 *3 *4 *5 *2)) (-4 *2 (-878 *3 *5 *4)))) (-3354 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522))))) (-5 *4 (-628 *12)) (-5 *5 (-588 (-382 (-881 *9)))) (-5 *6 (-588 (-588 *12))) (-5 *7 (-708)) (-5 *8 (-522)) (-4 *9 (-13 (-283) (-135))) (-4 *12 (-878 *9 *11 *10)) (-4 *10 (-13 (-784) (-563 (-1085)))) (-4 *11 (-730)) (-5 *2 (-2 (|:| |eqzro| (-588 *12)) (|:| |neqzro| (-588 *12)) (|:| |wcond| (-588 (-881 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *9)))) (|:| -2905 (-588 (-1166 (-382 (-881 *9))))))))) (-5 *1 (-853 *9 *10 *11 *12)))) (-2534 (*1 *2 *2 *3) (-12 (-5 *2 (-628 *7)) (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *1 (-853 *4 *5 *6 *7)))) (-2869 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *8)) (-5 *4 (-708)) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-588 (-2 (|:| |det| *8) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (-5 *1 (-853 *5 *6 *7 *8)))) (-3957 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-588 *8))) (-5 *3 (-588 *8)) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-108)) (-5 *1 (-853 *5 *6 *7 *8)))) (-2235 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-588 (-588 (-522)))) (-5 *1 (-853 *4 *5 *6 *7)) (-5 *3 (-522)) (-4 *7 (-878 *4 *6 *5)))) (-1506 (*1 *2 *2) (-12 (-5 *2 (-588 (-588 *6))) (-4 *6 (-878 *3 *5 *4)) (-4 *3 (-13 (-283) (-135))) (-4 *4 (-13 (-784) (-563 (-1085)))) (-4 *5 (-730)) (-5 *1 (-853 *3 *4 *5 *6)))) (-3266 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -1692 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| *7) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 *7))))) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-708)) (-5 *1 (-853 *4 *5 *6 *7)))) (-2616 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -1692 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| *7) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 *7))))) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-708)) (-5 *1 (-853 *4 *5 *6 *7)))) (-2442 (*1 *2 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-588 *3)) (-5 *1 (-853 *4 *5 *6 *3)) (-4 *3 (-878 *4 *6 *5)))) (-1582 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2149 (-628 (-382 (-881 *4)))) (|:| |vec| (-588 (-382 (-881 *4)))) (|:| -1692 (-708)) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522))))) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-2 (|:| |partsol| (-1166 (-382 (-881 *4)))) (|:| -2905 (-588 (-1166 (-382 (-881 *4))))))) (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))) (-2686 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1166 (-382 (-881 *4)))) (|:| -2905 (-588 (-1166 (-382 (-881 *4))))))) (-5 *3 (-588 *7)) (-4 *4 (-13 (-283) (-135))) (-4 *7 (-878 *4 *6 *5)) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *1 (-853 *4 *5 *6 *7)))) (-3917 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *8)) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-588 (-2 (|:| -1692 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| *8) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 *8))))) (-5 *1 (-853 *5 *6 *7 *8)) (-5 *4 (-708)))) (-2021 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-4 *7 (-878 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-108)) (|:| |z0| (-588 *7)) (|:| |n0| (-588 *7)))) (-5 *1 (-853 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-2945 (*1 *2 *3) (-12 (-5 *3 (-881 *4)) (-4 *4 (-13 (-283) (-135))) (-4 *2 (-878 *4 *6 *5)) (-5 *1 (-853 *4 *5 *6 *2)) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)))) (-4087 (*1 *2 *3) (-12 (-5 *3 (-588 (-1085))) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-588 (-382 (-881 *4)))) (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))) (-2196 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-588 (-382 (-881 *4)))) (-5 *1 (-853 *4 *5 *6 *7)))) (-2196 (*1 *2 *3) (-12 (-5 *3 (-628 *7)) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-628 (-382 (-881 *4)))) (-5 *1 (-853 *4 *5 *6 *7)))) (-2196 (*1 *2 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-382 (-881 *4))) (-5 *1 (-853 *4 *5 *6 *3)) (-4 *3 (-878 *4 *6 *5)))) (-2423 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-628 *11)) (-5 *4 (-588 (-382 (-881 *8)))) (-5 *5 (-708)) (-5 *6 (-1068)) (-4 *8 (-13 (-283) (-135))) (-4 *11 (-878 *8 *10 *9)) (-4 *9 (-13 (-784) (-563 (-1085)))) (-4 *10 (-730)) (-5 *2 (-2 (|:| |rgl| (-588 (-2 (|:| |eqzro| (-588 *11)) (|:| |neqzro| (-588 *11)) (|:| |wcond| (-588 (-881 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *8)))) (|:| -2905 (-588 (-1166 (-382 (-881 *8)))))))))) (|:| |rgsz| (-522)))) (-5 *1 (-853 *8 *9 *10 *11)) (-5 *7 (-522)))) (-4085 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *7)) (|:| |neqzro| (-588 *7)) (|:| |wcond| (-588 (-881 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *4)))) (|:| -2905 (-588 (-1166 (-382 (-881 *4)))))))))) (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))) (-2533 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8)) (|:| |wcond| (-588 (-881 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *5)))) (|:| -2905 (-588 (-1166 (-382 (-881 *5)))))))))) (-5 *4 (-1068)) (-4 *5 (-13 (-283) (-135))) (-4 *8 (-878 *5 *7 *6)) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *5 *6 *7 *8)))) (-1590 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *9)) (-5 *4 (-850)) (-5 *5 (-1068)) (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135))) (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *6 *7 *8 *9)))) (-1590 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-628 *10)) (-5 *4 (-588 (-1085))) (-5 *5 (-850)) (-5 *6 (-1068)) (-4 *10 (-878 *7 *9 *8)) (-4 *7 (-13 (-283) (-135))) (-4 *8 (-13 (-784) (-563 (-1085)))) (-4 *9 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *7 *8 *9 *10)))) (-1590 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-628 *10)) (-5 *4 (-588 *10)) (-5 *5 (-850)) (-5 *6 (-1068)) (-4 *10 (-878 *7 *9 *8)) (-4 *7 (-13 (-283) (-135))) (-4 *8 (-13 (-784) (-563 (-1085)))) (-4 *9 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *7 *8 *9 *10)))) (-1590 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *8)) (-5 *4 (-1068)) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *5 *6 *7 *8)))) (-1590 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *9)) (-5 *4 (-588 (-1085))) (-5 *5 (-1068)) (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135))) (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *6 *7 *8 *9)))) (-1590 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *9)) (-5 *4 (-588 *9)) (-5 *5 (-1068)) (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135))) (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *6 *7 *8 *9)))) (-1590 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *8)) (-5 *4 (-850)) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8)) (|:| |wcond| (-588 (-881 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *5)))) (|:| -2905 (-588 (-1166 (-382 (-881 *5)))))))))) (-5 *1 (-853 *5 *6 *7 *8)))) (-1590 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *9)) (-5 *4 (-588 (-1085))) (-5 *5 (-850)) (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135))) (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *9)) (|:| |neqzro| (-588 *9)) (|:| |wcond| (-588 (-881 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *6)))) (|:| -2905 (-588 (-1166 (-382 (-881 *6)))))))))) (-5 *1 (-853 *6 *7 *8 *9)))) (-1590 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-628 *9)) (-5 *5 (-850)) (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135))) (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *9)) (|:| |neqzro| (-588 *9)) (|:| |wcond| (-588 (-881 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *6)))) (|:| -2905 (-588 (-1166 (-382 (-881 *6)))))))))) (-5 *1 (-853 *6 *7 *8 *9)) (-5 *4 (-588 *9)))) (-1590 (*1 *2 *3) (-12 (-5 *3 (-628 *7)) (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *7)) (|:| |neqzro| (-588 *7)) (|:| |wcond| (-588 (-881 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *4)))) (|:| -2905 (-588 (-1166 (-382 (-881 *4)))))))))) (-5 *1 (-853 *4 *5 *6 *7)))) (-1590 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *8)) (-5 *4 (-588 (-1085))) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8)) (|:| |wcond| (-588 (-881 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *5)))) (|:| -2905 (-588 (-1166 (-382 (-881 *5)))))))))) (-5 *1 (-853 *5 *6 *7 *8)))) (-1590 (*1 *2 *3 *4) (-12 (-5 *3 (-628 *8)) (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-588 (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8)) (|:| |wcond| (-588 (-881 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 *5)))) (|:| -2905 (-588 (-1166 (-382 (-881 *5)))))))))) (-5 *1 (-853 *5 *6 *7 *8)) (-5 *4 (-588 *8)))))
+(-10 -7 (-15 -1590 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 |#4|))) (-15 -1590 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 (-1085)))) (-15 -1590 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|))) (-15 -1590 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 |#4|) (-850))) (-15 -1590 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-588 (-1085)) (-850))) (-15 -1590 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-628 |#4|) (-850))) (-15 -1590 ((-522) (-628 |#4|) (-588 |#4|) (-1068))) (-15 -1590 ((-522) (-628 |#4|) (-588 (-1085)) (-1068))) (-15 -1590 ((-522) (-628 |#4|) (-1068))) (-15 -1590 ((-522) (-628 |#4|) (-588 |#4|) (-850) (-1068))) (-15 -1590 ((-522) (-628 |#4|) (-588 (-1085)) (-850) (-1068))) (-15 -1590 ((-522) (-628 |#4|) (-850) (-1068))) (-15 -2533 ((-522) (-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-1068))) (-15 -4085 ((-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|))))))))) (-1068))) (-15 -2423 ((-2 (|:| |rgl| (-588 (-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))))))) (|:| |rgsz| (-522))) (-628 |#4|) (-588 (-382 (-881 |#1|))) (-708) (-1068) (-522))) (-15 -2196 ((-382 (-881 |#1|)) |#4|)) (-15 -2196 ((-628 (-382 (-881 |#1|))) (-628 |#4|))) (-15 -2196 ((-588 (-382 (-881 |#1|))) (-588 |#4|))) (-15 -4087 ((-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -2945 (|#4| (-881 |#1|))) (-15 -2021 ((-2 (|:| |sysok| (-108)) (|:| |z0| (-588 |#4|)) (|:| |n0| (-588 |#4|))) (-588 |#4|) (-588 |#4|))) (-15 -3917 ((-588 (-2 (|:| -1692 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))) (-628 |#4|) (-708))) (-15 -2686 ((-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))) (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))) (-588 |#4|))) (-15 -1582 ((-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))) (-2 (|:| -2149 (-628 (-382 (-881 |#1|)))) (|:| |vec| (-588 (-382 (-881 |#1|)))) (|:| -1692 (-708)) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (-15 -2442 ((-588 |#4|) |#4|)) (-15 -2616 ((-708) (-588 (-2 (|:| -1692 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))))) (-15 -3266 ((-708) (-588 (-2 (|:| -1692 (-708)) (|:| |eqns| (-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))) (|:| |fgb| (-588 |#4|)))))) (-15 -1506 ((-588 (-588 |#4|)) (-588 (-588 |#4|)))) (-15 -2235 ((-588 (-588 (-522))) (-522) (-522))) (-15 -3957 ((-108) (-588 |#4|) (-588 (-588 |#4|)))) (-15 -2869 ((-588 (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522))))) (-628 |#4|) (-708))) (-15 -2534 ((-628 |#4|) (-628 |#4|) (-588 |#4|))) (-15 -3354 ((-2 (|:| |eqzro| (-588 |#4|)) (|:| |neqzro| (-588 |#4|)) (|:| |wcond| (-588 (-881 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1166 (-382 (-881 |#1|)))) (|:| -2905 (-588 (-1166 (-382 (-881 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))) (-628 |#4|) (-588 (-382 (-881 |#1|))) (-588 (-588 |#4|)) (-708) (-708) (-522))) (-15 -2261 (|#4| |#4|)) (-15 -3793 ((-108) (-588 |#4|))) (-15 -3793 ((-108) (-588 (-881 |#1|)))))
+((-4004 (((-856) |#1| (-1085)) 16) (((-856) |#1| (-1085) (-1009 (-202))) 20)) (-2019 (((-856) |#1| |#1| (-1085) (-1009 (-202))) 18) (((-856) |#1| (-1085) (-1009 (-202))) 14)))
+(((-854 |#1|) (-10 -7 (-15 -2019 ((-856) |#1| (-1085) (-1009 (-202)))) (-15 -2019 ((-856) |#1| |#1| (-1085) (-1009 (-202)))) (-15 -4004 ((-856) |#1| (-1085) (-1009 (-202)))) (-15 -4004 ((-856) |#1| (-1085)))) (-563 (-498))) (T -854))
+((-4004 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-5 *2 (-856)) (-5 *1 (-854 *3)) (-4 *3 (-563 (-498))))) (-4004 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085)) (-5 *5 (-1009 (-202))) (-5 *2 (-856)) (-5 *1 (-854 *3)) (-4 *3 (-563 (-498))))) (-2019 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1085)) (-5 *5 (-1009 (-202))) (-5 *2 (-856)) (-5 *1 (-854 *3)) (-4 *3 (-563 (-498))))) (-2019 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085)) (-5 *5 (-1009 (-202))) (-5 *2 (-856)) (-5 *1 (-854 *3)) (-4 *3 (-563 (-498))))))
+(-10 -7 (-15 -2019 ((-856) |#1| (-1085) (-1009 (-202)))) (-15 -2019 ((-856) |#1| |#1| (-1085) (-1009 (-202)))) (-15 -4004 ((-856) |#1| (-1085) (-1009 (-202)))) (-15 -4004 ((-856) |#1| (-1085))))
+((-2843 (($ $ (-1009 (-202)) (-1009 (-202)) (-1009 (-202))) 69)) (-2380 (((-1009 (-202)) $) 40)) (-2366 (((-1009 (-202)) $) 39)) (-2351 (((-1009 (-202)) $) 38)) (-1767 (((-588 (-588 (-202))) $) 43)) (-2328 (((-1009 (-202)) $) 41)) (-3752 (((-522) (-522)) 32)) (-3169 (((-522) (-522)) 28)) (-3861 (((-522) (-522)) 30)) (-2509 (((-108) (-108)) 35)) (-3089 (((-522)) 31)) (-1776 (($ $ (-1009 (-202))) 72) (($ $) 73)) (-1452 (($ (-1 (-872 (-202)) (-202)) (-1009 (-202))) 77) (($ (-1 (-872 (-202)) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202))) 78)) (-2019 (($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202))) 80) (($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202))) 81) (($ $ (-1009 (-202))) 75)) (-4168 (((-522)) 36)) (-4109 (((-522)) 27)) (-4116 (((-522)) 29)) (-1414 (((-588 (-588 (-872 (-202)))) $) 93)) (-3150 (((-108) (-108)) 37)) (-2217 (((-792) $) 92)) (-2104 (((-108)) 34)))
+(((-855) (-13 (-901) (-10 -8 (-15 -1452 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)))) (-15 -1452 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -2019 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)))) (-15 -2019 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -2019 ($ $ (-1009 (-202)))) (-15 -2843 ($ $ (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -1776 ($ $ (-1009 (-202)))) (-15 -1776 ($ $)) (-15 -2328 ((-1009 (-202)) $)) (-15 -1767 ((-588 (-588 (-202))) $)) (-15 -4109 ((-522))) (-15 -3169 ((-522) (-522))) (-15 -4116 ((-522))) (-15 -3861 ((-522) (-522))) (-15 -3089 ((-522))) (-15 -3752 ((-522) (-522))) (-15 -2104 ((-108))) (-15 -2509 ((-108) (-108))) (-15 -4168 ((-522))) (-15 -3150 ((-108) (-108)))))) (T -855))
+((-1452 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-855)))) (-1452 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-855)))) (-2019 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-855)))) (-2019 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-855)))) (-2019 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855)))) (-2843 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855)))) (-1776 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855)))) (-1776 (*1 *1 *1) (-5 *1 (-855))) (-2328 (*1 *2 *1) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855)))) (-1767 (*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-202)))) (-5 *1 (-855)))) (-4109 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-3169 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-4116 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-3861 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-3089 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-3752 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-2104 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-855)))) (-2509 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-855)))) (-4168 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))) (-3150 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-855)))))
+(-13 (-901) (-10 -8 (-15 -1452 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)))) (-15 -1452 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -2019 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)))) (-15 -2019 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -2019 ($ $ (-1009 (-202)))) (-15 -2843 ($ $ (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -1776 ($ $ (-1009 (-202)))) (-15 -1776 ($ $)) (-15 -2328 ((-1009 (-202)) $)) (-15 -1767 ((-588 (-588 (-202))) $)) (-15 -4109 ((-522))) (-15 -3169 ((-522) (-522))) (-15 -4116 ((-522))) (-15 -3861 ((-522) (-522))) (-15 -3089 ((-522))) (-15 -3752 ((-522) (-522))) (-15 -2104 ((-108))) (-15 -2509 ((-108) (-108))) (-15 -4168 ((-522))) (-15 -3150 ((-108) (-108)))))
+((-2843 (($ $ (-1009 (-202))) 70) (($ $ (-1009 (-202)) (-1009 (-202))) 71)) (-2366 (((-1009 (-202)) $) 43)) (-2351 (((-1009 (-202)) $) 42)) (-2328 (((-1009 (-202)) $) 44)) (-3153 (((-522) (-522)) 36)) (-3527 (((-522) (-522)) 32)) (-1907 (((-522) (-522)) 34)) (-3247 (((-108) (-108)) 38)) (-3791 (((-522)) 35)) (-1776 (($ $ (-1009 (-202))) 74) (($ $) 75)) (-1452 (($ (-1 (-872 (-202)) (-202)) (-1009 (-202))) 84) (($ (-1 (-872 (-202)) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202))) 85)) (-4004 (($ (-1 (-202) (-202)) (-1009 (-202))) 92) (($ (-1 (-202) (-202))) 95)) (-2019 (($ (-1 (-202) (-202)) (-1009 (-202))) 79) (($ (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202))) 80) (($ (-588 (-1 (-202) (-202))) (-1009 (-202))) 87) (($ (-588 (-1 (-202) (-202))) (-1009 (-202)) (-1009 (-202))) 88) (($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202))) 81) (($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202))) 82) (($ $ (-1009 (-202))) 76)) (-1307 (((-108) $) 39)) (-2822 (((-522)) 40)) (-2481 (((-522)) 31)) (-3258 (((-522)) 33)) (-1414 (((-588 (-588 (-872 (-202)))) $) 22)) (-3127 (((-108) (-108)) 41)) (-2217 (((-792) $) 106)) (-2493 (((-108)) 37)))
+(((-856) (-13 (-883) (-10 -8 (-15 -2019 ($ (-1 (-202) (-202)) (-1009 (-202)))) (-15 -2019 ($ (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -2019 ($ (-588 (-1 (-202) (-202))) (-1009 (-202)))) (-15 -2019 ($ (-588 (-1 (-202) (-202))) (-1009 (-202)) (-1009 (-202)))) (-15 -2019 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)))) (-15 -2019 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -1452 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)))) (-15 -1452 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -4004 ($ (-1 (-202) (-202)) (-1009 (-202)))) (-15 -4004 ($ (-1 (-202) (-202)))) (-15 -2019 ($ $ (-1009 (-202)))) (-15 -1307 ((-108) $)) (-15 -2843 ($ $ (-1009 (-202)))) (-15 -2843 ($ $ (-1009 (-202)) (-1009 (-202)))) (-15 -1776 ($ $ (-1009 (-202)))) (-15 -1776 ($ $)) (-15 -2328 ((-1009 (-202)) $)) (-15 -2481 ((-522))) (-15 -3527 ((-522) (-522))) (-15 -3258 ((-522))) (-15 -1907 ((-522) (-522))) (-15 -3791 ((-522))) (-15 -3153 ((-522) (-522))) (-15 -2493 ((-108))) (-15 -3247 ((-108) (-108))) (-15 -2822 ((-522))) (-15 -3127 ((-108) (-108)))))) (T -856))
+((-2019 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-2019 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-2019 (*1 *1 *2 *3) (-12 (-5 *2 (-588 (-1 (-202) (-202)))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-2019 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-588 (-1 (-202) (-202)))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-2019 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-2019 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-1452 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-1452 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-4004 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202))) (-5 *1 (-856)))) (-4004 (*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *1 (-856)))) (-2019 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856)))) (-1307 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-856)))) (-2843 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856)))) (-2843 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856)))) (-1776 (*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856)))) (-1776 (*1 *1 *1) (-5 *1 (-856))) (-2328 (*1 *2 *1) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856)))) (-2481 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-3527 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-3258 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-1907 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-3791 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-3153 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-2493 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-856)))) (-3247 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-856)))) (-2822 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))) (-3127 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-856)))))
+(-13 (-883) (-10 -8 (-15 -2019 ($ (-1 (-202) (-202)) (-1009 (-202)))) (-15 -2019 ($ (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -2019 ($ (-588 (-1 (-202) (-202))) (-1009 (-202)))) (-15 -2019 ($ (-588 (-1 (-202) (-202))) (-1009 (-202)) (-1009 (-202)))) (-15 -2019 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)))) (-15 -2019 ($ (-1 (-202) (-202)) (-1 (-202) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -1452 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)))) (-15 -1452 ($ (-1 (-872 (-202)) (-202)) (-1009 (-202)) (-1009 (-202)) (-1009 (-202)))) (-15 -4004 ($ (-1 (-202) (-202)) (-1009 (-202)))) (-15 -4004 ($ (-1 (-202) (-202)))) (-15 -2019 ($ $ (-1009 (-202)))) (-15 -1307 ((-108) $)) (-15 -2843 ($ $ (-1009 (-202)))) (-15 -2843 ($ $ (-1009 (-202)) (-1009 (-202)))) (-15 -1776 ($ $ (-1009 (-202)))) (-15 -1776 ($ $)) (-15 -2328 ((-1009 (-202)) $)) (-15 -2481 ((-522))) (-15 -3527 ((-522) (-522))) (-15 -3258 ((-522))) (-15 -1907 ((-522) (-522))) (-15 -3791 ((-522))) (-15 -3153 ((-522) (-522))) (-15 -2493 ((-108))) (-15 -3247 ((-108) (-108))) (-15 -2822 ((-522))) (-15 -3127 ((-108) (-108)))))
+((-1894 (((-588 (-1009 (-202))) (-588 (-588 (-872 (-202))))) 23)))
+(((-857) (-10 -7 (-15 -1894 ((-588 (-1009 (-202))) (-588 (-588 (-872 (-202)))))))) (T -857))
+((-1894 (*1 *2 *3) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *2 (-588 (-1009 (-202)))) (-5 *1 (-857)))))
+(-10 -7 (-15 -1894 ((-588 (-1009 (-202))) (-588 (-588 (-872 (-202)))))))
+((-2867 ((|#2| |#2|) 25)) (-1889 ((|#2| |#2|) 26)) (-2855 ((|#2| |#2|) 24)) (-3115 ((|#2| |#2| (-1068)) 23)))
+(((-858 |#1| |#2|) (-10 -7 (-15 -3115 (|#2| |#2| (-1068))) (-15 -2855 (|#2| |#2|)) (-15 -2867 (|#2| |#2|)) (-15 -1889 (|#2| |#2|))) (-784) (-405 |#1|)) (T -858))
+((-1889 (*1 *2 *2) (-12 (-4 *3 (-784)) (-5 *1 (-858 *3 *2)) (-4 *2 (-405 *3)))) (-2867 (*1 *2 *2) (-12 (-4 *3 (-784)) (-5 *1 (-858 *3 *2)) (-4 *2 (-405 *3)))) (-2855 (*1 *2 *2) (-12 (-4 *3 (-784)) (-5 *1 (-858 *3 *2)) (-4 *2 (-405 *3)))) (-3115 (*1 *2 *2 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-784)) (-5 *1 (-858 *4 *2)) (-4 *2 (-405 *4)))))
+(-10 -7 (-15 -3115 (|#2| |#2| (-1068))) (-15 -2855 (|#2| |#2|)) (-15 -2867 (|#2| |#2|)) (-15 -1889 (|#2| |#2|)))
+((-2867 (((-291 (-522)) (-1085)) 15)) (-1889 (((-291 (-522)) (-1085)) 13)) (-2855 (((-291 (-522)) (-1085)) 11)) (-3115 (((-291 (-522)) (-1085) (-1068)) 18)))
+(((-859) (-10 -7 (-15 -3115 ((-291 (-522)) (-1085) (-1068))) (-15 -2855 ((-291 (-522)) (-1085))) (-15 -2867 ((-291 (-522)) (-1085))) (-15 -1889 ((-291 (-522)) (-1085))))) (T -859))
+((-1889 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-291 (-522))) (-5 *1 (-859)))) (-2867 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-291 (-522))) (-5 *1 (-859)))) (-2855 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-291 (-522))) (-5 *1 (-859)))) (-3115 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-1068)) (-5 *2 (-291 (-522))) (-5 *1 (-859)))))
+(-10 -7 (-15 -3115 ((-291 (-522)) (-1085) (-1068))) (-15 -2855 ((-291 (-522)) (-1085))) (-15 -2867 ((-291 (-522)) (-1085))) (-15 -1889 ((-291 (-522)) (-1085))))
+((-3738 (((-818 |#1| |#3|) |#2| (-821 |#1|) (-818 |#1| |#3|)) 24)) (-2597 (((-1 (-108) |#2|) (-1 (-108) |#3|)) 12)))
+(((-860 |#1| |#2| |#3|) (-10 -7 (-15 -2597 ((-1 (-108) |#2|) (-1 (-108) |#3|))) (-15 -3738 ((-818 |#1| |#3|) |#2| (-821 |#1|) (-818 |#1| |#3|)))) (-1014) (-815 |#1|) (-13 (-1014) (-962 |#2|))) (T -860))
+((-3738 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *6)) (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-4 *6 (-13 (-1014) (-962 *3))) (-4 *3 (-815 *5)) (-5 *1 (-860 *5 *3 *6)))) (-2597 (*1 *2 *3) (-12 (-5 *3 (-1 (-108) *6)) (-4 *6 (-13 (-1014) (-962 *5))) (-4 *5 (-815 *4)) (-4 *4 (-1014)) (-5 *2 (-1 (-108) *5)) (-5 *1 (-860 *4 *5 *6)))))
+(-10 -7 (-15 -2597 ((-1 (-108) |#2|) (-1 (-108) |#3|))) (-15 -3738 ((-818 |#1| |#3|) |#2| (-821 |#1|) (-818 |#1| |#3|))))
+((-3738 (((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)) 29)))
+(((-861 |#1| |#2| |#3|) (-10 -7 (-15 -3738 ((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)))) (-1014) (-13 (-514) (-784) (-815 |#1|)) (-13 (-405 |#2|) (-563 (-821 |#1|)) (-815 |#1|) (-962 (-561 $)))) (T -861))
+((-3738 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *3)) (-4 *5 (-1014)) (-4 *3 (-13 (-405 *6) (-563 *4) (-815 *5) (-962 (-561 $)))) (-5 *4 (-821 *5)) (-4 *6 (-13 (-514) (-784) (-815 *5))) (-5 *1 (-861 *5 *6 *3)))))
+(-10 -7 (-15 -3738 ((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))))
+((-3738 (((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|)) 12)))
+(((-862 |#1|) (-10 -7 (-15 -3738 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|)))) (-507)) (T -862))
+((-3738 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 (-522) *3)) (-5 *4 (-821 (-522))) (-4 *3 (-507)) (-5 *1 (-862 *3)))))
+(-10 -7 (-15 -3738 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))))
+((-3738 (((-818 |#1| |#2|) (-561 |#2|) (-821 |#1|) (-818 |#1| |#2|)) 52)))
+(((-863 |#1| |#2|) (-10 -7 (-15 -3738 ((-818 |#1| |#2|) (-561 |#2|) (-821 |#1|) (-818 |#1| |#2|)))) (-1014) (-13 (-784) (-962 (-561 $)) (-563 (-821 |#1|)) (-815 |#1|))) (T -863))
+((-3738 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *6)) (-5 *3 (-561 *6)) (-4 *5 (-1014)) (-4 *6 (-13 (-784) (-962 (-561 $)) (-563 *4) (-815 *5))) (-5 *4 (-821 *5)) (-5 *1 (-863 *5 *6)))))
+(-10 -7 (-15 -3738 ((-818 |#1| |#2|) (-561 |#2|) (-821 |#1|) (-818 |#1| |#2|))))
+((-3738 (((-814 |#1| |#2| |#3|) |#3| (-821 |#1|) (-814 |#1| |#2| |#3|)) 14)))
+(((-864 |#1| |#2| |#3|) (-10 -7 (-15 -3738 ((-814 |#1| |#2| |#3|) |#3| (-821 |#1|) (-814 |#1| |#2| |#3|)))) (-1014) (-815 |#1|) (-608 |#2|)) (T -864))
+((-3738 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-814 *5 *6 *3)) (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-4 *6 (-815 *5)) (-4 *3 (-608 *6)) (-5 *1 (-864 *5 *6 *3)))))
+(-10 -7 (-15 -3738 ((-814 |#1| |#2| |#3|) |#3| (-821 |#1|) (-814 |#1| |#2| |#3|))))
+((-3738 (((-818 |#1| |#5|) |#5| (-821 |#1|) (-818 |#1| |#5|)) 17 (|has| |#3| (-815 |#1|))) (((-818 |#1| |#5|) |#5| (-821 |#1|) (-818 |#1| |#5|) (-1 (-818 |#1| |#5|) |#3| (-821 |#1|) (-818 |#1| |#5|))) 16)))
+(((-865 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3738 ((-818 |#1| |#5|) |#5| (-821 |#1|) (-818 |#1| |#5|) (-1 (-818 |#1| |#5|) |#3| (-821 |#1|) (-818 |#1| |#5|)))) (IF (|has| |#3| (-815 |#1|)) (-15 -3738 ((-818 |#1| |#5|) |#5| (-821 |#1|) (-818 |#1| |#5|))) |%noBranch|)) (-1014) (-730) (-784) (-13 (-971) (-784) (-815 |#1|)) (-13 (-878 |#4| |#2| |#3|) (-563 (-821 |#1|)))) (T -865))
+((-3738 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *3)) (-4 *5 (-1014)) (-4 *3 (-13 (-878 *8 *6 *7) (-563 *4))) (-5 *4 (-821 *5)) (-4 *7 (-815 *5)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-13 (-971) (-784) (-815 *5))) (-5 *1 (-865 *5 *6 *7 *8 *3)))) (-3738 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-818 *6 *3) *8 (-821 *6) (-818 *6 *3))) (-4 *8 (-784)) (-5 *2 (-818 *6 *3)) (-5 *4 (-821 *6)) (-4 *6 (-1014)) (-4 *3 (-13 (-878 *9 *7 *8) (-563 *4))) (-4 *7 (-730)) (-4 *9 (-13 (-971) (-784) (-815 *6))) (-5 *1 (-865 *6 *7 *8 *9 *3)))))
+(-10 -7 (-15 -3738 ((-818 |#1| |#5|) |#5| (-821 |#1|) (-818 |#1| |#5|) (-1 (-818 |#1| |#5|) |#3| (-821 |#1|) (-818 |#1| |#5|)))) (IF (|has| |#3| (-815 |#1|)) (-15 -3738 ((-818 |#1| |#5|) |#5| (-821 |#1|) (-818 |#1| |#5|))) |%noBranch|))
+((-1958 ((|#2| |#2| (-588 (-1 (-108) |#3|))) 11) ((|#2| |#2| (-1 (-108) |#3|)) 12)))
+(((-866 |#1| |#2| |#3|) (-10 -7 (-15 -1958 (|#2| |#2| (-1 (-108) |#3|))) (-15 -1958 (|#2| |#2| (-588 (-1 (-108) |#3|))))) (-784) (-405 |#1|) (-1120)) (T -866))
+((-1958 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-1 (-108) *5))) (-4 *5 (-1120)) (-4 *4 (-784)) (-5 *1 (-866 *4 *2 *5)) (-4 *2 (-405 *4)))) (-1958 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *5)) (-4 *5 (-1120)) (-4 *4 (-784)) (-5 *1 (-866 *4 *2 *5)) (-4 *2 (-405 *4)))))
+(-10 -7 (-15 -1958 (|#2| |#2| (-1 (-108) |#3|))) (-15 -1958 (|#2| |#2| (-588 (-1 (-108) |#3|)))))
+((-1958 (((-291 (-522)) (-1085) (-588 (-1 (-108) |#1|))) 16) (((-291 (-522)) (-1085) (-1 (-108) |#1|)) 13)))
+(((-867 |#1|) (-10 -7 (-15 -1958 ((-291 (-522)) (-1085) (-1 (-108) |#1|))) (-15 -1958 ((-291 (-522)) (-1085) (-588 (-1 (-108) |#1|))))) (-1120)) (T -867))
+((-1958 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-588 (-1 (-108) *5))) (-4 *5 (-1120)) (-5 *2 (-291 (-522))) (-5 *1 (-867 *5)))) (-1958 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-1 (-108) *5)) (-4 *5 (-1120)) (-5 *2 (-291 (-522))) (-5 *1 (-867 *5)))))
+(-10 -7 (-15 -1958 ((-291 (-522)) (-1085) (-1 (-108) |#1|))) (-15 -1958 ((-291 (-522)) (-1085) (-588 (-1 (-108) |#1|)))))
+((-3738 (((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)) 25)))
+(((-868 |#1| |#2| |#3|) (-10 -7 (-15 -3738 ((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)))) (-1014) (-13 (-514) (-815 |#1|) (-563 (-821 |#1|))) (-919 |#2|)) (T -868))
+((-3738 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 *3)) (-4 *5 (-1014)) (-4 *3 (-919 *6)) (-4 *6 (-13 (-514) (-815 *5) (-563 *4))) (-5 *4 (-821 *5)) (-5 *1 (-868 *5 *6 *3)))))
+(-10 -7 (-15 -3738 ((-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))))
+((-3738 (((-818 |#1| (-1085)) (-1085) (-821 |#1|) (-818 |#1| (-1085))) 17)))
+(((-869 |#1|) (-10 -7 (-15 -3738 ((-818 |#1| (-1085)) (-1085) (-821 |#1|) (-818 |#1| (-1085))))) (-1014)) (T -869))
+((-3738 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-818 *5 (-1085))) (-5 *3 (-1085)) (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-5 *1 (-869 *5)))))
+(-10 -7 (-15 -3738 ((-818 |#1| (-1085)) (-1085) (-821 |#1|) (-818 |#1| (-1085)))))
+((-3238 (((-818 |#1| |#3|) (-588 |#3|) (-588 (-821 |#1|)) (-818 |#1| |#3|) (-1 (-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))) 33)) (-3738 (((-818 |#1| |#3|) (-588 |#3|) (-588 (-821 |#1|)) (-1 |#3| (-588 |#3|)) (-818 |#1| |#3|) (-1 (-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))) 32)))
+(((-870 |#1| |#2| |#3|) (-10 -7 (-15 -3738 ((-818 |#1| |#3|) (-588 |#3|) (-588 (-821 |#1|)) (-1 |#3| (-588 |#3|)) (-818 |#1| |#3|) (-1 (-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)))) (-15 -3238 ((-818 |#1| |#3|) (-588 |#3|) (-588 (-821 |#1|)) (-818 |#1| |#3|) (-1 (-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|))))) (-1014) (-13 (-971) (-784)) (-13 (-971) (-563 (-821 |#1|)) (-962 |#2|))) (T -870))
+((-3238 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 (-821 *6))) (-5 *5 (-1 (-818 *6 *8) *8 (-821 *6) (-818 *6 *8))) (-4 *6 (-1014)) (-4 *8 (-13 (-971) (-563 (-821 *6)) (-962 *7))) (-5 *2 (-818 *6 *8)) (-4 *7 (-13 (-971) (-784))) (-5 *1 (-870 *6 *7 *8)))) (-3738 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-588 (-821 *7))) (-5 *5 (-1 *9 (-588 *9))) (-5 *6 (-1 (-818 *7 *9) *9 (-821 *7) (-818 *7 *9))) (-4 *7 (-1014)) (-4 *9 (-13 (-971) (-563 (-821 *7)) (-962 *8))) (-5 *2 (-818 *7 *9)) (-5 *3 (-588 *9)) (-4 *8 (-13 (-971) (-784))) (-5 *1 (-870 *7 *8 *9)))))
+(-10 -7 (-15 -3738 ((-818 |#1| |#3|) (-588 |#3|) (-588 (-821 |#1|)) (-1 |#3| (-588 |#3|)) (-818 |#1| |#3|) (-1 (-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)))) (-15 -3238 ((-818 |#1| |#3|) (-588 |#3|) (-588 (-821 |#1|)) (-818 |#1| |#3|) (-1 (-818 |#1| |#3|) |#3| (-821 |#1|) (-818 |#1| |#3|)))))
+((-2963 (((-1081 (-382 (-522))) (-522)) 62)) (-2871 (((-1081 (-522)) (-522)) 65)) (-1813 (((-1081 (-522)) (-522)) 59)) (-3202 (((-522) (-1081 (-522))) 54)) (-3322 (((-1081 (-382 (-522))) (-522)) 48)) (-2406 (((-1081 (-522)) (-522)) 37)) (-3188 (((-1081 (-522)) (-522)) 67)) (-2270 (((-1081 (-522)) (-522)) 66)) (-3469 (((-1081 (-382 (-522))) (-522)) 50)))
+(((-871) (-10 -7 (-15 -3469 ((-1081 (-382 (-522))) (-522))) (-15 -2270 ((-1081 (-522)) (-522))) (-15 -3188 ((-1081 (-522)) (-522))) (-15 -2406 ((-1081 (-522)) (-522))) (-15 -3322 ((-1081 (-382 (-522))) (-522))) (-15 -3202 ((-522) (-1081 (-522)))) (-15 -1813 ((-1081 (-522)) (-522))) (-15 -2871 ((-1081 (-522)) (-522))) (-15 -2963 ((-1081 (-382 (-522))) (-522))))) (T -871))
+((-2963 (*1 *2 *3) (-12 (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-871)) (-5 *3 (-522)))) (-2871 (*1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))) (-1813 (*1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))) (-3202 (*1 *2 *3) (-12 (-5 *3 (-1081 (-522))) (-5 *2 (-522)) (-5 *1 (-871)))) (-3322 (*1 *2 *3) (-12 (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-871)) (-5 *3 (-522)))) (-2406 (*1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))) (-3188 (*1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))) (-2270 (*1 *2 *3) (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))) (-3469 (*1 *2 *3) (-12 (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-871)) (-5 *3 (-522)))))
+(-10 -7 (-15 -3469 ((-1081 (-382 (-522))) (-522))) (-15 -2270 ((-1081 (-522)) (-522))) (-15 -3188 ((-1081 (-522)) (-522))) (-15 -2406 ((-1081 (-522)) (-522))) (-15 -3322 ((-1081 (-382 (-522))) (-522))) (-15 -3202 ((-522) (-1081 (-522)))) (-15 -1813 ((-1081 (-522)) (-522))) (-15 -2871 ((-1081 (-522)) (-522))) (-15 -2963 ((-1081 (-382 (-522))) (-522))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1785 (($ (-708)) NIL (|has| |#1| (-23)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-2806 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3296 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#1| $ (-522) |#1|) 11 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1424 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) NIL)) (-3314 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-1239 (($ (-588 |#1|)) 13)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4043 (((-628 |#1|) $ $) NIL (|has| |#1| (-971)))) (-1893 (($ (-708) |#1|) 8)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) 10 (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-3164 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4113 ((|#1| $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-971))))) (-3309 (((-108) $ (-708)) NIL)) (-4030 ((|#1| $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-971))))) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1731 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2337 ((|#1| $) NIL (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1972 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-3934 (($ $ (-588 |#1|)) 24)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) 18) (($ $ (-1133 (-522))) NIL)) (-4024 ((|#1| $ $) NIL (|has| |#1| (-971)))) (-3222 (((-850) $) 16)) (-3835 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-2791 (($ $ $) 22)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| |#1| (-563 (-498)))) (($ (-588 |#1|)) 17)) (-2227 (($ (-588 |#1|)) NIL)) (-4170 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 23) (($ (-588 $)) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1672 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1661 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-522) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-664))) (($ $ |#1|) NIL (|has| |#1| (-664)))) (-3591 (((-708) $) 14 (|has| $ (-6 -4238)))))
(((-872 |#1|) (-907 |#1|) (-971)) (T -872))
NIL
(-907 |#1|)
-((-1725 (((-454 |#1| |#2|) (-881 |#2|)) 17)) (-2792 (((-224 |#1| |#2|) (-881 |#2|)) 29)) (-3109 (((-881 |#2|) (-454 |#1| |#2|)) 22)) (-3391 (((-224 |#1| |#2|) (-454 |#1| |#2|)) 53)) (-3697 (((-881 |#2|) (-224 |#1| |#2|)) 26)) (-1264 (((-454 |#1| |#2|) (-224 |#1| |#2|)) 44)))
-(((-873 |#1| |#2|) (-10 -7 (-15 -1264 ((-454 |#1| |#2|) (-224 |#1| |#2|))) (-15 -3391 ((-224 |#1| |#2|) (-454 |#1| |#2|))) (-15 -1725 ((-454 |#1| |#2|) (-881 |#2|))) (-15 -3109 ((-881 |#2|) (-454 |#1| |#2|))) (-15 -3697 ((-881 |#2|) (-224 |#1| |#2|))) (-15 -2792 ((-224 |#1| |#2|) (-881 |#2|)))) (-588 (-1085)) (-971)) (T -873))
-((-2792 (*1 *2 *3) (-12 (-5 *3 (-881 *5)) (-4 *5 (-971)) (-5 *2 (-224 *4 *5)) (-5 *1 (-873 *4 *5)) (-14 *4 (-588 (-1085))))) (-3697 (*1 *2 *3) (-12 (-5 *3 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971)) (-5 *2 (-881 *5)) (-5 *1 (-873 *4 *5)))) (-3109 (*1 *2 *3) (-12 (-5 *3 (-454 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971)) (-5 *2 (-881 *5)) (-5 *1 (-873 *4 *5)))) (-1725 (*1 *2 *3) (-12 (-5 *3 (-881 *5)) (-4 *5 (-971)) (-5 *2 (-454 *4 *5)) (-5 *1 (-873 *4 *5)) (-14 *4 (-588 (-1085))))) (-3391 (*1 *2 *3) (-12 (-5 *3 (-454 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971)) (-5 *2 (-224 *4 *5)) (-5 *1 (-873 *4 *5)))) (-1264 (*1 *2 *3) (-12 (-5 *3 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971)) (-5 *2 (-454 *4 *5)) (-5 *1 (-873 *4 *5)))))
-(-10 -7 (-15 -1264 ((-454 |#1| |#2|) (-224 |#1| |#2|))) (-15 -3391 ((-224 |#1| |#2|) (-454 |#1| |#2|))) (-15 -1725 ((-454 |#1| |#2|) (-881 |#2|))) (-15 -3109 ((-881 |#2|) (-454 |#1| |#2|))) (-15 -3697 ((-881 |#2|) (-224 |#1| |#2|))) (-15 -2792 ((-224 |#1| |#2|) (-881 |#2|))))
-((-2105 (((-588 |#2|) |#2| |#2|) 10)) (-2584 (((-708) (-588 |#1|)) 38 (|has| |#1| (-782)))) (-3343 (((-588 |#2|) |#2|) 11)) (-2914 (((-708) (-588 |#1|) (-522) (-522)) 37 (|has| |#1| (-782)))) (-3789 ((|#1| |#2|) 33 (|has| |#1| (-782)))))
-(((-874 |#1| |#2|) (-10 -7 (-15 -2105 ((-588 |#2|) |#2| |#2|)) (-15 -3343 ((-588 |#2|) |#2|)) (IF (|has| |#1| (-782)) (PROGN (-15 -3789 (|#1| |#2|)) (-15 -2584 ((-708) (-588 |#1|))) (-15 -2914 ((-708) (-588 |#1|) (-522) (-522)))) |%noBranch|)) (-338) (-1142 |#1|)) (T -874))
-((-2914 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 *5)) (-5 *4 (-522)) (-4 *5 (-782)) (-4 *5 (-338)) (-5 *2 (-708)) (-5 *1 (-874 *5 *6)) (-4 *6 (-1142 *5)))) (-2584 (*1 *2 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-782)) (-4 *4 (-338)) (-5 *2 (-708)) (-5 *1 (-874 *4 *5)) (-4 *5 (-1142 *4)))) (-3789 (*1 *2 *3) (-12 (-4 *2 (-338)) (-4 *2 (-782)) (-5 *1 (-874 *2 *3)) (-4 *3 (-1142 *2)))) (-3343 (*1 *2 *3) (-12 (-4 *4 (-338)) (-5 *2 (-588 *3)) (-5 *1 (-874 *4 *3)) (-4 *3 (-1142 *4)))) (-2105 (*1 *2 *3 *3) (-12 (-4 *4 (-338)) (-5 *2 (-588 *3)) (-5 *1 (-874 *4 *3)) (-4 *3 (-1142 *4)))))
-(-10 -7 (-15 -2105 ((-588 |#2|) |#2| |#2|)) (-15 -3343 ((-588 |#2|) |#2|)) (IF (|has| |#1| (-782)) (PROGN (-15 -3789 (|#1| |#2|)) (-15 -2584 ((-708) (-588 |#1|))) (-15 -2914 ((-708) (-588 |#1|) (-522) (-522)))) |%noBranch|))
-((-1391 (((-881 |#2|) (-1 |#2| |#1|) (-881 |#1|)) 18)))
-(((-875 |#1| |#2|) (-10 -7 (-15 -1391 ((-881 |#2|) (-1 |#2| |#1|) (-881 |#1|)))) (-971) (-971)) (T -875))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-881 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-5 *2 (-881 *6)) (-5 *1 (-875 *5 *6)))))
-(-10 -7 (-15 -1391 ((-881 |#2|) (-1 |#2| |#1|) (-881 |#1|))))
-((-1282 (((-1139 |#1| (-881 |#2|)) (-881 |#2|) (-1162 |#1|)) 18)))
-(((-876 |#1| |#2|) (-10 -7 (-15 -1282 ((-1139 |#1| (-881 |#2|)) (-881 |#2|) (-1162 |#1|)))) (-1085) (-971)) (T -876))
-((-1282 (*1 *2 *3 *4) (-12 (-5 *4 (-1162 *5)) (-14 *5 (-1085)) (-4 *6 (-971)) (-5 *2 (-1139 *5 (-881 *6))) (-5 *1 (-876 *5 *6)) (-5 *3 (-881 *6)))))
-(-10 -7 (-15 -1282 ((-1139 |#1| (-881 |#2|)) (-881 |#2|) (-1162 |#1|))))
-((-3781 (((-708) $) 70) (((-708) $ (-588 |#4|)) 73)) (-3119 (($ $) 170)) (-3450 (((-393 $) $) 162)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 113)) (-1297 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 (-522) "failed") $) NIL) (((-3 |#4| "failed") $) 59)) (-1484 ((|#2| $) NIL) (((-382 (-522)) $) NIL) (((-522) $) NIL) ((|#4| $) 58)) (-1950 (($ $ $ |#4|) 75)) (-2096 (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) 103) (((-628 |#2|) (-628 $)) 96)) (-2071 (($ $) 177) (($ $ |#4|) 180)) (-3147 (((-588 $) $) 62)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 195) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 189)) (-4052 (((-588 $) $) 28)) (-4049 (($ |#2| |#3|) NIL) (($ $ |#4| (-708)) NIL) (($ $ (-588 |#4|) (-588 (-708))) 56)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ |#4|) 159)) (-2462 (((-3 (-588 $) "failed") $) 42)) (-4193 (((-3 (-588 $) "failed") $) 31)) (-3285 (((-3 (-2 (|:| |var| |#4|) (|:| -1400 (-708))) "failed") $) 46)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 106)) (-3729 (((-393 (-1081 $)) (-1081 $)) 119)) (-3495 (((-393 (-1081 $)) (-1081 $)) 117)) (-1916 (((-393 $) $) 137)) (-2289 (($ $ (-588 (-270 $))) 20) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-588 |#4|) (-588 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-588 |#4|) (-588 $)) NIL)) (-2769 (($ $ |#4|) 77)) (-1431 (((-821 (-354)) $) 209) (((-821 (-522)) $) 202) (((-498) $) 217)) (-2255 ((|#2| $) NIL) (($ $ |#4|) 172)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 151)) (-3243 ((|#2| $ |#3|) NIL) (($ $ |#4| (-708)) 51) (($ $ (-588 |#4|) (-588 (-708))) 54)) (-2143 (((-3 $ "failed") $) 153)) (-1549 (((-108) $ $) 183)))
-(((-877 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1307 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))) (-15 -3450 ((-393 |#1|) |#1|)) (-15 -3119 (|#1| |#1|)) (-15 -2143 ((-3 |#1| "failed") |#1|)) (-15 -1549 ((-108) |#1| |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -1431 ((-821 (-522)) |#1|)) (-15 -1431 ((-821 (-354)) |#1|)) (-15 -4011 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -4011 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -1916 ((-393 |#1|) |#1|)) (-15 -3495 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -3729 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -1473 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -2412 ((-3 (-1166 |#1|) "failed") (-628 |#1|))) (-15 -2071 (|#1| |#1| |#4|)) (-15 -2255 (|#1| |#1| |#4|)) (-15 -2769 (|#1| |#1| |#4|)) (-15 -1950 (|#1| |#1| |#1| |#4|)) (-15 -3147 ((-588 |#1|) |#1|)) (-15 -3781 ((-708) |#1| (-588 |#4|))) (-15 -3781 ((-708) |#1|)) (-15 -3285 ((-3 (-2 (|:| |var| |#4|) (|:| -1400 (-708))) "failed") |#1|)) (-15 -2462 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -4193 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -4049 (|#1| |#1| (-588 |#4|) (-588 (-708)))) (-15 -4049 (|#1| |#1| |#4| (-708))) (-15 -2478 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1| |#4|)) (-15 -4052 ((-588 |#1|) |#1|)) (-15 -3243 (|#1| |#1| (-588 |#4|) (-588 (-708)))) (-15 -3243 (|#1| |#1| |#4| (-708))) (-15 -2096 ((-628 |#2|) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-628 (-522)) (-628 |#1|))) (-15 -1484 (|#4| |#1|)) (-15 -1297 ((-3 |#4| "failed") |#1|)) (-15 -2289 (|#1| |#1| (-588 |#4|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#4| |#1|)) (-15 -2289 (|#1| |#1| (-588 |#4|) (-588 |#2|))) (-15 -2289 (|#1| |#1| |#4| |#2|)) (-15 -2289 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#1| |#1|)) (-15 -2289 (|#1| |#1| (-270 |#1|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -4049 (|#1| |#2| |#3|)) (-15 -3243 (|#2| |#1| |#3|)) (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -2255 (|#2| |#1|)) (-15 -2071 (|#1| |#1|))) (-878 |#2| |#3| |#4|) (-971) (-730) (-784)) (T -877))
-NIL
-(-10 -8 (-15 -1307 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))) (-15 -3450 ((-393 |#1|) |#1|)) (-15 -3119 (|#1| |#1|)) (-15 -2143 ((-3 |#1| "failed") |#1|)) (-15 -1549 ((-108) |#1| |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -1431 ((-821 (-522)) |#1|)) (-15 -1431 ((-821 (-354)) |#1|)) (-15 -4011 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -4011 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -1916 ((-393 |#1|) |#1|)) (-15 -3495 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -3729 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -1473 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -2412 ((-3 (-1166 |#1|) "failed") (-628 |#1|))) (-15 -2071 (|#1| |#1| |#4|)) (-15 -2255 (|#1| |#1| |#4|)) (-15 -2769 (|#1| |#1| |#4|)) (-15 -1950 (|#1| |#1| |#1| |#4|)) (-15 -3147 ((-588 |#1|) |#1|)) (-15 -3781 ((-708) |#1| (-588 |#4|))) (-15 -3781 ((-708) |#1|)) (-15 -3285 ((-3 (-2 (|:| |var| |#4|) (|:| -1400 (-708))) "failed") |#1|)) (-15 -2462 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -4193 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -4049 (|#1| |#1| (-588 |#4|) (-588 (-708)))) (-15 -4049 (|#1| |#1| |#4| (-708))) (-15 -2478 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1| |#4|)) (-15 -4052 ((-588 |#1|) |#1|)) (-15 -3243 (|#1| |#1| (-588 |#4|) (-588 (-708)))) (-15 -3243 (|#1| |#1| |#4| (-708))) (-15 -2096 ((-628 |#2|) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-628 (-522)) (-628 |#1|))) (-15 -1484 (|#4| |#1|)) (-15 -1297 ((-3 |#4| "failed") |#1|)) (-15 -2289 (|#1| |#1| (-588 |#4|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#4| |#1|)) (-15 -2289 (|#1| |#1| (-588 |#4|) (-588 |#2|))) (-15 -2289 (|#1| |#1| |#4| |#2|)) (-15 -2289 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#1| |#1|)) (-15 -2289 (|#1| |#1| (-270 |#1|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -4049 (|#1| |#2| |#3|)) (-15 -3243 (|#2| |#1| |#3|)) (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -2255 (|#2| |#1|)) (-15 -2071 (|#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4090 (((-588 |#3|) $) 110)) (-1282 (((-1081 $) $ |#3|) 125) (((-1081 |#1|) $) 124)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 87 (|has| |#1| (-514)))) (-2022 (($ $) 88 (|has| |#1| (-514)))) (-3739 (((-108) $) 90 (|has| |#1| (-514)))) (-3781 (((-708) $) 112) (((-708) $ (-588 |#3|)) 111)) (-1233 (((-3 $ "failed") $ $) 19)) (-1565 (((-393 (-1081 $)) (-1081 $)) 100 (|has| |#1| (-838)))) (-3119 (($ $) 98 (|has| |#1| (-426)))) (-3450 (((-393 $) $) 97 (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 103 (|has| |#1| (-838)))) (-3175 (($) 17 T CONST)) (-1297 (((-3 |#1| "failed") $) 164) (((-3 (-382 (-522)) "failed") $) 162 (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) 160 (|has| |#1| (-962 (-522)))) (((-3 |#3| "failed") $) 136)) (-1484 ((|#1| $) 165) (((-382 (-522)) $) 161 (|has| |#1| (-962 (-382 (-522))))) (((-522) $) 159 (|has| |#1| (-962 (-522)))) ((|#3| $) 135)) (-1950 (($ $ $ |#3|) 108 (|has| |#1| (-157)))) (-3156 (($ $) 154)) (-2096 (((-628 (-522)) (-628 $)) 134 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 133 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 132) (((-628 |#1|) (-628 $)) 131)) (-2682 (((-3 $ "failed") $) 34)) (-2071 (($ $) 176 (|has| |#1| (-426))) (($ $ |#3|) 105 (|has| |#1| (-426)))) (-3147 (((-588 $) $) 109)) (-2813 (((-108) $) 96 (|has| |#1| (-838)))) (-2671 (($ $ |#1| |#2| $) 172)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 84 (-12 (|has| |#3| (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 83 (-12 (|has| |#3| (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-2782 (((-108) $) 31)) (-2112 (((-708) $) 169)) (-4073 (($ (-1081 |#1|) |#3|) 117) (($ (-1081 $) |#3|) 116)) (-4052 (((-588 $) $) 126)) (-3340 (((-108) $) 152)) (-4049 (($ |#1| |#2|) 153) (($ $ |#3| (-708)) 119) (($ $ (-588 |#3|) (-588 (-708))) 118)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ |#3|) 120)) (-2925 ((|#2| $) 170) (((-708) $ |#3|) 122) (((-588 (-708)) $ (-588 |#3|)) 121)) (-2814 (($ $ $) 79 (|has| |#1| (-784)))) (-2446 (($ $ $) 78 (|has| |#1| (-784)))) (-3861 (($ (-1 |#2| |#2|) $) 171)) (-1391 (($ (-1 |#1| |#1|) $) 151)) (-3145 (((-3 |#3| "failed") $) 123)) (-3128 (($ $) 149)) (-3138 ((|#1| $) 148)) (-2224 (($ (-588 $)) 94 (|has| |#1| (-426))) (($ $ $) 93 (|has| |#1| (-426)))) (-2385 (((-1068) $) 9)) (-2462 (((-3 (-588 $) "failed") $) 114)) (-4193 (((-3 (-588 $) "failed") $) 115)) (-3285 (((-3 (-2 (|:| |var| |#3|) (|:| -1400 (-708))) "failed") $) 113)) (-4151 (((-1032) $) 10)) (-3108 (((-108) $) 166)) (-3118 ((|#1| $) 167)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 95 (|has| |#1| (-426)))) (-2259 (($ (-588 $)) 92 (|has| |#1| (-426))) (($ $ $) 91 (|has| |#1| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) 102 (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) 101 (|has| |#1| (-838)))) (-1916 (((-393 $) $) 99 (|has| |#1| (-838)))) (-2232 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-514)))) (-2289 (($ $ (-588 (-270 $))) 145) (($ $ (-270 $)) 144) (($ $ $ $) 143) (($ $ (-588 $) (-588 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-588 |#3|) (-588 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-588 |#3|) (-588 $)) 138)) (-2769 (($ $ |#3|) 107 (|has| |#1| (-157)))) (-2157 (($ $ |#3|) 42) (($ $ (-588 |#3|)) 41) (($ $ |#3| (-708)) 40) (($ $ (-588 |#3|) (-588 (-708))) 39)) (-2793 ((|#2| $) 150) (((-708) $ |#3|) 130) (((-588 (-708)) $ (-588 |#3|)) 129)) (-1431 (((-821 (-354)) $) 82 (-12 (|has| |#3| (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) 81 (-12 (|has| |#3| (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) 80 (-12 (|has| |#3| (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2255 ((|#1| $) 175 (|has| |#1| (-426))) (($ $ |#3|) 106 (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 104 (-4015 (|has| $ (-133)) (|has| |#1| (-838))))) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 163) (($ |#3|) 137) (($ $) 85 (|has| |#1| (-514))) (($ (-382 (-522))) 72 (-3708 (|has| |#1| (-962 (-382 (-522)))) (|has| |#1| (-37 (-382 (-522))))))) (-3916 (((-588 |#1|) $) 168)) (-3243 ((|#1| $ |#2|) 155) (($ $ |#3| (-708)) 128) (($ $ (-588 |#3|) (-588 (-708))) 127)) (-2143 (((-3 $ "failed") $) 73 (-3708 (-4015 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) 29)) (-3632 (($ $ $ (-708)) 173 (|has| |#1| (-157)))) (-3958 (((-108) $ $) 89 (|has| |#1| (-514)))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ |#3|) 38) (($ $ (-588 |#3|)) 37) (($ $ |#3| (-708)) 36) (($ $ (-588 |#3|) (-588 (-708))) 35)) (-1574 (((-108) $ $) 76 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 75 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 77 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 74 (|has| |#1| (-784)))) (-1620 (($ $ |#1|) 156 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 158 (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) 157 (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+((-1295 (((-454 |#1| |#2|) (-881 |#2|)) 17)) (-2475 (((-224 |#1| |#2|) (-881 |#2|)) 29)) (-2891 (((-881 |#2|) (-454 |#1| |#2|)) 22)) (-3681 (((-224 |#1| |#2|) (-454 |#1| |#2|)) 53)) (-3689 (((-881 |#2|) (-224 |#1| |#2|)) 26)) (-2641 (((-454 |#1| |#2|) (-224 |#1| |#2|)) 44)))
+(((-873 |#1| |#2|) (-10 -7 (-15 -2641 ((-454 |#1| |#2|) (-224 |#1| |#2|))) (-15 -3681 ((-224 |#1| |#2|) (-454 |#1| |#2|))) (-15 -1295 ((-454 |#1| |#2|) (-881 |#2|))) (-15 -2891 ((-881 |#2|) (-454 |#1| |#2|))) (-15 -3689 ((-881 |#2|) (-224 |#1| |#2|))) (-15 -2475 ((-224 |#1| |#2|) (-881 |#2|)))) (-588 (-1085)) (-971)) (T -873))
+((-2475 (*1 *2 *3) (-12 (-5 *3 (-881 *5)) (-4 *5 (-971)) (-5 *2 (-224 *4 *5)) (-5 *1 (-873 *4 *5)) (-14 *4 (-588 (-1085))))) (-3689 (*1 *2 *3) (-12 (-5 *3 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971)) (-5 *2 (-881 *5)) (-5 *1 (-873 *4 *5)))) (-2891 (*1 *2 *3) (-12 (-5 *3 (-454 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971)) (-5 *2 (-881 *5)) (-5 *1 (-873 *4 *5)))) (-1295 (*1 *2 *3) (-12 (-5 *3 (-881 *5)) (-4 *5 (-971)) (-5 *2 (-454 *4 *5)) (-5 *1 (-873 *4 *5)) (-14 *4 (-588 (-1085))))) (-3681 (*1 *2 *3) (-12 (-5 *3 (-454 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971)) (-5 *2 (-224 *4 *5)) (-5 *1 (-873 *4 *5)))) (-2641 (*1 *2 *3) (-12 (-5 *3 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971)) (-5 *2 (-454 *4 *5)) (-5 *1 (-873 *4 *5)))))
+(-10 -7 (-15 -2641 ((-454 |#1| |#2|) (-224 |#1| |#2|))) (-15 -3681 ((-224 |#1| |#2|) (-454 |#1| |#2|))) (-15 -1295 ((-454 |#1| |#2|) (-881 |#2|))) (-15 -2891 ((-881 |#2|) (-454 |#1| |#2|))) (-15 -3689 ((-881 |#2|) (-224 |#1| |#2|))) (-15 -2475 ((-224 |#1| |#2|) (-881 |#2|))))
+((-1316 (((-588 |#2|) |#2| |#2|) 10)) (-3013 (((-708) (-588 |#1|)) 38 (|has| |#1| (-782)))) (-1405 (((-588 |#2|) |#2|) 11)) (-1670 (((-708) (-588 |#1|) (-522) (-522)) 37 (|has| |#1| (-782)))) (-3435 ((|#1| |#2|) 33 (|has| |#1| (-782)))))
+(((-874 |#1| |#2|) (-10 -7 (-15 -1316 ((-588 |#2|) |#2| |#2|)) (-15 -1405 ((-588 |#2|) |#2|)) (IF (|has| |#1| (-782)) (PROGN (-15 -3435 (|#1| |#2|)) (-15 -3013 ((-708) (-588 |#1|))) (-15 -1670 ((-708) (-588 |#1|) (-522) (-522)))) |%noBranch|)) (-338) (-1142 |#1|)) (T -874))
+((-1670 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 *5)) (-5 *4 (-522)) (-4 *5 (-782)) (-4 *5 (-338)) (-5 *2 (-708)) (-5 *1 (-874 *5 *6)) (-4 *6 (-1142 *5)))) (-3013 (*1 *2 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-782)) (-4 *4 (-338)) (-5 *2 (-708)) (-5 *1 (-874 *4 *5)) (-4 *5 (-1142 *4)))) (-3435 (*1 *2 *3) (-12 (-4 *2 (-338)) (-4 *2 (-782)) (-5 *1 (-874 *2 *3)) (-4 *3 (-1142 *2)))) (-1405 (*1 *2 *3) (-12 (-4 *4 (-338)) (-5 *2 (-588 *3)) (-5 *1 (-874 *4 *3)) (-4 *3 (-1142 *4)))) (-1316 (*1 *2 *3 *3) (-12 (-4 *4 (-338)) (-5 *2 (-588 *3)) (-5 *1 (-874 *4 *3)) (-4 *3 (-1142 *4)))))
+(-10 -7 (-15 -1316 ((-588 |#2|) |#2| |#2|)) (-15 -1405 ((-588 |#2|) |#2|)) (IF (|has| |#1| (-782)) (PROGN (-15 -3435 (|#1| |#2|)) (-15 -3013 ((-708) (-588 |#1|))) (-15 -1670 ((-708) (-588 |#1|) (-522) (-522)))) |%noBranch|))
+((-3810 (((-881 |#2|) (-1 |#2| |#1|) (-881 |#1|)) 18)))
+(((-875 |#1| |#2|) (-10 -7 (-15 -3810 ((-881 |#2|) (-1 |#2| |#1|) (-881 |#1|)))) (-971) (-971)) (T -875))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-881 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-5 *2 (-881 *6)) (-5 *1 (-875 *5 *6)))))
+(-10 -7 (-15 -3810 ((-881 |#2|) (-1 |#2| |#1|) (-881 |#1|))))
+((-1264 (((-1139 |#1| (-881 |#2|)) (-881 |#2|) (-1162 |#1|)) 18)))
+(((-876 |#1| |#2|) (-10 -7 (-15 -1264 ((-1139 |#1| (-881 |#2|)) (-881 |#2|) (-1162 |#1|)))) (-1085) (-971)) (T -876))
+((-1264 (*1 *2 *3 *4) (-12 (-5 *4 (-1162 *5)) (-14 *5 (-1085)) (-4 *6 (-971)) (-5 *2 (-1139 *5 (-881 *6))) (-5 *1 (-876 *5 *6)) (-5 *3 (-881 *6)))))
+(-10 -7 (-15 -1264 ((-1139 |#1| (-881 |#2|)) (-881 |#2|) (-1162 |#1|))))
+((-3358 (((-708) $) 70) (((-708) $ (-588 |#4|)) 73)) (-2961 (($ $) 170)) (-3133 (((-393 $) $) 162)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 113)) (-3700 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 (-522) "failed") $) NIL) (((-3 |#4| "failed") $) 59)) (-1478 ((|#2| $) NIL) (((-382 (-522)) $) NIL) (((-522) $) NIL) ((|#4| $) 58)) (-2908 (($ $ $ |#4|) 75)) (-1226 (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) 103) (((-628 |#2|) (-628 $)) 96)) (-2883 (($ $) 177) (($ $ |#4|) 180)) (-3232 (((-588 $) $) 62)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 195) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 189)) (-3038 (((-588 $) $) 28)) (-3500 (($ |#2| |#3|) NIL) (($ $ |#4| (-708)) NIL) (($ $ (-588 |#4|) (-588 (-708))) 56)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ |#4|) 159)) (-2760 (((-3 (-588 $) "failed") $) 42)) (-1919 (((-3 (-588 $) "failed") $) 31)) (-2024 (((-3 (-2 (|:| |var| |#4|) (|:| -3858 (-708))) "failed") $) 46)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 106)) (-4022 (((-393 (-1081 $)) (-1081 $)) 119)) (-2313 (((-393 (-1081 $)) (-1081 $)) 117)) (-2006 (((-393 $) $) 137)) (-2330 (($ $ (-588 (-270 $))) 20) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-588 |#4|) (-588 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-588 |#4|) (-588 $)) NIL)) (-1615 (($ $ |#4|) 77)) (-3873 (((-821 (-354)) $) 209) (((-821 (-522)) $) 202) (((-498) $) 217)) (-2988 ((|#2| $) NIL) (($ $ |#4|) 172)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 151)) (-1643 ((|#2| $ |#3|) NIL) (($ $ |#4| (-708)) 51) (($ $ (-588 |#4|) (-588 (-708))) 54)) (-3040 (((-3 $ "failed") $) 153)) (-1587 (((-108) $ $) 183)))
+(((-877 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1789 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))) (-15 -3133 ((-393 |#1|) |#1|)) (-15 -2961 (|#1| |#1|)) (-15 -3040 ((-3 |#1| "failed") |#1|)) (-15 -1587 ((-108) |#1| |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -3873 ((-821 (-522)) |#1|)) (-15 -3873 ((-821 (-354)) |#1|)) (-15 -3738 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -3738 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -2006 ((-393 |#1|) |#1|)) (-15 -2313 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -4022 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -2800 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -2583 ((-3 (-1166 |#1|) "failed") (-628 |#1|))) (-15 -2883 (|#1| |#1| |#4|)) (-15 -2988 (|#1| |#1| |#4|)) (-15 -1615 (|#1| |#1| |#4|)) (-15 -2908 (|#1| |#1| |#1| |#4|)) (-15 -3232 ((-588 |#1|) |#1|)) (-15 -3358 ((-708) |#1| (-588 |#4|))) (-15 -3358 ((-708) |#1|)) (-15 -2024 ((-3 (-2 (|:| |var| |#4|) (|:| -3858 (-708))) "failed") |#1|)) (-15 -2760 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -1919 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -3500 (|#1| |#1| (-588 |#4|) (-588 (-708)))) (-15 -3500 (|#1| |#1| |#4| (-708))) (-15 -3058 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1| |#4|)) (-15 -3038 ((-588 |#1|) |#1|)) (-15 -1643 (|#1| |#1| (-588 |#4|) (-588 (-708)))) (-15 -1643 (|#1| |#1| |#4| (-708))) (-15 -1226 ((-628 |#2|) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-628 (-522)) (-628 |#1|))) (-15 -1478 (|#4| |#1|)) (-15 -3700 ((-3 |#4| "failed") |#1|)) (-15 -2330 (|#1| |#1| (-588 |#4|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#4| |#1|)) (-15 -2330 (|#1| |#1| (-588 |#4|) (-588 |#2|))) (-15 -2330 (|#1| |#1| |#4| |#2|)) (-15 -2330 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#1| |#1|)) (-15 -2330 (|#1| |#1| (-270 |#1|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -3500 (|#1| |#2| |#3|)) (-15 -1643 (|#2| |#1| |#3|)) (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -2988 (|#2| |#1|)) (-15 -2883 (|#1| |#1|))) (-878 |#2| |#3| |#4|) (-971) (-730) (-784)) (T -877))
+NIL
+(-10 -8 (-15 -1789 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))) (-15 -3133 ((-393 |#1|) |#1|)) (-15 -2961 (|#1| |#1|)) (-15 -3040 ((-3 |#1| "failed") |#1|)) (-15 -1587 ((-108) |#1| |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -3873 ((-821 (-522)) |#1|)) (-15 -3873 ((-821 (-354)) |#1|)) (-15 -3738 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -3738 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -2006 ((-393 |#1|) |#1|)) (-15 -2313 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -4022 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -2800 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -2583 ((-3 (-1166 |#1|) "failed") (-628 |#1|))) (-15 -2883 (|#1| |#1| |#4|)) (-15 -2988 (|#1| |#1| |#4|)) (-15 -1615 (|#1| |#1| |#4|)) (-15 -2908 (|#1| |#1| |#1| |#4|)) (-15 -3232 ((-588 |#1|) |#1|)) (-15 -3358 ((-708) |#1| (-588 |#4|))) (-15 -3358 ((-708) |#1|)) (-15 -2024 ((-3 (-2 (|:| |var| |#4|) (|:| -3858 (-708))) "failed") |#1|)) (-15 -2760 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -1919 ((-3 (-588 |#1|) "failed") |#1|)) (-15 -3500 (|#1| |#1| (-588 |#4|) (-588 (-708)))) (-15 -3500 (|#1| |#1| |#4| (-708))) (-15 -3058 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1| |#4|)) (-15 -3038 ((-588 |#1|) |#1|)) (-15 -1643 (|#1| |#1| (-588 |#4|) (-588 (-708)))) (-15 -1643 (|#1| |#1| |#4| (-708))) (-15 -1226 ((-628 |#2|) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-628 (-522)) (-628 |#1|))) (-15 -1478 (|#4| |#1|)) (-15 -3700 ((-3 |#4| "failed") |#1|)) (-15 -2330 (|#1| |#1| (-588 |#4|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#4| |#1|)) (-15 -2330 (|#1| |#1| (-588 |#4|) (-588 |#2|))) (-15 -2330 (|#1| |#1| |#4| |#2|)) (-15 -2330 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#1| |#1|)) (-15 -2330 (|#1| |#1| (-270 |#1|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -3500 (|#1| |#2| |#3|)) (-15 -1643 (|#2| |#1| |#3|)) (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -2988 (|#2| |#1|)) (-15 -2883 (|#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3533 (((-588 |#3|) $) 110)) (-1264 (((-1081 $) $ |#3|) 125) (((-1081 |#1|) $) 124)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 87 (|has| |#1| (-514)))) (-2298 (($ $) 88 (|has| |#1| (-514)))) (-3007 (((-108) $) 90 (|has| |#1| (-514)))) (-3358 (((-708) $) 112) (((-708) $ (-588 |#3|)) 111)) (-2265 (((-3 $ "failed") $ $) 19)) (-3543 (((-393 (-1081 $)) (-1081 $)) 100 (|has| |#1| (-838)))) (-2961 (($ $) 98 (|has| |#1| (-426)))) (-3133 (((-393 $) $) 97 (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 103 (|has| |#1| (-838)))) (-3367 (($) 17 T CONST)) (-3700 (((-3 |#1| "failed") $) 164) (((-3 (-382 (-522)) "failed") $) 162 (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) 160 (|has| |#1| (-962 (-522)))) (((-3 |#3| "failed") $) 136)) (-1478 ((|#1| $) 165) (((-382 (-522)) $) 161 (|has| |#1| (-962 (-382 (-522))))) (((-522) $) 159 (|has| |#1| (-962 (-522)))) ((|#3| $) 135)) (-2908 (($ $ $ |#3|) 108 (|has| |#1| (-157)))) (-3241 (($ $) 154)) (-1226 (((-628 (-522)) (-628 $)) 134 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 133 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 132) (((-628 |#1|) (-628 $)) 131)) (-3920 (((-3 $ "failed") $) 34)) (-2883 (($ $) 176 (|has| |#1| (-426))) (($ $ |#3|) 105 (|has| |#1| (-426)))) (-3232 (((-588 $) $) 109)) (-2725 (((-108) $) 96 (|has| |#1| (-838)))) (-3792 (($ $ |#1| |#2| $) 172)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 84 (-12 (|has| |#3| (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 83 (-12 (|has| |#3| (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-2859 (((-108) $) 31)) (-1391 (((-708) $) 169)) (-3520 (($ (-1081 |#1|) |#3|) 117) (($ (-1081 $) |#3|) 116)) (-3038 (((-588 $) $) 126)) (-1374 (((-108) $) 152)) (-3500 (($ |#1| |#2|) 153) (($ $ |#3| (-708)) 119) (($ $ (-588 |#3|) (-588 (-708))) 118)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ |#3|) 120)) (-3564 ((|#2| $) 170) (((-708) $ |#3|) 122) (((-588 (-708)) $ (-588 |#3|)) 121)) (-1308 (($ $ $) 79 (|has| |#1| (-784)))) (-2524 (($ $ $) 78 (|has| |#1| (-784)))) (-1723 (($ (-1 |#2| |#2|) $) 171)) (-3810 (($ (-1 |#1| |#1|) $) 151)) (-3155 (((-3 |#3| "failed") $) 123)) (-3216 (($ $) 149)) (-3224 ((|#1| $) 148)) (-2267 (($ (-588 $)) 94 (|has| |#1| (-426))) (($ $ $) 93 (|has| |#1| (-426)))) (-2311 (((-1068) $) 9)) (-2760 (((-3 (-588 $) "failed") $) 114)) (-1919 (((-3 (-588 $) "failed") $) 115)) (-2024 (((-3 (-2 (|:| |var| |#3|) (|:| -3858 (-708))) "failed") $) 113)) (-4174 (((-1032) $) 10)) (-3199 (((-108) $) 166)) (-3207 ((|#1| $) 167)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 95 (|has| |#1| (-426)))) (-2308 (($ (-588 $)) 92 (|has| |#1| (-426))) (($ $ $) 91 (|has| |#1| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) 102 (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) 101 (|has| |#1| (-838)))) (-2006 (((-393 $) $) 99 (|has| |#1| (-838)))) (-2276 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-514)))) (-2330 (($ $ (-588 (-270 $))) 145) (($ $ (-270 $)) 144) (($ $ $ $) 143) (($ $ (-588 $) (-588 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-588 |#3|) (-588 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-588 |#3|) (-588 $)) 138)) (-1615 (($ $ |#3|) 107 (|has| |#1| (-157)))) (-2731 (($ $ |#3|) 42) (($ $ (-588 |#3|)) 41) (($ $ |#3| (-708)) 40) (($ $ (-588 |#3|) (-588 (-708))) 39)) (-2487 ((|#2| $) 150) (((-708) $ |#3|) 130) (((-588 (-708)) $ (-588 |#3|)) 129)) (-3873 (((-821 (-354)) $) 82 (-12 (|has| |#3| (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) 81 (-12 (|has| |#3| (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) 80 (-12 (|has| |#3| (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2988 ((|#1| $) 175 (|has| |#1| (-426))) (($ $ |#3|) 106 (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 104 (-4079 (|has| $ (-133)) (|has| |#1| (-838))))) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 163) (($ |#3|) 137) (($ $) 85 (|has| |#1| (-514))) (($ (-382 (-522))) 72 (-3844 (|has| |#1| (-962 (-382 (-522)))) (|has| |#1| (-37 (-382 (-522))))))) (-2180 (((-588 |#1|) $) 168)) (-1643 ((|#1| $ |#2|) 155) (($ $ |#3| (-708)) 128) (($ $ (-588 |#3|) (-588 (-708))) 127)) (-3040 (((-3 $ "failed") $) 73 (-3844 (-4079 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) 29)) (-1225 (($ $ $ (-708)) 173 (|has| |#1| (-157)))) (-1407 (((-108) $ $) 89 (|has| |#1| (-514)))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ |#3|) 38) (($ $ (-588 |#3|)) 37) (($ $ |#3| (-708)) 36) (($ $ (-588 |#3|) (-588 (-708))) 35)) (-1623 (((-108) $ $) 76 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 75 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 77 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 74 (|has| |#1| (-784)))) (-1682 (($ $ |#1|) 156 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 158 (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) 157 (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
(((-878 |#1| |#2| |#3|) (-1197) (-971) (-730) (-784)) (T -878))
-((-2071 (*1 *1 *1) (-12 (-4 *1 (-878 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))) (-2793 (*1 *2 *1 *3) (-12 (-4 *1 (-878 *4 *5 *3)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-5 *2 (-708)))) (-2793 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *6)) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 (-708))))) (-3243 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-878 *4 *5 *2)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *2 (-784)))) (-3243 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *6)) (-5 *3 (-588 (-708))) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)))) (-4052 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-878 *3 *4 *5)))) (-1282 (*1 *2 *1 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-5 *2 (-1081 *1)) (-4 *1 (-878 *4 *5 *3)))) (-1282 (*1 *2 *1) (-12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-1081 *3)))) (-3145 (*1 *2 *1) (|partial| -12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-2925 (*1 *2 *1 *3) (-12 (-4 *1 (-878 *4 *5 *3)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-5 *2 (-708)))) (-2925 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *6)) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 (-708))))) (-2478 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-878 *4 *5 *3)))) (-4049 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-878 *4 *5 *2)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *2 (-784)))) (-4049 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *6)) (-5 *3 (-588 (-708))) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)))) (-4073 (*1 *1 *2 *3) (-12 (-5 *2 (-1081 *4)) (-4 *4 (-971)) (-4 *1 (-878 *4 *5 *3)) (-4 *5 (-730)) (-4 *3 (-784)))) (-4073 (*1 *1 *2 *3) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-878 *4 *5 *3)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)))) (-4193 (*1 *2 *1) (|partial| -12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-878 *3 *4 *5)))) (-2462 (*1 *2 *1) (|partial| -12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-878 *3 *4 *5)))) (-3285 (*1 *2 *1) (|partial| -12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| |var| *5) (|:| -1400 (-708)))))) (-3781 (*1 *2 *1) (-12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-708)))) (-3781 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *6)) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-708)))) (-4090 (*1 *2 *1) (-12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *5)))) (-3147 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-878 *3 *4 *5)))) (-1950 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *3 (-157)))) (-2769 (*1 *1 *1 *2) (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *3 (-157)))) (-2255 (*1 *1 *1 *2) (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *3 (-426)))) (-2071 (*1 *1 *1 *2) (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *3 (-426)))) (-3119 (*1 *1 *1) (-12 (-4 *1 (-878 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))) (-3450 (*1 *2 *1) (-12 (-4 *3 (-426)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-393 *1)) (-4 *1 (-878 *3 *4 *5)))))
-(-13 (-829 |t#3|) (-301 |t#1| |t#2|) (-285 $) (-483 |t#3| |t#1|) (-483 |t#3| $) (-962 |t#3|) (-352 |t#1|) (-10 -8 (-15 -2793 ((-708) $ |t#3|)) (-15 -2793 ((-588 (-708)) $ (-588 |t#3|))) (-15 -3243 ($ $ |t#3| (-708))) (-15 -3243 ($ $ (-588 |t#3|) (-588 (-708)))) (-15 -4052 ((-588 $) $)) (-15 -1282 ((-1081 $) $ |t#3|)) (-15 -1282 ((-1081 |t#1|) $)) (-15 -3145 ((-3 |t#3| "failed") $)) (-15 -2925 ((-708) $ |t#3|)) (-15 -2925 ((-588 (-708)) $ (-588 |t#3|))) (-15 -2478 ((-2 (|:| -1353 $) (|:| -3421 $)) $ $ |t#3|)) (-15 -4049 ($ $ |t#3| (-708))) (-15 -4049 ($ $ (-588 |t#3|) (-588 (-708)))) (-15 -4073 ($ (-1081 |t#1|) |t#3|)) (-15 -4073 ($ (-1081 $) |t#3|)) (-15 -4193 ((-3 (-588 $) "failed") $)) (-15 -2462 ((-3 (-588 $) "failed") $)) (-15 -3285 ((-3 (-2 (|:| |var| |t#3|) (|:| -1400 (-708))) "failed") $)) (-15 -3781 ((-708) $)) (-15 -3781 ((-708) $ (-588 |t#3|))) (-15 -4090 ((-588 |t#3|) $)) (-15 -3147 ((-588 $) $)) (IF (|has| |t#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#1| (-563 (-498))) (IF (|has| |t#3| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-563 (-821 (-522)))) (IF (|has| |t#3| (-563 (-821 (-522)))) (-6 (-563 (-821 (-522)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-563 (-821 (-354)))) (IF (|has| |t#3| (-563 (-821 (-354)))) (-6 (-563 (-821 (-354)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-815 (-522))) (IF (|has| |t#3| (-815 (-522))) (-6 (-815 (-522))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-815 (-354))) (IF (|has| |t#3| (-815 (-354))) (-6 (-815 (-354))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-157)) (PROGN (-15 -1950 ($ $ $ |t#3|)) (-15 -2769 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-426)) (PROGN (-6 (-426)) (-15 -2255 ($ $ |t#3|)) (-15 -2071 ($ $)) (-15 -2071 ($ $ |t#3|)) (-15 -3450 ((-393 $) $)) (-15 -3119 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4236)) (-6 -4236) |%noBranch|) (IF (|has| |t#1| (-838)) (-6 (-838)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-563 (-498)) -12 (|has| |#1| (-563 (-498))) (|has| |#3| (-563 (-498)))) ((-563 (-821 (-354))) -12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#3| (-563 (-821 (-354))))) ((-563 (-821 (-522))) -12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#3| (-563 (-821 (-522))))) ((-266) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-285 $) . T) ((-301 |#1| |#2|) . T) ((-352 |#1|) . T) ((-386 |#1|) . T) ((-426) -3708 (|has| |#1| (-838)) (|has| |#1| (-426))) ((-483 |#3| |#1|) . T) ((-483 |#3| $) . T) ((-483 $ $) . T) ((-514) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-664) . T) ((-784) |has| |#1| (-784)) ((-829 |#3|) . T) ((-815 (-354)) -12 (|has| |#1| (-815 (-354))) (|has| |#3| (-815 (-354)))) ((-815 (-522)) -12 (|has| |#1| (-815 (-522))) (|has| |#3| (-815 (-522)))) ((-838) |has| |#1| (-838)) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-962 |#3|) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) |has| |#1| (-838)))
-((-4090 (((-588 |#2|) |#5|) 36)) (-1282 (((-1081 |#5|) |#5| |#2| (-1081 |#5|)) 23) (((-382 (-1081 |#5|)) |#5| |#2|) 16)) (-4073 ((|#5| (-382 (-1081 |#5|)) |#2|) 30)) (-3145 (((-3 |#2| "failed") |#5|) 61)) (-2462 (((-3 (-588 |#5|) "failed") |#5|) 55)) (-2170 (((-3 (-2 (|:| |val| |#5|) (|:| -1400 (-522))) "failed") |#5|) 45)) (-4193 (((-3 (-588 |#5|) "failed") |#5|) 57)) (-3285 (((-3 (-2 (|:| |var| |#2|) (|:| -1400 (-522))) "failed") |#5|) 48)))
-(((-879 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4090 ((-588 |#2|) |#5|)) (-15 -3145 ((-3 |#2| "failed") |#5|)) (-15 -1282 ((-382 (-1081 |#5|)) |#5| |#2|)) (-15 -4073 (|#5| (-382 (-1081 |#5|)) |#2|)) (-15 -1282 ((-1081 |#5|) |#5| |#2| (-1081 |#5|))) (-15 -4193 ((-3 (-588 |#5|) "failed") |#5|)) (-15 -2462 ((-3 (-588 |#5|) "failed") |#5|)) (-15 -3285 ((-3 (-2 (|:| |var| |#2|) (|:| -1400 (-522))) "failed") |#5|)) (-15 -2170 ((-3 (-2 (|:| |val| |#5|) (|:| -1400 (-522))) "failed") |#5|))) (-730) (-784) (-971) (-878 |#3| |#1| |#2|) (-13 (-338) (-10 -8 (-15 -2190 ($ |#4|)) (-15 -2805 (|#4| $)) (-15 -2816 (|#4| $))))) (T -879))
-((-2170 (*1 *2 *3) (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -1400 (-522)))) (-5 *1 (-879 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $))))))) (-3285 (*1 *2 *3) (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -1400 (-522)))) (-5 *1 (-879 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $))))))) (-2462 (*1 *2 *3) (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-588 *3)) (-5 *1 (-879 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $))))))) (-4193 (*1 *2 *3) (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-588 *3)) (-5 *1 (-879 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $))))))) (-1282 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1081 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $))))) (-4 *7 (-878 *6 *5 *4)) (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-971)) (-5 *1 (-879 *5 *4 *6 *7 *3)))) (-4073 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-1081 *2))) (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-971)) (-4 *2 (-13 (-338) (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $))))) (-5 *1 (-879 *5 *4 *6 *7 *2)) (-4 *7 (-878 *6 *5 *4)))) (-1282 (*1 *2 *3 *4) (-12 (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-971)) (-4 *7 (-878 *6 *5 *4)) (-5 *2 (-382 (-1081 *3))) (-5 *1 (-879 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $))))))) (-3145 (*1 *2 *3) (|partial| -12 (-4 *4 (-730)) (-4 *5 (-971)) (-4 *6 (-878 *5 *4 *2)) (-4 *2 (-784)) (-5 *1 (-879 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2190 ($ *6)) (-15 -2805 (*6 $)) (-15 -2816 (*6 $))))))) (-4090 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-588 *5)) (-5 *1 (-879 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $))))))))
-(-10 -7 (-15 -4090 ((-588 |#2|) |#5|)) (-15 -3145 ((-3 |#2| "failed") |#5|)) (-15 -1282 ((-382 (-1081 |#5|)) |#5| |#2|)) (-15 -4073 (|#5| (-382 (-1081 |#5|)) |#2|)) (-15 -1282 ((-1081 |#5|) |#5| |#2| (-1081 |#5|))) (-15 -4193 ((-3 (-588 |#5|) "failed") |#5|)) (-15 -2462 ((-3 (-588 |#5|) "failed") |#5|)) (-15 -3285 ((-3 (-2 (|:| |var| |#2|) (|:| -1400 (-522))) "failed") |#5|)) (-15 -2170 ((-3 (-2 (|:| |val| |#5|) (|:| -1400 (-522))) "failed") |#5|)))
-((-1391 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 24)))
-(((-880 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1391 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-730) (-784) (-971) (-878 |#3| |#1| |#2|) (-13 (-1014) (-10 -8 (-15 -1602 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-708)))))) (T -880))
-((-1391 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-784)) (-4 *8 (-971)) (-4 *6 (-730)) (-4 *2 (-13 (-1014) (-10 -8 (-15 -1602 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-708)))))) (-5 *1 (-880 *6 *7 *8 *5 *2)) (-4 *5 (-878 *8 *6 *7)))))
-(-10 -7 (-15 -1391 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4090 (((-588 (-1085)) $) 15)) (-1282 (((-1081 $) $ (-1085)) 21) (((-1081 |#1|) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 (-1085))) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3119 (($ $) NIL (|has| |#1| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) 8) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-1085) "failed") $) NIL)) (-1484 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-1085) $) NIL)) (-1950 (($ $ $ (-1085)) NIL (|has| |#1| (-157)))) (-3156 (($ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#1| (-426))) (($ $ (-1085)) NIL (|has| |#1| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#1| (-838)))) (-2671 (($ $ |#1| (-494 (-1085)) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-1085) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-1085) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-4073 (($ (-1081 |#1|) (-1085)) NIL) (($ (-1081 $) (-1085)) NIL)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-494 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ (-1085)) NIL)) (-2925 (((-494 (-1085)) $) NIL) (((-708) $ (-1085)) NIL) (((-588 (-708)) $ (-588 (-1085))) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3861 (($ (-1 (-494 (-1085)) (-494 (-1085))) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-3145 (((-3 (-1085) "failed") $) 19)) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2385 (((-1068) $) NIL)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-1085)) (|:| -1400 (-708))) "failed") $) NIL)) (-1858 (($ $ (-1085)) 29 (|has| |#1| (-37 (-382 (-522)))))) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) NIL)) (-3118 ((|#1| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-838)))) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-1085) |#1|) NIL) (($ $ (-588 (-1085)) (-588 |#1|)) NIL) (($ $ (-1085) $) NIL) (($ $ (-588 (-1085)) (-588 $)) NIL)) (-2769 (($ $ (-1085)) NIL (|has| |#1| (-157)))) (-2157 (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-2793 (((-494 (-1085)) $) NIL) (((-708) $ (-1085)) NIL) (((-588 (-708)) $ (-588 (-1085))) NIL)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| (-1085) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-1085) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-1085) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2255 ((|#1| $) NIL (|has| |#1| (-426))) (($ $ (-1085)) NIL (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2190 (((-792) $) 25) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-1085)) 27) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-494 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-881 |#1|) (-13 (-878 |#1| (-494 (-1085)) (-1085)) (-10 -8 (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1085))) |%noBranch|))) (-971)) (T -881))
-((-1858 (*1 *1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-881 *3)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)))))
-(-13 (-878 |#1| (-494 (-1085)) (-1085)) (-10 -8 (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1085))) |%noBranch|)))
-((-2345 (((-2 (|:| -1400 (-708)) (|:| -2977 |#5|) (|:| |radicand| |#5|)) |#3| (-708)) 37)) (-1706 (((-2 (|:| -1400 (-708)) (|:| -2977 |#5|) (|:| |radicand| |#5|)) (-382 (-522)) (-708)) 33)) (-3171 (((-2 (|:| -1400 (-708)) (|:| -2977 |#4|) (|:| |radicand| (-588 |#4|))) |#4| (-708)) 52)) (-2961 (((-2 (|:| -1400 (-708)) (|:| -2977 |#5|) (|:| |radicand| |#5|)) |#5| (-708)) 62 (|has| |#3| (-426)))))
-(((-882 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2345 ((-2 (|:| -1400 (-708)) (|:| -2977 |#5|) (|:| |radicand| |#5|)) |#3| (-708))) (-15 -1706 ((-2 (|:| -1400 (-708)) (|:| -2977 |#5|) (|:| |radicand| |#5|)) (-382 (-522)) (-708))) (IF (|has| |#3| (-426)) (-15 -2961 ((-2 (|:| -1400 (-708)) (|:| -2977 |#5|) (|:| |radicand| |#5|)) |#5| (-708))) |%noBranch|) (-15 -3171 ((-2 (|:| -1400 (-708)) (|:| -2977 |#4|) (|:| |radicand| (-588 |#4|))) |#4| (-708)))) (-730) (-784) (-514) (-878 |#3| |#1| |#2|) (-13 (-338) (-10 -8 (-15 -2805 (|#4| $)) (-15 -2816 (|#4| $)) (-15 -2190 ($ |#4|))))) (T -882))
-((-3171 (*1 *2 *3 *4) (-12 (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-514)) (-4 *3 (-878 *7 *5 *6)) (-5 *2 (-2 (|:| -1400 (-708)) (|:| -2977 *3) (|:| |radicand| (-588 *3)))) (-5 *1 (-882 *5 *6 *7 *3 *8)) (-5 *4 (-708)) (-4 *8 (-13 (-338) (-10 -8 (-15 -2805 (*3 $)) (-15 -2816 (*3 $)) (-15 -2190 ($ *3))))))) (-2961 (*1 *2 *3 *4) (-12 (-4 *7 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-514)) (-4 *8 (-878 *7 *5 *6)) (-5 *2 (-2 (|:| -1400 (-708)) (|:| -2977 *3) (|:| |radicand| *3))) (-5 *1 (-882 *5 *6 *7 *8 *3)) (-5 *4 (-708)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2805 (*8 $)) (-15 -2816 (*8 $)) (-15 -2190 ($ *8))))))) (-1706 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-522))) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-514)) (-4 *8 (-878 *7 *5 *6)) (-5 *2 (-2 (|:| -1400 (-708)) (|:| -2977 *9) (|:| |radicand| *9))) (-5 *1 (-882 *5 *6 *7 *8 *9)) (-5 *4 (-708)) (-4 *9 (-13 (-338) (-10 -8 (-15 -2805 (*8 $)) (-15 -2816 (*8 $)) (-15 -2190 ($ *8))))))) (-2345 (*1 *2 *3 *4) (-12 (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-514)) (-4 *7 (-878 *3 *5 *6)) (-5 *2 (-2 (|:| -1400 (-708)) (|:| -2977 *8) (|:| |radicand| *8))) (-5 *1 (-882 *5 *6 *3 *7 *8)) (-5 *4 (-708)) (-4 *8 (-13 (-338) (-10 -8 (-15 -2805 (*7 $)) (-15 -2816 (*7 $)) (-15 -2190 ($ *7))))))))
-(-10 -7 (-15 -2345 ((-2 (|:| -1400 (-708)) (|:| -2977 |#5|) (|:| |radicand| |#5|)) |#3| (-708))) (-15 -1706 ((-2 (|:| -1400 (-708)) (|:| -2977 |#5|) (|:| |radicand| |#5|)) (-382 (-522)) (-708))) (IF (|has| |#3| (-426)) (-15 -2961 ((-2 (|:| -1400 (-708)) (|:| -2977 |#5|) (|:| |radicand| |#5|)) |#5| (-708))) |%noBranch|) (-15 -3171 ((-2 (|:| -1400 (-708)) (|:| -2977 |#4|) (|:| |radicand| (-588 |#4|))) |#4| (-708))))
-((-3808 (((-1009 (-202)) $) 8)) (-3794 (((-1009 (-202)) $) 9)) (-2745 (((-588 (-588 (-872 (-202)))) $) 10)) (-2190 (((-792) $) 6)))
+((-2883 (*1 *1 *1) (-12 (-4 *1 (-878 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))) (-2487 (*1 *2 *1 *3) (-12 (-4 *1 (-878 *4 *5 *3)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-5 *2 (-708)))) (-2487 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *6)) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 (-708))))) (-1643 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-878 *4 *5 *2)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *2 (-784)))) (-1643 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *6)) (-5 *3 (-588 (-708))) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)))) (-3038 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-878 *3 *4 *5)))) (-1264 (*1 *2 *1 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-5 *2 (-1081 *1)) (-4 *1 (-878 *4 *5 *3)))) (-1264 (*1 *2 *1) (-12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-1081 *3)))) (-3155 (*1 *2 *1) (|partial| -12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-3564 (*1 *2 *1 *3) (-12 (-4 *1 (-878 *4 *5 *3)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-5 *2 (-708)))) (-3564 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *6)) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 (-708))))) (-3058 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-878 *4 *5 *3)))) (-3500 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-878 *4 *5 *2)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *2 (-784)))) (-3500 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *6)) (-5 *3 (-588 (-708))) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)))) (-3520 (*1 *1 *2 *3) (-12 (-5 *2 (-1081 *4)) (-4 *4 (-971)) (-4 *1 (-878 *4 *5 *3)) (-4 *5 (-730)) (-4 *3 (-784)))) (-3520 (*1 *1 *2 *3) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-878 *4 *5 *3)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)))) (-1919 (*1 *2 *1) (|partial| -12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-878 *3 *4 *5)))) (-2760 (*1 *2 *1) (|partial| -12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-878 *3 *4 *5)))) (-2024 (*1 *2 *1) (|partial| -12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| |var| *5) (|:| -3858 (-708)))))) (-3358 (*1 *2 *1) (-12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-708)))) (-3358 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *6)) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-708)))) (-3533 (*1 *2 *1) (-12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *5)))) (-3232 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-878 *3 *4 *5)))) (-2908 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *3 (-157)))) (-1615 (*1 *1 *1 *2) (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *3 (-157)))) (-2988 (*1 *1 *1 *2) (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *3 (-426)))) (-2883 (*1 *1 *1 *2) (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *3 (-426)))) (-2961 (*1 *1 *1) (-12 (-4 *1 (-878 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))) (-3133 (*1 *2 *1) (-12 (-4 *3 (-426)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-393 *1)) (-4 *1 (-878 *3 *4 *5)))))
+(-13 (-829 |t#3|) (-301 |t#1| |t#2|) (-285 $) (-483 |t#3| |t#1|) (-483 |t#3| $) (-962 |t#3|) (-352 |t#1|) (-10 -8 (-15 -2487 ((-708) $ |t#3|)) (-15 -2487 ((-588 (-708)) $ (-588 |t#3|))) (-15 -1643 ($ $ |t#3| (-708))) (-15 -1643 ($ $ (-588 |t#3|) (-588 (-708)))) (-15 -3038 ((-588 $) $)) (-15 -1264 ((-1081 $) $ |t#3|)) (-15 -1264 ((-1081 |t#1|) $)) (-15 -3155 ((-3 |t#3| "failed") $)) (-15 -3564 ((-708) $ |t#3|)) (-15 -3564 ((-588 (-708)) $ (-588 |t#3|))) (-15 -3058 ((-2 (|:| -3450 $) (|:| -4002 $)) $ $ |t#3|)) (-15 -3500 ($ $ |t#3| (-708))) (-15 -3500 ($ $ (-588 |t#3|) (-588 (-708)))) (-15 -3520 ($ (-1081 |t#1|) |t#3|)) (-15 -3520 ($ (-1081 $) |t#3|)) (-15 -1919 ((-3 (-588 $) "failed") $)) (-15 -2760 ((-3 (-588 $) "failed") $)) (-15 -2024 ((-3 (-2 (|:| |var| |t#3|) (|:| -3858 (-708))) "failed") $)) (-15 -3358 ((-708) $)) (-15 -3358 ((-708) $ (-588 |t#3|))) (-15 -3533 ((-588 |t#3|) $)) (-15 -3232 ((-588 $) $)) (IF (|has| |t#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#1| (-563 (-498))) (IF (|has| |t#3| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-563 (-821 (-522)))) (IF (|has| |t#3| (-563 (-821 (-522)))) (-6 (-563 (-821 (-522)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-563 (-821 (-354)))) (IF (|has| |t#3| (-563 (-821 (-354)))) (-6 (-563 (-821 (-354)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-815 (-522))) (IF (|has| |t#3| (-815 (-522))) (-6 (-815 (-522))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-815 (-354))) (IF (|has| |t#3| (-815 (-354))) (-6 (-815 (-354))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-157)) (PROGN (-15 -2908 ($ $ $ |t#3|)) (-15 -1615 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-426)) (PROGN (-6 (-426)) (-15 -2988 ($ $ |t#3|)) (-15 -2883 ($ $)) (-15 -2883 ($ $ |t#3|)) (-15 -3133 ((-393 $) $)) (-15 -2961 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4236)) (-6 -4236) |%noBranch|) (IF (|has| |t#1| (-838)) (-6 (-838)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-563 (-498)) -12 (|has| |#1| (-563 (-498))) (|has| |#3| (-563 (-498)))) ((-563 (-821 (-354))) -12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#3| (-563 (-821 (-354))))) ((-563 (-821 (-522))) -12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#3| (-563 (-821 (-522))))) ((-266) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-285 $) . T) ((-301 |#1| |#2|) . T) ((-352 |#1|) . T) ((-386 |#1|) . T) ((-426) -3844 (|has| |#1| (-838)) (|has| |#1| (-426))) ((-483 |#3| |#1|) . T) ((-483 |#3| $) . T) ((-483 $ $) . T) ((-514) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-664) . T) ((-784) |has| |#1| (-784)) ((-829 |#3|) . T) ((-815 (-354)) -12 (|has| |#1| (-815 (-354))) (|has| |#3| (-815 (-354)))) ((-815 (-522)) -12 (|has| |#1| (-815 (-522))) (|has| |#3| (-815 (-522)))) ((-838) |has| |#1| (-838)) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-962 |#3|) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) |has| |#1| (-838)))
+((-3533 (((-588 |#2|) |#5|) 36)) (-1264 (((-1081 |#5|) |#5| |#2| (-1081 |#5|)) 23) (((-382 (-1081 |#5|)) |#5| |#2|) 16)) (-3520 ((|#5| (-382 (-1081 |#5|)) |#2|) 30)) (-3155 (((-3 |#2| "failed") |#5|) 61)) (-2760 (((-3 (-588 |#5|) "failed") |#5|) 55)) (-3242 (((-3 (-2 (|:| |val| |#5|) (|:| -3858 (-522))) "failed") |#5|) 45)) (-1919 (((-3 (-588 |#5|) "failed") |#5|) 57)) (-2024 (((-3 (-2 (|:| |var| |#2|) (|:| -3858 (-522))) "failed") |#5|) 48)))
+(((-879 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3533 ((-588 |#2|) |#5|)) (-15 -3155 ((-3 |#2| "failed") |#5|)) (-15 -1264 ((-382 (-1081 |#5|)) |#5| |#2|)) (-15 -3520 (|#5| (-382 (-1081 |#5|)) |#2|)) (-15 -1264 ((-1081 |#5|) |#5| |#2| (-1081 |#5|))) (-15 -1919 ((-3 (-588 |#5|) "failed") |#5|)) (-15 -2760 ((-3 (-588 |#5|) "failed") |#5|)) (-15 -2024 ((-3 (-2 (|:| |var| |#2|) (|:| -3858 (-522))) "failed") |#5|)) (-15 -3242 ((-3 (-2 (|:| |val| |#5|) (|:| -3858 (-522))) "failed") |#5|))) (-730) (-784) (-971) (-878 |#3| |#1| |#2|) (-13 (-338) (-10 -8 (-15 -2217 ($ |#4|)) (-15 -2947 (|#4| $)) (-15 -2959 (|#4| $))))) (T -879))
+((-3242 (*1 *2 *3) (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -3858 (-522)))) (-5 *1 (-879 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $))))))) (-2024 (*1 *2 *3) (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -3858 (-522)))) (-5 *1 (-879 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $))))))) (-2760 (*1 *2 *3) (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-588 *3)) (-5 *1 (-879 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $))))))) (-1919 (*1 *2 *3) (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-588 *3)) (-5 *1 (-879 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $))))))) (-1264 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1081 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $))))) (-4 *7 (-878 *6 *5 *4)) (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-971)) (-5 *1 (-879 *5 *4 *6 *7 *3)))) (-3520 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-1081 *2))) (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-971)) (-4 *2 (-13 (-338) (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $))))) (-5 *1 (-879 *5 *4 *6 *7 *2)) (-4 *7 (-878 *6 *5 *4)))) (-1264 (*1 *2 *3 *4) (-12 (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-971)) (-4 *7 (-878 *6 *5 *4)) (-5 *2 (-382 (-1081 *3))) (-5 *1 (-879 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $))))))) (-3155 (*1 *2 *3) (|partial| -12 (-4 *4 (-730)) (-4 *5 (-971)) (-4 *6 (-878 *5 *4 *2)) (-4 *2 (-784)) (-5 *1 (-879 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2217 ($ *6)) (-15 -2947 (*6 $)) (-15 -2959 (*6 $))))))) (-3533 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-588 *5)) (-5 *1 (-879 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $))))))))
+(-10 -7 (-15 -3533 ((-588 |#2|) |#5|)) (-15 -3155 ((-3 |#2| "failed") |#5|)) (-15 -1264 ((-382 (-1081 |#5|)) |#5| |#2|)) (-15 -3520 (|#5| (-382 (-1081 |#5|)) |#2|)) (-15 -1264 ((-1081 |#5|) |#5| |#2| (-1081 |#5|))) (-15 -1919 ((-3 (-588 |#5|) "failed") |#5|)) (-15 -2760 ((-3 (-588 |#5|) "failed") |#5|)) (-15 -2024 ((-3 (-2 (|:| |var| |#2|) (|:| -3858 (-522))) "failed") |#5|)) (-15 -3242 ((-3 (-2 (|:| |val| |#5|) (|:| -3858 (-522))) "failed") |#5|)))
+((-3810 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 24)))
+(((-880 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3810 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-730) (-784) (-971) (-878 |#3| |#1| |#2|) (-13 (-1014) (-10 -8 (-15 -1661 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-708)))))) (T -880))
+((-3810 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-784)) (-4 *8 (-971)) (-4 *6 (-730)) (-4 *2 (-13 (-1014) (-10 -8 (-15 -1661 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-708)))))) (-5 *1 (-880 *6 *7 *8 *5 *2)) (-4 *5 (-878 *8 *6 *7)))))
+(-10 -7 (-15 -3810 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3533 (((-588 (-1085)) $) 15)) (-1264 (((-1081 $) $ (-1085)) 21) (((-1081 |#1|) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 (-1085))) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2961 (($ $) NIL (|has| |#1| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) 8) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-1085) "failed") $) NIL)) (-1478 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-1085) $) NIL)) (-2908 (($ $ $ (-1085)) NIL (|has| |#1| (-157)))) (-3241 (($ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#1| (-426))) (($ $ (-1085)) NIL (|has| |#1| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#1| (-838)))) (-3792 (($ $ |#1| (-494 (-1085)) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-1085) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-1085) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-3520 (($ (-1081 |#1|) (-1085)) NIL) (($ (-1081 $) (-1085)) NIL)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-494 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ (-1085)) NIL)) (-3564 (((-494 (-1085)) $) NIL) (((-708) $ (-1085)) NIL) (((-588 (-708)) $ (-588 (-1085))) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-1723 (($ (-1 (-494 (-1085)) (-494 (-1085))) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3155 (((-3 (-1085) "failed") $) 19)) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2311 (((-1068) $) NIL)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| (-1085)) (|:| -3858 (-708))) "failed") $) NIL)) (-2611 (($ $ (-1085)) 29 (|has| |#1| (-37 (-382 (-522)))))) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) NIL)) (-3207 ((|#1| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-838)))) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-1085) |#1|) NIL) (($ $ (-588 (-1085)) (-588 |#1|)) NIL) (($ $ (-1085) $) NIL) (($ $ (-588 (-1085)) (-588 $)) NIL)) (-1615 (($ $ (-1085)) NIL (|has| |#1| (-157)))) (-2731 (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-2487 (((-494 (-1085)) $) NIL) (((-708) $ (-1085)) NIL) (((-588 (-708)) $ (-588 (-1085))) NIL)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| (-1085) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-1085) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-1085) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2988 ((|#1| $) NIL (|has| |#1| (-426))) (($ $ (-1085)) NIL (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2217 (((-792) $) 25) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-1085)) 27) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-494 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-881 |#1|) (-13 (-878 |#1| (-494 (-1085)) (-1085)) (-10 -8 (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1085))) |%noBranch|))) (-971)) (T -881))
+((-2611 (*1 *1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-881 *3)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)))))
+(-13 (-878 |#1| (-494 (-1085)) (-1085)) (-10 -8 (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1085))) |%noBranch|)))
+((-1642 (((-2 (|:| -3858 (-708)) (|:| -3112 |#5|) (|:| |radicand| |#5|)) |#3| (-708)) 37)) (-4124 (((-2 (|:| -3858 (-708)) (|:| -3112 |#5|) (|:| |radicand| |#5|)) (-382 (-522)) (-708)) 33)) (-3326 (((-2 (|:| -3858 (-708)) (|:| -3112 |#4|) (|:| |radicand| (-588 |#4|))) |#4| (-708)) 52)) (-3929 (((-2 (|:| -3858 (-708)) (|:| -3112 |#5|) (|:| |radicand| |#5|)) |#5| (-708)) 62 (|has| |#3| (-426)))))
+(((-882 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1642 ((-2 (|:| -3858 (-708)) (|:| -3112 |#5|) (|:| |radicand| |#5|)) |#3| (-708))) (-15 -4124 ((-2 (|:| -3858 (-708)) (|:| -3112 |#5|) (|:| |radicand| |#5|)) (-382 (-522)) (-708))) (IF (|has| |#3| (-426)) (-15 -3929 ((-2 (|:| -3858 (-708)) (|:| -3112 |#5|) (|:| |radicand| |#5|)) |#5| (-708))) |%noBranch|) (-15 -3326 ((-2 (|:| -3858 (-708)) (|:| -3112 |#4|) (|:| |radicand| (-588 |#4|))) |#4| (-708)))) (-730) (-784) (-514) (-878 |#3| |#1| |#2|) (-13 (-338) (-10 -8 (-15 -2947 (|#4| $)) (-15 -2959 (|#4| $)) (-15 -2217 ($ |#4|))))) (T -882))
+((-3326 (*1 *2 *3 *4) (-12 (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-514)) (-4 *3 (-878 *7 *5 *6)) (-5 *2 (-2 (|:| -3858 (-708)) (|:| -3112 *3) (|:| |radicand| (-588 *3)))) (-5 *1 (-882 *5 *6 *7 *3 *8)) (-5 *4 (-708)) (-4 *8 (-13 (-338) (-10 -8 (-15 -2947 (*3 $)) (-15 -2959 (*3 $)) (-15 -2217 ($ *3))))))) (-3929 (*1 *2 *3 *4) (-12 (-4 *7 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-514)) (-4 *8 (-878 *7 *5 *6)) (-5 *2 (-2 (|:| -3858 (-708)) (|:| -3112 *3) (|:| |radicand| *3))) (-5 *1 (-882 *5 *6 *7 *8 *3)) (-5 *4 (-708)) (-4 *3 (-13 (-338) (-10 -8 (-15 -2947 (*8 $)) (-15 -2959 (*8 $)) (-15 -2217 ($ *8))))))) (-4124 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-522))) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-514)) (-4 *8 (-878 *7 *5 *6)) (-5 *2 (-2 (|:| -3858 (-708)) (|:| -3112 *9) (|:| |radicand| *9))) (-5 *1 (-882 *5 *6 *7 *8 *9)) (-5 *4 (-708)) (-4 *9 (-13 (-338) (-10 -8 (-15 -2947 (*8 $)) (-15 -2959 (*8 $)) (-15 -2217 ($ *8))))))) (-1642 (*1 *2 *3 *4) (-12 (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-514)) (-4 *7 (-878 *3 *5 *6)) (-5 *2 (-2 (|:| -3858 (-708)) (|:| -3112 *8) (|:| |radicand| *8))) (-5 *1 (-882 *5 *6 *3 *7 *8)) (-5 *4 (-708)) (-4 *8 (-13 (-338) (-10 -8 (-15 -2947 (*7 $)) (-15 -2959 (*7 $)) (-15 -2217 ($ *7))))))))
+(-10 -7 (-15 -1642 ((-2 (|:| -3858 (-708)) (|:| -3112 |#5|) (|:| |radicand| |#5|)) |#3| (-708))) (-15 -4124 ((-2 (|:| -3858 (-708)) (|:| -3112 |#5|) (|:| |radicand| |#5|)) (-382 (-522)) (-708))) (IF (|has| |#3| (-426)) (-15 -3929 ((-2 (|:| -3858 (-708)) (|:| -3112 |#5|) (|:| |radicand| |#5|)) |#5| (-708))) |%noBranch|) (-15 -3326 ((-2 (|:| -3858 (-708)) (|:| -3112 |#4|) (|:| |radicand| (-588 |#4|))) |#4| (-708))))
+((-2366 (((-1009 (-202)) $) 8)) (-2351 (((-1009 (-202)) $) 9)) (-1414 (((-588 (-588 (-872 (-202)))) $) 10)) (-2217 (((-792) $) 6)))
(((-883) (-1197)) (T -883))
-((-2745 (*1 *2 *1) (-12 (-4 *1 (-883)) (-5 *2 (-588 (-588 (-872 (-202))))))) (-3794 (*1 *2 *1) (-12 (-4 *1 (-883)) (-5 *2 (-1009 (-202))))) (-3808 (*1 *2 *1) (-12 (-4 *1 (-883)) (-5 *2 (-1009 (-202))))))
-(-13 (-562 (-792)) (-10 -8 (-15 -2745 ((-588 (-588 (-872 (-202)))) $)) (-15 -3794 ((-1009 (-202)) $)) (-15 -3808 ((-1009 (-202)) $))))
+((-1414 (*1 *2 *1) (-12 (-4 *1 (-883)) (-5 *2 (-588 (-588 (-872 (-202))))))) (-2351 (*1 *2 *1) (-12 (-4 *1 (-883)) (-5 *2 (-1009 (-202))))) (-2366 (*1 *2 *1) (-12 (-4 *1 (-883)) (-5 *2 (-1009 (-202))))))
+(-13 (-562 (-792)) (-10 -8 (-15 -1414 ((-588 (-588 (-872 (-202)))) $)) (-15 -2351 ((-1009 (-202)) $)) (-15 -2366 ((-1009 (-202)) $))))
(((-562 (-792)) . T))
-((-1597 (((-3 (-628 |#1|) "failed") |#2| (-850)) 14)))
-(((-884 |#1| |#2|) (-10 -7 (-15 -1597 ((-3 (-628 |#1|) "failed") |#2| (-850)))) (-514) (-598 |#1|)) (T -884))
-((-1597 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-850)) (-4 *5 (-514)) (-5 *2 (-628 *5)) (-5 *1 (-884 *5 *3)) (-4 *3 (-598 *5)))))
-(-10 -7 (-15 -1597 ((-3 (-628 |#1|) "failed") |#2| (-850))))
-((-3690 (((-886 |#2|) (-1 |#2| |#1| |#2|) (-886 |#1|) |#2|) 16)) (-3864 ((|#2| (-1 |#2| |#1| |#2|) (-886 |#1|) |#2|) 18)) (-1391 (((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|)) 13)))
-(((-885 |#1| |#2|) (-10 -7 (-15 -3690 ((-886 |#2|) (-1 |#2| |#1| |#2|) (-886 |#1|) |#2|)) (-15 -3864 (|#2| (-1 |#2| |#1| |#2|) (-886 |#1|) |#2|)) (-15 -1391 ((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|)))) (-1120) (-1120)) (T -885))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-886 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-886 *6)) (-5 *1 (-885 *5 *6)))) (-3864 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-886 *5)) (-4 *5 (-1120)) (-4 *2 (-1120)) (-5 *1 (-885 *5 *2)))) (-3690 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-886 *6)) (-4 *6 (-1120)) (-4 *5 (-1120)) (-5 *2 (-886 *5)) (-5 *1 (-885 *6 *5)))))
-(-10 -7 (-15 -3690 ((-886 |#2|) (-1 |#2| |#1| |#2|) (-886 |#1|) |#2|)) (-15 -3864 (|#2| (-1 |#2| |#1| |#2|) (-886 |#1|) |#2|)) (-15 -1391 ((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-3537 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3216 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#1| $ (-522) |#1|) 17 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1423 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) 16 (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) 14)) (-3238 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1811 (($ (-708) |#1|) 13)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) 10 (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2160 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1661 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2294 ((|#1| $) NIL (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2602 (($ $ |#1|) 12 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) 11)) (-2545 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) 15) (($ $ (-1133 (-522))) NIL)) (-3696 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) NIL)) (-4165 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3480 (((-708) $) 8 (|has| $ (-6 -4238)))))
+((-3766 (((-3 (-628 |#1|) "failed") |#2| (-850)) 14)))
+(((-884 |#1| |#2|) (-10 -7 (-15 -3766 ((-3 (-628 |#1|) "failed") |#2| (-850)))) (-514) (-598 |#1|)) (T -884))
+((-3766 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-850)) (-4 *5 (-514)) (-5 *2 (-628 *5)) (-5 *1 (-884 *5 *3)) (-4 *3 (-598 *5)))))
+(-10 -7 (-15 -3766 ((-3 (-628 |#1|) "failed") |#2| (-850))))
+((-3639 (((-886 |#2|) (-1 |#2| |#1| |#2|) (-886 |#1|) |#2|) 16)) (-2153 ((|#2| (-1 |#2| |#1| |#2|) (-886 |#1|) |#2|) 18)) (-3810 (((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|)) 13)))
+(((-885 |#1| |#2|) (-10 -7 (-15 -3639 ((-886 |#2|) (-1 |#2| |#1| |#2|) (-886 |#1|) |#2|)) (-15 -2153 (|#2| (-1 |#2| |#1| |#2|) (-886 |#1|) |#2|)) (-15 -3810 ((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|)))) (-1120) (-1120)) (T -885))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-886 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-886 *6)) (-5 *1 (-885 *5 *6)))) (-2153 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-886 *5)) (-4 *5 (-1120)) (-4 *2 (-1120)) (-5 *1 (-885 *5 *2)))) (-3639 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-886 *6)) (-4 *6 (-1120)) (-4 *5 (-1120)) (-5 *2 (-886 *5)) (-5 *1 (-885 *6 *5)))))
+(-10 -7 (-15 -3639 ((-886 |#2|) (-1 |#2| |#1| |#2|) (-886 |#1|) |#2|)) (-15 -2153 (|#2| (-1 |#2| |#1| |#2|) (-886 |#1|) |#2|)) (-15 -3810 ((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-2806 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3296 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#1| $ (-522) |#1|) 17 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1424 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) 16 (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) 14)) (-3314 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1893 (($ (-708) |#1|) 13)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) 10 (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-3164 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1731 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2337 ((|#1| $) NIL (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1972 (($ $ |#1|) 12 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) 11)) (-2683 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) 15) (($ $ (-1133 (-522))) NIL)) (-3835 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) NIL)) (-4170 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-3591 (((-708) $) 8 (|has| $ (-6 -4238)))))
(((-886 |#1|) (-19 |#1|) (-1120)) (T -886))
NIL
(-19 |#1|)
-((-2355 (($ $ (-1007 $)) 7) (($ $ (-1085)) 6)))
+((-2093 (($ $ (-1007 $)) 7) (($ $ (-1085)) 6)))
(((-887) (-1197)) (T -887))
-((-2355 (*1 *1 *1 *2) (-12 (-5 *2 (-1007 *1)) (-4 *1 (-887)))) (-2355 (*1 *1 *1 *2) (-12 (-4 *1 (-887)) (-5 *2 (-1085)))))
-(-13 (-10 -8 (-15 -2355 ($ $ (-1085))) (-15 -2355 ($ $ (-1007 $)))))
-((-1223 (((-2 (|:| -2977 (-588 (-522))) (|:| |poly| (-588 (-1081 |#1|))) (|:| |prim| (-1081 |#1|))) (-588 (-881 |#1|)) (-588 (-1085)) (-1085)) 23) (((-2 (|:| -2977 (-588 (-522))) (|:| |poly| (-588 (-1081 |#1|))) (|:| |prim| (-1081 |#1|))) (-588 (-881 |#1|)) (-588 (-1085))) 24) (((-2 (|:| |coef1| (-522)) (|:| |coef2| (-522)) (|:| |prim| (-1081 |#1|))) (-881 |#1|) (-1085) (-881 |#1|) (-1085)) 41)))
-(((-888 |#1|) (-10 -7 (-15 -1223 ((-2 (|:| |coef1| (-522)) (|:| |coef2| (-522)) (|:| |prim| (-1081 |#1|))) (-881 |#1|) (-1085) (-881 |#1|) (-1085))) (-15 -1223 ((-2 (|:| -2977 (-588 (-522))) (|:| |poly| (-588 (-1081 |#1|))) (|:| |prim| (-1081 |#1|))) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -1223 ((-2 (|:| -2977 (-588 (-522))) (|:| |poly| (-588 (-1081 |#1|))) (|:| |prim| (-1081 |#1|))) (-588 (-881 |#1|)) (-588 (-1085)) (-1085)))) (-13 (-338) (-135))) (T -888))
-((-1223 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 (-881 *6))) (-5 *4 (-588 (-1085))) (-5 *5 (-1085)) (-4 *6 (-13 (-338) (-135))) (-5 *2 (-2 (|:| -2977 (-588 (-522))) (|:| |poly| (-588 (-1081 *6))) (|:| |prim| (-1081 *6)))) (-5 *1 (-888 *6)))) (-1223 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-588 (-1085))) (-4 *5 (-13 (-338) (-135))) (-5 *2 (-2 (|:| -2977 (-588 (-522))) (|:| |poly| (-588 (-1081 *5))) (|:| |prim| (-1081 *5)))) (-5 *1 (-888 *5)))) (-1223 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-881 *5)) (-5 *4 (-1085)) (-4 *5 (-13 (-338) (-135))) (-5 *2 (-2 (|:| |coef1| (-522)) (|:| |coef2| (-522)) (|:| |prim| (-1081 *5)))) (-5 *1 (-888 *5)))))
-(-10 -7 (-15 -1223 ((-2 (|:| |coef1| (-522)) (|:| |coef2| (-522)) (|:| |prim| (-1081 |#1|))) (-881 |#1|) (-1085) (-881 |#1|) (-1085))) (-15 -1223 ((-2 (|:| -2977 (-588 (-522))) (|:| |poly| (-588 (-1081 |#1|))) (|:| |prim| (-1081 |#1|))) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -1223 ((-2 (|:| -2977 (-588 (-522))) (|:| |poly| (-588 (-1081 |#1|))) (|:| |prim| (-1081 |#1|))) (-588 (-881 |#1|)) (-588 (-1085)) (-1085))))
-((-2466 (((-588 |#1|) |#1| |#1|) 42)) (-2813 (((-108) |#1|) 39)) (-4039 ((|#1| |#1|) 65)) (-1910 ((|#1| |#1|) 64)))
-(((-889 |#1|) (-10 -7 (-15 -2813 ((-108) |#1|)) (-15 -1910 (|#1| |#1|)) (-15 -4039 (|#1| |#1|)) (-15 -2466 ((-588 |#1|) |#1| |#1|))) (-507)) (T -889))
-((-2466 (*1 *2 *3 *3) (-12 (-5 *2 (-588 *3)) (-5 *1 (-889 *3)) (-4 *3 (-507)))) (-4039 (*1 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-507)))) (-1910 (*1 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-507)))) (-2813 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-889 *3)) (-4 *3 (-507)))))
-(-10 -7 (-15 -2813 ((-108) |#1|)) (-15 -1910 (|#1| |#1|)) (-15 -4039 (|#1| |#1|)) (-15 -2466 ((-588 |#1|) |#1| |#1|)))
-((-2050 (((-1171) (-792)) 9)))
-(((-890) (-10 -7 (-15 -2050 ((-1171) (-792))))) (T -890))
-((-2050 (*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-890)))))
-(-10 -7 (-15 -2050 ((-1171) (-792))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 63 (|has| |#1| (-514)))) (-2022 (($ $) 64 (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 28)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3156 (($ $) 24)) (-2682 (((-3 $ "failed") $) 35)) (-2071 (($ $) NIL (|has| |#1| (-426)))) (-2671 (($ $ |#1| |#2| $) 48)) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) 16)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| |#2|) NIL)) (-2925 ((|#2| $) 19)) (-3861 (($ (-1 |#2| |#2|) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-3128 (($ $) 23)) (-3138 ((|#1| $) 21)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) 40)) (-3118 ((|#1| $) NIL)) (-2600 (($ $ |#2| |#1| $) 72 (-12 (|has| |#2| (-124)) (|has| |#1| (-514))))) (-2232 (((-3 $ "failed") $ $) 74 (|has| |#1| (-514))) (((-3 $ "failed") $ |#1|) 70 (|has| |#1| (-514)))) (-2793 ((|#2| $) 17)) (-2255 ((|#1| $) NIL (|has| |#1| (-426)))) (-2190 (((-792) $) NIL) (($ (-522)) 39) (($ $) NIL (|has| |#1| (-514))) (($ |#1|) 34) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ |#2|) 31)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) 15)) (-3632 (($ $ $ (-708)) 59 (|has| |#1| (-157)))) (-3958 (((-108) $ $) 69 (|has| |#1| (-514)))) (-3510 (($ $ (-850)) 55) (($ $ (-708)) 56)) (-3566 (($) 22 T CONST)) (-3577 (($) 12 T CONST)) (-1531 (((-108) $ $) 68)) (-1620 (($ $ |#1|) 75 (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) 54) (($ $ (-708)) 52)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 51) (($ $ |#1|) 50) (($ |#1| $) 49) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
-(((-891 |#1| |#2|) (-13 (-301 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-514)) (IF (|has| |#2| (-124)) (-15 -2600 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4236)) (-6 -4236) |%noBranch|))) (-971) (-729)) (T -891))
-((-2600 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-891 *3 *2)) (-4 *2 (-124)) (-4 *3 (-514)) (-4 *3 (-971)) (-4 *2 (-729)))))
-(-13 (-301 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-514)) (IF (|has| |#2| (-124)) (-15 -2600 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4236)) (-6 -4236) |%noBranch|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL (-3708 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730)))))) (-1210 (($ $ $) 63 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))))) (-1233 (((-3 $ "failed") $ $) 50 (-3708 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730)))))) (-1629 (((-708)) 34 (-12 (|has| |#1| (-343)) (|has| |#2| (-343))))) (-1587 ((|#2| $) 21)) (-2027 ((|#1| $) 20)) (-3175 (($) NIL (-3708 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730)))) CONST)) (-2682 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664)))))) (-3255 (($) NIL (-12 (|has| |#1| (-343)) (|has| |#2| (-343))))) (-2782 (((-108) $) NIL (-3708 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664)))))) (-2814 (($ $ $) NIL (-3708 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784)))))) (-2446 (($ $ $) NIL (-3708 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784)))))) (-4176 (($ |#1| |#2|) 19)) (-2120 (((-850) $) NIL (-12 (|has| |#1| (-343)) (|has| |#2| (-343))))) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 37 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))))) (-2717 (($ (-850)) NIL (-12 (|has| |#1| (-343)) (|has| |#2| (-343))))) (-4151 (((-1032) $) NIL)) (-3122 (($ $ $) NIL (-12 (|has| |#1| (-447)) (|has| |#2| (-447))))) (-1288 (($ $ $) NIL (-12 (|has| |#1| (-447)) (|has| |#2| (-447))))) (-2190 (((-792) $) 14)) (-3510 (($ $ (-522)) NIL (-12 (|has| |#1| (-447)) (|has| |#2| (-447)))) (($ $ (-708)) NIL (-3708 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664))))) (($ $ (-850)) NIL (-3708 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664)))))) (-3566 (($) 40 (-3708 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730)))) CONST)) (-3577 (($) 24 (-3708 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664)))) CONST)) (-1574 (((-108) $ $) NIL (-3708 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784)))))) (-1558 (((-108) $ $) NIL (-3708 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784)))))) (-1531 (((-108) $ $) 18)) (-1566 (((-108) $ $) NIL (-3708 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784)))))) (-1549 (((-108) $ $) 66 (-3708 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784)))))) (-1620 (($ $ $) NIL (-12 (|has| |#1| (-447)) (|has| |#2| (-447))))) (-1612 (($ $ $) 56 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 53 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-1602 (($ $ $) 43 (-3708 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730)))))) (** (($ $ (-522)) NIL (-12 (|has| |#1| (-447)) (|has| |#2| (-447)))) (($ $ (-708)) 31 (-3708 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664))))) (($ $ (-850)) NIL (-3708 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664)))))) (* (($ (-522) $) 60 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-708) $) 46 (-3708 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730))))) (($ (-850) $) NIL (-3708 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730))))) (($ $ $) 27 (-3708 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664)))))))
-(((-892 |#1| |#2|) (-13 (-1014) (-10 -8 (IF (|has| |#1| (-343)) (IF (|has| |#2| (-343)) (-6 (-343)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-664)) (IF (|has| |#2| (-664)) (-6 (-664)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-124)) (IF (|has| |#2| (-124)) (-6 (-124)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-447)) (IF (|has| |#2| (-447)) (-6 (-447)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-730)) (IF (|has| |#2| (-730)) (-6 (-730)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-784)) (IF (|has| |#2| (-784)) (-6 (-784)) |%noBranch|) |%noBranch|) (-15 -4176 ($ |#1| |#2|)) (-15 -2027 (|#1| $)) (-15 -1587 (|#2| $)))) (-1014) (-1014)) (T -892))
-((-4176 (*1 *1 *2 *3) (-12 (-5 *1 (-892 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-2027 (*1 *2 *1) (-12 (-4 *2 (-1014)) (-5 *1 (-892 *2 *3)) (-4 *3 (-1014)))) (-1587 (*1 *2 *1) (-12 (-4 *2 (-1014)) (-5 *1 (-892 *3 *2)) (-4 *3 (-1014)))))
-(-13 (-1014) (-10 -8 (IF (|has| |#1| (-343)) (IF (|has| |#2| (-343)) (-6 (-343)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-664)) (IF (|has| |#2| (-664)) (-6 (-664)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-124)) (IF (|has| |#2| (-124)) (-6 (-124)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-447)) (IF (|has| |#2| (-447)) (-6 (-447)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-730)) (IF (|has| |#2| (-730)) (-6 (-730)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-784)) (IF (|has| |#2| (-784)) (-6 (-784)) |%noBranch|) |%noBranch|) (-15 -4176 ($ |#1| |#2|)) (-15 -2027 (|#1| $)) (-15 -1587 (|#2| $))))
-((-3435 (((-1018) $) 12)) (-1931 (($ (-1085) (-1018)) 13)) (-2888 (((-1085) $) 10)) (-2190 (((-792) $) 24)))
-(((-893) (-13 (-562 (-792)) (-10 -8 (-15 -2888 ((-1085) $)) (-15 -3435 ((-1018) $)) (-15 -1931 ($ (-1085) (-1018)))))) (T -893))
-((-2888 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-893)))) (-3435 (*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-893)))) (-1931 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1018)) (-5 *1 (-893)))))
-(-13 (-562 (-792)) (-10 -8 (-15 -2888 ((-1085) $)) (-15 -3435 ((-1018) $)) (-15 -1931 ($ (-1085) (-1018)))))
-((-4090 (((-1016 (-1085)) $) 19)) (-1487 (((-108) $) 26)) (-1611 (((-1085) $) 27)) (-3389 (((-108) $) 24)) (-3502 ((|#1| $) 25)) (-4018 (((-802 $ $) $) 34)) (-1224 (((-108) $) 33)) (-3999 (($ $ $) 12)) (-2639 (($ $) 29)) (-2570 (((-108) $) 28)) (-2401 (($ $) 10)) (-1911 (((-802 $ $) $) 36)) (-1684 (((-108) $) 35)) (-3338 (($ $ $) 13)) (-1407 (((-802 $ $) $) 38)) (-3762 (((-108) $) 37)) (-4150 (($ $ $) 14)) (-2190 (($ |#1|) 7) (($ (-1085)) 9) (((-792) $) 40 (|has| |#1| (-562 (-792))))) (-1246 (((-802 $ $) $) 32)) (-2261 (((-108) $) 30)) (-4015 (($ $ $) 11)))
-(((-894 |#1|) (-13 (-895) (-10 -8 (IF (|has| |#1| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) (-15 -2190 ($ |#1|)) (-15 -2190 ($ (-1085))) (-15 -4090 ((-1016 (-1085)) $)) (-15 -3389 ((-108) $)) (-15 -3502 (|#1| $)) (-15 -1487 ((-108) $)) (-15 -1611 ((-1085) $)) (-15 -2570 ((-108) $)) (-15 -2639 ($ $)) (-15 -2261 ((-108) $)) (-15 -1246 ((-802 $ $) $)) (-15 -1224 ((-108) $)) (-15 -4018 ((-802 $ $) $)) (-15 -1684 ((-108) $)) (-15 -1911 ((-802 $ $) $)) (-15 -3762 ((-108) $)) (-15 -1407 ((-802 $ $) $)))) (-895)) (T -894))
-((-2190 (*1 *1 *2) (-12 (-5 *1 (-894 *2)) (-4 *2 (-895)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-4090 (*1 *2 *1) (-12 (-5 *2 (-1016 (-1085))) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-3389 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-3502 (*1 *2 *1) (-12 (-5 *1 (-894 *2)) (-4 *2 (-895)))) (-1487 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-1611 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-2570 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-2639 (*1 *1 *1) (-12 (-5 *1 (-894 *2)) (-4 *2 (-895)))) (-2261 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-1246 (*1 *2 *1) (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-1224 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-4018 (*1 *2 *1) (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-1684 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-1911 (*1 *2 *1) (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-3762 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-1407 (*1 *2 *1) (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
-(-13 (-895) (-10 -8 (IF (|has| |#1| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) (-15 -2190 ($ |#1|)) (-15 -2190 ($ (-1085))) (-15 -4090 ((-1016 (-1085)) $)) (-15 -3389 ((-108) $)) (-15 -3502 (|#1| $)) (-15 -1487 ((-108) $)) (-15 -1611 ((-1085) $)) (-15 -2570 ((-108) $)) (-15 -2639 ($ $)) (-15 -2261 ((-108) $)) (-15 -1246 ((-802 $ $) $)) (-15 -1224 ((-108) $)) (-15 -4018 ((-802 $ $) $)) (-15 -1684 ((-108) $)) (-15 -1911 ((-802 $ $) $)) (-15 -3762 ((-108) $)) (-15 -1407 ((-802 $ $) $))))
-((-3999 (($ $ $) 8)) (-2401 (($ $) 6)) (-3338 (($ $ $) 9)) (-4150 (($ $ $) 10)) (-4015 (($ $ $) 7)))
+((-2093 (*1 *1 *1 *2) (-12 (-5 *2 (-1007 *1)) (-4 *1 (-887)))) (-2093 (*1 *1 *1 *2) (-12 (-4 *1 (-887)) (-5 *2 (-1085)))))
+(-13 (-10 -8 (-15 -2093 ($ $ (-1085))) (-15 -2093 ($ $ (-1007 $)))))
+((-2160 (((-2 (|:| -3112 (-588 (-522))) (|:| |poly| (-588 (-1081 |#1|))) (|:| |prim| (-1081 |#1|))) (-588 (-881 |#1|)) (-588 (-1085)) (-1085)) 23) (((-2 (|:| -3112 (-588 (-522))) (|:| |poly| (-588 (-1081 |#1|))) (|:| |prim| (-1081 |#1|))) (-588 (-881 |#1|)) (-588 (-1085))) 24) (((-2 (|:| |coef1| (-522)) (|:| |coef2| (-522)) (|:| |prim| (-1081 |#1|))) (-881 |#1|) (-1085) (-881 |#1|) (-1085)) 41)))
+(((-888 |#1|) (-10 -7 (-15 -2160 ((-2 (|:| |coef1| (-522)) (|:| |coef2| (-522)) (|:| |prim| (-1081 |#1|))) (-881 |#1|) (-1085) (-881 |#1|) (-1085))) (-15 -2160 ((-2 (|:| -3112 (-588 (-522))) (|:| |poly| (-588 (-1081 |#1|))) (|:| |prim| (-1081 |#1|))) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -2160 ((-2 (|:| -3112 (-588 (-522))) (|:| |poly| (-588 (-1081 |#1|))) (|:| |prim| (-1081 |#1|))) (-588 (-881 |#1|)) (-588 (-1085)) (-1085)))) (-13 (-338) (-135))) (T -888))
+((-2160 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 (-881 *6))) (-5 *4 (-588 (-1085))) (-5 *5 (-1085)) (-4 *6 (-13 (-338) (-135))) (-5 *2 (-2 (|:| -3112 (-588 (-522))) (|:| |poly| (-588 (-1081 *6))) (|:| |prim| (-1081 *6)))) (-5 *1 (-888 *6)))) (-2160 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-588 (-1085))) (-4 *5 (-13 (-338) (-135))) (-5 *2 (-2 (|:| -3112 (-588 (-522))) (|:| |poly| (-588 (-1081 *5))) (|:| |prim| (-1081 *5)))) (-5 *1 (-888 *5)))) (-2160 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-881 *5)) (-5 *4 (-1085)) (-4 *5 (-13 (-338) (-135))) (-5 *2 (-2 (|:| |coef1| (-522)) (|:| |coef2| (-522)) (|:| |prim| (-1081 *5)))) (-5 *1 (-888 *5)))))
+(-10 -7 (-15 -2160 ((-2 (|:| |coef1| (-522)) (|:| |coef2| (-522)) (|:| |prim| (-1081 |#1|))) (-881 |#1|) (-1085) (-881 |#1|) (-1085))) (-15 -2160 ((-2 (|:| -3112 (-588 (-522))) (|:| |poly| (-588 (-1081 |#1|))) (|:| |prim| (-1081 |#1|))) (-588 (-881 |#1|)) (-588 (-1085)))) (-15 -2160 ((-2 (|:| -3112 (-588 (-522))) (|:| |poly| (-588 (-1081 |#1|))) (|:| |prim| (-1081 |#1|))) (-588 (-881 |#1|)) (-588 (-1085)) (-1085))))
+((-2807 (((-588 |#1|) |#1| |#1|) 42)) (-2725 (((-108) |#1|) 39)) (-4036 ((|#1| |#1|) 65)) (-1230 ((|#1| |#1|) 64)))
+(((-889 |#1|) (-10 -7 (-15 -2725 ((-108) |#1|)) (-15 -1230 (|#1| |#1|)) (-15 -4036 (|#1| |#1|)) (-15 -2807 ((-588 |#1|) |#1| |#1|))) (-507)) (T -889))
+((-2807 (*1 *2 *3 *3) (-12 (-5 *2 (-588 *3)) (-5 *1 (-889 *3)) (-4 *3 (-507)))) (-4036 (*1 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-507)))) (-1230 (*1 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-507)))) (-2725 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-889 *3)) (-4 *3 (-507)))))
+(-10 -7 (-15 -2725 ((-108) |#1|)) (-15 -1230 (|#1| |#1|)) (-15 -4036 (|#1| |#1|)) (-15 -2807 ((-588 |#1|) |#1| |#1|)))
+((-2100 (((-1171) (-792)) 9)))
+(((-890) (-10 -7 (-15 -2100 ((-1171) (-792))))) (T -890))
+((-2100 (*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-890)))))
+(-10 -7 (-15 -2100 ((-1171) (-792))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 63 (|has| |#1| (-514)))) (-2298 (($ $) 64 (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 28)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3241 (($ $) 24)) (-3920 (((-3 $ "failed") $) 35)) (-2883 (($ $) NIL (|has| |#1| (-426)))) (-3792 (($ $ |#1| |#2| $) 48)) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) 16)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| |#2|) NIL)) (-3564 ((|#2| $) 19)) (-1723 (($ (-1 |#2| |#2|) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3216 (($ $) 23)) (-3224 ((|#1| $) 21)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) 40)) (-3207 ((|#1| $) NIL)) (-1953 (($ $ |#2| |#1| $) 72 (-12 (|has| |#2| (-124)) (|has| |#1| (-514))))) (-2276 (((-3 $ "failed") $ $) 74 (|has| |#1| (-514))) (((-3 $ "failed") $ |#1|) 70 (|has| |#1| (-514)))) (-2487 ((|#2| $) 17)) (-2988 ((|#1| $) NIL (|has| |#1| (-426)))) (-2217 (((-792) $) NIL) (($ (-522)) 39) (($ $) NIL (|has| |#1| (-514))) (($ |#1|) 34) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ |#2|) 31)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) 15)) (-1225 (($ $ $ (-708)) 59 (|has| |#1| (-157)))) (-1407 (((-108) $ $) 69 (|has| |#1| (-514)))) (-3622 (($ $ (-850)) 55) (($ $ (-708)) 56)) (-3697 (($) 22 T CONST)) (-3709 (($) 12 T CONST)) (-1562 (((-108) $ $) 68)) (-1682 (($ $ |#1|) 75 (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) 54) (($ $ (-708)) 52)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 51) (($ $ |#1|) 50) (($ |#1| $) 49) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+(((-891 |#1| |#2|) (-13 (-301 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-514)) (IF (|has| |#2| (-124)) (-15 -1953 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4236)) (-6 -4236) |%noBranch|))) (-971) (-729)) (T -891))
+((-1953 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-891 *3 *2)) (-4 *2 (-124)) (-4 *3 (-514)) (-4 *3 (-971)) (-4 *2 (-729)))))
+(-13 (-301 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-514)) (IF (|has| |#2| (-124)) (-15 -1953 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4236)) (-6 -4236) |%noBranch|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL (-3844 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730)))))) (-1827 (($ $ $) 63 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))))) (-2265 (((-3 $ "failed") $ $) 50 (-3844 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730)))))) (-1685 (((-708)) 34 (-12 (|has| |#1| (-343)) (|has| |#2| (-343))))) (-3679 ((|#2| $) 21)) (-2371 ((|#1| $) 20)) (-3367 (($) NIL (-3844 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730)))) CONST)) (-3920 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664)))))) (-3344 (($) NIL (-12 (|has| |#1| (-343)) (|has| |#2| (-343))))) (-2859 (((-108) $) NIL (-3844 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664)))))) (-1308 (($ $ $) NIL (-3844 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784)))))) (-2524 (($ $ $) NIL (-3844 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784)))))) (-1782 (($ |#1| |#2|) 19)) (-1475 (((-850) $) NIL (-12 (|has| |#1| (-343)) (|has| |#2| (-343))))) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 37 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))))) (-2882 (($ (-850)) NIL (-12 (|has| |#1| (-343)) (|has| |#2| (-343))))) (-4174 (((-1032) $) NIL)) (-2983 (($ $ $) NIL (-12 (|has| |#1| (-447)) (|has| |#2| (-447))))) (-1596 (($ $ $) NIL (-12 (|has| |#1| (-447)) (|has| |#2| (-447))))) (-2217 (((-792) $) 14)) (-3622 (($ $ (-522)) NIL (-12 (|has| |#1| (-447)) (|has| |#2| (-447)))) (($ $ (-708)) NIL (-3844 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664))))) (($ $ (-850)) NIL (-3844 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664)))))) (-3697 (($) 40 (-3844 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730)))) CONST)) (-3709 (($) 24 (-3844 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664)))) CONST)) (-1623 (((-108) $ $) NIL (-3844 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784)))))) (-1597 (((-108) $ $) NIL (-3844 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784)))))) (-1562 (((-108) $ $) 18)) (-1609 (((-108) $ $) NIL (-3844 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784)))))) (-1587 (((-108) $ $) 66 (-3844 (-12 (|has| |#1| (-730)) (|has| |#2| (-730))) (-12 (|has| |#1| (-784)) (|has| |#2| (-784)))))) (-1682 (($ $ $) NIL (-12 (|has| |#1| (-447)) (|has| |#2| (-447))))) (-1672 (($ $ $) 56 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 53 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-1661 (($ $ $) 43 (-3844 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730)))))) (** (($ $ (-522)) NIL (-12 (|has| |#1| (-447)) (|has| |#2| (-447)))) (($ $ (-708)) 31 (-3844 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664))))) (($ $ (-850)) NIL (-3844 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664)))))) (* (($ (-522) $) 60 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-708) $) 46 (-3844 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730))))) (($ (-850) $) NIL (-3844 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-124)) (|has| |#2| (-124))) (-12 (|has| |#1| (-730)) (|has| |#2| (-730))))) (($ $ $) 27 (-3844 (-12 (|has| |#1| (-447)) (|has| |#2| (-447))) (-12 (|has| |#1| (-664)) (|has| |#2| (-664)))))))
+(((-892 |#1| |#2|) (-13 (-1014) (-10 -8 (IF (|has| |#1| (-343)) (IF (|has| |#2| (-343)) (-6 (-343)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-664)) (IF (|has| |#2| (-664)) (-6 (-664)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-124)) (IF (|has| |#2| (-124)) (-6 (-124)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-447)) (IF (|has| |#2| (-447)) (-6 (-447)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-730)) (IF (|has| |#2| (-730)) (-6 (-730)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-784)) (IF (|has| |#2| (-784)) (-6 (-784)) |%noBranch|) |%noBranch|) (-15 -1782 ($ |#1| |#2|)) (-15 -2371 (|#1| $)) (-15 -3679 (|#2| $)))) (-1014) (-1014)) (T -892))
+((-1782 (*1 *1 *2 *3) (-12 (-5 *1 (-892 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-2371 (*1 *2 *1) (-12 (-4 *2 (-1014)) (-5 *1 (-892 *2 *3)) (-4 *3 (-1014)))) (-3679 (*1 *2 *1) (-12 (-4 *2 (-1014)) (-5 *1 (-892 *3 *2)) (-4 *3 (-1014)))))
+(-13 (-1014) (-10 -8 (IF (|has| |#1| (-343)) (IF (|has| |#2| (-343)) (-6 (-343)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-664)) (IF (|has| |#2| (-664)) (-6 (-664)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-124)) (IF (|has| |#2| (-124)) (-6 (-124)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-447)) (IF (|has| |#2| (-447)) (-6 (-447)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-730)) (IF (|has| |#2| (-730)) (-6 (-730)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-784)) (IF (|has| |#2| (-784)) (-6 (-784)) |%noBranch|) |%noBranch|) (-15 -1782 ($ |#1| |#2|)) (-15 -2371 (|#1| $)) (-15 -3679 (|#2| $))))
+((-3526 (((-1018) $) 12)) (-2008 (($ (-1085) (-1018)) 13)) (-3015 (((-1085) $) 10)) (-2217 (((-792) $) 24)))
+(((-893) (-13 (-562 (-792)) (-10 -8 (-15 -3015 ((-1085) $)) (-15 -3526 ((-1018) $)) (-15 -2008 ($ (-1085) (-1018)))))) (T -893))
+((-3015 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-893)))) (-3526 (*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-893)))) (-2008 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1018)) (-5 *1 (-893)))))
+(-13 (-562 (-792)) (-10 -8 (-15 -3015 ((-1085) $)) (-15 -3526 ((-1018) $)) (-15 -2008 ($ (-1085) (-1018)))))
+((-3533 (((-1016 (-1085)) $) 19)) (-1652 (((-108) $) 26)) (-1660 (((-1085) $) 27)) (-3663 (((-108) $) 24)) (-2401 ((|#1| $) 25)) (-3802 (((-802 $ $) $) 34)) (-2171 (((-108) $) 33)) (-4070 (($ $ $) 12)) (-2462 (($ $) 29)) (-2715 (((-108) $) 28)) (-2473 (($ $) 10)) (-1242 (((-802 $ $) $) 36)) (-2772 (((-108) $) 35)) (-3444 (($ $ $) 13)) (-2122 (((-802 $ $) $) 38)) (-3195 (((-108) $) 37)) (-2820 (($ $ $) 14)) (-2217 (($ |#1|) 7) (($ (-1085)) 9) (((-792) $) 40 (|has| |#1| (-562 (-792))))) (-2424 (((-802 $ $) $) 32)) (-2063 (((-108) $) 30)) (-4079 (($ $ $) 11)))
+(((-894 |#1|) (-13 (-895) (-10 -8 (IF (|has| |#1| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) (-15 -2217 ($ |#1|)) (-15 -2217 ($ (-1085))) (-15 -3533 ((-1016 (-1085)) $)) (-15 -3663 ((-108) $)) (-15 -2401 (|#1| $)) (-15 -1652 ((-108) $)) (-15 -1660 ((-1085) $)) (-15 -2715 ((-108) $)) (-15 -2462 ($ $)) (-15 -2063 ((-108) $)) (-15 -2424 ((-802 $ $) $)) (-15 -2171 ((-108) $)) (-15 -3802 ((-802 $ $) $)) (-15 -2772 ((-108) $)) (-15 -1242 ((-802 $ $) $)) (-15 -3195 ((-108) $)) (-15 -2122 ((-802 $ $) $)))) (-895)) (T -894))
+((-2217 (*1 *1 *2) (-12 (-5 *1 (-894 *2)) (-4 *2 (-895)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-3533 (*1 *2 *1) (-12 (-5 *2 (-1016 (-1085))) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-3663 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-2401 (*1 *2 *1) (-12 (-5 *1 (-894 *2)) (-4 *2 (-895)))) (-1652 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-1660 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-2715 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-2462 (*1 *1 *1) (-12 (-5 *1 (-894 *2)) (-4 *2 (-895)))) (-2063 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-2424 (*1 *2 *1) (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-2171 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-2772 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-1242 (*1 *2 *1) (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-3195 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))) (-2122 (*1 *2 *1) (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
+(-13 (-895) (-10 -8 (IF (|has| |#1| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) (-15 -2217 ($ |#1|)) (-15 -2217 ($ (-1085))) (-15 -3533 ((-1016 (-1085)) $)) (-15 -3663 ((-108) $)) (-15 -2401 (|#1| $)) (-15 -1652 ((-108) $)) (-15 -1660 ((-1085) $)) (-15 -2715 ((-108) $)) (-15 -2462 ($ $)) (-15 -2063 ((-108) $)) (-15 -2424 ((-802 $ $) $)) (-15 -2171 ((-108) $)) (-15 -3802 ((-802 $ $) $)) (-15 -2772 ((-108) $)) (-15 -1242 ((-802 $ $) $)) (-15 -3195 ((-108) $)) (-15 -2122 ((-802 $ $) $))))
+((-4070 (($ $ $) 8)) (-2473 (($ $) 6)) (-3444 (($ $ $) 9)) (-2820 (($ $ $) 10)) (-4079 (($ $ $) 7)))
(((-895) (-1197)) (T -895))
-((-4150 (*1 *1 *1 *1) (-4 *1 (-895))) (-3338 (*1 *1 *1 *1) (-4 *1 (-895))) (-3999 (*1 *1 *1 *1) (-4 *1 (-895))) (-4015 (*1 *1 *1 *1) (-4 *1 (-895))) (-2401 (*1 *1 *1) (-4 *1 (-895))))
-(-13 (-10 -8 (-15 -2401 ($ $)) (-15 -4015 ($ $ $)) (-15 -3999 ($ $ $)) (-15 -3338 ($ $ $)) (-15 -4150 ($ $ $))))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) 8)) (-3175 (($) 7 T CONST)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-1369 (($ $ $) 43)) (-2160 (($ $ $) 44)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2446 ((|#1| $) 45)) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-2116 ((|#1| $) 39)) (-4095 (($ |#1| $) 40)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-4087 ((|#1| $) 41)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2795 (($ (-588 |#1|)) 42)) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-2820 (*1 *1 *1 *1) (-4 *1 (-895))) (-3444 (*1 *1 *1 *1) (-4 *1 (-895))) (-4070 (*1 *1 *1 *1) (-4 *1 (-895))) (-4079 (*1 *1 *1 *1) (-4 *1 (-895))) (-2473 (*1 *1 *1) (-4 *1 (-895))))
+(-13 (-10 -8 (-15 -2473 ($ $)) (-15 -4079 ($ $ $)) (-15 -4070 ($ $ $)) (-15 -3444 ($ $ $)) (-15 -2820 ($ $ $))))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) 8)) (-3367 (($) 7 T CONST)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-3557 (($ $ $) 43)) (-3164 (($ $ $) 44)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2524 ((|#1| $) 45)) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1431 ((|#1| $) 39)) (-3365 (($ |#1| $) 40)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3295 ((|#1| $) 41)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2501 (($ (-588 |#1|)) 42)) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-896 |#1|) (-1197) (-784)) (T -896))
-((-2446 (*1 *2 *1) (-12 (-4 *1 (-896 *2)) (-4 *2 (-784)))) (-2160 (*1 *1 *1 *1) (-12 (-4 *1 (-896 *2)) (-4 *2 (-784)))) (-1369 (*1 *1 *1 *1) (-12 (-4 *1 (-896 *2)) (-4 *2 (-784)))))
-(-13 (-102 |t#1|) (-10 -8 (-6 -4238) (-15 -2446 (|t#1| $)) (-15 -2160 ($ $ $)) (-15 -1369 ($ $ $))))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-2935 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2259 |#2|)) |#2| |#2|) 85)) (-3984 ((|#2| |#2| |#2|) 83)) (-2560 (((-2 (|:| |coef2| |#2|) (|:| -2259 |#2|)) |#2| |#2|) 87)) (-3373 (((-2 (|:| |coef1| |#2|) (|:| -2259 |#2|)) |#2| |#2|) 89)) (-4063 (((-2 (|:| |coef2| |#2|) (|:| -2776 |#1|)) |#2| |#2|) 107 (|has| |#1| (-426)))) (-3812 (((-2 (|:| |coef2| |#2|) (|:| -1950 |#1|)) |#2| |#2|) 46)) (-2506 (((-2 (|:| |coef2| |#2|) (|:| -1950 |#1|)) |#2| |#2|) 64)) (-2562 (((-2 (|:| |coef1| |#2|) (|:| -1950 |#1|)) |#2| |#2|) 66)) (-2696 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 78)) (-2606 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708)) 71)) (-2939 (((-2 (|:| |coef2| |#2|) (|:| -2769 |#1|)) |#2|) 97)) (-3660 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708)) 74)) (-1436 (((-588 (-708)) |#2| |#2|) 82)) (-2865 ((|#1| |#2| |#2|) 42)) (-2338 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2776 |#1|)) |#2| |#2|) 105 (|has| |#1| (-426)))) (-2776 ((|#1| |#2| |#2|) 103 (|has| |#1| (-426)))) (-2495 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1950 |#1|)) |#2| |#2|) 44)) (-3467 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1950 |#1|)) |#2| |#2|) 63)) (-1950 ((|#1| |#2| |#2|) 61)) (-1541 (((-2 (|:| -2977 |#1|) (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2|) 35)) (-1922 ((|#2| |#2| |#2| |#2| |#1|) 53)) (-1276 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 76)) (-1331 ((|#2| |#2| |#2|) 75)) (-3456 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708)) 69)) (-4114 ((|#2| |#2| |#2| (-708)) 67)) (-2259 ((|#2| |#2| |#2|) 111 (|has| |#1| (-426)))) (-2232 (((-1166 |#2|) (-1166 |#2|) |#1|) 21)) (-2752 (((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2|) 39)) (-1364 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2769 |#1|)) |#2|) 95)) (-2769 ((|#1| |#2|) 92)) (-4137 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708)) 73)) (-1238 ((|#2| |#2| |#2| (-708)) 72)) (-2226 (((-588 |#2|) |#2| |#2|) 80)) (-2952 ((|#2| |#2| |#1| |#1| (-708)) 50)) (-1978 ((|#1| |#1| |#1| (-708)) 49)) (* (((-1166 |#2|) |#1| (-1166 |#2|)) 16)))
-(((-897 |#1| |#2|) (-10 -7 (-15 -1950 (|#1| |#2| |#2|)) (-15 -3467 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1950 |#1|)) |#2| |#2|)) (-15 -2506 ((-2 (|:| |coef2| |#2|) (|:| -1950 |#1|)) |#2| |#2|)) (-15 -2562 ((-2 (|:| |coef1| |#2|) (|:| -1950 |#1|)) |#2| |#2|)) (-15 -4114 (|#2| |#2| |#2| (-708))) (-15 -3456 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -2606 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -1238 (|#2| |#2| |#2| (-708))) (-15 -4137 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -3660 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -1331 (|#2| |#2| |#2|)) (-15 -1276 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2696 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3984 (|#2| |#2| |#2|)) (-15 -2935 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2259 |#2|)) |#2| |#2|)) (-15 -2560 ((-2 (|:| |coef2| |#2|) (|:| -2259 |#2|)) |#2| |#2|)) (-15 -3373 ((-2 (|:| |coef1| |#2|) (|:| -2259 |#2|)) |#2| |#2|)) (-15 -2769 (|#1| |#2|)) (-15 -1364 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2769 |#1|)) |#2|)) (-15 -2939 ((-2 (|:| |coef2| |#2|) (|:| -2769 |#1|)) |#2|)) (-15 -2226 ((-588 |#2|) |#2| |#2|)) (-15 -1436 ((-588 (-708)) |#2| |#2|)) (IF (|has| |#1| (-426)) (PROGN (-15 -2776 (|#1| |#2| |#2|)) (-15 -2338 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2776 |#1|)) |#2| |#2|)) (-15 -4063 ((-2 (|:| |coef2| |#2|) (|:| -2776 |#1|)) |#2| |#2|)) (-15 -2259 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1166 |#2|) |#1| (-1166 |#2|))) (-15 -2232 ((-1166 |#2|) (-1166 |#2|) |#1|)) (-15 -1541 ((-2 (|:| -2977 |#1|) (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2|)) (-15 -2752 ((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2|)) (-15 -1978 (|#1| |#1| |#1| (-708))) (-15 -2952 (|#2| |#2| |#1| |#1| (-708))) (-15 -1922 (|#2| |#2| |#2| |#2| |#1|)) (-15 -2865 (|#1| |#2| |#2|)) (-15 -2495 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1950 |#1|)) |#2| |#2|)) (-15 -3812 ((-2 (|:| |coef2| |#2|) (|:| -1950 |#1|)) |#2| |#2|))) (-514) (-1142 |#1|)) (T -897))
-((-3812 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1950 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2495 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1950 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2865 (*1 *2 *3 *3) (-12 (-4 *2 (-514)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2)))) (-1922 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3)))) (-2952 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-708)) (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3)))) (-1978 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *2 (-514)) (-5 *1 (-897 *2 *4)) (-4 *4 (-1142 *2)))) (-2752 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-1541 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| -2977 *4) (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2232 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-514)) (-5 *1 (-897 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-514)) (-5 *1 (-897 *3 *4)))) (-2259 (*1 *2 *2 *2) (-12 (-4 *3 (-426)) (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3)))) (-4063 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2776 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2338 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2776 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2776 (*1 *2 *3 *3) (-12 (-4 *2 (-514)) (-4 *2 (-426)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2)))) (-1436 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 (-708))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2226 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 *3)) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2939 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2769 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-1364 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2769 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2769 (*1 *2 *3) (-12 (-4 *2 (-514)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2)))) (-3373 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2259 *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2560 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2259 *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2935 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2259 *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-3984 (*1 *2 *2 *2) (-12 (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3)))) (-2696 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-1276 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-1331 (*1 *2 *2 *2) (-12 (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3)))) (-3660 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))) (-4137 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))) (-1238 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-514)) (-5 *1 (-897 *4 *2)) (-4 *2 (-1142 *4)))) (-2606 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))) (-3456 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))) (-4114 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-514)) (-5 *1 (-897 *4 *2)) (-4 *2 (-1142 *4)))) (-2562 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1950 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2506 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1950 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-3467 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1950 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-1950 (*1 *2 *3 *3) (-12 (-4 *2 (-514)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2)))))
-(-10 -7 (-15 -1950 (|#1| |#2| |#2|)) (-15 -3467 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1950 |#1|)) |#2| |#2|)) (-15 -2506 ((-2 (|:| |coef2| |#2|) (|:| -1950 |#1|)) |#2| |#2|)) (-15 -2562 ((-2 (|:| |coef1| |#2|) (|:| -1950 |#1|)) |#2| |#2|)) (-15 -4114 (|#2| |#2| |#2| (-708))) (-15 -3456 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -2606 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -1238 (|#2| |#2| |#2| (-708))) (-15 -4137 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -3660 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -1331 (|#2| |#2| |#2|)) (-15 -1276 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2696 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3984 (|#2| |#2| |#2|)) (-15 -2935 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2259 |#2|)) |#2| |#2|)) (-15 -2560 ((-2 (|:| |coef2| |#2|) (|:| -2259 |#2|)) |#2| |#2|)) (-15 -3373 ((-2 (|:| |coef1| |#2|) (|:| -2259 |#2|)) |#2| |#2|)) (-15 -2769 (|#1| |#2|)) (-15 -1364 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2769 |#1|)) |#2|)) (-15 -2939 ((-2 (|:| |coef2| |#2|) (|:| -2769 |#1|)) |#2|)) (-15 -2226 ((-588 |#2|) |#2| |#2|)) (-15 -1436 ((-588 (-708)) |#2| |#2|)) (IF (|has| |#1| (-426)) (PROGN (-15 -2776 (|#1| |#2| |#2|)) (-15 -2338 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2776 |#1|)) |#2| |#2|)) (-15 -4063 ((-2 (|:| |coef2| |#2|) (|:| -2776 |#1|)) |#2| |#2|)) (-15 -2259 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1166 |#2|) |#1| (-1166 |#2|))) (-15 -2232 ((-1166 |#2|) (-1166 |#2|) |#1|)) (-15 -1541 ((-2 (|:| -2977 |#1|) (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2|)) (-15 -2752 ((-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) |#2| |#2|)) (-15 -1978 (|#1| |#1| |#1| (-708))) (-15 -2952 (|#2| |#2| |#1| |#1| (-708))) (-15 -1922 (|#2| |#2| |#2| |#2| |#1|)) (-15 -2865 (|#1| |#2| |#2|)) (-15 -2495 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1950 |#1|)) |#2| |#2|)) (-15 -3812 ((-2 (|:| |coef2| |#2|) (|:| -1950 |#1|)) |#2| |#2|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) 27)) (-3175 (($) NIL T CONST)) (-1247 (((-588 (-588 (-522))) (-588 (-522))) 29)) (-2151 (((-522) $) 45)) (-1918 (($ (-588 (-522))) 17)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1431 (((-588 (-522)) $) 11)) (-3122 (($ $) 32)) (-2190 (((-792) $) 43) (((-588 (-522)) $) 9)) (-3566 (($) 7 T CONST)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 20)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 19)) (-1602 (($ $ $) 21)) (* (($ (-708) $) 25) (($ (-850) $) NIL)))
-(((-898) (-13 (-732) (-563 (-588 (-522))) (-10 -8 (-15 -1918 ($ (-588 (-522)))) (-15 -1247 ((-588 (-588 (-522))) (-588 (-522)))) (-15 -2151 ((-522) $)) (-15 -3122 ($ $)) (-15 -2190 ((-588 (-522)) $))))) (T -898))
-((-1918 (*1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-898)))) (-1247 (*1 *2 *3) (-12 (-5 *2 (-588 (-588 (-522)))) (-5 *1 (-898)) (-5 *3 (-588 (-522))))) (-2151 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-898)))) (-3122 (*1 *1 *1) (-5 *1 (-898))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-898)))))
-(-13 (-732) (-563 (-588 (-522))) (-10 -8 (-15 -1918 ($ (-588 (-522)))) (-15 -1247 ((-588 (-588 (-522))) (-588 (-522)))) (-15 -2151 ((-522) $)) (-15 -3122 ($ $)) (-15 -2190 ((-588 (-522)) $))))
-((-1620 (($ $ |#2|) 30)) (-1612 (($ $) 22) (($ $ $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 15) (($ $ $) NIL) (($ $ |#2|) 20) (($ |#2| $) 19) (($ (-382 (-522)) $) 26) (($ $ (-382 (-522))) 28)))
-(((-899 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -1620 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|))) (-900 |#2| |#3| |#4|) (-971) (-729) (-784)) (T -899))
-NIL
-(-10 -8 (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -1620 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4090 (((-588 |#3|) $) 74)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2022 (($ $) 52 (|has| |#1| (-514)))) (-3739 (((-108) $) 54 (|has| |#1| (-514)))) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-3156 (($ $) 60)) (-2682 (((-3 $ "failed") $) 34)) (-3390 (((-108) $) 73)) (-2782 (((-108) $) 31)) (-3340 (((-108) $) 62)) (-4049 (($ |#1| |#2|) 61) (($ $ |#3| |#2|) 76) (($ $ (-588 |#3|) (-588 |#2|)) 75)) (-1391 (($ (-1 |#1| |#1|) $) 63)) (-3128 (($ $) 65)) (-3138 ((|#1| $) 66)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2232 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-2793 ((|#2| $) 64)) (-1522 (($ $) 72)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514))) (($ |#1|) 47 (|has| |#1| (-157)))) (-3243 ((|#1| $ |#2|) 59)) (-2143 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 53 (|has| |#1| (-514)))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#1|) 58 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
+((-2524 (*1 *2 *1) (-12 (-4 *1 (-896 *2)) (-4 *2 (-784)))) (-3164 (*1 *1 *1 *1) (-12 (-4 *1 (-896 *2)) (-4 *2 (-784)))) (-3557 (*1 *1 *1 *1) (-12 (-4 *1 (-896 *2)) (-4 *2 (-784)))))
+(-13 (-102 |t#1|) (-10 -8 (-6 -4238) (-15 -2524 (|t#1| $)) (-15 -3164 ($ $ $)) (-15 -3557 ($ $ $))))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-3665 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2308 |#2|)) |#2| |#2|) 85)) (-3485 ((|#2| |#2| |#2|) 83)) (-3781 (((-2 (|:| |coef2| |#2|) (|:| -2308 |#2|)) |#2| |#2|) 87)) (-3504 (((-2 (|:| |coef1| |#2|) (|:| -2308 |#2|)) |#2| |#2|) 89)) (-3126 (((-2 (|:| |coef2| |#2|) (|:| -1920 |#1|)) |#2| |#2|) 107 (|has| |#1| (-426)))) (-2486 (((-2 (|:| |coef2| |#2|) (|:| -2908 |#1|)) |#2| |#2|) 46)) (-2044 (((-2 (|:| |coef2| |#2|) (|:| -2908 |#1|)) |#2| |#2|) 64)) (-3803 (((-2 (|:| |coef1| |#2|) (|:| -2908 |#1|)) |#2| |#2|) 66)) (-3618 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 78)) (-2015 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708)) 71)) (-3705 (((-2 (|:| |coef2| |#2|) (|:| -1615 |#1|)) |#2|) 97)) (-1514 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708)) 74)) (-2392 (((-588 (-708)) |#2| |#2|) 82)) (-1244 ((|#1| |#2| |#2|) 42)) (-1960 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1920 |#1|)) |#2| |#2|) 105 (|has| |#1| (-426)))) (-1920 ((|#1| |#2| |#2|) 103 (|has| |#1| (-426)))) (-3918 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2908 |#1|)) |#2| |#2|) 44)) (-3256 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2908 |#1|)) |#2| |#2|) 63)) (-2908 ((|#1| |#2| |#2|) 61)) (-3370 (((-2 (|:| -3112 |#1|) (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2|) 35)) (-1328 ((|#2| |#2| |#2| |#2| |#1|) 53)) (-1483 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 76)) (-1998 ((|#2| |#2| |#2|) 75)) (-3175 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708)) 69)) (-2358 ((|#2| |#2| |#2| (-708)) 67)) (-2308 ((|#2| |#2| |#2|) 111 (|has| |#1| (-426)))) (-2276 (((-1166 |#2|) (-1166 |#2|) |#1|) 21)) (-4164 (((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2|) 39)) (-3539 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1615 |#1|)) |#2|) 95)) (-1615 ((|#1| |#2|) 92)) (-2660 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708)) 73)) (-2322 ((|#2| |#2| |#2| (-708)) 72)) (-3971 (((-588 |#2|) |#2| |#2|) 80)) (-3853 ((|#2| |#2| |#1| |#1| (-708)) 50)) (-3138 ((|#1| |#1| |#1| (-708)) 49)) (* (((-1166 |#2|) |#1| (-1166 |#2|)) 16)))
+(((-897 |#1| |#2|) (-10 -7 (-15 -2908 (|#1| |#2| |#2|)) (-15 -3256 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2908 |#1|)) |#2| |#2|)) (-15 -2044 ((-2 (|:| |coef2| |#2|) (|:| -2908 |#1|)) |#2| |#2|)) (-15 -3803 ((-2 (|:| |coef1| |#2|) (|:| -2908 |#1|)) |#2| |#2|)) (-15 -2358 (|#2| |#2| |#2| (-708))) (-15 -3175 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -2015 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -2322 (|#2| |#2| |#2| (-708))) (-15 -2660 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -1514 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -1998 (|#2| |#2| |#2|)) (-15 -1483 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3618 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3485 (|#2| |#2| |#2|)) (-15 -3665 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2308 |#2|)) |#2| |#2|)) (-15 -3781 ((-2 (|:| |coef2| |#2|) (|:| -2308 |#2|)) |#2| |#2|)) (-15 -3504 ((-2 (|:| |coef1| |#2|) (|:| -2308 |#2|)) |#2| |#2|)) (-15 -1615 (|#1| |#2|)) (-15 -3539 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1615 |#1|)) |#2|)) (-15 -3705 ((-2 (|:| |coef2| |#2|) (|:| -1615 |#1|)) |#2|)) (-15 -3971 ((-588 |#2|) |#2| |#2|)) (-15 -2392 ((-588 (-708)) |#2| |#2|)) (IF (|has| |#1| (-426)) (PROGN (-15 -1920 (|#1| |#2| |#2|)) (-15 -1960 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1920 |#1|)) |#2| |#2|)) (-15 -3126 ((-2 (|:| |coef2| |#2|) (|:| -1920 |#1|)) |#2| |#2|)) (-15 -2308 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1166 |#2|) |#1| (-1166 |#2|))) (-15 -2276 ((-1166 |#2|) (-1166 |#2|) |#1|)) (-15 -3370 ((-2 (|:| -3112 |#1|) (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2|)) (-15 -4164 ((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2|)) (-15 -3138 (|#1| |#1| |#1| (-708))) (-15 -3853 (|#2| |#2| |#1| |#1| (-708))) (-15 -1328 (|#2| |#2| |#2| |#2| |#1|)) (-15 -1244 (|#1| |#2| |#2|)) (-15 -3918 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2908 |#1|)) |#2| |#2|)) (-15 -2486 ((-2 (|:| |coef2| |#2|) (|:| -2908 |#1|)) |#2| |#2|))) (-514) (-1142 |#1|)) (T -897))
+((-2486 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2908 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-3918 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2908 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-1244 (*1 *2 *3 *3) (-12 (-4 *2 (-514)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2)))) (-1328 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3)))) (-3853 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-708)) (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3)))) (-3138 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *2 (-514)) (-5 *1 (-897 *2 *4)) (-4 *4 (-1142 *2)))) (-4164 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-3370 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| -3112 *4) (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2276 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-514)) (-5 *1 (-897 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-514)) (-5 *1 (-897 *3 *4)))) (-2308 (*1 *2 *2 *2) (-12 (-4 *3 (-426)) (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3)))) (-3126 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1920 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-1960 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1920 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-1920 (*1 *2 *3 *3) (-12 (-4 *2 (-514)) (-4 *2 (-426)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2)))) (-2392 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 (-708))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-3971 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 *3)) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-3705 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1615 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-3539 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1615 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-1615 (*1 *2 *3) (-12 (-4 *2 (-514)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2)))) (-3504 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2308 *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-3781 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2308 *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-3665 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2308 *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-3485 (*1 *2 *2 *2) (-12 (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3)))) (-3618 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-1483 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-1998 (*1 *2 *2 *2) (-12 (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3)))) (-1514 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))) (-2660 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))) (-2322 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-514)) (-5 *1 (-897 *4 *2)) (-4 *2 (-1142 *4)))) (-2015 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))) (-3175 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))) (-2358 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-514)) (-5 *1 (-897 *4 *2)) (-4 *2 (-1142 *4)))) (-3803 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2908 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2044 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2908 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-3256 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2908 *4))) (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))) (-2908 (*1 *2 *3 *3) (-12 (-4 *2 (-514)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2)))))
+(-10 -7 (-15 -2908 (|#1| |#2| |#2|)) (-15 -3256 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2908 |#1|)) |#2| |#2|)) (-15 -2044 ((-2 (|:| |coef2| |#2|) (|:| -2908 |#1|)) |#2| |#2|)) (-15 -3803 ((-2 (|:| |coef1| |#2|) (|:| -2908 |#1|)) |#2| |#2|)) (-15 -2358 (|#2| |#2| |#2| (-708))) (-15 -3175 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -2015 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -2322 (|#2| |#2| |#2| (-708))) (-15 -2660 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -1514 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-708))) (-15 -1998 (|#2| |#2| |#2|)) (-15 -1483 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3618 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3485 (|#2| |#2| |#2|)) (-15 -3665 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2308 |#2|)) |#2| |#2|)) (-15 -3781 ((-2 (|:| |coef2| |#2|) (|:| -2308 |#2|)) |#2| |#2|)) (-15 -3504 ((-2 (|:| |coef1| |#2|) (|:| -2308 |#2|)) |#2| |#2|)) (-15 -1615 (|#1| |#2|)) (-15 -3539 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1615 |#1|)) |#2|)) (-15 -3705 ((-2 (|:| |coef2| |#2|) (|:| -1615 |#1|)) |#2|)) (-15 -3971 ((-588 |#2|) |#2| |#2|)) (-15 -2392 ((-588 (-708)) |#2| |#2|)) (IF (|has| |#1| (-426)) (PROGN (-15 -1920 (|#1| |#2| |#2|)) (-15 -1960 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1920 |#1|)) |#2| |#2|)) (-15 -3126 ((-2 (|:| |coef2| |#2|) (|:| -1920 |#1|)) |#2| |#2|)) (-15 -2308 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1166 |#2|) |#1| (-1166 |#2|))) (-15 -2276 ((-1166 |#2|) (-1166 |#2|) |#1|)) (-15 -3370 ((-2 (|:| -3112 |#1|) (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2|)) (-15 -4164 ((-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) |#2| |#2|)) (-15 -3138 (|#1| |#1| |#1| (-708))) (-15 -3853 (|#2| |#2| |#1| |#1| (-708))) (-15 -1328 (|#2| |#2| |#2| |#2| |#1|)) (-15 -1244 (|#1| |#2| |#2|)) (-15 -3918 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2908 |#1|)) |#2| |#2|)) (-15 -2486 ((-2 (|:| |coef2| |#2|) (|:| -2908 |#1|)) |#2| |#2|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) 27)) (-3367 (($) NIL T CONST)) (-2438 (((-588 (-588 (-522))) (-588 (-522))) 29)) (-3109 (((-522) $) 45)) (-1292 (($ (-588 (-522))) 17)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3873 (((-588 (-522)) $) 11)) (-2983 (($ $) 32)) (-2217 (((-792) $) 43) (((-588 (-522)) $) 9)) (-3697 (($) 7 T CONST)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 20)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 19)) (-1661 (($ $ $) 21)) (* (($ (-708) $) 25) (($ (-850) $) NIL)))
+(((-898) (-13 (-732) (-563 (-588 (-522))) (-10 -8 (-15 -1292 ($ (-588 (-522)))) (-15 -2438 ((-588 (-588 (-522))) (-588 (-522)))) (-15 -3109 ((-522) $)) (-15 -2983 ($ $)) (-15 -2217 ((-588 (-522)) $))))) (T -898))
+((-1292 (*1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-898)))) (-2438 (*1 *2 *3) (-12 (-5 *2 (-588 (-588 (-522)))) (-5 *1 (-898)) (-5 *3 (-588 (-522))))) (-3109 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-898)))) (-2983 (*1 *1 *1) (-5 *1 (-898))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-898)))))
+(-13 (-732) (-563 (-588 (-522))) (-10 -8 (-15 -1292 ($ (-588 (-522)))) (-15 -2438 ((-588 (-588 (-522))) (-588 (-522)))) (-15 -3109 ((-522) $)) (-15 -2983 ($ $)) (-15 -2217 ((-588 (-522)) $))))
+((-1682 (($ $ |#2|) 30)) (-1672 (($ $) 22) (($ $ $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 15) (($ $ $) NIL) (($ $ |#2|) 20) (($ |#2| $) 19) (($ (-382 (-522)) $) 26) (($ $ (-382 (-522))) 28)))
+(((-899 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -1682 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|))) (-900 |#2| |#3| |#4|) (-971) (-729) (-784)) (T -899))
+NIL
+(-10 -8 (-15 * (|#1| |#1| (-382 (-522)))) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 -1682 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 * (|#1| (-850) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3533 (((-588 |#3|) $) 74)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2298 (($ $) 52 (|has| |#1| (-514)))) (-3007 (((-108) $) 54 (|has| |#1| (-514)))) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3241 (($ $) 60)) (-3920 (((-3 $ "failed") $) 34)) (-3672 (((-108) $) 73)) (-2859 (((-108) $) 31)) (-1374 (((-108) $) 62)) (-3500 (($ |#1| |#2|) 61) (($ $ |#3| |#2|) 76) (($ $ (-588 |#3|) (-588 |#2|)) 75)) (-3810 (($ (-1 |#1| |#1|) $) 63)) (-3216 (($ $) 65)) (-3224 ((|#1| $) 66)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2276 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-2487 ((|#2| $) 64)) (-1944 (($ $) 72)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514))) (($ |#1|) 47 (|has| |#1| (-157)))) (-1643 ((|#1| $ |#2|) 59)) (-3040 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 53 (|has| |#1| (-514)))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#1|) 58 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
(((-900 |#1| |#2| |#3|) (-1197) (-971) (-729) (-784)) (T -900))
-((-3138 (*1 *2 *1) (-12 (-4 *1 (-900 *2 *3 *4)) (-4 *3 (-729)) (-4 *4 (-784)) (-4 *2 (-971)))) (-3128 (*1 *1 *1) (-12 (-4 *1 (-900 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-729)) (-4 *4 (-784)))) (-2793 (*1 *2 *1) (-12 (-4 *1 (-900 *3 *2 *4)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *2 (-729)))) (-4049 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-900 *4 *3 *2)) (-4 *4 (-971)) (-4 *3 (-729)) (-4 *2 (-784)))) (-4049 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *6)) (-5 *3 (-588 *5)) (-4 *1 (-900 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-729)) (-4 *6 (-784)))) (-4090 (*1 *2 *1) (-12 (-4 *1 (-900 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-729)) (-4 *5 (-784)) (-5 *2 (-588 *5)))) (-3390 (*1 *2 *1) (-12 (-4 *1 (-900 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-729)) (-4 *5 (-784)) (-5 *2 (-108)))) (-1522 (*1 *1 *1) (-12 (-4 *1 (-900 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-729)) (-4 *4 (-784)))))
-(-13 (-46 |t#1| |t#2|) (-10 -8 (-15 -4049 ($ $ |t#3| |t#2|)) (-15 -4049 ($ $ (-588 |t#3|) (-588 |t#2|))) (-15 -3128 ($ $)) (-15 -3138 (|t#1| $)) (-15 -2793 (|t#2| $)) (-15 -4090 ((-588 |t#3|) $)) (-15 -3390 ((-108) $)) (-15 -1522 ($ $))))
-(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-266) |has| |#1| (-514)) ((-514) |has| |#1| (-514)) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-3821 (((-1009 (-202)) $) 8)) (-3808 (((-1009 (-202)) $) 9)) (-3794 (((-1009 (-202)) $) 10)) (-2745 (((-588 (-588 (-872 (-202)))) $) 11)) (-2190 (((-792) $) 6)))
+((-3224 (*1 *2 *1) (-12 (-4 *1 (-900 *2 *3 *4)) (-4 *3 (-729)) (-4 *4 (-784)) (-4 *2 (-971)))) (-3216 (*1 *1 *1) (-12 (-4 *1 (-900 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-729)) (-4 *4 (-784)))) (-2487 (*1 *2 *1) (-12 (-4 *1 (-900 *3 *2 *4)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *2 (-729)))) (-3500 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-900 *4 *3 *2)) (-4 *4 (-971)) (-4 *3 (-729)) (-4 *2 (-784)))) (-3500 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 *6)) (-5 *3 (-588 *5)) (-4 *1 (-900 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-729)) (-4 *6 (-784)))) (-3533 (*1 *2 *1) (-12 (-4 *1 (-900 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-729)) (-4 *5 (-784)) (-5 *2 (-588 *5)))) (-3672 (*1 *2 *1) (-12 (-4 *1 (-900 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-729)) (-4 *5 (-784)) (-5 *2 (-108)))) (-1944 (*1 *1 *1) (-12 (-4 *1 (-900 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-729)) (-4 *4 (-784)))))
+(-13 (-46 |t#1| |t#2|) (-10 -8 (-15 -3500 ($ $ |t#3| |t#2|)) (-15 -3500 ($ $ (-588 |t#3|) (-588 |t#2|))) (-15 -3216 ($ $)) (-15 -3224 (|t#1| $)) (-15 -2487 (|t#2| $)) (-15 -3533 ((-588 |t#3|) $)) (-15 -3672 ((-108) $)) (-15 -1944 ($ $))))
+(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-266) |has| |#1| (-514)) ((-514) |has| |#1| (-514)) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
+((-2380 (((-1009 (-202)) $) 8)) (-2366 (((-1009 (-202)) $) 9)) (-2351 (((-1009 (-202)) $) 10)) (-1414 (((-588 (-588 (-872 (-202)))) $) 11)) (-2217 (((-792) $) 6)))
(((-901) (-1197)) (T -901))
-((-2745 (*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-588 (-588 (-872 (-202))))))) (-3794 (*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-1009 (-202))))) (-3808 (*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-1009 (-202))))) (-3821 (*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-1009 (-202))))))
-(-13 (-562 (-792)) (-10 -8 (-15 -2745 ((-588 (-588 (-872 (-202)))) $)) (-15 -3794 ((-1009 (-202)) $)) (-15 -3808 ((-1009 (-202)) $)) (-15 -3821 ((-1009 (-202)) $))))
+((-1414 (*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-588 (-588 (-872 (-202))))))) (-2351 (*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-1009 (-202))))) (-2366 (*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-1009 (-202))))) (-2380 (*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-1009 (-202))))))
+(-13 (-562 (-792)) (-10 -8 (-15 -1414 ((-588 (-588 (-872 (-202)))) $)) (-15 -2351 ((-1009 (-202)) $)) (-15 -2366 ((-1009 (-202)) $)) (-15 -2380 ((-1009 (-202)) $))))
(((-562 (-792)) . T))
-((-4090 (((-588 |#4|) $) 23)) (-2690 (((-108) $) 48)) (-4140 (((-108) $) 47)) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |#4|) 36)) (-3639 (((-108) $) 49)) (-3982 (((-108) $ $) 55)) (-3996 (((-108) $ $) 58)) (-3538 (((-108) $) 53)) (-3050 (((-588 |#5|) (-588 |#5|) $) 90)) (-1787 (((-588 |#5|) (-588 |#5|) $) 87)) (-3421 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 81)) (-2458 (((-588 |#4|) $) 27)) (-1606 (((-108) |#4| $) 30)) (-2039 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 73)) (-2020 (($ $ |#4|) 33)) (-3606 (($ $ |#4|) 32)) (-2463 (($ $ |#4|) 34)) (-1531 (((-108) $ $) 40)))
-(((-902 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -4140 ((-108) |#1|)) (-15 -3050 ((-588 |#5|) (-588 |#5|) |#1|)) (-15 -1787 ((-588 |#5|) (-588 |#5|) |#1|)) (-15 -3421 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2039 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3639 ((-108) |#1|)) (-15 -3996 ((-108) |#1| |#1|)) (-15 -3982 ((-108) |#1| |#1|)) (-15 -3538 ((-108) |#1|)) (-15 -2690 ((-108) |#1|)) (-15 -3216 ((-2 (|:| |under| |#1|) (|:| -3686 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -2020 (|#1| |#1| |#4|)) (-15 -2463 (|#1| |#1| |#4|)) (-15 -3606 (|#1| |#1| |#4|)) (-15 -1606 ((-108) |#4| |#1|)) (-15 -2458 ((-588 |#4|) |#1|)) (-15 -4090 ((-588 |#4|) |#1|)) (-15 -1531 ((-108) |#1| |#1|))) (-903 |#2| |#3| |#4| |#5|) (-971) (-730) (-784) (-985 |#2| |#3| |#4|)) (T -902))
+((-3533 (((-588 |#4|) $) 23)) (-2161 (((-108) $) 48)) (-2702 (((-108) $) 47)) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |#4|) 36)) (-1298 (((-108) $) 49)) (-1657 (((-108) $ $) 55)) (-3598 (((-108) $ $) 58)) (-2818 (((-108) $) 53)) (-3461 (((-588 |#5|) (-588 |#5|) $) 90)) (-3668 (((-588 |#5|) (-588 |#5|) $) 87)) (-4002 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 81)) (-2714 (((-588 |#4|) $) 27)) (-3826 (((-108) |#4| $) 30)) (-2507 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 73)) (-2271 (($ $ |#4|) 33)) (-2154 (($ $ |#4|) 32)) (-2773 (($ $ |#4|) 34)) (-1562 (((-108) $ $) 40)))
+(((-902 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2702 ((-108) |#1|)) (-15 -3461 ((-588 |#5|) (-588 |#5|) |#1|)) (-15 -3668 ((-588 |#5|) (-588 |#5|) |#1|)) (-15 -4002 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2507 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -1298 ((-108) |#1|)) (-15 -3598 ((-108) |#1| |#1|)) (-15 -1657 ((-108) |#1| |#1|)) (-15 -2818 ((-108) |#1|)) (-15 -2161 ((-108) |#1|)) (-15 -3296 ((-2 (|:| |under| |#1|) (|:| -3592 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -2271 (|#1| |#1| |#4|)) (-15 -2773 (|#1| |#1| |#4|)) (-15 -2154 (|#1| |#1| |#4|)) (-15 -3826 ((-108) |#4| |#1|)) (-15 -2714 ((-588 |#4|) |#1|)) (-15 -3533 ((-588 |#4|) |#1|)) (-15 -1562 ((-108) |#1| |#1|))) (-903 |#2| |#3| |#4| |#5|) (-971) (-730) (-784) (-985 |#2| |#3| |#4|)) (T -902))
NIL
-(-10 -8 (-15 -4140 ((-108) |#1|)) (-15 -3050 ((-588 |#5|) (-588 |#5|) |#1|)) (-15 -1787 ((-588 |#5|) (-588 |#5|) |#1|)) (-15 -3421 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2039 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3639 ((-108) |#1|)) (-15 -3996 ((-108) |#1| |#1|)) (-15 -3982 ((-108) |#1| |#1|)) (-15 -3538 ((-108) |#1|)) (-15 -2690 ((-108) |#1|)) (-15 -3216 ((-2 (|:| |under| |#1|) (|:| -3686 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -2020 (|#1| |#1| |#4|)) (-15 -2463 (|#1| |#1| |#4|)) (-15 -3606 (|#1| |#1| |#4|)) (-15 -1606 ((-108) |#4| |#1|)) (-15 -2458 ((-588 |#4|) |#1|)) (-15 -4090 ((-588 |#4|) |#1|)) (-15 -1531 ((-108) |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-4090 (((-588 |#3|) $) 33)) (-2690 (((-108) $) 26)) (-4140 (((-108) $) 17 (|has| |#1| (-514)))) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |#3|) 27)) (-4141 (((-108) $ (-708)) 44)) (-1628 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4238)))) (-3175 (($) 45 T CONST)) (-3639 (((-108) $) 22 (|has| |#1| (-514)))) (-3982 (((-108) $ $) 24 (|has| |#1| (-514)))) (-3996 (((-108) $ $) 23 (|has| |#1| (-514)))) (-3538 (((-108) $) 25 (|has| |#1| (-514)))) (-3050 (((-588 |#4|) (-588 |#4|) $) 18 (|has| |#1| (-514)))) (-1787 (((-588 |#4|) (-588 |#4|) $) 19 (|has| |#1| (-514)))) (-1297 (((-3 $ "failed") (-588 |#4|)) 36)) (-1484 (($ (-588 |#4|)) 35)) (-2333 (($ $) 68 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#4| $) 67 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4238)))) (-3421 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-514)))) (-3864 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4238)))) (-3837 (((-588 |#4|) $) 52 (|has| $ (-6 -4238)))) (-1521 ((|#3| $) 34)) (-3352 (((-108) $ (-708)) 43)) (-3308 (((-588 |#4|) $) 53 (|has| $ (-6 -4238)))) (-2246 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#4| |#4|) $) 47)) (-2458 (((-588 |#3|) $) 32)) (-1606 (((-108) |#3| $) 31)) (-2720 (((-108) $ (-708)) 42)) (-2385 (((-1068) $) 9)) (-2039 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-514)))) (-4151 (((-1032) $) 10)) (-1414 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-3053 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#4|) (-588 |#4|)) 59 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) 57 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) 56 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-1536 (((-108) $ $) 38)) (-3985 (((-108) $) 41)) (-3775 (($) 40)) (-4168 (((-708) |#4| $) 54 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4238)))) (-2404 (($ $) 39)) (-1431 (((-498) $) 69 (|has| |#4| (-563 (-498))))) (-2201 (($ (-588 |#4|)) 60)) (-2020 (($ $ |#3|) 28)) (-3606 (($ $ |#3|) 30)) (-2463 (($ $ |#3|) 29)) (-2190 (((-792) $) 11) (((-588 |#4|) $) 37)) (-3648 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 6)) (-3480 (((-708) $) 46 (|has| $ (-6 -4238)))))
+(-10 -8 (-15 -2702 ((-108) |#1|)) (-15 -3461 ((-588 |#5|) (-588 |#5|) |#1|)) (-15 -3668 ((-588 |#5|) (-588 |#5|) |#1|)) (-15 -4002 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2507 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -1298 ((-108) |#1|)) (-15 -3598 ((-108) |#1| |#1|)) (-15 -1657 ((-108) |#1| |#1|)) (-15 -2818 ((-108) |#1|)) (-15 -2161 ((-108) |#1|)) (-15 -3296 ((-2 (|:| |under| |#1|) (|:| -3592 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -2271 (|#1| |#1| |#4|)) (-15 -2773 (|#1| |#1| |#4|)) (-15 -2154 (|#1| |#1| |#4|)) (-15 -3826 ((-108) |#4| |#1|)) (-15 -2714 ((-588 |#4|) |#1|)) (-15 -3533 ((-588 |#4|) |#1|)) (-15 -1562 ((-108) |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-3533 (((-588 |#3|) $) 33)) (-2161 (((-108) $) 26)) (-2702 (((-108) $) 17 (|has| |#1| (-514)))) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |#3|) 27)) (-2717 (((-108) $ (-708)) 44)) (-1696 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4238)))) (-3367 (($) 45 T CONST)) (-1298 (((-108) $) 22 (|has| |#1| (-514)))) (-1657 (((-108) $ $) 24 (|has| |#1| (-514)))) (-3598 (((-108) $ $) 23 (|has| |#1| (-514)))) (-2818 (((-108) $) 25 (|has| |#1| (-514)))) (-3461 (((-588 |#4|) (-588 |#4|) $) 18 (|has| |#1| (-514)))) (-3668 (((-588 |#4|) (-588 |#4|) $) 19 (|has| |#1| (-514)))) (-3700 (((-3 $ "failed") (-588 |#4|)) 36)) (-1478 (($ (-588 |#4|)) 35)) (-2379 (($ $) 68 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#4| $) 67 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4238)))) (-4002 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-514)))) (-2153 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4238)))) (-2395 (((-588 |#4|) $) 52 (|has| $ (-6 -4238)))) (-1933 ((|#3| $) 34)) (-1480 (((-108) $ (-708)) 43)) (-4084 (((-588 |#4|) $) 53 (|has| $ (-6 -4238)))) (-4176 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#4| |#4|) $) 47)) (-2714 (((-588 |#3|) $) 32)) (-3826 (((-108) |#3| $) 31)) (-3309 (((-108) $ (-708)) 42)) (-2311 (((-1068) $) 9)) (-2507 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-514)))) (-4174 (((-1032) $) 10)) (-2187 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-3487 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#4|) (-588 |#4|)) 59 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) 57 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) 56 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-2065 (((-108) $ $) 38)) (-3494 (((-108) $) 41)) (-3298 (($) 40)) (-4187 (((-708) |#4| $) 54 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4238)))) (-2463 (($ $) 39)) (-3873 (((-498) $) 69 (|has| |#4| (-563 (-498))))) (-2227 (($ (-588 |#4|)) 60)) (-2271 (($ $ |#3|) 28)) (-2154 (($ $ |#3|) 30)) (-2773 (($ $ |#3|) 29)) (-2217 (((-792) $) 11) (((-588 |#4|) $) 37)) (-1381 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 6)) (-3591 (((-708) $) 46 (|has| $ (-6 -4238)))))
(((-903 |#1| |#2| |#3| |#4|) (-1197) (-971) (-730) (-784) (-985 |t#1| |t#2| |t#3|)) (T -903))
-((-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *1 (-903 *3 *4 *5 *6)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *1 (-903 *3 *4 *5 *6)))) (-1521 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-985 *3 *4 *2)) (-4 *2 (-784)))) (-4090 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *5)))) (-2458 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *5)))) (-1606 (*1 *2 *3 *1) (-12 (-4 *1 (-903 *4 *5 *3 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-4 *6 (-985 *4 *5 *3)) (-5 *2 (-108)))) (-3606 (*1 *1 *1 *2) (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *5 (-985 *3 *4 *2)))) (-2463 (*1 *1 *1 *2) (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *5 (-985 *3 *4 *2)))) (-2020 (*1 *1 *1 *2) (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *5 (-985 *3 *4 *2)))) (-3216 (*1 *2 *1 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-4 *6 (-985 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -3686 *1) (|:| |upper| *1))) (-4 *1 (-903 *4 *5 *3 *6)))) (-2690 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-3538 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-5 *2 (-108)))) (-3982 (*1 *2 *1 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-5 *2 (-108)))) (-3996 (*1 *2 *1 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-5 *2 (-108)))) (-3639 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-5 *2 (-108)))) (-2039 (*1 *2 *3 *1) (-12 (-4 *1 (-903 *4 *5 *6 *3)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-4 *4 (-514)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-3421 (*1 *2 *3 *1) (-12 (-4 *1 (-903 *4 *5 *6 *3)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-4 *4 (-514)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-1787 (*1 *2 *2 *1) (-12 (-5 *2 (-588 *6)) (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)))) (-3050 (*1 *2 *2 *1) (-12 (-5 *2 (-588 *6)) (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)))) (-4140 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-5 *2 (-108)))))
-(-13 (-1014) (-139 |t#4|) (-562 (-588 |t#4|)) (-10 -8 (-6 -4238) (-15 -1297 ((-3 $ "failed") (-588 |t#4|))) (-15 -1484 ($ (-588 |t#4|))) (-15 -1521 (|t#3| $)) (-15 -4090 ((-588 |t#3|) $)) (-15 -2458 ((-588 |t#3|) $)) (-15 -1606 ((-108) |t#3| $)) (-15 -3606 ($ $ |t#3|)) (-15 -2463 ($ $ |t#3|)) (-15 -2020 ($ $ |t#3|)) (-15 -3216 ((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |t#3|)) (-15 -2690 ((-108) $)) (IF (|has| |t#1| (-514)) (PROGN (-15 -3538 ((-108) $)) (-15 -3982 ((-108) $ $)) (-15 -3996 ((-108) $ $)) (-15 -3639 ((-108) $)) (-15 -2039 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3421 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -1787 ((-588 |t#4|) (-588 |t#4|) $)) (-15 -3050 ((-588 |t#4|) (-588 |t#4|) $)) (-15 -4140 ((-108) $))) |%noBranch|)))
+((-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *1 (-903 *3 *4 *5 *6)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *1 (-903 *3 *4 *5 *6)))) (-1933 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-985 *3 *4 *2)) (-4 *2 (-784)))) (-3533 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *5)))) (-2714 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *5)))) (-3826 (*1 *2 *3 *1) (-12 (-4 *1 (-903 *4 *5 *3 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-4 *6 (-985 *4 *5 *3)) (-5 *2 (-108)))) (-2154 (*1 *1 *1 *2) (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *5 (-985 *3 *4 *2)))) (-2773 (*1 *1 *1 *2) (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *5 (-985 *3 *4 *2)))) (-2271 (*1 *1 *1 *2) (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)) (-4 *5 (-985 *3 *4 *2)))) (-3296 (*1 *2 *1 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-4 *6 (-985 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -3592 *1) (|:| |upper| *1))) (-4 *1 (-903 *4 *5 *3 *6)))) (-2161 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-2818 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-5 *2 (-108)))) (-1657 (*1 *2 *1 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-5 *2 (-108)))) (-3598 (*1 *2 *1 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-5 *2 (-108)))) (-1298 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-5 *2 (-108)))) (-2507 (*1 *2 *3 *1) (-12 (-4 *1 (-903 *4 *5 *6 *3)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-4 *4 (-514)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-4002 (*1 *2 *3 *1) (-12 (-4 *1 (-903 *4 *5 *6 *3)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-4 *4 (-514)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-3668 (*1 *2 *2 *1) (-12 (-5 *2 (-588 *6)) (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)))) (-3461 (*1 *2 *2 *1) (-12 (-5 *2 (-588 *6)) (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)))) (-2702 (*1 *2 *1) (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-5 *2 (-108)))))
+(-13 (-1014) (-139 |t#4|) (-562 (-588 |t#4|)) (-10 -8 (-6 -4238) (-15 -3700 ((-3 $ "failed") (-588 |t#4|))) (-15 -1478 ($ (-588 |t#4|))) (-15 -1933 (|t#3| $)) (-15 -3533 ((-588 |t#3|) $)) (-15 -2714 ((-588 |t#3|) $)) (-15 -3826 ((-108) |t#3| $)) (-15 -2154 ($ $ |t#3|)) (-15 -2773 ($ $ |t#3|)) (-15 -2271 ($ $ |t#3|)) (-15 -3296 ((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |t#3|)) (-15 -2161 ((-108) $)) (IF (|has| |t#1| (-514)) (PROGN (-15 -2818 ((-108) $)) (-15 -1657 ((-108) $ $)) (-15 -3598 ((-108) $ $)) (-15 -1298 ((-108) $)) (-15 -2507 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -4002 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3668 ((-588 |t#4|) (-588 |t#4|) $)) (-15 -3461 ((-588 |t#4|) (-588 |t#4|) $)) (-15 -2702 ((-108) $))) |%noBranch|)))
(((-33) . T) ((-97) . T) ((-562 (-588 |#4|)) . T) ((-562 (-792)) . T) ((-139 |#4|) . T) ((-563 (-498)) |has| |#4| (-563 (-498))) ((-285 |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))) ((-461 |#4|) . T) ((-483 |#4| |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))) ((-1014) . T) ((-1120) . T))
-((-2274 (((-588 |#4|) |#4| |#4|) 115)) (-3685 (((-588 |#4|) (-588 |#4|) (-108)) 104 (|has| |#1| (-426))) (((-588 |#4|) (-588 |#4|)) 105 (|has| |#1| (-426)))) (-2936 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|)) 35)) (-1535 (((-108) |#4|) 34)) (-3725 (((-588 |#4|) |#4|) 101 (|has| |#1| (-426)))) (-2285 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-1 (-108) |#4|) (-588 |#4|)) 20)) (-3028 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 (-1 (-108) |#4|)) (-588 |#4|)) 22)) (-3007 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 (-1 (-108) |#4|)) (-588 |#4|)) 23)) (-4166 (((-3 (-2 (|:| |bas| (-450 |#1| |#2| |#3| |#4|)) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|)) 73)) (-2378 (((-588 |#4|) (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 85)) (-2647 (((-588 |#4|) (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 108)) (-1413 (((-588 |#4|) (-588 |#4|)) 107)) (-3075 (((-588 |#4|) (-588 |#4|) (-588 |#4|) (-108)) 48) (((-588 |#4|) (-588 |#4|) (-588 |#4|)) 50)) (-1875 ((|#4| |#4| (-588 |#4|)) 49)) (-3287 (((-588 |#4|) (-588 |#4|) (-588 |#4|)) 111 (|has| |#1| (-426)))) (-2934 (((-588 |#4|) (-588 |#4|) (-588 |#4|)) 114 (|has| |#1| (-426)))) (-2087 (((-588 |#4|) (-588 |#4|) (-588 |#4|)) 113 (|has| |#1| (-426)))) (-1338 (((-588 |#4|) (-588 |#4|) (-588 |#4|) (-1 (-588 |#4|) (-588 |#4|))) 87) (((-588 |#4|) (-588 |#4|) (-588 |#4|)) 89) (((-588 |#4|) (-588 |#4|) |#4|) 118) (((-588 |#4|) |#4| |#4|) 116) (((-588 |#4|) (-588 |#4|)) 88)) (-2353 (((-588 |#4|) (-588 |#4|) (-588 |#4|)) 98 (-12 (|has| |#1| (-135)) (|has| |#1| (-283))))) (-2086 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|)) 41)) (-1208 (((-108) (-588 |#4|)) 62)) (-3368 (((-108) (-588 |#4|) (-588 (-588 |#4|))) 53)) (-2959 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|)) 29)) (-2311 (((-108) |#4|) 28)) (-3204 (((-588 |#4|) (-588 |#4|)) 97 (-12 (|has| |#1| (-135)) (|has| |#1| (-283))))) (-3411 (((-588 |#4|) (-588 |#4|)) 96 (-12 (|has| |#1| (-135)) (|has| |#1| (-283))))) (-3101 (((-588 |#4|) (-588 |#4|)) 66)) (-2366 (((-588 |#4|) (-588 |#4|)) 79)) (-2659 (((-108) (-588 |#4|) (-588 |#4|)) 51)) (-3692 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|)) 39)) (-1432 (((-108) |#4|) 36)))
-(((-904 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1338 ((-588 |#4|) (-588 |#4|))) (-15 -1338 ((-588 |#4|) |#4| |#4|)) (-15 -1413 ((-588 |#4|) (-588 |#4|))) (-15 -2274 ((-588 |#4|) |#4| |#4|)) (-15 -1338 ((-588 |#4|) (-588 |#4|) |#4|)) (-15 -1338 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -1338 ((-588 |#4|) (-588 |#4|) (-588 |#4|) (-1 (-588 |#4|) (-588 |#4|)))) (-15 -2659 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -3368 ((-108) (-588 |#4|) (-588 (-588 |#4|)))) (-15 -1208 ((-108) (-588 |#4|))) (-15 -2285 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-1 (-108) |#4|) (-588 |#4|))) (-15 -3028 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 (-1 (-108) |#4|)) (-588 |#4|))) (-15 -3007 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 (-1 (-108) |#4|)) (-588 |#4|))) (-15 -2086 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -1535 ((-108) |#4|)) (-15 -2936 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -2311 ((-108) |#4|)) (-15 -2959 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -1432 ((-108) |#4|)) (-15 -3692 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -3075 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -3075 ((-588 |#4|) (-588 |#4|) (-588 |#4|) (-108))) (-15 -1875 (|#4| |#4| (-588 |#4|))) (-15 -3101 ((-588 |#4|) (-588 |#4|))) (-15 -4166 ((-3 (-2 (|:| |bas| (-450 |#1| |#2| |#3| |#4|)) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|))) (-15 -2366 ((-588 |#4|) (-588 |#4|))) (-15 -2378 ((-588 |#4|) (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2647 ((-588 |#4|) (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-426)) (PROGN (-15 -3725 ((-588 |#4|) |#4|)) (-15 -3685 ((-588 |#4|) (-588 |#4|))) (-15 -3685 ((-588 |#4|) (-588 |#4|) (-108))) (-15 -3287 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -2087 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -2934 ((-588 |#4|) (-588 |#4|) (-588 |#4|)))) |%noBranch|) (IF (|has| |#1| (-283)) (IF (|has| |#1| (-135)) (PROGN (-15 -3411 ((-588 |#4|) (-588 |#4|))) (-15 -3204 ((-588 |#4|) (-588 |#4|))) (-15 -2353 ((-588 |#4|) (-588 |#4|) (-588 |#4|)))) |%noBranch|) |%noBranch|)) (-514) (-730) (-784) (-985 |#1| |#2| |#3|)) (T -904))
-((-2353 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-135)) (-4 *3 (-283)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3204 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-135)) (-4 *3 (-283)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3411 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-135)) (-4 *3 (-283)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-2934 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-2087 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3287 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3685 (*1 *2 *2 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-108)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *7)))) (-3685 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3725 (*1 *2 *3) (-12 (-4 *4 (-426)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *3)) (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))) (-2647 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-588 *8)) (-5 *3 (-1 (-108) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-904 *5 *6 *7 *8)))) (-2378 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-588 *9)) (-5 *3 (-1 (-108) *9)) (-5 *4 (-1 (-108) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-985 *6 *7 *8)) (-4 *6 (-514)) (-4 *7 (-730)) (-4 *8 (-784)) (-5 *1 (-904 *6 *7 *8 *9)))) (-2366 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-4166 (*1 *2 *3) (|partial| -12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-450 *4 *5 *6 *7)) (|:| -1355 (-588 *7)))) (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-3101 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-1875 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *2)))) (-3075 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-108)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *7)))) (-3075 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3692 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7)))) (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-1432 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))) (-2959 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7)))) (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-2311 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))) (-2936 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7)))) (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-1535 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))) (-2086 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7)))) (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-3007 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-1 (-108) *8))) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-2 (|:| |goodPols| (-588 *8)) (|:| |badPols| (-588 *8)))) (-5 *1 (-904 *5 *6 *7 *8)) (-5 *4 (-588 *8)))) (-3028 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-1 (-108) *8))) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-2 (|:| |goodPols| (-588 *8)) (|:| |badPols| (-588 *8)))) (-5 *1 (-904 *5 *6 *7 *8)) (-5 *4 (-588 *8)))) (-2285 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-108) *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-2 (|:| |goodPols| (-588 *8)) (|:| |badPols| (-588 *8)))) (-5 *1 (-904 *5 *6 *7 *8)) (-5 *4 (-588 *8)))) (-1208 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-904 *4 *5 *6 *7)))) (-3368 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-588 *8))) (-5 *3 (-588 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-108)) (-5 *1 (-904 *5 *6 *7 *8)))) (-2659 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-904 *4 *5 *6 *7)))) (-1338 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-588 *7) (-588 *7))) (-5 *2 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *7)))) (-1338 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-1338 (*1 *2 *2 *3) (-12 (-5 *2 (-588 *3)) (-4 *3 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *3)))) (-2274 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *3)) (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))) (-1413 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-1338 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *3)) (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))) (-1338 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))))
-(-10 -7 (-15 -1338 ((-588 |#4|) (-588 |#4|))) (-15 -1338 ((-588 |#4|) |#4| |#4|)) (-15 -1413 ((-588 |#4|) (-588 |#4|))) (-15 -2274 ((-588 |#4|) |#4| |#4|)) (-15 -1338 ((-588 |#4|) (-588 |#4|) |#4|)) (-15 -1338 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -1338 ((-588 |#4|) (-588 |#4|) (-588 |#4|) (-1 (-588 |#4|) (-588 |#4|)))) (-15 -2659 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -3368 ((-108) (-588 |#4|) (-588 (-588 |#4|)))) (-15 -1208 ((-108) (-588 |#4|))) (-15 -2285 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-1 (-108) |#4|) (-588 |#4|))) (-15 -3028 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 (-1 (-108) |#4|)) (-588 |#4|))) (-15 -3007 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 (-1 (-108) |#4|)) (-588 |#4|))) (-15 -2086 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -1535 ((-108) |#4|)) (-15 -2936 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -2311 ((-108) |#4|)) (-15 -2959 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -1432 ((-108) |#4|)) (-15 -3692 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -3075 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -3075 ((-588 |#4|) (-588 |#4|) (-588 |#4|) (-108))) (-15 -1875 (|#4| |#4| (-588 |#4|))) (-15 -3101 ((-588 |#4|) (-588 |#4|))) (-15 -4166 ((-3 (-2 (|:| |bas| (-450 |#1| |#2| |#3| |#4|)) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|))) (-15 -2366 ((-588 |#4|) (-588 |#4|))) (-15 -2378 ((-588 |#4|) (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2647 ((-588 |#4|) (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-426)) (PROGN (-15 -3725 ((-588 |#4|) |#4|)) (-15 -3685 ((-588 |#4|) (-588 |#4|))) (-15 -3685 ((-588 |#4|) (-588 |#4|) (-108))) (-15 -3287 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -2087 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -2934 ((-588 |#4|) (-588 |#4|) (-588 |#4|)))) |%noBranch|) (IF (|has| |#1| (-283)) (IF (|has| |#1| (-135)) (PROGN (-15 -3411 ((-588 |#4|) (-588 |#4|))) (-15 -3204 ((-588 |#4|) (-588 |#4|))) (-15 -2353 ((-588 |#4|) (-588 |#4|) (-588 |#4|)))) |%noBranch|) |%noBranch|))
-((-3904 (((-2 (|:| R (-628 |#1|)) (|:| A (-628 |#1|)) (|:| |Ainv| (-628 |#1|))) (-628 |#1|) (-94 |#1|) (-1 |#1| |#1|)) 19)) (-3029 (((-588 (-2 (|:| C (-628 |#1|)) (|:| |g| (-1166 |#1|)))) (-628 |#1|) (-1166 |#1|)) 36)) (-1387 (((-628 |#1|) (-628 |#1|) (-628 |#1|) (-94 |#1|) (-1 |#1| |#1|)) 16)))
-(((-905 |#1|) (-10 -7 (-15 -3904 ((-2 (|:| R (-628 |#1|)) (|:| A (-628 |#1|)) (|:| |Ainv| (-628 |#1|))) (-628 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -1387 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -3029 ((-588 (-2 (|:| C (-628 |#1|)) (|:| |g| (-1166 |#1|)))) (-628 |#1|) (-1166 |#1|)))) (-338)) (T -905))
-((-3029 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-5 *2 (-588 (-2 (|:| C (-628 *5)) (|:| |g| (-1166 *5))))) (-5 *1 (-905 *5)) (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)))) (-1387 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-628 *5)) (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-338)) (-5 *1 (-905 *5)))) (-3904 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-94 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-338)) (-5 *2 (-2 (|:| R (-628 *6)) (|:| A (-628 *6)) (|:| |Ainv| (-628 *6)))) (-5 *1 (-905 *6)) (-5 *3 (-628 *6)))))
-(-10 -7 (-15 -3904 ((-2 (|:| R (-628 |#1|)) (|:| A (-628 |#1|)) (|:| |Ainv| (-628 |#1|))) (-628 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -1387 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -3029 ((-588 (-2 (|:| C (-628 |#1|)) (|:| |g| (-1166 |#1|)))) (-628 |#1|) (-1166 |#1|))))
-((-3450 (((-393 |#4|) |#4|) 47)))
-(((-906 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3450 ((-393 |#4|) |#4|))) (-784) (-730) (-426) (-878 |#3| |#2| |#1|)) (T -906))
-((-3450 (*1 *2 *3) (-12 (-4 *4 (-784)) (-4 *5 (-730)) (-4 *6 (-426)) (-5 *2 (-393 *3)) (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-878 *6 *5 *4)))))
-(-10 -7 (-15 -3450 ((-393 |#4|) |#4|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3483 (($ (-708)) 112 (|has| |#1| (-23)))) (-2679 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-784)))) (-3537 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4239))) (($ $) 88 (-12 (|has| |#1| (-784)) (|has| $ (-6 -4239))))) (-3216 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-784)))) (-4141 (((-108) $ (-708)) 8)) (-2379 ((|#1| $ (-522) |#1|) 52 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 58 (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-3509 (($ $) 90 (|has| $ (-6 -4239)))) (-1862 (($ $) 100)) (-2333 (($ $) 78 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#1| $) 77 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) 51)) (-3238 (((-522) (-1 (-108) |#1|) $) 97) (((-522) |#1| $) 96 (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) 95 (|has| |#1| (-1014)))) (-2736 (($ (-588 |#1|)) 118)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3957 (((-628 |#1|) $ $) 105 (|has| |#1| (-971)))) (-1811 (($ (-708) |#1|) 69)) (-3352 (((-108) $ (-708)) 9)) (-1359 (((-522) $) 43 (|has| (-522) (-784)))) (-2814 (($ $ $) 87 (|has| |#1| (-784)))) (-2160 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 44 (|has| (-522) (-784)))) (-2446 (($ $ $) 86 (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2845 ((|#1| $) 102 (-12 (|has| |#1| (-971)) (|has| |#1| (-928))))) (-2720 (((-108) $ (-708)) 10)) (-2517 ((|#1| $) 103 (-12 (|has| |#1| (-971)) (|has| |#1| (-928))))) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1661 (($ |#1| $ (-522)) 60) (($ $ $ (-522)) 59)) (-3604 (((-588 (-522)) $) 46)) (-1405 (((-108) (-522) $) 47)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2294 ((|#1| $) 42 (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-2602 (($ $ |#1|) 41 (|has| $ (-6 -4239)))) (-3719 (($ $ (-588 |#1|)) 115)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) 48)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ (-522) |#1|) 50) ((|#1| $ (-522)) 49) (($ $ (-1133 (-522))) 63)) (-1883 ((|#1| $ $) 106 (|has| |#1| (-971)))) (-4078 (((-850) $) 117)) (-3696 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-3230 (($ $ $) 104)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1577 (($ $ $ (-522)) 91 (|has| $ (-6 -4239)))) (-2404 (($ $) 13)) (-1431 (((-498) $) 79 (|has| |#1| (-563 (-498)))) (($ (-588 |#1|)) 116)) (-2201 (($ (-588 |#1|)) 70)) (-4165 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) 84 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 83 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-1566 (((-108) $ $) 85 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 82 (|has| |#1| (-784)))) (-1612 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-1602 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-522) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-664))) (($ $ |#1|) 107 (|has| |#1| (-664)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-2222 (((-588 |#4|) |#4| |#4|) 115)) (-3580 (((-588 |#4|) (-588 |#4|) (-108)) 104 (|has| |#1| (-426))) (((-588 |#4|) (-588 |#4|)) 105 (|has| |#1| (-426)))) (-3674 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|)) 35)) (-2056 (((-108) |#4|) 34)) (-3987 (((-588 |#4|) |#4|) 101 (|has| |#1| (-426)))) (-2427 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-1 (-108) |#4|) (-588 |#4|)) 20)) (-1411 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 (-1 (-108) |#4|)) (-588 |#4|)) 22)) (-1215 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 (-1 (-108) |#4|)) (-588 |#4|)) 23)) (-2926 (((-3 (-2 (|:| |bas| (-450 |#1| |#2| |#3| |#4|)) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|)) 73)) (-1265 (((-588 |#4|) (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 85)) (-1677 (((-588 |#4|) (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 108)) (-2177 (((-588 |#4|) (-588 |#4|)) 107)) (-3669 (((-588 |#4|) (-588 |#4|) (-588 |#4|) (-108)) 48) (((-588 |#4|) (-588 |#4|) (-588 |#4|)) 50)) (-2802 ((|#4| |#4| (-588 |#4|)) 49)) (-2042 (((-588 |#4|) (-588 |#4|) (-588 |#4|)) 111 (|has| |#1| (-426)))) (-3654 (((-588 |#4|) (-588 |#4|) (-588 |#4|)) 114 (|has| |#1| (-426)))) (-4175 (((-588 |#4|) (-588 |#4|) (-588 |#4|)) 113 (|has| |#1| (-426)))) (-3325 (((-588 |#4|) (-588 |#4|) (-588 |#4|) (-1 (-588 |#4|) (-588 |#4|))) 87) (((-588 |#4|) (-588 |#4|) (-588 |#4|)) 89) (((-588 |#4|) (-588 |#4|) |#4|) 118) (((-588 |#4|) |#4| |#4|) 116) (((-588 |#4|) (-588 |#4|)) 88)) (-1735 (((-588 |#4|) (-588 |#4|) (-588 |#4|)) 98 (-12 (|has| |#1| (-135)) (|has| |#1| (-283))))) (-4163 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|)) 41)) (-1812 (((-108) (-588 |#4|)) 62)) (-3465 (((-108) (-588 |#4|) (-588 (-588 |#4|))) 53)) (-3902 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|)) 29)) (-2390 (((-108) |#4|) 28)) (-2472 (((-588 |#4|) (-588 |#4|)) 97 (-12 (|has| |#1| (-135)) (|has| |#1| (-283))))) (-3888 (((-588 |#4|) (-588 |#4|)) 96 (-12 (|has| |#1| (-135)) (|has| |#1| (-283))))) (-3919 (((-588 |#4|) (-588 |#4|)) 66)) (-3939 (((-588 |#4|) (-588 |#4|)) 79)) (-1804 (((-108) (-588 |#4|) (-588 |#4|)) 51)) (-3660 (((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|)) 39)) (-2346 (((-108) |#4|) 36)))
+(((-904 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3325 ((-588 |#4|) (-588 |#4|))) (-15 -3325 ((-588 |#4|) |#4| |#4|)) (-15 -2177 ((-588 |#4|) (-588 |#4|))) (-15 -2222 ((-588 |#4|) |#4| |#4|)) (-15 -3325 ((-588 |#4|) (-588 |#4|) |#4|)) (-15 -3325 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -3325 ((-588 |#4|) (-588 |#4|) (-588 |#4|) (-1 (-588 |#4|) (-588 |#4|)))) (-15 -1804 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -3465 ((-108) (-588 |#4|) (-588 (-588 |#4|)))) (-15 -1812 ((-108) (-588 |#4|))) (-15 -2427 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-1 (-108) |#4|) (-588 |#4|))) (-15 -1411 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 (-1 (-108) |#4|)) (-588 |#4|))) (-15 -1215 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 (-1 (-108) |#4|)) (-588 |#4|))) (-15 -4163 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -2056 ((-108) |#4|)) (-15 -3674 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -2390 ((-108) |#4|)) (-15 -3902 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -2346 ((-108) |#4|)) (-15 -3660 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -3669 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -3669 ((-588 |#4|) (-588 |#4|) (-588 |#4|) (-108))) (-15 -2802 (|#4| |#4| (-588 |#4|))) (-15 -3919 ((-588 |#4|) (-588 |#4|))) (-15 -2926 ((-3 (-2 (|:| |bas| (-450 |#1| |#2| |#3| |#4|)) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|))) (-15 -3939 ((-588 |#4|) (-588 |#4|))) (-15 -1265 ((-588 |#4|) (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1677 ((-588 |#4|) (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-426)) (PROGN (-15 -3987 ((-588 |#4|) |#4|)) (-15 -3580 ((-588 |#4|) (-588 |#4|))) (-15 -3580 ((-588 |#4|) (-588 |#4|) (-108))) (-15 -2042 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -4175 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -3654 ((-588 |#4|) (-588 |#4|) (-588 |#4|)))) |%noBranch|) (IF (|has| |#1| (-283)) (IF (|has| |#1| (-135)) (PROGN (-15 -3888 ((-588 |#4|) (-588 |#4|))) (-15 -2472 ((-588 |#4|) (-588 |#4|))) (-15 -1735 ((-588 |#4|) (-588 |#4|) (-588 |#4|)))) |%noBranch|) |%noBranch|)) (-514) (-730) (-784) (-985 |#1| |#2| |#3|)) (T -904))
+((-1735 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-135)) (-4 *3 (-283)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-2472 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-135)) (-4 *3 (-283)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3888 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-135)) (-4 *3 (-283)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3654 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-4175 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-2042 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3580 (*1 *2 *2 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-108)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *7)))) (-3580 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3987 (*1 *2 *3) (-12 (-4 *4 (-426)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *3)) (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))) (-1677 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-588 *8)) (-5 *3 (-1 (-108) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-904 *5 *6 *7 *8)))) (-1265 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-588 *9)) (-5 *3 (-1 (-108) *9)) (-5 *4 (-1 (-108) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-985 *6 *7 *8)) (-4 *6 (-514)) (-4 *7 (-730)) (-4 *8 (-784)) (-5 *1 (-904 *6 *7 *8 *9)))) (-3939 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-2926 (*1 *2 *3) (|partial| -12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-450 *4 *5 *6 *7)) (|:| -1322 (-588 *7)))) (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-3919 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-2802 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *2)))) (-3669 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-588 *7)) (-5 *3 (-108)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *7)))) (-3669 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3660 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7)))) (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-2346 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))) (-3902 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7)))) (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-2390 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))) (-3674 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7)))) (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-2056 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))) (-4163 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7)))) (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))) (-1215 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-1 (-108) *8))) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-2 (|:| |goodPols| (-588 *8)) (|:| |badPols| (-588 *8)))) (-5 *1 (-904 *5 *6 *7 *8)) (-5 *4 (-588 *8)))) (-1411 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-1 (-108) *8))) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-2 (|:| |goodPols| (-588 *8)) (|:| |badPols| (-588 *8)))) (-5 *1 (-904 *5 *6 *7 *8)) (-5 *4 (-588 *8)))) (-2427 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-108) *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-2 (|:| |goodPols| (-588 *8)) (|:| |badPols| (-588 *8)))) (-5 *1 (-904 *5 *6 *7 *8)) (-5 *4 (-588 *8)))) (-1812 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-904 *4 *5 *6 *7)))) (-3465 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-588 *8))) (-5 *3 (-588 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-108)) (-5 *1 (-904 *5 *6 *7 *8)))) (-1804 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-904 *4 *5 *6 *7)))) (-3325 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-588 *7) (-588 *7))) (-5 *2 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *7)))) (-3325 (*1 *2 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3325 (*1 *2 *2 *3) (-12 (-5 *2 (-588 *3)) (-4 *3 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *3)))) (-2222 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *3)) (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))) (-2177 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))) (-3325 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *3)) (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))) (-3325 (*1 *2 *2) (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))))
+(-10 -7 (-15 -3325 ((-588 |#4|) (-588 |#4|))) (-15 -3325 ((-588 |#4|) |#4| |#4|)) (-15 -2177 ((-588 |#4|) (-588 |#4|))) (-15 -2222 ((-588 |#4|) |#4| |#4|)) (-15 -3325 ((-588 |#4|) (-588 |#4|) |#4|)) (-15 -3325 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -3325 ((-588 |#4|) (-588 |#4|) (-588 |#4|) (-1 (-588 |#4|) (-588 |#4|)))) (-15 -1804 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -3465 ((-108) (-588 |#4|) (-588 (-588 |#4|)))) (-15 -1812 ((-108) (-588 |#4|))) (-15 -2427 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-1 (-108) |#4|) (-588 |#4|))) (-15 -1411 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 (-1 (-108) |#4|)) (-588 |#4|))) (-15 -1215 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 (-1 (-108) |#4|)) (-588 |#4|))) (-15 -4163 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -2056 ((-108) |#4|)) (-15 -3674 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -2390 ((-108) |#4|)) (-15 -3902 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -2346 ((-108) |#4|)) (-15 -3660 ((-2 (|:| |goodPols| (-588 |#4|)) (|:| |badPols| (-588 |#4|))) (-588 |#4|))) (-15 -3669 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -3669 ((-588 |#4|) (-588 |#4|) (-588 |#4|) (-108))) (-15 -2802 (|#4| |#4| (-588 |#4|))) (-15 -3919 ((-588 |#4|) (-588 |#4|))) (-15 -2926 ((-3 (-2 (|:| |bas| (-450 |#1| |#2| |#3| |#4|)) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|))) (-15 -3939 ((-588 |#4|) (-588 |#4|))) (-15 -1265 ((-588 |#4|) (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1677 ((-588 |#4|) (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-426)) (PROGN (-15 -3987 ((-588 |#4|) |#4|)) (-15 -3580 ((-588 |#4|) (-588 |#4|))) (-15 -3580 ((-588 |#4|) (-588 |#4|) (-108))) (-15 -2042 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -4175 ((-588 |#4|) (-588 |#4|) (-588 |#4|))) (-15 -3654 ((-588 |#4|) (-588 |#4|) (-588 |#4|)))) |%noBranch|) (IF (|has| |#1| (-283)) (IF (|has| |#1| (-135)) (PROGN (-15 -3888 ((-588 |#4|) (-588 |#4|))) (-15 -2472 ((-588 |#4|) (-588 |#4|))) (-15 -1735 ((-588 |#4|) (-588 |#4|) (-588 |#4|)))) |%noBranch|) |%noBranch|))
+((-2068 (((-2 (|:| R (-628 |#1|)) (|:| A (-628 |#1|)) (|:| |Ainv| (-628 |#1|))) (-628 |#1|) (-94 |#1|) (-1 |#1| |#1|)) 19)) (-1421 (((-588 (-2 (|:| C (-628 |#1|)) (|:| |g| (-1166 |#1|)))) (-628 |#1|) (-1166 |#1|)) 36)) (-3719 (((-628 |#1|) (-628 |#1|) (-628 |#1|) (-94 |#1|) (-1 |#1| |#1|)) 16)))
+(((-905 |#1|) (-10 -7 (-15 -2068 ((-2 (|:| R (-628 |#1|)) (|:| A (-628 |#1|)) (|:| |Ainv| (-628 |#1|))) (-628 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -3719 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -1421 ((-588 (-2 (|:| C (-628 |#1|)) (|:| |g| (-1166 |#1|)))) (-628 |#1|) (-1166 |#1|)))) (-338)) (T -905))
+((-1421 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-5 *2 (-588 (-2 (|:| C (-628 *5)) (|:| |g| (-1166 *5))))) (-5 *1 (-905 *5)) (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)))) (-3719 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-628 *5)) (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-338)) (-5 *1 (-905 *5)))) (-2068 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-94 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-338)) (-5 *2 (-2 (|:| R (-628 *6)) (|:| A (-628 *6)) (|:| |Ainv| (-628 *6)))) (-5 *1 (-905 *6)) (-5 *3 (-628 *6)))))
+(-10 -7 (-15 -2068 ((-2 (|:| R (-628 |#1|)) (|:| A (-628 |#1|)) (|:| |Ainv| (-628 |#1|))) (-628 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -3719 ((-628 |#1|) (-628 |#1|) (-628 |#1|) (-94 |#1|) (-1 |#1| |#1|))) (-15 -1421 ((-588 (-2 (|:| C (-628 |#1|)) (|:| |g| (-1166 |#1|)))) (-628 |#1|) (-1166 |#1|))))
+((-3133 (((-393 |#4|) |#4|) 47)))
+(((-906 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3133 ((-393 |#4|) |#4|))) (-784) (-730) (-426) (-878 |#3| |#2| |#1|)) (T -906))
+((-3133 (*1 *2 *3) (-12 (-4 *4 (-784)) (-4 *5 (-730)) (-4 *6 (-426)) (-5 *2 (-393 *3)) (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-878 *6 *5 *4)))))
+(-10 -7 (-15 -3133 ((-393 |#4|) |#4|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-1785 (($ (-708)) 112 (|has| |#1| (-23)))) (-3883 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-784)))) (-2806 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4239))) (($ $) 88 (-12 (|has| |#1| (-784)) (|has| $ (-6 -4239))))) (-3296 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-784)))) (-2717 (((-108) $ (-708)) 8)) (-2437 ((|#1| $ (-522) |#1|) 52 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 58 (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-2465 (($ $) 90 (|has| $ (-6 -4239)))) (-1939 (($ $) 100)) (-2379 (($ $) 78 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#1| $) 77 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) 51)) (-3314 (((-522) (-1 (-108) |#1|) $) 97) (((-522) |#1| $) 96 (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) 95 (|has| |#1| (-1014)))) (-1239 (($ (-588 |#1|)) 118)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-4043 (((-628 |#1|) $ $) 105 (|has| |#1| (-971)))) (-1893 (($ (-708) |#1|) 69)) (-1480 (((-108) $ (-708)) 9)) (-3496 (((-522) $) 43 (|has| (-522) (-784)))) (-1308 (($ $ $) 87 (|has| |#1| (-784)))) (-3164 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 44 (|has| (-522) (-784)))) (-2524 (($ $ $) 86 (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4113 ((|#1| $) 102 (-12 (|has| |#1| (-971)) (|has| |#1| (-928))))) (-3309 (((-108) $ (-708)) 10)) (-4030 ((|#1| $) 103 (-12 (|has| |#1| (-971)) (|has| |#1| (-928))))) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1731 (($ |#1| $ (-522)) 60) (($ $ $ (-522)) 59)) (-2130 (((-588 (-522)) $) 46)) (-2103 (((-108) (-522) $) 47)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2337 ((|#1| $) 42 (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-1972 (($ $ |#1|) 41 (|has| $ (-6 -4239)))) (-3934 (($ $ (-588 |#1|)) 115)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) 48)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ (-522) |#1|) 50) ((|#1| $ (-522)) 49) (($ $ (-1133 (-522))) 63)) (-4024 ((|#1| $ $) 106 (|has| |#1| (-971)))) (-3222 (((-850) $) 117)) (-3835 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-2791 (($ $ $) 104)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3629 (($ $ $ (-522)) 91 (|has| $ (-6 -4239)))) (-2463 (($ $) 13)) (-3873 (((-498) $) 79 (|has| |#1| (-563 (-498)))) (($ (-588 |#1|)) 116)) (-2227 (($ (-588 |#1|)) 70)) (-4170 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) 84 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 83 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-1609 (((-108) $ $) 85 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 82 (|has| |#1| (-784)))) (-1672 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-1661 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-522) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-664))) (($ $ |#1|) 107 (|has| |#1| (-664)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-907 |#1|) (-1197) (-971)) (T -907))
-((-2736 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-971)) (-4 *1 (-907 *3)))) (-4078 (*1 *2 *1) (-12 (-4 *1 (-907 *3)) (-4 *3 (-971)) (-5 *2 (-850)))) (-1431 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-971)) (-4 *1 (-907 *3)))) (-3230 (*1 *1 *1 *1) (-12 (-4 *1 (-907 *2)) (-4 *2 (-971)))) (-3719 (*1 *1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *1 (-907 *3)) (-4 *3 (-971)))))
-(-13 (-1164 |t#1|) (-10 -8 (-15 -2736 ($ (-588 |t#1|))) (-15 -4078 ((-850) $)) (-15 -1431 ($ (-588 |t#1|))) (-15 -3230 ($ $ $)) (-15 -3719 ($ $ (-588 |t#1|)))))
-(((-33) . T) ((-97) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-348 |#1|) . T) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-19 |#1|) . T) ((-784) |has| |#1| (-784)) ((-1014) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-1120) . T) ((-1164 |#1|) . T))
-((-1391 (((-872 |#2|) (-1 |#2| |#1|) (-872 |#1|)) 17)))
-(((-908 |#1| |#2|) (-10 -7 (-15 -1391 ((-872 |#2|) (-1 |#2| |#1|) (-872 |#1|)))) (-971) (-971)) (T -908))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-872 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-5 *2 (-872 *6)) (-5 *1 (-908 *5 *6)))))
-(-10 -7 (-15 -1391 ((-872 |#2|) (-1 |#2| |#1|) (-872 |#1|))))
-((-3791 ((|#1| (-872 |#1|)) 13)) (-2428 ((|#1| (-872 |#1|)) 12)) (-2555 ((|#1| (-872 |#1|)) 11)) (-3125 ((|#1| (-872 |#1|)) 15)) (-3455 ((|#1| (-872 |#1|)) 21)) (-3578 ((|#1| (-872 |#1|)) 14)) (-1692 ((|#1| (-872 |#1|)) 16)) (-3912 ((|#1| (-872 |#1|)) 20)) (-2395 ((|#1| (-872 |#1|)) 19)))
-(((-909 |#1|) (-10 -7 (-15 -2555 (|#1| (-872 |#1|))) (-15 -2428 (|#1| (-872 |#1|))) (-15 -3791 (|#1| (-872 |#1|))) (-15 -3578 (|#1| (-872 |#1|))) (-15 -3125 (|#1| (-872 |#1|))) (-15 -1692 (|#1| (-872 |#1|))) (-15 -2395 (|#1| (-872 |#1|))) (-15 -3912 (|#1| (-872 |#1|))) (-15 -3455 (|#1| (-872 |#1|)))) (-971)) (T -909))
-((-3455 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-3912 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-2395 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-1692 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-3125 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-3578 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-3791 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-2428 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-2555 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
-(-10 -7 (-15 -2555 (|#1| (-872 |#1|))) (-15 -2428 (|#1| (-872 |#1|))) (-15 -3791 (|#1| (-872 |#1|))) (-15 -3578 (|#1| (-872 |#1|))) (-15 -3125 (|#1| (-872 |#1|))) (-15 -1692 (|#1| (-872 |#1|))) (-15 -2395 (|#1| (-872 |#1|))) (-15 -3912 (|#1| (-872 |#1|))) (-15 -3455 (|#1| (-872 |#1|))))
-((-3967 (((-3 |#1| "failed") |#1|) 18)) (-2435 (((-3 |#1| "failed") |#1|) 6)) (-2063 (((-3 |#1| "failed") |#1|) 16)) (-3801 (((-3 |#1| "failed") |#1|) 4)) (-2623 (((-3 |#1| "failed") |#1|) 20)) (-2974 (((-3 |#1| "failed") |#1|) 8)) (-2192 (((-3 |#1| "failed") |#1| (-708)) 1)) (-3618 (((-3 |#1| "failed") |#1|) 3)) (-4108 (((-3 |#1| "failed") |#1|) 2)) (-1696 (((-3 |#1| "failed") |#1|) 21)) (-3200 (((-3 |#1| "failed") |#1|) 9)) (-3803 (((-3 |#1| "failed") |#1|) 19)) (-1672 (((-3 |#1| "failed") |#1|) 7)) (-2145 (((-3 |#1| "failed") |#1|) 17)) (-1898 (((-3 |#1| "failed") |#1|) 5)) (-2954 (((-3 |#1| "failed") |#1|) 24)) (-3146 (((-3 |#1| "failed") |#1|) 12)) (-2579 (((-3 |#1| "failed") |#1|) 22)) (-3644 (((-3 |#1| "failed") |#1|) 10)) (-1623 (((-3 |#1| "failed") |#1|) 26)) (-2415 (((-3 |#1| "failed") |#1|) 14)) (-3294 (((-3 |#1| "failed") |#1|) 27)) (-3286 (((-3 |#1| "failed") |#1|) 15)) (-3471 (((-3 |#1| "failed") |#1|) 25)) (-1834 (((-3 |#1| "failed") |#1|) 13)) (-1415 (((-3 |#1| "failed") |#1|) 23)) (-1239 (((-3 |#1| "failed") |#1|) 11)))
+((-1239 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-971)) (-4 *1 (-907 *3)))) (-3222 (*1 *2 *1) (-12 (-4 *1 (-907 *3)) (-4 *3 (-971)) (-5 *2 (-850)))) (-3873 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-971)) (-4 *1 (-907 *3)))) (-2791 (*1 *1 *1 *1) (-12 (-4 *1 (-907 *2)) (-4 *2 (-971)))) (-3934 (*1 *1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *1 (-907 *3)) (-4 *3 (-971)))))
+(-13 (-1164 |t#1|) (-10 -8 (-15 -1239 ($ (-588 |t#1|))) (-15 -3222 ((-850) $)) (-15 -3873 ($ (-588 |t#1|))) (-15 -2791 ($ $ $)) (-15 -3934 ($ $ (-588 |t#1|)))))
+(((-33) . T) ((-97) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-348 |#1|) . T) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-19 |#1|) . T) ((-784) |has| |#1| (-784)) ((-1014) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-1120) . T) ((-1164 |#1|) . T))
+((-3810 (((-872 |#2|) (-1 |#2| |#1|) (-872 |#1|)) 17)))
+(((-908 |#1| |#2|) (-10 -7 (-15 -3810 ((-872 |#2|) (-1 |#2| |#1|) (-872 |#1|)))) (-971) (-971)) (T -908))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-872 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-5 *2 (-872 *6)) (-5 *1 (-908 *5 *6)))))
+(-10 -7 (-15 -3810 ((-872 |#2|) (-1 |#2| |#1|) (-872 |#1|))))
+((-2250 ((|#1| (-872 |#1|)) 13)) (-3323 ((|#1| (-872 |#1|)) 12)) (-3727 ((|#1| (-872 |#1|)) 11)) (-3005 ((|#1| (-872 |#1|)) 15)) (-3167 ((|#1| (-872 |#1|)) 21)) (-1918 ((|#1| (-872 |#1|)) 14)) (-4006 ((|#1| (-872 |#1|)) 16)) (-2137 ((|#1| (-872 |#1|)) 20)) (-1344 ((|#1| (-872 |#1|)) 19)))
+(((-909 |#1|) (-10 -7 (-15 -3727 (|#1| (-872 |#1|))) (-15 -3323 (|#1| (-872 |#1|))) (-15 -2250 (|#1| (-872 |#1|))) (-15 -1918 (|#1| (-872 |#1|))) (-15 -3005 (|#1| (-872 |#1|))) (-15 -4006 (|#1| (-872 |#1|))) (-15 -1344 (|#1| (-872 |#1|))) (-15 -2137 (|#1| (-872 |#1|))) (-15 -3167 (|#1| (-872 |#1|)))) (-971)) (T -909))
+((-3167 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-2137 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-1344 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-4006 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-3005 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-1918 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-2250 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-3323 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))) (-3727 (*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
+(-10 -7 (-15 -3727 (|#1| (-872 |#1|))) (-15 -3323 (|#1| (-872 |#1|))) (-15 -2250 (|#1| (-872 |#1|))) (-15 -1918 (|#1| (-872 |#1|))) (-15 -3005 (|#1| (-872 |#1|))) (-15 -4006 (|#1| (-872 |#1|))) (-15 -1344 (|#1| (-872 |#1|))) (-15 -2137 (|#1| (-872 |#1|))) (-15 -3167 (|#1| (-872 |#1|))))
+((-1509 (((-3 |#1| "failed") |#1|) 18)) (-3380 (((-3 |#1| "failed") |#1|) 6)) (-2808 (((-3 |#1| "failed") |#1|) 16)) (-2364 (((-3 |#1| "failed") |#1|) 4)) (-1737 (((-3 |#1| "failed") |#1|) 20)) (-4026 (((-3 |#1| "failed") |#1|) 8)) (-3417 (((-3 |#1| "failed") |#1| (-708)) 1)) (-4117 (((-3 |#1| "failed") |#1|) 3)) (-3466 (((-3 |#1| "failed") |#1|) 2)) (-4037 (((-3 |#1| "failed") |#1|) 21)) (-2434 (((-3 |#1| "failed") |#1|) 9)) (-2378 (((-3 |#1| "failed") |#1|) 19)) (-2642 (((-3 |#1| "failed") |#1|) 7)) (-3063 (((-3 |#1| "failed") |#1|) 17)) (-4143 (((-3 |#1| "failed") |#1|) 5)) (-3877 (((-3 |#1| "failed") |#1|) 24)) (-3161 (((-3 |#1| "failed") |#1|) 12)) (-2657 (((-3 |#1| "failed") |#1|) 22)) (-1338 (((-3 |#1| "failed") |#1|) 10)) (-2129 (((-3 |#1| "failed") |#1|) 26)) (-2239 (((-3 |#1| "failed") |#1|) 14)) (-2105 (((-3 |#1| "failed") |#1|) 27)) (-2032 (((-3 |#1| "failed") |#1|) 15)) (-3293 (((-3 |#1| "failed") |#1|) 25)) (-2304 (((-3 |#1| "failed") |#1|) 13)) (-2194 (((-3 |#1| "failed") |#1|) 23)) (-2339 (((-3 |#1| "failed") |#1|) 11)))
(((-910 |#1|) (-1197) (-1106)) (T -910))
-((-3294 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-1623 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3471 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2954 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-1415 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2579 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-1696 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2623 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3803 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3967 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2145 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2063 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3286 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2415 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-1834 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3146 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-1239 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3644 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3200 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2974 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-1672 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2435 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-1898 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3801 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3618 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-4108 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2192 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-708)) (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(-13 (-10 -7 (-15 -2192 ((-3 |t#1| "failed") |t#1| (-708))) (-15 -4108 ((-3 |t#1| "failed") |t#1|)) (-15 -3618 ((-3 |t#1| "failed") |t#1|)) (-15 -3801 ((-3 |t#1| "failed") |t#1|)) (-15 -1898 ((-3 |t#1| "failed") |t#1|)) (-15 -2435 ((-3 |t#1| "failed") |t#1|)) (-15 -1672 ((-3 |t#1| "failed") |t#1|)) (-15 -2974 ((-3 |t#1| "failed") |t#1|)) (-15 -3200 ((-3 |t#1| "failed") |t#1|)) (-15 -3644 ((-3 |t#1| "failed") |t#1|)) (-15 -1239 ((-3 |t#1| "failed") |t#1|)) (-15 -3146 ((-3 |t#1| "failed") |t#1|)) (-15 -1834 ((-3 |t#1| "failed") |t#1|)) (-15 -2415 ((-3 |t#1| "failed") |t#1|)) (-15 -3286 ((-3 |t#1| "failed") |t#1|)) (-15 -2063 ((-3 |t#1| "failed") |t#1|)) (-15 -2145 ((-3 |t#1| "failed") |t#1|)) (-15 -3967 ((-3 |t#1| "failed") |t#1|)) (-15 -3803 ((-3 |t#1| "failed") |t#1|)) (-15 -2623 ((-3 |t#1| "failed") |t#1|)) (-15 -1696 ((-3 |t#1| "failed") |t#1|)) (-15 -2579 ((-3 |t#1| "failed") |t#1|)) (-15 -1415 ((-3 |t#1| "failed") |t#1|)) (-15 -2954 ((-3 |t#1| "failed") |t#1|)) (-15 -3471 ((-3 |t#1| "failed") |t#1|)) (-15 -1623 ((-3 |t#1| "failed") |t#1|)) (-15 -3294 ((-3 |t#1| "failed") |t#1|))))
-((-4146 ((|#4| |#4| (-588 |#3|)) 56) ((|#4| |#4| |#3|) 55)) (-1864 ((|#4| |#4| (-588 |#3|)) 23) ((|#4| |#4| |#3|) 19)) (-1391 ((|#4| (-1 |#4| (-881 |#1|)) |#4|) 30)))
-(((-911 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1864 (|#4| |#4| |#3|)) (-15 -1864 (|#4| |#4| (-588 |#3|))) (-15 -4146 (|#4| |#4| |#3|)) (-15 -4146 (|#4| |#4| (-588 |#3|))) (-15 -1391 (|#4| (-1 |#4| (-881 |#1|)) |#4|))) (-971) (-730) (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $)) (-15 -1611 ((-3 $ "failed") (-1085))))) (-878 (-881 |#1|) |#2| |#3|)) (T -911))
-((-1391 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-881 *4))) (-4 *4 (-971)) (-4 *2 (-878 (-881 *4) *5 *6)) (-4 *5 (-730)) (-4 *6 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $)) (-15 -1611 ((-3 $ "failed") (-1085)))))) (-5 *1 (-911 *4 *5 *6 *2)))) (-4146 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *6)) (-4 *6 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $)) (-15 -1611 ((-3 $ "failed") (-1085)))))) (-4 *4 (-971)) (-4 *5 (-730)) (-5 *1 (-911 *4 *5 *6 *2)) (-4 *2 (-878 (-881 *4) *5 *6)))) (-4146 (*1 *2 *2 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $)) (-15 -1611 ((-3 $ "failed") (-1085)))))) (-5 *1 (-911 *4 *5 *3 *2)) (-4 *2 (-878 (-881 *4) *5 *3)))) (-1864 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *6)) (-4 *6 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $)) (-15 -1611 ((-3 $ "failed") (-1085)))))) (-4 *4 (-971)) (-4 *5 (-730)) (-5 *1 (-911 *4 *5 *6 *2)) (-4 *2 (-878 (-881 *4) *5 *6)))) (-1864 (*1 *2 *2 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $)) (-15 -1611 ((-3 $ "failed") (-1085)))))) (-5 *1 (-911 *4 *5 *3 *2)) (-4 *2 (-878 (-881 *4) *5 *3)))))
-(-10 -7 (-15 -1864 (|#4| |#4| |#3|)) (-15 -1864 (|#4| |#4| (-588 |#3|))) (-15 -4146 (|#4| |#4| |#3|)) (-15 -4146 (|#4| |#4| (-588 |#3|))) (-15 -1391 (|#4| (-1 |#4| (-881 |#1|)) |#4|)))
-((-3675 ((|#2| |#3|) 34)) (-3784 (((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) |#2|) 71)) (-3882 (((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) 86)))
-(((-912 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3882 ((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))))) (-15 -3784 ((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) |#2|)) (-15 -3675 (|#2| |#3|))) (-324) (-1142 |#1|) (-1142 |#2|) (-662 |#2| |#3|)) (T -912))
-((-3675 (*1 *2 *3) (-12 (-4 *3 (-1142 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-912 *4 *2 *3 *5)) (-4 *4 (-324)) (-4 *5 (-662 *2 *3)))) (-3784 (*1 *2 *3) (-12 (-4 *4 (-324)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 *3)) (-5 *2 (-2 (|:| -3855 (-628 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-628 *3)))) (-5 *1 (-912 *4 *3 *5 *6)) (-4 *6 (-662 *3 *5)))) (-3882 (*1 *2) (-12 (-4 *3 (-324)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| -3855 (-628 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-628 *4)))) (-5 *1 (-912 *3 *4 *5 *6)) (-4 *6 (-662 *4 *5)))))
-(-10 -7 (-15 -3882 ((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))))) (-15 -3784 ((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) |#2|)) (-15 -3675 (|#2| |#3|)))
-((-3374 (((-914 (-382 (-522)) (-794 |#1|) (-217 |#2| (-708)) (-224 |#1| (-382 (-522)))) (-914 (-382 (-522)) (-794 |#1|) (-217 |#2| (-708)) (-224 |#1| (-382 (-522))))) 65)))
-(((-913 |#1| |#2|) (-10 -7 (-15 -3374 ((-914 (-382 (-522)) (-794 |#1|) (-217 |#2| (-708)) (-224 |#1| (-382 (-522)))) (-914 (-382 (-522)) (-794 |#1|) (-217 |#2| (-708)) (-224 |#1| (-382 (-522))))))) (-588 (-1085)) (-708)) (T -913))
-((-3374 (*1 *2 *2) (-12 (-5 *2 (-914 (-382 (-522)) (-794 *3) (-217 *4 (-708)) (-224 *3 (-382 (-522))))) (-14 *3 (-588 (-1085))) (-14 *4 (-708)) (-5 *1 (-913 *3 *4)))))
-(-10 -7 (-15 -3374 ((-914 (-382 (-522)) (-794 |#1|) (-217 |#2| (-708)) (-224 |#1| (-382 (-522)))) (-914 (-382 (-522)) (-794 |#1|) (-217 |#2| (-708)) (-224 |#1| (-382 (-522)))))))
-((-1416 (((-108) $ $) NIL)) (-2831 (((-3 (-108) "failed") $) 67)) (-3245 (($ $) 35 (-12 (|has| |#1| (-135)) (|has| |#1| (-283))))) (-2867 (($ $ (-3 (-108) "failed")) 68)) (-1850 (($ (-588 |#4|) |#4|) 24)) (-2385 (((-1068) $) NIL)) (-2542 (($ $) 65)) (-4151 (((-1032) $) NIL)) (-3985 (((-108) $) 66)) (-3775 (($) 29)) (-1994 ((|#4| $) 70)) (-1361 (((-588 |#4|) $) 69)) (-2190 (((-792) $) 64)) (-1531 (((-108) $ $) NIL)))
-(((-914 |#1| |#2| |#3| |#4|) (-13 (-1014) (-562 (-792)) (-10 -8 (-15 -3775 ($)) (-15 -1850 ($ (-588 |#4|) |#4|)) (-15 -2831 ((-3 (-108) "failed") $)) (-15 -2867 ($ $ (-3 (-108) "failed"))) (-15 -3985 ((-108) $)) (-15 -1361 ((-588 |#4|) $)) (-15 -1994 (|#4| $)) (-15 -2542 ($ $)) (IF (|has| |#1| (-283)) (IF (|has| |#1| (-135)) (-15 -3245 ($ $)) |%noBranch|) |%noBranch|))) (-426) (-784) (-730) (-878 |#1| |#3| |#2|)) (T -914))
-((-3775 (*1 *1) (-12 (-4 *2 (-426)) (-4 *3 (-784)) (-4 *4 (-730)) (-5 *1 (-914 *2 *3 *4 *5)) (-4 *5 (-878 *2 *4 *3)))) (-1850 (*1 *1 *2 *3) (-12 (-5 *2 (-588 *3)) (-4 *3 (-878 *4 *6 *5)) (-4 *4 (-426)) (-4 *5 (-784)) (-4 *6 (-730)) (-5 *1 (-914 *4 *5 *6 *3)))) (-2831 (*1 *2 *1) (|partial| -12 (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)) (-5 *2 (-108)) (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4)))) (-2867 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-108) "failed")) (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)) (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4)))) (-3985 (*1 *2 *1) (-12 (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)) (-5 *2 (-108)) (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4)))) (-1361 (*1 *2 *1) (-12 (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)) (-5 *2 (-588 *6)) (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4)))) (-1994 (*1 *2 *1) (-12 (-4 *2 (-878 *3 *5 *4)) (-5 *1 (-914 *3 *4 *5 *2)) (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)))) (-2542 (*1 *1 *1) (-12 (-4 *2 (-426)) (-4 *3 (-784)) (-4 *4 (-730)) (-5 *1 (-914 *2 *3 *4 *5)) (-4 *5 (-878 *2 *4 *3)))) (-3245 (*1 *1 *1) (-12 (-4 *2 (-135)) (-4 *2 (-283)) (-4 *2 (-426)) (-4 *3 (-784)) (-4 *4 (-730)) (-5 *1 (-914 *2 *3 *4 *5)) (-4 *5 (-878 *2 *4 *3)))))
-(-13 (-1014) (-562 (-792)) (-10 -8 (-15 -3775 ($)) (-15 -1850 ($ (-588 |#4|) |#4|)) (-15 -2831 ((-3 (-108) "failed") $)) (-15 -2867 ($ $ (-3 (-108) "failed"))) (-15 -3985 ((-108) $)) (-15 -1361 ((-588 |#4|) $)) (-15 -1994 (|#4| $)) (-15 -2542 ($ $)) (IF (|has| |#1| (-283)) (IF (|has| |#1| (-135)) (-15 -3245 ($ $)) |%noBranch|) |%noBranch|)))
-((-3407 (((-108) |#5| |#5|) 38)) (-3753 (((-108) |#5| |#5|) 52)) (-1215 (((-108) |#5| (-588 |#5|)) 74) (((-108) |#5| |#5|) 61)) (-3027 (((-108) (-588 |#4|) (-588 |#4|)) 58)) (-3909 (((-108) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) 63)) (-3020 (((-1171)) 33)) (-4041 (((-1171) (-1068) (-1068) (-1068)) 29)) (-1523 (((-588 |#5|) (-588 |#5|)) 81)) (-3742 (((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)))) 79)) (-2025 (((-588 (-2 (|:| -3197 (-588 |#4|)) (|:| -1886 |#5|) (|:| |ineq| (-588 |#4|)))) (-588 |#4|) (-588 |#5|) (-108) (-108)) 101)) (-3441 (((-108) |#5| |#5|) 47)) (-2291 (((-3 (-108) "failed") |#5| |#5|) 71)) (-2075 (((-108) (-588 |#4|) (-588 |#4|)) 57)) (-3370 (((-108) (-588 |#4|) (-588 |#4|)) 59)) (-2123 (((-108) (-588 |#4|) (-588 |#4|)) 60)) (-2492 (((-3 (-2 (|:| -3197 (-588 |#4|)) (|:| -1886 |#5|) (|:| |ineq| (-588 |#4|))) "failed") (-588 |#4|) |#5| (-588 |#4|) (-108) (-108) (-108) (-108) (-108)) 97)) (-2069 (((-588 |#5|) (-588 |#5|)) 43)))
-(((-915 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4041 ((-1171) (-1068) (-1068) (-1068))) (-15 -3020 ((-1171))) (-15 -3407 ((-108) |#5| |#5|)) (-15 -2069 ((-588 |#5|) (-588 |#5|))) (-15 -3441 ((-108) |#5| |#5|)) (-15 -3753 ((-108) |#5| |#5|)) (-15 -3027 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2075 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -3370 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2123 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2291 ((-3 (-108) "failed") |#5| |#5|)) (-15 -1215 ((-108) |#5| |#5|)) (-15 -1215 ((-108) |#5| (-588 |#5|))) (-15 -1523 ((-588 |#5|) (-588 |#5|))) (-15 -3909 ((-108) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)))) (-15 -3742 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) (-15 -2025 ((-588 (-2 (|:| -3197 (-588 |#4|)) (|:| -1886 |#5|) (|:| |ineq| (-588 |#4|)))) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -2492 ((-3 (-2 (|:| -3197 (-588 |#4|)) (|:| -1886 |#5|) (|:| |ineq| (-588 |#4|))) "failed") (-588 |#4|) |#5| (-588 |#4|) (-108) (-108) (-108) (-108) (-108)))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|)) (T -915))
-((-2492 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| -3197 (-588 *9)) (|:| -1886 *4) (|:| |ineq| (-588 *9)))) (-5 *1 (-915 *6 *7 *8 *9 *4)) (-5 *3 (-588 *9)) (-4 *4 (-990 *6 *7 *8 *9)))) (-2025 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-588 *10)) (-5 *5 (-108)) (-4 *10 (-990 *6 *7 *8 *9)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8)) (-5 *2 (-588 (-2 (|:| -3197 (-588 *9)) (|:| -1886 *10) (|:| |ineq| (-588 *9))))) (-5 *1 (-915 *6 *7 *8 *9 *10)) (-5 *3 (-588 *9)))) (-3742 (*1 *2 *2) (-12 (-5 *2 (-588 (-2 (|:| |val| (-588 *6)) (|:| -1886 *7)))) (-4 *6 (-985 *3 *4 *5)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-915 *3 *4 *5 *6 *7)))) (-3909 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1886 *8))) (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-990 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *8)))) (-1523 (*1 *2 *2) (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *1 (-915 *3 *4 *5 *6 *7)))) (-1215 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-915 *5 *6 *7 *8 *3)))) (-1215 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-2291 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-2123 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-3370 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-2075 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-3027 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-3753 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-3441 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-2069 (*1 *2 *2) (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *1 (-915 *3 *4 *5 *6 *7)))) (-3407 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-3020 (*1 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171)) (-5 *1 (-915 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))) (-4041 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171)) (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
-(-10 -7 (-15 -4041 ((-1171) (-1068) (-1068) (-1068))) (-15 -3020 ((-1171))) (-15 -3407 ((-108) |#5| |#5|)) (-15 -2069 ((-588 |#5|) (-588 |#5|))) (-15 -3441 ((-108) |#5| |#5|)) (-15 -3753 ((-108) |#5| |#5|)) (-15 -3027 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2075 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -3370 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2123 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2291 ((-3 (-108) "failed") |#5| |#5|)) (-15 -1215 ((-108) |#5| |#5|)) (-15 -1215 ((-108) |#5| (-588 |#5|))) (-15 -1523 ((-588 |#5|) (-588 |#5|))) (-15 -3909 ((-108) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)))) (-15 -3742 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) (-15 -2025 ((-588 (-2 (|:| -3197 (-588 |#4|)) (|:| -1886 |#5|) (|:| |ineq| (-588 |#4|)))) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -2492 ((-3 (-2 (|:| -3197 (-588 |#4|)) (|:| -1886 |#5|) (|:| |ineq| (-588 |#4|))) "failed") (-588 |#4|) |#5| (-588 |#4|) (-108) (-108) (-108) (-108) (-108))))
-((-1611 (((-1085) $) 15)) (-3435 (((-1068) $) 16)) (-1607 (($ (-1085) (-1068)) 14)) (-2190 (((-792) $) 13)))
-(((-916) (-13 (-562 (-792)) (-10 -8 (-15 -1607 ($ (-1085) (-1068))) (-15 -1611 ((-1085) $)) (-15 -3435 ((-1068) $))))) (T -916))
-((-1607 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1068)) (-5 *1 (-916)))) (-1611 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-916)))) (-3435 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-916)))))
-(-13 (-562 (-792)) (-10 -8 (-15 -1607 ($ (-1085) (-1068))) (-15 -1611 ((-1085) $)) (-15 -3435 ((-1068) $))))
-((-1391 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
-(((-917 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1391 (|#4| (-1 |#2| |#1|) |#3|))) (-514) (-514) (-919 |#1|) (-919 |#2|)) (T -917))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-514)) (-4 *6 (-514)) (-4 *2 (-919 *6)) (-5 *1 (-917 *5 *6 *4 *2)) (-4 *4 (-919 *5)))))
-(-10 -7 (-15 -1391 (|#4| (-1 |#2| |#1|) |#3|)))
-((-1297 (((-3 |#2| "failed") $) NIL) (((-3 (-1085) "failed") $) 65) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 (-522) "failed") $) 95)) (-1484 ((|#2| $) NIL) (((-1085) $) 60) (((-382 (-522)) $) NIL) (((-522) $) 92)) (-2096 (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) 112) (((-628 |#2|) (-628 $)) 28)) (-3255 (($) 98)) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 74) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 83)) (-2902 (($ $) 10)) (-3004 (((-3 $ "failed") $) 20)) (-1391 (($ (-1 |#2| |#2|) $) 22)) (-3802 (($) 16)) (-3933 (($ $) 54)) (-2157 (($ $) NIL) (($ $ (-708)) NIL) (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-3533 (($ $) 12)) (-1431 (((-821 (-522)) $) 69) (((-821 (-354)) $) 78) (((-498) $) 40) (((-354) $) 44) (((-202) $) 47)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) 90) (($ |#2|) NIL) (($ (-1085)) 57)) (-2323 (((-708)) 31)) (-1549 (((-108) $ $) 50)))
-(((-918 |#1| |#2|) (-10 -8 (-15 -1549 ((-108) |#1| |#1|)) (-15 -3802 (|#1|)) (-15 -3004 ((-3 |#1| "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1431 ((-202) |#1|)) (-15 -1431 ((-354) |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -1484 ((-1085) |#1|)) (-15 -1297 ((-3 (-1085) "failed") |#1|)) (-15 -2190 (|#1| (-1085))) (-15 -3255 (|#1|)) (-15 -3933 (|#1| |#1|)) (-15 -3533 (|#1| |#1|)) (-15 -2902 (|#1| |#1|)) (-15 -4011 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -4011 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -1431 ((-821 (-354)) |#1|)) (-15 -1431 ((-821 (-522)) |#1|)) (-15 -2096 ((-628 |#2|) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-628 (-522)) (-628 |#1|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 (|#1| |#1|)) (-15 -2190 (|#1| (-522))) (-15 -2323 ((-708))) (-15 -2190 ((-792) |#1|))) (-919 |#2|) (-514)) (T -918))
-((-2323 (*1 *2) (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-918 *3 *4)) (-4 *3 (-919 *4)))))
-(-10 -8 (-15 -1549 ((-108) |#1| |#1|)) (-15 -3802 (|#1|)) (-15 -3004 ((-3 |#1| "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1431 ((-202) |#1|)) (-15 -1431 ((-354) |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -1484 ((-1085) |#1|)) (-15 -1297 ((-3 (-1085) "failed") |#1|)) (-15 -2190 (|#1| (-1085))) (-15 -3255 (|#1|)) (-15 -3933 (|#1| |#1|)) (-15 -3533 (|#1| |#1|)) (-15 -2902 (|#1| |#1|)) (-15 -4011 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -4011 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -1431 ((-821 (-354)) |#1|)) (-15 -1431 ((-821 (-522)) |#1|)) (-15 -2096 ((-628 |#2|) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-628 (-522)) (-628 |#1|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 (|#1| |#1|)) (-15 -2190 (|#1| (-522))) (-15 -2323 ((-708))) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2229 ((|#1| $) 139 (|has| |#1| (-283)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-1565 (((-393 (-1081 $)) (-1081 $)) 130 (|has| |#1| (-838)))) (-3119 (($ $) 73)) (-3450 (((-393 $) $) 72)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 133 (|has| |#1| (-838)))) (-1687 (((-108) $ $) 59)) (-1341 (((-522) $) 120 (|has| |#1| (-757)))) (-3175 (($) 17 T CONST)) (-1297 (((-3 |#1| "failed") $) 178) (((-3 (-1085) "failed") $) 128 (|has| |#1| (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) 112 (|has| |#1| (-962 (-522)))) (((-3 (-522) "failed") $) 110 (|has| |#1| (-962 (-522))))) (-1484 ((|#1| $) 177) (((-1085) $) 127 (|has| |#1| (-962 (-1085)))) (((-382 (-522)) $) 111 (|has| |#1| (-962 (-522)))) (((-522) $) 109 (|has| |#1| (-962 (-522))))) (-2277 (($ $ $) 55)) (-2096 (((-628 (-522)) (-628 $)) 152 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 151 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 150) (((-628 |#1|) (-628 $)) 149)) (-2682 (((-3 $ "failed") $) 34)) (-3255 (($) 137 (|has| |#1| (-507)))) (-2254 (($ $ $) 56)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-2813 (((-108) $) 71)) (-3687 (((-108) $) 122 (|has| |#1| (-757)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 146 (|has| |#1| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 145 (|has| |#1| (-815 (-354))))) (-2782 (((-108) $) 31)) (-2902 (($ $) 141)) (-2805 ((|#1| $) 143)) (-3004 (((-3 $ "failed") $) 108 (|has| |#1| (-1061)))) (-2556 (((-108) $) 121 (|has| |#1| (-757)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2814 (($ $ $) 118 (|has| |#1| (-784)))) (-2446 (($ $ $) 117 (|has| |#1| (-784)))) (-1391 (($ (-1 |#1| |#1|) $) 169)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 70)) (-3802 (($) 107 (|has| |#1| (-1061)) CONST)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-3933 (($ $) 138 (|has| |#1| (-283)))) (-3686 ((|#1| $) 135 (|has| |#1| (-507)))) (-3729 (((-393 (-1081 $)) (-1081 $)) 132 (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) 131 (|has| |#1| (-838)))) (-1916 (((-393 $) $) 74)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-2289 (($ $ (-588 |#1|) (-588 |#1|)) 175 (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) 174 (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) 173 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) 172 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 171 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) 170 (|has| |#1| (-483 (-1085) |#1|)))) (-3730 (((-708) $) 58)) (-2545 (($ $ |#1|) 176 (|has| |#1| (-262 |#1| |#1|)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57)) (-2157 (($ $) 168 (|has| |#1| (-210))) (($ $ (-708)) 166 (|has| |#1| (-210))) (($ $ (-1085)) 164 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 163 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 162 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 161 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 154) (($ $ (-1 |#1| |#1|)) 153)) (-3533 (($ $) 140)) (-2816 ((|#1| $) 142)) (-1431 (((-821 (-522)) $) 148 (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) 147 (|has| |#1| (-563 (-821 (-354))))) (((-498) $) 125 (|has| |#1| (-563 (-498)))) (((-354) $) 124 (|has| |#1| (-947))) (((-202) $) 123 (|has| |#1| (-947)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 134 (-4015 (|has| $ (-133)) (|has| |#1| (-838))))) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65) (($ |#1|) 181) (($ (-1085)) 129 (|has| |#1| (-962 (-1085))))) (-2143 (((-3 $ "failed") $) 126 (-3708 (|has| |#1| (-133)) (-4015 (|has| $ (-133)) (|has| |#1| (-838)))))) (-2323 (((-708)) 29)) (-3025 ((|#1| $) 136 (|has| |#1| (-507)))) (-3958 (((-108) $ $) 39)) (-2241 (($ $) 119 (|has| |#1| (-757)))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $) 167 (|has| |#1| (-210))) (($ $ (-708)) 165 (|has| |#1| (-210))) (($ $ (-1085)) 160 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 159 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 158 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 157 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 156) (($ $ (-1 |#1| |#1|)) 155)) (-1574 (((-108) $ $) 115 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 114 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 116 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 113 (|has| |#1| (-784)))) (-1620 (($ $ $) 64) (($ |#1| |#1|) 144)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66) (($ |#1| $) 180) (($ $ |#1|) 179)))
+((-2105 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2129 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3293 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3877 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2194 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2657 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-4037 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-1737 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2378 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-1509 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3063 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2808 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2032 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2239 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2304 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3161 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2339 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-1338 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2434 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-4026 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2642 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3380 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-4143 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-2364 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-4117 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3466 (*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))) (-3417 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-708)) (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(-13 (-10 -7 (-15 -3417 ((-3 |t#1| "failed") |t#1| (-708))) (-15 -3466 ((-3 |t#1| "failed") |t#1|)) (-15 -4117 ((-3 |t#1| "failed") |t#1|)) (-15 -2364 ((-3 |t#1| "failed") |t#1|)) (-15 -4143 ((-3 |t#1| "failed") |t#1|)) (-15 -3380 ((-3 |t#1| "failed") |t#1|)) (-15 -2642 ((-3 |t#1| "failed") |t#1|)) (-15 -4026 ((-3 |t#1| "failed") |t#1|)) (-15 -2434 ((-3 |t#1| "failed") |t#1|)) (-15 -1338 ((-3 |t#1| "failed") |t#1|)) (-15 -2339 ((-3 |t#1| "failed") |t#1|)) (-15 -3161 ((-3 |t#1| "failed") |t#1|)) (-15 -2304 ((-3 |t#1| "failed") |t#1|)) (-15 -2239 ((-3 |t#1| "failed") |t#1|)) (-15 -2032 ((-3 |t#1| "failed") |t#1|)) (-15 -2808 ((-3 |t#1| "failed") |t#1|)) (-15 -3063 ((-3 |t#1| "failed") |t#1|)) (-15 -1509 ((-3 |t#1| "failed") |t#1|)) (-15 -2378 ((-3 |t#1| "failed") |t#1|)) (-15 -1737 ((-3 |t#1| "failed") |t#1|)) (-15 -4037 ((-3 |t#1| "failed") |t#1|)) (-15 -2657 ((-3 |t#1| "failed") |t#1|)) (-15 -2194 ((-3 |t#1| "failed") |t#1|)) (-15 -3877 ((-3 |t#1| "failed") |t#1|)) (-15 -3293 ((-3 |t#1| "failed") |t#1|)) (-15 -2129 ((-3 |t#1| "failed") |t#1|)) (-15 -2105 ((-3 |t#1| "failed") |t#1|))))
+((-2788 ((|#4| |#4| (-588 |#3|)) 56) ((|#4| |#4| |#3|) 55)) (-2678 ((|#4| |#4| (-588 |#3|)) 23) ((|#4| |#4| |#3|) 19)) (-3810 ((|#4| (-1 |#4| (-881 |#1|)) |#4|) 30)))
+(((-911 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2678 (|#4| |#4| |#3|)) (-15 -2678 (|#4| |#4| (-588 |#3|))) (-15 -2788 (|#4| |#4| |#3|)) (-15 -2788 (|#4| |#4| (-588 |#3|))) (-15 -3810 (|#4| (-1 |#4| (-881 |#1|)) |#4|))) (-971) (-730) (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $)) (-15 -1660 ((-3 $ "failed") (-1085))))) (-878 (-881 |#1|) |#2| |#3|)) (T -911))
+((-3810 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-881 *4))) (-4 *4 (-971)) (-4 *2 (-878 (-881 *4) *5 *6)) (-4 *5 (-730)) (-4 *6 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $)) (-15 -1660 ((-3 $ "failed") (-1085)))))) (-5 *1 (-911 *4 *5 *6 *2)))) (-2788 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *6)) (-4 *6 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $)) (-15 -1660 ((-3 $ "failed") (-1085)))))) (-4 *4 (-971)) (-4 *5 (-730)) (-5 *1 (-911 *4 *5 *6 *2)) (-4 *2 (-878 (-881 *4) *5 *6)))) (-2788 (*1 *2 *2 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $)) (-15 -1660 ((-3 $ "failed") (-1085)))))) (-5 *1 (-911 *4 *5 *3 *2)) (-4 *2 (-878 (-881 *4) *5 *3)))) (-2678 (*1 *2 *2 *3) (-12 (-5 *3 (-588 *6)) (-4 *6 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $)) (-15 -1660 ((-3 $ "failed") (-1085)))))) (-4 *4 (-971)) (-4 *5 (-730)) (-5 *1 (-911 *4 *5 *6 *2)) (-4 *2 (-878 (-881 *4) *5 *6)))) (-2678 (*1 *2 *2 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $)) (-15 -1660 ((-3 $ "failed") (-1085)))))) (-5 *1 (-911 *4 *5 *3 *2)) (-4 *2 (-878 (-881 *4) *5 *3)))))
+(-10 -7 (-15 -2678 (|#4| |#4| |#3|)) (-15 -2678 (|#4| |#4| (-588 |#3|))) (-15 -2788 (|#4| |#4| |#3|)) (-15 -2788 (|#4| |#4| (-588 |#3|))) (-15 -3810 (|#4| (-1 |#4| (-881 |#1|)) |#4|)))
+((-3489 ((|#2| |#3|) 34)) (-3387 (((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) |#2|) 71)) (-1886 (((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) 86)))
+(((-912 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1886 ((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))))) (-15 -3387 ((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) |#2|)) (-15 -3489 (|#2| |#3|))) (-324) (-1142 |#1|) (-1142 |#2|) (-662 |#2| |#3|)) (T -912))
+((-3489 (*1 *2 *3) (-12 (-4 *3 (-1142 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-912 *4 *2 *3 *5)) (-4 *4 (-324)) (-4 *5 (-662 *2 *3)))) (-3387 (*1 *2 *3) (-12 (-4 *4 (-324)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 *3)) (-5 *2 (-2 (|:| -2905 (-628 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-628 *3)))) (-5 *1 (-912 *4 *3 *5 *6)) (-4 *6 (-662 *3 *5)))) (-1886 (*1 *2) (-12 (-4 *3 (-324)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| -2905 (-628 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-628 *4)))) (-5 *1 (-912 *3 *4 *5 *6)) (-4 *6 (-662 *4 *5)))))
+(-10 -7 (-15 -1886 ((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))))) (-15 -3387 ((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) |#2|)) (-15 -3489 (|#2| |#3|)))
+((-3513 (((-914 (-382 (-522)) (-794 |#1|) (-217 |#2| (-708)) (-224 |#1| (-382 (-522)))) (-914 (-382 (-522)) (-794 |#1|) (-217 |#2| (-708)) (-224 |#1| (-382 (-522))))) 65)))
+(((-913 |#1| |#2|) (-10 -7 (-15 -3513 ((-914 (-382 (-522)) (-794 |#1|) (-217 |#2| (-708)) (-224 |#1| (-382 (-522)))) (-914 (-382 (-522)) (-794 |#1|) (-217 |#2| (-708)) (-224 |#1| (-382 (-522))))))) (-588 (-1085)) (-708)) (T -913))
+((-3513 (*1 *2 *2) (-12 (-5 *2 (-914 (-382 (-522)) (-794 *3) (-217 *4 (-708)) (-224 *3 (-382 (-522))))) (-14 *3 (-588 (-1085))) (-14 *4 (-708)) (-5 *1 (-913 *3 *4)))))
+(-10 -7 (-15 -3513 ((-914 (-382 (-522)) (-794 |#1|) (-217 |#2| (-708)) (-224 |#1| (-382 (-522)))) (-914 (-382 (-522)) (-794 |#1|) (-217 |#2| (-708)) (-224 |#1| (-382 (-522)))))))
+((-1419 (((-108) $ $) NIL)) (-2972 (((-3 (-108) "failed") $) 67)) (-1667 (($ $) 35 (-12 (|has| |#1| (-135)) (|has| |#1| (-283))))) (-1262 (($ $ (-3 (-108) "failed")) 68)) (-2499 (($ (-588 |#4|) |#4|) 24)) (-2311 (((-1068) $) NIL)) (-3547 (($ $) 65)) (-4174 (((-1032) $) NIL)) (-3494 (((-108) $) 66)) (-3298 (($) 29)) (-3248 ((|#4| $) 70)) (-3517 (((-588 |#4|) $) 69)) (-2217 (((-792) $) 64)) (-1562 (((-108) $ $) NIL)))
+(((-914 |#1| |#2| |#3| |#4|) (-13 (-1014) (-562 (-792)) (-10 -8 (-15 -3298 ($)) (-15 -2499 ($ (-588 |#4|) |#4|)) (-15 -2972 ((-3 (-108) "failed") $)) (-15 -1262 ($ $ (-3 (-108) "failed"))) (-15 -3494 ((-108) $)) (-15 -3517 ((-588 |#4|) $)) (-15 -3248 (|#4| $)) (-15 -3547 ($ $)) (IF (|has| |#1| (-283)) (IF (|has| |#1| (-135)) (-15 -1667 ($ $)) |%noBranch|) |%noBranch|))) (-426) (-784) (-730) (-878 |#1| |#3| |#2|)) (T -914))
+((-3298 (*1 *1) (-12 (-4 *2 (-426)) (-4 *3 (-784)) (-4 *4 (-730)) (-5 *1 (-914 *2 *3 *4 *5)) (-4 *5 (-878 *2 *4 *3)))) (-2499 (*1 *1 *2 *3) (-12 (-5 *2 (-588 *3)) (-4 *3 (-878 *4 *6 *5)) (-4 *4 (-426)) (-4 *5 (-784)) (-4 *6 (-730)) (-5 *1 (-914 *4 *5 *6 *3)))) (-2972 (*1 *2 *1) (|partial| -12 (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)) (-5 *2 (-108)) (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4)))) (-1262 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-108) "failed")) (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)) (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4)))) (-3494 (*1 *2 *1) (-12 (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)) (-5 *2 (-108)) (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4)))) (-3517 (*1 *2 *1) (-12 (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)) (-5 *2 (-588 *6)) (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4)))) (-3248 (*1 *2 *1) (-12 (-4 *2 (-878 *3 *5 *4)) (-5 *1 (-914 *3 *4 *5 *2)) (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)))) (-3547 (*1 *1 *1) (-12 (-4 *2 (-426)) (-4 *3 (-784)) (-4 *4 (-730)) (-5 *1 (-914 *2 *3 *4 *5)) (-4 *5 (-878 *2 *4 *3)))) (-1667 (*1 *1 *1) (-12 (-4 *2 (-135)) (-4 *2 (-283)) (-4 *2 (-426)) (-4 *3 (-784)) (-4 *4 (-730)) (-5 *1 (-914 *2 *3 *4 *5)) (-4 *5 (-878 *2 *4 *3)))))
+(-13 (-1014) (-562 (-792)) (-10 -8 (-15 -3298 ($)) (-15 -2499 ($ (-588 |#4|) |#4|)) (-15 -2972 ((-3 (-108) "failed") $)) (-15 -1262 ($ $ (-3 (-108) "failed"))) (-15 -3494 ((-108) $)) (-15 -3517 ((-588 |#4|) $)) (-15 -3248 (|#4| $)) (-15 -3547 ($ $)) (IF (|has| |#1| (-283)) (IF (|has| |#1| (-135)) (-15 -1667 ($ $)) |%noBranch|) |%noBranch|)))
+((-3840 (((-108) |#5| |#5|) 38)) (-3130 (((-108) |#5| |#5|) 52)) (-2080 (((-108) |#5| (-588 |#5|)) 74) (((-108) |#5| |#5|) 61)) (-1400 (((-108) (-588 |#4|) (-588 |#4|)) 58)) (-2115 (((-108) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) 63)) (-1324 (((-1171)) 33)) (-4052 (((-1171) (-1068) (-1068) (-1068)) 29)) (-1954 (((-588 |#5|) (-588 |#5|)) 81)) (-3041 (((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)))) 79)) (-2342 (((-588 (-2 (|:| -3277 (-588 |#4|)) (|:| -1974 |#5|) (|:| |ineq| (-588 |#4|)))) (-588 |#4|) (-588 |#5|) (-108) (-108)) 101)) (-3055 (((-108) |#5| |#5|) 47)) (-2494 (((-3 (-108) "failed") |#5| |#5|) 71)) (-4067 (((-108) (-588 |#4|) (-588 |#4|)) 57)) (-3474 (((-108) (-588 |#4|) (-588 |#4|)) 59)) (-1517 (((-108) (-588 |#4|) (-588 |#4|)) 60)) (-3882 (((-3 (-2 (|:| -3277 (-588 |#4|)) (|:| -1974 |#5|) (|:| |ineq| (-588 |#4|))) "failed") (-588 |#4|) |#5| (-588 |#4|) (-108) (-108) (-108) (-108) (-108)) 97)) (-2868 (((-588 |#5|) (-588 |#5|)) 43)))
+(((-915 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4052 ((-1171) (-1068) (-1068) (-1068))) (-15 -1324 ((-1171))) (-15 -3840 ((-108) |#5| |#5|)) (-15 -2868 ((-588 |#5|) (-588 |#5|))) (-15 -3055 ((-108) |#5| |#5|)) (-15 -3130 ((-108) |#5| |#5|)) (-15 -1400 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -4067 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -3474 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -1517 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2494 ((-3 (-108) "failed") |#5| |#5|)) (-15 -2080 ((-108) |#5| |#5|)) (-15 -2080 ((-108) |#5| (-588 |#5|))) (-15 -1954 ((-588 |#5|) (-588 |#5|))) (-15 -2115 ((-108) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)))) (-15 -3041 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) (-15 -2342 ((-588 (-2 (|:| -3277 (-588 |#4|)) (|:| -1974 |#5|) (|:| |ineq| (-588 |#4|)))) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -3882 ((-3 (-2 (|:| -3277 (-588 |#4|)) (|:| -1974 |#5|) (|:| |ineq| (-588 |#4|))) "failed") (-588 |#4|) |#5| (-588 |#4|) (-108) (-108) (-108) (-108) (-108)))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|)) (T -915))
+((-3882 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| -3277 (-588 *9)) (|:| -1974 *4) (|:| |ineq| (-588 *9)))) (-5 *1 (-915 *6 *7 *8 *9 *4)) (-5 *3 (-588 *9)) (-4 *4 (-990 *6 *7 *8 *9)))) (-2342 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-588 *10)) (-5 *5 (-108)) (-4 *10 (-990 *6 *7 *8 *9)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8)) (-5 *2 (-588 (-2 (|:| -3277 (-588 *9)) (|:| -1974 *10) (|:| |ineq| (-588 *9))))) (-5 *1 (-915 *6 *7 *8 *9 *10)) (-5 *3 (-588 *9)))) (-3041 (*1 *2 *2) (-12 (-5 *2 (-588 (-2 (|:| |val| (-588 *6)) (|:| -1974 *7)))) (-4 *6 (-985 *3 *4 *5)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-915 *3 *4 *5 *6 *7)))) (-2115 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1974 *8))) (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-990 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *8)))) (-1954 (*1 *2 *2) (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *1 (-915 *3 *4 *5 *6 *7)))) (-2080 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-915 *5 *6 *7 *8 *3)))) (-2080 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-2494 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-1517 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-3474 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-4067 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-1400 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-3130 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-3055 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-2868 (*1 *2 *2) (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *1 (-915 *3 *4 *5 *6 *7)))) (-3840 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-1324 (*1 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171)) (-5 *1 (-915 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))) (-4052 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171)) (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
+(-10 -7 (-15 -4052 ((-1171) (-1068) (-1068) (-1068))) (-15 -1324 ((-1171))) (-15 -3840 ((-108) |#5| |#5|)) (-15 -2868 ((-588 |#5|) (-588 |#5|))) (-15 -3055 ((-108) |#5| |#5|)) (-15 -3130 ((-108) |#5| |#5|)) (-15 -1400 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -4067 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -3474 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -1517 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2494 ((-3 (-108) "failed") |#5| |#5|)) (-15 -2080 ((-108) |#5| |#5|)) (-15 -2080 ((-108) |#5| (-588 |#5|))) (-15 -1954 ((-588 |#5|) (-588 |#5|))) (-15 -2115 ((-108) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)))) (-15 -3041 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) (-15 -2342 ((-588 (-2 (|:| -3277 (-588 |#4|)) (|:| -1974 |#5|) (|:| |ineq| (-588 |#4|)))) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -3882 ((-3 (-2 (|:| -3277 (-588 |#4|)) (|:| -1974 |#5|) (|:| |ineq| (-588 |#4|))) "failed") (-588 |#4|) |#5| (-588 |#4|) (-108) (-108) (-108) (-108) (-108))))
+((-1660 (((-1085) $) 15)) (-3526 (((-1068) $) 16)) (-1656 (($ (-1085) (-1068)) 14)) (-2217 (((-792) $) 13)))
+(((-916) (-13 (-562 (-792)) (-10 -8 (-15 -1656 ($ (-1085) (-1068))) (-15 -1660 ((-1085) $)) (-15 -3526 ((-1068) $))))) (T -916))
+((-1656 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1068)) (-5 *1 (-916)))) (-1660 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-916)))) (-3526 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-916)))))
+(-13 (-562 (-792)) (-10 -8 (-15 -1656 ($ (-1085) (-1068))) (-15 -1660 ((-1085) $)) (-15 -3526 ((-1068) $))))
+((-3810 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
+(((-917 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3810 (|#4| (-1 |#2| |#1|) |#3|))) (-514) (-514) (-919 |#1|) (-919 |#2|)) (T -917))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-514)) (-4 *6 (-514)) (-4 *2 (-919 *6)) (-5 *1 (-917 *5 *6 *4 *2)) (-4 *4 (-919 *5)))))
+(-10 -7 (-15 -3810 (|#4| (-1 |#2| |#1|) |#3|)))
+((-3700 (((-3 |#2| "failed") $) NIL) (((-3 (-1085) "failed") $) 65) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 (-522) "failed") $) 95)) (-1478 ((|#2| $) NIL) (((-1085) $) 60) (((-382 (-522)) $) NIL) (((-522) $) 92)) (-1226 (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) 112) (((-628 |#2|) (-628 $)) 28)) (-3344 (($) 98)) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 74) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 83)) (-1558 (($ $) 10)) (-4208 (((-3 $ "failed") $) 20)) (-3810 (($ (-1 |#2| |#2|) $) 22)) (-3937 (($) 16)) (-4194 (($ $) 54)) (-2731 (($ $) NIL) (($ $ (-708)) NIL) (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-2762 (($ $) 12)) (-3873 (((-821 (-522)) $) 69) (((-821 (-354)) $) 78) (((-498) $) 40) (((-354) $) 44) (((-202) $) 47)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) 90) (($ |#2|) NIL) (($ (-1085)) 57)) (-2742 (((-708)) 31)) (-1587 (((-108) $ $) 50)))
+(((-918 |#1| |#2|) (-10 -8 (-15 -1587 ((-108) |#1| |#1|)) (-15 -3937 (|#1|)) (-15 -4208 ((-3 |#1| "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -3873 ((-202) |#1|)) (-15 -3873 ((-354) |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -1478 ((-1085) |#1|)) (-15 -3700 ((-3 (-1085) "failed") |#1|)) (-15 -2217 (|#1| (-1085))) (-15 -3344 (|#1|)) (-15 -4194 (|#1| |#1|)) (-15 -2762 (|#1| |#1|)) (-15 -1558 (|#1| |#1|)) (-15 -3738 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -3738 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -3873 ((-821 (-354)) |#1|)) (-15 -3873 ((-821 (-522)) |#1|)) (-15 -1226 ((-628 |#2|) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-628 (-522)) (-628 |#1|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 (|#1| |#1|)) (-15 -2217 (|#1| (-522))) (-15 -2742 ((-708))) (-15 -2217 ((-792) |#1|))) (-919 |#2|) (-514)) (T -918))
+((-2742 (*1 *2) (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-918 *3 *4)) (-4 *3 (-919 *4)))))
+(-10 -8 (-15 -1587 ((-108) |#1| |#1|)) (-15 -3937 (|#1|)) (-15 -4208 ((-3 |#1| "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -3873 ((-202) |#1|)) (-15 -3873 ((-354) |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -1478 ((-1085) |#1|)) (-15 -3700 ((-3 (-1085) "failed") |#1|)) (-15 -2217 (|#1| (-1085))) (-15 -3344 (|#1|)) (-15 -4194 (|#1| |#1|)) (-15 -2762 (|#1| |#1|)) (-15 -1558 (|#1| |#1|)) (-15 -3738 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -3738 ((-818 (-522) |#1|) |#1| (-821 (-522)) (-818 (-522) |#1|))) (-15 -3873 ((-821 (-354)) |#1|)) (-15 -3873 ((-821 (-522)) |#1|)) (-15 -1226 ((-628 |#2|) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-628 (-522)) (-628 |#1|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 (|#1| |#1|)) (-15 -2217 (|#1| (-522))) (-15 -2742 ((-708))) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3049 ((|#1| $) 139 (|has| |#1| (-283)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-3543 (((-393 (-1081 $)) (-1081 $)) 130 (|has| |#1| (-838)))) (-2961 (($ $) 73)) (-3133 (((-393 $) $) 72)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 133 (|has| |#1| (-838)))) (-2805 (((-108) $ $) 59)) (-3355 (((-522) $) 120 (|has| |#1| (-757)))) (-3367 (($) 17 T CONST)) (-3700 (((-3 |#1| "failed") $) 178) (((-3 (-1085) "failed") $) 128 (|has| |#1| (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) 112 (|has| |#1| (-962 (-522)))) (((-3 (-522) "failed") $) 110 (|has| |#1| (-962 (-522))))) (-1478 ((|#1| $) 177) (((-1085) $) 127 (|has| |#1| (-962 (-1085)))) (((-382 (-522)) $) 111 (|has| |#1| (-962 (-522)))) (((-522) $) 109 (|has| |#1| (-962 (-522))))) (-2333 (($ $ $) 55)) (-1226 (((-628 (-522)) (-628 $)) 152 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 151 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 150) (((-628 |#1|) (-628 $)) 149)) (-3920 (((-3 $ "failed") $) 34)) (-3344 (($) 137 (|has| |#1| (-507)))) (-2303 (($ $ $) 56)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-2725 (((-108) $) 71)) (-3603 (((-108) $) 122 (|has| |#1| (-757)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 146 (|has| |#1| (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 145 (|has| |#1| (-815 (-354))))) (-2859 (((-108) $) 31)) (-1558 (($ $) 141)) (-2947 ((|#1| $) 143)) (-4208 (((-3 $ "failed") $) 108 (|has| |#1| (-1061)))) (-3740 (((-108) $) 121 (|has| |#1| (-757)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-1308 (($ $ $) 118 (|has| |#1| (-784)))) (-2524 (($ $ $) 117 (|has| |#1| (-784)))) (-3810 (($ (-1 |#1| |#1|) $) 169)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 70)) (-3937 (($) 107 (|has| |#1| (-1061)) CONST)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-4194 (($ $) 138 (|has| |#1| (-283)))) (-3592 ((|#1| $) 135 (|has| |#1| (-507)))) (-4022 (((-393 (-1081 $)) (-1081 $)) 132 (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) 131 (|has| |#1| (-838)))) (-2006 (((-393 $) $) 74)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-2330 (($ $ (-588 |#1|) (-588 |#1|)) 175 (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) 174 (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) 173 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) 172 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 171 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) 170 (|has| |#1| (-483 (-1085) |#1|)))) (-4031 (((-708) $) 58)) (-2683 (($ $ |#1|) 176 (|has| |#1| (-262 |#1| |#1|)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57)) (-2731 (($ $) 168 (|has| |#1| (-210))) (($ $ (-708)) 166 (|has| |#1| (-210))) (($ $ (-1085)) 164 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 163 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 162 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 161 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 154) (($ $ (-1 |#1| |#1|)) 153)) (-2762 (($ $) 140)) (-2959 ((|#1| $) 142)) (-3873 (((-821 (-522)) $) 148 (|has| |#1| (-563 (-821 (-522))))) (((-821 (-354)) $) 147 (|has| |#1| (-563 (-821 (-354))))) (((-498) $) 125 (|has| |#1| (-563 (-498)))) (((-354) $) 124 (|has| |#1| (-947))) (((-202) $) 123 (|has| |#1| (-947)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 134 (-4079 (|has| $ (-133)) (|has| |#1| (-838))))) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65) (($ |#1|) 181) (($ (-1085)) 129 (|has| |#1| (-962 (-1085))))) (-3040 (((-3 $ "failed") $) 126 (-3844 (|has| |#1| (-133)) (-4079 (|has| $ (-133)) (|has| |#1| (-838)))))) (-2742 (((-708)) 29)) (-1379 ((|#1| $) 136 (|has| |#1| (-507)))) (-1407 (((-108) $ $) 39)) (-4126 (($ $) 119 (|has| |#1| (-757)))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $) 167 (|has| |#1| (-210))) (($ $ (-708)) 165 (|has| |#1| (-210))) (($ $ (-1085)) 160 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 159 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 158 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 157 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 156) (($ $ (-1 |#1| |#1|)) 155)) (-1623 (((-108) $ $) 115 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 114 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 116 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 113 (|has| |#1| (-784)))) (-1682 (($ $ $) 64) (($ |#1| |#1|) 144)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66) (($ |#1| $) 180) (($ $ |#1|) 179)))
(((-919 |#1|) (-1197) (-514)) (T -919))
-((-1620 (*1 *1 *2 *2) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))) (-2805 (*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))) (-2816 (*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))) (-2902 (*1 *1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))) (-3533 (*1 *1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))) (-2229 (*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-283)))) (-3933 (*1 *1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-283)))) (-3255 (*1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-507)) (-4 *2 (-514)))) (-3025 (*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-507)))) (-3686 (*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-507)))))
-(-13 (-338) (-37 |t#1|) (-962 |t#1|) (-313 |t#1|) (-208 |t#1|) (-352 |t#1|) (-813 |t#1|) (-375 |t#1|) (-10 -8 (-15 -1620 ($ |t#1| |t#1|)) (-15 -2805 (|t#1| $)) (-15 -2816 (|t#1| $)) (-15 -2902 ($ $)) (-15 -3533 ($ $)) (IF (|has| |t#1| (-1061)) (-6 (-1061)) |%noBranch|) (IF (|has| |t#1| (-962 (-522))) (PROGN (-6 (-962 (-522))) (-6 (-962 (-382 (-522))))) |%noBranch|) (IF (|has| |t#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#1| (-757)) (-6 (-757)) |%noBranch|) (IF (|has| |t#1| (-947)) (-6 (-947)) |%noBranch|) (IF (|has| |t#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |t#1| (-962 (-1085))) (-6 (-962 (-1085))) |%noBranch|) (IF (|has| |t#1| (-283)) (PROGN (-15 -2229 (|t#1| $)) (-15 -3933 ($ $))) |%noBranch|) (IF (|has| |t#1| (-507)) (PROGN (-15 -3255 ($)) (-15 -3025 (|t#1| $)) (-15 -3686 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-838)) (-6 (-838)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 |#1|) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) . T) ((-563 (-202)) |has| |#1| (-947)) ((-563 (-354)) |has| |#1| (-947)) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-563 (-821 (-354))) |has| |#1| (-563 (-821 (-354)))) ((-563 (-821 (-522))) |has| |#1| (-563 (-821 (-522)))) ((-208 |#1|) . T) ((-210) |has| |#1| (-210)) ((-220) . T) ((-262 |#1| $) |has| |#1| (-262 |#1| |#1|)) ((-266) . T) ((-283) . T) ((-285 |#1|) |has| |#1| (-285 |#1|)) ((-338) . T) ((-313 |#1|) . T) ((-352 |#1|) . T) ((-375 |#1|) . T) ((-426) . T) ((-483 (-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)) ((-483 |#1| |#1|) |has| |#1| (-285 |#1|)) ((-514) . T) ((-590 #0#) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) . T) ((-655 |#1|) . T) ((-655 $) . T) ((-664) . T) ((-728) |has| |#1| (-757)) ((-729) |has| |#1| (-757)) ((-731) |has| |#1| (-757)) ((-732) |has| |#1| (-757)) ((-757) |has| |#1| (-757)) ((-782) |has| |#1| (-757)) ((-784) -3708 (|has| |#1| (-784)) (|has| |#1| (-757))) ((-829 (-1085)) |has| |#1| (-829 (-1085))) ((-815 (-354)) |has| |#1| (-815 (-354))) ((-815 (-522)) |has| |#1| (-815 (-522))) ((-813 |#1|) . T) ((-838) |has| |#1| (-838)) ((-849) . T) ((-947) |has| |#1| (-947)) ((-962 (-382 (-522))) |has| |#1| (-962 (-522))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 (-1085)) |has| |#1| (-962 (-1085))) ((-962 |#1|) . T) ((-977 #0#) . T) ((-977 |#1|) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) |has| |#1| (-1061)) ((-1120) . T) ((-1124) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-4062 (($ (-1052 |#1| |#2|)) 11)) (-1366 (((-1052 |#1| |#2|) $) 12)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2545 ((|#2| $ (-217 |#1| |#2|)) 16)) (-2190 (((-792) $) NIL)) (-3566 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL)))
-(((-920 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -4062 ($ (-1052 |#1| |#2|))) (-15 -1366 ((-1052 |#1| |#2|) $)) (-15 -2545 (|#2| $ (-217 |#1| |#2|))))) (-850) (-338)) (T -920))
-((-4062 (*1 *1 *2) (-12 (-5 *2 (-1052 *3 *4)) (-14 *3 (-850)) (-4 *4 (-338)) (-5 *1 (-920 *3 *4)))) (-1366 (*1 *2 *1) (-12 (-5 *2 (-1052 *3 *4)) (-5 *1 (-920 *3 *4)) (-14 *3 (-850)) (-4 *4 (-338)))) (-2545 (*1 *2 *1 *3) (-12 (-5 *3 (-217 *4 *2)) (-14 *4 (-850)) (-4 *2 (-338)) (-5 *1 (-920 *4 *2)))))
-(-13 (-21) (-10 -8 (-15 -4062 ($ (-1052 |#1| |#2|))) (-15 -1366 ((-1052 |#1| |#2|) $)) (-15 -2545 (|#2| $ (-217 |#1| |#2|)))))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) 8)) (-3175 (($) 7 T CONST)) (-2070 (($ $) 46)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2517 (((-708) $) 45)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-2116 ((|#1| $) 39)) (-4095 (($ |#1| $) 40)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-1698 ((|#1| $) 44)) (-4087 ((|#1| $) 41)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-1965 ((|#1| |#1| $) 48)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-3650 ((|#1| $) 47)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2795 (($ (-588 |#1|)) 42)) (-2316 ((|#1| $) 43)) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1682 (*1 *1 *2 *2) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))) (-2947 (*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))) (-2959 (*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))) (-1558 (*1 *1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))) (-2762 (*1 *1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))) (-3049 (*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-283)))) (-4194 (*1 *1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-283)))) (-3344 (*1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-507)) (-4 *2 (-514)))) (-1379 (*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-507)))) (-3592 (*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-507)))))
+(-13 (-338) (-37 |t#1|) (-962 |t#1|) (-313 |t#1|) (-208 |t#1|) (-352 |t#1|) (-813 |t#1|) (-375 |t#1|) (-10 -8 (-15 -1682 ($ |t#1| |t#1|)) (-15 -2947 (|t#1| $)) (-15 -2959 (|t#1| $)) (-15 -1558 ($ $)) (-15 -2762 ($ $)) (IF (|has| |t#1| (-1061)) (-6 (-1061)) |%noBranch|) (IF (|has| |t#1| (-962 (-522))) (PROGN (-6 (-962 (-522))) (-6 (-962 (-382 (-522))))) |%noBranch|) (IF (|has| |t#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#1| (-757)) (-6 (-757)) |%noBranch|) (IF (|has| |t#1| (-947)) (-6 (-947)) |%noBranch|) (IF (|has| |t#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |t#1| (-962 (-1085))) (-6 (-962 (-1085))) |%noBranch|) (IF (|has| |t#1| (-283)) (PROGN (-15 -3049 (|t#1| $)) (-15 -4194 ($ $))) |%noBranch|) (IF (|has| |t#1| (-507)) (PROGN (-15 -3344 ($)) (-15 -1379 (|t#1| $)) (-15 -3592 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-838)) (-6 (-838)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 |#1|) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) . T) ((-563 (-202)) |has| |#1| (-947)) ((-563 (-354)) |has| |#1| (-947)) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-563 (-821 (-354))) |has| |#1| (-563 (-821 (-354)))) ((-563 (-821 (-522))) |has| |#1| (-563 (-821 (-522)))) ((-208 |#1|) . T) ((-210) |has| |#1| (-210)) ((-220) . T) ((-262 |#1| $) |has| |#1| (-262 |#1| |#1|)) ((-266) . T) ((-283) . T) ((-285 |#1|) |has| |#1| (-285 |#1|)) ((-338) . T) ((-313 |#1|) . T) ((-352 |#1|) . T) ((-375 |#1|) . T) ((-426) . T) ((-483 (-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)) ((-483 |#1| |#1|) |has| |#1| (-285 |#1|)) ((-514) . T) ((-590 #0#) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) . T) ((-655 |#1|) . T) ((-655 $) . T) ((-664) . T) ((-728) |has| |#1| (-757)) ((-729) |has| |#1| (-757)) ((-731) |has| |#1| (-757)) ((-732) |has| |#1| (-757)) ((-757) |has| |#1| (-757)) ((-782) |has| |#1| (-757)) ((-784) -3844 (|has| |#1| (-784)) (|has| |#1| (-757))) ((-829 (-1085)) |has| |#1| (-829 (-1085))) ((-815 (-354)) |has| |#1| (-815 (-354))) ((-815 (-522)) |has| |#1| (-815 (-522))) ((-813 |#1|) . T) ((-838) |has| |#1| (-838)) ((-849) . T) ((-947) |has| |#1| (-947)) ((-962 (-382 (-522))) |has| |#1| (-962 (-522))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 (-1085)) |has| |#1| (-962 (-1085))) ((-962 |#1|) . T) ((-977 #0#) . T) ((-977 |#1|) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) |has| |#1| (-1061)) ((-1120) . T) ((-1124) . T))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3120 (($ (-1052 |#1| |#2|)) 11)) (-1347 (((-1052 |#1| |#2|) $) 12)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2683 ((|#2| $ (-217 |#1| |#2|)) 16)) (-2217 (((-792) $) NIL)) (-3697 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL)))
+(((-920 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -3120 ($ (-1052 |#1| |#2|))) (-15 -1347 ((-1052 |#1| |#2|) $)) (-15 -2683 (|#2| $ (-217 |#1| |#2|))))) (-850) (-338)) (T -920))
+((-3120 (*1 *1 *2) (-12 (-5 *2 (-1052 *3 *4)) (-14 *3 (-850)) (-4 *4 (-338)) (-5 *1 (-920 *3 *4)))) (-1347 (*1 *2 *1) (-12 (-5 *2 (-1052 *3 *4)) (-5 *1 (-920 *3 *4)) (-14 *3 (-850)) (-4 *4 (-338)))) (-2683 (*1 *2 *1 *3) (-12 (-5 *3 (-217 *4 *2)) (-14 *4 (-850)) (-4 *2 (-338)) (-5 *1 (-920 *4 *2)))))
+(-13 (-21) (-10 -8 (-15 -3120 ($ (-1052 |#1| |#2|))) (-15 -1347 ((-1052 |#1| |#2|) $)) (-15 -2683 (|#2| $ (-217 |#1| |#2|)))))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) 8)) (-3367 (($) 7 T CONST)) (-2876 (($ $) 46)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-4030 (((-708) $) 45)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1431 ((|#1| $) 39)) (-3365 (($ |#1| $) 40)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-4056 ((|#1| $) 44)) (-3295 ((|#1| $) 41)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3036 ((|#1| |#1| $) 48)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-1402 ((|#1| $) 47)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2501 (($ (-588 |#1|)) 42)) (-2653 ((|#1| $) 43)) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-921 |#1|) (-1197) (-1120)) (T -921))
-((-1965 (*1 *2 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))) (-3650 (*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))) (-2070 (*1 *1 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))) (-2517 (*1 *2 *1) (-12 (-4 *1 (-921 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))) (-1698 (*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))) (-2316 (*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))))
-(-13 (-102 |t#1|) (-10 -8 (-6 -4238) (-15 -1965 (|t#1| |t#1| $)) (-15 -3650 (|t#1| $)) (-15 -2070 ($ $)) (-15 -2517 ((-708) $)) (-15 -1698 (|t#1| $)) (-15 -2316 (|t#1| $))))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-2250 (((-108) $) 42)) (-1297 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-1484 (((-522) $) NIL) (((-382 (-522)) $) NIL) ((|#2| $) 43)) (-1664 (((-3 (-382 (-522)) "failed") $) 78)) (-1770 (((-108) $) 72)) (-1492 (((-382 (-522)) $) 76)) (-2782 (((-108) $) 41)) (-2100 ((|#2| $) 22)) (-1391 (($ (-1 |#2| |#2|) $) 19)) (-3098 (($ $) 61)) (-2157 (($ $) NIL) (($ $ (-708)) NIL) (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) 34)) (-1431 (((-498) $) 67)) (-3122 (($ $) 17)) (-2190 (((-792) $) 56) (($ (-522)) 38) (($ |#2|) 36) (($ (-382 (-522))) NIL)) (-2323 (((-708)) 10)) (-2241 ((|#2| $) 71)) (-1531 (((-108) $ $) 25)) (-1549 (((-108) $ $) 69)) (-1612 (($ $) 29) (($ $ $) 28)) (-1602 (($ $ $) 26)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 33) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 30) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
-(((-922 |#1| |#2|) (-10 -8 (-15 -2190 (|#1| (-382 (-522)))) (-15 -1549 ((-108) |#1| |#1|)) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 * (|#1| |#1| (-382 (-522)))) (-15 -3098 (|#1| |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -1664 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1492 ((-382 (-522)) |#1|)) (-15 -1770 ((-108) |#1|)) (-15 -2241 (|#2| |#1|)) (-15 -2100 (|#2| |#1|)) (-15 -3122 (|#1| |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -2190 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2190 (|#1| (-522))) (-15 -2323 ((-708))) (-15 -2782 ((-108) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 -2250 ((-108) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -1602 (|#1| |#1| |#1|)) (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|))) (-923 |#2|) (-157)) (T -922))
-((-2323 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-708)) (-5 *1 (-922 *3 *4)) (-4 *3 (-923 *4)))))
-(-10 -8 (-15 -2190 (|#1| (-382 (-522)))) (-15 -1549 ((-108) |#1| |#1|)) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 * (|#1| |#1| (-382 (-522)))) (-15 -3098 (|#1| |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -1664 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1492 ((-382 (-522)) |#1|)) (-15 -1770 ((-108) |#1|)) (-15 -2241 (|#2| |#1|)) (-15 -2100 (|#2| |#1|)) (-15 -3122 (|#1| |#1|)) (-15 -1391 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -2190 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2190 (|#1| (-522))) (-15 -2323 ((-708))) (-15 -2782 ((-108) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 -2250 ((-108) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -1602 (|#1| |#1| |#1|)) (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-1297 (((-3 (-522) "failed") $) 119 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 117 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 116)) (-1484 (((-522) $) 120 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 118 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 115)) (-2096 (((-628 (-522)) (-628 $)) 90 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 89 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 88) (((-628 |#1|) (-628 $)) 87)) (-2682 (((-3 $ "failed") $) 34)) (-1937 ((|#1| $) 80)) (-1664 (((-3 (-382 (-522)) "failed") $) 76 (|has| |#1| (-507)))) (-1770 (((-108) $) 78 (|has| |#1| (-507)))) (-1492 (((-382 (-522)) $) 77 (|has| |#1| (-507)))) (-4188 (($ |#1| |#1| |#1| |#1|) 81)) (-2782 (((-108) $) 31)) (-2100 ((|#1| $) 82)) (-2814 (($ $ $) 68 (|has| |#1| (-784)))) (-2446 (($ $ $) 67 (|has| |#1| (-784)))) (-1391 (($ (-1 |#1| |#1|) $) 91)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 73 (|has| |#1| (-338)))) (-2252 ((|#1| $) 83)) (-1245 ((|#1| $) 84)) (-3559 ((|#1| $) 85)) (-4151 (((-1032) $) 10)) (-2289 (($ $ (-588 |#1|) (-588 |#1|)) 97 (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) 96 (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) 95 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) 94 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 93 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) 92 (|has| |#1| (-483 (-1085) |#1|)))) (-2545 (($ $ |#1|) 98 (|has| |#1| (-262 |#1| |#1|)))) (-2157 (($ $) 114 (|has| |#1| (-210))) (($ $ (-708)) 112 (|has| |#1| (-210))) (($ $ (-1085)) 110 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 109 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 108 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 107 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 100) (($ $ (-1 |#1| |#1|)) 99)) (-1431 (((-498) $) 74 (|has| |#1| (-563 (-498))))) (-3122 (($ $) 86)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37) (($ (-382 (-522))) 62 (-3708 (|has| |#1| (-338)) (|has| |#1| (-962 (-382 (-522))))))) (-2143 (((-3 $ "failed") $) 75 (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-2241 ((|#1| $) 79 (|has| |#1| (-980)))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 72 (|has| |#1| (-338)))) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $) 113 (|has| |#1| (-210))) (($ $ (-708)) 111 (|has| |#1| (-210))) (($ $ (-1085)) 106 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 105 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 104 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 103 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 102) (($ $ (-1 |#1| |#1|)) 101)) (-1574 (((-108) $ $) 65 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 64 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 66 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 63 (|has| |#1| (-784)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 71 (|has| |#1| (-338)))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38) (($ $ (-382 (-522))) 70 (|has| |#1| (-338))) (($ (-382 (-522)) $) 69 (|has| |#1| (-338)))))
+((-3036 (*1 *2 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))) (-1402 (*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))) (-2876 (*1 *1 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))) (-4030 (*1 *2 *1) (-12 (-4 *1 (-921 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))) (-4056 (*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))) (-2653 (*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))))
+(-13 (-102 |t#1|) (-10 -8 (-6 -4238) (-15 -3036 (|t#1| |t#1| $)) (-15 -1402 (|t#1| $)) (-15 -2876 ($ $)) (-15 -4030 ((-708) $)) (-15 -4056 (|t#1| $)) (-15 -2653 (|t#1| $))))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-2944 (((-108) $) 42)) (-3700 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-1478 (((-522) $) NIL) (((-382 (-522)) $) NIL) ((|#2| $) 43)) (-2549 (((-3 (-382 (-522)) "failed") $) 78)) (-3519 (((-108) $) 72)) (-1699 (((-382 (-522)) $) 76)) (-2859 (((-108) $) 41)) (-1269 ((|#2| $) 22)) (-3810 (($ (-1 |#2| |#2|) $) 19)) (-3193 (($ $) 61)) (-2731 (($ $) NIL) (($ $ (-708)) NIL) (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) 34)) (-3873 (((-498) $) 67)) (-2983 (($ $) 17)) (-2217 (((-792) $) 56) (($ (-522)) 38) (($ |#2|) 36) (($ (-382 (-522))) NIL)) (-2742 (((-708)) 10)) (-4126 ((|#2| $) 71)) (-1562 (((-108) $ $) 25)) (-1587 (((-108) $ $) 69)) (-1672 (($ $) 29) (($ $ $) 28)) (-1661 (($ $ $) 26)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 33) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 30) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL)))
+(((-922 |#1| |#2|) (-10 -8 (-15 -2217 (|#1| (-382 (-522)))) (-15 -1587 ((-108) |#1| |#1|)) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 * (|#1| |#1| (-382 (-522)))) (-15 -3193 (|#1| |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -2549 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1699 ((-382 (-522)) |#1|)) (-15 -3519 ((-108) |#1|)) (-15 -4126 (|#2| |#1|)) (-15 -1269 (|#2| |#1|)) (-15 -2983 (|#1| |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -2217 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2217 (|#1| (-522))) (-15 -2742 ((-708))) (-15 -2859 ((-108) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 -2944 ((-108) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -1661 (|#1| |#1| |#1|)) (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|))) (-923 |#2|) (-157)) (T -922))
+((-2742 (*1 *2) (-12 (-4 *4 (-157)) (-5 *2 (-708)) (-5 *1 (-922 *3 *4)) (-4 *3 (-923 *4)))))
+(-10 -8 (-15 -2217 (|#1| (-382 (-522)))) (-15 -1587 ((-108) |#1| |#1|)) (-15 * (|#1| (-382 (-522)) |#1|)) (-15 * (|#1| |#1| (-382 (-522)))) (-15 -3193 (|#1| |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -2549 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1699 ((-382 (-522)) |#1|)) (-15 -3519 ((-108) |#1|)) (-15 -4126 (|#2| |#1|)) (-15 -1269 (|#2| |#1|)) (-15 -2983 (|#1| |#1|)) (-15 -3810 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -2217 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2217 (|#1| (-522))) (-15 -2742 ((-708))) (-15 -2859 ((-108) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 * (|#1| (-708) |#1|)) (-15 -2944 ((-108) |#1|)) (-15 * (|#1| (-850) |#1|)) (-15 -1661 (|#1| |#1| |#1|)) (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3700 (((-3 (-522) "failed") $) 119 (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 117 (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) 116)) (-1478 (((-522) $) 120 (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) 118 (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) 115)) (-1226 (((-628 (-522)) (-628 $)) 90 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 89 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 88) (((-628 |#1|) (-628 $)) 87)) (-3920 (((-3 $ "failed") $) 34)) (-2025 ((|#1| $) 80)) (-2549 (((-3 (-382 (-522)) "failed") $) 76 (|has| |#1| (-507)))) (-3519 (((-108) $) 78 (|has| |#1| (-507)))) (-1699 (((-382 (-522)) $) 77 (|has| |#1| (-507)))) (-1875 (($ |#1| |#1| |#1| |#1|) 81)) (-2859 (((-108) $) 31)) (-1269 ((|#1| $) 82)) (-1308 (($ $ $) 68 (|has| |#1| (-784)))) (-2524 (($ $ $) 67 (|has| |#1| (-784)))) (-3810 (($ (-1 |#1| |#1|) $) 91)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 73 (|has| |#1| (-338)))) (-2965 ((|#1| $) 83)) (-2412 ((|#1| $) 84)) (-1773 ((|#1| $) 85)) (-4174 (((-1032) $) 10)) (-2330 (($ $ (-588 |#1|) (-588 |#1|)) 97 (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) 96 (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) 95 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) 94 (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) 93 (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) 92 (|has| |#1| (-483 (-1085) |#1|)))) (-2683 (($ $ |#1|) 98 (|has| |#1| (-262 |#1| |#1|)))) (-2731 (($ $) 114 (|has| |#1| (-210))) (($ $ (-708)) 112 (|has| |#1| (-210))) (($ $ (-1085)) 110 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 109 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 108 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 107 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 100) (($ $ (-1 |#1| |#1|)) 99)) (-3873 (((-498) $) 74 (|has| |#1| (-563 (-498))))) (-2983 (($ $) 86)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 37) (($ (-382 (-522))) 62 (-3844 (|has| |#1| (-338)) (|has| |#1| (-962 (-382 (-522))))))) (-3040 (((-3 $ "failed") $) 75 (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-4126 ((|#1| $) 79 (|has| |#1| (-980)))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 72 (|has| |#1| (-338)))) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $) 113 (|has| |#1| (-210))) (($ $ (-708)) 111 (|has| |#1| (-210))) (($ $ (-1085)) 106 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 105 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 104 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 103 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 102) (($ $ (-1 |#1| |#1|)) 101)) (-1623 (((-108) $ $) 65 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 64 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 66 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 63 (|has| |#1| (-784)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 71 (|has| |#1| (-338)))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 39) (($ |#1| $) 38) (($ $ (-382 (-522))) 70 (|has| |#1| (-338))) (($ (-382 (-522)) $) 69 (|has| |#1| (-338)))))
(((-923 |#1|) (-1197) (-157)) (T -923))
-((-3122 (*1 *1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-3559 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-1245 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-2252 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-2100 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-4188 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-1937 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-2241 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)) (-4 *2 (-980)))) (-1770 (*1 *2 *1) (-12 (-4 *1 (-923 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-108)))) (-1492 (*1 *2 *1) (-12 (-4 *1 (-923 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-382 (-522))))) (-1664 (*1 *2 *1) (|partial| -12 (-4 *1 (-923 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-382 (-522))))))
-(-13 (-37 |t#1|) (-386 |t#1|) (-208 |t#1|) (-313 |t#1|) (-352 |t#1|) (-10 -8 (-15 -3122 ($ $)) (-15 -3559 (|t#1| $)) (-15 -1245 (|t#1| $)) (-15 -2252 (|t#1| $)) (-15 -2100 (|t#1| $)) (-15 -4188 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -1937 (|t#1| $)) (IF (|has| |t#1| (-266)) (-6 (-266)) |%noBranch|) (IF (|has| |t#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#1| (-338)) (-6 (-220)) |%noBranch|) (IF (|has| |t#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |t#1| (-980)) (-15 -2241 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-507)) (PROGN (-15 -1770 ((-108) $)) (-15 -1492 ((-382 (-522)) $)) (-15 -1664 ((-3 (-382 (-522)) "failed") $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-338)) ((-37 |#1|) . T) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-338)) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-338)) (|has| |#1| (-266))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-208 |#1|) . T) ((-210) |has| |#1| (-210)) ((-220) |has| |#1| (-338)) ((-262 |#1| $) |has| |#1| (-262 |#1| |#1|)) ((-266) -3708 (|has| |#1| (-338)) (|has| |#1| (-266))) ((-285 |#1|) |has| |#1| (-285 |#1|)) ((-313 |#1|) . T) ((-352 |#1|) . T) ((-386 |#1|) . T) ((-483 (-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)) ((-483 |#1| |#1|) |has| |#1| (-285 |#1|)) ((-590 #0#) |has| |#1| (-338)) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) |has| |#1| (-338)) ((-655 |#1|) . T) ((-664) . T) ((-784) |has| |#1| (-784)) ((-829 (-1085)) |has| |#1| (-829 (-1085))) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-977 #0#) |has| |#1| (-338)) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-338)) (|has| |#1| (-266))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1391 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
-(((-924 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1391 (|#3| (-1 |#4| |#2|) |#1|))) (-923 |#2|) (-157) (-923 |#4|) (-157)) (T -924))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-157)) (-4 *6 (-157)) (-4 *2 (-923 *6)) (-5 *1 (-924 *4 *5 *2 *6)) (-4 *4 (-923 *5)))))
-(-10 -7 (-15 -1391 (|#3| (-1 |#4| |#2|) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-1937 ((|#1| $) 12)) (-1664 (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-507)))) (-1770 (((-108) $) NIL (|has| |#1| (-507)))) (-1492 (((-382 (-522)) $) NIL (|has| |#1| (-507)))) (-4188 (($ |#1| |#1| |#1| |#1|) 16)) (-2782 (((-108) $) NIL)) (-2100 ((|#1| $) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL (|has| |#1| (-338)))) (-2252 ((|#1| $) 15)) (-1245 ((|#1| $) 14)) (-3559 ((|#1| $) 13)) (-4151 (((-1032) $) NIL)) (-2289 (($ $ (-588 |#1|) (-588 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) NIL (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-483 (-1085) |#1|)))) (-2545 (($ $ |#1|) NIL (|has| |#1| (-262 |#1| |#1|)))) (-2157 (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1431 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-3122 (($ $) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-338)) (|has| |#1| (-962 (-382 (-522))))))) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-2241 ((|#1| $) NIL (|has| |#1| (-980)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3566 (($) 8 T CONST)) (-3577 (($) 10 T CONST)) (-2213 (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-338))) (($ (-382 (-522)) $) NIL (|has| |#1| (-338)))))
+((-2983 (*1 *1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-1773 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-2412 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-2965 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-1269 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-1875 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-2025 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))) (-4126 (*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)) (-4 *2 (-980)))) (-3519 (*1 *2 *1) (-12 (-4 *1 (-923 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-108)))) (-1699 (*1 *2 *1) (-12 (-4 *1 (-923 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-382 (-522))))) (-2549 (*1 *2 *1) (|partial| -12 (-4 *1 (-923 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-382 (-522))))))
+(-13 (-37 |t#1|) (-386 |t#1|) (-208 |t#1|) (-313 |t#1|) (-352 |t#1|) (-10 -8 (-15 -2983 ($ $)) (-15 -1773 (|t#1| $)) (-15 -2412 (|t#1| $)) (-15 -2965 (|t#1| $)) (-15 -1269 (|t#1| $)) (-15 -1875 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -2025 (|t#1| $)) (IF (|has| |t#1| (-266)) (-6 (-266)) |%noBranch|) (IF (|has| |t#1| (-784)) (-6 (-784)) |%noBranch|) (IF (|has| |t#1| (-338)) (-6 (-220)) |%noBranch|) (IF (|has| |t#1| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-133)) |%noBranch|) (IF (|has| |t#1| (-980)) (-15 -4126 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-507)) (PROGN (-15 -3519 ((-108) $)) (-15 -1699 ((-382 (-522)) $)) (-15 -2549 ((-3 (-382 (-522)) "failed") $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-338)) ((-37 |#1|) . T) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-338)) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-338)) (|has| |#1| (-266))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-208 |#1|) . T) ((-210) |has| |#1| (-210)) ((-220) |has| |#1| (-338)) ((-262 |#1| $) |has| |#1| (-262 |#1| |#1|)) ((-266) -3844 (|has| |#1| (-338)) (|has| |#1| (-266))) ((-285 |#1|) |has| |#1| (-285 |#1|)) ((-313 |#1|) . T) ((-352 |#1|) . T) ((-386 |#1|) . T) ((-483 (-1085) |#1|) |has| |#1| (-483 (-1085) |#1|)) ((-483 |#1| |#1|) |has| |#1| (-285 |#1|)) ((-590 #0#) |has| |#1| (-338)) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) |has| |#1| (-338)) ((-655 |#1|) . T) ((-664) . T) ((-784) |has| |#1| (-784)) ((-829 (-1085)) |has| |#1| (-829 (-1085))) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-977 #0#) |has| |#1| (-338)) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-338)) (|has| |#1| (-266))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
+((-3810 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
+(((-924 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3810 (|#3| (-1 |#4| |#2|) |#1|))) (-923 |#2|) (-157) (-923 |#4|) (-157)) (T -924))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-157)) (-4 *6 (-157)) (-4 *2 (-923 *6)) (-5 *1 (-924 *4 *5 *2 *6)) (-4 *4 (-923 *5)))))
+(-10 -7 (-15 -3810 (|#3| (-1 |#4| |#2|) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2025 ((|#1| $) 12)) (-2549 (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-507)))) (-3519 (((-108) $) NIL (|has| |#1| (-507)))) (-1699 (((-382 (-522)) $) NIL (|has| |#1| (-507)))) (-1875 (($ |#1| |#1| |#1| |#1|) 16)) (-2859 (((-108) $) NIL)) (-1269 ((|#1| $) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL (|has| |#1| (-338)))) (-2965 ((|#1| $) 15)) (-2412 ((|#1| $) 14)) (-1773 ((|#1| $) 13)) (-4174 (((-1032) $) NIL)) (-2330 (($ $ (-588 |#1|) (-588 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-285 |#1|))) (($ $ (-270 |#1|)) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-270 |#1|))) NIL (|has| |#1| (-285 |#1|))) (($ $ (-588 (-1085)) (-588 |#1|)) NIL (|has| |#1| (-483 (-1085) |#1|))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-483 (-1085) |#1|)))) (-2683 (($ $ |#1|) NIL (|has| |#1| (-262 |#1| |#1|)))) (-2731 (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3873 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2983 (($ $) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-338)) (|has| |#1| (-962 (-382 (-522))))))) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-4126 ((|#1| $) NIL (|has| |#1| (-980)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3697 (($) 8 T CONST)) (-3709 (($) 10 T CONST)) (-2252 (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-338))) (($ (-382 (-522)) $) NIL (|has| |#1| (-338)))))
(((-925 |#1|) (-923 |#1|) (-157)) (T -925))
NIL
(-923 |#1|)
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-4141 (((-108) $ (-708)) NIL)) (-3175 (($) NIL T CONST)) (-2070 (($ $) 20)) (-4092 (($ (-588 |#1|)) 29)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2517 (((-708) $) 22)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-2116 ((|#1| $) 24)) (-4095 (($ |#1| $) 15)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1698 ((|#1| $) 23)) (-4087 ((|#1| $) 19)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1965 ((|#1| |#1| $) 14)) (-3985 (((-108) $) 17)) (-3775 (($) NIL)) (-3650 ((|#1| $) 18)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-2795 (($ (-588 |#1|)) NIL)) (-2316 ((|#1| $) 26)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-926 |#1|) (-13 (-921 |#1|) (-10 -8 (-15 -4092 ($ (-588 |#1|))))) (-1014)) (T -926))
-((-4092 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-926 *3)))))
-(-13 (-921 |#1|) (-10 -8 (-15 -4092 ($ (-588 |#1|)))))
-((-1929 (($ $) 12)) (-1504 (($ $ (-522)) 13)))
-(((-927 |#1|) (-10 -8 (-15 -1929 (|#1| |#1|)) (-15 -1504 (|#1| |#1| (-522)))) (-928)) (T -927))
-NIL
-(-10 -8 (-15 -1929 (|#1| |#1|)) (-15 -1504 (|#1| |#1| (-522))))
-((-1929 (($ $) 6)) (-1504 (($ $ (-522)) 7)) (** (($ $ (-382 (-522))) 8)))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2717 (((-108) $ (-708)) NIL)) (-3367 (($) NIL T CONST)) (-2876 (($ $) 20)) (-3333 (($ (-588 |#1|)) 29)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-4030 (((-708) $) 22)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1431 ((|#1| $) 24)) (-3365 (($ |#1| $) 15)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-4056 ((|#1| $) 23)) (-3295 ((|#1| $) 19)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3036 ((|#1| |#1| $) 14)) (-3494 (((-108) $) 17)) (-3298 (($) NIL)) (-1402 ((|#1| $) 18)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-2501 (($ (-588 |#1|)) NIL)) (-2653 ((|#1| $) 26)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-926 |#1|) (-13 (-921 |#1|) (-10 -8 (-15 -3333 ($ (-588 |#1|))))) (-1014)) (T -926))
+((-3333 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-926 *3)))))
+(-13 (-921 |#1|) (-10 -8 (-15 -3333 ($ (-588 |#1|)))))
+((-2016 (($ $) 12)) (-1811 (($ $ (-522)) 13)))
+(((-927 |#1|) (-10 -8 (-15 -2016 (|#1| |#1|)) (-15 -1811 (|#1| |#1| (-522)))) (-928)) (T -927))
+NIL
+(-10 -8 (-15 -2016 (|#1| |#1|)) (-15 -1811 (|#1| |#1| (-522))))
+((-2016 (($ $) 6)) (-1811 (($ $ (-522)) 7)) (** (($ $ (-382 (-522))) 8)))
(((-928) (-1197)) (T -928))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-928)) (-5 *2 (-382 (-522))))) (-1504 (*1 *1 *1 *2) (-12 (-4 *1 (-928)) (-5 *2 (-522)))) (-1929 (*1 *1 *1) (-4 *1 (-928))))
-(-13 (-10 -8 (-15 -1929 ($ $)) (-15 -1504 ($ $ (-522))) (-15 ** ($ $ (-382 (-522))))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2375 (((-2 (|:| |num| (-1166 |#2|)) (|:| |den| |#2|)) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| (-382 |#2|) (-338)))) (-2022 (($ $) NIL (|has| (-382 |#2|) (-338)))) (-3739 (((-108) $) NIL (|has| (-382 |#2|) (-338)))) (-3174 (((-628 (-382 |#2|)) (-1166 $)) NIL) (((-628 (-382 |#2|))) NIL)) (-1865 (((-382 |#2|) $) NIL)) (-1398 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-382 |#2|) (-324)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL (|has| (-382 |#2|) (-338)))) (-3450 (((-393 $) $) NIL (|has| (-382 |#2|) (-338)))) (-1687 (((-108) $ $) NIL (|has| (-382 |#2|) (-338)))) (-1629 (((-708)) NIL (|has| (-382 |#2|) (-343)))) (-2472 (((-108)) NIL)) (-2898 (((-108) |#1|) 147) (((-108) |#2|) 152)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (|has| (-382 |#2|) (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-382 |#2|) (-962 (-382 (-522))))) (((-3 (-382 |#2|) "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| (-382 |#2|) (-962 (-522)))) (((-382 (-522)) $) NIL (|has| (-382 |#2|) (-962 (-382 (-522))))) (((-382 |#2|) $) NIL)) (-3766 (($ (-1166 (-382 |#2|)) (-1166 $)) NIL) (($ (-1166 (-382 |#2|))) 70) (($ (-1166 |#2|) |#2|) NIL)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-382 |#2|) (-324)))) (-2277 (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-2109 (((-628 (-382 |#2|)) $ (-1166 $)) NIL) (((-628 (-382 |#2|)) $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| (-382 |#2|) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-382 |#2|) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-382 |#2|))) (|:| |vec| (-1166 (-382 |#2|)))) (-628 $) (-1166 $)) NIL) (((-628 (-382 |#2|)) (-628 $)) NIL)) (-3642 (((-1166 $) (-1166 $)) NIL)) (-3864 (($ |#3|) 65) (((-3 $ "failed") (-382 |#3|)) NIL (|has| (-382 |#2|) (-338)))) (-2682 (((-3 $ "failed") $) NIL)) (-2017 (((-588 (-588 |#1|))) NIL (|has| |#1| (-343)))) (-1250 (((-108) |#1| |#1|) NIL)) (-3166 (((-850)) NIL)) (-3255 (($) NIL (|has| (-382 |#2|) (-343)))) (-3144 (((-108)) NIL)) (-1228 (((-108) |#1|) 56) (((-108) |#2|) 149)) (-2254 (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| (-382 |#2|) (-338)))) (-2071 (($ $) NIL)) (-1223 (($) NIL (|has| (-382 |#2|) (-324)))) (-2511 (((-108) $) NIL (|has| (-382 |#2|) (-324)))) (-2111 (($ $ (-708)) NIL (|has| (-382 |#2|) (-324))) (($ $) NIL (|has| (-382 |#2|) (-324)))) (-2813 (((-108) $) NIL (|has| (-382 |#2|) (-338)))) (-3714 (((-850) $) NIL (|has| (-382 |#2|) (-324))) (((-770 (-850)) $) NIL (|has| (-382 |#2|) (-324)))) (-2782 (((-108) $) NIL)) (-2397 (((-708)) NIL)) (-1538 (((-1166 $) (-1166 $)) NIL)) (-2100 (((-382 |#2|) $) NIL)) (-2653 (((-588 (-881 |#1|)) (-1085)) NIL (|has| |#1| (-338)))) (-3004 (((-3 $ "failed") $) NIL (|has| (-382 |#2|) (-324)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| (-382 |#2|) (-338)))) (-1712 ((|#3| $) NIL (|has| (-382 |#2|) (-338)))) (-2120 (((-850) $) NIL (|has| (-382 |#2|) (-343)))) (-3849 ((|#3| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| (-382 |#2|) (-338))) (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-2385 (((-1068) $) NIL)) (-3293 (((-628 (-382 |#2|))) 52)) (-4178 (((-628 (-382 |#2|))) 51)) (-3098 (($ $) NIL (|has| (-382 |#2|) (-338)))) (-1249 (($ (-1166 |#2|) |#2|) 71)) (-3189 (((-628 (-382 |#2|))) 50)) (-3319 (((-628 (-382 |#2|))) 49)) (-3041 (((-2 (|:| |num| (-628 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 86)) (-4066 (((-2 (|:| |num| (-1166 |#2|)) (|:| |den| |#2|)) $) 77)) (-4003 (((-1166 $)) 46)) (-3882 (((-1166 $)) 45)) (-2156 (((-108) $) NIL)) (-1332 (((-108) $) NIL) (((-108) $ |#1|) NIL) (((-108) $ |#2|) NIL)) (-3802 (($) NIL (|has| (-382 |#2|) (-324)) CONST)) (-2717 (($ (-850)) NIL (|has| (-382 |#2|) (-343)))) (-3117 (((-3 |#2| "failed")) 63)) (-4151 (((-1032) $) NIL)) (-3940 (((-708)) NIL)) (-1383 (($) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| (-382 |#2|) (-338)))) (-2259 (($ (-588 $)) NIL (|has| (-382 |#2|) (-338))) (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL (|has| (-382 |#2|) (-324)))) (-1916 (((-393 $) $) NIL (|has| (-382 |#2|) (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-382 |#2|) (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| (-382 |#2|) (-338)))) (-2232 (((-3 $ "failed") $ $) NIL (|has| (-382 |#2|) (-338)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| (-382 |#2|) (-338)))) (-3730 (((-708) $) NIL (|has| (-382 |#2|) (-338)))) (-2545 ((|#1| $ |#1| |#1|) NIL)) (-3157 (((-3 |#2| "failed")) 62)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| (-382 |#2|) (-338)))) (-2769 (((-382 |#2|) (-1166 $)) NIL) (((-382 |#2|)) 42)) (-3018 (((-708) $) NIL (|has| (-382 |#2|) (-324))) (((-3 (-708) "failed") $ $) NIL (|has| (-382 |#2|) (-324)))) (-2157 (($ $ (-1 (-382 |#2|) (-382 |#2|)) (-708)) NIL (|has| (-382 |#2|) (-338))) (($ $ (-1 (-382 |#2|) (-382 |#2|))) NIL (|has| (-382 |#2|) (-338))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-708)) NIL (-3708 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324)))) (($ $) NIL (-3708 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324))))) (-1859 (((-628 (-382 |#2|)) (-1166 $) (-1 (-382 |#2|) (-382 |#2|))) NIL (|has| (-382 |#2|) (-338)))) (-1479 ((|#3|) 53)) (-2581 (($) NIL (|has| (-382 |#2|) (-324)))) (-3677 (((-1166 (-382 |#2|)) $ (-1166 $)) NIL) (((-628 (-382 |#2|)) (-1166 $) (-1166 $)) NIL) (((-1166 (-382 |#2|)) $) 72) (((-628 (-382 |#2|)) (-1166 $)) NIL)) (-1431 (((-1166 (-382 |#2|)) $) NIL) (($ (-1166 (-382 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| (-382 |#2|) (-324)))) (-1634 (((-1166 $) (-1166 $)) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 |#2|)) NIL) (($ (-382 (-522))) NIL (-3708 (|has| (-382 |#2|) (-962 (-382 (-522)))) (|has| (-382 |#2|) (-338)))) (($ $) NIL (|has| (-382 |#2|) (-338)))) (-2143 (($ $) NIL (|has| (-382 |#2|) (-324))) (((-3 $ "failed") $) NIL (|has| (-382 |#2|) (-133)))) (-2051 ((|#3| $) NIL)) (-2323 (((-708)) NIL)) (-3532 (((-108)) 60)) (-4170 (((-108) |#1|) 153) (((-108) |#2|) 154)) (-3855 (((-1166 $)) 124)) (-3958 (((-108) $ $) NIL (|has| (-382 |#2|) (-338)))) (-3406 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2058 (((-108)) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| (-382 |#2|) (-338)))) (-3566 (($) 94 T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-1 (-382 |#2|) (-382 |#2|)) (-708)) NIL (|has| (-382 |#2|) (-338))) (($ $ (-1 (-382 |#2|) (-382 |#2|))) NIL (|has| (-382 |#2|) (-338))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-708)) NIL (-3708 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324)))) (($ $) NIL (-3708 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324))))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| (-382 |#2|) (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 |#2|)) NIL) (($ (-382 |#2|) $) NIL) (($ (-382 (-522)) $) NIL (|has| (-382 |#2|) (-338))) (($ $ (-382 (-522))) NIL (|has| (-382 |#2|) (-338)))))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-928)) (-5 *2 (-382 (-522))))) (-1811 (*1 *1 *1 *2) (-12 (-4 *1 (-928)) (-5 *2 (-522)))) (-2016 (*1 *1 *1) (-4 *1 (-928))))
+(-13 (-10 -8 (-15 -2016 ($ $)) (-15 -1811 ($ $ (-522))) (-15 ** ($ $ (-382 (-522))))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-1228 (((-2 (|:| |num| (-1166 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| (-382 |#2|) (-338)))) (-2298 (($ $) NIL (|has| (-382 |#2|) (-338)))) (-3007 (((-108) $) NIL (|has| (-382 |#2|) (-338)))) (-3356 (((-628 (-382 |#2|)) (-1166 $)) NIL) (((-628 (-382 |#2|))) NIL)) (-1945 (((-382 |#2|) $) NIL)) (-3833 (((-1094 (-850) (-708)) (-522)) NIL (|has| (-382 |#2|) (-324)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL (|has| (-382 |#2|) (-338)))) (-3133 (((-393 $) $) NIL (|has| (-382 |#2|) (-338)))) (-2805 (((-108) $ $) NIL (|has| (-382 |#2|) (-338)))) (-1685 (((-708)) NIL (|has| (-382 |#2|) (-343)))) (-2856 (((-108)) NIL)) (-1508 (((-108) |#1|) 147) (((-108) |#2|) 152)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (|has| (-382 |#2|) (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-382 |#2|) (-962 (-382 (-522))))) (((-3 (-382 |#2|) "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| (-382 |#2|) (-962 (-522)))) (((-382 (-522)) $) NIL (|has| (-382 |#2|) (-962 (-382 (-522))))) (((-382 |#2|) $) NIL)) (-3225 (($ (-1166 (-382 |#2|)) (-1166 $)) NIL) (($ (-1166 (-382 |#2|))) 70) (($ (-1166 |#2|) |#2|) NIL)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-382 |#2|) (-324)))) (-2333 (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-1359 (((-628 (-382 |#2|)) $ (-1166 $)) NIL) (((-628 (-382 |#2|)) $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| (-382 |#2|) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-382 |#2|) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-382 |#2|))) (|:| |vec| (-1166 (-382 |#2|)))) (-628 $) (-1166 $)) NIL) (((-628 (-382 |#2|)) (-628 $)) NIL)) (-1315 (((-1166 $) (-1166 $)) NIL)) (-2153 (($ |#3|) 65) (((-3 $ "failed") (-382 |#3|)) NIL (|has| (-382 |#2|) (-338)))) (-3920 (((-3 $ "failed") $) NIL)) (-2230 (((-588 (-588 |#1|))) NIL (|has| |#1| (-343)))) (-2477 (((-108) |#1| |#1|) NIL)) (-1692 (((-850)) NIL)) (-3344 (($) NIL (|has| (-382 |#2|) (-343)))) (-3148 (((-108)) NIL)) (-2207 (((-108) |#1|) 56) (((-108) |#2|) 149)) (-2303 (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| (-382 |#2|) (-338)))) (-2883 (($ $) NIL)) (-2160 (($) NIL (|has| (-382 |#2|) (-324)))) (-2087 (((-108) $) NIL (|has| (-382 |#2|) (-324)))) (-1380 (($ $ (-708)) NIL (|has| (-382 |#2|) (-324))) (($ $) NIL (|has| (-382 |#2|) (-324)))) (-2725 (((-108) $) NIL (|has| (-382 |#2|) (-338)))) (-3872 (((-850) $) NIL (|has| (-382 |#2|) (-324))) (((-770 (-850)) $) NIL (|has| (-382 |#2|) (-324)))) (-2859 (((-108) $) NIL)) (-1366 (((-708)) NIL)) (-3349 (((-1166 $) (-1166 $)) NIL)) (-1269 (((-382 |#2|) $) NIL)) (-1742 (((-588 (-881 |#1|)) (-1085)) NIL (|has| |#1| (-338)))) (-4208 (((-3 $ "failed") $) NIL (|has| (-382 |#2|) (-324)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| (-382 |#2|) (-338)))) (-4199 ((|#3| $) NIL (|has| (-382 |#2|) (-338)))) (-1475 (((-850) $) NIL (|has| (-382 |#2|) (-343)))) (-2142 ((|#3| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| (-382 |#2|) (-338))) (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-2311 (((-1068) $) NIL)) (-2094 (((-628 (-382 |#2|))) 52)) (-1791 (((-628 (-382 |#2|))) 51)) (-3193 (($ $) NIL (|has| (-382 |#2|) (-338)))) (-2464 (($ (-1166 |#2|) |#2|) 71)) (-2286 (((-628 (-382 |#2|))) 50)) (-4203 (((-628 (-382 |#2|))) 49)) (-3385 (((-2 (|:| |num| (-628 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 86)) (-3146 (((-2 (|:| |num| (-1166 |#2|)) (|:| |den| |#2|)) $) 77)) (-3664 (((-1166 $)) 46)) (-1886 (((-1166 $)) 45)) (-3142 (((-108) $) NIL)) (-2010 (((-108) $) NIL) (((-108) $ |#1|) NIL) (((-108) $ |#2|) NIL)) (-3937 (($) NIL (|has| (-382 |#2|) (-324)) CONST)) (-2882 (($ (-850)) NIL (|has| (-382 |#2|) (-343)))) (-2951 (((-3 |#2| "failed")) 63)) (-4174 (((-1032) $) NIL)) (-1243 (((-708)) NIL)) (-1368 (($) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| (-382 |#2|) (-338)))) (-2308 (($ (-588 $)) NIL (|has| (-382 |#2|) (-338))) (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL (|has| (-382 |#2|) (-324)))) (-2006 (((-393 $) $) NIL (|has| (-382 |#2|) (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-382 |#2|) (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| (-382 |#2|) (-338)))) (-2276 (((-3 $ "failed") $ $) NIL (|has| (-382 |#2|) (-338)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| (-382 |#2|) (-338)))) (-4031 (((-708) $) NIL (|has| (-382 |#2|) (-338)))) (-2683 ((|#1| $ |#1| |#1|) NIL)) (-3223 (((-3 |#2| "failed")) 62)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| (-382 |#2|) (-338)))) (-1615 (((-382 |#2|) (-1166 $)) NIL) (((-382 |#2|)) 42)) (-1304 (((-708) $) NIL (|has| (-382 |#2|) (-324))) (((-3 (-708) "failed") $ $) NIL (|has| (-382 |#2|) (-324)))) (-2731 (($ $ (-1 (-382 |#2|) (-382 |#2|)) (-708)) NIL (|has| (-382 |#2|) (-338))) (($ $ (-1 (-382 |#2|) (-382 |#2|))) NIL (|has| (-382 |#2|) (-338))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-708)) NIL (-3844 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324)))) (($ $) NIL (-3844 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324))))) (-2620 (((-628 (-382 |#2|)) (-1166 $) (-1 (-382 |#2|) (-382 |#2|))) NIL (|has| (-382 |#2|) (-338)))) (-1579 ((|#3|) 53)) (-2670 (($) NIL (|has| (-382 |#2|) (-324)))) (-3510 (((-1166 (-382 |#2|)) $ (-1166 $)) NIL) (((-628 (-382 |#2|)) (-1166 $) (-1166 $)) NIL) (((-1166 (-382 |#2|)) $) 72) (((-628 (-382 |#2|)) (-1166 $)) NIL)) (-3873 (((-1166 (-382 |#2|)) $) NIL) (($ (-1166 (-382 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| (-382 |#2|) (-324)))) (-2200 (((-1166 $) (-1166 $)) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 |#2|)) NIL) (($ (-382 (-522))) NIL (-3844 (|has| (-382 |#2|) (-962 (-382 (-522)))) (|has| (-382 |#2|) (-338)))) (($ $) NIL (|has| (-382 |#2|) (-338)))) (-3040 (($ $) NIL (|has| (-382 |#2|) (-324))) (((-3 $ "failed") $) NIL (|has| (-382 |#2|) (-133)))) (-2645 ((|#3| $) NIL)) (-2742 (((-708)) NIL)) (-2745 (((-108)) 60)) (-2950 (((-108) |#1|) 153) (((-108) |#2|) 154)) (-2905 (((-1166 $)) 124)) (-1407 (((-108) $ $) NIL (|has| (-382 |#2|) (-338)))) (-3827 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2747 (((-108)) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| (-382 |#2|) (-338)))) (-3697 (($) 94 T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-1 (-382 |#2|) (-382 |#2|)) (-708)) NIL (|has| (-382 |#2|) (-338))) (($ $ (-1 (-382 |#2|) (-382 |#2|))) NIL (|has| (-382 |#2|) (-338))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| (-382 |#2|) (-338)) (|has| (-382 |#2|) (-829 (-1085))))) (($ $ (-708)) NIL (-3844 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324)))) (($ $) NIL (-3844 (-12 (|has| (-382 |#2|) (-210)) (|has| (-382 |#2|) (-338))) (|has| (-382 |#2|) (-324))))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ $) NIL (|has| (-382 |#2|) (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| (-382 |#2|) (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 |#2|)) NIL) (($ (-382 |#2|) $) NIL) (($ (-382 (-522)) $) NIL (|has| (-382 |#2|) (-338))) (($ $ (-382 (-522))) NIL (|has| (-382 |#2|) (-338)))))
(((-929 |#1| |#2| |#3| |#4| |#5|) (-317 |#1| |#2| |#3|) (-1124) (-1142 |#1|) (-1142 (-382 |#2|)) (-382 |#2|) (-708)) (T -929))
NIL
(-317 |#1| |#2| |#3|)
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2074 (((-588 (-522)) $) 54)) (-4134 (($ (-588 (-522))) 62)) (-2229 (((-522) $) 40 (|has| (-522) (-283)))) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL (|has| (-522) (-757)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) 49) (((-3 (-1085) "failed") $) NIL (|has| (-522) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) 47 (|has| (-522) (-962 (-522)))) (((-3 (-522) "failed") $) 49 (|has| (-522) (-962 (-522))))) (-1484 (((-522) $) NIL) (((-1085) $) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-522) (-962 (-522)))) (((-522) $) NIL (|has| (-522) (-962 (-522))))) (-2277 (($ $ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3255 (($) NIL (|has| (-522) (-507)))) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-4129 (((-588 (-522)) $) 60)) (-3687 (((-108) $) NIL (|has| (-522) (-757)))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-522) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-522) (-815 (-354))))) (-2782 (((-108) $) NIL)) (-2902 (($ $) NIL)) (-2805 (((-522) $) 37)) (-3004 (((-3 $ "failed") $) NIL (|has| (-522) (-1061)))) (-2556 (((-108) $) NIL (|has| (-522) (-757)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2814 (($ $ $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| (-522) (-784)))) (-1391 (($ (-1 (-522) (-522)) $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL)) (-3802 (($) NIL (|has| (-522) (-1061)) CONST)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-3933 (($ $) NIL (|has| (-522) (-283))) (((-382 (-522)) $) 42)) (-4037 (((-1066 (-522)) $) 59)) (-2077 (($ (-588 (-522)) (-588 (-522))) 63)) (-3686 (((-522) $) 53 (|has| (-522) (-507)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-1916 (((-393 $) $) NIL)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2289 (($ $ (-588 (-522)) (-588 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-522) (-522)) NIL (|has| (-522) (-285 (-522)))) (($ $ (-270 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-270 (-522)))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-1085)) (-588 (-522))) NIL (|has| (-522) (-483 (-1085) (-522)))) (($ $ (-1085) (-522)) NIL (|has| (-522) (-483 (-1085) (-522))))) (-3730 (((-708) $) NIL)) (-2545 (($ $ (-522)) NIL (|has| (-522) (-262 (-522) (-522))))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2157 (($ $) 11 (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-3533 (($ $) NIL)) (-2816 (((-522) $) 39)) (-4100 (((-588 (-522)) $) 61)) (-1431 (((-821 (-522)) $) NIL (|has| (-522) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-522) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-522) (-563 (-498)))) (((-354) $) NIL (|has| (-522) (-947))) (((-202) $) NIL (|has| (-522) (-947)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-522) (-838))))) (-2190 (((-792) $) 77) (($ (-522)) 43) (($ $) NIL) (($ (-382 (-522))) 19) (($ (-522)) 43) (($ (-1085)) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) 17)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| (-522) (-838))) (|has| (-522) (-133))))) (-2323 (((-708)) 9)) (-3025 (((-522) $) 51 (|has| (-522) (-507)))) (-3958 (((-108) $ $) NIL)) (-2241 (($ $) NIL (|has| (-522) (-757)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 10 T CONST)) (-3577 (($) 12 T CONST)) (-2213 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-1574 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1558 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1531 (((-108) $ $) 14)) (-1566 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1549 (((-108) $ $) 33 (|has| (-522) (-784)))) (-1620 (($ $ $) 29) (($ (-522) (-522)) 31)) (-1612 (($ $) 15) (($ $ $) 22)) (-1602 (($ $ $) 20)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 25) (($ $ $) 27) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-522) $) 25) (($ $ (-522)) NIL)))
-(((-930 |#1|) (-13 (-919 (-522)) (-10 -8 (-15 -2190 ((-382 (-522)) $)) (-15 -3933 ((-382 (-522)) $)) (-15 -2074 ((-588 (-522)) $)) (-15 -4037 ((-1066 (-522)) $)) (-15 -4129 ((-588 (-522)) $)) (-15 -4100 ((-588 (-522)) $)) (-15 -4134 ($ (-588 (-522)))) (-15 -2077 ($ (-588 (-522)) (-588 (-522)))))) (-522)) (T -930))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-3933 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-2074 (*1 *2 *1) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-4037 (*1 *2 *1) (-12 (-5 *2 (-1066 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-4129 (*1 *2 *1) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-4100 (*1 *2 *1) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-4134 (*1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-2077 (*1 *1 *2 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
-(-13 (-919 (-522)) (-10 -8 (-15 -2190 ((-382 (-522)) $)) (-15 -3933 ((-382 (-522)) $)) (-15 -2074 ((-588 (-522)) $)) (-15 -4037 ((-1066 (-522)) $)) (-15 -4129 ((-588 (-522)) $)) (-15 -4100 ((-588 (-522)) $)) (-15 -4134 ($ (-588 (-522)))) (-15 -2077 ($ (-588 (-522)) (-588 (-522))))))
-((-2520 (((-51) (-382 (-522)) (-522)) 9)))
-(((-931) (-10 -7 (-15 -2520 ((-51) (-382 (-522)) (-522))))) (T -931))
-((-2520 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-522))) (-5 *4 (-522)) (-5 *2 (-51)) (-5 *1 (-931)))))
-(-10 -7 (-15 -2520 ((-51) (-382 (-522)) (-522))))
-((-1629 (((-522)) 13)) (-1683 (((-522)) 16)) (-3726 (((-1171) (-522)) 15)) (-3214 (((-522) (-522)) 17) (((-522)) 12)))
-(((-932) (-10 -7 (-15 -3214 ((-522))) (-15 -1629 ((-522))) (-15 -3214 ((-522) (-522))) (-15 -3726 ((-1171) (-522))) (-15 -1683 ((-522))))) (T -932))
-((-1683 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932)))) (-3726 (*1 *2 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-932)))) (-3214 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932)))) (-1629 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932)))) (-3214 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932)))))
-(-10 -7 (-15 -3214 ((-522))) (-15 -1629 ((-522))) (-15 -3214 ((-522) (-522))) (-15 -3726 ((-1171) (-522))) (-15 -1683 ((-522))))
-((-2571 (((-393 |#1|) |#1|) 40)) (-1916 (((-393 |#1|) |#1|) 39)))
-(((-933 |#1|) (-10 -7 (-15 -1916 ((-393 |#1|) |#1|)) (-15 -2571 ((-393 |#1|) |#1|))) (-1142 (-382 (-522)))) (T -933))
-((-2571 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-933 *3)) (-4 *3 (-1142 (-382 (-522)))))) (-1916 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-933 *3)) (-4 *3 (-1142 (-382 (-522)))))))
-(-10 -7 (-15 -1916 ((-393 |#1|) |#1|)) (-15 -2571 ((-393 |#1|) |#1|)))
-((-1664 (((-3 (-382 (-522)) "failed") |#1|) 14)) (-1770 (((-108) |#1|) 13)) (-1492 (((-382 (-522)) |#1|) 9)))
-(((-934 |#1|) (-10 -7 (-15 -1492 ((-382 (-522)) |#1|)) (-15 -1770 ((-108) |#1|)) (-15 -1664 ((-3 (-382 (-522)) "failed") |#1|))) (-962 (-382 (-522)))) (T -934))
-((-1664 (*1 *2 *3) (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-934 *3)) (-4 *3 (-962 *2)))) (-1770 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-934 *3)) (-4 *3 (-962 (-382 (-522)))))) (-1492 (*1 *2 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-934 *3)) (-4 *3 (-962 *2)))))
-(-10 -7 (-15 -1492 ((-382 (-522)) |#1|)) (-15 -1770 ((-108) |#1|)) (-15 -1664 ((-3 (-382 (-522)) "failed") |#1|)))
-((-2379 ((|#2| $ "value" |#2|) 12)) (-2545 ((|#2| $ "value") 10)) (-2425 (((-108) $ $) 18)))
-(((-935 |#1| |#2|) (-10 -8 (-15 -2379 (|#2| |#1| "value" |#2|)) (-15 -2425 ((-108) |#1| |#1|)) (-15 -2545 (|#2| |#1| "value"))) (-936 |#2|) (-1120)) (T -935))
-NIL
-(-10 -8 (-15 -2379 (|#2| |#1| "value" |#2|)) (-15 -2425 ((-108) |#1| |#1|)) (-15 -2545 (|#2| |#1| "value")))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3435 ((|#1| $) 48)) (-4141 (((-108) $ (-708)) 8)) (-3628 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-3175 (($) 7 T CONST)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) 50)) (-2030 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-1279 (((-588 |#1|) $) 45)) (-1754 (((-108) $) 49)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ "value") 47)) (-2011 (((-522) $ $) 44)) (-3042 (((-108) $) 46)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) 51)) (-2425 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-4057 (((-588 (-522)) $) 54)) (-2619 (($ (-588 (-522))) 62)) (-3049 (((-522) $) 40 (|has| (-522) (-283)))) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL (|has| (-522) (-757)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) 49) (((-3 (-1085) "failed") $) NIL (|has| (-522) (-962 (-1085)))) (((-3 (-382 (-522)) "failed") $) 47 (|has| (-522) (-962 (-522)))) (((-3 (-522) "failed") $) 49 (|has| (-522) (-962 (-522))))) (-1478 (((-522) $) NIL) (((-1085) $) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) NIL (|has| (-522) (-962 (-522)))) (((-522) $) NIL (|has| (-522) (-962 (-522))))) (-2333 (($ $ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| (-522) (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3344 (($) NIL (|has| (-522) (-507)))) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-2569 (((-588 (-522)) $) 60)) (-3603 (((-108) $) NIL (|has| (-522) (-757)))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (|has| (-522) (-815 (-522)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (|has| (-522) (-815 (-354))))) (-2859 (((-108) $) NIL)) (-1558 (($ $) NIL)) (-2947 (((-522) $) 37)) (-4208 (((-3 $ "failed") $) NIL (|has| (-522) (-1061)))) (-3740 (((-108) $) NIL (|has| (-522) (-757)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1308 (($ $ $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| (-522) (-784)))) (-3810 (($ (-1 (-522) (-522)) $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL)) (-3937 (($) NIL (|has| (-522) (-1061)) CONST)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-4194 (($ $) NIL (|has| (-522) (-283))) (((-382 (-522)) $) 42)) (-4019 (((-1066 (-522)) $) 59)) (-4083 (($ (-588 (-522)) (-588 (-522))) 63)) (-3592 (((-522) $) 53 (|has| (-522) (-507)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| (-522) (-838)))) (-2006 (((-393 $) $) NIL)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2330 (($ $ (-588 (-522)) (-588 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-522) (-522)) NIL (|has| (-522) (-285 (-522)))) (($ $ (-270 (-522))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-270 (-522)))) NIL (|has| (-522) (-285 (-522)))) (($ $ (-588 (-1085)) (-588 (-522))) NIL (|has| (-522) (-483 (-1085) (-522)))) (($ $ (-1085) (-522)) NIL (|has| (-522) (-483 (-1085) (-522))))) (-4031 (((-708) $) NIL)) (-2683 (($ $ (-522)) NIL (|has| (-522) (-262 (-522) (-522))))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2731 (($ $) 11 (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-2762 (($ $) NIL)) (-2959 (((-522) $) 39)) (-3404 (((-588 (-522)) $) 61)) (-3873 (((-821 (-522)) $) NIL (|has| (-522) (-563 (-821 (-522))))) (((-821 (-354)) $) NIL (|has| (-522) (-563 (-821 (-354))))) (((-498) $) NIL (|has| (-522) (-563 (-498)))) (((-354) $) NIL (|has| (-522) (-947))) (((-202) $) NIL (|has| (-522) (-947)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-522) (-838))))) (-2217 (((-792) $) 77) (($ (-522)) 43) (($ $) NIL) (($ (-382 (-522))) 19) (($ (-522)) 43) (($ (-1085)) NIL (|has| (-522) (-962 (-1085)))) (((-382 (-522)) $) 17)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| (-522) (-838))) (|has| (-522) (-133))))) (-2742 (((-708)) 9)) (-1379 (((-522) $) 51 (|has| (-522) (-507)))) (-1407 (((-108) $ $) NIL)) (-4126 (($ $) NIL (|has| (-522) (-757)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 10 T CONST)) (-3709 (($) 12 T CONST)) (-2252 (($ $) NIL (|has| (-522) (-210))) (($ $ (-708)) NIL (|has| (-522) (-210))) (($ $ (-1085)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| (-522) (-829 (-1085)))) (($ $ (-1 (-522) (-522)) (-708)) NIL) (($ $ (-1 (-522) (-522))) NIL)) (-1623 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1597 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1562 (((-108) $ $) 14)) (-1609 (((-108) $ $) NIL (|has| (-522) (-784)))) (-1587 (((-108) $ $) 33 (|has| (-522) (-784)))) (-1682 (($ $ $) 29) (($ (-522) (-522)) 31)) (-1672 (($ $) 15) (($ $ $) 22)) (-1661 (($ $ $) 20)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 25) (($ $ $) 27) (($ $ (-382 (-522))) NIL) (($ (-382 (-522)) $) NIL) (($ (-522) $) 25) (($ $ (-522)) NIL)))
+(((-930 |#1|) (-13 (-919 (-522)) (-10 -8 (-15 -2217 ((-382 (-522)) $)) (-15 -4194 ((-382 (-522)) $)) (-15 -4057 ((-588 (-522)) $)) (-15 -4019 ((-1066 (-522)) $)) (-15 -2569 ((-588 (-522)) $)) (-15 -3404 ((-588 (-522)) $)) (-15 -2619 ($ (-588 (-522)))) (-15 -4083 ($ (-588 (-522)) (-588 (-522)))))) (-522)) (T -930))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-4194 (*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-4057 (*1 *2 *1) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-4019 (*1 *2 *1) (-12 (-5 *2 (-1066 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-2569 (*1 *2 *1) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-3404 (*1 *2 *1) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-2619 (*1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))) (-4083 (*1 *1 *2 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
+(-13 (-919 (-522)) (-10 -8 (-15 -2217 ((-382 (-522)) $)) (-15 -4194 ((-382 (-522)) $)) (-15 -4057 ((-588 (-522)) $)) (-15 -4019 ((-1066 (-522)) $)) (-15 -2569 ((-588 (-522)) $)) (-15 -3404 ((-588 (-522)) $)) (-15 -2619 ($ (-588 (-522)))) (-15 -4083 ($ (-588 (-522)) (-588 (-522))))))
+((-2150 (((-51) (-382 (-522)) (-522)) 9)))
+(((-931) (-10 -7 (-15 -2150 ((-51) (-382 (-522)) (-522))))) (T -931))
+((-2150 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-522))) (-5 *4 (-522)) (-5 *2 (-51)) (-5 *1 (-931)))))
+(-10 -7 (-15 -2150 ((-51) (-382 (-522)) (-522))))
+((-1685 (((-522)) 13)) (-2759 (((-522)) 16)) (-3997 (((-1171) (-522)) 15)) (-2586 (((-522) (-522)) 17) (((-522)) 12)))
+(((-932) (-10 -7 (-15 -2586 ((-522))) (-15 -1685 ((-522))) (-15 -2586 ((-522) (-522))) (-15 -3997 ((-1171) (-522))) (-15 -2759 ((-522))))) (T -932))
+((-2759 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932)))) (-3997 (*1 *2 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-932)))) (-2586 (*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932)))) (-1685 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932)))) (-2586 (*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932)))))
+(-10 -7 (-15 -2586 ((-522))) (-15 -1685 ((-522))) (-15 -2586 ((-522) (-522))) (-15 -3997 ((-1171) (-522))) (-15 -2759 ((-522))))
+((-3903 (((-393 |#1|) |#1|) 40)) (-2006 (((-393 |#1|) |#1|) 39)))
+(((-933 |#1|) (-10 -7 (-15 -2006 ((-393 |#1|) |#1|)) (-15 -3903 ((-393 |#1|) |#1|))) (-1142 (-382 (-522)))) (T -933))
+((-3903 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-933 *3)) (-4 *3 (-1142 (-382 (-522)))))) (-2006 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-933 *3)) (-4 *3 (-1142 (-382 (-522)))))))
+(-10 -7 (-15 -2006 ((-393 |#1|) |#1|)) (-15 -3903 ((-393 |#1|) |#1|)))
+((-2549 (((-3 (-382 (-522)) "failed") |#1|) 14)) (-3519 (((-108) |#1|) 13)) (-1699 (((-382 (-522)) |#1|) 9)))
+(((-934 |#1|) (-10 -7 (-15 -1699 ((-382 (-522)) |#1|)) (-15 -3519 ((-108) |#1|)) (-15 -2549 ((-3 (-382 (-522)) "failed") |#1|))) (-962 (-382 (-522)))) (T -934))
+((-2549 (*1 *2 *3) (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-934 *3)) (-4 *3 (-962 *2)))) (-3519 (*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-934 *3)) (-4 *3 (-962 (-382 (-522)))))) (-1699 (*1 *2 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-934 *3)) (-4 *3 (-962 *2)))))
+(-10 -7 (-15 -1699 ((-382 (-522)) |#1|)) (-15 -3519 ((-108) |#1|)) (-15 -2549 ((-3 (-382 (-522)) "failed") |#1|)))
+((-2437 ((|#2| $ "value" |#2|) 12)) (-2683 ((|#2| $ "value") 10)) (-3294 (((-108) $ $) 18)))
+(((-935 |#1| |#2|) (-10 -8 (-15 -2437 (|#2| |#1| "value" |#2|)) (-15 -3294 ((-108) |#1| |#1|)) (-15 -2683 (|#2| |#1| "value"))) (-936 |#2|) (-1120)) (T -935))
+NIL
+(-10 -8 (-15 -2437 (|#2| |#1| "value" |#2|)) (-15 -3294 ((-108) |#1| |#1|)) (-15 -2683 (|#2| |#1| "value")))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3526 ((|#1| $) 48)) (-2717 (((-108) $ (-708)) 8)) (-1198 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-3367 (($) 7 T CONST)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) 50)) (-2402 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2548 (((-588 |#1|) $) 45)) (-3394 (((-108) $) 49)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ "value") 47)) (-3381 (((-522) $ $) 44)) (-3395 (((-108) $) 46)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) 51)) (-3294 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-936 |#1|) (-1197) (-1120)) (T -936))
-((-1749 (*1 *2 *1) (-12 (-4 *3 (-1120)) (-5 *2 (-588 *1)) (-4 *1 (-936 *3)))) (-4138 (*1 *2 *1) (-12 (-4 *3 (-1120)) (-5 *2 (-588 *1)) (-4 *1 (-936 *3)))) (-1754 (*1 *2 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))) (-3435 (*1 *2 *1) (-12 (-4 *1 (-936 *2)) (-4 *2 (-1120)))) (-2545 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-936 *2)) (-4 *2 (-1120)))) (-3042 (*1 *2 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))) (-1279 (*1 *2 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-588 *3)))) (-2011 (*1 *2 *1 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-522)))) (-2425 (*1 *2 *1 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-108)))) (-2030 (*1 *2 *1 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-108)))) (-1268 (*1 *1 *1 *2) (-12 (-5 *2 (-588 *1)) (|has| *1 (-6 -4239)) (-4 *1 (-936 *3)) (-4 *3 (-1120)))) (-2379 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4239)) (-4 *1 (-936 *2)) (-4 *2 (-1120)))) (-3628 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-936 *2)) (-4 *2 (-1120)))))
-(-13 (-461 |t#1|) (-10 -8 (-15 -1749 ((-588 $) $)) (-15 -4138 ((-588 $) $)) (-15 -1754 ((-108) $)) (-15 -3435 (|t#1| $)) (-15 -2545 (|t#1| $ "value")) (-15 -3042 ((-108) $)) (-15 -1279 ((-588 |t#1|) $)) (-15 -2011 ((-522) $ $)) (IF (|has| |t#1| (-1014)) (PROGN (-15 -2425 ((-108) $ $)) (-15 -2030 ((-108) $ $))) |%noBranch|) (IF (|has| $ (-6 -4239)) (PROGN (-15 -1268 ($ $ (-588 $))) (-15 -2379 (|t#1| $ "value" |t#1|)) (-15 -3628 (|t#1| $ |t#1|))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-1929 (($ $) 9) (($ $ (-708)) 43) (($ (-382 (-522))) 12) (($ (-522)) 15)) (-3944 (((-3 $ "failed") (-1081 $) (-850) (-792)) 23) (((-3 $ "failed") (-1081 $) (-850)) 28)) (-1504 (($ $ (-522)) 49)) (-2323 (((-708)) 16)) (-2479 (((-588 $) (-1081 $)) NIL) (((-588 $) (-1081 (-382 (-522)))) 54) (((-588 $) (-1081 (-522))) 59) (((-588 $) (-881 $)) 63) (((-588 $) (-881 (-382 (-522)))) 67) (((-588 $) (-881 (-522))) 71)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL) (($ $ (-382 (-522))) 47)))
-(((-937 |#1|) (-10 -8 (-15 -1929 (|#1| (-522))) (-15 -1929 (|#1| (-382 (-522)))) (-15 -1929 (|#1| |#1| (-708))) (-15 -2479 ((-588 |#1|) (-881 (-522)))) (-15 -2479 ((-588 |#1|) (-881 (-382 (-522))))) (-15 -2479 ((-588 |#1|) (-881 |#1|))) (-15 -2479 ((-588 |#1|) (-1081 (-522)))) (-15 -2479 ((-588 |#1|) (-1081 (-382 (-522))))) (-15 -2479 ((-588 |#1|) (-1081 |#1|))) (-15 -3944 ((-3 |#1| "failed") (-1081 |#1|) (-850))) (-15 -3944 ((-3 |#1| "failed") (-1081 |#1|) (-850) (-792))) (-15 ** (|#1| |#1| (-382 (-522)))) (-15 -1504 (|#1| |#1| (-522))) (-15 -1929 (|#1| |#1|)) (-15 ** (|#1| |#1| (-522))) (-15 -2323 ((-708))) (-15 ** (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-850)))) (-938)) (T -937))
-((-2323 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
-(-10 -8 (-15 -1929 (|#1| (-522))) (-15 -1929 (|#1| (-382 (-522)))) (-15 -1929 (|#1| |#1| (-708))) (-15 -2479 ((-588 |#1|) (-881 (-522)))) (-15 -2479 ((-588 |#1|) (-881 (-382 (-522))))) (-15 -2479 ((-588 |#1|) (-881 |#1|))) (-15 -2479 ((-588 |#1|) (-1081 (-522)))) (-15 -2479 ((-588 |#1|) (-1081 (-382 (-522))))) (-15 -2479 ((-588 |#1|) (-1081 |#1|))) (-15 -3944 ((-3 |#1| "failed") (-1081 |#1|) (-850))) (-15 -3944 ((-3 |#1| "failed") (-1081 |#1|) (-850) (-792))) (-15 ** (|#1| |#1| (-382 (-522)))) (-15 -1504 (|#1| |#1| (-522))) (-15 -1929 (|#1| |#1|)) (-15 ** (|#1| |#1| (-522))) (-15 -2323 ((-708))) (-15 ** (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-850))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 89)) (-2022 (($ $) 90)) (-3739 (((-108) $) 92)) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 109)) (-3450 (((-393 $) $) 110)) (-1929 (($ $) 73) (($ $ (-708)) 59) (($ (-382 (-522))) 58) (($ (-522)) 57)) (-1687 (((-108) $ $) 100)) (-1341 (((-522) $) 127)) (-3175 (($) 17 T CONST)) (-3944 (((-3 $ "failed") (-1081 $) (-850) (-792)) 67) (((-3 $ "failed") (-1081 $) (-850)) 66)) (-1297 (((-3 (-522) "failed") $) 85 (|has| (-382 (-522)) (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 83 (|has| (-382 (-522)) (-962 (-382 (-522))))) (((-3 (-382 (-522)) "failed") $) 81)) (-1484 (((-522) $) 86 (|has| (-382 (-522)) (-962 (-522)))) (((-382 (-522)) $) 84 (|has| (-382 (-522)) (-962 (-382 (-522))))) (((-382 (-522)) $) 80)) (-2691 (($ $ (-792)) 56)) (-2356 (($ $ (-792)) 55)) (-2277 (($ $ $) 104)) (-2682 (((-3 $ "failed") $) 34)) (-2254 (($ $ $) 103)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 98)) (-2813 (((-108) $) 111)) (-3687 (((-108) $) 125)) (-2782 (((-108) $) 31)) (-1504 (($ $ (-522)) 72)) (-2556 (((-108) $) 126)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 107)) (-2814 (($ $ $) 124)) (-2446 (($ $ $) 123)) (-3634 (((-3 (-1081 $) "failed") $) 68)) (-2624 (((-3 (-792) "failed") $) 70)) (-1290 (((-3 (-1081 $) "failed") $) 69)) (-2224 (($ (-588 $)) 96) (($ $ $) 95)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 112)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 97)) (-2259 (($ (-588 $)) 94) (($ $ $) 93)) (-1916 (((-393 $) $) 108)) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 106) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 105)) (-2232 (((-3 $ "failed") $ $) 88)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 99)) (-3730 (((-708) $) 101)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 102)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 117) (($ $) 87) (($ (-382 (-522))) 82) (($ (-522)) 79) (($ (-382 (-522))) 76)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 91)) (-3898 (((-382 (-522)) $ $) 54)) (-2479 (((-588 $) (-1081 $)) 65) (((-588 $) (-1081 (-382 (-522)))) 64) (((-588 $) (-1081 (-522))) 63) (((-588 $) (-881 $)) 62) (((-588 $) (-881 (-382 (-522)))) 61) (((-588 $) (-881 (-522))) 60)) (-2241 (($ $) 128)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 113)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1574 (((-108) $ $) 121)) (-1558 (((-108) $ $) 120)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 122)) (-1549 (((-108) $ $) 119)) (-1620 (($ $ $) 118)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 114) (($ $ (-382 (-522))) 71)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ (-382 (-522)) $) 116) (($ $ (-382 (-522))) 115) (($ (-522) $) 78) (($ $ (-522)) 77) (($ (-382 (-522)) $) 75) (($ $ (-382 (-522))) 74)))
+((-1515 (*1 *2 *1) (-12 (-4 *3 (-1120)) (-5 *2 (-588 *1)) (-4 *1 (-936 *3)))) (-2674 (*1 *2 *1) (-12 (-4 *3 (-1120)) (-5 *2 (-588 *1)) (-4 *1 (-936 *3)))) (-3394 (*1 *2 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))) (-3526 (*1 *2 *1) (-12 (-4 *1 (-936 *2)) (-4 *2 (-1120)))) (-2683 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-936 *2)) (-4 *2 (-1120)))) (-3395 (*1 *2 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))) (-2548 (*1 *2 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-588 *3)))) (-3381 (*1 *2 *1 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-522)))) (-3294 (*1 *2 *1 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-108)))) (-2402 (*1 *2 *1 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-108)))) (-2684 (*1 *1 *1 *2) (-12 (-5 *2 (-588 *1)) (|has| *1 (-6 -4239)) (-4 *1 (-936 *3)) (-4 *3 (-1120)))) (-2437 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4239)) (-4 *1 (-936 *2)) (-4 *2 (-1120)))) (-1198 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-936 *2)) (-4 *2 (-1120)))))
+(-13 (-461 |t#1|) (-10 -8 (-15 -1515 ((-588 $) $)) (-15 -2674 ((-588 $) $)) (-15 -3394 ((-108) $)) (-15 -3526 (|t#1| $)) (-15 -2683 (|t#1| $ "value")) (-15 -3395 ((-108) $)) (-15 -2548 ((-588 |t#1|) $)) (-15 -3381 ((-522) $ $)) (IF (|has| |t#1| (-1014)) (PROGN (-15 -3294 ((-108) $ $)) (-15 -2402 ((-108) $ $))) |%noBranch|) (IF (|has| $ (-6 -4239)) (PROGN (-15 -2684 ($ $ (-588 $))) (-15 -2437 (|t#1| $ "value" |t#1|)) (-15 -1198 (|t#1| $ |t#1|))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-2016 (($ $) 9) (($ $ (-708)) 43) (($ (-382 (-522))) 12) (($ (-522)) 15)) (-1275 (((-3 $ "failed") (-1081 $) (-850) (-792)) 23) (((-3 $ "failed") (-1081 $) (-850)) 28)) (-1811 (($ $ (-522)) 49)) (-2742 (((-708)) 16)) (-3068 (((-588 $) (-1081 $)) NIL) (((-588 $) (-1081 (-382 (-522)))) 54) (((-588 $) (-1081 (-522))) 59) (((-588 $) (-881 $)) 63) (((-588 $) (-881 (-382 (-522)))) 67) (((-588 $) (-881 (-522))) 71)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL) (($ $ (-382 (-522))) 47)))
+(((-937 |#1|) (-10 -8 (-15 -2016 (|#1| (-522))) (-15 -2016 (|#1| (-382 (-522)))) (-15 -2016 (|#1| |#1| (-708))) (-15 -3068 ((-588 |#1|) (-881 (-522)))) (-15 -3068 ((-588 |#1|) (-881 (-382 (-522))))) (-15 -3068 ((-588 |#1|) (-881 |#1|))) (-15 -3068 ((-588 |#1|) (-1081 (-522)))) (-15 -3068 ((-588 |#1|) (-1081 (-382 (-522))))) (-15 -3068 ((-588 |#1|) (-1081 |#1|))) (-15 -1275 ((-3 |#1| "failed") (-1081 |#1|) (-850))) (-15 -1275 ((-3 |#1| "failed") (-1081 |#1|) (-850) (-792))) (-15 ** (|#1| |#1| (-382 (-522)))) (-15 -1811 (|#1| |#1| (-522))) (-15 -2016 (|#1| |#1|)) (-15 ** (|#1| |#1| (-522))) (-15 -2742 ((-708))) (-15 ** (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-850)))) (-938)) (T -937))
+((-2742 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
+(-10 -8 (-15 -2016 (|#1| (-522))) (-15 -2016 (|#1| (-382 (-522)))) (-15 -2016 (|#1| |#1| (-708))) (-15 -3068 ((-588 |#1|) (-881 (-522)))) (-15 -3068 ((-588 |#1|) (-881 (-382 (-522))))) (-15 -3068 ((-588 |#1|) (-881 |#1|))) (-15 -3068 ((-588 |#1|) (-1081 (-522)))) (-15 -3068 ((-588 |#1|) (-1081 (-382 (-522))))) (-15 -3068 ((-588 |#1|) (-1081 |#1|))) (-15 -1275 ((-3 |#1| "failed") (-1081 |#1|) (-850))) (-15 -1275 ((-3 |#1| "failed") (-1081 |#1|) (-850) (-792))) (-15 ** (|#1| |#1| (-382 (-522)))) (-15 -1811 (|#1| |#1| (-522))) (-15 -2016 (|#1| |#1|)) (-15 ** (|#1| |#1| (-522))) (-15 -2742 ((-708))) (-15 ** (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-850))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 89)) (-2298 (($ $) 90)) (-3007 (((-108) $) 92)) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 109)) (-3133 (((-393 $) $) 110)) (-2016 (($ $) 73) (($ $ (-708)) 59) (($ (-382 (-522))) 58) (($ (-522)) 57)) (-2805 (((-108) $ $) 100)) (-3355 (((-522) $) 127)) (-3367 (($) 17 T CONST)) (-1275 (((-3 $ "failed") (-1081 $) (-850) (-792)) 67) (((-3 $ "failed") (-1081 $) (-850)) 66)) (-3700 (((-3 (-522) "failed") $) 85 (|has| (-382 (-522)) (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 83 (|has| (-382 (-522)) (-962 (-382 (-522))))) (((-3 (-382 (-522)) "failed") $) 81)) (-1478 (((-522) $) 86 (|has| (-382 (-522)) (-962 (-522)))) (((-382 (-522)) $) 84 (|has| (-382 (-522)) (-962 (-382 (-522))))) (((-382 (-522)) $) 80)) (-2173 (($ $ (-792)) 56)) (-1942 (($ $ (-792)) 55)) (-2333 (($ $ $) 104)) (-3920 (((-3 $ "failed") $) 34)) (-2303 (($ $ $) 103)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 98)) (-2725 (((-108) $) 111)) (-3603 (((-108) $) 125)) (-2859 (((-108) $) 31)) (-1811 (($ $ (-522)) 72)) (-3740 (((-108) $) 126)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 107)) (-1308 (($ $ $) 124)) (-2524 (($ $ $) 123)) (-1247 (((-3 (-1081 $) "failed") $) 68)) (-1748 (((-3 (-792) "failed") $) 70)) (-1622 (((-3 (-1081 $) "failed") $) 69)) (-2267 (($ (-588 $)) 96) (($ $ $) 95)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 112)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 97)) (-2308 (($ (-588 $)) 94) (($ $ $) 93)) (-2006 (((-393 $) $) 108)) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 106) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 105)) (-2276 (((-3 $ "failed") $ $) 88)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 99)) (-4031 (((-708) $) 101)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 102)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 117) (($ $) 87) (($ (-382 (-522))) 82) (($ (-522)) 79) (($ (-382 (-522))) 76)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 91)) (-3996 (((-382 (-522)) $ $) 54)) (-3068 (((-588 $) (-1081 $)) 65) (((-588 $) (-1081 (-382 (-522)))) 64) (((-588 $) (-1081 (-522))) 63) (((-588 $) (-881 $)) 62) (((-588 $) (-881 (-382 (-522)))) 61) (((-588 $) (-881 (-522))) 60)) (-4126 (($ $) 128)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 113)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1623 (((-108) $ $) 121)) (-1597 (((-108) $ $) 120)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 122)) (-1587 (((-108) $ $) 119)) (-1682 (($ $ $) 118)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 114) (($ $ (-382 (-522))) 71)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ (-382 (-522)) $) 116) (($ $ (-382 (-522))) 115) (($ (-522) $) 78) (($ $ (-522)) 77) (($ (-382 (-522)) $) 75) (($ $ (-382 (-522))) 74)))
(((-938) (-1197)) (T -938))
-((-1929 (*1 *1 *1) (-4 *1 (-938))) (-2624 (*1 *2 *1) (|partial| -12 (-4 *1 (-938)) (-5 *2 (-792)))) (-1290 (*1 *2 *1) (|partial| -12 (-5 *2 (-1081 *1)) (-4 *1 (-938)))) (-3634 (*1 *2 *1) (|partial| -12 (-5 *2 (-1081 *1)) (-4 *1 (-938)))) (-3944 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1081 *1)) (-5 *3 (-850)) (-5 *4 (-792)) (-4 *1 (-938)))) (-3944 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1081 *1)) (-5 *3 (-850)) (-4 *1 (-938)))) (-2479 (*1 *2 *3) (-12 (-5 *3 (-1081 *1)) (-4 *1 (-938)) (-5 *2 (-588 *1)))) (-2479 (*1 *2 *3) (-12 (-5 *3 (-1081 (-382 (-522)))) (-5 *2 (-588 *1)) (-4 *1 (-938)))) (-2479 (*1 *2 *3) (-12 (-5 *3 (-1081 (-522))) (-5 *2 (-588 *1)) (-4 *1 (-938)))) (-2479 (*1 *2 *3) (-12 (-5 *3 (-881 *1)) (-4 *1 (-938)) (-5 *2 (-588 *1)))) (-2479 (*1 *2 *3) (-12 (-5 *3 (-881 (-382 (-522)))) (-5 *2 (-588 *1)) (-4 *1 (-938)))) (-2479 (*1 *2 *3) (-12 (-5 *3 (-881 (-522))) (-5 *2 (-588 *1)) (-4 *1 (-938)))) (-1929 (*1 *1 *1 *2) (-12 (-4 *1 (-938)) (-5 *2 (-708)))) (-1929 (*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-4 *1 (-938)))) (-1929 (*1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-938)))) (-2691 (*1 *1 *1 *2) (-12 (-4 *1 (-938)) (-5 *2 (-792)))) (-2356 (*1 *1 *1 *2) (-12 (-4 *1 (-938)) (-5 *2 (-792)))) (-3898 (*1 *2 *1 *1) (-12 (-4 *1 (-938)) (-5 *2 (-382 (-522))))))
-(-13 (-135) (-782) (-157) (-338) (-386 (-382 (-522))) (-37 (-522)) (-37 (-382 (-522))) (-928) (-10 -8 (-15 -2624 ((-3 (-792) "failed") $)) (-15 -1290 ((-3 (-1081 $) "failed") $)) (-15 -3634 ((-3 (-1081 $) "failed") $)) (-15 -3944 ((-3 $ "failed") (-1081 $) (-850) (-792))) (-15 -3944 ((-3 $ "failed") (-1081 $) (-850))) (-15 -2479 ((-588 $) (-1081 $))) (-15 -2479 ((-588 $) (-1081 (-382 (-522))))) (-15 -2479 ((-588 $) (-1081 (-522)))) (-15 -2479 ((-588 $) (-881 $))) (-15 -2479 ((-588 $) (-881 (-382 (-522))))) (-15 -2479 ((-588 $) (-881 (-522)))) (-15 -1929 ($ $ (-708))) (-15 -1929 ($ $)) (-15 -1929 ($ (-382 (-522)))) (-15 -1929 ($ (-522))) (-15 -2691 ($ $ (-792))) (-15 -2356 ($ $ (-792))) (-15 -3898 ((-382 (-522)) $ $))))
+((-2016 (*1 *1 *1) (-4 *1 (-938))) (-1748 (*1 *2 *1) (|partial| -12 (-4 *1 (-938)) (-5 *2 (-792)))) (-1622 (*1 *2 *1) (|partial| -12 (-5 *2 (-1081 *1)) (-4 *1 (-938)))) (-1247 (*1 *2 *1) (|partial| -12 (-5 *2 (-1081 *1)) (-4 *1 (-938)))) (-1275 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1081 *1)) (-5 *3 (-850)) (-5 *4 (-792)) (-4 *1 (-938)))) (-1275 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1081 *1)) (-5 *3 (-850)) (-4 *1 (-938)))) (-3068 (*1 *2 *3) (-12 (-5 *3 (-1081 *1)) (-4 *1 (-938)) (-5 *2 (-588 *1)))) (-3068 (*1 *2 *3) (-12 (-5 *3 (-1081 (-382 (-522)))) (-5 *2 (-588 *1)) (-4 *1 (-938)))) (-3068 (*1 *2 *3) (-12 (-5 *3 (-1081 (-522))) (-5 *2 (-588 *1)) (-4 *1 (-938)))) (-3068 (*1 *2 *3) (-12 (-5 *3 (-881 *1)) (-4 *1 (-938)) (-5 *2 (-588 *1)))) (-3068 (*1 *2 *3) (-12 (-5 *3 (-881 (-382 (-522)))) (-5 *2 (-588 *1)) (-4 *1 (-938)))) (-3068 (*1 *2 *3) (-12 (-5 *3 (-881 (-522))) (-5 *2 (-588 *1)) (-4 *1 (-938)))) (-2016 (*1 *1 *1 *2) (-12 (-4 *1 (-938)) (-5 *2 (-708)))) (-2016 (*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-4 *1 (-938)))) (-2016 (*1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-938)))) (-2173 (*1 *1 *1 *2) (-12 (-4 *1 (-938)) (-5 *2 (-792)))) (-1942 (*1 *1 *1 *2) (-12 (-4 *1 (-938)) (-5 *2 (-792)))) (-3996 (*1 *2 *1 *1) (-12 (-4 *1 (-938)) (-5 *2 (-382 (-522))))))
+(-13 (-135) (-782) (-157) (-338) (-386 (-382 (-522))) (-37 (-522)) (-37 (-382 (-522))) (-928) (-10 -8 (-15 -1748 ((-3 (-792) "failed") $)) (-15 -1622 ((-3 (-1081 $) "failed") $)) (-15 -1247 ((-3 (-1081 $) "failed") $)) (-15 -1275 ((-3 $ "failed") (-1081 $) (-850) (-792))) (-15 -1275 ((-3 $ "failed") (-1081 $) (-850))) (-15 -3068 ((-588 $) (-1081 $))) (-15 -3068 ((-588 $) (-1081 (-382 (-522))))) (-15 -3068 ((-588 $) (-1081 (-522)))) (-15 -3068 ((-588 $) (-881 $))) (-15 -3068 ((-588 $) (-881 (-382 (-522))))) (-15 -3068 ((-588 $) (-881 (-522)))) (-15 -2016 ($ $ (-708))) (-15 -2016 ($ $)) (-15 -2016 ($ (-382 (-522)))) (-15 -2016 ($ (-522))) (-15 -2173 ($ $ (-792))) (-15 -1942 ($ $ (-792))) (-15 -3996 ((-382 (-522)) $ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 #1=(-522)) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 #1# #1#) . T) ((-107 $ $) . T) ((-124) . T) ((-135) . T) ((-562 (-792)) . T) ((-157) . T) ((-220) . T) ((-266) . T) ((-283) . T) ((-338) . T) ((-386 (-382 (-522))) . T) ((-426) . T) ((-514) . T) ((-590 #0#) . T) ((-590 #1#) . T) ((-590 $) . T) ((-655 #0#) . T) ((-655 #1#) . T) ((-655 $) . T) ((-664) . T) ((-728) . T) ((-729) . T) ((-731) . T) ((-732) . T) ((-782) . T) ((-784) . T) ((-849) . T) ((-928) . T) ((-962 (-382 (-522))) . T) ((-962 (-522)) |has| (-382 (-522)) (-962 (-522))) ((-977 #0#) . T) ((-977 #1#) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) . T))
-((-3902 (((-2 (|:| |ans| |#2|) (|:| -1924 |#2|) (|:| |sol?| (-108))) (-522) |#2| |#2| (-1085) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-588 |#2|)) (-1 (-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 62)))
-(((-939 |#1| |#2|) (-10 -7 (-15 -3902 ((-2 (|:| |ans| |#2|) (|:| -1924 |#2|) (|:| |sol?| (-108))) (-522) |#2| |#2| (-1085) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-588 |#2|)) (-1 (-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-27) (-405 |#1|))) (T -939))
-((-3902 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1085)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-588 *4))) (-5 *7 (-1 (-3 (-2 (|:| -1856 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1106) (-27) (-405 *8))) (-4 *8 (-13 (-426) (-784) (-135) (-962 *3) (-584 *3))) (-5 *3 (-522)) (-5 *2 (-2 (|:| |ans| *4) (|:| -1924 *4) (|:| |sol?| (-108)))) (-5 *1 (-939 *8 *4)))))
-(-10 -7 (-15 -3902 ((-2 (|:| |ans| |#2|) (|:| -1924 |#2|) (|:| |sol?| (-108))) (-522) |#2| |#2| (-1085) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-588 |#2|)) (-1 (-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-3596 (((-3 (-588 |#2|) "failed") (-522) |#2| |#2| |#2| (-1085) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-588 |#2|)) (-1 (-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 47)))
-(((-940 |#1| |#2|) (-10 -7 (-15 -3596 ((-3 (-588 |#2|) "failed") (-522) |#2| |#2| |#2| (-1085) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-588 |#2|)) (-1 (-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-27) (-405 |#1|))) (T -940))
-((-3596 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1085)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-588 *4))) (-5 *7 (-1 (-3 (-2 (|:| -1856 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1106) (-27) (-405 *8))) (-4 *8 (-13 (-426) (-784) (-135) (-962 *3) (-584 *3))) (-5 *3 (-522)) (-5 *2 (-588 *4)) (-5 *1 (-940 *8 *4)))))
-(-10 -7 (-15 -3596 ((-3 (-588 |#2|) "failed") (-522) |#2| |#2| |#2| (-1085) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-588 |#2|)) (-1 (-3 (-2 (|:| -1856 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-1782 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-108)))) (|:| -3197 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-522)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-522) (-1 |#2| |#2|)) 30)) (-3284 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-382 |#2|)) (|:| |c| (-382 |#2|)) (|:| -1639 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-1 |#2| |#2|)) 57)) (-3227 (((-2 (|:| |ans| (-382 |#2|)) (|:| |nosol| (-108))) (-382 |#2|) (-382 |#2|)) 62)))
-(((-941 |#1| |#2|) (-10 -7 (-15 -3284 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-382 |#2|)) (|:| |c| (-382 |#2|)) (|:| -1639 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-1 |#2| |#2|))) (-15 -3227 ((-2 (|:| |ans| (-382 |#2|)) (|:| |nosol| (-108))) (-382 |#2|) (-382 |#2|))) (-15 -1782 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-108)))) (|:| -3197 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-522)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-522) (-1 |#2| |#2|)))) (-13 (-338) (-135) (-962 (-522))) (-1142 |#1|)) (T -941))
-((-1782 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1142 *6)) (-4 *6 (-13 (-338) (-135) (-962 *4))) (-5 *4 (-522)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-108)))) (|:| -3197 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-941 *6 *3)))) (-3227 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-338) (-135) (-962 (-522)))) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| |ans| (-382 *5)) (|:| |nosol| (-108)))) (-5 *1 (-941 *4 *5)) (-5 *3 (-382 *5)))) (-3284 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-382 *6)) (|:| |c| (-382 *6)) (|:| -1639 *6))) (-5 *1 (-941 *5 *6)) (-5 *3 (-382 *6)))))
-(-10 -7 (-15 -3284 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-382 |#2|)) (|:| |c| (-382 |#2|)) (|:| -1639 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-1 |#2| |#2|))) (-15 -3227 ((-2 (|:| |ans| (-382 |#2|)) (|:| |nosol| (-108))) (-382 |#2|) (-382 |#2|))) (-15 -1782 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-108)))) (|:| -3197 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-522)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-522) (-1 |#2| |#2|))))
-((-4072 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-382 |#2|)) (|:| |h| |#2|) (|:| |c1| (-382 |#2|)) (|:| |c2| (-382 |#2|)) (|:| -1639 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|) (-1 |#2| |#2|)) 22)) (-2568 (((-3 (-588 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|)) 32)))
-(((-942 |#1| |#2|) (-10 -7 (-15 -4072 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-382 |#2|)) (|:| |h| |#2|) (|:| |c1| (-382 |#2|)) (|:| |c2| (-382 |#2|)) (|:| -1639 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|) (-1 |#2| |#2|))) (-15 -2568 ((-3 (-588 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|)))) (-13 (-338) (-135) (-962 (-522))) (-1142 |#1|)) (T -942))
-((-2568 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-338) (-135) (-962 (-522)))) (-4 *5 (-1142 *4)) (-5 *2 (-588 (-382 *5))) (-5 *1 (-942 *4 *5)) (-5 *3 (-382 *5)))) (-4072 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-382 *6)) (|:| |h| *6) (|:| |c1| (-382 *6)) (|:| |c2| (-382 *6)) (|:| -1639 *6))) (-5 *1 (-942 *5 *6)) (-5 *3 (-382 *6)))))
-(-10 -7 (-15 -4072 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-382 |#2|)) (|:| |h| |#2|) (|:| |c1| (-382 |#2|)) (|:| |c2| (-382 |#2|)) (|:| -1639 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|) (-1 |#2| |#2|))) (-15 -2568 ((-3 (-588 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|))))
-((-4156 (((-1 |#1|) (-588 (-2 (|:| -3435 |#1|) (|:| -3152 (-522))))) 37)) (-3666 (((-1 |#1|) (-1016 |#1|)) 45)) (-2276 (((-1 |#1|) (-1166 |#1|) (-1166 (-522)) (-522)) 34)))
-(((-943 |#1|) (-10 -7 (-15 -3666 ((-1 |#1|) (-1016 |#1|))) (-15 -4156 ((-1 |#1|) (-588 (-2 (|:| -3435 |#1|) (|:| -3152 (-522)))))) (-15 -2276 ((-1 |#1|) (-1166 |#1|) (-1166 (-522)) (-522)))) (-1014)) (T -943))
-((-2276 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1166 *6)) (-5 *4 (-1166 (-522))) (-5 *5 (-522)) (-4 *6 (-1014)) (-5 *2 (-1 *6)) (-5 *1 (-943 *6)))) (-4156 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -3435 *4) (|:| -3152 (-522))))) (-4 *4 (-1014)) (-5 *2 (-1 *4)) (-5 *1 (-943 *4)))) (-3666 (*1 *2 *3) (-12 (-5 *3 (-1016 *4)) (-4 *4 (-1014)) (-5 *2 (-1 *4)) (-5 *1 (-943 *4)))))
-(-10 -7 (-15 -3666 ((-1 |#1|) (-1016 |#1|))) (-15 -4156 ((-1 |#1|) (-588 (-2 (|:| -3435 |#1|) (|:| -3152 (-522)))))) (-15 -2276 ((-1 |#1|) (-1166 |#1|) (-1166 (-522)) (-522))))
-((-3714 (((-708) (-311 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
-(((-944 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3714 ((-708) (-311 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|) (-13 (-343) (-338))) (T -944))
-((-3714 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-311 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-338)) (-4 *7 (-1142 *6)) (-4 *4 (-1142 (-382 *7))) (-4 *8 (-317 *6 *7 *4)) (-4 *9 (-13 (-343) (-338))) (-5 *2 (-708)) (-5 *1 (-944 *6 *7 *4 *8 *9)))))
-(-10 -7 (-15 -3714 ((-708) (-311 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
-((-1499 (((-3 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) "failed") |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) 31) (((-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-382 (-522))) 28)) (-3699 (((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-382 (-522))) 33) (((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-382 (-522))) 29) (((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) 32) (((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1|) 27)) (-2685 (((-588 (-382 (-522))) (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) 19)) (-3094 (((-382 (-522)) (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) 16)))
-(((-945 |#1|) (-10 -7 (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1|)) (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-382 (-522)))) (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-382 (-522)))) (-15 -1499 ((-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-382 (-522)))) (-15 -1499 ((-3 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) "failed") |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-15 -3094 ((-382 (-522)) (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-15 -2685 ((-588 (-382 (-522))) (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))))) (-1142 (-522))) (T -945))
-((-2685 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-5 *2 (-588 (-382 (-522)))) (-5 *1 (-945 *4)) (-4 *4 (-1142 (-522))))) (-3094 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) (-5 *2 (-382 (-522))) (-5 *1 (-945 *4)) (-4 *4 (-1142 (-522))))) (-1499 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))))) (-1499 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) (-5 *4 (-382 (-522))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))))) (-3699 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-382 (-522))) (-5 *2 (-588 (-2 (|:| -1913 *5) (|:| -1924 *5)))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))) (-5 *4 (-2 (|:| -1913 *5) (|:| -1924 *5))))) (-3699 (*1 *2 *3 *4) (-12 (-5 *2 (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))) (-5 *4 (-382 (-522))))) (-3699 (*1 *2 *3 *4) (-12 (-5 *2 (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))) (-5 *4 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))) (-3699 (*1 *2 *3) (-12 (-5 *2 (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))))))
-(-10 -7 (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1|)) (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-382 (-522)))) (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-382 (-522)))) (-15 -1499 ((-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-382 (-522)))) (-15 -1499 ((-3 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) "failed") |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-15 -3094 ((-382 (-522)) (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-15 -2685 ((-588 (-382 (-522))) (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))))
-((-1499 (((-3 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) "failed") |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) 35) (((-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-382 (-522))) 32)) (-3699 (((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-382 (-522))) 30) (((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-382 (-522))) 26) (((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) 28) (((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1|) 24)))
-(((-946 |#1|) (-10 -7 (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1|)) (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-382 (-522)))) (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-382 (-522)))) (-15 -1499 ((-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-382 (-522)))) (-15 -1499 ((-3 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) "failed") |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))) (-1142 (-382 (-522)))) (T -946))
-((-1499 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) (-5 *1 (-946 *3)) (-4 *3 (-1142 (-382 (-522)))))) (-1499 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) (-5 *4 (-382 (-522))) (-5 *1 (-946 *3)) (-4 *3 (-1142 *4)))) (-3699 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-382 (-522))) (-5 *2 (-588 (-2 (|:| -1913 *5) (|:| -1924 *5)))) (-5 *1 (-946 *3)) (-4 *3 (-1142 *5)) (-5 *4 (-2 (|:| -1913 *5) (|:| -1924 *5))))) (-3699 (*1 *2 *3 *4) (-12 (-5 *4 (-382 (-522))) (-5 *2 (-588 (-2 (|:| -1913 *4) (|:| -1924 *4)))) (-5 *1 (-946 *3)) (-4 *3 (-1142 *4)))) (-3699 (*1 *2 *3 *4) (-12 (-5 *2 (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-5 *1 (-946 *3)) (-4 *3 (-1142 (-382 (-522)))) (-5 *4 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))) (-3699 (*1 *2 *3) (-12 (-5 *2 (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-5 *1 (-946 *3)) (-4 *3 (-1142 (-382 (-522)))))))
-(-10 -7 (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1|)) (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))) (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-382 (-522)))) (-15 -3699 ((-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-382 (-522)))) (-15 -1499 ((-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-382 (-522)))) (-15 -1499 ((-3 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) "failed") |#1| (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))) (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))))
-((-1431 (((-202) $) 6) (((-354) $) 9)))
+((-2050 (((-2 (|:| |ans| |#2|) (|:| -2002 |#2|) (|:| |sol?| (-108))) (-522) |#2| |#2| (-1085) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-588 |#2|)) (-1 (-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 62)))
+(((-939 |#1| |#2|) (-10 -7 (-15 -2050 ((-2 (|:| |ans| |#2|) (|:| -2002 |#2|) (|:| |sol?| (-108))) (-522) |#2| |#2| (-1085) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-588 |#2|)) (-1 (-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-27) (-405 |#1|))) (T -939))
+((-2050 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1085)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-588 *4))) (-5 *7 (-1 (-3 (-2 (|:| -2585 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1106) (-27) (-405 *8))) (-4 *8 (-13 (-426) (-784) (-135) (-962 *3) (-584 *3))) (-5 *3 (-522)) (-5 *2 (-2 (|:| |ans| *4) (|:| -2002 *4) (|:| |sol?| (-108)))) (-5 *1 (-939 *8 *4)))))
+(-10 -7 (-15 -2050 ((-2 (|:| |ans| |#2|) (|:| -2002 |#2|) (|:| |sol?| (-108))) (-522) |#2| |#2| (-1085) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-588 |#2|)) (-1 (-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-2062 (((-3 (-588 |#2|) "failed") (-522) |#2| |#2| |#2| (-1085) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-588 |#2|)) (-1 (-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 47)))
+(((-940 |#1| |#2|) (-10 -7 (-15 -2062 ((-3 (-588 |#2|) "failed") (-522) |#2| |#2| |#2| (-1085) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-588 |#2|)) (-1 (-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))) (-13 (-1106) (-27) (-405 |#1|))) (T -940))
+((-2062 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1085)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-588 *4))) (-5 *7 (-1 (-3 (-2 (|:| -2585 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1106) (-27) (-405 *8))) (-4 *8 (-13 (-426) (-784) (-135) (-962 *3) (-584 *3))) (-5 *3 (-522)) (-5 *2 (-588 *4)) (-5 *1 (-940 *8 *4)))))
+(-10 -7 (-15 -2062 ((-3 (-588 |#2|) "failed") (-522) |#2| |#2| |#2| (-1085) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-588 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-588 |#2|)) (-1 (-3 (-2 (|:| -2585 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-3613 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-108)))) (|:| -3277 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-522)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-522) (-1 |#2| |#2|)) 30)) (-2017 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-382 |#2|)) (|:| |c| (-382 |#2|)) (|:| -1704 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-1 |#2| |#2|)) 57)) (-2752 (((-2 (|:| |ans| (-382 |#2|)) (|:| |nosol| (-108))) (-382 |#2|) (-382 |#2|)) 62)))
+(((-941 |#1| |#2|) (-10 -7 (-15 -2017 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-382 |#2|)) (|:| |c| (-382 |#2|)) (|:| -1704 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-1 |#2| |#2|))) (-15 -2752 ((-2 (|:| |ans| (-382 |#2|)) (|:| |nosol| (-108))) (-382 |#2|) (-382 |#2|))) (-15 -3613 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-108)))) (|:| -3277 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-522)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-522) (-1 |#2| |#2|)))) (-13 (-338) (-135) (-962 (-522))) (-1142 |#1|)) (T -941))
+((-3613 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1142 *6)) (-4 *6 (-13 (-338) (-135) (-962 *4))) (-5 *4 (-522)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-108)))) (|:| -3277 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-941 *6 *3)))) (-2752 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-338) (-135) (-962 (-522)))) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| |ans| (-382 *5)) (|:| |nosol| (-108)))) (-5 *1 (-941 *4 *5)) (-5 *3 (-382 *5)))) (-2017 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-382 *6)) (|:| |c| (-382 *6)) (|:| -1704 *6))) (-5 *1 (-941 *5 *6)) (-5 *3 (-382 *6)))))
+(-10 -7 (-15 -2017 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-382 |#2|)) (|:| |c| (-382 |#2|)) (|:| -1704 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-1 |#2| |#2|))) (-15 -2752 ((-2 (|:| |ans| (-382 |#2|)) (|:| |nosol| (-108))) (-382 |#2|) (-382 |#2|))) (-15 -3613 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-108)))) (|:| -3277 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-522)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-522) (-1 |#2| |#2|))))
+((-3191 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-382 |#2|)) (|:| |h| |#2|) (|:| |c1| (-382 |#2|)) (|:| |c2| (-382 |#2|)) (|:| -1704 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|) (-1 |#2| |#2|)) 22)) (-3878 (((-3 (-588 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|)) 32)))
+(((-942 |#1| |#2|) (-10 -7 (-15 -3191 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-382 |#2|)) (|:| |h| |#2|) (|:| |c1| (-382 |#2|)) (|:| |c2| (-382 |#2|)) (|:| -1704 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|) (-1 |#2| |#2|))) (-15 -3878 ((-3 (-588 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|)))) (-13 (-338) (-135) (-962 (-522))) (-1142 |#1|)) (T -942))
+((-3878 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-338) (-135) (-962 (-522)))) (-4 *5 (-1142 *4)) (-5 *2 (-588 (-382 *5))) (-5 *1 (-942 *4 *5)) (-5 *3 (-382 *5)))) (-3191 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-382 *6)) (|:| |h| *6) (|:| |c1| (-382 *6)) (|:| |c2| (-382 *6)) (|:| -1704 *6))) (-5 *1 (-942 *5 *6)) (-5 *3 (-382 *6)))))
+(-10 -7 (-15 -3191 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-382 |#2|)) (|:| |h| |#2|) (|:| |c1| (-382 |#2|)) (|:| |c2| (-382 |#2|)) (|:| -1704 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|) (-1 |#2| |#2|))) (-15 -3878 ((-3 (-588 (-382 |#2|)) "failed") (-382 |#2|) (-382 |#2|) (-382 |#2|))))
+((-2860 (((-1 |#1|) (-588 (-2 (|:| -3526 |#1|) (|:| -3192 (-522))))) 37)) (-1577 (((-1 |#1|) (-1016 |#1|)) 45)) (-2244 (((-1 |#1|) (-1166 |#1|) (-1166 (-522)) (-522)) 34)))
+(((-943 |#1|) (-10 -7 (-15 -1577 ((-1 |#1|) (-1016 |#1|))) (-15 -2860 ((-1 |#1|) (-588 (-2 (|:| -3526 |#1|) (|:| -3192 (-522)))))) (-15 -2244 ((-1 |#1|) (-1166 |#1|) (-1166 (-522)) (-522)))) (-1014)) (T -943))
+((-2244 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1166 *6)) (-5 *4 (-1166 (-522))) (-5 *5 (-522)) (-4 *6 (-1014)) (-5 *2 (-1 *6)) (-5 *1 (-943 *6)))) (-2860 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -3526 *4) (|:| -3192 (-522))))) (-4 *4 (-1014)) (-5 *2 (-1 *4)) (-5 *1 (-943 *4)))) (-1577 (*1 *2 *3) (-12 (-5 *3 (-1016 *4)) (-4 *4 (-1014)) (-5 *2 (-1 *4)) (-5 *1 (-943 *4)))))
+(-10 -7 (-15 -1577 ((-1 |#1|) (-1016 |#1|))) (-15 -2860 ((-1 |#1|) (-588 (-2 (|:| -3526 |#1|) (|:| -3192 (-522)))))) (-15 -2244 ((-1 |#1|) (-1166 |#1|) (-1166 (-522)) (-522))))
+((-3872 (((-708) (-311 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
+(((-944 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3872 ((-708) (-311 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-338) (-1142 |#1|) (-1142 (-382 |#2|)) (-317 |#1| |#2| |#3|) (-13 (-343) (-338))) (T -944))
+((-3872 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-311 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-338)) (-4 *7 (-1142 *6)) (-4 *4 (-1142 (-382 *7))) (-4 *8 (-317 *6 *7 *4)) (-4 *9 (-13 (-343) (-338))) (-5 *2 (-708)) (-5 *1 (-944 *6 *7 *4 *8 *9)))))
+(-10 -7 (-15 -3872 ((-708) (-311 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
+((-1776 (((-3 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) "failed") |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) 31) (((-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-382 (-522))) 28)) (-3711 (((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-382 (-522))) 33) (((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-382 (-522))) 29) (((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) 32) (((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1|) 27)) (-3955 (((-588 (-382 (-522))) (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) 19)) (-3848 (((-382 (-522)) (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) 16)))
+(((-945 |#1|) (-10 -7 (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1|)) (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-382 (-522)))) (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-382 (-522)))) (-15 -1776 ((-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-382 (-522)))) (-15 -1776 ((-3 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) "failed") |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-15 -3848 ((-382 (-522)) (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-15 -3955 ((-588 (-382 (-522))) (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))))) (-1142 (-522))) (T -945))
+((-3955 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-5 *2 (-588 (-382 (-522)))) (-5 *1 (-945 *4)) (-4 *4 (-1142 (-522))))) (-3848 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) (-5 *2 (-382 (-522))) (-5 *1 (-945 *4)) (-4 *4 (-1142 (-522))))) (-1776 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))))) (-1776 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) (-5 *4 (-382 (-522))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))))) (-3711 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-382 (-522))) (-5 *2 (-588 (-2 (|:| -1993 *5) (|:| -2002 *5)))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))) (-5 *4 (-2 (|:| -1993 *5) (|:| -2002 *5))))) (-3711 (*1 *2 *3 *4) (-12 (-5 *2 (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))) (-5 *4 (-382 (-522))))) (-3711 (*1 *2 *3 *4) (-12 (-5 *2 (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))) (-5 *4 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))) (-3711 (*1 *2 *3) (-12 (-5 *2 (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))))))
+(-10 -7 (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1|)) (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-382 (-522)))) (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-382 (-522)))) (-15 -1776 ((-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-382 (-522)))) (-15 -1776 ((-3 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) "failed") |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-15 -3848 ((-382 (-522)) (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-15 -3955 ((-588 (-382 (-522))) (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))))
+((-1776 (((-3 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) "failed") |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) 35) (((-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-382 (-522))) 32)) (-3711 (((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-382 (-522))) 30) (((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-382 (-522))) 26) (((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) 28) (((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1|) 24)))
+(((-946 |#1|) (-10 -7 (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1|)) (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-382 (-522)))) (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-382 (-522)))) (-15 -1776 ((-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-382 (-522)))) (-15 -1776 ((-3 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) "failed") |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))) (-1142 (-382 (-522)))) (T -946))
+((-1776 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) (-5 *1 (-946 *3)) (-4 *3 (-1142 (-382 (-522)))))) (-1776 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) (-5 *4 (-382 (-522))) (-5 *1 (-946 *3)) (-4 *3 (-1142 *4)))) (-3711 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-382 (-522))) (-5 *2 (-588 (-2 (|:| -1993 *5) (|:| -2002 *5)))) (-5 *1 (-946 *3)) (-4 *3 (-1142 *5)) (-5 *4 (-2 (|:| -1993 *5) (|:| -2002 *5))))) (-3711 (*1 *2 *3 *4) (-12 (-5 *4 (-382 (-522))) (-5 *2 (-588 (-2 (|:| -1993 *4) (|:| -2002 *4)))) (-5 *1 (-946 *3)) (-4 *3 (-1142 *4)))) (-3711 (*1 *2 *3 *4) (-12 (-5 *2 (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-5 *1 (-946 *3)) (-4 *3 (-1142 (-382 (-522)))) (-5 *4 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))) (-3711 (*1 *2 *3) (-12 (-5 *2 (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-5 *1 (-946 *3)) (-4 *3 (-1142 (-382 (-522)))))))
+(-10 -7 (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1|)) (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))) (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-382 (-522)))) (-15 -3711 ((-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-382 (-522)))) (-15 -1776 ((-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-382 (-522)))) (-15 -1776 ((-3 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) "failed") |#1| (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))) (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))))
+((-3873 (((-202) $) 6) (((-354) $) 9)))
(((-947) (-1197)) (T -947))
NIL
(-13 (-563 (-202)) (-563 (-354)))
(((-563 (-202)) . T) ((-563 (-354)) . T))
-((-3426 (((-588 (-354)) (-881 (-522)) (-354)) 27) (((-588 (-354)) (-881 (-382 (-522))) (-354)) 26)) (-3866 (((-588 (-588 (-354))) (-588 (-881 (-522))) (-588 (-1085)) (-354)) 36)))
-(((-948) (-10 -7 (-15 -3426 ((-588 (-354)) (-881 (-382 (-522))) (-354))) (-15 -3426 ((-588 (-354)) (-881 (-522)) (-354))) (-15 -3866 ((-588 (-588 (-354))) (-588 (-881 (-522))) (-588 (-1085)) (-354))))) (T -948))
-((-3866 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-588 (-1085))) (-5 *2 (-588 (-588 (-354)))) (-5 *1 (-948)) (-5 *5 (-354)))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-881 (-522))) (-5 *2 (-588 (-354))) (-5 *1 (-948)) (-5 *4 (-354)))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-881 (-382 (-522)))) (-5 *2 (-588 (-354))) (-5 *1 (-948)) (-5 *4 (-354)))))
-(-10 -7 (-15 -3426 ((-588 (-354)) (-881 (-382 (-522))) (-354))) (-15 -3426 ((-588 (-354)) (-881 (-522)) (-354))) (-15 -3866 ((-588 (-588 (-354))) (-588 (-881 (-522))) (-588 (-1085)) (-354))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 70)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1929 (($ $) NIL) (($ $ (-708)) NIL) (($ (-382 (-522))) NIL) (($ (-522)) NIL)) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) 65)) (-3175 (($) NIL T CONST)) (-3944 (((-3 $ "failed") (-1081 $) (-850) (-792)) NIL) (((-3 $ "failed") (-1081 $) (-850)) 49)) (-1297 (((-3 (-382 (-522)) "failed") $) NIL (|has| (-382 (-522)) (-962 (-382 (-522))))) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#1| "failed") $) 108) (((-3 (-522) "failed") $) NIL (-3708 (|has| (-382 (-522)) (-962 (-522))) (|has| |#1| (-962 (-522)))))) (-1484 (((-382 (-522)) $) 14 (|has| (-382 (-522)) (-962 (-382 (-522))))) (((-382 (-522)) $) 14) ((|#1| $) 109) (((-522) $) NIL (-3708 (|has| (-382 (-522)) (-962 (-522))) (|has| |#1| (-962 (-522)))))) (-2691 (($ $ (-792)) 40)) (-2356 (($ $ (-792)) 41)) (-2277 (($ $ $) NIL)) (-3971 (((-382 (-522)) $ $) 18)) (-2682 (((-3 $ "failed") $) 83)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-3687 (((-108) $) 60)) (-2782 (((-108) $) NIL)) (-1504 (($ $ (-522)) NIL)) (-2556 (((-108) $) 63)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-3634 (((-3 (-1081 $) "failed") $) 78)) (-2624 (((-3 (-792) "failed") $) 77)) (-1290 (((-3 (-1081 $) "failed") $) 75)) (-1561 (((-3 (-981 $ (-1081 $)) "failed") $) 73)) (-2224 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 84)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ (-588 $)) NIL) (($ $ $) NIL)) (-1916 (((-393 $) $) NIL)) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2190 (((-792) $) 82) (($ (-522)) NIL) (($ (-382 (-522))) NIL) (($ $) 57) (($ (-382 (-522))) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL) (($ |#1|) 111)) (-2323 (((-708)) NIL)) (-3958 (((-108) $ $) NIL)) (-3898 (((-382 (-522)) $ $) 24)) (-2479 (((-588 $) (-1081 $)) 55) (((-588 $) (-1081 (-382 (-522)))) NIL) (((-588 $) (-1081 (-522))) NIL) (((-588 $) (-881 $)) NIL) (((-588 $) (-881 (-382 (-522)))) NIL) (((-588 $) (-881 (-522))) NIL)) (-4060 (($ (-981 $ (-1081 $)) (-792)) 39)) (-2241 (($ $) 19)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3566 (($) 28 T CONST)) (-3577 (($) 34 T CONST)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 71)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 21)) (-1620 (($ $ $) 32)) (-1612 (($ $) 33) (($ $ $) 69)) (-1602 (($ $ $) 104)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL) (($ $ (-382 (-522))) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 92) (($ $ $) 97) (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL) (($ (-522) $) 92) (($ $ (-522)) NIL) (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL) (($ |#1| $) 96) (($ $ |#1|) NIL)))
-(((-949 |#1|) (-13 (-938) (-386 |#1|) (-37 |#1|) (-10 -8 (-15 -4060 ($ (-981 $ (-1081 $)) (-792))) (-15 -1561 ((-3 (-981 $ (-1081 $)) "failed") $)) (-15 -3971 ((-382 (-522)) $ $)))) (-13 (-782) (-338) (-947))) (T -949))
-((-4060 (*1 *1 *2 *3) (-12 (-5 *2 (-981 (-949 *4) (-1081 (-949 *4)))) (-5 *3 (-792)) (-5 *1 (-949 *4)) (-4 *4 (-13 (-782) (-338) (-947))))) (-1561 (*1 *2 *1) (|partial| -12 (-5 *2 (-981 (-949 *3) (-1081 (-949 *3)))) (-5 *1 (-949 *3)) (-4 *3 (-13 (-782) (-338) (-947))))) (-3971 (*1 *2 *1 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-949 *3)) (-4 *3 (-13 (-782) (-338) (-947))))))
-(-13 (-938) (-386 |#1|) (-37 |#1|) (-10 -8 (-15 -4060 ($ (-981 $ (-1081 $)) (-792))) (-15 -1561 ((-3 (-981 $ (-1081 $)) "failed") $)) (-15 -3971 ((-382 (-522)) $ $))))
-((-2760 (((-2 (|:| -3197 |#2|) (|:| -1420 (-588 |#1|))) |#2| (-588 |#1|)) 20) ((|#2| |#2| |#1|) 15)))
-(((-950 |#1| |#2|) (-10 -7 (-15 -2760 (|#2| |#2| |#1|)) (-15 -2760 ((-2 (|:| -3197 |#2|) (|:| -1420 (-588 |#1|))) |#2| (-588 |#1|)))) (-338) (-598 |#1|)) (T -950))
-((-2760 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-5 *2 (-2 (|:| -3197 *3) (|:| -1420 (-588 *5)))) (-5 *1 (-950 *5 *3)) (-5 *4 (-588 *5)) (-4 *3 (-598 *5)))) (-2760 (*1 *2 *2 *3) (-12 (-4 *3 (-338)) (-5 *1 (-950 *3 *2)) (-4 *2 (-598 *3)))))
-(-10 -7 (-15 -2760 (|#2| |#2| |#1|)) (-15 -2760 ((-2 (|:| -3197 |#2|) (|:| -1420 (-588 |#1|))) |#2| (-588 |#1|))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-2642 ((|#1| $ |#1|) 14)) (-2379 ((|#1| $ |#1|) 12)) (-1377 (($ |#1|) 10)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2545 ((|#1| $) 11)) (-3257 ((|#1| $) 13)) (-2190 (((-792) $) 21 (|has| |#1| (-1014)))) (-1531 (((-108) $ $) 9)))
-(((-951 |#1|) (-13 (-1120) (-10 -8 (-15 -1377 ($ |#1|)) (-15 -2545 (|#1| $)) (-15 -2379 (|#1| $ |#1|)) (-15 -3257 (|#1| $)) (-15 -2642 (|#1| $ |#1|)) (-15 -1531 ((-108) $ $)) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|))) (-1120)) (T -951))
-((-1377 (*1 *1 *2) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))) (-2545 (*1 *2 *1) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))) (-2379 (*1 *2 *1 *2) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))) (-3257 (*1 *2 *1) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))) (-2642 (*1 *2 *1 *2) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))) (-1531 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-951 *3)) (-4 *3 (-1120)))))
-(-13 (-1120) (-10 -8 (-15 -1377 ($ |#1|)) (-15 -2545 (|#1| $)) (-15 -2379 (|#1| $ |#1|)) (-15 -3257 (|#1| $)) (-15 -2642 (|#1| $ |#1|)) (-15 -1531 ((-108) $ $)) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|)))
-((-1416 (((-108) $ $) NIL)) (-2950 (((-588 (-2 (|:| -1650 $) (|:| -1544 (-588 |#4|)))) (-588 |#4|)) NIL)) (-4125 (((-588 $) (-588 |#4|)) 105) (((-588 $) (-588 |#4|) (-108)) 106) (((-588 $) (-588 |#4|) (-108) (-108)) 104) (((-588 $) (-588 |#4|) (-108) (-108) (-108) (-108)) 107)) (-4090 (((-588 |#3|) $) NIL)) (-2690 (((-108) $) NIL)) (-4140 (((-108) $) NIL (|has| |#1| (-514)))) (-3575 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-3607 ((|#4| |#4| $) NIL)) (-3119 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 $))) |#4| $) 99)) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |#3|) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-1628 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 54)) (-3175 (($) NIL T CONST)) (-3639 (((-108) $) 26 (|has| |#1| (-514)))) (-3982 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3996 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3538 (((-108) $) NIL (|has| |#1| (-514)))) (-2149 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3050 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-1787 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-1297 (((-3 $ "failed") (-588 |#4|)) NIL)) (-1484 (($ (-588 |#4|)) NIL)) (-2306 (((-3 $ "failed") $) 39)) (-2806 ((|#4| |#4| $) 57)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-1423 (($ |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-3421 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 73 (|has| |#1| (-514)))) (-1934 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-4164 ((|#4| |#4| $) NIL)) (-3864 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2091 (((-2 (|:| -1650 (-588 |#4|)) (|:| -1544 (-588 |#4|))) $) NIL)) (-2208 (((-108) |#4| $) NIL)) (-3129 (((-108) |#4| $) NIL)) (-2198 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2352 (((-2 (|:| |val| (-588 |#4|)) (|:| |towers| (-588 $))) (-588 |#4|) (-108) (-108)) 119)) (-3837 (((-588 |#4|) $) 16 (|has| $ (-6 -4238)))) (-3341 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1521 ((|#3| $) 33)) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#4|) $) 17 (|has| $ (-6 -4238)))) (-2246 (((-108) |#4| $) 25 (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-3838 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#4| |#4|) $) 21)) (-2458 (((-588 |#3|) $) NIL)) (-1606 (((-108) |#3| $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-3959 (((-3 |#4| (-588 $)) |#4| |#4| $) NIL)) (-1331 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 $))) |#4| |#4| $) 97)) (-1442 (((-3 |#4| "failed") $) 37)) (-2893 (((-588 $) |#4| $) 80)) (-4190 (((-3 (-108) (-588 $)) |#4| $) NIL)) (-3878 (((-588 (-2 (|:| |val| (-108)) (|:| -1886 $))) |#4| $) 90) (((-108) |#4| $) 52)) (-2416 (((-588 $) |#4| $) 102) (((-588 $) (-588 |#4|) $) NIL) (((-588 $) (-588 |#4|) (-588 $)) 103) (((-588 $) |#4| (-588 $)) NIL)) (-1610 (((-588 $) (-588 |#4|) (-108) (-108) (-108)) 114)) (-2135 (($ |#4| $) 70) (($ (-588 |#4|) $) 71) (((-588 $) |#4| $ (-108) (-108) (-108) (-108) (-108)) 67)) (-2242 (((-588 |#4|) $) NIL)) (-3409 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1451 ((|#4| |#4| $) NIL)) (-2123 (((-108) $ $) NIL)) (-2039 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-2230 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2680 ((|#4| |#4| $) NIL)) (-4151 (((-1032) $) NIL)) (-2294 (((-3 |#4| "failed") $) 35)) (-1414 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-3307 (((-3 $ "failed") $ |#4|) 48)) (-3719 (($ $ |#4|) NIL) (((-588 $) |#4| $) 82) (((-588 $) |#4| (-588 $)) NIL) (((-588 $) (-588 |#4|) $) NIL) (((-588 $) (-588 |#4|) (-588 $)) 77)) (-3053 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#4|) (-588 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 15)) (-3775 (($) 13)) (-2793 (((-708) $) NIL)) (-4168 (((-708) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (((-708) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) 12)) (-1431 (((-498) $) NIL (|has| |#4| (-563 (-498))))) (-2201 (($ (-588 |#4|)) 20)) (-2020 (($ $ |#3|) 42)) (-3606 (($ $ |#3|) 44)) (-3968 (($ $) NIL)) (-2463 (($ $ |#3|) NIL)) (-2190 (((-792) $) 31) (((-588 |#4|) $) 40)) (-1974 (((-708) $) NIL (|has| |#3| (-343)))) (-3989 (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-4212 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) NIL)) (-2188 (((-588 $) |#4| $) 79) (((-588 $) |#4| (-588 $)) NIL) (((-588 $) (-588 |#4|) $) NIL) (((-588 $) (-588 |#4|) (-588 $)) NIL)) (-3648 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2360 (((-588 |#3|) $) NIL)) (-3021 (((-108) |#4| $) NIL)) (-2351 (((-108) |#3| $) 53)) (-1531 (((-108) $ $) NIL)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-952 |#1| |#2| |#3| |#4|) (-13 (-990 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2135 ((-588 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -4125 ((-588 $) (-588 |#4|) (-108) (-108))) (-15 -4125 ((-588 $) (-588 |#4|) (-108) (-108) (-108) (-108))) (-15 -1610 ((-588 $) (-588 |#4|) (-108) (-108) (-108))) (-15 -2352 ((-2 (|:| |val| (-588 |#4|)) (|:| |towers| (-588 $))) (-588 |#4|) (-108) (-108))))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|)) (T -952))
-((-2135 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-952 *5 *6 *7 *3))) (-5 *1 (-952 *5 *6 *7 *3)) (-4 *3 (-985 *5 *6 *7)))) (-4125 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-952 *5 *6 *7 *8))) (-5 *1 (-952 *5 *6 *7 *8)))) (-4125 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-952 *5 *6 *7 *8))) (-5 *1 (-952 *5 *6 *7 *8)))) (-1610 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-952 *5 *6 *7 *8))) (-5 *1 (-952 *5 *6 *7 *8)))) (-2352 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-588 *8)) (|:| |towers| (-588 (-952 *5 *6 *7 *8))))) (-5 *1 (-952 *5 *6 *7 *8)) (-5 *3 (-588 *8)))))
-(-13 (-990 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2135 ((-588 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -4125 ((-588 $) (-588 |#4|) (-108) (-108))) (-15 -4125 ((-588 $) (-588 |#4|) (-108) (-108) (-108) (-108))) (-15 -1610 ((-588 $) (-588 |#4|) (-108) (-108) (-108))) (-15 -2352 ((-2 (|:| |val| (-588 |#4|)) (|:| |towers| (-588 $))) (-588 |#4|) (-108) (-108)))))
-((-3185 (((-588 (-628 |#1|)) (-588 (-628 |#1|))) 57) (((-628 |#1|) (-628 |#1|)) 56) (((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-588 (-628 |#1|))) 55) (((-628 |#1|) (-628 |#1|) (-628 |#1|)) 52)) (-3090 (((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-850)) 51) (((-628 |#1|) (-628 |#1|) (-850)) 50)) (-3306 (((-588 (-628 (-522))) (-588 (-588 (-522)))) 67) (((-588 (-628 (-522))) (-588 (-834 (-522))) (-522)) 66) (((-628 (-522)) (-588 (-522))) 63) (((-628 (-522)) (-834 (-522)) (-522)) 62)) (-4192 (((-628 (-881 |#1|)) (-708)) 80)) (-3446 (((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-850)) 36 (|has| |#1| (-6 (-4240 "*")))) (((-628 |#1|) (-628 |#1|) (-850)) 34 (|has| |#1| (-6 (-4240 "*"))))))
-(((-953 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4240 "*"))) (-15 -3446 ((-628 |#1|) (-628 |#1|) (-850))) |%noBranch|) (IF (|has| |#1| (-6 (-4240 "*"))) (-15 -3446 ((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-850))) |%noBranch|) (-15 -4192 ((-628 (-881 |#1|)) (-708))) (-15 -3090 ((-628 |#1|) (-628 |#1|) (-850))) (-15 -3090 ((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-850))) (-15 -3185 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -3185 ((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -3185 ((-628 |#1|) (-628 |#1|))) (-15 -3185 ((-588 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -3306 ((-628 (-522)) (-834 (-522)) (-522))) (-15 -3306 ((-628 (-522)) (-588 (-522)))) (-15 -3306 ((-588 (-628 (-522))) (-588 (-834 (-522))) (-522))) (-15 -3306 ((-588 (-628 (-522))) (-588 (-588 (-522)))))) (-971)) (T -953))
-((-3306 (*1 *2 *3) (-12 (-5 *3 (-588 (-588 (-522)))) (-5 *2 (-588 (-628 (-522)))) (-5 *1 (-953 *4)) (-4 *4 (-971)))) (-3306 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-834 (-522)))) (-5 *4 (-522)) (-5 *2 (-588 (-628 *4))) (-5 *1 (-953 *5)) (-4 *5 (-971)))) (-3306 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-953 *4)) (-4 *4 (-971)))) (-3306 (*1 *2 *3 *4) (-12 (-5 *3 (-834 (-522))) (-5 *4 (-522)) (-5 *2 (-628 *4)) (-5 *1 (-953 *5)) (-4 *5 (-971)))) (-3185 (*1 *2 *2) (-12 (-5 *2 (-588 (-628 *3))) (-4 *3 (-971)) (-5 *1 (-953 *3)))) (-3185 (*1 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-953 *3)))) (-3185 (*1 *2 *2 *2) (-12 (-5 *2 (-588 (-628 *3))) (-4 *3 (-971)) (-5 *1 (-953 *3)))) (-3185 (*1 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-953 *3)))) (-3090 (*1 *2 *2 *3) (-12 (-5 *2 (-588 (-628 *4))) (-5 *3 (-850)) (-4 *4 (-971)) (-5 *1 (-953 *4)))) (-3090 (*1 *2 *2 *3) (-12 (-5 *2 (-628 *4)) (-5 *3 (-850)) (-4 *4 (-971)) (-5 *1 (-953 *4)))) (-4192 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-628 (-881 *4))) (-5 *1 (-953 *4)) (-4 *4 (-971)))) (-3446 (*1 *2 *2 *3) (-12 (-5 *2 (-588 (-628 *4))) (-5 *3 (-850)) (|has| *4 (-6 (-4240 "*"))) (-4 *4 (-971)) (-5 *1 (-953 *4)))) (-3446 (*1 *2 *2 *3) (-12 (-5 *2 (-628 *4)) (-5 *3 (-850)) (|has| *4 (-6 (-4240 "*"))) (-4 *4 (-971)) (-5 *1 (-953 *4)))))
-(-10 -7 (IF (|has| |#1| (-6 (-4240 "*"))) (-15 -3446 ((-628 |#1|) (-628 |#1|) (-850))) |%noBranch|) (IF (|has| |#1| (-6 (-4240 "*"))) (-15 -3446 ((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-850))) |%noBranch|) (-15 -4192 ((-628 (-881 |#1|)) (-708))) (-15 -3090 ((-628 |#1|) (-628 |#1|) (-850))) (-15 -3090 ((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-850))) (-15 -3185 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -3185 ((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -3185 ((-628 |#1|) (-628 |#1|))) (-15 -3185 ((-588 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -3306 ((-628 (-522)) (-834 (-522)) (-522))) (-15 -3306 ((-628 (-522)) (-588 (-522)))) (-15 -3306 ((-588 (-628 (-522))) (-588 (-834 (-522))) (-522))) (-15 -3306 ((-588 (-628 (-522))) (-588 (-588 (-522))))))
-((-3246 (((-628 |#1|) (-588 (-628 |#1|)) (-1166 |#1|)) 50 (|has| |#1| (-283)))) (-2724 (((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-1166 (-1166 |#1|))) 73 (|has| |#1| (-338))) (((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-1166 |#1|)) 71 (|has| |#1| (-338)))) (-1985 (((-1166 |#1|) (-588 (-1166 |#1|)) (-522)) 75 (-12 (|has| |#1| (-338)) (|has| |#1| (-343))))) (-3907 (((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-850)) 80 (-12 (|has| |#1| (-338)) (|has| |#1| (-343)))) (((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-108)) 78 (-12 (|has| |#1| (-338)) (|has| |#1| (-343)))) (((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|))) 77 (-12 (|has| |#1| (-338)) (|has| |#1| (-343)))) (((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-108) (-522) (-522)) 76 (-12 (|has| |#1| (-338)) (|has| |#1| (-343))))) (-2723 (((-108) (-588 (-628 |#1|))) 69 (|has| |#1| (-338))) (((-108) (-588 (-628 |#1|)) (-522)) 68 (|has| |#1| (-338)))) (-2835 (((-1166 (-1166 |#1|)) (-588 (-628 |#1|)) (-1166 |#1|)) 48 (|has| |#1| (-283)))) (-3270 (((-628 |#1|) (-588 (-628 |#1|)) (-628 |#1|)) 33)) (-3937 (((-628 |#1|) (-1166 (-1166 |#1|))) 30)) (-2777 (((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)) (-522)) 64 (|has| |#1| (-338))) (((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|))) 63 (|has| |#1| (-338))) (((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)) (-108) (-522)) 62 (|has| |#1| (-338)))))
-(((-954 |#1|) (-10 -7 (-15 -3937 ((-628 |#1|) (-1166 (-1166 |#1|)))) (-15 -3270 ((-628 |#1|) (-588 (-628 |#1|)) (-628 |#1|))) (IF (|has| |#1| (-283)) (PROGN (-15 -2835 ((-1166 (-1166 |#1|)) (-588 (-628 |#1|)) (-1166 |#1|))) (-15 -3246 ((-628 |#1|) (-588 (-628 |#1|)) (-1166 |#1|)))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-15 -2777 ((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)) (-108) (-522))) (-15 -2777 ((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -2777 ((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)) (-522))) (-15 -2723 ((-108) (-588 (-628 |#1|)) (-522))) (-15 -2723 ((-108) (-588 (-628 |#1|)))) (-15 -2724 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-1166 |#1|))) (-15 -2724 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-1166 (-1166 |#1|))))) |%noBranch|) (IF (|has| |#1| (-343)) (IF (|has| |#1| (-338)) (PROGN (-15 -3907 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-108) (-522) (-522))) (-15 -3907 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)))) (-15 -3907 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-108))) (-15 -3907 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-850))) (-15 -1985 ((-1166 |#1|) (-588 (-1166 |#1|)) (-522)))) |%noBranch|) |%noBranch|)) (-971)) (T -954))
-((-1985 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-1166 *5))) (-5 *4 (-522)) (-5 *2 (-1166 *5)) (-5 *1 (-954 *5)) (-4 *5 (-338)) (-4 *5 (-343)) (-4 *5 (-971)))) (-3907 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-4 *5 (-338)) (-4 *5 (-343)) (-4 *5 (-971)) (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5)) (-5 *3 (-588 (-628 *5))))) (-3907 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-338)) (-4 *5 (-343)) (-4 *5 (-971)) (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5)) (-5 *3 (-588 (-628 *5))))) (-3907 (*1 *2 *3) (-12 (-4 *4 (-338)) (-4 *4 (-343)) (-4 *4 (-971)) (-5 *2 (-588 (-588 (-628 *4)))) (-5 *1 (-954 *4)) (-5 *3 (-588 (-628 *4))))) (-3907 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-108)) (-5 *5 (-522)) (-4 *6 (-338)) (-4 *6 (-343)) (-4 *6 (-971)) (-5 *2 (-588 (-588 (-628 *6)))) (-5 *1 (-954 *6)) (-5 *3 (-588 (-628 *6))))) (-2724 (*1 *2 *3 *4) (-12 (-5 *4 (-1166 (-1166 *5))) (-4 *5 (-338)) (-4 *5 (-971)) (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5)) (-5 *3 (-588 (-628 *5))))) (-2724 (*1 *2 *3 *4) (-12 (-5 *4 (-1166 *5)) (-4 *5 (-338)) (-4 *5 (-971)) (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5)) (-5 *3 (-588 (-628 *5))))) (-2723 (*1 *2 *3) (-12 (-5 *3 (-588 (-628 *4))) (-4 *4 (-338)) (-4 *4 (-971)) (-5 *2 (-108)) (-5 *1 (-954 *4)))) (-2723 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-628 *5))) (-5 *4 (-522)) (-4 *5 (-338)) (-4 *5 (-971)) (-5 *2 (-108)) (-5 *1 (-954 *5)))) (-2777 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-588 (-628 *5))) (-5 *4 (-522)) (-5 *2 (-628 *5)) (-5 *1 (-954 *5)) (-4 *5 (-338)) (-4 *5 (-971)))) (-2777 (*1 *2 *3 *3) (-12 (-5 *3 (-588 (-628 *4))) (-5 *2 (-628 *4)) (-5 *1 (-954 *4)) (-4 *4 (-338)) (-4 *4 (-971)))) (-2777 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-588 (-628 *6))) (-5 *4 (-108)) (-5 *5 (-522)) (-5 *2 (-628 *6)) (-5 *1 (-954 *6)) (-4 *6 (-338)) (-4 *6 (-971)))) (-3246 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-628 *5))) (-5 *4 (-1166 *5)) (-4 *5 (-283)) (-4 *5 (-971)) (-5 *2 (-628 *5)) (-5 *1 (-954 *5)))) (-2835 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-628 *5))) (-4 *5 (-283)) (-4 *5 (-971)) (-5 *2 (-1166 (-1166 *5))) (-5 *1 (-954 *5)) (-5 *4 (-1166 *5)))) (-3270 (*1 *2 *3 *2) (-12 (-5 *3 (-588 (-628 *4))) (-5 *2 (-628 *4)) (-4 *4 (-971)) (-5 *1 (-954 *4)))) (-3937 (*1 *2 *3) (-12 (-5 *3 (-1166 (-1166 *4))) (-4 *4 (-971)) (-5 *2 (-628 *4)) (-5 *1 (-954 *4)))))
-(-10 -7 (-15 -3937 ((-628 |#1|) (-1166 (-1166 |#1|)))) (-15 -3270 ((-628 |#1|) (-588 (-628 |#1|)) (-628 |#1|))) (IF (|has| |#1| (-283)) (PROGN (-15 -2835 ((-1166 (-1166 |#1|)) (-588 (-628 |#1|)) (-1166 |#1|))) (-15 -3246 ((-628 |#1|) (-588 (-628 |#1|)) (-1166 |#1|)))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-15 -2777 ((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)) (-108) (-522))) (-15 -2777 ((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -2777 ((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)) (-522))) (-15 -2723 ((-108) (-588 (-628 |#1|)) (-522))) (-15 -2723 ((-108) (-588 (-628 |#1|)))) (-15 -2724 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-1166 |#1|))) (-15 -2724 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-1166 (-1166 |#1|))))) |%noBranch|) (IF (|has| |#1| (-343)) (IF (|has| |#1| (-338)) (PROGN (-15 -3907 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-108) (-522) (-522))) (-15 -3907 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)))) (-15 -3907 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-108))) (-15 -3907 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-850))) (-15 -1985 ((-1166 |#1|) (-588 (-1166 |#1|)) (-522)))) |%noBranch|) |%noBranch|))
-((-3369 ((|#1| (-850) |#1|) 9)))
-(((-955 |#1|) (-10 -7 (-15 -3369 (|#1| (-850) |#1|))) (-13 (-1014) (-10 -8 (-15 -1602 ($ $ $))))) (T -955))
-((-3369 (*1 *2 *3 *2) (-12 (-5 *3 (-850)) (-5 *1 (-955 *2)) (-4 *2 (-13 (-1014) (-10 -8 (-15 -1602 ($ $ $))))))))
-(-10 -7 (-15 -3369 (|#1| (-850) |#1|)))
-((-2373 (((-588 (-2 (|:| |radval| (-291 (-522))) (|:| |radmult| (-522)) (|:| |radvect| (-588 (-628 (-291 (-522))))))) (-628 (-382 (-881 (-522))))) 58)) (-3226 (((-588 (-628 (-291 (-522)))) (-291 (-522)) (-628 (-382 (-881 (-522))))) 48)) (-2754 (((-588 (-291 (-522))) (-628 (-382 (-881 (-522))))) 41)) (-1592 (((-588 (-628 (-291 (-522)))) (-628 (-382 (-881 (-522))))) 68)) (-1478 (((-628 (-291 (-522))) (-628 (-291 (-522)))) 33)) (-3126 (((-588 (-628 (-291 (-522)))) (-588 (-628 (-291 (-522))))) 61)) (-1970 (((-3 (-628 (-291 (-522))) "failed") (-628 (-382 (-881 (-522))))) 65)))
-(((-956) (-10 -7 (-15 -2373 ((-588 (-2 (|:| |radval| (-291 (-522))) (|:| |radmult| (-522)) (|:| |radvect| (-588 (-628 (-291 (-522))))))) (-628 (-382 (-881 (-522)))))) (-15 -3226 ((-588 (-628 (-291 (-522)))) (-291 (-522)) (-628 (-382 (-881 (-522)))))) (-15 -2754 ((-588 (-291 (-522))) (-628 (-382 (-881 (-522)))))) (-15 -1970 ((-3 (-628 (-291 (-522))) "failed") (-628 (-382 (-881 (-522)))))) (-15 -1478 ((-628 (-291 (-522))) (-628 (-291 (-522))))) (-15 -3126 ((-588 (-628 (-291 (-522)))) (-588 (-628 (-291 (-522)))))) (-15 -1592 ((-588 (-628 (-291 (-522)))) (-628 (-382 (-881 (-522)))))))) (T -956))
-((-1592 (*1 *2 *3) (-12 (-5 *3 (-628 (-382 (-881 (-522))))) (-5 *2 (-588 (-628 (-291 (-522))))) (-5 *1 (-956)))) (-3126 (*1 *2 *2) (-12 (-5 *2 (-588 (-628 (-291 (-522))))) (-5 *1 (-956)))) (-1478 (*1 *2 *2) (-12 (-5 *2 (-628 (-291 (-522)))) (-5 *1 (-956)))) (-1970 (*1 *2 *3) (|partial| -12 (-5 *3 (-628 (-382 (-881 (-522))))) (-5 *2 (-628 (-291 (-522)))) (-5 *1 (-956)))) (-2754 (*1 *2 *3) (-12 (-5 *3 (-628 (-382 (-881 (-522))))) (-5 *2 (-588 (-291 (-522)))) (-5 *1 (-956)))) (-3226 (*1 *2 *3 *4) (-12 (-5 *4 (-628 (-382 (-881 (-522))))) (-5 *2 (-588 (-628 (-291 (-522))))) (-5 *1 (-956)) (-5 *3 (-291 (-522))))) (-2373 (*1 *2 *3) (-12 (-5 *3 (-628 (-382 (-881 (-522))))) (-5 *2 (-588 (-2 (|:| |radval| (-291 (-522))) (|:| |radmult| (-522)) (|:| |radvect| (-588 (-628 (-291 (-522)))))))) (-5 *1 (-956)))))
-(-10 -7 (-15 -2373 ((-588 (-2 (|:| |radval| (-291 (-522))) (|:| |radmult| (-522)) (|:| |radvect| (-588 (-628 (-291 (-522))))))) (-628 (-382 (-881 (-522)))))) (-15 -3226 ((-588 (-628 (-291 (-522)))) (-291 (-522)) (-628 (-382 (-881 (-522)))))) (-15 -2754 ((-588 (-291 (-522))) (-628 (-382 (-881 (-522)))))) (-15 -1970 ((-3 (-628 (-291 (-522))) "failed") (-628 (-382 (-881 (-522)))))) (-15 -1478 ((-628 (-291 (-522))) (-628 (-291 (-522))))) (-15 -3126 ((-588 (-628 (-291 (-522)))) (-588 (-628 (-291 (-522)))))) (-15 -1592 ((-588 (-628 (-291 (-522)))) (-628 (-382 (-881 (-522)))))))
-((-2522 ((|#1| |#1| (-850)) 9)))
-(((-957 |#1|) (-10 -7 (-15 -2522 (|#1| |#1| (-850)))) (-13 (-1014) (-10 -8 (-15 * ($ $ $))))) (T -957))
-((-2522 (*1 *2 *2 *3) (-12 (-5 *3 (-850)) (-5 *1 (-957 *2)) (-4 *2 (-13 (-1014) (-10 -8 (-15 * ($ $ $))))))))
-(-10 -7 (-15 -2522 (|#1| |#1| (-850))))
-((-2190 ((|#1| (-287)) 11) (((-1171) |#1|) 9)))
-(((-958 |#1|) (-10 -7 (-15 -2190 ((-1171) |#1|)) (-15 -2190 (|#1| (-287)))) (-1120)) (T -958))
-((-2190 (*1 *2 *3) (-12 (-5 *3 (-287)) (-5 *1 (-958 *2)) (-4 *2 (-1120)))) (-2190 (*1 *2 *3) (-12 (-5 *2 (-1171)) (-5 *1 (-958 *3)) (-4 *3 (-1120)))))
-(-10 -7 (-15 -2190 ((-1171) |#1|)) (-15 -2190 (|#1| (-287))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-3864 (($ |#4|) 25)) (-2682 (((-3 $ "failed") $) NIL)) (-2782 (((-108) $) NIL)) (-3849 ((|#4| $) 27)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 46) (($ (-522)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-2323 (((-708)) 43)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 21 T CONST)) (-3577 (($) 23 T CONST)) (-1531 (((-108) $ $) 40)) (-1612 (($ $) 31) (($ $ $) NIL)) (-1602 (($ $ $) 29)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
-(((-959 |#1| |#2| |#3| |#4| |#5|) (-13 (-157) (-37 |#1|) (-10 -8 (-15 -3864 ($ |#4|)) (-15 -2190 ($ |#4|)) (-15 -3849 (|#4| $)))) (-338) (-730) (-784) (-878 |#1| |#2| |#3|) (-588 |#4|)) (T -959))
-((-3864 (*1 *1 *2) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-959 *3 *4 *5 *2 *6)) (-4 *2 (-878 *3 *4 *5)) (-14 *6 (-588 *2)))) (-2190 (*1 *1 *2) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-959 *3 *4 *5 *2 *6)) (-4 *2 (-878 *3 *4 *5)) (-14 *6 (-588 *2)))) (-3849 (*1 *2 *1) (-12 (-4 *2 (-878 *3 *4 *5)) (-5 *1 (-959 *3 *4 *5 *2 *6)) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-14 *6 (-588 *2)))))
-(-13 (-157) (-37 |#1|) (-10 -8 (-15 -3864 ($ |#4|)) (-15 -2190 ($ |#4|)) (-15 -3849 (|#4| $))))
-((-1416 (((-108) $ $) NIL (-3708 (|has| (-51) (-1014)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014))))) (-1800 (($) NIL) (($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) NIL)) (-2679 (((-1171) $ (-1085) (-1085)) NIL (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) NIL)) (-2746 (((-108) (-108)) 39)) (-3335 (((-108) (-108)) 38)) (-2379 (((-51) $ (-1085) (-51)) NIL)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-2750 (((-3 (-51) "failed") (-1085) $) NIL)) (-3175 (($) NIL T CONST)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014))))) (-3859 (($ (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-3 (-51) "failed") (-1085) $) NIL)) (-1423 (($ (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (($ (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $ (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (((-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $ (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-3854 (((-51) $ (-1085) (-51)) NIL (|has| $ (-6 -4239)))) (-3631 (((-51) $ (-1085)) NIL)) (-3837 (((-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-588 (-51)) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-1085) $) NIL (|has| (-1085) (-784)))) (-3308 (((-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-588 (-51)) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014))))) (-2014 (((-1085) $) NIL (|has| (-1085) (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4239))) (($ (-1 (-51) (-51)) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL) (($ (-1 (-51) (-51)) $) NIL) (($ (-1 (-51) (-51) (-51)) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (-3708 (|has| (-51) (-1014)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014))))) (-2966 (((-588 (-1085)) $) 34)) (-1231 (((-108) (-1085) $) NIL)) (-2116 (((-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) NIL)) (-4095 (($ (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) NIL)) (-3604 (((-588 (-1085)) $) NIL)) (-1405 (((-108) (-1085) $) NIL)) (-4151 (((-1032) $) NIL (-3708 (|has| (-51) (-1014)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014))))) (-2294 (((-51) $) NIL (|has| (-1085) (-784)))) (-1414 (((-3 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) "failed") (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL)) (-2602 (($ $ (-51)) NIL (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) NIL)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))))) NIL (-12 (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (($ $ (-270 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) NIL (-12 (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (($ $ (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) NIL (-12 (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (($ $ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) NIL (-12 (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (($ $ (-588 (-51)) (-588 (-51))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-51) (-51)) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-270 (-51))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-588 (-270 (-51)))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014))))) (-1525 (((-588 (-51)) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 (((-51) $ (-1085)) 35) (((-51) $ (-1085) (-51)) NIL)) (-3990 (($) NIL) (($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) NIL)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (((-708) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014)))) (((-708) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) NIL)) (-2190 (((-792) $) 37 (-3708 (|has| (-51) (-562 (-792))) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-562 (-792)))))) (-2795 (($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) NIL)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (-3708 (|has| (-51) (-1014)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014))))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-960) (-13 (-1097 (-1085) (-51)) (-10 -7 (-15 -2746 ((-108) (-108))) (-15 -3335 ((-108) (-108))) (-6 -4238)))) (T -960))
-((-2746 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-960)))) (-3335 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-960)))))
-(-13 (-1097 (-1085) (-51)) (-10 -7 (-15 -2746 ((-108) (-108))) (-15 -3335 ((-108) (-108))) (-6 -4238)))
-((-1484 ((|#2| $) 10)))
-(((-961 |#1| |#2|) (-10 -8 (-15 -1484 (|#2| |#1|))) (-962 |#2|) (-1120)) (T -961))
-NIL
-(-10 -8 (-15 -1484 (|#2| |#1|)))
-((-1297 (((-3 |#1| "failed") $) 7)) (-1484 ((|#1| $) 8)) (-2190 (($ |#1|) 6)))
+((-2925 (((-588 (-354)) (-881 (-522)) (-354)) 27) (((-588 (-354)) (-881 (-382 (-522))) (-354)) 26)) (-1760 (((-588 (-588 (-354))) (-588 (-881 (-522))) (-588 (-1085)) (-354)) 36)))
+(((-948) (-10 -7 (-15 -2925 ((-588 (-354)) (-881 (-382 (-522))) (-354))) (-15 -2925 ((-588 (-354)) (-881 (-522)) (-354))) (-15 -1760 ((-588 (-588 (-354))) (-588 (-881 (-522))) (-588 (-1085)) (-354))))) (T -948))
+((-1760 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-588 (-1085))) (-5 *2 (-588 (-588 (-354)))) (-5 *1 (-948)) (-5 *5 (-354)))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-881 (-522))) (-5 *2 (-588 (-354))) (-5 *1 (-948)) (-5 *4 (-354)))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-881 (-382 (-522)))) (-5 *2 (-588 (-354))) (-5 *1 (-948)) (-5 *4 (-354)))))
+(-10 -7 (-15 -2925 ((-588 (-354)) (-881 (-382 (-522))) (-354))) (-15 -2925 ((-588 (-354)) (-881 (-522)) (-354))) (-15 -1760 ((-588 (-588 (-354))) (-588 (-881 (-522))) (-588 (-1085)) (-354))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 70)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2016 (($ $) NIL) (($ $ (-708)) NIL) (($ (-382 (-522))) NIL) (($ (-522)) NIL)) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) 65)) (-3367 (($) NIL T CONST)) (-1275 (((-3 $ "failed") (-1081 $) (-850) (-792)) NIL) (((-3 $ "failed") (-1081 $) (-850)) 49)) (-3700 (((-3 (-382 (-522)) "failed") $) NIL (|has| (-382 (-522)) (-962 (-382 (-522))))) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#1| "failed") $) 108) (((-3 (-522) "failed") $) NIL (-3844 (|has| (-382 (-522)) (-962 (-522))) (|has| |#1| (-962 (-522)))))) (-1478 (((-382 (-522)) $) 14 (|has| (-382 (-522)) (-962 (-382 (-522))))) (((-382 (-522)) $) 14) ((|#1| $) 109) (((-522) $) NIL (-3844 (|has| (-382 (-522)) (-962 (-522))) (|has| |#1| (-962 (-522)))))) (-2173 (($ $ (-792)) 40)) (-1942 (($ $ (-792)) 41)) (-2333 (($ $ $) NIL)) (-1549 (((-382 (-522)) $ $) 18)) (-3920 (((-3 $ "failed") $) 83)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3603 (((-108) $) 60)) (-2859 (((-108) $) NIL)) (-1811 (($ $ (-522)) NIL)) (-3740 (((-108) $) 63)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-1247 (((-3 (-1081 $) "failed") $) 78)) (-1748 (((-3 (-792) "failed") $) 77)) (-1622 (((-3 (-1081 $) "failed") $) 75)) (-3511 (((-3 (-981 $ (-1081 $)) "failed") $) 73)) (-2267 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 84)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ (-588 $)) NIL) (($ $ $) NIL)) (-2006 (((-393 $) $) NIL)) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2217 (((-792) $) 82) (($ (-522)) NIL) (($ (-382 (-522))) NIL) (($ $) 57) (($ (-382 (-522))) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL) (($ |#1|) 111)) (-2742 (((-708)) NIL)) (-1407 (((-108) $ $) NIL)) (-3996 (((-382 (-522)) $ $) 24)) (-3068 (((-588 $) (-1081 $)) 55) (((-588 $) (-1081 (-382 (-522)))) NIL) (((-588 $) (-1081 (-522))) NIL) (((-588 $) (-881 $)) NIL) (((-588 $) (-881 (-382 (-522)))) NIL) (((-588 $) (-881 (-522))) NIL)) (-3105 (($ (-981 $ (-1081 $)) (-792)) 39)) (-4126 (($ $) 19)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL)) (-3697 (($) 28 T CONST)) (-3709 (($) 34 T CONST)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 71)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 21)) (-1682 (($ $ $) 32)) (-1672 (($ $) 33) (($ $ $) 69)) (-1661 (($ $ $) 104)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL) (($ $ (-382 (-522))) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 92) (($ $ $) 97) (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL) (($ (-522) $) 92) (($ $ (-522)) NIL) (($ (-382 (-522)) $) NIL) (($ $ (-382 (-522))) NIL) (($ |#1| $) 96) (($ $ |#1|) NIL)))
+(((-949 |#1|) (-13 (-938) (-386 |#1|) (-37 |#1|) (-10 -8 (-15 -3105 ($ (-981 $ (-1081 $)) (-792))) (-15 -3511 ((-3 (-981 $ (-1081 $)) "failed") $)) (-15 -1549 ((-382 (-522)) $ $)))) (-13 (-782) (-338) (-947))) (T -949))
+((-3105 (*1 *1 *2 *3) (-12 (-5 *2 (-981 (-949 *4) (-1081 (-949 *4)))) (-5 *3 (-792)) (-5 *1 (-949 *4)) (-4 *4 (-13 (-782) (-338) (-947))))) (-3511 (*1 *2 *1) (|partial| -12 (-5 *2 (-981 (-949 *3) (-1081 (-949 *3)))) (-5 *1 (-949 *3)) (-4 *3 (-13 (-782) (-338) (-947))))) (-1549 (*1 *2 *1 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-949 *3)) (-4 *3 (-13 (-782) (-338) (-947))))))
+(-13 (-938) (-386 |#1|) (-37 |#1|) (-10 -8 (-15 -3105 ($ (-981 $ (-1081 $)) (-792))) (-15 -3511 ((-3 (-981 $ (-1081 $)) "failed") $)) (-15 -1549 ((-382 (-522)) $ $))))
+((-1531 (((-2 (|:| -3277 |#2|) (|:| -1410 (-588 |#1|))) |#2| (-588 |#1|)) 20) ((|#2| |#2| |#1|) 15)))
+(((-950 |#1| |#2|) (-10 -7 (-15 -1531 (|#2| |#2| |#1|)) (-15 -1531 ((-2 (|:| -3277 |#2|) (|:| -1410 (-588 |#1|))) |#2| (-588 |#1|)))) (-338) (-598 |#1|)) (T -950))
+((-1531 (*1 *2 *3 *4) (-12 (-4 *5 (-338)) (-5 *2 (-2 (|:| -3277 *3) (|:| -1410 (-588 *5)))) (-5 *1 (-950 *5 *3)) (-5 *4 (-588 *5)) (-4 *3 (-598 *5)))) (-1531 (*1 *2 *2 *3) (-12 (-4 *3 (-338)) (-5 *1 (-950 *3 *2)) (-4 *2 (-598 *3)))))
+(-10 -7 (-15 -1531 (|#2| |#2| |#1|)) (-15 -1531 ((-2 (|:| -3277 |#2|) (|:| -1410 (-588 |#1|))) |#2| (-588 |#1|))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1632 ((|#1| $ |#1|) 14)) (-2437 ((|#1| $ |#1|) 12)) (-3647 (($ |#1|) 10)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2683 ((|#1| $) 11)) (-1778 ((|#1| $) 13)) (-2217 (((-792) $) 21 (|has| |#1| (-1014)))) (-1562 (((-108) $ $) 9)))
+(((-951 |#1|) (-13 (-1120) (-10 -8 (-15 -3647 ($ |#1|)) (-15 -2683 (|#1| $)) (-15 -2437 (|#1| $ |#1|)) (-15 -1778 (|#1| $)) (-15 -1632 (|#1| $ |#1|)) (-15 -1562 ((-108) $ $)) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|))) (-1120)) (T -951))
+((-3647 (*1 *1 *2) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))) (-2683 (*1 *2 *1) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))) (-2437 (*1 *2 *1 *2) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))) (-1778 (*1 *2 *1) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))) (-1632 (*1 *2 *1 *2) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))) (-1562 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-951 *3)) (-4 *3 (-1120)))))
+(-13 (-1120) (-10 -8 (-15 -3647 ($ |#1|)) (-15 -2683 (|#1| $)) (-15 -2437 (|#1| $ |#1|)) (-15 -1778 (|#1| $)) (-15 -1632 (|#1| $ |#1|)) (-15 -1562 ((-108) $ $)) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|)))
+((-1419 (((-108) $ $) NIL)) (-3829 (((-588 (-2 (|:| -1720 $) (|:| -1566 (-588 |#4|)))) (-588 |#4|)) NIL)) (-2510 (((-588 $) (-588 |#4|)) 105) (((-588 $) (-588 |#4|) (-108)) 106) (((-588 $) (-588 |#4|) (-108) (-108)) 104) (((-588 $) (-588 |#4|) (-108) (-108) (-108) (-108)) 107)) (-3533 (((-588 |#3|) $) NIL)) (-2161 (((-108) $) NIL)) (-2702 (((-108) $) NIL (|has| |#1| (-514)))) (-1900 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2163 ((|#4| |#4| $) NIL)) (-2961 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 $))) |#4| $) 99)) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |#3|) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1696 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 54)) (-3367 (($) NIL T CONST)) (-1298 (((-108) $) 26 (|has| |#1| (-514)))) (-1657 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3598 (((-108) $ $) NIL (|has| |#1| (-514)))) (-2818 (((-108) $) NIL (|has| |#1| (-514)))) (-3090 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3461 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-3668 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-3700 (((-3 $ "failed") (-588 |#4|)) NIL)) (-1478 (($ (-588 |#4|)) NIL)) (-2352 (((-3 $ "failed") $) 39)) (-2625 ((|#4| |#4| $) 57)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-1424 (($ |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-4002 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 73 (|has| |#1| (-514)))) (-1426 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-2918 ((|#4| |#4| $) NIL)) (-2153 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-1199 (((-2 (|:| -1720 (-588 |#4|)) (|:| -1566 (-588 |#4|))) $) NIL)) (-2396 (((-108) |#4| $) NIL)) (-3039 (((-108) |#4| $) NIL)) (-2278 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1721 (((-2 (|:| |val| (-588 |#4|)) (|:| |towers| (-588 $))) (-588 |#4|) (-108) (-108)) 119)) (-2395 (((-588 |#4|) $) 16 (|has| $ (-6 -4238)))) (-1384 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1933 ((|#3| $) 33)) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#4|) $) 17 (|has| $ (-6 -4238)))) (-4176 (((-108) |#4| $) 25 (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-2397 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#4| |#4|) $) 21)) (-2714 (((-588 |#3|) $) NIL)) (-3826 (((-108) |#3| $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-1418 (((-3 |#4| (-588 $)) |#4| |#4| $) NIL)) (-1998 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 $))) |#4| |#4| $) 97)) (-1442 (((-3 |#4| "failed") $) 37)) (-1468 (((-588 $) |#4| $) 80)) (-1892 (((-3 (-108) (-588 $)) |#4| $) NIL)) (-1862 (((-588 (-2 (|:| |val| (-108)) (|:| -1974 $))) |#4| $) 90) (((-108) |#4| $) 52)) (-2251 (((-588 $) |#4| $) 102) (((-588 $) (-588 |#4|) $) NIL) (((-588 $) (-588 |#4|) (-588 $)) 103) (((-588 $) |#4| (-588 $)) NIL)) (-3862 (((-588 $) (-588 |#4|) (-108) (-108) (-108)) 114)) (-2953 (($ |#4| $) 70) (($ (-588 |#4|) $) 71) (((-588 $) |#4| $ (-108) (-108) (-108) (-108) (-108)) 67)) (-4138 (((-588 |#4|) $) NIL)) (-3864 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2556 ((|#4| |#4| $) NIL)) (-1517 (((-108) $ $) NIL)) (-2507 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-3060 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-3896 ((|#4| |#4| $) NIL)) (-4174 (((-1032) $) NIL)) (-2337 (((-3 |#4| "failed") $) 35)) (-2187 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-4078 (((-3 $ "failed") $ |#4|) 48)) (-3934 (($ $ |#4|) NIL) (((-588 $) |#4| $) 82) (((-588 $) |#4| (-588 $)) NIL) (((-588 $) (-588 |#4|) $) NIL) (((-588 $) (-588 |#4|) (-588 $)) 77)) (-3487 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#4|) (-588 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 15)) (-3298 (($) 13)) (-2487 (((-708) $) NIL)) (-4187 (((-708) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (((-708) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) 12)) (-3873 (((-498) $) NIL (|has| |#4| (-563 (-498))))) (-2227 (($ (-588 |#4|)) 20)) (-2271 (($ $ |#3|) 42)) (-2154 (($ $ |#3|) 44)) (-1524 (($ $) NIL)) (-2773 (($ $ |#3|) NIL)) (-2217 (((-792) $) 31) (((-588 |#4|) $) 40)) (-3111 (((-708) $) NIL (|has| |#3| (-343)))) (-3538 (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2102 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) NIL)) (-3386 (((-588 $) |#4| $) 79) (((-588 $) |#4| (-588 $)) NIL) (((-588 $) (-588 |#4|) $) NIL) (((-588 $) (-588 |#4|) (-588 $)) NIL)) (-1381 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-1982 (((-588 |#3|) $) NIL)) (-1336 (((-108) |#4| $) NIL)) (-1711 (((-108) |#3| $) 53)) (-1562 (((-108) $ $) NIL)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-952 |#1| |#2| |#3| |#4|) (-13 (-990 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2953 ((-588 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -2510 ((-588 $) (-588 |#4|) (-108) (-108))) (-15 -2510 ((-588 $) (-588 |#4|) (-108) (-108) (-108) (-108))) (-15 -3862 ((-588 $) (-588 |#4|) (-108) (-108) (-108))) (-15 -1721 ((-2 (|:| |val| (-588 |#4|)) (|:| |towers| (-588 $))) (-588 |#4|) (-108) (-108))))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|)) (T -952))
+((-2953 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-952 *5 *6 *7 *3))) (-5 *1 (-952 *5 *6 *7 *3)) (-4 *3 (-985 *5 *6 *7)))) (-2510 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-952 *5 *6 *7 *8))) (-5 *1 (-952 *5 *6 *7 *8)))) (-2510 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-952 *5 *6 *7 *8))) (-5 *1 (-952 *5 *6 *7 *8)))) (-3862 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-952 *5 *6 *7 *8))) (-5 *1 (-952 *5 *6 *7 *8)))) (-1721 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-588 *8)) (|:| |towers| (-588 (-952 *5 *6 *7 *8))))) (-5 *1 (-952 *5 *6 *7 *8)) (-5 *3 (-588 *8)))))
+(-13 (-990 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2953 ((-588 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -2510 ((-588 $) (-588 |#4|) (-108) (-108))) (-15 -2510 ((-588 $) (-588 |#4|) (-108) (-108) (-108) (-108))) (-15 -3862 ((-588 $) (-588 |#4|) (-108) (-108) (-108))) (-15 -1721 ((-2 (|:| |val| (-588 |#4|)) (|:| |towers| (-588 $))) (-588 |#4|) (-108) (-108)))))
+((-2237 (((-588 (-628 |#1|)) (-588 (-628 |#1|))) 57) (((-628 |#1|) (-628 |#1|)) 56) (((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-588 (-628 |#1|))) 55) (((-628 |#1|) (-628 |#1|) (-628 |#1|)) 52)) (-3796 (((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-850)) 51) (((-628 |#1|) (-628 |#1|) (-850)) 50)) (-4069 (((-588 (-628 (-522))) (-588 (-588 (-522)))) 67) (((-588 (-628 (-522))) (-588 (-834 (-522))) (-522)) 66) (((-628 (-522)) (-588 (-522))) 63) (((-628 (-522)) (-834 (-522)) (-522)) 62)) (-1910 (((-628 (-881 |#1|)) (-708)) 80)) (-3103 (((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-850)) 36 (|has| |#1| (-6 (-4240 "*")))) (((-628 |#1|) (-628 |#1|) (-850)) 34 (|has| |#1| (-6 (-4240 "*"))))))
+(((-953 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4240 "*"))) (-15 -3103 ((-628 |#1|) (-628 |#1|) (-850))) |%noBranch|) (IF (|has| |#1| (-6 (-4240 "*"))) (-15 -3103 ((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-850))) |%noBranch|) (-15 -1910 ((-628 (-881 |#1|)) (-708))) (-15 -3796 ((-628 |#1|) (-628 |#1|) (-850))) (-15 -3796 ((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-850))) (-15 -2237 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -2237 ((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -2237 ((-628 |#1|) (-628 |#1|))) (-15 -2237 ((-588 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -4069 ((-628 (-522)) (-834 (-522)) (-522))) (-15 -4069 ((-628 (-522)) (-588 (-522)))) (-15 -4069 ((-588 (-628 (-522))) (-588 (-834 (-522))) (-522))) (-15 -4069 ((-588 (-628 (-522))) (-588 (-588 (-522)))))) (-971)) (T -953))
+((-4069 (*1 *2 *3) (-12 (-5 *3 (-588 (-588 (-522)))) (-5 *2 (-588 (-628 (-522)))) (-5 *1 (-953 *4)) (-4 *4 (-971)))) (-4069 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-834 (-522)))) (-5 *4 (-522)) (-5 *2 (-588 (-628 *4))) (-5 *1 (-953 *5)) (-4 *5 (-971)))) (-4069 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-953 *4)) (-4 *4 (-971)))) (-4069 (*1 *2 *3 *4) (-12 (-5 *3 (-834 (-522))) (-5 *4 (-522)) (-5 *2 (-628 *4)) (-5 *1 (-953 *5)) (-4 *5 (-971)))) (-2237 (*1 *2 *2) (-12 (-5 *2 (-588 (-628 *3))) (-4 *3 (-971)) (-5 *1 (-953 *3)))) (-2237 (*1 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-953 *3)))) (-2237 (*1 *2 *2 *2) (-12 (-5 *2 (-588 (-628 *3))) (-4 *3 (-971)) (-5 *1 (-953 *3)))) (-2237 (*1 *2 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-953 *3)))) (-3796 (*1 *2 *2 *3) (-12 (-5 *2 (-588 (-628 *4))) (-5 *3 (-850)) (-4 *4 (-971)) (-5 *1 (-953 *4)))) (-3796 (*1 *2 *2 *3) (-12 (-5 *2 (-628 *4)) (-5 *3 (-850)) (-4 *4 (-971)) (-5 *1 (-953 *4)))) (-1910 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-628 (-881 *4))) (-5 *1 (-953 *4)) (-4 *4 (-971)))) (-3103 (*1 *2 *2 *3) (-12 (-5 *2 (-588 (-628 *4))) (-5 *3 (-850)) (|has| *4 (-6 (-4240 "*"))) (-4 *4 (-971)) (-5 *1 (-953 *4)))) (-3103 (*1 *2 *2 *3) (-12 (-5 *2 (-628 *4)) (-5 *3 (-850)) (|has| *4 (-6 (-4240 "*"))) (-4 *4 (-971)) (-5 *1 (-953 *4)))))
+(-10 -7 (IF (|has| |#1| (-6 (-4240 "*"))) (-15 -3103 ((-628 |#1|) (-628 |#1|) (-850))) |%noBranch|) (IF (|has| |#1| (-6 (-4240 "*"))) (-15 -3103 ((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-850))) |%noBranch|) (-15 -1910 ((-628 (-881 |#1|)) (-708))) (-15 -3796 ((-628 |#1|) (-628 |#1|) (-850))) (-15 -3796 ((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-850))) (-15 -2237 ((-628 |#1|) (-628 |#1|) (-628 |#1|))) (-15 -2237 ((-588 (-628 |#1|)) (-588 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -2237 ((-628 |#1|) (-628 |#1|))) (-15 -2237 ((-588 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -4069 ((-628 (-522)) (-834 (-522)) (-522))) (-15 -4069 ((-628 (-522)) (-588 (-522)))) (-15 -4069 ((-588 (-628 (-522))) (-588 (-834 (-522))) (-522))) (-15 -4069 ((-588 (-628 (-522))) (-588 (-588 (-522))))))
+((-1678 (((-628 |#1|) (-588 (-628 |#1|)) (-1166 |#1|)) 50 (|has| |#1| (-283)))) (-3428 (((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-1166 (-1166 |#1|))) 73 (|has| |#1| (-338))) (((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-1166 |#1|)) 71 (|has| |#1| (-338)))) (-3183 (((-1166 |#1|) (-588 (-1166 |#1|)) (-522)) 75 (-12 (|has| |#1| (-338)) (|has| |#1| (-343))))) (-2096 (((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-850)) 80 (-12 (|has| |#1| (-338)) (|has| |#1| (-343)))) (((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-108)) 78 (-12 (|has| |#1| (-338)) (|has| |#1| (-343)))) (((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|))) 77 (-12 (|has| |#1| (-338)) (|has| |#1| (-343)))) (((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-108) (-522) (-522)) 76 (-12 (|has| |#1| (-338)) (|has| |#1| (-343))))) (-3418 (((-108) (-588 (-628 |#1|))) 69 (|has| |#1| (-338))) (((-108) (-588 (-628 |#1|)) (-522)) 68 (|has| |#1| (-338)))) (-2899 (((-1166 (-1166 |#1|)) (-588 (-628 |#1|)) (-1166 |#1|)) 48 (|has| |#1| (-283)))) (-1878 (((-628 |#1|) (-588 (-628 |#1|)) (-628 |#1|)) 33)) (-1209 (((-628 |#1|) (-1166 (-1166 |#1|))) 30)) (-1931 (((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)) (-522)) 64 (|has| |#1| (-338))) (((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|))) 63 (|has| |#1| (-338))) (((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)) (-108) (-522)) 62 (|has| |#1| (-338)))))
+(((-954 |#1|) (-10 -7 (-15 -1209 ((-628 |#1|) (-1166 (-1166 |#1|)))) (-15 -1878 ((-628 |#1|) (-588 (-628 |#1|)) (-628 |#1|))) (IF (|has| |#1| (-283)) (PROGN (-15 -2899 ((-1166 (-1166 |#1|)) (-588 (-628 |#1|)) (-1166 |#1|))) (-15 -1678 ((-628 |#1|) (-588 (-628 |#1|)) (-1166 |#1|)))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-15 -1931 ((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)) (-108) (-522))) (-15 -1931 ((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -1931 ((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)) (-522))) (-15 -3418 ((-108) (-588 (-628 |#1|)) (-522))) (-15 -3418 ((-108) (-588 (-628 |#1|)))) (-15 -3428 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-1166 |#1|))) (-15 -3428 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-1166 (-1166 |#1|))))) |%noBranch|) (IF (|has| |#1| (-343)) (IF (|has| |#1| (-338)) (PROGN (-15 -2096 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-108) (-522) (-522))) (-15 -2096 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)))) (-15 -2096 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-108))) (-15 -2096 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-850))) (-15 -3183 ((-1166 |#1|) (-588 (-1166 |#1|)) (-522)))) |%noBranch|) |%noBranch|)) (-971)) (T -954))
+((-3183 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-1166 *5))) (-5 *4 (-522)) (-5 *2 (-1166 *5)) (-5 *1 (-954 *5)) (-4 *5 (-338)) (-4 *5 (-343)) (-4 *5 (-971)))) (-2096 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-4 *5 (-338)) (-4 *5 (-343)) (-4 *5 (-971)) (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5)) (-5 *3 (-588 (-628 *5))))) (-2096 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-338)) (-4 *5 (-343)) (-4 *5 (-971)) (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5)) (-5 *3 (-588 (-628 *5))))) (-2096 (*1 *2 *3) (-12 (-4 *4 (-338)) (-4 *4 (-343)) (-4 *4 (-971)) (-5 *2 (-588 (-588 (-628 *4)))) (-5 *1 (-954 *4)) (-5 *3 (-588 (-628 *4))))) (-2096 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-108)) (-5 *5 (-522)) (-4 *6 (-338)) (-4 *6 (-343)) (-4 *6 (-971)) (-5 *2 (-588 (-588 (-628 *6)))) (-5 *1 (-954 *6)) (-5 *3 (-588 (-628 *6))))) (-3428 (*1 *2 *3 *4) (-12 (-5 *4 (-1166 (-1166 *5))) (-4 *5 (-338)) (-4 *5 (-971)) (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5)) (-5 *3 (-588 (-628 *5))))) (-3428 (*1 *2 *3 *4) (-12 (-5 *4 (-1166 *5)) (-4 *5 (-338)) (-4 *5 (-971)) (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5)) (-5 *3 (-588 (-628 *5))))) (-3418 (*1 *2 *3) (-12 (-5 *3 (-588 (-628 *4))) (-4 *4 (-338)) (-4 *4 (-971)) (-5 *2 (-108)) (-5 *1 (-954 *4)))) (-3418 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-628 *5))) (-5 *4 (-522)) (-4 *5 (-338)) (-4 *5 (-971)) (-5 *2 (-108)) (-5 *1 (-954 *5)))) (-1931 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-588 (-628 *5))) (-5 *4 (-522)) (-5 *2 (-628 *5)) (-5 *1 (-954 *5)) (-4 *5 (-338)) (-4 *5 (-971)))) (-1931 (*1 *2 *3 *3) (-12 (-5 *3 (-588 (-628 *4))) (-5 *2 (-628 *4)) (-5 *1 (-954 *4)) (-4 *4 (-338)) (-4 *4 (-971)))) (-1931 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-588 (-628 *6))) (-5 *4 (-108)) (-5 *5 (-522)) (-5 *2 (-628 *6)) (-5 *1 (-954 *6)) (-4 *6 (-338)) (-4 *6 (-971)))) (-1678 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-628 *5))) (-5 *4 (-1166 *5)) (-4 *5 (-283)) (-4 *5 (-971)) (-5 *2 (-628 *5)) (-5 *1 (-954 *5)))) (-2899 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-628 *5))) (-4 *5 (-283)) (-4 *5 (-971)) (-5 *2 (-1166 (-1166 *5))) (-5 *1 (-954 *5)) (-5 *4 (-1166 *5)))) (-1878 (*1 *2 *3 *2) (-12 (-5 *3 (-588 (-628 *4))) (-5 *2 (-628 *4)) (-4 *4 (-971)) (-5 *1 (-954 *4)))) (-1209 (*1 *2 *3) (-12 (-5 *3 (-1166 (-1166 *4))) (-4 *4 (-971)) (-5 *2 (-628 *4)) (-5 *1 (-954 *4)))))
+(-10 -7 (-15 -1209 ((-628 |#1|) (-1166 (-1166 |#1|)))) (-15 -1878 ((-628 |#1|) (-588 (-628 |#1|)) (-628 |#1|))) (IF (|has| |#1| (-283)) (PROGN (-15 -2899 ((-1166 (-1166 |#1|)) (-588 (-628 |#1|)) (-1166 |#1|))) (-15 -1678 ((-628 |#1|) (-588 (-628 |#1|)) (-1166 |#1|)))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-15 -1931 ((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)) (-108) (-522))) (-15 -1931 ((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -1931 ((-628 |#1|) (-588 (-628 |#1|)) (-588 (-628 |#1|)) (-522))) (-15 -3418 ((-108) (-588 (-628 |#1|)) (-522))) (-15 -3418 ((-108) (-588 (-628 |#1|)))) (-15 -3428 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-1166 |#1|))) (-15 -3428 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-1166 (-1166 |#1|))))) |%noBranch|) (IF (|has| |#1| (-343)) (IF (|has| |#1| (-338)) (PROGN (-15 -2096 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-108) (-522) (-522))) (-15 -2096 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)))) (-15 -2096 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-108))) (-15 -2096 ((-588 (-588 (-628 |#1|))) (-588 (-628 |#1|)) (-850))) (-15 -3183 ((-1166 |#1|) (-588 (-1166 |#1|)) (-522)))) |%noBranch|) |%noBranch|))
+((-3471 ((|#1| (-850) |#1|) 9)))
+(((-955 |#1|) (-10 -7 (-15 -3471 (|#1| (-850) |#1|))) (-13 (-1014) (-10 -8 (-15 -1661 ($ $ $))))) (T -955))
+((-3471 (*1 *2 *3 *2) (-12 (-5 *3 (-850)) (-5 *1 (-955 *2)) (-4 *2 (-13 (-1014) (-10 -8 (-15 -1661 ($ $ $))))))))
+(-10 -7 (-15 -3471 (|#1| (-850) |#1|)))
+((-1212 (((-588 (-2 (|:| |radval| (-291 (-522))) (|:| |radmult| (-522)) (|:| |radvect| (-588 (-628 (-291 (-522))))))) (-628 (-382 (-881 (-522))))) 58)) (-2738 (((-588 (-628 (-291 (-522)))) (-291 (-522)) (-628 (-382 (-881 (-522))))) 48)) (-1464 (((-588 (-291 (-522))) (-628 (-382 (-881 (-522))))) 41)) (-3736 (((-588 (-628 (-291 (-522)))) (-628 (-382 (-881 (-522))))) 68)) (-1567 (((-628 (-291 (-522))) (-628 (-291 (-522)))) 33)) (-3017 (((-588 (-628 (-291 (-522)))) (-588 (-628 (-291 (-522))))) 61)) (-3076 (((-3 (-628 (-291 (-522))) "failed") (-628 (-382 (-881 (-522))))) 65)))
+(((-956) (-10 -7 (-15 -1212 ((-588 (-2 (|:| |radval| (-291 (-522))) (|:| |radmult| (-522)) (|:| |radvect| (-588 (-628 (-291 (-522))))))) (-628 (-382 (-881 (-522)))))) (-15 -2738 ((-588 (-628 (-291 (-522)))) (-291 (-522)) (-628 (-382 (-881 (-522)))))) (-15 -1464 ((-588 (-291 (-522))) (-628 (-382 (-881 (-522)))))) (-15 -3076 ((-3 (-628 (-291 (-522))) "failed") (-628 (-382 (-881 (-522)))))) (-15 -1567 ((-628 (-291 (-522))) (-628 (-291 (-522))))) (-15 -3017 ((-588 (-628 (-291 (-522)))) (-588 (-628 (-291 (-522)))))) (-15 -3736 ((-588 (-628 (-291 (-522)))) (-628 (-382 (-881 (-522)))))))) (T -956))
+((-3736 (*1 *2 *3) (-12 (-5 *3 (-628 (-382 (-881 (-522))))) (-5 *2 (-588 (-628 (-291 (-522))))) (-5 *1 (-956)))) (-3017 (*1 *2 *2) (-12 (-5 *2 (-588 (-628 (-291 (-522))))) (-5 *1 (-956)))) (-1567 (*1 *2 *2) (-12 (-5 *2 (-628 (-291 (-522)))) (-5 *1 (-956)))) (-3076 (*1 *2 *3) (|partial| -12 (-5 *3 (-628 (-382 (-881 (-522))))) (-5 *2 (-628 (-291 (-522)))) (-5 *1 (-956)))) (-1464 (*1 *2 *3) (-12 (-5 *3 (-628 (-382 (-881 (-522))))) (-5 *2 (-588 (-291 (-522)))) (-5 *1 (-956)))) (-2738 (*1 *2 *3 *4) (-12 (-5 *4 (-628 (-382 (-881 (-522))))) (-5 *2 (-588 (-628 (-291 (-522))))) (-5 *1 (-956)) (-5 *3 (-291 (-522))))) (-1212 (*1 *2 *3) (-12 (-5 *3 (-628 (-382 (-881 (-522))))) (-5 *2 (-588 (-2 (|:| |radval| (-291 (-522))) (|:| |radmult| (-522)) (|:| |radvect| (-588 (-628 (-291 (-522)))))))) (-5 *1 (-956)))))
+(-10 -7 (-15 -1212 ((-588 (-2 (|:| |radval| (-291 (-522))) (|:| |radmult| (-522)) (|:| |radvect| (-588 (-628 (-291 (-522))))))) (-628 (-382 (-881 (-522)))))) (-15 -2738 ((-588 (-628 (-291 (-522)))) (-291 (-522)) (-628 (-382 (-881 (-522)))))) (-15 -1464 ((-588 (-291 (-522))) (-628 (-382 (-881 (-522)))))) (-15 -3076 ((-3 (-628 (-291 (-522))) "failed") (-628 (-382 (-881 (-522)))))) (-15 -1567 ((-628 (-291 (-522))) (-628 (-291 (-522))))) (-15 -3017 ((-588 (-628 (-291 (-522)))) (-588 (-628 (-291 (-522)))))) (-15 -3736 ((-588 (-628 (-291 (-522)))) (-628 (-382 (-881 (-522)))))))
+((-2170 ((|#1| |#1| (-850)) 9)))
+(((-957 |#1|) (-10 -7 (-15 -2170 (|#1| |#1| (-850)))) (-13 (-1014) (-10 -8 (-15 * ($ $ $))))) (T -957))
+((-2170 (*1 *2 *2 *3) (-12 (-5 *3 (-850)) (-5 *1 (-957 *2)) (-4 *2 (-13 (-1014) (-10 -8 (-15 * ($ $ $))))))))
+(-10 -7 (-15 -2170 (|#1| |#1| (-850))))
+((-2217 ((|#1| (-287)) 11) (((-1171) |#1|) 9)))
+(((-958 |#1|) (-10 -7 (-15 -2217 ((-1171) |#1|)) (-15 -2217 (|#1| (-287)))) (-1120)) (T -958))
+((-2217 (*1 *2 *3) (-12 (-5 *3 (-287)) (-5 *1 (-958 *2)) (-4 *2 (-1120)))) (-2217 (*1 *2 *3) (-12 (-5 *2 (-1171)) (-5 *1 (-958 *3)) (-4 *3 (-1120)))))
+(-10 -7 (-15 -2217 ((-1171) |#1|)) (-15 -2217 (|#1| (-287))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-2153 (($ |#4|) 25)) (-3920 (((-3 $ "failed") $) NIL)) (-2859 (((-108) $) NIL)) (-2142 ((|#4| $) 27)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 46) (($ (-522)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-2742 (((-708)) 43)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 21 T CONST)) (-3709 (($) 23 T CONST)) (-1562 (((-108) $ $) 40)) (-1672 (($ $) 31) (($ $ $) NIL)) (-1661 (($ $ $) 29)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
+(((-959 |#1| |#2| |#3| |#4| |#5|) (-13 (-157) (-37 |#1|) (-10 -8 (-15 -2153 ($ |#4|)) (-15 -2217 ($ |#4|)) (-15 -2142 (|#4| $)))) (-338) (-730) (-784) (-878 |#1| |#2| |#3|) (-588 |#4|)) (T -959))
+((-2153 (*1 *1 *2) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-959 *3 *4 *5 *2 *6)) (-4 *2 (-878 *3 *4 *5)) (-14 *6 (-588 *2)))) (-2217 (*1 *1 *2) (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-959 *3 *4 *5 *2 *6)) (-4 *2 (-878 *3 *4 *5)) (-14 *6 (-588 *2)))) (-2142 (*1 *2 *1) (-12 (-4 *2 (-878 *3 *4 *5)) (-5 *1 (-959 *3 *4 *5 *2 *6)) (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-14 *6 (-588 *2)))))
+(-13 (-157) (-37 |#1|) (-10 -8 (-15 -2153 ($ |#4|)) (-15 -2217 ($ |#4|)) (-15 -2142 (|#4| $))))
+((-1419 (((-108) $ $) NIL (-3844 (|has| (-51) (-1014)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014))))) (-1883 (($) NIL) (($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) NIL)) (-3883 (((-1171) $ (-1085) (-1085)) NIL (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) NIL)) (-4130 (((-108) (-108)) 39)) (-1329 (((-108) (-108)) 38)) (-2437 (((-51) $ (-1085) (-51)) NIL)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-4011 (((-3 (-51) "failed") (-1085) $) NIL)) (-3367 (($) NIL T CONST)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014))))) (-1700 (($ (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-3 (-51) "failed") (-1085) $) NIL)) (-1424 (($ (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (($ (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $ (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (((-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $ (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-2411 (((-51) $ (-1085) (-51)) NIL (|has| $ (-6 -4239)))) (-2186 (((-51) $ (-1085)) NIL)) (-2395 (((-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-588 (-51)) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-1085) $) NIL (|has| (-1085) (-784)))) (-4084 (((-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-588 (-51)) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014))))) (-2201 (((-1085) $) NIL (|has| (-1085) (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4239))) (($ (-1 (-51) (-51)) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL) (($ (-1 (-51) (-51)) $) NIL) (($ (-1 (-51) (-51) (-51)) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (-3844 (|has| (-51) (-1014)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014))))) (-2562 (((-588 (-1085)) $) 34)) (-2241 (((-108) (-1085) $) NIL)) (-1431 (((-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) NIL)) (-3365 (($ (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) NIL)) (-2130 (((-588 (-1085)) $) NIL)) (-2103 (((-108) (-1085) $) NIL)) (-4174 (((-1032) $) NIL (-3844 (|has| (-51) (-1014)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014))))) (-2337 (((-51) $) NIL (|has| (-1085) (-784)))) (-2187 (((-3 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) "failed") (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL)) (-1972 (($ $ (-51)) NIL (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) NIL)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))))) NIL (-12 (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (($ $ (-270 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) NIL (-12 (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (($ $ (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) NIL (-12 (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (($ $ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) NIL (-12 (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (($ $ (-588 (-51)) (-588 (-51))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-51) (-51)) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-270 (-51))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-588 (-270 (-51)))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014))))) (-1973 (((-588 (-51)) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 (((-51) $ (-1085)) 35) (((-51) $ (-1085) (-51)) NIL)) (-3546 (($) NIL) (($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) NIL)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (((-708) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014)))) (((-708) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) NIL)) (-2217 (((-792) $) 37 (-3844 (|has| (-51) (-562 (-792))) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-562 (-792)))))) (-2501 (($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) NIL)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (-3844 (|has| (-51) (-1014)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014))))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-960) (-13 (-1097 (-1085) (-51)) (-10 -7 (-15 -4130 ((-108) (-108))) (-15 -1329 ((-108) (-108))) (-6 -4238)))) (T -960))
+((-4130 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-960)))) (-1329 (*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-960)))))
+(-13 (-1097 (-1085) (-51)) (-10 -7 (-15 -4130 ((-108) (-108))) (-15 -1329 ((-108) (-108))) (-6 -4238)))
+((-1478 ((|#2| $) 10)))
+(((-961 |#1| |#2|) (-10 -8 (-15 -1478 (|#2| |#1|))) (-962 |#2|) (-1120)) (T -961))
+NIL
+(-10 -8 (-15 -1478 (|#2| |#1|)))
+((-3700 (((-3 |#1| "failed") $) 7)) (-1478 ((|#1| $) 8)) (-2217 (($ |#1|) 6)))
(((-962 |#1|) (-1197) (-1120)) (T -962))
-((-1484 (*1 *2 *1) (-12 (-4 *1 (-962 *2)) (-4 *2 (-1120)))) (-1297 (*1 *2 *1) (|partial| -12 (-4 *1 (-962 *2)) (-4 *2 (-1120)))) (-2190 (*1 *1 *2) (-12 (-4 *1 (-962 *2)) (-4 *2 (-1120)))))
-(-13 (-10 -8 (-15 -2190 ($ |t#1|)) (-15 -1297 ((-3 |t#1| "failed") $)) (-15 -1484 (|t#1| $))))
-((-2465 (((-588 (-588 (-270 (-382 (-881 |#2|))))) (-588 (-881 |#2|)) (-588 (-1085))) 35)))
-(((-963 |#1| |#2|) (-10 -7 (-15 -2465 ((-588 (-588 (-270 (-382 (-881 |#2|))))) (-588 (-881 |#2|)) (-588 (-1085))))) (-514) (-13 (-514) (-962 |#1|))) (T -963))
-((-2465 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *6))) (-5 *4 (-588 (-1085))) (-4 *6 (-13 (-514) (-962 *5))) (-4 *5 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *6)))))) (-5 *1 (-963 *5 *6)))))
-(-10 -7 (-15 -2465 ((-588 (-588 (-270 (-382 (-881 |#2|))))) (-588 (-881 |#2|)) (-588 (-1085)))))
-((-2566 (((-354)) 15)) (-3666 (((-1 (-354)) (-354) (-354)) 20)) (-1639 (((-1 (-354)) (-708)) 43)) (-2330 (((-354)) 34)) (-3663 (((-1 (-354)) (-354) (-354)) 35)) (-4110 (((-354)) 26)) (-2453 (((-1 (-354)) (-354)) 27)) (-3451 (((-354) (-708)) 38)) (-2764 (((-1 (-354)) (-708)) 39)) (-4055 (((-1 (-354)) (-708) (-708)) 42)) (-2627 (((-1 (-354)) (-708) (-708)) 40)))
-(((-964) (-10 -7 (-15 -2566 ((-354))) (-15 -2330 ((-354))) (-15 -4110 ((-354))) (-15 -3451 ((-354) (-708))) (-15 -3666 ((-1 (-354)) (-354) (-354))) (-15 -3663 ((-1 (-354)) (-354) (-354))) (-15 -2453 ((-1 (-354)) (-354))) (-15 -2764 ((-1 (-354)) (-708))) (-15 -2627 ((-1 (-354)) (-708) (-708))) (-15 -4055 ((-1 (-354)) (-708) (-708))) (-15 -1639 ((-1 (-354)) (-708))))) (T -964))
-((-1639 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964)))) (-4055 (*1 *2 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964)))) (-2627 (*1 *2 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964)))) (-2764 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964)))) (-2453 (*1 *2 *3) (-12 (-5 *2 (-1 (-354))) (-5 *1 (-964)) (-5 *3 (-354)))) (-3663 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-354))) (-5 *1 (-964)) (-5 *3 (-354)))) (-3666 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-354))) (-5 *1 (-964)) (-5 *3 (-354)))) (-3451 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-354)) (-5 *1 (-964)))) (-4110 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-964)))) (-2330 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-964)))) (-2566 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-964)))))
-(-10 -7 (-15 -2566 ((-354))) (-15 -2330 ((-354))) (-15 -4110 ((-354))) (-15 -3451 ((-354) (-708))) (-15 -3666 ((-1 (-354)) (-354) (-354))) (-15 -3663 ((-1 (-354)) (-354) (-354))) (-15 -2453 ((-1 (-354)) (-354))) (-15 -2764 ((-1 (-354)) (-708))) (-15 -2627 ((-1 (-354)) (-708) (-708))) (-15 -4055 ((-1 (-354)) (-708) (-708))) (-15 -1639 ((-1 (-354)) (-708))))
-((-1916 (((-393 |#1|) |#1|) 31)))
-(((-965 |#1|) (-10 -7 (-15 -1916 ((-393 |#1|) |#1|))) (-1142 (-382 (-881 (-522))))) (T -965))
-((-1916 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-965 *3)) (-4 *3 (-1142 (-382 (-881 (-522))))))))
-(-10 -7 (-15 -1916 ((-393 |#1|) |#1|)))
-((-1211 (((-382 (-393 (-881 |#1|))) (-382 (-881 |#1|))) 14)))
-(((-966 |#1|) (-10 -7 (-15 -1211 ((-382 (-393 (-881 |#1|))) (-382 (-881 |#1|))))) (-283)) (T -966))
-((-1211 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-283)) (-5 *2 (-382 (-393 (-881 *4)))) (-5 *1 (-966 *4)))))
-(-10 -7 (-15 -1211 ((-382 (-393 (-881 |#1|))) (-382 (-881 |#1|)))))
-((-4090 (((-588 (-1085)) (-382 (-881 |#1|))) 15)) (-1282 (((-382 (-1081 (-382 (-881 |#1|)))) (-382 (-881 |#1|)) (-1085)) 22)) (-4073 (((-382 (-881 |#1|)) (-382 (-1081 (-382 (-881 |#1|)))) (-1085)) 24)) (-3145 (((-3 (-1085) "failed") (-382 (-881 |#1|))) 18)) (-2289 (((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-588 (-270 (-382 (-881 |#1|))))) 29) (((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|)))) 31) (((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-588 (-1085)) (-588 (-382 (-881 |#1|)))) 26) (((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|))) 27)) (-2190 (((-382 (-881 |#1|)) |#1|) 11)))
-(((-967 |#1|) (-10 -7 (-15 -4090 ((-588 (-1085)) (-382 (-881 |#1|)))) (-15 -3145 ((-3 (-1085) "failed") (-382 (-881 |#1|)))) (-15 -1282 ((-382 (-1081 (-382 (-881 |#1|)))) (-382 (-881 |#1|)) (-1085))) (-15 -4073 ((-382 (-881 |#1|)) (-382 (-1081 (-382 (-881 |#1|)))) (-1085))) (-15 -2289 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|)))) (-15 -2289 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-588 (-1085)) (-588 (-382 (-881 |#1|))))) (-15 -2289 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))))) (-15 -2289 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-588 (-270 (-382 (-881 |#1|)))))) (-15 -2190 ((-382 (-881 |#1|)) |#1|))) (-514)) (T -967))
-((-2190 (*1 *2 *3) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-967 *3)) (-4 *3 (-514)))) (-2289 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-270 (-382 (-881 *4))))) (-5 *2 (-382 (-881 *4))) (-4 *4 (-514)) (-5 *1 (-967 *4)))) (-2289 (*1 *2 *2 *3) (-12 (-5 *3 (-270 (-382 (-881 *4)))) (-5 *2 (-382 (-881 *4))) (-4 *4 (-514)) (-5 *1 (-967 *4)))) (-2289 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-588 (-1085))) (-5 *4 (-588 (-382 (-881 *5)))) (-5 *2 (-382 (-881 *5))) (-4 *5 (-514)) (-5 *1 (-967 *5)))) (-2289 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-382 (-881 *4))) (-5 *3 (-1085)) (-4 *4 (-514)) (-5 *1 (-967 *4)))) (-4073 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-1081 (-382 (-881 *5))))) (-5 *4 (-1085)) (-5 *2 (-382 (-881 *5))) (-5 *1 (-967 *5)) (-4 *5 (-514)))) (-1282 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-514)) (-5 *2 (-382 (-1081 (-382 (-881 *5))))) (-5 *1 (-967 *5)) (-5 *3 (-382 (-881 *5))))) (-3145 (*1 *2 *3) (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-5 *2 (-1085)) (-5 *1 (-967 *4)))) (-4090 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-5 *2 (-588 (-1085))) (-5 *1 (-967 *4)))))
-(-10 -7 (-15 -4090 ((-588 (-1085)) (-382 (-881 |#1|)))) (-15 -3145 ((-3 (-1085) "failed") (-382 (-881 |#1|)))) (-15 -1282 ((-382 (-1081 (-382 (-881 |#1|)))) (-382 (-881 |#1|)) (-1085))) (-15 -4073 ((-382 (-881 |#1|)) (-382 (-1081 (-382 (-881 |#1|)))) (-1085))) (-15 -2289 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|)))) (-15 -2289 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-588 (-1085)) (-588 (-382 (-881 |#1|))))) (-15 -2289 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))))) (-15 -2289 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-588 (-270 (-382 (-881 |#1|)))))) (-15 -2190 ((-382 (-881 |#1|)) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2950 (((-588 (-2 (|:| -1650 $) (|:| -1544 (-588 (-717 |#1| (-794 |#2|)))))) (-588 (-717 |#1| (-794 |#2|)))) NIL)) (-4125 (((-588 $) (-588 (-717 |#1| (-794 |#2|)))) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-108)) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-108) (-108)) NIL)) (-4090 (((-588 (-794 |#2|)) $) NIL)) (-2690 (((-108) $) NIL)) (-4140 (((-108) $) NIL (|has| |#1| (-514)))) (-3575 (((-108) (-717 |#1| (-794 |#2|)) $) NIL) (((-108) $) NIL)) (-3607 (((-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-3119 (((-588 (-2 (|:| |val| (-717 |#1| (-794 |#2|))) (|:| -1886 $))) (-717 |#1| (-794 |#2|)) $) NIL)) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ (-794 |#2|)) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-1628 (($ (-1 (-108) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 (-717 |#1| (-794 |#2|)) "failed") $ (-794 |#2|)) NIL)) (-3175 (($) NIL T CONST)) (-3639 (((-108) $) NIL (|has| |#1| (-514)))) (-3982 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3996 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3538 (((-108) $) NIL (|has| |#1| (-514)))) (-2149 (((-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|))) $ (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) (-1 (-108) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)))) NIL)) (-3050 (((-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|))) $) NIL (|has| |#1| (-514)))) (-1787 (((-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|))) $) NIL (|has| |#1| (-514)))) (-1297 (((-3 $ "failed") (-588 (-717 |#1| (-794 |#2|)))) NIL)) (-1484 (($ (-588 (-717 |#1| (-794 |#2|)))) NIL)) (-2306 (((-3 $ "failed") $) NIL)) (-2806 (((-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-717 |#1| (-794 |#2|)) (-1014))))) (-1423 (($ (-717 |#1| (-794 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-717 |#1| (-794 |#2|)) (-1014)))) (($ (-1 (-108) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3421 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-717 |#1| (-794 |#2|))) (|:| |den| |#1|)) (-717 |#1| (-794 |#2|)) $) NIL (|has| |#1| (-514)))) (-1934 (((-108) (-717 |#1| (-794 |#2|)) $ (-1 (-108) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)))) NIL)) (-4164 (((-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-3864 (((-717 |#1| (-794 |#2|)) (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) $ (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-717 |#1| (-794 |#2|)) (-1014)))) (((-717 |#1| (-794 |#2|)) (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) $ (-717 |#1| (-794 |#2|))) NIL (|has| $ (-6 -4238))) (((-717 |#1| (-794 |#2|)) (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $ (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) (-1 (-108) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)))) NIL)) (-2091 (((-2 (|:| -1650 (-588 (-717 |#1| (-794 |#2|)))) (|:| -1544 (-588 (-717 |#1| (-794 |#2|))))) $) NIL)) (-2208 (((-108) (-717 |#1| (-794 |#2|)) $) NIL)) (-3129 (((-108) (-717 |#1| (-794 |#2|)) $) NIL)) (-2198 (((-108) (-717 |#1| (-794 |#2|)) $) NIL) (((-108) $) NIL)) (-3837 (((-588 (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3341 (((-108) (-717 |#1| (-794 |#2|)) $) NIL) (((-108) $) NIL)) (-1521 (((-794 |#2|) $) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-717 |#1| (-794 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-717 |#1| (-794 |#2|)) (-1014))))) (-3838 (($ (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) $) NIL)) (-2458 (((-588 (-794 |#2|)) $) NIL)) (-1606 (((-108) (-794 |#2|) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-3959 (((-3 (-717 |#1| (-794 |#2|)) (-588 $)) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-1331 (((-588 (-2 (|:| |val| (-717 |#1| (-794 |#2|))) (|:| -1886 $))) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-1442 (((-3 (-717 |#1| (-794 |#2|)) "failed") $) NIL)) (-2893 (((-588 $) (-717 |#1| (-794 |#2|)) $) NIL)) (-4190 (((-3 (-108) (-588 $)) (-717 |#1| (-794 |#2|)) $) NIL)) (-3878 (((-588 (-2 (|:| |val| (-108)) (|:| -1886 $))) (-717 |#1| (-794 |#2|)) $) NIL) (((-108) (-717 |#1| (-794 |#2|)) $) NIL)) (-2416 (((-588 $) (-717 |#1| (-794 |#2|)) $) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) $) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-588 $)) NIL) (((-588 $) (-717 |#1| (-794 |#2|)) (-588 $)) NIL)) (-2135 (($ (-717 |#1| (-794 |#2|)) $) NIL) (($ (-588 (-717 |#1| (-794 |#2|))) $) NIL)) (-2242 (((-588 (-717 |#1| (-794 |#2|))) $) NIL)) (-3409 (((-108) (-717 |#1| (-794 |#2|)) $) NIL) (((-108) $) NIL)) (-1451 (((-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-2123 (((-108) $ $) NIL)) (-2039 (((-2 (|:| |num| (-717 |#1| (-794 |#2|))) (|:| |den| |#1|)) (-717 |#1| (-794 |#2|)) $) NIL (|has| |#1| (-514)))) (-2230 (((-108) (-717 |#1| (-794 |#2|)) $) NIL) (((-108) $) NIL)) (-2680 (((-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-4151 (((-1032) $) NIL)) (-2294 (((-3 (-717 |#1| (-794 |#2|)) "failed") $) NIL)) (-1414 (((-3 (-717 |#1| (-794 |#2|)) "failed") (-1 (-108) (-717 |#1| (-794 |#2|))) $) NIL)) (-3307 (((-3 $ "failed") $ (-717 |#1| (-794 |#2|))) NIL)) (-3719 (($ $ (-717 |#1| (-794 |#2|))) NIL) (((-588 $) (-717 |#1| (-794 |#2|)) $) NIL) (((-588 $) (-717 |#1| (-794 |#2|)) (-588 $)) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) $) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-588 $)) NIL)) (-3053 (((-108) (-1 (-108) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|)))) NIL (-12 (|has| (-717 |#1| (-794 |#2|)) (-285 (-717 |#1| (-794 |#2|)))) (|has| (-717 |#1| (-794 |#2|)) (-1014)))) (($ $ (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) NIL (-12 (|has| (-717 |#1| (-794 |#2|)) (-285 (-717 |#1| (-794 |#2|)))) (|has| (-717 |#1| (-794 |#2|)) (-1014)))) (($ $ (-270 (-717 |#1| (-794 |#2|)))) NIL (-12 (|has| (-717 |#1| (-794 |#2|)) (-285 (-717 |#1| (-794 |#2|)))) (|has| (-717 |#1| (-794 |#2|)) (-1014)))) (($ $ (-588 (-270 (-717 |#1| (-794 |#2|))))) NIL (-12 (|has| (-717 |#1| (-794 |#2|)) (-285 (-717 |#1| (-794 |#2|)))) (|has| (-717 |#1| (-794 |#2|)) (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2793 (((-708) $) NIL)) (-4168 (((-708) (-717 |#1| (-794 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-717 |#1| (-794 |#2|)) (-1014)))) (((-708) (-1 (-108) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-717 |#1| (-794 |#2|)) (-563 (-498))))) (-2201 (($ (-588 (-717 |#1| (-794 |#2|)))) NIL)) (-2020 (($ $ (-794 |#2|)) NIL)) (-3606 (($ $ (-794 |#2|)) NIL)) (-3968 (($ $) NIL)) (-2463 (($ $ (-794 |#2|)) NIL)) (-2190 (((-792) $) NIL) (((-588 (-717 |#1| (-794 |#2|))) $) NIL)) (-1974 (((-708) $) NIL (|has| (-794 |#2|) (-343)))) (-3989 (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 (-717 |#1| (-794 |#2|))))) "failed") (-588 (-717 |#1| (-794 |#2|))) (-1 (-108) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 (-717 |#1| (-794 |#2|))))) "failed") (-588 (-717 |#1| (-794 |#2|))) (-1 (-108) (-717 |#1| (-794 |#2|))) (-1 (-108) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)))) NIL)) (-4212 (((-108) $ (-1 (-108) (-717 |#1| (-794 |#2|)) (-588 (-717 |#1| (-794 |#2|))))) NIL)) (-2188 (((-588 $) (-717 |#1| (-794 |#2|)) $) NIL) (((-588 $) (-717 |#1| (-794 |#2|)) (-588 $)) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) $) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-588 $)) NIL)) (-3648 (((-108) (-1 (-108) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2360 (((-588 (-794 |#2|)) $) NIL)) (-3021 (((-108) (-717 |#1| (-794 |#2|)) $) NIL)) (-2351 (((-108) (-794 |#2|) $) NIL)) (-1531 (((-108) $ $) NIL)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-968 |#1| |#2|) (-13 (-990 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|))) (-10 -8 (-15 -4125 ((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-108) (-108))))) (-426) (-588 (-1085))) (T -968))
-((-4125 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426)) (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-968 *5 *6)))))
-(-13 (-990 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|))) (-10 -8 (-15 -4125 ((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-108) (-108)))))
-((-3666 (((-1 (-522)) (-1009 (-522))) 33)) (-1960 (((-522) (-522) (-522) (-522) (-522)) 30)) (-1300 (((-1 (-522)) |RationalNumber|) NIL)) (-2778 (((-1 (-522)) |RationalNumber|) NIL)) (-1480 (((-1 (-522)) (-522) |RationalNumber|) NIL)))
-(((-969) (-10 -7 (-15 -3666 ((-1 (-522)) (-1009 (-522)))) (-15 -1480 ((-1 (-522)) (-522) |RationalNumber|)) (-15 -1300 ((-1 (-522)) |RationalNumber|)) (-15 -2778 ((-1 (-522)) |RationalNumber|)) (-15 -1960 ((-522) (-522) (-522) (-522) (-522))))) (T -969))
-((-1960 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-969)))) (-2778 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-522))) (-5 *1 (-969)))) (-1300 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-522))) (-5 *1 (-969)))) (-1480 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-522))) (-5 *1 (-969)) (-5 *3 (-522)))) (-3666 (*1 *2 *3) (-12 (-5 *3 (-1009 (-522))) (-5 *2 (-1 (-522))) (-5 *1 (-969)))))
-(-10 -7 (-15 -3666 ((-1 (-522)) (-1009 (-522)))) (-15 -1480 ((-1 (-522)) (-522) |RationalNumber|)) (-15 -1300 ((-1 (-522)) |RationalNumber|)) (-15 -2778 ((-1 (-522)) |RationalNumber|)) (-15 -1960 ((-522) (-522) (-522) (-522) (-522))))
-((-2190 (((-792) $) NIL) (($ (-522)) 10)))
-(((-970 |#1|) (-10 -8 (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|))) (-971)) (T -970))
-NIL
-(-10 -8 (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ (-522)) 28)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-1478 (*1 *2 *1) (-12 (-4 *1 (-962 *2)) (-4 *2 (-1120)))) (-3700 (*1 *2 *1) (|partial| -12 (-4 *1 (-962 *2)) (-4 *2 (-1120)))) (-2217 (*1 *1 *2) (-12 (-4 *1 (-962 *2)) (-4 *2 (-1120)))))
+(-13 (-10 -8 (-15 -2217 ($ |t#1|)) (-15 -3700 ((-3 |t#1| "failed") $)) (-15 -1478 (|t#1| $))))
+((-2796 (((-588 (-588 (-270 (-382 (-881 |#2|))))) (-588 (-881 |#2|)) (-588 (-1085))) 35)))
+(((-963 |#1| |#2|) (-10 -7 (-15 -2796 ((-588 (-588 (-270 (-382 (-881 |#2|))))) (-588 (-881 |#2|)) (-588 (-1085))))) (-514) (-13 (-514) (-962 |#1|))) (T -963))
+((-2796 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *6))) (-5 *4 (-588 (-1085))) (-4 *6 (-13 (-514) (-962 *5))) (-4 *5 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *6)))))) (-5 *1 (-963 *5 *6)))))
+(-10 -7 (-15 -2796 ((-588 (-588 (-270 (-382 (-881 |#2|))))) (-588 (-881 |#2|)) (-588 (-1085)))))
+((-3854 (((-354)) 15)) (-1577 (((-1 (-354)) (-354) (-354)) 20)) (-1704 (((-1 (-354)) (-708)) 43)) (-2977 (((-354)) 34)) (-3798 (((-1 (-354)) (-354) (-354)) 35)) (-2299 (((-354)) 26)) (-2643 (((-1 (-354)) (-354)) 27)) (-3139 (((-354) (-708)) 38)) (-1565 (((-1 (-354)) (-708)) 39)) (-4102 (((-1 (-354)) (-708) (-708)) 42)) (-2288 (((-1 (-354)) (-708) (-708)) 40)))
+(((-964) (-10 -7 (-15 -3854 ((-354))) (-15 -2977 ((-354))) (-15 -2299 ((-354))) (-15 -3139 ((-354) (-708))) (-15 -1577 ((-1 (-354)) (-354) (-354))) (-15 -3798 ((-1 (-354)) (-354) (-354))) (-15 -2643 ((-1 (-354)) (-354))) (-15 -1565 ((-1 (-354)) (-708))) (-15 -2288 ((-1 (-354)) (-708) (-708))) (-15 -4102 ((-1 (-354)) (-708) (-708))) (-15 -1704 ((-1 (-354)) (-708))))) (T -964))
+((-1704 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964)))) (-4102 (*1 *2 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964)))) (-2288 (*1 *2 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964)))) (-1565 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964)))) (-2643 (*1 *2 *3) (-12 (-5 *2 (-1 (-354))) (-5 *1 (-964)) (-5 *3 (-354)))) (-3798 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-354))) (-5 *1 (-964)) (-5 *3 (-354)))) (-1577 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-354))) (-5 *1 (-964)) (-5 *3 (-354)))) (-3139 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-354)) (-5 *1 (-964)))) (-2299 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-964)))) (-2977 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-964)))) (-3854 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-964)))))
+(-10 -7 (-15 -3854 ((-354))) (-15 -2977 ((-354))) (-15 -2299 ((-354))) (-15 -3139 ((-354) (-708))) (-15 -1577 ((-1 (-354)) (-354) (-354))) (-15 -3798 ((-1 (-354)) (-354) (-354))) (-15 -2643 ((-1 (-354)) (-354))) (-15 -1565 ((-1 (-354)) (-708))) (-15 -2288 ((-1 (-354)) (-708) (-708))) (-15 -4102 ((-1 (-354)) (-708) (-708))) (-15 -1704 ((-1 (-354)) (-708))))
+((-2006 (((-393 |#1|) |#1|) 31)))
+(((-965 |#1|) (-10 -7 (-15 -2006 ((-393 |#1|) |#1|))) (-1142 (-382 (-881 (-522))))) (T -965))
+((-2006 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-965 *3)) (-4 *3 (-1142 (-382 (-881 (-522))))))))
+(-10 -7 (-15 -2006 ((-393 |#1|) |#1|)))
+((-1836 (((-382 (-393 (-881 |#1|))) (-382 (-881 |#1|))) 14)))
+(((-966 |#1|) (-10 -7 (-15 -1836 ((-382 (-393 (-881 |#1|))) (-382 (-881 |#1|))))) (-283)) (T -966))
+((-1836 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-283)) (-5 *2 (-382 (-393 (-881 *4)))) (-5 *1 (-966 *4)))))
+(-10 -7 (-15 -1836 ((-382 (-393 (-881 |#1|))) (-382 (-881 |#1|)))))
+((-3533 (((-588 (-1085)) (-382 (-881 |#1|))) 15)) (-1264 (((-382 (-1081 (-382 (-881 |#1|)))) (-382 (-881 |#1|)) (-1085)) 22)) (-3520 (((-382 (-881 |#1|)) (-382 (-1081 (-382 (-881 |#1|)))) (-1085)) 24)) (-3155 (((-3 (-1085) "failed") (-382 (-881 |#1|))) 18)) (-2330 (((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-588 (-270 (-382 (-881 |#1|))))) 29) (((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|)))) 31) (((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-588 (-1085)) (-588 (-382 (-881 |#1|)))) 26) (((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|))) 27)) (-2217 (((-382 (-881 |#1|)) |#1|) 11)))
+(((-967 |#1|) (-10 -7 (-15 -3533 ((-588 (-1085)) (-382 (-881 |#1|)))) (-15 -3155 ((-3 (-1085) "failed") (-382 (-881 |#1|)))) (-15 -1264 ((-382 (-1081 (-382 (-881 |#1|)))) (-382 (-881 |#1|)) (-1085))) (-15 -3520 ((-382 (-881 |#1|)) (-382 (-1081 (-382 (-881 |#1|)))) (-1085))) (-15 -2330 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|)))) (-15 -2330 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-588 (-1085)) (-588 (-382 (-881 |#1|))))) (-15 -2330 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))))) (-15 -2330 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-588 (-270 (-382 (-881 |#1|)))))) (-15 -2217 ((-382 (-881 |#1|)) |#1|))) (-514)) (T -967))
+((-2217 (*1 *2 *3) (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-967 *3)) (-4 *3 (-514)))) (-2330 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-270 (-382 (-881 *4))))) (-5 *2 (-382 (-881 *4))) (-4 *4 (-514)) (-5 *1 (-967 *4)))) (-2330 (*1 *2 *2 *3) (-12 (-5 *3 (-270 (-382 (-881 *4)))) (-5 *2 (-382 (-881 *4))) (-4 *4 (-514)) (-5 *1 (-967 *4)))) (-2330 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-588 (-1085))) (-5 *4 (-588 (-382 (-881 *5)))) (-5 *2 (-382 (-881 *5))) (-4 *5 (-514)) (-5 *1 (-967 *5)))) (-2330 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-382 (-881 *4))) (-5 *3 (-1085)) (-4 *4 (-514)) (-5 *1 (-967 *4)))) (-3520 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-1081 (-382 (-881 *5))))) (-5 *4 (-1085)) (-5 *2 (-382 (-881 *5))) (-5 *1 (-967 *5)) (-4 *5 (-514)))) (-1264 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-514)) (-5 *2 (-382 (-1081 (-382 (-881 *5))))) (-5 *1 (-967 *5)) (-5 *3 (-382 (-881 *5))))) (-3155 (*1 *2 *3) (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-5 *2 (-1085)) (-5 *1 (-967 *4)))) (-3533 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-5 *2 (-588 (-1085))) (-5 *1 (-967 *4)))))
+(-10 -7 (-15 -3533 ((-588 (-1085)) (-382 (-881 |#1|)))) (-15 -3155 ((-3 (-1085) "failed") (-382 (-881 |#1|)))) (-15 -1264 ((-382 (-1081 (-382 (-881 |#1|)))) (-382 (-881 |#1|)) (-1085))) (-15 -3520 ((-382 (-881 |#1|)) (-382 (-1081 (-382 (-881 |#1|)))) (-1085))) (-15 -2330 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|)))) (-15 -2330 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-588 (-1085)) (-588 (-382 (-881 |#1|))))) (-15 -2330 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-270 (-382 (-881 |#1|))))) (-15 -2330 ((-382 (-881 |#1|)) (-382 (-881 |#1|)) (-588 (-270 (-382 (-881 |#1|)))))) (-15 -2217 ((-382 (-881 |#1|)) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-3829 (((-588 (-2 (|:| -1720 $) (|:| -1566 (-588 (-717 |#1| (-794 |#2|)))))) (-588 (-717 |#1| (-794 |#2|)))) NIL)) (-2510 (((-588 $) (-588 (-717 |#1| (-794 |#2|)))) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-108)) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-108) (-108)) NIL)) (-3533 (((-588 (-794 |#2|)) $) NIL)) (-2161 (((-108) $) NIL)) (-2702 (((-108) $) NIL (|has| |#1| (-514)))) (-1900 (((-108) (-717 |#1| (-794 |#2|)) $) NIL) (((-108) $) NIL)) (-2163 (((-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-2961 (((-588 (-2 (|:| |val| (-717 |#1| (-794 |#2|))) (|:| -1974 $))) (-717 |#1| (-794 |#2|)) $) NIL)) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ (-794 |#2|)) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1696 (($ (-1 (-108) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 (-717 |#1| (-794 |#2|)) "failed") $ (-794 |#2|)) NIL)) (-3367 (($) NIL T CONST)) (-1298 (((-108) $) NIL (|has| |#1| (-514)))) (-1657 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3598 (((-108) $ $) NIL (|has| |#1| (-514)))) (-2818 (((-108) $) NIL (|has| |#1| (-514)))) (-3090 (((-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|))) $ (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) (-1 (-108) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)))) NIL)) (-3461 (((-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|))) $) NIL (|has| |#1| (-514)))) (-3668 (((-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|))) $) NIL (|has| |#1| (-514)))) (-3700 (((-3 $ "failed") (-588 (-717 |#1| (-794 |#2|)))) NIL)) (-1478 (($ (-588 (-717 |#1| (-794 |#2|)))) NIL)) (-2352 (((-3 $ "failed") $) NIL)) (-2625 (((-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-717 |#1| (-794 |#2|)) (-1014))))) (-1424 (($ (-717 |#1| (-794 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-717 |#1| (-794 |#2|)) (-1014)))) (($ (-1 (-108) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-4002 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-717 |#1| (-794 |#2|))) (|:| |den| |#1|)) (-717 |#1| (-794 |#2|)) $) NIL (|has| |#1| (-514)))) (-1426 (((-108) (-717 |#1| (-794 |#2|)) $ (-1 (-108) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)))) NIL)) (-2918 (((-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-2153 (((-717 |#1| (-794 |#2|)) (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) $ (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-717 |#1| (-794 |#2|)) (-1014)))) (((-717 |#1| (-794 |#2|)) (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) $ (-717 |#1| (-794 |#2|))) NIL (|has| $ (-6 -4238))) (((-717 |#1| (-794 |#2|)) (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $ (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) (-1 (-108) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)))) NIL)) (-1199 (((-2 (|:| -1720 (-588 (-717 |#1| (-794 |#2|)))) (|:| -1566 (-588 (-717 |#1| (-794 |#2|))))) $) NIL)) (-2396 (((-108) (-717 |#1| (-794 |#2|)) $) NIL)) (-3039 (((-108) (-717 |#1| (-794 |#2|)) $) NIL)) (-2278 (((-108) (-717 |#1| (-794 |#2|)) $) NIL) (((-108) $) NIL)) (-2395 (((-588 (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1384 (((-108) (-717 |#1| (-794 |#2|)) $) NIL) (((-108) $) NIL)) (-1933 (((-794 |#2|) $) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-717 |#1| (-794 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-717 |#1| (-794 |#2|)) (-1014))))) (-2397 (($ (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) $) NIL)) (-2714 (((-588 (-794 |#2|)) $) NIL)) (-3826 (((-108) (-794 |#2|) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-1418 (((-3 (-717 |#1| (-794 |#2|)) (-588 $)) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-1998 (((-588 (-2 (|:| |val| (-717 |#1| (-794 |#2|))) (|:| -1974 $))) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-1442 (((-3 (-717 |#1| (-794 |#2|)) "failed") $) NIL)) (-1468 (((-588 $) (-717 |#1| (-794 |#2|)) $) NIL)) (-1892 (((-3 (-108) (-588 $)) (-717 |#1| (-794 |#2|)) $) NIL)) (-1862 (((-588 (-2 (|:| |val| (-108)) (|:| -1974 $))) (-717 |#1| (-794 |#2|)) $) NIL) (((-108) (-717 |#1| (-794 |#2|)) $) NIL)) (-2251 (((-588 $) (-717 |#1| (-794 |#2|)) $) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) $) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-588 $)) NIL) (((-588 $) (-717 |#1| (-794 |#2|)) (-588 $)) NIL)) (-2953 (($ (-717 |#1| (-794 |#2|)) $) NIL) (($ (-588 (-717 |#1| (-794 |#2|))) $) NIL)) (-4138 (((-588 (-717 |#1| (-794 |#2|))) $) NIL)) (-3864 (((-108) (-717 |#1| (-794 |#2|)) $) NIL) (((-108) $) NIL)) (-2556 (((-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-1517 (((-108) $ $) NIL)) (-2507 (((-2 (|:| |num| (-717 |#1| (-794 |#2|))) (|:| |den| |#1|)) (-717 |#1| (-794 |#2|)) $) NIL (|has| |#1| (-514)))) (-3060 (((-108) (-717 |#1| (-794 |#2|)) $) NIL) (((-108) $) NIL)) (-3896 (((-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)) $) NIL)) (-4174 (((-1032) $) NIL)) (-2337 (((-3 (-717 |#1| (-794 |#2|)) "failed") $) NIL)) (-2187 (((-3 (-717 |#1| (-794 |#2|)) "failed") (-1 (-108) (-717 |#1| (-794 |#2|))) $) NIL)) (-4078 (((-3 $ "failed") $ (-717 |#1| (-794 |#2|))) NIL)) (-3934 (($ $ (-717 |#1| (-794 |#2|))) NIL) (((-588 $) (-717 |#1| (-794 |#2|)) $) NIL) (((-588 $) (-717 |#1| (-794 |#2|)) (-588 $)) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) $) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-588 $)) NIL)) (-3487 (((-108) (-1 (-108) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-717 |#1| (-794 |#2|))) (-588 (-717 |#1| (-794 |#2|)))) NIL (-12 (|has| (-717 |#1| (-794 |#2|)) (-285 (-717 |#1| (-794 |#2|)))) (|has| (-717 |#1| (-794 |#2|)) (-1014)))) (($ $ (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|))) NIL (-12 (|has| (-717 |#1| (-794 |#2|)) (-285 (-717 |#1| (-794 |#2|)))) (|has| (-717 |#1| (-794 |#2|)) (-1014)))) (($ $ (-270 (-717 |#1| (-794 |#2|)))) NIL (-12 (|has| (-717 |#1| (-794 |#2|)) (-285 (-717 |#1| (-794 |#2|)))) (|has| (-717 |#1| (-794 |#2|)) (-1014)))) (($ $ (-588 (-270 (-717 |#1| (-794 |#2|))))) NIL (-12 (|has| (-717 |#1| (-794 |#2|)) (-285 (-717 |#1| (-794 |#2|)))) (|has| (-717 |#1| (-794 |#2|)) (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2487 (((-708) $) NIL)) (-4187 (((-708) (-717 |#1| (-794 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-717 |#1| (-794 |#2|)) (-1014)))) (((-708) (-1 (-108) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-717 |#1| (-794 |#2|)) (-563 (-498))))) (-2227 (($ (-588 (-717 |#1| (-794 |#2|)))) NIL)) (-2271 (($ $ (-794 |#2|)) NIL)) (-2154 (($ $ (-794 |#2|)) NIL)) (-1524 (($ $) NIL)) (-2773 (($ $ (-794 |#2|)) NIL)) (-2217 (((-792) $) NIL) (((-588 (-717 |#1| (-794 |#2|))) $) NIL)) (-3111 (((-708) $) NIL (|has| (-794 |#2|) (-343)))) (-3538 (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 (-717 |#1| (-794 |#2|))))) "failed") (-588 (-717 |#1| (-794 |#2|))) (-1 (-108) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 (-717 |#1| (-794 |#2|))))) "failed") (-588 (-717 |#1| (-794 |#2|))) (-1 (-108) (-717 |#1| (-794 |#2|))) (-1 (-108) (-717 |#1| (-794 |#2|)) (-717 |#1| (-794 |#2|)))) NIL)) (-2102 (((-108) $ (-1 (-108) (-717 |#1| (-794 |#2|)) (-588 (-717 |#1| (-794 |#2|))))) NIL)) (-3386 (((-588 $) (-717 |#1| (-794 |#2|)) $) NIL) (((-588 $) (-717 |#1| (-794 |#2|)) (-588 $)) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) $) NIL) (((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-588 $)) NIL)) (-1381 (((-108) (-1 (-108) (-717 |#1| (-794 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1982 (((-588 (-794 |#2|)) $) NIL)) (-1336 (((-108) (-717 |#1| (-794 |#2|)) $) NIL)) (-1711 (((-108) (-794 |#2|) $) NIL)) (-1562 (((-108) $ $) NIL)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-968 |#1| |#2|) (-13 (-990 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|))) (-10 -8 (-15 -2510 ((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-108) (-108))))) (-426) (-588 (-1085))) (T -968))
+((-2510 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426)) (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-968 *5 *6)))))
+(-13 (-990 |#1| (-494 (-794 |#2|)) (-794 |#2|) (-717 |#1| (-794 |#2|))) (-10 -8 (-15 -2510 ((-588 $) (-588 (-717 |#1| (-794 |#2|))) (-108) (-108)))))
+((-1577 (((-1 (-522)) (-1009 (-522))) 33)) (-2991 (((-522) (-522) (-522) (-522) (-522)) 30)) (-1715 (((-1 (-522)) |RationalNumber|) NIL)) (-1941 (((-1 (-522)) |RationalNumber|) NIL)) (-1591 (((-1 (-522)) (-522) |RationalNumber|) NIL)))
+(((-969) (-10 -7 (-15 -1577 ((-1 (-522)) (-1009 (-522)))) (-15 -1591 ((-1 (-522)) (-522) |RationalNumber|)) (-15 -1715 ((-1 (-522)) |RationalNumber|)) (-15 -1941 ((-1 (-522)) |RationalNumber|)) (-15 -2991 ((-522) (-522) (-522) (-522) (-522))))) (T -969))
+((-2991 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-969)))) (-1941 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-522))) (-5 *1 (-969)))) (-1715 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-522))) (-5 *1 (-969)))) (-1591 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-522))) (-5 *1 (-969)) (-5 *3 (-522)))) (-1577 (*1 *2 *3) (-12 (-5 *3 (-1009 (-522))) (-5 *2 (-1 (-522))) (-5 *1 (-969)))))
+(-10 -7 (-15 -1577 ((-1 (-522)) (-1009 (-522)))) (-15 -1591 ((-1 (-522)) (-522) |RationalNumber|)) (-15 -1715 ((-1 (-522)) |RationalNumber|)) (-15 -1941 ((-1 (-522)) |RationalNumber|)) (-15 -2991 ((-522) (-522) (-522) (-522) (-522))))
+((-2217 (((-792) $) NIL) (($ (-522)) 10)))
+(((-970 |#1|) (-10 -8 (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|))) (-971)) (T -970))
+NIL
+(-10 -8 (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ (-522)) 28)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-971) (-1197)) (T -971))
-((-2323 (*1 *2) (-12 (-4 *1 (-971)) (-5 *2 (-708)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-971)))))
-(-13 (-978) (-664) (-590 $) (-10 -8 (-15 -2323 ((-708))) (-15 -2190 ($ (-522))) (-6 -4235)))
+((-2742 (*1 *2) (-12 (-4 *1 (-971)) (-5 *2 (-708)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-971)))))
+(-13 (-978) (-664) (-590 $) (-10 -8 (-15 -2742 ((-708))) (-15 -2217 ($ (-522))) (-6 -4235)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 $) . T) ((-664) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-3774 (((-382 (-881 |#2|)) (-588 |#2|) (-588 |#2|) (-708) (-708)) 45)))
-(((-972 |#1| |#2|) (-10 -7 (-15 -3774 ((-382 (-881 |#2|)) (-588 |#2|) (-588 |#2|) (-708) (-708)))) (-1085) (-338)) (T -972))
-((-3774 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-588 *6)) (-5 *4 (-708)) (-4 *6 (-338)) (-5 *2 (-382 (-881 *6))) (-5 *1 (-972 *5 *6)) (-14 *5 (-1085)))))
-(-10 -7 (-15 -3774 ((-382 (-881 |#2|)) (-588 |#2|) (-588 |#2|) (-708) (-708))))
-((-2727 (((-108) $) 28)) (-2527 (((-108) $) 16)) (-1411 (((-708) $) 13)) (-1422 (((-708) $) 14)) (-1767 (((-108) $) 26)) (-1697 (((-108) $) 30)))
-(((-973 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -1422 ((-708) |#1|)) (-15 -1411 ((-708) |#1|)) (-15 -1697 ((-108) |#1|)) (-15 -2727 ((-108) |#1|)) (-15 -1767 ((-108) |#1|)) (-15 -2527 ((-108) |#1|))) (-974 |#2| |#3| |#4| |#5| |#6|) (-708) (-708) (-971) (-215 |#3| |#4|) (-215 |#2| |#4|)) (T -973))
-NIL
-(-10 -8 (-15 -1422 ((-708) |#1|)) (-15 -1411 ((-708) |#1|)) (-15 -1697 ((-108) |#1|)) (-15 -2727 ((-108) |#1|)) (-15 -1767 ((-108) |#1|)) (-15 -2527 ((-108) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2727 (((-108) $) 51)) (-1233 (((-3 $ "failed") $ $) 19)) (-2527 (((-108) $) 53)) (-4141 (((-108) $ (-708)) 61)) (-3175 (($) 17 T CONST)) (-2264 (($ $) 34 (|has| |#3| (-283)))) (-1860 ((|#4| $ (-522)) 39)) (-3166 (((-708) $) 33 (|has| |#3| (-514)))) (-3631 ((|#3| $ (-522) (-522)) 41)) (-3837 (((-588 |#3|) $) 68 (|has| $ (-6 -4238)))) (-3799 (((-708) $) 32 (|has| |#3| (-514)))) (-2064 (((-588 |#5|) $) 31 (|has| |#3| (-514)))) (-1411 (((-708) $) 45)) (-1422 (((-708) $) 44)) (-3352 (((-108) $ (-708)) 60)) (-2575 (((-522) $) 49)) (-1885 (((-522) $) 47)) (-3308 (((-588 |#3|) $) 69 (|has| $ (-6 -4238)))) (-2246 (((-108) |#3| $) 71 (-12 (|has| |#3| (-1014)) (|has| $ (-6 -4238))))) (-3886 (((-522) $) 48)) (-4132 (((-522) $) 46)) (-1366 (($ (-588 (-588 |#3|))) 54)) (-3838 (($ (-1 |#3| |#3|) $) 64 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#3| |#3|) $) 63) (($ (-1 |#3| |#3| |#3|) $ $) 37)) (-3237 (((-588 (-588 |#3|)) $) 43)) (-2720 (((-108) $ (-708)) 59)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2232 (((-3 $ "failed") $ |#3|) 36 (|has| |#3| (-514)))) (-3053 (((-108) (-1 (-108) |#3|) $) 66 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#3|) (-588 |#3|)) 75 (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ |#3| |#3|) 74 (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-270 |#3|)) 73 (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-588 (-270 |#3|))) 72 (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))))) (-1536 (((-108) $ $) 55)) (-3985 (((-108) $) 58)) (-3775 (($) 57)) (-2545 ((|#3| $ (-522) (-522)) 42) ((|#3| $ (-522) (-522) |#3|) 40)) (-1767 (((-108) $) 52)) (-4168 (((-708) |#3| $) 70 (-12 (|has| |#3| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#3|) $) 67 (|has| $ (-6 -4238)))) (-2404 (($ $) 56)) (-3488 ((|#5| $ (-522)) 38)) (-2190 (((-792) $) 11)) (-3648 (((-108) (-1 (-108) |#3|) $) 65 (|has| $ (-6 -4238)))) (-1697 (((-108) $) 50)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#3|) 35 (|has| |#3| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#3| $) 23) (($ $ |#3|) 26)) (-3480 (((-708) $) 62 (|has| $ (-6 -4238)))))
+((-3288 (((-382 (-881 |#2|)) (-588 |#2|) (-588 |#2|) (-708) (-708)) 45)))
+(((-972 |#1| |#2|) (-10 -7 (-15 -3288 ((-382 (-881 |#2|)) (-588 |#2|) (-588 |#2|) (-708) (-708)))) (-1085) (-338)) (T -972))
+((-3288 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-588 *6)) (-5 *4 (-708)) (-4 *6 (-338)) (-5 *2 (-382 (-881 *6))) (-5 *1 (-972 *5 *6)) (-14 *5 (-1085)))))
+(-10 -7 (-15 -3288 ((-382 (-881 |#2|)) (-588 |#2|) (-588 |#2|) (-708) (-708))))
+((-3455 (((-108) $) 28)) (-2208 (((-108) $) 16)) (-2949 (((-708) $) 13)) (-2960 (((-708) $) 14)) (-3498 (((-108) $) 26)) (-4047 (((-108) $) 30)))
+(((-973 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -2960 ((-708) |#1|)) (-15 -2949 ((-708) |#1|)) (-15 -4047 ((-108) |#1|)) (-15 -3455 ((-108) |#1|)) (-15 -3498 ((-108) |#1|)) (-15 -2208 ((-108) |#1|))) (-974 |#2| |#3| |#4| |#5| |#6|) (-708) (-708) (-971) (-215 |#3| |#4|) (-215 |#2| |#4|)) (T -973))
+NIL
+(-10 -8 (-15 -2960 ((-708) |#1|)) (-15 -2949 ((-708) |#1|)) (-15 -4047 ((-108) |#1|)) (-15 -3455 ((-108) |#1|)) (-15 -3498 ((-108) |#1|)) (-15 -2208 ((-108) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3455 (((-108) $) 51)) (-2265 (((-3 $ "failed") $ $) 19)) (-2208 (((-108) $) 53)) (-2717 (((-108) $ (-708)) 61)) (-3367 (($) 17 T CONST)) (-2091 (($ $) 34 (|has| |#3| (-283)))) (-2635 ((|#4| $ (-522)) 39)) (-1692 (((-708) $) 33 (|has| |#3| (-514)))) (-2186 ((|#3| $ (-522) (-522)) 41)) (-2395 (((-588 |#3|) $) 68 (|has| $ (-6 -4238)))) (-2336 (((-708) $) 32 (|has| |#3| (-514)))) (-2819 (((-588 |#5|) $) 31 (|has| |#3| (-514)))) (-2949 (((-708) $) 45)) (-2960 (((-708) $) 44)) (-1480 (((-108) $ (-708)) 60)) (-2604 (((-522) $) 49)) (-4042 (((-522) $) 47)) (-4084 (((-588 |#3|) $) 69 (|has| $ (-6 -4238)))) (-4176 (((-108) |#3| $) 71 (-12 (|has| |#3| (-1014)) (|has| $ (-6 -4238))))) (-1925 (((-522) $) 48)) (-2595 (((-522) $) 46)) (-1347 (($ (-588 (-588 |#3|))) 54)) (-2397 (($ (-1 |#3| |#3|) $) 64 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#3| |#3|) $) 63) (($ (-1 |#3| |#3| |#3|) $ $) 37)) (-2862 (((-588 (-588 |#3|)) $) 43)) (-3309 (((-108) $ (-708)) 59)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2276 (((-3 $ "failed") $ |#3|) 36 (|has| |#3| (-514)))) (-3487 (((-108) (-1 (-108) |#3|) $) 66 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#3|) (-588 |#3|)) 75 (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ |#3| |#3|) 74 (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-270 |#3|)) 73 (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-588 (-270 |#3|))) 72 (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))))) (-2065 (((-108) $ $) 55)) (-3494 (((-108) $) 58)) (-3298 (($) 57)) (-2683 ((|#3| $ (-522) (-522)) 42) ((|#3| $ (-522) (-522) |#3|) 40)) (-3498 (((-108) $) 52)) (-4187 (((-708) |#3| $) 70 (-12 (|has| |#3| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#3|) $) 67 (|has| $ (-6 -4238)))) (-2463 (($ $) 56)) (-2223 ((|#5| $ (-522)) 38)) (-2217 (((-792) $) 11)) (-1381 (((-108) (-1 (-108) |#3|) $) 65 (|has| $ (-6 -4238)))) (-4047 (((-108) $) 50)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#3|) 35 (|has| |#3| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#3| $) 23) (($ $ |#3|) 26)) (-3591 (((-708) $) 62 (|has| $ (-6 -4238)))))
(((-974 |#1| |#2| |#3| |#4| |#5|) (-1197) (-708) (-708) (-971) (-215 |t#2| |t#3|) (-215 |t#1| |t#3|)) (T -974))
-((-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)))) (-1366 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *5))) (-4 *5 (-971)) (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)))) (-2527 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))) (-1767 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))) (-2727 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))) (-1697 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))) (-2575 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))) (-3886 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))) (-1885 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))) (-4132 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))) (-1411 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-708)))) (-1422 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-708)))) (-3237 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-588 (-588 *5))))) (-2545 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *2 *6 *7)) (-4 *6 (-215 *5 *2)) (-4 *7 (-215 *4 *2)) (-4 *2 (-971)))) (-3631 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *2 *6 *7)) (-4 *6 (-215 *5 *2)) (-4 *7 (-215 *4 *2)) (-4 *2 (-971)))) (-2545 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *2 *6 *7)) (-4 *2 (-971)) (-4 *6 (-215 *5 *2)) (-4 *7 (-215 *4 *2)))) (-1860 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *6 *2 *7)) (-4 *6 (-971)) (-4 *7 (-215 *4 *6)) (-4 *2 (-215 *5 *6)))) (-3488 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *6 *7 *2)) (-4 *6 (-971)) (-4 *7 (-215 *5 *6)) (-4 *2 (-215 *4 *6)))) (-1391 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)))) (-2232 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-974 *3 *4 *2 *5 *6)) (-4 *2 (-971)) (-4 *5 (-215 *4 *2)) (-4 *6 (-215 *3 *2)) (-4 *2 (-514)))) (-1620 (*1 *1 *1 *2) (-12 (-4 *1 (-974 *3 *4 *2 *5 *6)) (-4 *2 (-971)) (-4 *5 (-215 *4 *2)) (-4 *6 (-215 *3 *2)) (-4 *2 (-338)))) (-2264 (*1 *1 *1) (-12 (-4 *1 (-974 *2 *3 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-215 *3 *4)) (-4 *6 (-215 *2 *4)) (-4 *4 (-283)))) (-3166 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-4 *5 (-514)) (-5 *2 (-708)))) (-3799 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-4 *5 (-514)) (-5 *2 (-708)))) (-2064 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-4 *5 (-514)) (-5 *2 (-588 *7)))))
-(-13 (-107 |t#3| |t#3|) (-461 |t#3|) (-10 -8 (-6 -4238) (IF (|has| |t#3| (-157)) (-6 (-655 |t#3|)) |%noBranch|) (-15 -1366 ($ (-588 (-588 |t#3|)))) (-15 -2527 ((-108) $)) (-15 -1767 ((-108) $)) (-15 -2727 ((-108) $)) (-15 -1697 ((-108) $)) (-15 -2575 ((-522) $)) (-15 -3886 ((-522) $)) (-15 -1885 ((-522) $)) (-15 -4132 ((-522) $)) (-15 -1411 ((-708) $)) (-15 -1422 ((-708) $)) (-15 -3237 ((-588 (-588 |t#3|)) $)) (-15 -2545 (|t#3| $ (-522) (-522))) (-15 -3631 (|t#3| $ (-522) (-522))) (-15 -2545 (|t#3| $ (-522) (-522) |t#3|)) (-15 -1860 (|t#4| $ (-522))) (-15 -3488 (|t#5| $ (-522))) (-15 -1391 ($ (-1 |t#3| |t#3|) $)) (-15 -1391 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-514)) (-15 -2232 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-338)) (-15 -1620 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-283)) (-15 -2264 ($ $)) |%noBranch|) (IF (|has| |t#3| (-514)) (PROGN (-15 -3166 ((-708) $)) (-15 -3799 ((-708) $)) (-15 -2064 ((-588 |t#5|) $))) |%noBranch|)))
+((-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)))) (-1347 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *5))) (-4 *5 (-971)) (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)))) (-2208 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))) (-3498 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))) (-3455 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))) (-4047 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))) (-2604 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))) (-1925 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))) (-4042 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))) (-2595 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))) (-2949 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-708)))) (-2960 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-708)))) (-2862 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-588 (-588 *5))))) (-2683 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *2 *6 *7)) (-4 *6 (-215 *5 *2)) (-4 *7 (-215 *4 *2)) (-4 *2 (-971)))) (-2186 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *2 *6 *7)) (-4 *6 (-215 *5 *2)) (-4 *7 (-215 *4 *2)) (-4 *2 (-971)))) (-2683 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *2 *6 *7)) (-4 *2 (-971)) (-4 *6 (-215 *5 *2)) (-4 *7 (-215 *4 *2)))) (-2635 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *6 *2 *7)) (-4 *6 (-971)) (-4 *7 (-215 *4 *6)) (-4 *2 (-215 *5 *6)))) (-2223 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *6 *7 *2)) (-4 *6 (-971)) (-4 *7 (-215 *5 *6)) (-4 *2 (-215 *4 *6)))) (-3810 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)))) (-2276 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-974 *3 *4 *2 *5 *6)) (-4 *2 (-971)) (-4 *5 (-215 *4 *2)) (-4 *6 (-215 *3 *2)) (-4 *2 (-514)))) (-1682 (*1 *1 *1 *2) (-12 (-4 *1 (-974 *3 *4 *2 *5 *6)) (-4 *2 (-971)) (-4 *5 (-215 *4 *2)) (-4 *6 (-215 *3 *2)) (-4 *2 (-338)))) (-2091 (*1 *1 *1) (-12 (-4 *1 (-974 *2 *3 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-215 *3 *4)) (-4 *6 (-215 *2 *4)) (-4 *4 (-283)))) (-1692 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-4 *5 (-514)) (-5 *2 (-708)))) (-2336 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-4 *5 (-514)) (-5 *2 (-708)))) (-2819 (*1 *2 *1) (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-4 *5 (-514)) (-5 *2 (-588 *7)))))
+(-13 (-107 |t#3| |t#3|) (-461 |t#3|) (-10 -8 (-6 -4238) (IF (|has| |t#3| (-157)) (-6 (-655 |t#3|)) |%noBranch|) (-15 -1347 ($ (-588 (-588 |t#3|)))) (-15 -2208 ((-108) $)) (-15 -3498 ((-108) $)) (-15 -3455 ((-108) $)) (-15 -4047 ((-108) $)) (-15 -2604 ((-522) $)) (-15 -1925 ((-522) $)) (-15 -4042 ((-522) $)) (-15 -2595 ((-522) $)) (-15 -2949 ((-708) $)) (-15 -2960 ((-708) $)) (-15 -2862 ((-588 (-588 |t#3|)) $)) (-15 -2683 (|t#3| $ (-522) (-522))) (-15 -2186 (|t#3| $ (-522) (-522))) (-15 -2683 (|t#3| $ (-522) (-522) |t#3|)) (-15 -2635 (|t#4| $ (-522))) (-15 -2223 (|t#5| $ (-522))) (-15 -3810 ($ (-1 |t#3| |t#3|) $)) (-15 -3810 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-514)) (-15 -2276 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-338)) (-15 -1682 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-283)) (-15 -2091 ($ $)) |%noBranch|) (IF (|has| |t#3| (-514)) (PROGN (-15 -1692 ((-708) $)) (-15 -2336 ((-708) $)) (-15 -2819 ((-588 |t#5|) $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-33) . T) ((-97) . T) ((-107 |#3| |#3|) . T) ((-124) . T) ((-562 (-792)) . T) ((-285 |#3|) -12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))) ((-461 |#3|) . T) ((-483 |#3| |#3|) -12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))) ((-590 |#3|) . T) ((-655 |#3|) |has| |#3| (-157)) ((-977 |#3|) . T) ((-1014) . T) ((-1120) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2727 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-2527 (((-108) $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-3175 (($) NIL T CONST)) (-2264 (($ $) 40 (|has| |#3| (-283)))) (-1860 (((-217 |#2| |#3|) $ (-522)) 29)) (-4088 (($ (-628 |#3|)) 38)) (-3166 (((-708) $) 42 (|has| |#3| (-514)))) (-3631 ((|#3| $ (-522) (-522)) NIL)) (-3837 (((-588 |#3|) $) NIL (|has| $ (-6 -4238)))) (-3799 (((-708) $) 44 (|has| |#3| (-514)))) (-2064 (((-588 (-217 |#1| |#3|)) $) 48 (|has| |#3| (-514)))) (-1411 (((-708) $) NIL)) (-1422 (((-708) $) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-2575 (((-522) $) NIL)) (-1885 (((-522) $) NIL)) (-3308 (((-588 |#3|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-3886 (((-522) $) NIL)) (-4132 (((-522) $) NIL)) (-1366 (($ (-588 (-588 |#3|))) 24)) (-3838 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-3237 (((-588 (-588 |#3|)) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2232 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-514)))) (-3053 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#3|) (-588 |#3|)) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-270 |#3|)) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-588 (-270 |#3|))) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#3| $ (-522) (-522)) NIL) ((|#3| $ (-522) (-522) |#3|) NIL)) (-4078 (((-126)) 51 (|has| |#3| (-338)))) (-1767 (((-108) $) NIL)) (-4168 (((-708) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014)))) (((-708) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) 60 (|has| |#3| (-563 (-498))))) (-3488 (((-217 |#1| |#3|) $ (-522)) 33)) (-2190 (((-792) $) 16) (((-628 |#3|) $) 35)) (-3648 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-1697 (((-108) $) NIL)) (-3566 (($) 13 T CONST)) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ |#3|) NIL (|has| |#3| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-975 |#1| |#2| |#3|) (-13 (-974 |#1| |#2| |#3| (-217 |#2| |#3|) (-217 |#1| |#3|)) (-562 (-628 |#3|)) (-10 -8 (IF (|has| |#3| (-338)) (-6 (-1173 |#3|)) |%noBranch|) (IF (|has| |#3| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (-15 -4088 ($ (-628 |#3|))) (-15 -2190 ((-628 |#3|) $)))) (-708) (-708) (-971)) (T -975))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-628 *5)) (-5 *1 (-975 *3 *4 *5)) (-14 *3 (-708)) (-14 *4 (-708)) (-4 *5 (-971)))) (-4088 (*1 *1 *2) (-12 (-5 *2 (-628 *5)) (-4 *5 (-971)) (-5 *1 (-975 *3 *4 *5)) (-14 *3 (-708)) (-14 *4 (-708)))))
-(-13 (-974 |#1| |#2| |#3| (-217 |#2| |#3|) (-217 |#1| |#3|)) (-562 (-628 |#3|)) (-10 -8 (IF (|has| |#3| (-338)) (-6 (-1173 |#3|)) |%noBranch|) (IF (|has| |#3| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (-15 -4088 ($ (-628 |#3|))) (-15 -2190 ((-628 |#3|) $))))
-((-3864 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 34)) (-1391 ((|#10| (-1 |#7| |#3|) |#6|) 32)))
-(((-976 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -1391 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -3864 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-708) (-708) (-971) (-215 |#2| |#3|) (-215 |#1| |#3|) (-974 |#1| |#2| |#3| |#4| |#5|) (-971) (-215 |#2| |#7|) (-215 |#1| |#7|) (-974 |#1| |#2| |#7| |#8| |#9|)) (T -976))
-((-3864 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-971)) (-4 *2 (-971)) (-14 *5 (-708)) (-14 *6 (-708)) (-4 *8 (-215 *6 *7)) (-4 *9 (-215 *5 *7)) (-4 *10 (-215 *6 *2)) (-4 *11 (-215 *5 *2)) (-5 *1 (-976 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-974 *5 *6 *7 *8 *9)) (-4 *12 (-974 *5 *6 *2 *10 *11)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-971)) (-4 *10 (-971)) (-14 *5 (-708)) (-14 *6 (-708)) (-4 *8 (-215 *6 *7)) (-4 *9 (-215 *5 *7)) (-4 *2 (-974 *5 *6 *10 *11 *12)) (-5 *1 (-976 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-974 *5 *6 *7 *8 *9)) (-4 *11 (-215 *6 *10)) (-4 *12 (-215 *5 *10)))))
-(-10 -7 (-15 -1391 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -3864 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ |#1|) 23)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3455 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-2208 (((-108) $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-3367 (($) NIL T CONST)) (-2091 (($ $) 40 (|has| |#3| (-283)))) (-2635 (((-217 |#2| |#3|) $ (-522)) 29)) (-3305 (($ (-628 |#3|)) 38)) (-1692 (((-708) $) 42 (|has| |#3| (-514)))) (-2186 ((|#3| $ (-522) (-522)) NIL)) (-2395 (((-588 |#3|) $) NIL (|has| $ (-6 -4238)))) (-2336 (((-708) $) 44 (|has| |#3| (-514)))) (-2819 (((-588 (-217 |#1| |#3|)) $) 48 (|has| |#3| (-514)))) (-2949 (((-708) $) NIL)) (-2960 (((-708) $) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-2604 (((-522) $) NIL)) (-4042 (((-522) $) NIL)) (-4084 (((-588 |#3|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-1925 (((-522) $) NIL)) (-2595 (((-522) $) NIL)) (-1347 (($ (-588 (-588 |#3|))) 24)) (-2397 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-2862 (((-588 (-588 |#3|)) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2276 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-514)))) (-3487 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#3|) (-588 |#3|)) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-270 |#3|)) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-588 (-270 |#3|))) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#3| $ (-522) (-522)) NIL) ((|#3| $ (-522) (-522) |#3|) NIL)) (-3222 (((-126)) 51 (|has| |#3| (-338)))) (-3498 (((-108) $) NIL)) (-4187 (((-708) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014)))) (((-708) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) 60 (|has| |#3| (-563 (-498))))) (-2223 (((-217 |#1| |#3|) $ (-522)) 33)) (-2217 (((-792) $) 16) (((-628 |#3|) $) 35)) (-1381 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-4047 (((-108) $) NIL)) (-3697 (($) 13 T CONST)) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ |#3|) NIL (|has| |#3| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-975 |#1| |#2| |#3|) (-13 (-974 |#1| |#2| |#3| (-217 |#2| |#3|) (-217 |#1| |#3|)) (-562 (-628 |#3|)) (-10 -8 (IF (|has| |#3| (-338)) (-6 (-1173 |#3|)) |%noBranch|) (IF (|has| |#3| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (-15 -3305 ($ (-628 |#3|))) (-15 -2217 ((-628 |#3|) $)))) (-708) (-708) (-971)) (T -975))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-628 *5)) (-5 *1 (-975 *3 *4 *5)) (-14 *3 (-708)) (-14 *4 (-708)) (-4 *5 (-971)))) (-3305 (*1 *1 *2) (-12 (-5 *2 (-628 *5)) (-4 *5 (-971)) (-5 *1 (-975 *3 *4 *5)) (-14 *3 (-708)) (-14 *4 (-708)))))
+(-13 (-974 |#1| |#2| |#3| (-217 |#2| |#3|) (-217 |#1| |#3|)) (-562 (-628 |#3|)) (-10 -8 (IF (|has| |#3| (-338)) (-6 (-1173 |#3|)) |%noBranch|) (IF (|has| |#3| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|) (-15 -3305 ($ (-628 |#3|))) (-15 -2217 ((-628 |#3|) $))))
+((-2153 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 34)) (-3810 ((|#10| (-1 |#7| |#3|) |#6|) 32)))
+(((-976 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -3810 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -2153 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-708) (-708) (-971) (-215 |#2| |#3|) (-215 |#1| |#3|) (-974 |#1| |#2| |#3| |#4| |#5|) (-971) (-215 |#2| |#7|) (-215 |#1| |#7|) (-974 |#1| |#2| |#7| |#8| |#9|)) (T -976))
+((-2153 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-971)) (-4 *2 (-971)) (-14 *5 (-708)) (-14 *6 (-708)) (-4 *8 (-215 *6 *7)) (-4 *9 (-215 *5 *7)) (-4 *10 (-215 *6 *2)) (-4 *11 (-215 *5 *2)) (-5 *1 (-976 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-974 *5 *6 *7 *8 *9)) (-4 *12 (-974 *5 *6 *2 *10 *11)))) (-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-971)) (-4 *10 (-971)) (-14 *5 (-708)) (-14 *6 (-708)) (-4 *8 (-215 *6 *7)) (-4 *9 (-215 *5 *7)) (-4 *2 (-974 *5 *6 *10 *11 *12)) (-5 *1 (-976 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-974 *5 *6 *7 *8 *9)) (-4 *11 (-215 *6 *10)) (-4 *12 (-215 *5 *10)))))
+(-10 -7 (-15 -3810 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -2153 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ |#1|) 23)))
(((-977 |#1|) (-1197) (-978)) (T -977))
((* (*1 *1 *1 *2) (-12 (-4 *1 (-977 *2)) (-4 *2 (-978)))))
(-13 (-21) (-10 -8 (-15 * ($ $ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3510 (($ $ (-850)) 26)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3622 (($ $ (-850)) 26)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-978) (-1197)) (T -978))
NIL
(-13 (-21) (-1026))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-124) . T) ((-562 (-792)) . T) ((-1026) . T) ((-1014) . T))
-((-2789 (($ $) 16)) (-2599 (($ $) 22)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 49)) (-2100 (($ $) 24)) (-3933 (($ $) 11)) (-3686 (($ $) 38)) (-1431 (((-354) $) NIL) (((-202) $) NIL) (((-821 (-354)) $) 33)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) 28) (($ (-522)) NIL) (($ (-382 (-522))) 28)) (-2323 (((-708)) 8)) (-3025 (($ $) 39)))
-(((-979 |#1|) (-10 -8 (-15 -2599 (|#1| |#1|)) (-15 -2789 (|#1| |#1|)) (-15 -3933 (|#1| |#1|)) (-15 -3686 (|#1| |#1|)) (-15 -3025 (|#1| |#1|)) (-15 -2100 (|#1| |#1|)) (-15 -4011 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -1431 ((-821 (-354)) |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 (|#1| (-522))) (-15 -1431 ((-202) |#1|)) (-15 -1431 ((-354) |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 (|#1| |#1|)) (-15 -2190 (|#1| (-522))) (-15 -2323 ((-708))) (-15 -2190 ((-792) |#1|))) (-980)) (T -979))
-((-2323 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-979 *3)) (-4 *3 (-980)))))
-(-10 -8 (-15 -2599 (|#1| |#1|)) (-15 -2789 (|#1| |#1|)) (-15 -3933 (|#1| |#1|)) (-15 -3686 (|#1| |#1|)) (-15 -3025 (|#1| |#1|)) (-15 -2100 (|#1| |#1|)) (-15 -4011 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -1431 ((-821 (-354)) |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 (|#1| (-522))) (-15 -1431 ((-202) |#1|)) (-15 -1431 ((-354) |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 (|#1| |#1|)) (-15 -2190 (|#1| (-522))) (-15 -2323 ((-708))) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2229 (((-522) $) 89)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-2789 (($ $) 87)) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 73)) (-3450 (((-393 $) $) 72)) (-1929 (($ $) 97)) (-1687 (((-108) $ $) 59)) (-1341 (((-522) $) 114)) (-3175 (($) 17 T CONST)) (-2599 (($ $) 86)) (-1297 (((-3 (-522) "failed") $) 102) (((-3 (-382 (-522)) "failed") $) 99)) (-1484 (((-522) $) 101) (((-382 (-522)) $) 98)) (-2277 (($ $ $) 55)) (-2682 (((-3 $ "failed") $) 34)) (-2254 (($ $ $) 56)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-2813 (((-108) $) 71)) (-3687 (((-108) $) 112)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 93)) (-2782 (((-108) $) 31)) (-1504 (($ $ (-522)) 96)) (-2100 (($ $) 92)) (-2556 (((-108) $) 113)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2814 (($ $ $) 111)) (-2446 (($ $ $) 110)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 70)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-3933 (($ $) 88)) (-3686 (($ $) 90)) (-1916 (((-393 $) $) 74)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-3730 (((-708) $) 58)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57)) (-1431 (((-354) $) 105) (((-202) $) 104) (((-821 (-354)) $) 94)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65) (($ (-522)) 103) (($ (-382 (-522))) 100)) (-2323 (((-708)) 29)) (-3025 (($ $) 91)) (-3958 (((-108) $ $) 39)) (-2241 (($ $) 115)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1574 (((-108) $ $) 108)) (-1558 (((-108) $ $) 107)) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 109)) (-1549 (((-108) $ $) 106)) (-1620 (($ $ $) 64)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68) (($ $ (-382 (-522))) 95)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66)))
+((-3495 (($ $) 16)) (-1943 (($ $) 22)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 49)) (-1269 (($ $) 24)) (-4194 (($ $) 11)) (-3592 (($ $) 38)) (-3873 (((-354) $) NIL) (((-202) $) NIL) (((-821 (-354)) $) 33)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL) (($ (-382 (-522))) 28) (($ (-522)) NIL) (($ (-382 (-522))) 28)) (-2742 (((-708)) 8)) (-1379 (($ $) 39)))
+(((-979 |#1|) (-10 -8 (-15 -1943 (|#1| |#1|)) (-15 -3495 (|#1| |#1|)) (-15 -4194 (|#1| |#1|)) (-15 -3592 (|#1| |#1|)) (-15 -1379 (|#1| |#1|)) (-15 -1269 (|#1| |#1|)) (-15 -3738 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -3873 ((-821 (-354)) |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 (|#1| (-522))) (-15 -3873 ((-202) |#1|)) (-15 -3873 ((-354) |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 (|#1| |#1|)) (-15 -2217 (|#1| (-522))) (-15 -2742 ((-708))) (-15 -2217 ((-792) |#1|))) (-980)) (T -979))
+((-2742 (*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-979 *3)) (-4 *3 (-980)))))
+(-10 -8 (-15 -1943 (|#1| |#1|)) (-15 -3495 (|#1| |#1|)) (-15 -4194 (|#1| |#1|)) (-15 -3592 (|#1| |#1|)) (-15 -1379 (|#1| |#1|)) (-15 -1269 (|#1| |#1|)) (-15 -3738 ((-818 (-354) |#1|) |#1| (-821 (-354)) (-818 (-354) |#1|))) (-15 -3873 ((-821 (-354)) |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 (|#1| (-522))) (-15 -3873 ((-202) |#1|)) (-15 -3873 ((-354) |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 (|#1| |#1|)) (-15 -2217 (|#1| (-522))) (-15 -2742 ((-708))) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3049 (((-522) $) 89)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-3495 (($ $) 87)) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 73)) (-3133 (((-393 $) $) 72)) (-2016 (($ $) 97)) (-2805 (((-108) $ $) 59)) (-3355 (((-522) $) 114)) (-3367 (($) 17 T CONST)) (-1943 (($ $) 86)) (-3700 (((-3 (-522) "failed") $) 102) (((-3 (-382 (-522)) "failed") $) 99)) (-1478 (((-522) $) 101) (((-382 (-522)) $) 98)) (-2333 (($ $ $) 55)) (-3920 (((-3 $ "failed") $) 34)) (-2303 (($ $ $) 56)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-2725 (((-108) $) 71)) (-3603 (((-108) $) 112)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 93)) (-2859 (((-108) $) 31)) (-1811 (($ $ (-522)) 96)) (-1269 (($ $) 92)) (-3740 (((-108) $) 113)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-1308 (($ $ $) 111)) (-2524 (($ $ $) 110)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 70)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-4194 (($ $) 88)) (-3592 (($ $) 90)) (-2006 (((-393 $) $) 74)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-4031 (((-708) $) 58)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57)) (-3873 (((-354) $) 105) (((-202) $) 104) (((-821 (-354)) $) 94)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65) (($ (-522)) 103) (($ (-382 (-522))) 100)) (-2742 (((-708)) 29)) (-1379 (($ $) 91)) (-1407 (((-108) $ $) 39)) (-4126 (($ $) 115)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1623 (((-108) $ $) 108)) (-1597 (((-108) $ $) 107)) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 109)) (-1587 (((-108) $ $) 106)) (-1682 (($ $ $) 64)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68) (($ $ (-382 (-522))) 95)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66)))
(((-980) (-1197)) (T -980))
-((-2241 (*1 *1 *1) (-4 *1 (-980))) (-2100 (*1 *1 *1) (-4 *1 (-980))) (-3025 (*1 *1 *1) (-4 *1 (-980))) (-3686 (*1 *1 *1) (-4 *1 (-980))) (-2229 (*1 *2 *1) (-12 (-4 *1 (-980)) (-5 *2 (-522)))) (-3933 (*1 *1 *1) (-4 *1 (-980))) (-2789 (*1 *1 *1) (-4 *1 (-980))) (-2599 (*1 *1 *1) (-4 *1 (-980))))
-(-13 (-338) (-782) (-947) (-962 (-522)) (-962 (-382 (-522))) (-928) (-563 (-821 (-354))) (-815 (-354)) (-135) (-10 -8 (-15 -2100 ($ $)) (-15 -3025 ($ $)) (-15 -3686 ($ $)) (-15 -2229 ((-522) $)) (-15 -3933 ($ $)) (-15 -2789 ($ $)) (-15 -2599 ($ $)) (-15 -2241 ($ $))))
+((-4126 (*1 *1 *1) (-4 *1 (-980))) (-1269 (*1 *1 *1) (-4 *1 (-980))) (-1379 (*1 *1 *1) (-4 *1 (-980))) (-3592 (*1 *1 *1) (-4 *1 (-980))) (-3049 (*1 *2 *1) (-12 (-4 *1 (-980)) (-5 *2 (-522)))) (-4194 (*1 *1 *1) (-4 *1 (-980))) (-3495 (*1 *1 *1) (-4 *1 (-980))) (-1943 (*1 *1 *1) (-4 *1 (-980))))
+(-13 (-338) (-782) (-947) (-962 (-522)) (-962 (-382 (-522))) (-928) (-563 (-821 (-354))) (-815 (-354)) (-135) (-10 -8 (-15 -1269 ($ $)) (-15 -1379 ($ $)) (-15 -3592 ($ $)) (-15 -3049 ((-522) $)) (-15 -4194 ($ $)) (-15 -3495 ($ $)) (-15 -1943 ($ $)) (-15 -4126 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 $ $) . T) ((-124) . T) ((-135) . T) ((-562 (-792)) . T) ((-157) . T) ((-563 (-202)) . T) ((-563 (-354)) . T) ((-563 (-821 (-354))) . T) ((-220) . T) ((-266) . T) ((-283) . T) ((-338) . T) ((-426) . T) ((-514) . T) ((-590 #0#) . T) ((-590 $) . T) ((-655 #0#) . T) ((-655 $) . T) ((-664) . T) ((-728) . T) ((-729) . T) ((-731) . T) ((-732) . T) ((-782) . T) ((-784) . T) ((-815 (-354)) . T) ((-849) . T) ((-928) . T) ((-947) . T) ((-962 (-382 (-522))) . T) ((-962 (-522)) . T) ((-977 #0#) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) |#2| $) 23)) (-1629 ((|#1| $) 10)) (-1341 (((-522) |#2| $) 89)) (-3944 (((-3 $ "failed") |#2| (-850)) 58)) (-1924 ((|#1| $) 28)) (-3971 ((|#1| |#2| $ |#1|) 37)) (-1499 (($ $) 25)) (-2682 (((-3 |#2| "failed") |#2| $) 88)) (-3687 (((-108) |#2| $) NIL)) (-2556 (((-108) |#2| $) NIL)) (-3110 (((-108) |#2| $) 24)) (-1742 ((|#1| $) 90)) (-1913 ((|#1| $) 27)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1479 ((|#2| $) 80)) (-2190 (((-792) $) 71)) (-3898 ((|#1| |#2| $ |#1|) 38)) (-2479 (((-588 $) |#2|) 60)) (-1531 (((-108) $ $) 75)))
-(((-981 |#1| |#2|) (-13 (-987 |#1| |#2|) (-10 -8 (-15 -1913 (|#1| $)) (-15 -1924 (|#1| $)) (-15 -1629 (|#1| $)) (-15 -1742 (|#1| $)) (-15 -1499 ($ $)) (-15 -3110 ((-108) |#2| $)) (-15 -3971 (|#1| |#2| $ |#1|)))) (-13 (-782) (-338)) (-1142 |#1|)) (T -981))
-((-3971 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3)) (-4 *3 (-1142 *2)))) (-1913 (*1 *2 *1) (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3)) (-4 *3 (-1142 *2)))) (-1924 (*1 *2 *1) (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3)) (-4 *3 (-1142 *2)))) (-1629 (*1 *2 *1) (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3)) (-4 *3 (-1142 *2)))) (-1742 (*1 *2 *1) (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3)) (-4 *3 (-1142 *2)))) (-1499 (*1 *1 *1) (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3)) (-4 *3 (-1142 *2)))) (-3110 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-782) (-338))) (-5 *2 (-108)) (-5 *1 (-981 *4 *3)) (-4 *3 (-1142 *4)))))
-(-13 (-987 |#1| |#2|) (-10 -8 (-15 -1913 (|#1| $)) (-15 -1924 (|#1| $)) (-15 -1629 (|#1| $)) (-15 -1742 (|#1| $)) (-15 -1499 ($ $)) (-15 -3110 ((-108) |#2| $)) (-15 -3971 (|#1| |#2| $ |#1|))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-3871 (($ $ $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3481 (($ $ $ $) NIL)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL)) (-1662 (($ $ $) NIL)) (-3175 (($) NIL T CONST)) (-2700 (($ (-1085)) 10) (($ (-522)) 7)) (-1297 (((-3 (-522) "failed") $) NIL)) (-1484 (((-522) $) NIL)) (-2277 (($ $ $) NIL)) (-2096 (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-1664 (((-3 (-382 (-522)) "failed") $) NIL)) (-1770 (((-108) $) NIL)) (-1492 (((-382 (-522)) $) NIL)) (-3255 (($) NIL) (($ $) NIL)) (-2254 (($ $ $) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-2676 (($ $ $ $) NIL)) (-2339 (($ $ $) NIL)) (-3687 (((-108) $) NIL)) (-3219 (($ $ $) NIL)) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL)) (-2782 (((-108) $) NIL)) (-2591 (((-108) $) NIL)) (-3004 (((-3 $ "failed") $) NIL)) (-2556 (((-108) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1335 (($ $ $ $) NIL)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-3893 (($ $) NIL)) (-2517 (($ $) NIL)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-2341 (($ $ $) NIL)) (-3802 (($) NIL T CONST)) (-2957 (($ $) NIL)) (-4151 (((-1032) $) NIL) (($ $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2868 (($ $) NIL)) (-1916 (((-393 $) $) NIL)) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1263 (((-108) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2157 (($ $ (-708)) NIL) (($ $) NIL)) (-3056 (($ $) NIL)) (-2404 (($ $) NIL)) (-1431 (((-522) $) 16) (((-498) $) NIL) (((-821 (-522)) $) NIL) (((-354) $) NIL) (((-202) $) NIL) (($ (-1085)) 9)) (-2190 (((-792) $) 20) (($ (-522)) 6) (($ $) NIL) (($ (-522)) 6)) (-2323 (((-708)) NIL)) (-3558 (((-108) $ $) NIL)) (-1480 (($ $ $) NIL)) (-3355 (($) NIL)) (-3958 (((-108) $ $) NIL)) (-4004 (($ $ $ $) NIL)) (-2241 (($ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-708)) NIL) (($ $) NIL)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) NIL)) (-1612 (($ $) 19) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL)))
-(((-982) (-13 (-507) (-10 -8 (-6 -4225) (-6 -4230) (-6 -4226) (-15 -1431 ($ (-1085))) (-15 -2700 ($ (-1085))) (-15 -2700 ($ (-522)))))) (T -982))
-((-1431 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-982)))) (-2700 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-982)))) (-2700 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-982)))))
-(-13 (-507) (-10 -8 (-6 -4225) (-6 -4230) (-6 -4226) (-15 -1431 ($ (-1085))) (-15 -2700 ($ (-1085))) (-15 -2700 ($ (-522)))))
-((-1416 (((-108) $ $) NIL (-3708 (|has| (-51) (-1014)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014))))) (-1800 (($) NIL) (($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) NIL)) (-2679 (((-1171) $ (-1085) (-1085)) NIL (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) NIL)) (-4196 (($) 9)) (-2379 (((-51) $ (-1085) (-51)) NIL)) (-2535 (($ $) 23)) (-3654 (($ $) 21)) (-2710 (($ $) 20)) (-2227 (($ $) 22)) (-1305 (($ $) 25)) (-3142 (($ $) 26)) (-2942 (($ $) 19)) (-3673 (($ $) 24)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) 18 (|has| $ (-6 -4238)))) (-2750 (((-3 (-51) "failed") (-1085) $) 34)) (-3175 (($) NIL T CONST)) (-1919 (($) 7)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014))))) (-3859 (($ (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) 46 (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-3 (-51) "failed") (-1085) $) NIL)) (-1423 (($ (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (($ (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $ (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (((-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $ (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-3464 (((-3 (-1068) "failed") $ (-1068) (-522)) 59)) (-3854 (((-51) $ (-1085) (-51)) NIL (|has| $ (-6 -4239)))) (-3631 (((-51) $ (-1085)) NIL)) (-3837 (((-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-588 (-51)) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-1085) $) NIL (|has| (-1085) (-784)))) (-3308 (((-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) 28 (|has| $ (-6 -4238))) (((-588 (-51)) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014))))) (-2014 (((-1085) $) NIL (|has| (-1085) (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4239))) (($ (-1 (-51) (-51)) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL) (($ (-1 (-51) (-51)) $) NIL) (($ (-1 (-51) (-51) (-51)) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (-3708 (|has| (-51) (-1014)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014))))) (-2966 (((-588 (-1085)) $) NIL)) (-1231 (((-108) (-1085) $) NIL)) (-2116 (((-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) NIL)) (-4095 (($ (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) 37)) (-3604 (((-588 (-1085)) $) NIL)) (-1405 (((-108) (-1085) $) NIL)) (-4151 (((-1032) $) NIL (-3708 (|has| (-51) (-1014)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014))))) (-2811 (((-354) $ (-1085)) 45)) (-3364 (((-588 (-1068)) $ (-1068)) 60)) (-2294 (((-51) $) NIL (|has| (-1085) (-784)))) (-1414 (((-3 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) "failed") (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL)) (-2602 (($ $ (-51)) NIL (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) NIL)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))))) NIL (-12 (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (($ $ (-270 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) NIL (-12 (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (($ $ (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) NIL (-12 (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (($ $ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) NIL (-12 (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-285 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (($ $ (-588 (-51)) (-588 (-51))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-51) (-51)) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-270 (-51))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-588 (-270 (-51)))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014))))) (-1525 (((-588 (-51)) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 (((-51) $ (-1085)) NIL) (((-51) $ (-1085) (-51)) NIL)) (-3990 (($) NIL) (($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) NIL)) (-3448 (($ $ (-1085)) 47)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014)))) (((-708) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014)))) (((-708) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) 30)) (-4165 (($ $ $) 31)) (-2190 (((-792) $) NIL (-3708 (|has| (-51) (-562 (-792))) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-562 (-792)))))) (-1744 (($ $ (-1085) (-354)) 43)) (-2547 (($ $ (-1085) (-354)) 44)) (-2795 (($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))))) NIL)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 (-1085)) (|:| -3048 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (-3708 (|has| (-51) (-1014)) (|has| (-2 (|:| -2530 (-1085)) (|:| -3048 (-51))) (-1014))))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-983) (-13 (-1097 (-1085) (-51)) (-10 -8 (-15 -4165 ($ $ $)) (-15 -1919 ($)) (-15 -2942 ($ $)) (-15 -2710 ($ $)) (-15 -3654 ($ $)) (-15 -2227 ($ $)) (-15 -3673 ($ $)) (-15 -2535 ($ $)) (-15 -1305 ($ $)) (-15 -3142 ($ $)) (-15 -1744 ($ $ (-1085) (-354))) (-15 -2547 ($ $ (-1085) (-354))) (-15 -2811 ((-354) $ (-1085))) (-15 -3364 ((-588 (-1068)) $ (-1068))) (-15 -3448 ($ $ (-1085))) (-15 -4196 ($)) (-15 -3464 ((-3 (-1068) "failed") $ (-1068) (-522))) (-6 -4238)))) (T -983))
-((-4165 (*1 *1 *1 *1) (-5 *1 (-983))) (-1919 (*1 *1) (-5 *1 (-983))) (-2942 (*1 *1 *1) (-5 *1 (-983))) (-2710 (*1 *1 *1) (-5 *1 (-983))) (-3654 (*1 *1 *1) (-5 *1 (-983))) (-2227 (*1 *1 *1) (-5 *1 (-983))) (-3673 (*1 *1 *1) (-5 *1 (-983))) (-2535 (*1 *1 *1) (-5 *1 (-983))) (-1305 (*1 *1 *1) (-5 *1 (-983))) (-3142 (*1 *1 *1) (-5 *1 (-983))) (-1744 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-354)) (-5 *1 (-983)))) (-2547 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-354)) (-5 *1 (-983)))) (-2811 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-354)) (-5 *1 (-983)))) (-3364 (*1 *2 *1 *3) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-983)) (-5 *3 (-1068)))) (-3448 (*1 *1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-983)))) (-4196 (*1 *1) (-5 *1 (-983))) (-3464 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1068)) (-5 *3 (-522)) (-5 *1 (-983)))))
-(-13 (-1097 (-1085) (-51)) (-10 -8 (-15 -4165 ($ $ $)) (-15 -1919 ($)) (-15 -2942 ($ $)) (-15 -2710 ($ $)) (-15 -3654 ($ $)) (-15 -2227 ($ $)) (-15 -3673 ($ $)) (-15 -2535 ($ $)) (-15 -1305 ($ $)) (-15 -3142 ($ $)) (-15 -1744 ($ $ (-1085) (-354))) (-15 -2547 ($ $ (-1085) (-354))) (-15 -2811 ((-354) $ (-1085))) (-15 -3364 ((-588 (-1068)) $ (-1068))) (-15 -3448 ($ $ (-1085))) (-15 -4196 ($)) (-15 -3464 ((-3 (-1068) "failed") $ (-1068) (-522))) (-6 -4238)))
-((-3835 (($ $) 45)) (-2134 (((-108) $ $) 74)) (-1297 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 (-522) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-881 (-382 (-522)))) 227) (((-3 $ "failed") (-881 (-522))) 226) (((-3 $ "failed") (-881 |#2|)) 229)) (-1484 ((|#2| $) NIL) (((-382 (-522)) $) NIL) (((-522) $) NIL) ((|#4| $) NIL) (($ (-881 (-382 (-522)))) 215) (($ (-881 (-522))) 211) (($ (-881 |#2|)) 231)) (-3156 (($ $) NIL) (($ $ |#4|) 43)) (-1934 (((-108) $ $) 112) (((-108) $ (-588 $)) 113)) (-1630 (((-108) $) 56)) (-1541 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 107)) (-1258 (($ $) 138)) (-3429 (($ $) 134)) (-2705 (($ $) 133)) (-1704 (($ $ $) 79) (($ $ $ |#4|) 84)) (-4069 (($ $ $) 82) (($ $ $ |#4|) 86)) (-3341 (((-108) $ $) 121) (((-108) $ (-588 $)) 122)) (-1521 ((|#4| $) 33)) (-2924 (($ $ $) 110)) (-3012 (((-108) $) 55)) (-3903 (((-708) $) 35)) (-3547 (($ $) 152)) (-1842 (($ $) 149)) (-1269 (((-588 $) $) 68)) (-3447 (($ $) 57)) (-1313 (($ $) 145)) (-3405 (((-588 $) $) 65)) (-3786 (($ $) 59)) (-3138 ((|#2| $) NIL) (($ $ |#4|) 38)) (-4019 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -4042 (-708))) $ $) 111)) (-1938 (((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -1353 $) (|:| -3421 $)) $ $) 108) (((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -1353 $) (|:| -3421 $)) $ $ |#4|) 109)) (-3592 (((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -3421 $)) $ $) 104) (((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -3421 $)) $ $ |#4|) 105)) (-1819 (($ $ $) 89) (($ $ $ |#4|) 95)) (-1599 (($ $ $) 90) (($ $ $ |#4|) 96)) (-1817 (((-588 $) $) 51)) (-3409 (((-108) $ $) 118) (((-108) $ (-588 $)) 119)) (-1451 (($ $ $) 103)) (-3802 (($ $) 37)) (-2123 (((-108) $ $) 72)) (-2230 (((-108) $ $) 114) (((-108) $ (-588 $)) 116)) (-2680 (($ $ $) 101)) (-4002 (($ $) 40)) (-2259 ((|#2| |#2| $) 142) (($ (-588 $)) NIL) (($ $ $) NIL)) (-3620 (($ $ |#2|) NIL) (($ $ $) 131)) (-3195 (($ $ |#2|) 126) (($ $ $) 129)) (-2044 (($ $) 48)) (-1635 (($ $) 52)) (-1431 (((-821 (-354)) $) NIL) (((-821 (-522)) $) NIL) (((-498) $) NIL) (($ (-881 (-382 (-522)))) 217) (($ (-881 (-522))) 213) (($ (-881 |#2|)) 228) (((-1068) $) 250) (((-881 |#2|) $) 162)) (-2190 (((-792) $) 30) (($ (-522)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-881 |#2|) $) 163) (($ (-382 (-522))) NIL) (($ $) NIL)) (-2618 (((-3 (-108) "failed") $ $) 71)))
-(((-984 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2190 (|#1| |#1|)) (-15 -2259 (|#1| |#1| |#1|)) (-15 -2259 (|#1| (-588 |#1|))) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 ((-881 |#2|) |#1|)) (-15 -1431 ((-881 |#2|) |#1|)) (-15 -1431 ((-1068) |#1|)) (-15 -3547 (|#1| |#1|)) (-15 -1842 (|#1| |#1|)) (-15 -1313 (|#1| |#1|)) (-15 -1258 (|#1| |#1|)) (-15 -2259 (|#2| |#2| |#1|)) (-15 -3620 (|#1| |#1| |#1|)) (-15 -3195 (|#1| |#1| |#1|)) (-15 -3620 (|#1| |#1| |#2|)) (-15 -3195 (|#1| |#1| |#2|)) (-15 -3429 (|#1| |#1|)) (-15 -2705 (|#1| |#1|)) (-15 -1431 (|#1| (-881 |#2|))) (-15 -1484 (|#1| (-881 |#2|))) (-15 -1297 ((-3 |#1| "failed") (-881 |#2|))) (-15 -1431 (|#1| (-881 (-522)))) (-15 -1484 (|#1| (-881 (-522)))) (-15 -1297 ((-3 |#1| "failed") (-881 (-522)))) (-15 -1431 (|#1| (-881 (-382 (-522))))) (-15 -1484 (|#1| (-881 (-382 (-522))))) (-15 -1297 ((-3 |#1| "failed") (-881 (-382 (-522))))) (-15 -1451 (|#1| |#1| |#1|)) (-15 -2680 (|#1| |#1| |#1|)) (-15 -4019 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -4042 (-708))) |#1| |#1|)) (-15 -2924 (|#1| |#1| |#1|)) (-15 -1541 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -1938 ((-2 (|:| -2977 |#1|) (|:| |gap| (-708)) (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1| |#4|)) (-15 -1938 ((-2 (|:| -2977 |#1|) (|:| |gap| (-708)) (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -3592 ((-2 (|:| -2977 |#1|) (|:| |gap| (-708)) (|:| -3421 |#1|)) |#1| |#1| |#4|)) (-15 -3592 ((-2 (|:| -2977 |#1|) (|:| |gap| (-708)) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -1599 (|#1| |#1| |#1| |#4|)) (-15 -1819 (|#1| |#1| |#1| |#4|)) (-15 -1599 (|#1| |#1| |#1|)) (-15 -1819 (|#1| |#1| |#1|)) (-15 -4069 (|#1| |#1| |#1| |#4|)) (-15 -1704 (|#1| |#1| |#1| |#4|)) (-15 -4069 (|#1| |#1| |#1|)) (-15 -1704 (|#1| |#1| |#1|)) (-15 -3341 ((-108) |#1| (-588 |#1|))) (-15 -3341 ((-108) |#1| |#1|)) (-15 -3409 ((-108) |#1| (-588 |#1|))) (-15 -3409 ((-108) |#1| |#1|)) (-15 -2230 ((-108) |#1| (-588 |#1|))) (-15 -2230 ((-108) |#1| |#1|)) (-15 -1934 ((-108) |#1| (-588 |#1|))) (-15 -1934 ((-108) |#1| |#1|)) (-15 -2134 ((-108) |#1| |#1|)) (-15 -2123 ((-108) |#1| |#1|)) (-15 -2618 ((-3 (-108) "failed") |#1| |#1|)) (-15 -1269 ((-588 |#1|) |#1|)) (-15 -3405 ((-588 |#1|) |#1|)) (-15 -3786 (|#1| |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -1630 ((-108) |#1|)) (-15 -3012 ((-108) |#1|)) (-15 -3156 (|#1| |#1| |#4|)) (-15 -3138 (|#1| |#1| |#4|)) (-15 -1635 (|#1| |#1|)) (-15 -1817 ((-588 |#1|) |#1|)) (-15 -2044 (|#1| |#1|)) (-15 -3835 (|#1| |#1|)) (-15 -4002 (|#1| |#1|)) (-15 -3802 (|#1| |#1|)) (-15 -3903 ((-708) |#1|)) (-15 -1521 (|#4| |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -1431 ((-821 (-522)) |#1|)) (-15 -1431 ((-821 (-354)) |#1|)) (-15 -1484 (|#4| |#1|)) (-15 -1297 ((-3 |#4| "failed") |#1|)) (-15 -2190 (|#1| |#4|)) (-15 -3138 (|#2| |#1|)) (-15 -3156 (|#1| |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|))) (-985 |#2| |#3| |#4|) (-971) (-730) (-784)) (T -984))
-NIL
-(-10 -8 (-15 -2190 (|#1| |#1|)) (-15 -2259 (|#1| |#1| |#1|)) (-15 -2259 (|#1| (-588 |#1|))) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 ((-881 |#2|) |#1|)) (-15 -1431 ((-881 |#2|) |#1|)) (-15 -1431 ((-1068) |#1|)) (-15 -3547 (|#1| |#1|)) (-15 -1842 (|#1| |#1|)) (-15 -1313 (|#1| |#1|)) (-15 -1258 (|#1| |#1|)) (-15 -2259 (|#2| |#2| |#1|)) (-15 -3620 (|#1| |#1| |#1|)) (-15 -3195 (|#1| |#1| |#1|)) (-15 -3620 (|#1| |#1| |#2|)) (-15 -3195 (|#1| |#1| |#2|)) (-15 -3429 (|#1| |#1|)) (-15 -2705 (|#1| |#1|)) (-15 -1431 (|#1| (-881 |#2|))) (-15 -1484 (|#1| (-881 |#2|))) (-15 -1297 ((-3 |#1| "failed") (-881 |#2|))) (-15 -1431 (|#1| (-881 (-522)))) (-15 -1484 (|#1| (-881 (-522)))) (-15 -1297 ((-3 |#1| "failed") (-881 (-522)))) (-15 -1431 (|#1| (-881 (-382 (-522))))) (-15 -1484 (|#1| (-881 (-382 (-522))))) (-15 -1297 ((-3 |#1| "failed") (-881 (-382 (-522))))) (-15 -1451 (|#1| |#1| |#1|)) (-15 -2680 (|#1| |#1| |#1|)) (-15 -4019 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -4042 (-708))) |#1| |#1|)) (-15 -2924 (|#1| |#1| |#1|)) (-15 -1541 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -1938 ((-2 (|:| -2977 |#1|) (|:| |gap| (-708)) (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1| |#4|)) (-15 -1938 ((-2 (|:| -2977 |#1|) (|:| |gap| (-708)) (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -3592 ((-2 (|:| -2977 |#1|) (|:| |gap| (-708)) (|:| -3421 |#1|)) |#1| |#1| |#4|)) (-15 -3592 ((-2 (|:| -2977 |#1|) (|:| |gap| (-708)) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -1599 (|#1| |#1| |#1| |#4|)) (-15 -1819 (|#1| |#1| |#1| |#4|)) (-15 -1599 (|#1| |#1| |#1|)) (-15 -1819 (|#1| |#1| |#1|)) (-15 -4069 (|#1| |#1| |#1| |#4|)) (-15 -1704 (|#1| |#1| |#1| |#4|)) (-15 -4069 (|#1| |#1| |#1|)) (-15 -1704 (|#1| |#1| |#1|)) (-15 -3341 ((-108) |#1| (-588 |#1|))) (-15 -3341 ((-108) |#1| |#1|)) (-15 -3409 ((-108) |#1| (-588 |#1|))) (-15 -3409 ((-108) |#1| |#1|)) (-15 -2230 ((-108) |#1| (-588 |#1|))) (-15 -2230 ((-108) |#1| |#1|)) (-15 -1934 ((-108) |#1| (-588 |#1|))) (-15 -1934 ((-108) |#1| |#1|)) (-15 -2134 ((-108) |#1| |#1|)) (-15 -2123 ((-108) |#1| |#1|)) (-15 -2618 ((-3 (-108) "failed") |#1| |#1|)) (-15 -1269 ((-588 |#1|) |#1|)) (-15 -3405 ((-588 |#1|) |#1|)) (-15 -3786 (|#1| |#1|)) (-15 -3447 (|#1| |#1|)) (-15 -1630 ((-108) |#1|)) (-15 -3012 ((-108) |#1|)) (-15 -3156 (|#1| |#1| |#4|)) (-15 -3138 (|#1| |#1| |#4|)) (-15 -1635 (|#1| |#1|)) (-15 -1817 ((-588 |#1|) |#1|)) (-15 -2044 (|#1| |#1|)) (-15 -3835 (|#1| |#1|)) (-15 -4002 (|#1| |#1|)) (-15 -3802 (|#1| |#1|)) (-15 -3903 ((-708) |#1|)) (-15 -1521 (|#4| |#1|)) (-15 -1431 ((-498) |#1|)) (-15 -1431 ((-821 (-522)) |#1|)) (-15 -1431 ((-821 (-354)) |#1|)) (-15 -1484 (|#4| |#1|)) (-15 -1297 ((-3 |#4| "failed") |#1|)) (-15 -2190 (|#1| |#4|)) (-15 -3138 (|#2| |#1|)) (-15 -3156 (|#1| |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4090 (((-588 |#3|) $) 110)) (-1282 (((-1081 $) $ |#3|) 125) (((-1081 |#1|) $) 124)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 87 (|has| |#1| (-514)))) (-2022 (($ $) 88 (|has| |#1| (-514)))) (-3739 (((-108) $) 90 (|has| |#1| (-514)))) (-3781 (((-708) $) 112) (((-708) $ (-588 |#3|)) 111)) (-3835 (($ $) 271)) (-2134 (((-108) $ $) 257)) (-1233 (((-3 $ "failed") $ $) 19)) (-3984 (($ $ $) 216 (|has| |#1| (-514)))) (-2467 (((-588 $) $ $) 211 (|has| |#1| (-514)))) (-1565 (((-393 (-1081 $)) (-1081 $)) 100 (|has| |#1| (-838)))) (-3119 (($ $) 98 (|has| |#1| (-426)))) (-3450 (((-393 $) $) 97 (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 103 (|has| |#1| (-838)))) (-3175 (($) 17 T CONST)) (-1297 (((-3 |#1| "failed") $) 164) (((-3 (-382 (-522)) "failed") $) 162 (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) 160 (|has| |#1| (-962 (-522)))) (((-3 |#3| "failed") $) 136) (((-3 $ "failed") (-881 (-382 (-522)))) 231 (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085))))) (((-3 $ "failed") (-881 (-522))) 228 (-3708 (-12 (-2401 (|has| |#1| (-37 (-382 (-522))))) (|has| |#1| (-37 (-522))) (|has| |#3| (-563 (-1085)))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085)))))) (((-3 $ "failed") (-881 |#1|)) 225 (-3708 (-12 (-2401 (|has| |#1| (-37 (-382 (-522))))) (-2401 (|has| |#1| (-37 (-522)))) (|has| |#3| (-563 (-1085)))) (-12 (-2401 (|has| |#1| (-507))) (-2401 (|has| |#1| (-37 (-382 (-522))))) (|has| |#1| (-37 (-522))) (|has| |#3| (-563 (-1085)))) (-12 (-2401 (|has| |#1| (-919 (-522)))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085))))))) (-1484 ((|#1| $) 165) (((-382 (-522)) $) 161 (|has| |#1| (-962 (-382 (-522))))) (((-522) $) 159 (|has| |#1| (-962 (-522)))) ((|#3| $) 135) (($ (-881 (-382 (-522)))) 230 (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085))))) (($ (-881 (-522))) 227 (-3708 (-12 (-2401 (|has| |#1| (-37 (-382 (-522))))) (|has| |#1| (-37 (-522))) (|has| |#3| (-563 (-1085)))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085)))))) (($ (-881 |#1|)) 224 (-3708 (-12 (-2401 (|has| |#1| (-37 (-382 (-522))))) (-2401 (|has| |#1| (-37 (-522)))) (|has| |#3| (-563 (-1085)))) (-12 (-2401 (|has| |#1| (-507))) (-2401 (|has| |#1| (-37 (-382 (-522))))) (|has| |#1| (-37 (-522))) (|has| |#3| (-563 (-1085)))) (-12 (-2401 (|has| |#1| (-919 (-522)))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085))))))) (-1950 (($ $ $ |#3|) 108 (|has| |#1| (-157))) (($ $ $) 212 (|has| |#1| (-514)))) (-3156 (($ $) 154) (($ $ |#3|) 266)) (-2096 (((-628 (-522)) (-628 $)) 134 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 133 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 132) (((-628 |#1|) (-628 $)) 131)) (-1934 (((-108) $ $) 256) (((-108) $ (-588 $)) 255)) (-2682 (((-3 $ "failed") $) 34)) (-1630 (((-108) $) 264)) (-1541 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 236)) (-1258 (($ $) 205 (|has| |#1| (-426)))) (-2071 (($ $) 176 (|has| |#1| (-426))) (($ $ |#3|) 105 (|has| |#1| (-426)))) (-3147 (((-588 $) $) 109)) (-2813 (((-108) $) 96 (|has| |#1| (-838)))) (-3429 (($ $) 221 (|has| |#1| (-514)))) (-2705 (($ $) 222 (|has| |#1| (-514)))) (-1704 (($ $ $) 248) (($ $ $ |#3|) 246)) (-4069 (($ $ $) 247) (($ $ $ |#3|) 245)) (-2671 (($ $ |#1| |#2| $) 172)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 84 (-12 (|has| |#3| (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 83 (-12 (|has| |#3| (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-2782 (((-108) $) 31)) (-2112 (((-708) $) 169)) (-3341 (((-108) $ $) 250) (((-108) $ (-588 $)) 249)) (-1460 (($ $ $ $ $) 207 (|has| |#1| (-514)))) (-1521 ((|#3| $) 275)) (-4073 (($ (-1081 |#1|) |#3|) 117) (($ (-1081 $) |#3|) 116)) (-4052 (((-588 $) $) 126)) (-3340 (((-108) $) 152)) (-4049 (($ |#1| |#2|) 153) (($ $ |#3| (-708)) 119) (($ $ (-588 |#3|) (-588 (-708))) 118)) (-2924 (($ $ $) 235)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ |#3|) 120)) (-3012 (((-108) $) 265)) (-2925 ((|#2| $) 170) (((-708) $ |#3|) 122) (((-588 (-708)) $ (-588 |#3|)) 121)) (-2814 (($ $ $) 79 (|has| |#1| (-784)))) (-3903 (((-708) $) 274)) (-2446 (($ $ $) 78 (|has| |#1| (-784)))) (-3861 (($ (-1 |#2| |#2|) $) 171)) (-1391 (($ (-1 |#1| |#1|) $) 151)) (-3145 (((-3 |#3| "failed") $) 123)) (-3547 (($ $) 202 (|has| |#1| (-426)))) (-1842 (($ $) 203 (|has| |#1| (-426)))) (-1269 (((-588 $) $) 260)) (-3447 (($ $) 263)) (-1313 (($ $) 204 (|has| |#1| (-426)))) (-3405 (((-588 $) $) 261)) (-3786 (($ $) 262)) (-3128 (($ $) 149)) (-3138 ((|#1| $) 148) (($ $ |#3|) 267)) (-2224 (($ (-588 $)) 94 (|has| |#1| (-426))) (($ $ $) 93 (|has| |#1| (-426)))) (-4019 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -4042 (-708))) $ $) 234)) (-1938 (((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -1353 $) (|:| -3421 $)) $ $) 238) (((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -1353 $) (|:| -3421 $)) $ $ |#3|) 237)) (-3592 (((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -3421 $)) $ $) 240) (((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -3421 $)) $ $ |#3|) 239)) (-1819 (($ $ $) 244) (($ $ $ |#3|) 242)) (-1599 (($ $ $) 243) (($ $ $ |#3|) 241)) (-2385 (((-1068) $) 9)) (-1331 (($ $ $) 210 (|has| |#1| (-514)))) (-1817 (((-588 $) $) 269)) (-2462 (((-3 (-588 $) "failed") $) 114)) (-4193 (((-3 (-588 $) "failed") $) 115)) (-3285 (((-3 (-2 (|:| |var| |#3|) (|:| -1400 (-708))) "failed") $) 113)) (-3409 (((-108) $ $) 252) (((-108) $ (-588 $)) 251)) (-1451 (($ $ $) 232)) (-3802 (($ $) 273)) (-2123 (((-108) $ $) 258)) (-2230 (((-108) $ $) 254) (((-108) $ (-588 $)) 253)) (-2680 (($ $ $) 233)) (-4002 (($ $) 272)) (-4151 (((-1032) $) 10)) (-3461 (((-2 (|:| -2259 $) (|:| |coef2| $)) $ $) 213 (|has| |#1| (-514)))) (-3738 (((-2 (|:| -2259 $) (|:| |coef1| $)) $ $) 214 (|has| |#1| (-514)))) (-3108 (((-108) $) 166)) (-3118 ((|#1| $) 167)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 95 (|has| |#1| (-426)))) (-2259 ((|#1| |#1| $) 206 (|has| |#1| (-426))) (($ (-588 $)) 92 (|has| |#1| (-426))) (($ $ $) 91 (|has| |#1| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) 102 (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) 101 (|has| |#1| (-838)))) (-1916 (((-393 $) $) 99 (|has| |#1| (-838)))) (-3905 (((-2 (|:| -2259 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-514)))) (-2232 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-514)))) (-3620 (($ $ |#1|) 219 (|has| |#1| (-514))) (($ $ $) 217 (|has| |#1| (-514)))) (-3195 (($ $ |#1|) 220 (|has| |#1| (-514))) (($ $ $) 218 (|has| |#1| (-514)))) (-2289 (($ $ (-588 (-270 $))) 145) (($ $ (-270 $)) 144) (($ $ $ $) 143) (($ $ (-588 $) (-588 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-588 |#3|) (-588 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-588 |#3|) (-588 $)) 138)) (-2769 (($ $ |#3|) 107 (|has| |#1| (-157)))) (-2157 (($ $ |#3|) 42) (($ $ (-588 |#3|)) 41) (($ $ |#3| (-708)) 40) (($ $ (-588 |#3|) (-588 (-708))) 39)) (-2793 ((|#2| $) 150) (((-708) $ |#3|) 130) (((-588 (-708)) $ (-588 |#3|)) 129)) (-2044 (($ $) 270)) (-1635 (($ $) 268)) (-1431 (((-821 (-354)) $) 82 (-12 (|has| |#3| (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) 81 (-12 (|has| |#3| (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) 80 (-12 (|has| |#3| (-563 (-498))) (|has| |#1| (-563 (-498))))) (($ (-881 (-382 (-522)))) 229 (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085))))) (($ (-881 (-522))) 226 (-3708 (-12 (-2401 (|has| |#1| (-37 (-382 (-522))))) (|has| |#1| (-37 (-522))) (|has| |#3| (-563 (-1085)))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085)))))) (($ (-881 |#1|)) 223 (|has| |#3| (-563 (-1085)))) (((-1068) $) 201 (-12 (|has| |#1| (-962 (-522))) (|has| |#3| (-563 (-1085))))) (((-881 |#1|) $) 200 (|has| |#3| (-563 (-1085))))) (-2255 ((|#1| $) 175 (|has| |#1| (-426))) (($ $ |#3|) 106 (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 104 (-4015 (|has| $ (-133)) (|has| |#1| (-838))))) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 163) (($ |#3|) 137) (((-881 |#1|) $) 199 (|has| |#3| (-563 (-1085)))) (($ (-382 (-522))) 72 (-3708 (|has| |#1| (-962 (-382 (-522)))) (|has| |#1| (-37 (-382 (-522)))))) (($ $) 85 (|has| |#1| (-514)))) (-3916 (((-588 |#1|) $) 168)) (-3243 ((|#1| $ |#2|) 155) (($ $ |#3| (-708)) 128) (($ $ (-588 |#3|) (-588 (-708))) 127)) (-2143 (((-3 $ "failed") $) 73 (-3708 (-4015 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) 29)) (-3632 (($ $ $ (-708)) 173 (|has| |#1| (-157)))) (-3958 (((-108) $ $) 89 (|has| |#1| (-514)))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-2618 (((-3 (-108) "failed") $ $) 259)) (-3577 (($) 30 T CONST)) (-2298 (($ $ $ $ (-708)) 208 (|has| |#1| (-514)))) (-3818 (($ $ $ (-708)) 209 (|has| |#1| (-514)))) (-2213 (($ $ |#3|) 38) (($ $ (-588 |#3|)) 37) (($ $ |#3| (-708)) 36) (($ $ (-588 |#3|) (-588 (-708))) 35)) (-1574 (((-108) $ $) 76 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 75 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 77 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 74 (|has| |#1| (-784)))) (-1620 (($ $ |#1|) 156 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 158 (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) 157 (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) |#2| $) 23)) (-1685 ((|#1| $) 10)) (-3355 (((-522) |#2| $) 89)) (-1275 (((-3 $ "failed") |#2| (-850)) 58)) (-2002 ((|#1| $) 28)) (-1549 ((|#1| |#2| $ |#1|) 37)) (-1776 (($ $) 25)) (-3920 (((-3 |#2| "failed") |#2| $) 88)) (-3603 (((-108) |#2| $) NIL)) (-3740 (((-108) |#2| $) NIL)) (-2897 (((-108) |#2| $) 24)) (-1439 ((|#1| $) 90)) (-1993 ((|#1| $) 27)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1579 ((|#2| $) 80)) (-2217 (((-792) $) 71)) (-3996 ((|#1| |#2| $ |#1|) 38)) (-3068 (((-588 $) |#2|) 60)) (-1562 (((-108) $ $) 75)))
+(((-981 |#1| |#2|) (-13 (-987 |#1| |#2|) (-10 -8 (-15 -1993 (|#1| $)) (-15 -2002 (|#1| $)) (-15 -1685 (|#1| $)) (-15 -1439 (|#1| $)) (-15 -1776 ($ $)) (-15 -2897 ((-108) |#2| $)) (-15 -1549 (|#1| |#2| $ |#1|)))) (-13 (-782) (-338)) (-1142 |#1|)) (T -981))
+((-1549 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3)) (-4 *3 (-1142 *2)))) (-1993 (*1 *2 *1) (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3)) (-4 *3 (-1142 *2)))) (-2002 (*1 *2 *1) (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3)) (-4 *3 (-1142 *2)))) (-1685 (*1 *2 *1) (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3)) (-4 *3 (-1142 *2)))) (-1439 (*1 *2 *1) (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3)) (-4 *3 (-1142 *2)))) (-1776 (*1 *1 *1) (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3)) (-4 *3 (-1142 *2)))) (-2897 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-782) (-338))) (-5 *2 (-108)) (-5 *1 (-981 *4 *3)) (-4 *3 (-1142 *4)))))
+(-13 (-987 |#1| |#2|) (-10 -8 (-15 -1993 (|#1| $)) (-15 -2002 (|#1| $)) (-15 -1685 (|#1| $)) (-15 -1439 (|#1| $)) (-15 -1776 ($ $)) (-15 -2897 ((-108) |#2| $)) (-15 -1549 (|#1| |#2| $ |#1|))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-1805 (($ $ $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3372 (($ $ $ $) NIL)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL)) (-1736 (($ $ $) NIL)) (-3367 (($) NIL T CONST)) (-3652 (($ (-1085)) 10) (($ (-522)) 7)) (-3700 (((-3 (-522) "failed") $) NIL)) (-1478 (((-522) $) NIL)) (-2333 (($ $ $) NIL)) (-1226 (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-628 (-522)) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2549 (((-3 (-382 (-522)) "failed") $) NIL)) (-3519 (((-108) $) NIL)) (-1699 (((-382 (-522)) $) NIL)) (-3344 (($) NIL) (($ $) NIL)) (-2303 (($ $ $) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3859 (($ $ $ $) NIL)) (-1968 (($ $ $) NIL)) (-3603 (((-108) $) NIL)) (-2634 (($ $ $) NIL)) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL)) (-2859 (((-108) $) NIL)) (-3077 (((-108) $) NIL)) (-4208 (((-3 $ "failed") $) NIL)) (-3740 (((-108) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2037 (($ $ $ $) NIL)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-4000 (($ $) NIL)) (-4030 (($ $) NIL)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-1988 (($ $ $) NIL)) (-3937 (($) NIL T CONST)) (-3092 (($ $) NIL)) (-4174 (((-1032) $) NIL) (($ $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) NIL) (($ (-588 $)) NIL)) (-1274 (($ $) NIL)) (-2006 (((-393 $) $) NIL)) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2626 (((-108) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-2731 (($ $ (-708)) NIL) (($ $) NIL)) (-3518 (($ $) NIL)) (-2463 (($ $) NIL)) (-3873 (((-522) $) 16) (((-498) $) NIL) (((-821 (-522)) $) NIL) (((-354) $) NIL) (((-202) $) NIL) (($ (-1085)) 9)) (-2217 (((-792) $) 20) (($ (-522)) 6) (($ $) NIL) (($ (-522)) 6)) (-2742 (((-708)) NIL)) (-1763 (((-108) $ $) NIL)) (-1591 (($ $ $) NIL)) (-1897 (($) NIL)) (-1407 (((-108) $ $) NIL)) (-3673 (($ $ $ $) NIL)) (-4126 (($ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-708)) NIL) (($ $) NIL)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) NIL)) (-1672 (($ $) 19) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL)))
+(((-982) (-13 (-507) (-10 -8 (-6 -4225) (-6 -4230) (-6 -4226) (-15 -3873 ($ (-1085))) (-15 -3652 ($ (-1085))) (-15 -3652 ($ (-522)))))) (T -982))
+((-3873 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-982)))) (-3652 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-982)))) (-3652 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-982)))))
+(-13 (-507) (-10 -8 (-6 -4225) (-6 -4230) (-6 -4226) (-15 -3873 ($ (-1085))) (-15 -3652 ($ (-1085))) (-15 -3652 ($ (-522)))))
+((-1419 (((-108) $ $) NIL (-3844 (|has| (-51) (-1014)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014))))) (-1883 (($) NIL) (($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) NIL)) (-3883 (((-1171) $ (-1085) (-1085)) NIL (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) NIL)) (-1951 (($) 9)) (-2437 (((-51) $ (-1085) (-51)) NIL)) (-3492 (($ $) 23)) (-1441 (($ $) 21)) (-1560 (($ $) 20)) (-3981 (($ $) 22)) (-1772 (($ $) 25)) (-3135 (($ $) 26)) (-3739 (($ $) 19)) (-3470 (($ $) 24)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) 18 (|has| $ (-6 -4238)))) (-4011 (((-3 (-51) "failed") (-1085) $) 34)) (-3367 (($) NIL T CONST)) (-1301 (($) 7)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014))))) (-1700 (($ (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) 46 (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-3 (-51) "failed") (-1085) $) NIL)) (-1424 (($ (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (($ (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $ (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (((-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $ (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238)))) (-3228 (((-3 (-1068) "failed") $ (-1068) (-522)) 59)) (-2411 (((-51) $ (-1085) (-51)) NIL (|has| $ (-6 -4239)))) (-2186 (((-51) $ (-1085)) NIL)) (-2395 (((-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-588 (-51)) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-1085) $) NIL (|has| (-1085) (-784)))) (-4084 (((-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) 28 (|has| $ (-6 -4238))) (((-588 (-51)) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014))))) (-2201 (((-1085) $) NIL (|has| (-1085) (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4239))) (($ (-1 (-51) (-51)) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL) (($ (-1 (-51) (-51)) $) NIL) (($ (-1 (-51) (-51) (-51)) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (-3844 (|has| (-51) (-1014)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014))))) (-2562 (((-588 (-1085)) $) NIL)) (-2241 (((-108) (-1085) $) NIL)) (-1431 (((-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) NIL)) (-3365 (($ (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) 37)) (-2130 (((-588 (-1085)) $) NIL)) (-2103 (((-108) (-1085) $) NIL)) (-4174 (((-1032) $) NIL (-3844 (|has| (-51) (-1014)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014))))) (-2694 (((-354) $ (-1085)) 45)) (-3430 (((-588 (-1068)) $ (-1068)) 60)) (-2337 (((-51) $) NIL (|has| (-1085) (-784)))) (-2187 (((-3 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) "failed") (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL)) (-1972 (($ $ (-51)) NIL (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) NIL)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))))) NIL (-12 (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (($ $ (-270 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) NIL (-12 (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (($ $ (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) NIL (-12 (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (($ $ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) NIL (-12 (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-285 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (($ $ (-588 (-51)) (-588 (-51))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-51) (-51)) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-270 (-51))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014)))) (($ $ (-588 (-270 (-51)))) NIL (-12 (|has| (-51) (-285 (-51))) (|has| (-51) (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014))))) (-1973 (((-588 (-51)) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 (((-51) $ (-1085)) NIL) (((-51) $ (-1085) (-51)) NIL)) (-3546 (($) NIL) (($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) NIL)) (-3119 (($ $ (-1085)) 47)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014)))) (((-708) (-51) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-51) (-1014)))) (((-708) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) 30)) (-4170 (($ $ $) 31)) (-2217 (((-792) $) NIL (-3844 (|has| (-51) (-562 (-792))) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-562 (-792)))))) (-1460 (($ $ (-1085) (-354)) 43)) (-3585 (($ $ (-1085) (-354)) 44)) (-2501 (($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))))) NIL)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 (-1085)) (|:| -3149 (-51)))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) (-51)) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (-3844 (|has| (-51) (-1014)) (|has| (-2 (|:| -2644 (-1085)) (|:| -3149 (-51))) (-1014))))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-983) (-13 (-1097 (-1085) (-51)) (-10 -8 (-15 -4170 ($ $ $)) (-15 -1301 ($)) (-15 -3739 ($ $)) (-15 -1560 ($ $)) (-15 -1441 ($ $)) (-15 -3981 ($ $)) (-15 -3470 ($ $)) (-15 -3492 ($ $)) (-15 -1772 ($ $)) (-15 -3135 ($ $)) (-15 -1460 ($ $ (-1085) (-354))) (-15 -3585 ($ $ (-1085) (-354))) (-15 -2694 ((-354) $ (-1085))) (-15 -3430 ((-588 (-1068)) $ (-1068))) (-15 -3119 ($ $ (-1085))) (-15 -1951 ($)) (-15 -3228 ((-3 (-1068) "failed") $ (-1068) (-522))) (-6 -4238)))) (T -983))
+((-4170 (*1 *1 *1 *1) (-5 *1 (-983))) (-1301 (*1 *1) (-5 *1 (-983))) (-3739 (*1 *1 *1) (-5 *1 (-983))) (-1560 (*1 *1 *1) (-5 *1 (-983))) (-1441 (*1 *1 *1) (-5 *1 (-983))) (-3981 (*1 *1 *1) (-5 *1 (-983))) (-3470 (*1 *1 *1) (-5 *1 (-983))) (-3492 (*1 *1 *1) (-5 *1 (-983))) (-1772 (*1 *1 *1) (-5 *1 (-983))) (-3135 (*1 *1 *1) (-5 *1 (-983))) (-1460 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-354)) (-5 *1 (-983)))) (-3585 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-354)) (-5 *1 (-983)))) (-2694 (*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-354)) (-5 *1 (-983)))) (-3430 (*1 *2 *1 *3) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-983)) (-5 *3 (-1068)))) (-3119 (*1 *1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-983)))) (-1951 (*1 *1) (-5 *1 (-983))) (-3228 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1068)) (-5 *3 (-522)) (-5 *1 (-983)))))
+(-13 (-1097 (-1085) (-51)) (-10 -8 (-15 -4170 ($ $ $)) (-15 -1301 ($)) (-15 -3739 ($ $)) (-15 -1560 ($ $)) (-15 -1441 ($ $)) (-15 -3981 ($ $)) (-15 -3470 ($ $)) (-15 -3492 ($ $)) (-15 -1772 ($ $)) (-15 -3135 ($ $)) (-15 -1460 ($ $ (-1085) (-354))) (-15 -3585 ($ $ (-1085) (-354))) (-15 -2694 ((-354) $ (-1085))) (-15 -3430 ((-588 (-1068)) $ (-1068))) (-15 -3119 ($ $ (-1085))) (-15 -1951 ($)) (-15 -3228 ((-3 (-1068) "failed") $ (-1068) (-522))) (-6 -4238)))
+((-3961 (($ $) 45)) (-2942 (((-108) $ $) 74)) (-3700 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 (-522) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-881 (-382 (-522)))) 227) (((-3 $ "failed") (-881 (-522))) 226) (((-3 $ "failed") (-881 |#2|)) 229)) (-1478 ((|#2| $) NIL) (((-382 (-522)) $) NIL) (((-522) $) NIL) ((|#4| $) NIL) (($ (-881 (-382 (-522)))) 215) (($ (-881 (-522))) 211) (($ (-881 |#2|)) 231)) (-3241 (($ $) NIL) (($ $ |#4|) 43)) (-1426 (((-108) $ $) 112) (((-108) $ (-588 $)) 113)) (-2184 (((-108) $) 56)) (-3370 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 107)) (-2563 (($ $) 138)) (-2948 (($ $) 134)) (-1510 (($ $) 133)) (-4107 (($ $ $) 79) (($ $ $ |#4|) 84)) (-3168 (($ $ $) 82) (($ $ $ |#4|) 86)) (-1384 (((-108) $ $) 121) (((-108) $ (-588 $)) 122)) (-1933 ((|#4| $) 33)) (-3556 (($ $ $) 110)) (-1257 (((-108) $) 55)) (-2059 (((-708) $) 35)) (-2894 (($ $) 152)) (-2408 (($ $) 149)) (-2697 (((-588 $) $) 68)) (-3110 (($ $) 57)) (-1840 (($ $) 145)) (-3814 (((-588 $) $) 65)) (-3409 (($ $) 59)) (-3224 ((|#2| $) NIL) (($ $ |#4|) 38)) (-3816 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -4062 (-708))) $ $) 111)) (-1456 (((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -3450 $) (|:| -4002 $)) $ $) 108) (((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -3450 $) (|:| -4002 $)) $ $ |#4|) 109)) (-2038 (((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -4002 $)) $ $) 104) (((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -4002 $)) $ $ |#4|) 105)) (-3968 (($ $ $) 89) (($ $ $ |#4|) 95)) (-3787 (($ $ $) 90) (($ $ $ |#4|) 96)) (-3946 (((-588 $) $) 51)) (-3864 (((-108) $ $) 118) (((-108) $ (-588 $)) 119)) (-2556 (($ $ $) 103)) (-3937 (($ $) 37)) (-1517 (((-108) $ $) 72)) (-3060 (((-108) $ $) 114) (((-108) $ (-588 $)) 116)) (-3896 (($ $ $) 101)) (-3655 (($ $) 40)) (-2308 ((|#2| |#2| $) 142) (($ (-588 $)) NIL) (($ $ $) NIL)) (-4139 (($ $ |#2|) NIL) (($ $ $) 131)) (-2376 (($ $ |#2|) 126) (($ $ $) 129)) (-2581 (($ $) 48)) (-2209 (($ $) 52)) (-3873 (((-821 (-354)) $) NIL) (((-821 (-522)) $) NIL) (((-498) $) NIL) (($ (-881 (-382 (-522)))) 217) (($ (-881 (-522))) 213) (($ (-881 |#2|)) 228) (((-1068) $) 250) (((-881 |#2|) $) 162)) (-2217 (((-792) $) 30) (($ (-522)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-881 |#2|) $) 163) (($ (-382 (-522))) NIL) (($ $) NIL)) (-1679 (((-3 (-108) "failed") $ $) 71)))
+(((-984 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2217 (|#1| |#1|)) (-15 -2308 (|#1| |#1| |#1|)) (-15 -2308 (|#1| (-588 |#1|))) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 ((-881 |#2|) |#1|)) (-15 -3873 ((-881 |#2|) |#1|)) (-15 -3873 ((-1068) |#1|)) (-15 -2894 (|#1| |#1|)) (-15 -2408 (|#1| |#1|)) (-15 -1840 (|#1| |#1|)) (-15 -2563 (|#1| |#1|)) (-15 -2308 (|#2| |#2| |#1|)) (-15 -4139 (|#1| |#1| |#1|)) (-15 -2376 (|#1| |#1| |#1|)) (-15 -4139 (|#1| |#1| |#2|)) (-15 -2376 (|#1| |#1| |#2|)) (-15 -2948 (|#1| |#1|)) (-15 -1510 (|#1| |#1|)) (-15 -3873 (|#1| (-881 |#2|))) (-15 -1478 (|#1| (-881 |#2|))) (-15 -3700 ((-3 |#1| "failed") (-881 |#2|))) (-15 -3873 (|#1| (-881 (-522)))) (-15 -1478 (|#1| (-881 (-522)))) (-15 -3700 ((-3 |#1| "failed") (-881 (-522)))) (-15 -3873 (|#1| (-881 (-382 (-522))))) (-15 -1478 (|#1| (-881 (-382 (-522))))) (-15 -3700 ((-3 |#1| "failed") (-881 (-382 (-522))))) (-15 -2556 (|#1| |#1| |#1|)) (-15 -3896 (|#1| |#1| |#1|)) (-15 -3816 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -4062 (-708))) |#1| |#1|)) (-15 -3556 (|#1| |#1| |#1|)) (-15 -3370 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -1456 ((-2 (|:| -3112 |#1|) (|:| |gap| (-708)) (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1| |#4|)) (-15 -1456 ((-2 (|:| -3112 |#1|) (|:| |gap| (-708)) (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -2038 ((-2 (|:| -3112 |#1|) (|:| |gap| (-708)) (|:| -4002 |#1|)) |#1| |#1| |#4|)) (-15 -2038 ((-2 (|:| -3112 |#1|) (|:| |gap| (-708)) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -3787 (|#1| |#1| |#1| |#4|)) (-15 -3968 (|#1| |#1| |#1| |#4|)) (-15 -3787 (|#1| |#1| |#1|)) (-15 -3968 (|#1| |#1| |#1|)) (-15 -3168 (|#1| |#1| |#1| |#4|)) (-15 -4107 (|#1| |#1| |#1| |#4|)) (-15 -3168 (|#1| |#1| |#1|)) (-15 -4107 (|#1| |#1| |#1|)) (-15 -1384 ((-108) |#1| (-588 |#1|))) (-15 -1384 ((-108) |#1| |#1|)) (-15 -3864 ((-108) |#1| (-588 |#1|))) (-15 -3864 ((-108) |#1| |#1|)) (-15 -3060 ((-108) |#1| (-588 |#1|))) (-15 -3060 ((-108) |#1| |#1|)) (-15 -1426 ((-108) |#1| (-588 |#1|))) (-15 -1426 ((-108) |#1| |#1|)) (-15 -2942 ((-108) |#1| |#1|)) (-15 -1517 ((-108) |#1| |#1|)) (-15 -1679 ((-3 (-108) "failed") |#1| |#1|)) (-15 -2697 ((-588 |#1|) |#1|)) (-15 -3814 ((-588 |#1|) |#1|)) (-15 -3409 (|#1| |#1|)) (-15 -3110 (|#1| |#1|)) (-15 -2184 ((-108) |#1|)) (-15 -1257 ((-108) |#1|)) (-15 -3241 (|#1| |#1| |#4|)) (-15 -3224 (|#1| |#1| |#4|)) (-15 -2209 (|#1| |#1|)) (-15 -3946 ((-588 |#1|) |#1|)) (-15 -2581 (|#1| |#1|)) (-15 -3961 (|#1| |#1|)) (-15 -3655 (|#1| |#1|)) (-15 -3937 (|#1| |#1|)) (-15 -2059 ((-708) |#1|)) (-15 -1933 (|#4| |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -3873 ((-821 (-522)) |#1|)) (-15 -3873 ((-821 (-354)) |#1|)) (-15 -1478 (|#4| |#1|)) (-15 -3700 ((-3 |#4| "failed") |#1|)) (-15 -2217 (|#1| |#4|)) (-15 -3224 (|#2| |#1|)) (-15 -3241 (|#1| |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|))) (-985 |#2| |#3| |#4|) (-971) (-730) (-784)) (T -984))
+NIL
+(-10 -8 (-15 -2217 (|#1| |#1|)) (-15 -2308 (|#1| |#1| |#1|)) (-15 -2308 (|#1| (-588 |#1|))) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 ((-881 |#2|) |#1|)) (-15 -3873 ((-881 |#2|) |#1|)) (-15 -3873 ((-1068) |#1|)) (-15 -2894 (|#1| |#1|)) (-15 -2408 (|#1| |#1|)) (-15 -1840 (|#1| |#1|)) (-15 -2563 (|#1| |#1|)) (-15 -2308 (|#2| |#2| |#1|)) (-15 -4139 (|#1| |#1| |#1|)) (-15 -2376 (|#1| |#1| |#1|)) (-15 -4139 (|#1| |#1| |#2|)) (-15 -2376 (|#1| |#1| |#2|)) (-15 -2948 (|#1| |#1|)) (-15 -1510 (|#1| |#1|)) (-15 -3873 (|#1| (-881 |#2|))) (-15 -1478 (|#1| (-881 |#2|))) (-15 -3700 ((-3 |#1| "failed") (-881 |#2|))) (-15 -3873 (|#1| (-881 (-522)))) (-15 -1478 (|#1| (-881 (-522)))) (-15 -3700 ((-3 |#1| "failed") (-881 (-522)))) (-15 -3873 (|#1| (-881 (-382 (-522))))) (-15 -1478 (|#1| (-881 (-382 (-522))))) (-15 -3700 ((-3 |#1| "failed") (-881 (-382 (-522))))) (-15 -2556 (|#1| |#1| |#1|)) (-15 -3896 (|#1| |#1| |#1|)) (-15 -3816 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -4062 (-708))) |#1| |#1|)) (-15 -3556 (|#1| |#1| |#1|)) (-15 -3370 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -1456 ((-2 (|:| -3112 |#1|) (|:| |gap| (-708)) (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1| |#4|)) (-15 -1456 ((-2 (|:| -3112 |#1|) (|:| |gap| (-708)) (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -2038 ((-2 (|:| -3112 |#1|) (|:| |gap| (-708)) (|:| -4002 |#1|)) |#1| |#1| |#4|)) (-15 -2038 ((-2 (|:| -3112 |#1|) (|:| |gap| (-708)) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -3787 (|#1| |#1| |#1| |#4|)) (-15 -3968 (|#1| |#1| |#1| |#4|)) (-15 -3787 (|#1| |#1| |#1|)) (-15 -3968 (|#1| |#1| |#1|)) (-15 -3168 (|#1| |#1| |#1| |#4|)) (-15 -4107 (|#1| |#1| |#1| |#4|)) (-15 -3168 (|#1| |#1| |#1|)) (-15 -4107 (|#1| |#1| |#1|)) (-15 -1384 ((-108) |#1| (-588 |#1|))) (-15 -1384 ((-108) |#1| |#1|)) (-15 -3864 ((-108) |#1| (-588 |#1|))) (-15 -3864 ((-108) |#1| |#1|)) (-15 -3060 ((-108) |#1| (-588 |#1|))) (-15 -3060 ((-108) |#1| |#1|)) (-15 -1426 ((-108) |#1| (-588 |#1|))) (-15 -1426 ((-108) |#1| |#1|)) (-15 -2942 ((-108) |#1| |#1|)) (-15 -1517 ((-108) |#1| |#1|)) (-15 -1679 ((-3 (-108) "failed") |#1| |#1|)) (-15 -2697 ((-588 |#1|) |#1|)) (-15 -3814 ((-588 |#1|) |#1|)) (-15 -3409 (|#1| |#1|)) (-15 -3110 (|#1| |#1|)) (-15 -2184 ((-108) |#1|)) (-15 -1257 ((-108) |#1|)) (-15 -3241 (|#1| |#1| |#4|)) (-15 -3224 (|#1| |#1| |#4|)) (-15 -2209 (|#1| |#1|)) (-15 -3946 ((-588 |#1|) |#1|)) (-15 -2581 (|#1| |#1|)) (-15 -3961 (|#1| |#1|)) (-15 -3655 (|#1| |#1|)) (-15 -3937 (|#1| |#1|)) (-15 -2059 ((-708) |#1|)) (-15 -1933 (|#4| |#1|)) (-15 -3873 ((-498) |#1|)) (-15 -3873 ((-821 (-522)) |#1|)) (-15 -3873 ((-821 (-354)) |#1|)) (-15 -1478 (|#4| |#1|)) (-15 -3700 ((-3 |#4| "failed") |#1|)) (-15 -2217 (|#1| |#4|)) (-15 -3224 (|#2| |#1|)) (-15 -3241 (|#1| |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3533 (((-588 |#3|) $) 110)) (-1264 (((-1081 $) $ |#3|) 125) (((-1081 |#1|) $) 124)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 87 (|has| |#1| (-514)))) (-2298 (($ $) 88 (|has| |#1| (-514)))) (-3007 (((-108) $) 90 (|has| |#1| (-514)))) (-3358 (((-708) $) 112) (((-708) $ (-588 |#3|)) 111)) (-3961 (($ $) 271)) (-2942 (((-108) $ $) 257)) (-2265 (((-3 $ "failed") $ $) 19)) (-3485 (($ $ $) 216 (|has| |#1| (-514)))) (-2817 (((-588 $) $ $) 211 (|has| |#1| (-514)))) (-3543 (((-393 (-1081 $)) (-1081 $)) 100 (|has| |#1| (-838)))) (-2961 (($ $) 98 (|has| |#1| (-426)))) (-3133 (((-393 $) $) 97 (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 103 (|has| |#1| (-838)))) (-3367 (($) 17 T CONST)) (-3700 (((-3 |#1| "failed") $) 164) (((-3 (-382 (-522)) "failed") $) 162 (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) 160 (|has| |#1| (-962 (-522)))) (((-3 |#3| "failed") $) 136) (((-3 $ "failed") (-881 (-382 (-522)))) 231 (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085))))) (((-3 $ "failed") (-881 (-522))) 228 (-3844 (-12 (-2473 (|has| |#1| (-37 (-382 (-522))))) (|has| |#1| (-37 (-522))) (|has| |#3| (-563 (-1085)))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085)))))) (((-3 $ "failed") (-881 |#1|)) 225 (-3844 (-12 (-2473 (|has| |#1| (-37 (-382 (-522))))) (-2473 (|has| |#1| (-37 (-522)))) (|has| |#3| (-563 (-1085)))) (-12 (-2473 (|has| |#1| (-507))) (-2473 (|has| |#1| (-37 (-382 (-522))))) (|has| |#1| (-37 (-522))) (|has| |#3| (-563 (-1085)))) (-12 (-2473 (|has| |#1| (-919 (-522)))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085))))))) (-1478 ((|#1| $) 165) (((-382 (-522)) $) 161 (|has| |#1| (-962 (-382 (-522))))) (((-522) $) 159 (|has| |#1| (-962 (-522)))) ((|#3| $) 135) (($ (-881 (-382 (-522)))) 230 (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085))))) (($ (-881 (-522))) 227 (-3844 (-12 (-2473 (|has| |#1| (-37 (-382 (-522))))) (|has| |#1| (-37 (-522))) (|has| |#3| (-563 (-1085)))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085)))))) (($ (-881 |#1|)) 224 (-3844 (-12 (-2473 (|has| |#1| (-37 (-382 (-522))))) (-2473 (|has| |#1| (-37 (-522)))) (|has| |#3| (-563 (-1085)))) (-12 (-2473 (|has| |#1| (-507))) (-2473 (|has| |#1| (-37 (-382 (-522))))) (|has| |#1| (-37 (-522))) (|has| |#3| (-563 (-1085)))) (-12 (-2473 (|has| |#1| (-919 (-522)))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085))))))) (-2908 (($ $ $ |#3|) 108 (|has| |#1| (-157))) (($ $ $) 212 (|has| |#1| (-514)))) (-3241 (($ $) 154) (($ $ |#3|) 266)) (-1226 (((-628 (-522)) (-628 $)) 134 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 133 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 132) (((-628 |#1|) (-628 $)) 131)) (-1426 (((-108) $ $) 256) (((-108) $ (-588 $)) 255)) (-3920 (((-3 $ "failed") $) 34)) (-2184 (((-108) $) 264)) (-3370 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 236)) (-2563 (($ $) 205 (|has| |#1| (-426)))) (-2883 (($ $) 176 (|has| |#1| (-426))) (($ $ |#3|) 105 (|has| |#1| (-426)))) (-3232 (((-588 $) $) 109)) (-2725 (((-108) $) 96 (|has| |#1| (-838)))) (-2948 (($ $) 221 (|has| |#1| (-514)))) (-1510 (($ $) 222 (|has| |#1| (-514)))) (-4107 (($ $ $) 248) (($ $ $ |#3|) 246)) (-3168 (($ $ $) 247) (($ $ $ |#3|) 245)) (-3792 (($ $ |#1| |#2| $) 172)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 84 (-12 (|has| |#3| (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 83 (-12 (|has| |#3| (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-2859 (((-108) $) 31)) (-1391 (((-708) $) 169)) (-1384 (((-108) $ $) 250) (((-108) $ (-588 $)) 249)) (-2662 (($ $ $ $ $) 207 (|has| |#1| (-514)))) (-1933 ((|#3| $) 275)) (-3520 (($ (-1081 |#1|) |#3|) 117) (($ (-1081 $) |#3|) 116)) (-3038 (((-588 $) $) 126)) (-1374 (((-108) $) 152)) (-3500 (($ |#1| |#2|) 153) (($ $ |#3| (-708)) 119) (($ $ (-588 |#3|) (-588 (-708))) 118)) (-3556 (($ $ $) 235)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ |#3|) 120)) (-1257 (((-108) $) 265)) (-3564 ((|#2| $) 170) (((-708) $ |#3|) 122) (((-588 (-708)) $ (-588 |#3|)) 121)) (-1308 (($ $ $) 79 (|has| |#1| (-784)))) (-2059 (((-708) $) 274)) (-2524 (($ $ $) 78 (|has| |#1| (-784)))) (-1723 (($ (-1 |#2| |#2|) $) 171)) (-3810 (($ (-1 |#1| |#1|) $) 151)) (-3155 (((-3 |#3| "failed") $) 123)) (-2894 (($ $) 202 (|has| |#1| (-426)))) (-2408 (($ $) 203 (|has| |#1| (-426)))) (-2697 (((-588 $) $) 260)) (-3110 (($ $) 263)) (-1840 (($ $) 204 (|has| |#1| (-426)))) (-3814 (((-588 $) $) 261)) (-3409 (($ $) 262)) (-3216 (($ $) 149)) (-3224 ((|#1| $) 148) (($ $ |#3|) 267)) (-2267 (($ (-588 $)) 94 (|has| |#1| (-426))) (($ $ $) 93 (|has| |#1| (-426)))) (-3816 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -4062 (-708))) $ $) 234)) (-1456 (((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -3450 $) (|:| -4002 $)) $ $) 238) (((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -3450 $) (|:| -4002 $)) $ $ |#3|) 237)) (-2038 (((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -4002 $)) $ $) 240) (((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -4002 $)) $ $ |#3|) 239)) (-3968 (($ $ $) 244) (($ $ $ |#3|) 242)) (-3787 (($ $ $) 243) (($ $ $ |#3|) 241)) (-2311 (((-1068) $) 9)) (-1998 (($ $ $) 210 (|has| |#1| (-514)))) (-3946 (((-588 $) $) 269)) (-2760 (((-3 (-588 $) "failed") $) 114)) (-1919 (((-3 (-588 $) "failed") $) 115)) (-2024 (((-3 (-2 (|:| |var| |#3|) (|:| -3858 (-708))) "failed") $) 113)) (-3864 (((-108) $ $) 252) (((-108) $ (-588 $)) 251)) (-2556 (($ $ $) 232)) (-3937 (($ $) 273)) (-1517 (((-108) $ $) 258)) (-3060 (((-108) $ $) 254) (((-108) $ (-588 $)) 253)) (-3896 (($ $ $) 233)) (-3655 (($ $) 272)) (-4174 (((-1032) $) 10)) (-3214 (((-2 (|:| -2308 $) (|:| |coef2| $)) $ $) 213 (|has| |#1| (-514)))) (-2997 (((-2 (|:| -2308 $) (|:| |coef1| $)) $ $) 214 (|has| |#1| (-514)))) (-3199 (((-108) $) 166)) (-3207 ((|#1| $) 167)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 95 (|has| |#1| (-426)))) (-2308 ((|#1| |#1| $) 206 (|has| |#1| (-426))) (($ (-588 $)) 92 (|has| |#1| (-426))) (($ $ $) 91 (|has| |#1| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) 102 (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) 101 (|has| |#1| (-838)))) (-2006 (((-393 $) $) 99 (|has| |#1| (-838)))) (-2078 (((-2 (|:| -2308 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-514)))) (-2276 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-514)))) (-4139 (($ $ |#1|) 219 (|has| |#1| (-514))) (($ $ $) 217 (|has| |#1| (-514)))) (-2376 (($ $ |#1|) 220 (|has| |#1| (-514))) (($ $ $) 218 (|has| |#1| (-514)))) (-2330 (($ $ (-588 (-270 $))) 145) (($ $ (-270 $)) 144) (($ $ $ $) 143) (($ $ (-588 $) (-588 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-588 |#3|) (-588 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-588 |#3|) (-588 $)) 138)) (-1615 (($ $ |#3|) 107 (|has| |#1| (-157)))) (-2731 (($ $ |#3|) 42) (($ $ (-588 |#3|)) 41) (($ $ |#3| (-708)) 40) (($ $ (-588 |#3|) (-588 (-708))) 39)) (-2487 ((|#2| $) 150) (((-708) $ |#3|) 130) (((-588 (-708)) $ (-588 |#3|)) 129)) (-2581 (($ $) 270)) (-2209 (($ $) 268)) (-3873 (((-821 (-354)) $) 82 (-12 (|has| |#3| (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) 81 (-12 (|has| |#3| (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) 80 (-12 (|has| |#3| (-563 (-498))) (|has| |#1| (-563 (-498))))) (($ (-881 (-382 (-522)))) 229 (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085))))) (($ (-881 (-522))) 226 (-3844 (-12 (-2473 (|has| |#1| (-37 (-382 (-522))))) (|has| |#1| (-37 (-522))) (|has| |#3| (-563 (-1085)))) (-12 (|has| |#1| (-37 (-382 (-522)))) (|has| |#3| (-563 (-1085)))))) (($ (-881 |#1|)) 223 (|has| |#3| (-563 (-1085)))) (((-1068) $) 201 (-12 (|has| |#1| (-962 (-522))) (|has| |#3| (-563 (-1085))))) (((-881 |#1|) $) 200 (|has| |#3| (-563 (-1085))))) (-2988 ((|#1| $) 175 (|has| |#1| (-426))) (($ $ |#3|) 106 (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 104 (-4079 (|has| $ (-133)) (|has| |#1| (-838))))) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 163) (($ |#3|) 137) (((-881 |#1|) $) 199 (|has| |#3| (-563 (-1085)))) (($ (-382 (-522))) 72 (-3844 (|has| |#1| (-962 (-382 (-522)))) (|has| |#1| (-37 (-382 (-522)))))) (($ $) 85 (|has| |#1| (-514)))) (-2180 (((-588 |#1|) $) 168)) (-1643 ((|#1| $ |#2|) 155) (($ $ |#3| (-708)) 128) (($ $ (-588 |#3|) (-588 (-708))) 127)) (-3040 (((-3 $ "failed") $) 73 (-3844 (-4079 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) 29)) (-1225 (($ $ $ (-708)) 173 (|has| |#1| (-157)))) (-1407 (((-108) $ $) 89 (|has| |#1| (-514)))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-1679 (((-3 (-108) "failed") $ $) 259)) (-3709 (($) 30 T CONST)) (-2580 (($ $ $ $ (-708)) 208 (|has| |#1| (-514)))) (-2575 (($ $ $ (-708)) 209 (|has| |#1| (-514)))) (-2252 (($ $ |#3|) 38) (($ $ (-588 |#3|)) 37) (($ $ |#3| (-708)) 36) (($ $ (-588 |#3|) (-588 (-708))) 35)) (-1623 (((-108) $ $) 76 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 75 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 77 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 74 (|has| |#1| (-784)))) (-1682 (($ $ |#1|) 156 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 158 (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) 157 (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
(((-985 |#1| |#2| |#3|) (-1197) (-971) (-730) (-784)) (T -985))
-((-1521 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-3903 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-708)))) (-3802 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-4002 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3835 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-2044 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-1817 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-985 *3 *4 *5)))) (-1635 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3138 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-3156 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-3012 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-1630 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-3447 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3786 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3405 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-985 *3 *4 *5)))) (-1269 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-985 *3 *4 *5)))) (-2618 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-2123 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-2134 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-1934 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-1934 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)))) (-2230 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-2230 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)))) (-3409 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-3409 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)))) (-3341 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)))) (-1704 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-4069 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-1704 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-4069 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-1819 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-1599 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-1819 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-1599 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-3592 (*1 *2 *1 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| -2977 *1) (|:| |gap| (-708)) (|:| -3421 *1))) (-4 *1 (-985 *3 *4 *5)))) (-3592 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-5 *2 (-2 (|:| -2977 *1) (|:| |gap| (-708)) (|:| -3421 *1))) (-4 *1 (-985 *4 *5 *3)))) (-1938 (*1 *2 *1 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| -2977 *1) (|:| |gap| (-708)) (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-985 *3 *4 *5)))) (-1938 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-5 *2 (-2 (|:| -2977 *1) (|:| |gap| (-708)) (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-985 *4 *5 *3)))) (-1541 (*1 *2 *1 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-985 *3 *4 *5)))) (-2924 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-4019 (*1 *2 *1 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -4042 (-708)))) (-4 *1 (-985 *3 *4 *5)))) (-2680 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-1451 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-1297 (*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-382 (-522)))) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))) (-1484 (*1 *1 *2) (-12 (-5 *2 (-881 (-382 (-522)))) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))) (-1431 (*1 *1 *2) (-12 (-5 *2 (-881 (-382 (-522)))) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))) (-1297 (*1 *1 *2) (|partial| -3708 (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5)) (-12 (-2401 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5)) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))))) (-1484 (*1 *1 *2) (-3708 (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5)) (-12 (-2401 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5)) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))))) (-1431 (*1 *1 *2) (-3708 (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5)) (-12 (-2401 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5)) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))))) (-1297 (*1 *1 *2) (|partial| -3708 (-12 (-5 *2 (-881 *3)) (-12 (-2401 (-4 *3 (-37 (-382 (-522))))) (-2401 (-4 *3 (-37 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 *3)) (-12 (-2401 (-4 *3 (-507))) (-2401 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 *3)) (-12 (-2401 (-4 *3 (-919 (-522)))) (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784))))) (-1484 (*1 *1 *2) (-3708 (-12 (-5 *2 (-881 *3)) (-12 (-2401 (-4 *3 (-37 (-382 (-522))))) (-2401 (-4 *3 (-37 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 *3)) (-12 (-2401 (-4 *3 (-507))) (-2401 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 *3)) (-12 (-2401 (-4 *3 (-919 (-522)))) (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784))))) (-1431 (*1 *1 *2) (-12 (-5 *2 (-881 *3)) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *5 (-563 (-1085))) (-4 *4 (-730)) (-4 *5 (-784)))) (-2705 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-3429 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-3195 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-3620 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-3195 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-3620 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-3984 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-3905 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| -2259 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-985 *3 *4 *5)))) (-3738 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| -2259 *1) (|:| |coef1| *1))) (-4 *1 (-985 *3 *4 *5)))) (-3461 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| -2259 *1) (|:| |coef2| *1))) (-4 *1 (-985 *3 *4 *5)))) (-1950 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-2467 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-985 *3 *4 *5)))) (-1331 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-3818 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *3 (-514)))) (-2298 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *3 (-514)))) (-1460 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-2259 (*1 *2 *2 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))) (-1258 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))) (-1313 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))) (-1842 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))) (-3547 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))))
-(-13 (-878 |t#1| |t#2| |t#3|) (-10 -8 (-15 -1521 (|t#3| $)) (-15 -3903 ((-708) $)) (-15 -3802 ($ $)) (-15 -4002 ($ $)) (-15 -3835 ($ $)) (-15 -2044 ($ $)) (-15 -1817 ((-588 $) $)) (-15 -1635 ($ $)) (-15 -3138 ($ $ |t#3|)) (-15 -3156 ($ $ |t#3|)) (-15 -3012 ((-108) $)) (-15 -1630 ((-108) $)) (-15 -3447 ($ $)) (-15 -3786 ($ $)) (-15 -3405 ((-588 $) $)) (-15 -1269 ((-588 $) $)) (-15 -2618 ((-3 (-108) "failed") $ $)) (-15 -2123 ((-108) $ $)) (-15 -2134 ((-108) $ $)) (-15 -1934 ((-108) $ $)) (-15 -1934 ((-108) $ (-588 $))) (-15 -2230 ((-108) $ $)) (-15 -2230 ((-108) $ (-588 $))) (-15 -3409 ((-108) $ $)) (-15 -3409 ((-108) $ (-588 $))) (-15 -3341 ((-108) $ $)) (-15 -3341 ((-108) $ (-588 $))) (-15 -1704 ($ $ $)) (-15 -4069 ($ $ $)) (-15 -1704 ($ $ $ |t#3|)) (-15 -4069 ($ $ $ |t#3|)) (-15 -1819 ($ $ $)) (-15 -1599 ($ $ $)) (-15 -1819 ($ $ $ |t#3|)) (-15 -1599 ($ $ $ |t#3|)) (-15 -3592 ((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -3421 $)) $ $)) (-15 -3592 ((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -3421 $)) $ $ |t#3|)) (-15 -1938 ((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -1353 $) (|:| -3421 $)) $ $)) (-15 -1938 ((-2 (|:| -2977 $) (|:| |gap| (-708)) (|:| -1353 $) (|:| -3421 $)) $ $ |t#3|)) (-15 -1541 ((-2 (|:| -1353 $) (|:| -3421 $)) $ $)) (-15 -2924 ($ $ $)) (-15 -4019 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -4042 (-708))) $ $)) (-15 -2680 ($ $ $)) (-15 -1451 ($ $ $)) (IF (|has| |t#3| (-563 (-1085))) (PROGN (-6 (-562 (-881 |t#1|))) (-6 (-563 (-881 |t#1|))) (IF (|has| |t#1| (-37 (-382 (-522)))) (PROGN (-15 -1297 ((-3 $ "failed") (-881 (-382 (-522))))) (-15 -1484 ($ (-881 (-382 (-522))))) (-15 -1431 ($ (-881 (-382 (-522))))) (-15 -1297 ((-3 $ "failed") (-881 (-522)))) (-15 -1484 ($ (-881 (-522)))) (-15 -1431 ($ (-881 (-522)))) (IF (|has| |t#1| (-919 (-522))) |%noBranch| (PROGN (-15 -1297 ((-3 $ "failed") (-881 |t#1|))) (-15 -1484 ($ (-881 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-37 (-522))) (IF (|has| |t#1| (-37 (-382 (-522)))) |%noBranch| (PROGN (-15 -1297 ((-3 $ "failed") (-881 (-522)))) (-15 -1484 ($ (-881 (-522)))) (-15 -1431 ($ (-881 (-522)))) (IF (|has| |t#1| (-507)) |%noBranch| (PROGN (-15 -1297 ((-3 $ "failed") (-881 |t#1|))) (-15 -1484 ($ (-881 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-37 (-522))) |%noBranch| (IF (|has| |t#1| (-37 (-382 (-522)))) |%noBranch| (PROGN (-15 -1297 ((-3 $ "failed") (-881 |t#1|))) (-15 -1484 ($ (-881 |t#1|)))))) (-15 -1431 ($ (-881 |t#1|))) (IF (|has| |t#1| (-962 (-522))) (-6 (-563 (-1068))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-514)) (PROGN (-15 -2705 ($ $)) (-15 -3429 ($ $)) (-15 -3195 ($ $ |t#1|)) (-15 -3620 ($ $ |t#1|)) (-15 -3195 ($ $ $)) (-15 -3620 ($ $ $)) (-15 -3984 ($ $ $)) (-15 -3905 ((-2 (|:| -2259 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3738 ((-2 (|:| -2259 $) (|:| |coef1| $)) $ $)) (-15 -3461 ((-2 (|:| -2259 $) (|:| |coef2| $)) $ $)) (-15 -1950 ($ $ $)) (-15 -2467 ((-588 $) $ $)) (-15 -1331 ($ $ $)) (-15 -3818 ($ $ $ (-708))) (-15 -2298 ($ $ $ $ (-708))) (-15 -1460 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-426)) (PROGN (-15 -2259 (|t#1| |t#1| $)) (-15 -1258 ($ $)) (-15 -1313 ($ $)) (-15 -1842 ($ $)) (-15 -3547 ($ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-562 (-881 |#1|)) |has| |#3| (-563 (-1085))) ((-157) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-563 (-498)) -12 (|has| |#1| (-563 (-498))) (|has| |#3| (-563 (-498)))) ((-563 (-821 (-354))) -12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#3| (-563 (-821 (-354))))) ((-563 (-821 (-522))) -12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#3| (-563 (-821 (-522))))) ((-563 (-881 |#1|)) |has| |#3| (-563 (-1085))) ((-563 (-1068)) -12 (|has| |#1| (-962 (-522))) (|has| |#3| (-563 (-1085)))) ((-266) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-285 $) . T) ((-301 |#1| |#2|) . T) ((-352 |#1|) . T) ((-386 |#1|) . T) ((-426) -3708 (|has| |#1| (-838)) (|has| |#1| (-426))) ((-483 |#3| |#1|) . T) ((-483 |#3| $) . T) ((-483 $ $) . T) ((-514) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-664) . T) ((-784) |has| |#1| (-784)) ((-829 |#3|) . T) ((-815 (-354)) -12 (|has| |#1| (-815 (-354))) (|has| |#3| (-815 (-354)))) ((-815 (-522)) -12 (|has| |#1| (-815 (-522))) (|has| |#3| (-815 (-522)))) ((-878 |#1| |#2| |#3|) . T) ((-838) |has| |#1| (-838)) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-962 |#3|) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) |has| |#1| (-838)))
-((-2250 (((-108) |#3| $) 13)) (-3944 (((-3 $ "failed") |#3| (-850)) 23)) (-2682 (((-3 |#3| "failed") |#3| $) 37)) (-3687 (((-108) |#3| $) 16)) (-2556 (((-108) |#3| $) 14)))
-(((-986 |#1| |#2| |#3|) (-10 -8 (-15 -3944 ((-3 |#1| "failed") |#3| (-850))) (-15 -2682 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3687 ((-108) |#3| |#1|)) (-15 -2556 ((-108) |#3| |#1|)) (-15 -2250 ((-108) |#3| |#1|))) (-987 |#2| |#3|) (-13 (-782) (-338)) (-1142 |#2|)) (T -986))
-NIL
-(-10 -8 (-15 -3944 ((-3 |#1| "failed") |#3| (-850))) (-15 -2682 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3687 ((-108) |#3| |#1|)) (-15 -2556 ((-108) |#3| |#1|)) (-15 -2250 ((-108) |#3| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) |#2| $) 21)) (-1341 (((-522) |#2| $) 22)) (-3944 (((-3 $ "failed") |#2| (-850)) 15)) (-3971 ((|#1| |#2| $ |#1|) 13)) (-2682 (((-3 |#2| "failed") |#2| $) 18)) (-3687 (((-108) |#2| $) 19)) (-2556 (((-108) |#2| $) 20)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-1479 ((|#2| $) 17)) (-2190 (((-792) $) 11)) (-3898 ((|#1| |#2| $ |#1|) 14)) (-2479 (((-588 $) |#2|) 16)) (-1531 (((-108) $ $) 6)))
+((-1933 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-2059 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-708)))) (-3937 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3655 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3961 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-2581 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3946 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-985 *3 *4 *5)))) (-2209 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3224 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-3241 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-1257 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-2184 (*1 *2 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-3110 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3409 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3814 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-985 *3 *4 *5)))) (-2697 (*1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-985 *3 *4 *5)))) (-1679 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-1517 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-2942 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-1426 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-1426 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)))) (-3060 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-3060 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)))) (-3864 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-3864 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)))) (-1384 (*1 *2 *1 *1) (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108)))) (-1384 (*1 *2 *1 *3) (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)))) (-4107 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3168 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-4107 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-3168 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-3968 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3787 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3968 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-3787 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *2 (-784)))) (-2038 (*1 *2 *1 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| -3112 *1) (|:| |gap| (-708)) (|:| -4002 *1))) (-4 *1 (-985 *3 *4 *5)))) (-2038 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-5 *2 (-2 (|:| -3112 *1) (|:| |gap| (-708)) (|:| -4002 *1))) (-4 *1 (-985 *4 *5 *3)))) (-1456 (*1 *2 *1 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| -3112 *1) (|:| |gap| (-708)) (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-985 *3 *4 *5)))) (-1456 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784)) (-5 *2 (-2 (|:| -3112 *1) (|:| |gap| (-708)) (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-985 *4 *5 *3)))) (-3370 (*1 *2 *1 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-985 *3 *4 *5)))) (-3556 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3816 (*1 *2 *1 *1) (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -4062 (-708)))) (-4 *1 (-985 *3 *4 *5)))) (-3896 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-2556 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)))) (-3700 (*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-382 (-522)))) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-881 (-382 (-522)))) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))) (-3873 (*1 *1 *2) (-12 (-5 *2 (-881 (-382 (-522)))) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))) (-3700 (*1 *1 *2) (|partial| -3844 (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5)) (-12 (-2473 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5)) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))))) (-1478 (*1 *1 *2) (-3844 (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5)) (-12 (-2473 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5)) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))))) (-3873 (*1 *1 *2) (-3844 (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5)) (-12 (-2473 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5)) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))))) (-3700 (*1 *1 *2) (|partial| -3844 (-12 (-5 *2 (-881 *3)) (-12 (-2473 (-4 *3 (-37 (-382 (-522))))) (-2473 (-4 *3 (-37 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 *3)) (-12 (-2473 (-4 *3 (-507))) (-2473 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 *3)) (-12 (-2473 (-4 *3 (-919 (-522)))) (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784))))) (-1478 (*1 *1 *2) (-3844 (-12 (-5 *2 (-881 *3)) (-12 (-2473 (-4 *3 (-37 (-382 (-522))))) (-2473 (-4 *3 (-37 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 *3)) (-12 (-2473 (-4 *3 (-507))) (-2473 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784))) (-12 (-5 *2 (-881 *3)) (-12 (-2473 (-4 *3 (-919 (-522)))) (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085)))) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730)) (-4 *5 (-784))))) (-3873 (*1 *1 *2) (-12 (-5 *2 (-881 *3)) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *5 (-563 (-1085))) (-4 *4 (-730)) (-4 *5 (-784)))) (-1510 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-2948 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-2376 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-4139 (*1 *1 *1 *2) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-2376 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-4139 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-3485 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-2078 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| -2308 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-985 *3 *4 *5)))) (-2997 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| -2308 *1) (|:| |coef1| *1))) (-4 *1 (-985 *3 *4 *5)))) (-3214 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-2 (|:| -2308 *1) (|:| |coef2| *1))) (-4 *1 (-985 *3 *4 *5)))) (-2908 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-2817 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-985 *3 *4 *5)))) (-1998 (*1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-2575 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *3 (-514)))) (-2580 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *3 (-514)))) (-2662 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-514)))) (-2308 (*1 *2 *2 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))) (-2563 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))) (-1840 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))) (-2408 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))) (-2894 (*1 *1 *1) (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-426)))))
+(-13 (-878 |t#1| |t#2| |t#3|) (-10 -8 (-15 -1933 (|t#3| $)) (-15 -2059 ((-708) $)) (-15 -3937 ($ $)) (-15 -3655 ($ $)) (-15 -3961 ($ $)) (-15 -2581 ($ $)) (-15 -3946 ((-588 $) $)) (-15 -2209 ($ $)) (-15 -3224 ($ $ |t#3|)) (-15 -3241 ($ $ |t#3|)) (-15 -1257 ((-108) $)) (-15 -2184 ((-108) $)) (-15 -3110 ($ $)) (-15 -3409 ($ $)) (-15 -3814 ((-588 $) $)) (-15 -2697 ((-588 $) $)) (-15 -1679 ((-3 (-108) "failed") $ $)) (-15 -1517 ((-108) $ $)) (-15 -2942 ((-108) $ $)) (-15 -1426 ((-108) $ $)) (-15 -1426 ((-108) $ (-588 $))) (-15 -3060 ((-108) $ $)) (-15 -3060 ((-108) $ (-588 $))) (-15 -3864 ((-108) $ $)) (-15 -3864 ((-108) $ (-588 $))) (-15 -1384 ((-108) $ $)) (-15 -1384 ((-108) $ (-588 $))) (-15 -4107 ($ $ $)) (-15 -3168 ($ $ $)) (-15 -4107 ($ $ $ |t#3|)) (-15 -3168 ($ $ $ |t#3|)) (-15 -3968 ($ $ $)) (-15 -3787 ($ $ $)) (-15 -3968 ($ $ $ |t#3|)) (-15 -3787 ($ $ $ |t#3|)) (-15 -2038 ((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -4002 $)) $ $)) (-15 -2038 ((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -4002 $)) $ $ |t#3|)) (-15 -1456 ((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -3450 $) (|:| -4002 $)) $ $)) (-15 -1456 ((-2 (|:| -3112 $) (|:| |gap| (-708)) (|:| -3450 $) (|:| -4002 $)) $ $ |t#3|)) (-15 -3370 ((-2 (|:| -3450 $) (|:| -4002 $)) $ $)) (-15 -3556 ($ $ $)) (-15 -3816 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -4062 (-708))) $ $)) (-15 -3896 ($ $ $)) (-15 -2556 ($ $ $)) (IF (|has| |t#3| (-563 (-1085))) (PROGN (-6 (-562 (-881 |t#1|))) (-6 (-563 (-881 |t#1|))) (IF (|has| |t#1| (-37 (-382 (-522)))) (PROGN (-15 -3700 ((-3 $ "failed") (-881 (-382 (-522))))) (-15 -1478 ($ (-881 (-382 (-522))))) (-15 -3873 ($ (-881 (-382 (-522))))) (-15 -3700 ((-3 $ "failed") (-881 (-522)))) (-15 -1478 ($ (-881 (-522)))) (-15 -3873 ($ (-881 (-522)))) (IF (|has| |t#1| (-919 (-522))) |%noBranch| (PROGN (-15 -3700 ((-3 $ "failed") (-881 |t#1|))) (-15 -1478 ($ (-881 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-37 (-522))) (IF (|has| |t#1| (-37 (-382 (-522)))) |%noBranch| (PROGN (-15 -3700 ((-3 $ "failed") (-881 (-522)))) (-15 -1478 ($ (-881 (-522)))) (-15 -3873 ($ (-881 (-522)))) (IF (|has| |t#1| (-507)) |%noBranch| (PROGN (-15 -3700 ((-3 $ "failed") (-881 |t#1|))) (-15 -1478 ($ (-881 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-37 (-522))) |%noBranch| (IF (|has| |t#1| (-37 (-382 (-522)))) |%noBranch| (PROGN (-15 -3700 ((-3 $ "failed") (-881 |t#1|))) (-15 -1478 ($ (-881 |t#1|)))))) (-15 -3873 ($ (-881 |t#1|))) (IF (|has| |t#1| (-962 (-522))) (-6 (-563 (-1068))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-514)) (PROGN (-15 -1510 ($ $)) (-15 -2948 ($ $)) (-15 -2376 ($ $ |t#1|)) (-15 -4139 ($ $ |t#1|)) (-15 -2376 ($ $ $)) (-15 -4139 ($ $ $)) (-15 -3485 ($ $ $)) (-15 -2078 ((-2 (|:| -2308 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2997 ((-2 (|:| -2308 $) (|:| |coef1| $)) $ $)) (-15 -3214 ((-2 (|:| -2308 $) (|:| |coef2| $)) $ $)) (-15 -2908 ($ $ $)) (-15 -2817 ((-588 $) $ $)) (-15 -1998 ($ $ $)) (-15 -2575 ($ $ $ (-708))) (-15 -2580 ($ $ $ $ (-708))) (-15 -2662 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-426)) (PROGN (-15 -2308 (|t#1| |t#1| $)) (-15 -2563 ($ $)) (-15 -1840 ($ $)) (-15 -2408 ($ $)) (-15 -2894 ($ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-562 (-881 |#1|)) |has| |#3| (-563 (-1085))) ((-157) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-563 (-498)) -12 (|has| |#1| (-563 (-498))) (|has| |#3| (-563 (-498)))) ((-563 (-821 (-354))) -12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#3| (-563 (-821 (-354))))) ((-563 (-821 (-522))) -12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#3| (-563 (-821 (-522))))) ((-563 (-881 |#1|)) |has| |#3| (-563 (-1085))) ((-563 (-1068)) -12 (|has| |#1| (-962 (-522))) (|has| |#3| (-563 (-1085)))) ((-266) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-285 $) . T) ((-301 |#1| |#2|) . T) ((-352 |#1|) . T) ((-386 |#1|) . T) ((-426) -3844 (|has| |#1| (-838)) (|has| |#1| (-426))) ((-483 |#3| |#1|) . T) ((-483 |#3| $) . T) ((-483 $ $) . T) ((-514) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426))) ((-664) . T) ((-784) |has| |#1| (-784)) ((-829 |#3|) . T) ((-815 (-354)) -12 (|has| |#1| (-815 (-354))) (|has| |#3| (-815 (-354)))) ((-815 (-522)) -12 (|has| |#1| (-815 (-522))) (|has| |#3| (-815 (-522)))) ((-878 |#1| |#2| |#3|) . T) ((-838) |has| |#1| (-838)) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 |#1|) . T) ((-962 |#3|) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) |has| |#1| (-838)))
+((-2944 (((-108) |#3| $) 13)) (-1275 (((-3 $ "failed") |#3| (-850)) 23)) (-3920 (((-3 |#3| "failed") |#3| $) 37)) (-3603 (((-108) |#3| $) 16)) (-3740 (((-108) |#3| $) 14)))
+(((-986 |#1| |#2| |#3|) (-10 -8 (-15 -1275 ((-3 |#1| "failed") |#3| (-850))) (-15 -3920 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3603 ((-108) |#3| |#1|)) (-15 -3740 ((-108) |#3| |#1|)) (-15 -2944 ((-108) |#3| |#1|))) (-987 |#2| |#3|) (-13 (-782) (-338)) (-1142 |#2|)) (T -986))
+NIL
+(-10 -8 (-15 -1275 ((-3 |#1| "failed") |#3| (-850))) (-15 -3920 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3603 ((-108) |#3| |#1|)) (-15 -3740 ((-108) |#3| |#1|)) (-15 -2944 ((-108) |#3| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) |#2| $) 21)) (-3355 (((-522) |#2| $) 22)) (-1275 (((-3 $ "failed") |#2| (-850)) 15)) (-1549 ((|#1| |#2| $ |#1|) 13)) (-3920 (((-3 |#2| "failed") |#2| $) 18)) (-3603 (((-108) |#2| $) 19)) (-3740 (((-108) |#2| $) 20)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1579 ((|#2| $) 17)) (-2217 (((-792) $) 11)) (-3996 ((|#1| |#2| $ |#1|) 14)) (-3068 (((-588 $) |#2|) 16)) (-1562 (((-108) $ $) 6)))
(((-987 |#1| |#2|) (-1197) (-13 (-782) (-338)) (-1142 |t#1|)) (T -987))
-((-1341 (*1 *2 *3 *1) (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338))) (-4 *3 (-1142 *4)) (-5 *2 (-522)))) (-2250 (*1 *2 *3 *1) (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338))) (-4 *3 (-1142 *4)) (-5 *2 (-108)))) (-2556 (*1 *2 *3 *1) (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338))) (-4 *3 (-1142 *4)) (-5 *2 (-108)))) (-3687 (*1 *2 *3 *1) (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338))) (-4 *3 (-1142 *4)) (-5 *2 (-108)))) (-2682 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-987 *3 *2)) (-4 *3 (-13 (-782) (-338))) (-4 *2 (-1142 *3)))) (-1479 (*1 *2 *1) (-12 (-4 *1 (-987 *3 *2)) (-4 *3 (-13 (-782) (-338))) (-4 *2 (-1142 *3)))) (-2479 (*1 *2 *3) (-12 (-4 *4 (-13 (-782) (-338))) (-4 *3 (-1142 *4)) (-5 *2 (-588 *1)) (-4 *1 (-987 *4 *3)))) (-3944 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-850)) (-4 *4 (-13 (-782) (-338))) (-4 *1 (-987 *4 *2)) (-4 *2 (-1142 *4)))) (-3898 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-987 *2 *3)) (-4 *2 (-13 (-782) (-338))) (-4 *3 (-1142 *2)))) (-3971 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-987 *2 *3)) (-4 *2 (-13 (-782) (-338))) (-4 *3 (-1142 *2)))))
-(-13 (-1014) (-10 -8 (-15 -1341 ((-522) |t#2| $)) (-15 -2250 ((-108) |t#2| $)) (-15 -2556 ((-108) |t#2| $)) (-15 -3687 ((-108) |t#2| $)) (-15 -2682 ((-3 |t#2| "failed") |t#2| $)) (-15 -1479 (|t#2| $)) (-15 -2479 ((-588 $) |t#2|)) (-15 -3944 ((-3 $ "failed") |t#2| (-850))) (-15 -3898 (|t#1| |t#2| $ |t#1|)) (-15 -3971 (|t#1| |t#2| $ |t#1|))))
+((-3355 (*1 *2 *3 *1) (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338))) (-4 *3 (-1142 *4)) (-5 *2 (-522)))) (-2944 (*1 *2 *3 *1) (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338))) (-4 *3 (-1142 *4)) (-5 *2 (-108)))) (-3740 (*1 *2 *3 *1) (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338))) (-4 *3 (-1142 *4)) (-5 *2 (-108)))) (-3603 (*1 *2 *3 *1) (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338))) (-4 *3 (-1142 *4)) (-5 *2 (-108)))) (-3920 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-987 *3 *2)) (-4 *3 (-13 (-782) (-338))) (-4 *2 (-1142 *3)))) (-1579 (*1 *2 *1) (-12 (-4 *1 (-987 *3 *2)) (-4 *3 (-13 (-782) (-338))) (-4 *2 (-1142 *3)))) (-3068 (*1 *2 *3) (-12 (-4 *4 (-13 (-782) (-338))) (-4 *3 (-1142 *4)) (-5 *2 (-588 *1)) (-4 *1 (-987 *4 *3)))) (-1275 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-850)) (-4 *4 (-13 (-782) (-338))) (-4 *1 (-987 *4 *2)) (-4 *2 (-1142 *4)))) (-3996 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-987 *2 *3)) (-4 *2 (-13 (-782) (-338))) (-4 *3 (-1142 *2)))) (-1549 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-987 *2 *3)) (-4 *2 (-13 (-782) (-338))) (-4 *3 (-1142 *2)))))
+(-13 (-1014) (-10 -8 (-15 -3355 ((-522) |t#2| $)) (-15 -2944 ((-108) |t#2| $)) (-15 -3740 ((-108) |t#2| $)) (-15 -3603 ((-108) |t#2| $)) (-15 -3920 ((-3 |t#2| "failed") |t#2| $)) (-15 -1579 (|t#2| $)) (-15 -3068 ((-588 $) |t#2|)) (-15 -1275 ((-3 $ "failed") |t#2| (-850))) (-15 -3996 (|t#1| |t#2| $ |t#1|)) (-15 -1549 (|t#1| |t#2| $ |t#1|))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1732 (((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-588 |#4|) (-588 |#5|) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) (-708)) 96)) (-3499 (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|) 56) (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708)) 55)) (-1906 (((-1171) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-708)) 87)) (-1349 (((-708) (-588 |#4|) (-588 |#5|)) 27)) (-2268 (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|) 58) (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708)) 57) (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708) (-108)) 59)) (-3496 (((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108) (-108) (-108) (-108)) 78) (((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108)) 79)) (-1431 (((-1068) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) 82)) (-2971 (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-108)) 54)) (-1232 (((-708) (-588 |#4|) (-588 |#5|)) 19)))
-(((-988 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1232 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -1349 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -2971 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-108))) (-15 -3499 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708))) (-15 -3499 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|)) (-15 -2268 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708) (-108))) (-15 -2268 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708))) (-15 -2268 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|)) (-15 -3496 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -3496 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -1732 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-588 |#4|) (-588 |#5|) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) (-708))) (-15 -1431 ((-1068) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)))) (-15 -1906 ((-1171) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-708)))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|)) (T -988))
-((-1906 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1886 *9)))) (-5 *4 (-708)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-1171)) (-5 *1 (-988 *5 *6 *7 *8 *9)))) (-1431 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1886 *8))) (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-990 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1068)) (-5 *1 (-988 *4 *5 *6 *7 *8)))) (-1732 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-588 *11)) (|:| |todo| (-588 (-2 (|:| |val| *3) (|:| -1886 *11)))))) (-5 *6 (-708)) (-5 *2 (-588 (-2 (|:| |val| (-588 *10)) (|:| -1886 *11)))) (-5 *3 (-588 *10)) (-5 *4 (-588 *11)) (-4 *10 (-985 *7 *8 *9)) (-4 *11 (-990 *7 *8 *9 *10)) (-4 *7 (-426)) (-4 *8 (-730)) (-4 *9 (-784)) (-5 *1 (-988 *7 *8 *9 *10 *11)))) (-3496 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-988 *5 *6 *7 *8 *9)))) (-3496 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-988 *5 *6 *7 *8 *9)))) (-2268 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))))) (-5 *1 (-988 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2268 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))))) (-5 *1 (-988 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3)))) (-2268 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-708)) (-5 *6 (-108)) (-4 *7 (-426)) (-4 *8 (-730)) (-4 *9 (-784)) (-4 *3 (-985 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))))) (-5 *1 (-988 *7 *8 *9 *3 *4)) (-4 *4 (-990 *7 *8 *9 *3)))) (-3499 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))))) (-5 *1 (-988 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3499 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))))) (-5 *1 (-988 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3)))) (-2971 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))))) (-5 *1 (-988 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3)))) (-1349 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-988 *5 *6 *7 *8 *9)))) (-1232 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-988 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -1232 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -1349 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -2971 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-108))) (-15 -3499 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708))) (-15 -3499 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|)) (-15 -2268 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708) (-108))) (-15 -2268 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708))) (-15 -2268 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|)) (-15 -3496 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -3496 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -1732 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-588 |#4|) (-588 |#5|) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) (-708))) (-15 -1431 ((-1068) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)))) (-15 -1906 ((-1171) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-708))))
-((-2208 (((-108) |#5| $) 21)) (-3129 (((-108) |#5| $) 24)) (-2198 (((-108) |#5| $) 16) (((-108) $) 45)) (-2416 (((-588 $) |#5| $) NIL) (((-588 $) (-588 |#5|) $) 77) (((-588 $) (-588 |#5|) (-588 $)) 75) (((-588 $) |#5| (-588 $)) 78)) (-3719 (($ $ |#5|) NIL) (((-588 $) |#5| $) NIL) (((-588 $) |#5| (-588 $)) 60) (((-588 $) (-588 |#5|) $) 62) (((-588 $) (-588 |#5|) (-588 $)) 64)) (-2188 (((-588 $) |#5| $) NIL) (((-588 $) |#5| (-588 $)) 54) (((-588 $) (-588 |#5|) $) 56) (((-588 $) (-588 |#5|) (-588 $)) 58)) (-3021 (((-108) |#5| $) 27)))
-(((-989 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3719 ((-588 |#1|) (-588 |#5|) (-588 |#1|))) (-15 -3719 ((-588 |#1|) (-588 |#5|) |#1|)) (-15 -3719 ((-588 |#1|) |#5| (-588 |#1|))) (-15 -3719 ((-588 |#1|) |#5| |#1|)) (-15 -2188 ((-588 |#1|) (-588 |#5|) (-588 |#1|))) (-15 -2188 ((-588 |#1|) (-588 |#5|) |#1|)) (-15 -2188 ((-588 |#1|) |#5| (-588 |#1|))) (-15 -2188 ((-588 |#1|) |#5| |#1|)) (-15 -2416 ((-588 |#1|) |#5| (-588 |#1|))) (-15 -2416 ((-588 |#1|) (-588 |#5|) (-588 |#1|))) (-15 -2416 ((-588 |#1|) (-588 |#5|) |#1|)) (-15 -2416 ((-588 |#1|) |#5| |#1|)) (-15 -3129 ((-108) |#5| |#1|)) (-15 -2198 ((-108) |#1|)) (-15 -3021 ((-108) |#5| |#1|)) (-15 -2208 ((-108) |#5| |#1|)) (-15 -2198 ((-108) |#5| |#1|)) (-15 -3719 (|#1| |#1| |#5|))) (-990 |#2| |#3| |#4| |#5|) (-426) (-730) (-784) (-985 |#2| |#3| |#4|)) (T -989))
-NIL
-(-10 -8 (-15 -3719 ((-588 |#1|) (-588 |#5|) (-588 |#1|))) (-15 -3719 ((-588 |#1|) (-588 |#5|) |#1|)) (-15 -3719 ((-588 |#1|) |#5| (-588 |#1|))) (-15 -3719 ((-588 |#1|) |#5| |#1|)) (-15 -2188 ((-588 |#1|) (-588 |#5|) (-588 |#1|))) (-15 -2188 ((-588 |#1|) (-588 |#5|) |#1|)) (-15 -2188 ((-588 |#1|) |#5| (-588 |#1|))) (-15 -2188 ((-588 |#1|) |#5| |#1|)) (-15 -2416 ((-588 |#1|) |#5| (-588 |#1|))) (-15 -2416 ((-588 |#1|) (-588 |#5|) (-588 |#1|))) (-15 -2416 ((-588 |#1|) (-588 |#5|) |#1|)) (-15 -2416 ((-588 |#1|) |#5| |#1|)) (-15 -3129 ((-108) |#5| |#1|)) (-15 -2198 ((-108) |#1|)) (-15 -3021 ((-108) |#5| |#1|)) (-15 -2208 ((-108) |#5| |#1|)) (-15 -2198 ((-108) |#5| |#1|)) (-15 -3719 (|#1| |#1| |#5|)))
-((-1416 (((-108) $ $) 7)) (-2950 (((-588 (-2 (|:| -1650 $) (|:| -1544 (-588 |#4|)))) (-588 |#4|)) 85)) (-4125 (((-588 $) (-588 |#4|)) 86) (((-588 $) (-588 |#4|) (-108)) 111)) (-4090 (((-588 |#3|) $) 33)) (-2690 (((-108) $) 26)) (-4140 (((-108) $) 17 (|has| |#1| (-514)))) (-3575 (((-108) |#4| $) 101) (((-108) $) 97)) (-3607 ((|#4| |#4| $) 92)) (-3119 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 $))) |#4| $) 126)) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |#3|) 27)) (-4141 (((-108) $ (-708)) 44)) (-1628 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 79)) (-3175 (($) 45 T CONST)) (-3639 (((-108) $) 22 (|has| |#1| (-514)))) (-3982 (((-108) $ $) 24 (|has| |#1| (-514)))) (-3996 (((-108) $ $) 23 (|has| |#1| (-514)))) (-3538 (((-108) $) 25 (|has| |#1| (-514)))) (-2149 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3050 (((-588 |#4|) (-588 |#4|) $) 18 (|has| |#1| (-514)))) (-1787 (((-588 |#4|) (-588 |#4|) $) 19 (|has| |#1| (-514)))) (-1297 (((-3 $ "failed") (-588 |#4|)) 36)) (-1484 (($ (-588 |#4|)) 35)) (-2306 (((-3 $ "failed") $) 82)) (-2806 ((|#4| |#4| $) 89)) (-2333 (($ $) 68 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#4| $) 67 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4238)))) (-3421 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-514)))) (-1934 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-4164 ((|#4| |#4| $) 87)) (-3864 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-2091 (((-2 (|:| -1650 (-588 |#4|)) (|:| -1544 (-588 |#4|))) $) 105)) (-2208 (((-108) |#4| $) 136)) (-3129 (((-108) |#4| $) 133)) (-2198 (((-108) |#4| $) 137) (((-108) $) 134)) (-3837 (((-588 |#4|) $) 52 (|has| $ (-6 -4238)))) (-3341 (((-108) |#4| $) 104) (((-108) $) 103)) (-1521 ((|#3| $) 34)) (-3352 (((-108) $ (-708)) 43)) (-3308 (((-588 |#4|) $) 53 (|has| $ (-6 -4238)))) (-2246 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#4| |#4|) $) 47)) (-2458 (((-588 |#3|) $) 32)) (-1606 (((-108) |#3| $) 31)) (-2720 (((-108) $ (-708)) 42)) (-2385 (((-1068) $) 9)) (-3959 (((-3 |#4| (-588 $)) |#4| |#4| $) 128)) (-1331 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 $))) |#4| |#4| $) 127)) (-1442 (((-3 |#4| "failed") $) 83)) (-2893 (((-588 $) |#4| $) 129)) (-4190 (((-3 (-108) (-588 $)) |#4| $) 132)) (-3878 (((-588 (-2 (|:| |val| (-108)) (|:| -1886 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-2416 (((-588 $) |#4| $) 125) (((-588 $) (-588 |#4|) $) 124) (((-588 $) (-588 |#4|) (-588 $)) 123) (((-588 $) |#4| (-588 $)) 122)) (-2135 (($ |#4| $) 117) (($ (-588 |#4|) $) 116)) (-2242 (((-588 |#4|) $) 107)) (-3409 (((-108) |#4| $) 99) (((-108) $) 95)) (-1451 ((|#4| |#4| $) 90)) (-2123 (((-108) $ $) 110)) (-2039 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-514)))) (-2230 (((-108) |#4| $) 100) (((-108) $) 96)) (-2680 ((|#4| |#4| $) 91)) (-4151 (((-1032) $) 10)) (-2294 (((-3 |#4| "failed") $) 84)) (-1414 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-3307 (((-3 $ "failed") $ |#4|) 78)) (-3719 (($ $ |#4|) 77) (((-588 $) |#4| $) 115) (((-588 $) |#4| (-588 $)) 114) (((-588 $) (-588 |#4|) $) 113) (((-588 $) (-588 |#4|) (-588 $)) 112)) (-3053 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#4|) (-588 |#4|)) 59 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) 57 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) 56 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-1536 (((-108) $ $) 38)) (-3985 (((-108) $) 41)) (-3775 (($) 40)) (-2793 (((-708) $) 106)) (-4168 (((-708) |#4| $) 54 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4238)))) (-2404 (($ $) 39)) (-1431 (((-498) $) 69 (|has| |#4| (-563 (-498))))) (-2201 (($ (-588 |#4|)) 60)) (-2020 (($ $ |#3|) 28)) (-3606 (($ $ |#3|) 30)) (-3968 (($ $) 88)) (-2463 (($ $ |#3|) 29)) (-2190 (((-792) $) 11) (((-588 |#4|) $) 37)) (-1974 (((-708) $) 76 (|has| |#3| (-343)))) (-3989 (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-4212 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) 98)) (-2188 (((-588 $) |#4| $) 121) (((-588 $) |#4| (-588 $)) 120) (((-588 $) (-588 |#4|) $) 119) (((-588 $) (-588 |#4|) (-588 $)) 118)) (-3648 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4238)))) (-2360 (((-588 |#3|) $) 81)) (-3021 (((-108) |#4| $) 135)) (-2351 (((-108) |#3| $) 80)) (-1531 (((-108) $ $) 6)) (-3480 (((-708) $) 46 (|has| $ (-6 -4238)))))
+((-1358 (((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-588 |#4|) (-588 |#5|) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) (-708)) 96)) (-2357 (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|) 56) (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708)) 55)) (-3245 (((-1171) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-708)) 87)) (-3423 (((-708) (-588 |#4|) (-588 |#5|)) 27)) (-2132 (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|) 58) (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708)) 57) (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708) (-108)) 59)) (-2327 (((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108) (-108) (-108) (-108)) 78) (((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108)) 79)) (-3873 (((-1068) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) 82)) (-4013 (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-108)) 54)) (-2253 (((-708) (-588 |#4|) (-588 |#5|)) 19)))
+(((-988 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2253 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -3423 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -4013 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-108))) (-15 -2357 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708))) (-15 -2357 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|)) (-15 -2132 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708) (-108))) (-15 -2132 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708))) (-15 -2132 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|)) (-15 -2327 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -2327 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -1358 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-588 |#4|) (-588 |#5|) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) (-708))) (-15 -3873 ((-1068) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)))) (-15 -3245 ((-1171) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-708)))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|)) (T -988))
+((-3245 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1974 *9)))) (-5 *4 (-708)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-1171)) (-5 *1 (-988 *5 *6 *7 *8 *9)))) (-3873 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1974 *8))) (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-990 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1068)) (-5 *1 (-988 *4 *5 *6 *7 *8)))) (-1358 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-588 *11)) (|:| |todo| (-588 (-2 (|:| |val| *3) (|:| -1974 *11)))))) (-5 *6 (-708)) (-5 *2 (-588 (-2 (|:| |val| (-588 *10)) (|:| -1974 *11)))) (-5 *3 (-588 *10)) (-5 *4 (-588 *11)) (-4 *10 (-985 *7 *8 *9)) (-4 *11 (-990 *7 *8 *9 *10)) (-4 *7 (-426)) (-4 *8 (-730)) (-4 *9 (-784)) (-5 *1 (-988 *7 *8 *9 *10 *11)))) (-2327 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-988 *5 *6 *7 *8 *9)))) (-2327 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-988 *5 *6 *7 *8 *9)))) (-2132 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))))) (-5 *1 (-988 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2132 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))))) (-5 *1 (-988 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3)))) (-2132 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-708)) (-5 *6 (-108)) (-4 *7 (-426)) (-4 *8 (-730)) (-4 *9 (-784)) (-4 *3 (-985 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))))) (-5 *1 (-988 *7 *8 *9 *3 *4)) (-4 *4 (-990 *7 *8 *9 *3)))) (-2357 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))))) (-5 *1 (-988 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2357 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))))) (-5 *1 (-988 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3)))) (-4013 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))))) (-5 *1 (-988 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3)))) (-3423 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-988 *5 *6 *7 *8 *9)))) (-2253 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-988 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -2253 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -3423 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -4013 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-108))) (-15 -2357 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708))) (-15 -2357 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|)) (-15 -2132 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708) (-108))) (-15 -2132 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708))) (-15 -2132 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|)) (-15 -2327 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -2327 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -1358 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-588 |#4|) (-588 |#5|) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) (-708))) (-15 -3873 ((-1068) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)))) (-15 -3245 ((-1171) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-708))))
+((-2396 (((-108) |#5| $) 21)) (-3039 (((-108) |#5| $) 24)) (-2278 (((-108) |#5| $) 16) (((-108) $) 45)) (-2251 (((-588 $) |#5| $) NIL) (((-588 $) (-588 |#5|) $) 77) (((-588 $) (-588 |#5|) (-588 $)) 75) (((-588 $) |#5| (-588 $)) 78)) (-3934 (($ $ |#5|) NIL) (((-588 $) |#5| $) NIL) (((-588 $) |#5| (-588 $)) 60) (((-588 $) (-588 |#5|) $) 62) (((-588 $) (-588 |#5|) (-588 $)) 64)) (-3386 (((-588 $) |#5| $) NIL) (((-588 $) |#5| (-588 $)) 54) (((-588 $) (-588 |#5|) $) 56) (((-588 $) (-588 |#5|) (-588 $)) 58)) (-1336 (((-108) |#5| $) 27)))
+(((-989 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3934 ((-588 |#1|) (-588 |#5|) (-588 |#1|))) (-15 -3934 ((-588 |#1|) (-588 |#5|) |#1|)) (-15 -3934 ((-588 |#1|) |#5| (-588 |#1|))) (-15 -3934 ((-588 |#1|) |#5| |#1|)) (-15 -3386 ((-588 |#1|) (-588 |#5|) (-588 |#1|))) (-15 -3386 ((-588 |#1|) (-588 |#5|) |#1|)) (-15 -3386 ((-588 |#1|) |#5| (-588 |#1|))) (-15 -3386 ((-588 |#1|) |#5| |#1|)) (-15 -2251 ((-588 |#1|) |#5| (-588 |#1|))) (-15 -2251 ((-588 |#1|) (-588 |#5|) (-588 |#1|))) (-15 -2251 ((-588 |#1|) (-588 |#5|) |#1|)) (-15 -2251 ((-588 |#1|) |#5| |#1|)) (-15 -3039 ((-108) |#5| |#1|)) (-15 -2278 ((-108) |#1|)) (-15 -1336 ((-108) |#5| |#1|)) (-15 -2396 ((-108) |#5| |#1|)) (-15 -2278 ((-108) |#5| |#1|)) (-15 -3934 (|#1| |#1| |#5|))) (-990 |#2| |#3| |#4| |#5|) (-426) (-730) (-784) (-985 |#2| |#3| |#4|)) (T -989))
+NIL
+(-10 -8 (-15 -3934 ((-588 |#1|) (-588 |#5|) (-588 |#1|))) (-15 -3934 ((-588 |#1|) (-588 |#5|) |#1|)) (-15 -3934 ((-588 |#1|) |#5| (-588 |#1|))) (-15 -3934 ((-588 |#1|) |#5| |#1|)) (-15 -3386 ((-588 |#1|) (-588 |#5|) (-588 |#1|))) (-15 -3386 ((-588 |#1|) (-588 |#5|) |#1|)) (-15 -3386 ((-588 |#1|) |#5| (-588 |#1|))) (-15 -3386 ((-588 |#1|) |#5| |#1|)) (-15 -2251 ((-588 |#1|) |#5| (-588 |#1|))) (-15 -2251 ((-588 |#1|) (-588 |#5|) (-588 |#1|))) (-15 -2251 ((-588 |#1|) (-588 |#5|) |#1|)) (-15 -2251 ((-588 |#1|) |#5| |#1|)) (-15 -3039 ((-108) |#5| |#1|)) (-15 -2278 ((-108) |#1|)) (-15 -1336 ((-108) |#5| |#1|)) (-15 -2396 ((-108) |#5| |#1|)) (-15 -2278 ((-108) |#5| |#1|)) (-15 -3934 (|#1| |#1| |#5|)))
+((-1419 (((-108) $ $) 7)) (-3829 (((-588 (-2 (|:| -1720 $) (|:| -1566 (-588 |#4|)))) (-588 |#4|)) 85)) (-2510 (((-588 $) (-588 |#4|)) 86) (((-588 $) (-588 |#4|) (-108)) 111)) (-3533 (((-588 |#3|) $) 33)) (-2161 (((-108) $) 26)) (-2702 (((-108) $) 17 (|has| |#1| (-514)))) (-1900 (((-108) |#4| $) 101) (((-108) $) 97)) (-2163 ((|#4| |#4| $) 92)) (-2961 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 $))) |#4| $) 126)) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |#3|) 27)) (-2717 (((-108) $ (-708)) 44)) (-1696 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 79)) (-3367 (($) 45 T CONST)) (-1298 (((-108) $) 22 (|has| |#1| (-514)))) (-1657 (((-108) $ $) 24 (|has| |#1| (-514)))) (-3598 (((-108) $ $) 23 (|has| |#1| (-514)))) (-2818 (((-108) $) 25 (|has| |#1| (-514)))) (-3090 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3461 (((-588 |#4|) (-588 |#4|) $) 18 (|has| |#1| (-514)))) (-3668 (((-588 |#4|) (-588 |#4|) $) 19 (|has| |#1| (-514)))) (-3700 (((-3 $ "failed") (-588 |#4|)) 36)) (-1478 (($ (-588 |#4|)) 35)) (-2352 (((-3 $ "failed") $) 82)) (-2625 ((|#4| |#4| $) 89)) (-2379 (($ $) 68 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#4| $) 67 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4238)))) (-4002 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-514)))) (-1426 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-2918 ((|#4| |#4| $) 87)) (-2153 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-1199 (((-2 (|:| -1720 (-588 |#4|)) (|:| -1566 (-588 |#4|))) $) 105)) (-2396 (((-108) |#4| $) 136)) (-3039 (((-108) |#4| $) 133)) (-2278 (((-108) |#4| $) 137) (((-108) $) 134)) (-2395 (((-588 |#4|) $) 52 (|has| $ (-6 -4238)))) (-1384 (((-108) |#4| $) 104) (((-108) $) 103)) (-1933 ((|#3| $) 34)) (-1480 (((-108) $ (-708)) 43)) (-4084 (((-588 |#4|) $) 53 (|has| $ (-6 -4238)))) (-4176 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#4| |#4|) $) 47)) (-2714 (((-588 |#3|) $) 32)) (-3826 (((-108) |#3| $) 31)) (-3309 (((-108) $ (-708)) 42)) (-2311 (((-1068) $) 9)) (-1418 (((-3 |#4| (-588 $)) |#4| |#4| $) 128)) (-1998 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 $))) |#4| |#4| $) 127)) (-1442 (((-3 |#4| "failed") $) 83)) (-1468 (((-588 $) |#4| $) 129)) (-1892 (((-3 (-108) (-588 $)) |#4| $) 132)) (-1862 (((-588 (-2 (|:| |val| (-108)) (|:| -1974 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-2251 (((-588 $) |#4| $) 125) (((-588 $) (-588 |#4|) $) 124) (((-588 $) (-588 |#4|) (-588 $)) 123) (((-588 $) |#4| (-588 $)) 122)) (-2953 (($ |#4| $) 117) (($ (-588 |#4|) $) 116)) (-4138 (((-588 |#4|) $) 107)) (-3864 (((-108) |#4| $) 99) (((-108) $) 95)) (-2556 ((|#4| |#4| $) 90)) (-1517 (((-108) $ $) 110)) (-2507 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-514)))) (-3060 (((-108) |#4| $) 100) (((-108) $) 96)) (-3896 ((|#4| |#4| $) 91)) (-4174 (((-1032) $) 10)) (-2337 (((-3 |#4| "failed") $) 84)) (-2187 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-4078 (((-3 $ "failed") $ |#4|) 78)) (-3934 (($ $ |#4|) 77) (((-588 $) |#4| $) 115) (((-588 $) |#4| (-588 $)) 114) (((-588 $) (-588 |#4|) $) 113) (((-588 $) (-588 |#4|) (-588 $)) 112)) (-3487 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#4|) (-588 |#4|)) 59 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) 57 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) 56 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-2065 (((-108) $ $) 38)) (-3494 (((-108) $) 41)) (-3298 (($) 40)) (-2487 (((-708) $) 106)) (-4187 (((-708) |#4| $) 54 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4238)))) (-2463 (($ $) 39)) (-3873 (((-498) $) 69 (|has| |#4| (-563 (-498))))) (-2227 (($ (-588 |#4|)) 60)) (-2271 (($ $ |#3|) 28)) (-2154 (($ $ |#3|) 30)) (-1524 (($ $) 88)) (-2773 (($ $ |#3|) 29)) (-2217 (((-792) $) 11) (((-588 |#4|) $) 37)) (-3111 (((-708) $) 76 (|has| |#3| (-343)))) (-3538 (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-2102 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) 98)) (-3386 (((-588 $) |#4| $) 121) (((-588 $) |#4| (-588 $)) 120) (((-588 $) (-588 |#4|) $) 119) (((-588 $) (-588 |#4|) (-588 $)) 118)) (-1381 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4238)))) (-1982 (((-588 |#3|) $) 81)) (-1336 (((-108) |#4| $) 135)) (-1711 (((-108) |#3| $) 80)) (-1562 (((-108) $ $) 6)) (-3591 (((-708) $) 46 (|has| $ (-6 -4238)))))
(((-990 |#1| |#2| |#3| |#4|) (-1197) (-426) (-730) (-784) (-985 |t#1| |t#2| |t#3|)) (T -990))
-((-2198 (*1 *2 *3 *1) (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-2208 (*1 *2 *3 *1) (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-3021 (*1 *2 *3 *1) (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-2198 (*1 *2 *1) (-12 (-4 *1 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-3129 (*1 *2 *3 *1) (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-4190 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-3 (-108) (-588 *1))) (-4 *1 (-990 *4 *5 *6 *3)))) (-3878 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1886 *1)))) (-4 *1 (-990 *4 *5 *6 *3)))) (-3878 (*1 *2 *3 *1) (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-2893 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)))) (-3959 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-3 *3 (-588 *1))) (-4 *1 (-990 *4 *5 *6 *3)))) (-1331 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *1)))) (-4 *1 (-990 *4 *5 *6 *3)))) (-3119 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *1)))) (-4 *1 (-990 *4 *5 *6 *3)))) (-2416 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)))) (-2416 (*1 *2 *3 *1) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *7)))) (-2416 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *1)) (-5 *3 (-588 *7)) (-4 *1 (-990 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)))) (-2416 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)))) (-2188 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)))) (-2188 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)))) (-2188 (*1 *2 *3 *1) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *7)))) (-2188 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *1)) (-5 *3 (-588 *7)) (-4 *1 (-990 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)))) (-2135 (*1 *1 *2 *1) (-12 (-4 *1 (-990 *3 *4 *5 *2)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-2135 (*1 *1 *2 *1) (-12 (-5 *2 (-588 *6)) (-4 *1 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)))) (-3719 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)))) (-3719 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)))) (-3719 (*1 *2 *3 *1) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *7)))) (-3719 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *1)) (-5 *3 (-588 *7)) (-4 *1 (-990 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)))) (-4125 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-990 *5 *6 *7 *8)))))
-(-13 (-1114 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -2198 ((-108) |t#4| $)) (-15 -2208 ((-108) |t#4| $)) (-15 -3021 ((-108) |t#4| $)) (-15 -2198 ((-108) $)) (-15 -3129 ((-108) |t#4| $)) (-15 -4190 ((-3 (-108) (-588 $)) |t#4| $)) (-15 -3878 ((-588 (-2 (|:| |val| (-108)) (|:| -1886 $))) |t#4| $)) (-15 -3878 ((-108) |t#4| $)) (-15 -2893 ((-588 $) |t#4| $)) (-15 -3959 ((-3 |t#4| (-588 $)) |t#4| |t#4| $)) (-15 -1331 ((-588 (-2 (|:| |val| |t#4|) (|:| -1886 $))) |t#4| |t#4| $)) (-15 -3119 ((-588 (-2 (|:| |val| |t#4|) (|:| -1886 $))) |t#4| $)) (-15 -2416 ((-588 $) |t#4| $)) (-15 -2416 ((-588 $) (-588 |t#4|) $)) (-15 -2416 ((-588 $) (-588 |t#4|) (-588 $))) (-15 -2416 ((-588 $) |t#4| (-588 $))) (-15 -2188 ((-588 $) |t#4| $)) (-15 -2188 ((-588 $) |t#4| (-588 $))) (-15 -2188 ((-588 $) (-588 |t#4|) $)) (-15 -2188 ((-588 $) (-588 |t#4|) (-588 $))) (-15 -2135 ($ |t#4| $)) (-15 -2135 ($ (-588 |t#4|) $)) (-15 -3719 ((-588 $) |t#4| $)) (-15 -3719 ((-588 $) |t#4| (-588 $))) (-15 -3719 ((-588 $) (-588 |t#4|) $)) (-15 -3719 ((-588 $) (-588 |t#4|) (-588 $))) (-15 -4125 ((-588 $) (-588 |t#4|) (-108)))))
+((-2278 (*1 *2 *3 *1) (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-2396 (*1 *2 *3 *1) (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-1336 (*1 *2 *3 *1) (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-2278 (*1 *2 *1) (-12 (-4 *1 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-3039 (*1 *2 *3 *1) (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-1892 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-3 (-108) (-588 *1))) (-4 *1 (-990 *4 *5 *6 *3)))) (-1862 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1974 *1)))) (-4 *1 (-990 *4 *5 *6 *3)))) (-1862 (*1 *2 *3 *1) (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-1468 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)))) (-1418 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-3 *3 (-588 *1))) (-4 *1 (-990 *4 *5 *6 *3)))) (-1998 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *1)))) (-4 *1 (-990 *4 *5 *6 *3)))) (-2961 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *1)))) (-4 *1 (-990 *4 *5 *6 *3)))) (-2251 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)))) (-2251 (*1 *2 *3 *1) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *7)))) (-2251 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *1)) (-5 *3 (-588 *7)) (-4 *1 (-990 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)))) (-2251 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)))) (-3386 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)))) (-3386 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)))) (-3386 (*1 *2 *3 *1) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *7)))) (-3386 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *1)) (-5 *3 (-588 *7)) (-4 *1 (-990 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)))) (-2953 (*1 *1 *2 *1) (-12 (-4 *1 (-990 *3 *4 *5 *2)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-2953 (*1 *1 *2 *1) (-12 (-5 *2 (-588 *6)) (-4 *1 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)))) (-3934 (*1 *2 *3 *1) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)))) (-3934 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)))) (-3934 (*1 *2 *3 *1) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *7)))) (-3934 (*1 *2 *3 *2) (-12 (-5 *2 (-588 *1)) (-5 *3 (-588 *7)) (-4 *1 (-990 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)))) (-2510 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-990 *5 *6 *7 *8)))))
+(-13 (-1114 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -2278 ((-108) |t#4| $)) (-15 -2396 ((-108) |t#4| $)) (-15 -1336 ((-108) |t#4| $)) (-15 -2278 ((-108) $)) (-15 -3039 ((-108) |t#4| $)) (-15 -1892 ((-3 (-108) (-588 $)) |t#4| $)) (-15 -1862 ((-588 (-2 (|:| |val| (-108)) (|:| -1974 $))) |t#4| $)) (-15 -1862 ((-108) |t#4| $)) (-15 -1468 ((-588 $) |t#4| $)) (-15 -1418 ((-3 |t#4| (-588 $)) |t#4| |t#4| $)) (-15 -1998 ((-588 (-2 (|:| |val| |t#4|) (|:| -1974 $))) |t#4| |t#4| $)) (-15 -2961 ((-588 (-2 (|:| |val| |t#4|) (|:| -1974 $))) |t#4| $)) (-15 -2251 ((-588 $) |t#4| $)) (-15 -2251 ((-588 $) (-588 |t#4|) $)) (-15 -2251 ((-588 $) (-588 |t#4|) (-588 $))) (-15 -2251 ((-588 $) |t#4| (-588 $))) (-15 -3386 ((-588 $) |t#4| $)) (-15 -3386 ((-588 $) |t#4| (-588 $))) (-15 -3386 ((-588 $) (-588 |t#4|) $)) (-15 -3386 ((-588 $) (-588 |t#4|) (-588 $))) (-15 -2953 ($ |t#4| $)) (-15 -2953 ($ (-588 |t#4|) $)) (-15 -3934 ((-588 $) |t#4| $)) (-15 -3934 ((-588 $) |t#4| (-588 $))) (-15 -3934 ((-588 $) (-588 |t#4|) $)) (-15 -3934 ((-588 $) (-588 |t#4|) (-588 $))) (-15 -2510 ((-588 $) (-588 |t#4|) (-108)))))
(((-33) . T) ((-97) . T) ((-562 (-588 |#4|)) . T) ((-562 (-792)) . T) ((-139 |#4|) . T) ((-563 (-498)) |has| |#4| (-563 (-498))) ((-285 |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))) ((-461 |#4|) . T) ((-483 |#4| |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))) ((-903 |#1| |#2| |#3| |#4|) . T) ((-1014) . T) ((-1114 |#1| |#2| |#3| |#4|) . T) ((-1120) . T))
-((-1213 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#5|) 81)) (-1857 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5|) 113)) (-2215 (((-588 |#5|) |#4| |#5|) 70)) (-2783 (((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|) 44) (((-108) |#4| |#5|) 52)) (-1426 (((-1171)) 35)) (-1637 (((-1171)) 25)) (-1821 (((-1171) (-1068) (-1068) (-1068)) 31)) (-1312 (((-1171) (-1068) (-1068) (-1068)) 20)) (-2078 (((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) |#4| |#4| |#5|) 96)) (-4068 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) |#3| (-108)) 107) (((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5| (-108) (-108)) 49)) (-3964 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5|) 102)))
-(((-991 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1312 ((-1171) (-1068) (-1068) (-1068))) (-15 -1637 ((-1171))) (-15 -1821 ((-1171) (-1068) (-1068) (-1068))) (-15 -1426 ((-1171))) (-15 -2078 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) |#4| |#4| |#5|)) (-15 -4068 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -4068 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) |#3| (-108))) (-15 -3964 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5|)) (-15 -1857 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5|)) (-15 -2783 ((-108) |#4| |#5|)) (-15 -2783 ((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|)) (-15 -2215 ((-588 |#5|) |#4| |#5|)) (-15 -1213 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#5|))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|)) (T -991))
-((-1213 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4)))) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2215 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4)) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2783 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1886 *4)))) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2783 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-1857 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4)))) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3964 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4)))) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-4068 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1886 *9)))) (-5 *5 (-108)) (-4 *8 (-985 *6 *7 *4)) (-4 *9 (-990 *6 *7 *4 *8)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *4 (-784)) (-5 *2 (-588 (-2 (|:| |val| *8) (|:| -1886 *9)))) (-5 *1 (-991 *6 *7 *4 *8 *9)))) (-4068 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4)))) (-5 *1 (-991 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3)))) (-2078 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-1426 (*1 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171)) (-5 *1 (-991 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))) (-1821 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171)) (-5 *1 (-991 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-1637 (*1 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171)) (-5 *1 (-991 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))) (-1312 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171)) (-5 *1 (-991 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
-(-10 -7 (-15 -1312 ((-1171) (-1068) (-1068) (-1068))) (-15 -1637 ((-1171))) (-15 -1821 ((-1171) (-1068) (-1068) (-1068))) (-15 -1426 ((-1171))) (-15 -2078 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) |#4| |#4| |#5|)) (-15 -4068 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -4068 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) |#3| (-108))) (-15 -3964 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5|)) (-15 -1857 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5|)) (-15 -2783 ((-108) |#4| |#5|)) (-15 -2783 ((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|)) (-15 -2215 ((-588 |#5|) |#4| |#5|)) (-15 -1213 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#5|)))
-((-1416 (((-108) $ $) NIL)) (-2888 (((-1085) $) 8)) (-2385 (((-1068) $) 16)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 11)) (-1531 (((-108) $ $) 13)))
-(((-992 |#1|) (-13 (-1014) (-10 -8 (-15 -2888 ((-1085) $)))) (-1085)) (T -992))
-((-2888 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-992 *3)) (-14 *3 *2))))
-(-13 (-1014) (-10 -8 (-15 -2888 ((-1085) $))))
-((-1416 (((-108) $ $) NIL)) (-1870 (($ $ (-588 (-1085)) (-1 (-108) (-588 |#3|))) 29)) (-1362 (($ |#3| |#3|) 21) (($ |#3| |#3| (-588 (-1085))) 19)) (-3602 ((|#3| $) 13)) (-1297 (((-3 (-270 |#3|) "failed") $) 56)) (-1484 (((-270 |#3|) $) NIL)) (-2437 (((-588 (-1085)) $) 15)) (-1379 (((-821 |#1|) $) 11)) (-3593 ((|#3| $) 12)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2545 ((|#3| $ |#3|) 25) ((|#3| $ |#3| (-850)) 36)) (-2190 (((-792) $) 85) (($ (-270 |#3|)) 20)) (-1531 (((-108) $ $) 33)))
-(((-993 |#1| |#2| |#3|) (-13 (-1014) (-262 |#3| |#3|) (-962 (-270 |#3|)) (-10 -8 (-15 -1362 ($ |#3| |#3|)) (-15 -1362 ($ |#3| |#3| (-588 (-1085)))) (-15 -1870 ($ $ (-588 (-1085)) (-1 (-108) (-588 |#3|)))) (-15 -1379 ((-821 |#1|) $)) (-15 -3593 (|#3| $)) (-15 -3602 (|#3| $)) (-15 -2545 (|#3| $ |#3| (-850))) (-15 -2437 ((-588 (-1085)) $)))) (-1014) (-13 (-971) (-815 |#1|) (-784) (-563 (-821 |#1|))) (-13 (-405 |#2|) (-815 |#1|) (-563 (-821 |#1|)))) (T -993))
-((-1362 (*1 *1 *2 *2) (-12 (-4 *3 (-1014)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3)))) (-5 *1 (-993 *3 *4 *2)) (-4 *2 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))))) (-1362 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-588 (-1085))) (-4 *4 (-1014)) (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4)))) (-5 *1 (-993 *4 *5 *2)) (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))))) (-1870 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-1 (-108) (-588 *6))) (-4 *6 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))) (-4 *4 (-1014)) (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4)))) (-5 *1 (-993 *4 *5 *6)))) (-1379 (*1 *2 *1) (-12 (-4 *3 (-1014)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 *2))) (-5 *2 (-821 *3)) (-5 *1 (-993 *3 *4 *5)) (-4 *5 (-13 (-405 *4) (-815 *3) (-563 *2))))) (-3593 (*1 *2 *1) (-12 (-4 *3 (-1014)) (-4 *2 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))) (-5 *1 (-993 *3 *4 *2)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3)))))) (-3602 (*1 *2 *1) (-12 (-4 *3 (-1014)) (-4 *2 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))) (-5 *1 (-993 *3 *4 *2)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3)))))) (-2545 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-850)) (-4 *4 (-1014)) (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4)))) (-5 *1 (-993 *4 *5 *2)) (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))))) (-2437 (*1 *2 *1) (-12 (-4 *3 (-1014)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3)))) (-5 *2 (-588 (-1085))) (-5 *1 (-993 *3 *4 *5)) (-4 *5 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))))))
-(-13 (-1014) (-262 |#3| |#3|) (-962 (-270 |#3|)) (-10 -8 (-15 -1362 ($ |#3| |#3|)) (-15 -1362 ($ |#3| |#3| (-588 (-1085)))) (-15 -1870 ($ $ (-588 (-1085)) (-1 (-108) (-588 |#3|)))) (-15 -1379 ((-821 |#1|) $)) (-15 -3593 (|#3| $)) (-15 -3602 (|#3| $)) (-15 -2545 (|#3| $ |#3| (-850))) (-15 -2437 ((-588 (-1085)) $))))
-((-1416 (((-108) $ $) NIL)) (-1837 (($ (-588 (-993 |#1| |#2| |#3|))) 12)) (-3299 (((-588 (-993 |#1| |#2| |#3|)) $) 19)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2545 ((|#3| $ |#3|) 22) ((|#3| $ |#3| (-850)) 25)) (-2190 (((-792) $) 15)) (-1531 (((-108) $ $) 18)))
-(((-994 |#1| |#2| |#3|) (-13 (-1014) (-262 |#3| |#3|) (-10 -8 (-15 -1837 ($ (-588 (-993 |#1| |#2| |#3|)))) (-15 -3299 ((-588 (-993 |#1| |#2| |#3|)) $)) (-15 -2545 (|#3| $ |#3| (-850))))) (-1014) (-13 (-971) (-815 |#1|) (-784) (-563 (-821 |#1|))) (-13 (-405 |#2|) (-815 |#1|) (-563 (-821 |#1|)))) (T -994))
-((-1837 (*1 *1 *2) (-12 (-5 *2 (-588 (-993 *3 *4 *5))) (-4 *3 (-1014)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3)))) (-4 *5 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))) (-5 *1 (-994 *3 *4 *5)))) (-3299 (*1 *2 *1) (-12 (-4 *3 (-1014)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3)))) (-5 *2 (-588 (-993 *3 *4 *5))) (-5 *1 (-994 *3 *4 *5)) (-4 *5 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))))) (-2545 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-850)) (-4 *4 (-1014)) (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4)))) (-5 *1 (-994 *4 *5 *2)) (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))))))
-(-13 (-1014) (-262 |#3| |#3|) (-10 -8 (-15 -1837 ($ (-588 (-993 |#1| |#2| |#3|)))) (-15 -3299 ((-588 (-993 |#1| |#2| |#3|)) $)) (-15 -2545 (|#3| $ |#3| (-850)))))
-((-1761 (((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108)) 74) (((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|))) 76) (((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108)) 75)))
-(((-995 |#1| |#2|) (-10 -7 (-15 -1761 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108))) (-15 -1761 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)))) (-15 -1761 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108)))) (-13 (-283) (-135)) (-588 (-1085))) (T -995))
-((-1761 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-5 *2 (-588 (-2 (|:| -2559 (-1081 *5)) (|:| -3677 (-588 (-881 *5)))))) (-5 *1 (-995 *5 *6)) (-5 *3 (-588 (-881 *5))) (-14 *6 (-588 (-1085))))) (-1761 (*1 *2 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-5 *2 (-588 (-2 (|:| -2559 (-1081 *4)) (|:| -3677 (-588 (-881 *4)))))) (-5 *1 (-995 *4 *5)) (-5 *3 (-588 (-881 *4))) (-14 *5 (-588 (-1085))))) (-1761 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-5 *2 (-588 (-2 (|:| -2559 (-1081 *5)) (|:| -3677 (-588 (-881 *5)))))) (-5 *1 (-995 *5 *6)) (-5 *3 (-588 (-881 *5))) (-14 *6 (-588 (-1085))))))
-(-10 -7 (-15 -1761 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108))) (-15 -1761 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)))) (-15 -1761 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108))))
-((-1916 (((-393 |#3|) |#3|) 16)))
-(((-996 |#1| |#2| |#3|) (-10 -7 (-15 -1916 ((-393 |#3|) |#3|))) (-1142 (-382 (-522))) (-13 (-338) (-135) (-662 (-382 (-522)) |#1|)) (-1142 |#2|)) (T -996))
-((-1916 (*1 *2 *3) (-12 (-4 *4 (-1142 (-382 (-522)))) (-4 *5 (-13 (-338) (-135) (-662 (-382 (-522)) *4))) (-5 *2 (-393 *3)) (-5 *1 (-996 *4 *5 *3)) (-4 *3 (-1142 *5)))))
-(-10 -7 (-15 -1916 ((-393 |#3|) |#3|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 125)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-338)))) (-2022 (($ $) NIL (|has| |#1| (-338)))) (-3739 (((-108) $) NIL (|has| |#1| (-338)))) (-3174 (((-628 |#1|) (-1166 $)) NIL) (((-628 |#1|)) 115)) (-1865 ((|#1| $) 119)) (-1398 (((-1094 (-850) (-708)) (-522)) NIL (|has| |#1| (-324)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL (|has| |#1| (-338)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-1629 (((-708)) 40 (|has| |#1| (-343)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3766 (($ (-1166 |#1|) (-1166 $)) NIL) (($ (-1166 |#1|)) 43)) (-2128 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-324)))) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-2109 (((-628 |#1|) $ (-1166 $)) NIL) (((-628 |#1|) $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 106) (((-628 |#1|) (-628 $)) 100)) (-3864 (($ |#2|) 61) (((-3 $ "failed") (-382 |#2|)) NIL (|has| |#1| (-338)))) (-2682 (((-3 $ "failed") $) NIL)) (-3166 (((-850)) 77)) (-3255 (($) 44 (|has| |#1| (-343)))) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-1223 (($) NIL (|has| |#1| (-324)))) (-2511 (((-108) $) NIL (|has| |#1| (-324)))) (-2111 (($ $ (-708)) NIL (|has| |#1| (-324))) (($ $) NIL (|has| |#1| (-324)))) (-2813 (((-108) $) NIL (|has| |#1| (-338)))) (-3714 (((-850) $) NIL (|has| |#1| (-324))) (((-770 (-850)) $) NIL (|has| |#1| (-324)))) (-2782 (((-108) $) NIL)) (-2100 ((|#1| $) NIL)) (-3004 (((-3 $ "failed") $) NIL (|has| |#1| (-324)))) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-1712 ((|#2| $) 84 (|has| |#1| (-338)))) (-2120 (((-850) $) 130 (|has| |#1| (-343)))) (-3849 ((|#2| $) 58)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL (|has| |#1| (-338)))) (-3802 (($) NIL (|has| |#1| (-324)) CONST)) (-2717 (($ (-850)) 124 (|has| |#1| (-343)))) (-4151 (((-1032) $) NIL)) (-1383 (($) 121)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-4179 (((-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))) NIL (|has| |#1| (-324)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3730 (((-708) $) NIL (|has| |#1| (-338)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-2769 ((|#1| (-1166 $)) NIL) ((|#1|) 109)) (-3018 (((-708) $) NIL (|has| |#1| (-324))) (((-3 (-708) "failed") $ $) NIL (|has| |#1| (-324)))) (-2157 (($ $) NIL (-3708 (-12 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-708)) NIL (-3708 (-12 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-1 |#1| |#1|) (-708)) NIL (|has| |#1| (-338))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-338)))) (-1859 (((-628 |#1|) (-1166 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-338)))) (-1479 ((|#2|) 73)) (-2581 (($) NIL (|has| |#1| (-324)))) (-3677 (((-1166 |#1|) $ (-1166 $)) 89) (((-628 |#1|) (-1166 $) (-1166 $)) NIL) (((-1166 |#1|) $) 71) (((-628 |#1|) (-1166 $)) 85)) (-1431 (((-1166 |#1|) $) NIL) (($ (-1166 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-324)))) (-2190 (((-792) $) 57) (($ (-522)) 53) (($ |#1|) 54) (($ $) NIL (|has| |#1| (-338))) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-338)) (|has| |#1| (-962 (-382 (-522))))))) (-2143 (($ $) NIL (|has| |#1| (-324))) (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2051 ((|#2| $) 82)) (-2323 (((-708)) 75)) (-3855 (((-1166 $)) 81)) (-3958 (((-108) $ $) NIL (|has| |#1| (-338)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3566 (($) 30 T CONST)) (-3577 (($) 19 T CONST)) (-2213 (($ $) NIL (-3708 (-12 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-708)) NIL (-3708 (-12 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-1 |#1| |#1|) (-708)) NIL (|has| |#1| (-338))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-338)))) (-1531 (((-108) $ $) 63)) (-1620 (($ $ $) NIL (|has| |#1| (-338)))) (-1612 (($ $) 67) (($ $ $) NIL)) (-1602 (($ $ $) 65)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 51) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 48) (($ (-382 (-522)) $) NIL (|has| |#1| (-338))) (($ $ (-382 (-522))) NIL (|has| |#1| (-338)))))
+((-2061 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#5|) 81)) (-2599 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5|) 113)) (-1505 (((-588 |#5|) |#4| |#5|) 70)) (-3421 (((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|) 44) (((-108) |#4| |#5|) 52)) (-2274 (((-1171)) 35)) (-2231 (((-1171)) 25)) (-2168 (((-1171) (-1068) (-1068) (-1068)) 31)) (-1832 (((-1171) (-1068) (-1068) (-1068)) 20)) (-4090 (((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) |#4| |#4| |#5|) 96)) (-3160 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) |#3| (-108)) 107) (((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5| (-108) (-108)) 49)) (-1469 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5|) 102)))
+(((-991 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1832 ((-1171) (-1068) (-1068) (-1068))) (-15 -2231 ((-1171))) (-15 -2168 ((-1171) (-1068) (-1068) (-1068))) (-15 -2274 ((-1171))) (-15 -4090 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) |#4| |#4| |#5|)) (-15 -3160 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -3160 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) |#3| (-108))) (-15 -1469 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5|)) (-15 -2599 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5|)) (-15 -3421 ((-108) |#4| |#5|)) (-15 -3421 ((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|)) (-15 -1505 ((-588 |#5|) |#4| |#5|)) (-15 -2061 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#5|))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|)) (T -991))
+((-2061 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4)))) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-1505 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4)) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3421 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1974 *4)))) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3421 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2599 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4)))) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-1469 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4)))) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3160 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1974 *9)))) (-5 *5 (-108)) (-4 *8 (-985 *6 *7 *4)) (-4 *9 (-990 *6 *7 *4 *8)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *4 (-784)) (-5 *2 (-588 (-2 (|:| |val| *8) (|:| -1974 *9)))) (-5 *1 (-991 *6 *7 *4 *8 *9)))) (-3160 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4)))) (-5 *1 (-991 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3)))) (-4090 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))) (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2274 (*1 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171)) (-5 *1 (-991 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))) (-2168 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171)) (-5 *1 (-991 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-2231 (*1 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171)) (-5 *1 (-991 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))) (-1832 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171)) (-5 *1 (-991 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1832 ((-1171) (-1068) (-1068) (-1068))) (-15 -2231 ((-1171))) (-15 -2168 ((-1171) (-1068) (-1068) (-1068))) (-15 -2274 ((-1171))) (-15 -4090 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) |#4| |#4| |#5|)) (-15 -3160 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -3160 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) |#3| (-108))) (-15 -1469 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5|)) (-15 -2599 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5|)) (-15 -3421 ((-108) |#4| |#5|)) (-15 -3421 ((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|)) (-15 -1505 ((-588 |#5|) |#4| |#5|)) (-15 -2061 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#5|)))
+((-1419 (((-108) $ $) NIL)) (-3015 (((-1085) $) 8)) (-2311 (((-1068) $) 16)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 11)) (-1562 (((-108) $ $) 13)))
+(((-992 |#1|) (-13 (-1014) (-10 -8 (-15 -3015 ((-1085) $)))) (-1085)) (T -992))
+((-3015 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-992 *3)) (-14 *3 *2))))
+(-13 (-1014) (-10 -8 (-15 -3015 ((-1085) $))))
+((-1419 (((-108) $ $) NIL)) (-1958 (($ $ (-588 (-1085)) (-1 (-108) (-588 |#3|))) 29)) (-1343 (($ |#3| |#3|) 21) (($ |#3| |#3| (-588 (-1085))) 19)) (-3728 ((|#3| $) 13)) (-3700 (((-3 (-270 |#3|) "failed") $) 56)) (-1478 (((-270 |#3|) $) NIL)) (-3403 (((-588 (-1085)) $) 15)) (-1352 (((-821 |#1|) $) 11)) (-3717 ((|#3| $) 12)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2683 ((|#3| $ |#3|) 25) ((|#3| $ |#3| (-850)) 36)) (-2217 (((-792) $) 85) (($ (-270 |#3|)) 20)) (-1562 (((-108) $ $) 33)))
+(((-993 |#1| |#2| |#3|) (-13 (-1014) (-262 |#3| |#3|) (-962 (-270 |#3|)) (-10 -8 (-15 -1343 ($ |#3| |#3|)) (-15 -1343 ($ |#3| |#3| (-588 (-1085)))) (-15 -1958 ($ $ (-588 (-1085)) (-1 (-108) (-588 |#3|)))) (-15 -1352 ((-821 |#1|) $)) (-15 -3717 (|#3| $)) (-15 -3728 (|#3| $)) (-15 -2683 (|#3| $ |#3| (-850))) (-15 -3403 ((-588 (-1085)) $)))) (-1014) (-13 (-971) (-815 |#1|) (-784) (-563 (-821 |#1|))) (-13 (-405 |#2|) (-815 |#1|) (-563 (-821 |#1|)))) (T -993))
+((-1343 (*1 *1 *2 *2) (-12 (-4 *3 (-1014)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3)))) (-5 *1 (-993 *3 *4 *2)) (-4 *2 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))))) (-1343 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-588 (-1085))) (-4 *4 (-1014)) (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4)))) (-5 *1 (-993 *4 *5 *2)) (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))))) (-1958 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-1 (-108) (-588 *6))) (-4 *6 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))) (-4 *4 (-1014)) (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4)))) (-5 *1 (-993 *4 *5 *6)))) (-1352 (*1 *2 *1) (-12 (-4 *3 (-1014)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 *2))) (-5 *2 (-821 *3)) (-5 *1 (-993 *3 *4 *5)) (-4 *5 (-13 (-405 *4) (-815 *3) (-563 *2))))) (-3717 (*1 *2 *1) (-12 (-4 *3 (-1014)) (-4 *2 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))) (-5 *1 (-993 *3 *4 *2)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3)))))) (-3728 (*1 *2 *1) (-12 (-4 *3 (-1014)) (-4 *2 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))) (-5 *1 (-993 *3 *4 *2)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3)))))) (-2683 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-850)) (-4 *4 (-1014)) (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4)))) (-5 *1 (-993 *4 *5 *2)) (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))))) (-3403 (*1 *2 *1) (-12 (-4 *3 (-1014)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3)))) (-5 *2 (-588 (-1085))) (-5 *1 (-993 *3 *4 *5)) (-4 *5 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))))))
+(-13 (-1014) (-262 |#3| |#3|) (-962 (-270 |#3|)) (-10 -8 (-15 -1343 ($ |#3| |#3|)) (-15 -1343 ($ |#3| |#3| (-588 (-1085)))) (-15 -1958 ($ $ (-588 (-1085)) (-1 (-108) (-588 |#3|)))) (-15 -1352 ((-821 |#1|) $)) (-15 -3717 (|#3| $)) (-15 -3728 (|#3| $)) (-15 -2683 (|#3| $ |#3| (-850))) (-15 -3403 ((-588 (-1085)) $))))
+((-1419 (((-108) $ $) NIL)) (-1926 (($ (-588 (-993 |#1| |#2| |#3|))) 12)) (-3398 (((-588 (-993 |#1| |#2| |#3|)) $) 19)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2683 ((|#3| $ |#3|) 22) ((|#3| $ |#3| (-850)) 25)) (-2217 (((-792) $) 15)) (-1562 (((-108) $ $) 18)))
+(((-994 |#1| |#2| |#3|) (-13 (-1014) (-262 |#3| |#3|) (-10 -8 (-15 -1926 ($ (-588 (-993 |#1| |#2| |#3|)))) (-15 -3398 ((-588 (-993 |#1| |#2| |#3|)) $)) (-15 -2683 (|#3| $ |#3| (-850))))) (-1014) (-13 (-971) (-815 |#1|) (-784) (-563 (-821 |#1|))) (-13 (-405 |#2|) (-815 |#1|) (-563 (-821 |#1|)))) (T -994))
+((-1926 (*1 *1 *2) (-12 (-5 *2 (-588 (-993 *3 *4 *5))) (-4 *3 (-1014)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3)))) (-4 *5 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))) (-5 *1 (-994 *3 *4 *5)))) (-3398 (*1 *2 *1) (-12 (-4 *3 (-1014)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3)))) (-5 *2 (-588 (-993 *3 *4 *5))) (-5 *1 (-994 *3 *4 *5)) (-4 *5 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))))) (-2683 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-850)) (-4 *4 (-1014)) (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4)))) (-5 *1 (-994 *4 *5 *2)) (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))))))
+(-13 (-1014) (-262 |#3| |#3|) (-10 -8 (-15 -1926 ($ (-588 (-993 |#1| |#2| |#3|)))) (-15 -3398 ((-588 (-993 |#1| |#2| |#3|)) $)) (-15 -2683 (|#3| $ |#3| (-850)))))
+((-3452 (((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108)) 74) (((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|))) 76) (((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108)) 75)))
+(((-995 |#1| |#2|) (-10 -7 (-15 -3452 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108))) (-15 -3452 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)))) (-15 -3452 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108)))) (-13 (-283) (-135)) (-588 (-1085))) (T -995))
+((-3452 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-5 *2 (-588 (-2 (|:| -3769 (-1081 *5)) (|:| -3510 (-588 (-881 *5)))))) (-5 *1 (-995 *5 *6)) (-5 *3 (-588 (-881 *5))) (-14 *6 (-588 (-1085))))) (-3452 (*1 *2 *3) (-12 (-4 *4 (-13 (-283) (-135))) (-5 *2 (-588 (-2 (|:| -3769 (-1081 *4)) (|:| -3510 (-588 (-881 *4)))))) (-5 *1 (-995 *4 *5)) (-5 *3 (-588 (-881 *4))) (-14 *5 (-588 (-1085))))) (-3452 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-5 *2 (-588 (-2 (|:| -3769 (-1081 *5)) (|:| -3510 (-588 (-881 *5)))))) (-5 *1 (-995 *5 *6)) (-5 *3 (-588 (-881 *5))) (-14 *6 (-588 (-1085))))))
+(-10 -7 (-15 -3452 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108))) (-15 -3452 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)))) (-15 -3452 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108))))
+((-2006 (((-393 |#3|) |#3|) 16)))
+(((-996 |#1| |#2| |#3|) (-10 -7 (-15 -2006 ((-393 |#3|) |#3|))) (-1142 (-382 (-522))) (-13 (-338) (-135) (-662 (-382 (-522)) |#1|)) (-1142 |#2|)) (T -996))
+((-2006 (*1 *2 *3) (-12 (-4 *4 (-1142 (-382 (-522)))) (-4 *5 (-13 (-338) (-135) (-662 (-382 (-522)) *4))) (-5 *2 (-393 *3)) (-5 *1 (-996 *4 *5 *3)) (-4 *3 (-1142 *5)))))
+(-10 -7 (-15 -2006 ((-393 |#3|) |#3|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 125)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-338)))) (-2298 (($ $) NIL (|has| |#1| (-338)))) (-3007 (((-108) $) NIL (|has| |#1| (-338)))) (-3356 (((-628 |#1|) (-1166 $)) NIL) (((-628 |#1|)) 115)) (-1945 ((|#1| $) 119)) (-3833 (((-1094 (-850) (-708)) (-522)) NIL (|has| |#1| (-324)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL (|has| |#1| (-338)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-338)))) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-1685 (((-708)) 40 (|has| |#1| (-343)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3225 (($ (-1166 |#1|) (-1166 $)) NIL) (($ (-1166 |#1|)) 43)) (-1576 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-324)))) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-1359 (((-628 |#1|) $ (-1166 $)) NIL) (((-628 |#1|) $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 106) (((-628 |#1|) (-628 $)) 100)) (-2153 (($ |#2|) 61) (((-3 $ "failed") (-382 |#2|)) NIL (|has| |#1| (-338)))) (-3920 (((-3 $ "failed") $) NIL)) (-1692 (((-850)) 77)) (-3344 (($) 44 (|has| |#1| (-343)))) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2160 (($) NIL (|has| |#1| (-324)))) (-2087 (((-108) $) NIL (|has| |#1| (-324)))) (-1380 (($ $ (-708)) NIL (|has| |#1| (-324))) (($ $) NIL (|has| |#1| (-324)))) (-2725 (((-108) $) NIL (|has| |#1| (-338)))) (-3872 (((-850) $) NIL (|has| |#1| (-324))) (((-770 (-850)) $) NIL (|has| |#1| (-324)))) (-2859 (((-108) $) NIL)) (-1269 ((|#1| $) NIL)) (-4208 (((-3 $ "failed") $) NIL (|has| |#1| (-324)))) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-4199 ((|#2| $) 84 (|has| |#1| (-338)))) (-1475 (((-850) $) 130 (|has| |#1| (-343)))) (-2142 ((|#2| $) 58)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL (|has| |#1| (-338)))) (-3937 (($) NIL (|has| |#1| (-324)) CONST)) (-2882 (($ (-850)) 124 (|has| |#1| (-343)))) (-4174 (((-1032) $) NIL)) (-1368 (($) 121)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1799 (((-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))) NIL (|has| |#1| (-324)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-4031 (((-708) $) NIL (|has| |#1| (-338)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-1615 ((|#1| (-1166 $)) NIL) ((|#1|) 109)) (-1304 (((-708) $) NIL (|has| |#1| (-324))) (((-3 (-708) "failed") $ $) NIL (|has| |#1| (-324)))) (-2731 (($ $) NIL (-3844 (-12 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-708)) NIL (-3844 (-12 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-1 |#1| |#1|) (-708)) NIL (|has| |#1| (-338))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-338)))) (-2620 (((-628 |#1|) (-1166 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-338)))) (-1579 ((|#2|) 73)) (-2670 (($) NIL (|has| |#1| (-324)))) (-3510 (((-1166 |#1|) $ (-1166 $)) 89) (((-628 |#1|) (-1166 $) (-1166 $)) NIL) (((-1166 |#1|) $) 71) (((-628 |#1|) (-1166 $)) 85)) (-3873 (((-1166 |#1|) $) NIL) (($ (-1166 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (|has| |#1| (-324)))) (-2217 (((-792) $) 57) (($ (-522)) 53) (($ |#1|) 54) (($ $) NIL (|has| |#1| (-338))) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-338)) (|has| |#1| (-962 (-382 (-522))))))) (-3040 (($ $) NIL (|has| |#1| (-324))) (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2645 ((|#2| $) 82)) (-2742 (((-708)) 75)) (-2905 (((-1166 $)) 81)) (-1407 (((-108) $ $) NIL (|has| |#1| (-338)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3697 (($) 30 T CONST)) (-3709 (($) 19 T CONST)) (-2252 (($ $) NIL (-3844 (-12 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-708)) NIL (-3844 (-12 (|has| |#1| (-210)) (|has| |#1| (-338))) (|has| |#1| (-324)))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-338)) (|has| |#1| (-829 (-1085))))) (($ $ (-1 |#1| |#1|) (-708)) NIL (|has| |#1| (-338))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-338)))) (-1562 (((-108) $ $) 63)) (-1682 (($ $ $) NIL (|has| |#1| (-338)))) (-1672 (($ $) 67) (($ $ $) NIL)) (-1661 (($ $ $) 65)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 51) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 48) (($ (-382 (-522)) $) NIL (|has| |#1| (-338))) (($ $ (-382 (-522))) NIL (|has| |#1| (-338)))))
(((-997 |#1| |#2| |#3|) (-662 |#1| |#2|) (-157) (-1142 |#1|) |#2|) (T -997))
NIL
(-662 |#1| |#2|)
-((-1916 (((-393 |#3|) |#3|) 16)))
-(((-998 |#1| |#2| |#3|) (-10 -7 (-15 -1916 ((-393 |#3|) |#3|))) (-1142 (-382 (-881 (-522)))) (-13 (-338) (-135) (-662 (-382 (-881 (-522))) |#1|)) (-1142 |#2|)) (T -998))
-((-1916 (*1 *2 *3) (-12 (-4 *4 (-1142 (-382 (-881 (-522))))) (-4 *5 (-13 (-338) (-135) (-662 (-382 (-881 (-522))) *4))) (-5 *2 (-393 *3)) (-5 *1 (-998 *4 *5 *3)) (-4 *3 (-1142 *5)))))
-(-10 -7 (-15 -1916 ((-393 |#3|) |#3|)))
-((-1416 (((-108) $ $) NIL)) (-2814 (($ $ $) 14)) (-2446 (($ $ $) 15)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-3772 (($) 6)) (-1431 (((-1085) $) 18)) (-2190 (((-792) $) 12)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 13)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 8)))
-(((-999) (-13 (-784) (-10 -8 (-15 -3772 ($)) (-15 -1431 ((-1085) $))))) (T -999))
-((-3772 (*1 *1) (-5 *1 (-999))) (-1431 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-999)))))
-(-13 (-784) (-10 -8 (-15 -3772 ($)) (-15 -1431 ((-1085) $))))
-((-2144 ((|#1| |#1| (-1 (-522) |#1| |#1|)) 23) ((|#1| |#1| (-1 (-108) |#1|)) 20)) (-1548 (((-1171)) 15)) (-2874 (((-588 |#1|)) 9)))
-(((-1000 |#1|) (-10 -7 (-15 -1548 ((-1171))) (-15 -2874 ((-588 |#1|))) (-15 -2144 (|#1| |#1| (-1 (-108) |#1|))) (-15 -2144 (|#1| |#1| (-1 (-522) |#1| |#1|)))) (-125)) (T -1000))
-((-2144 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-522) *2 *2)) (-4 *2 (-125)) (-5 *1 (-1000 *2)))) (-2144 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *2)) (-4 *2 (-125)) (-5 *1 (-1000 *2)))) (-2874 (*1 *2) (-12 (-5 *2 (-588 *3)) (-5 *1 (-1000 *3)) (-4 *3 (-125)))) (-1548 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1000 *3)) (-4 *3 (-125)))))
-(-10 -7 (-15 -1548 ((-1171))) (-15 -2874 ((-588 |#1|))) (-15 -2144 (|#1| |#1| (-1 (-108) |#1|))) (-15 -2144 (|#1| |#1| (-1 (-522) |#1| |#1|))))
-((-3771 (($ (-104) $) 15)) (-1533 (((-3 (-104) "failed") (-1085) $) 13)) (-3775 (($) 6)) (-3275 (($) 16)) (-2383 (($) 17)) (-1735 (((-588 (-159)) $) 8)) (-2190 (((-792) $) 20)))
-(((-1001) (-13 (-562 (-792)) (-10 -8 (-15 -3775 ($)) (-15 -1735 ((-588 (-159)) $)) (-15 -1533 ((-3 (-104) "failed") (-1085) $)) (-15 -3771 ($ (-104) $)) (-15 -3275 ($)) (-15 -2383 ($))))) (T -1001))
-((-3775 (*1 *1) (-5 *1 (-1001))) (-1735 (*1 *2 *1) (-12 (-5 *2 (-588 (-159))) (-5 *1 (-1001)))) (-1533 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-104)) (-5 *1 (-1001)))) (-3771 (*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-1001)))) (-3275 (*1 *1) (-5 *1 (-1001))) (-2383 (*1 *1) (-5 *1 (-1001))))
-(-13 (-562 (-792)) (-10 -8 (-15 -3775 ($)) (-15 -1735 ((-588 (-159)) $)) (-15 -1533 ((-3 (-104) "failed") (-1085) $)) (-15 -3771 ($ (-104) $)) (-15 -3275 ($)) (-15 -2383 ($))))
-((-1588 (((-1166 (-628 |#1|)) (-588 (-628 |#1|))) 41) (((-1166 (-628 (-881 |#1|))) (-588 (-1085)) (-628 (-881 |#1|))) 61) (((-1166 (-628 (-382 (-881 |#1|)))) (-588 (-1085)) (-628 (-382 (-881 |#1|)))) 77)) (-3677 (((-1166 |#1|) (-628 |#1|) (-588 (-628 |#1|))) 35)))
-(((-1002 |#1|) (-10 -7 (-15 -1588 ((-1166 (-628 (-382 (-881 |#1|)))) (-588 (-1085)) (-628 (-382 (-881 |#1|))))) (-15 -1588 ((-1166 (-628 (-881 |#1|))) (-588 (-1085)) (-628 (-881 |#1|)))) (-15 -1588 ((-1166 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -3677 ((-1166 |#1|) (-628 |#1|) (-588 (-628 |#1|))))) (-338)) (T -1002))
-((-3677 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-628 *5))) (-5 *3 (-628 *5)) (-4 *5 (-338)) (-5 *2 (-1166 *5)) (-5 *1 (-1002 *5)))) (-1588 (*1 *2 *3) (-12 (-5 *3 (-588 (-628 *4))) (-4 *4 (-338)) (-5 *2 (-1166 (-628 *4))) (-5 *1 (-1002 *4)))) (-1588 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-1085))) (-4 *5 (-338)) (-5 *2 (-1166 (-628 (-881 *5)))) (-5 *1 (-1002 *5)) (-5 *4 (-628 (-881 *5))))) (-1588 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-1085))) (-4 *5 (-338)) (-5 *2 (-1166 (-628 (-382 (-881 *5))))) (-5 *1 (-1002 *5)) (-5 *4 (-628 (-382 (-881 *5)))))))
-(-10 -7 (-15 -1588 ((-1166 (-628 (-382 (-881 |#1|)))) (-588 (-1085)) (-628 (-382 (-881 |#1|))))) (-15 -1588 ((-1166 (-628 (-881 |#1|))) (-588 (-1085)) (-628 (-881 |#1|)))) (-15 -1588 ((-1166 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -3677 ((-1166 |#1|) (-628 |#1|) (-588 (-628 |#1|)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4040 (((-588 (-708)) $) NIL) (((-588 (-708)) $ (-1085)) NIL)) (-3152 (((-708) $) NIL) (((-708) $ (-1085)) NIL)) (-4090 (((-588 (-1004 (-1085))) $) NIL)) (-1282 (((-1081 $) $ (-1004 (-1085))) NIL) (((-1081 |#1|) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 (-1004 (-1085)))) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3119 (($ $) NIL (|has| |#1| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1292 (($ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-1004 (-1085)) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL) (((-3 (-1037 |#1| (-1085)) "failed") $) NIL)) (-1484 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-1004 (-1085)) $) NIL) (((-1085) $) NIL) (((-1037 |#1| (-1085)) $) NIL)) (-1950 (($ $ $ (-1004 (-1085))) NIL (|has| |#1| (-157)))) (-3156 (($ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#1| (-426))) (($ $ (-1004 (-1085))) NIL (|has| |#1| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#1| (-838)))) (-2671 (($ $ |#1| (-494 (-1004 (-1085))) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-1004 (-1085)) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-1004 (-1085)) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3714 (((-708) $ (-1085)) NIL) (((-708) $) NIL)) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-4073 (($ (-1081 |#1|) (-1004 (-1085))) NIL) (($ (-1081 $) (-1004 (-1085))) NIL)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-494 (-1004 (-1085)))) NIL) (($ $ (-1004 (-1085)) (-708)) NIL) (($ $ (-588 (-1004 (-1085))) (-588 (-708))) NIL)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ (-1004 (-1085))) NIL)) (-2925 (((-494 (-1004 (-1085))) $) NIL) (((-708) $ (-1004 (-1085))) NIL) (((-588 (-708)) $ (-588 (-1004 (-1085)))) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3861 (($ (-1 (-494 (-1004 (-1085))) (-494 (-1004 (-1085)))) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-3830 (((-1 $ (-708)) (-1085)) NIL) (((-1 $ (-708)) $) NIL (|has| |#1| (-210)))) (-3145 (((-3 (-1004 (-1085)) "failed") $) NIL)) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-1570 (((-1004 (-1085)) $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2385 (((-1068) $) NIL)) (-1494 (((-108) $) NIL)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-1004 (-1085))) (|:| -1400 (-708))) "failed") $) NIL)) (-1901 (($ $) NIL)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) NIL)) (-3118 ((|#1| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-838)))) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-1004 (-1085)) |#1|) NIL) (($ $ (-588 (-1004 (-1085))) (-588 |#1|)) NIL) (($ $ (-1004 (-1085)) $) NIL) (($ $ (-588 (-1004 (-1085))) (-588 $)) NIL) (($ $ (-1085) $) NIL (|has| |#1| (-210))) (($ $ (-588 (-1085)) (-588 $)) NIL (|has| |#1| (-210))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-210))) (($ $ (-588 (-1085)) (-588 |#1|)) NIL (|has| |#1| (-210)))) (-2769 (($ $ (-1004 (-1085))) NIL (|has| |#1| (-157)))) (-2157 (($ $ (-1004 (-1085))) NIL) (($ $ (-588 (-1004 (-1085)))) NIL) (($ $ (-1004 (-1085)) (-708)) NIL) (($ $ (-588 (-1004 (-1085))) (-588 (-708))) NIL) (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3013 (((-588 (-1085)) $) NIL)) (-2793 (((-494 (-1004 (-1085))) $) NIL) (((-708) $ (-1004 (-1085))) NIL) (((-588 (-708)) $ (-588 (-1004 (-1085)))) NIL) (((-708) $ (-1085)) NIL)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| (-1004 (-1085)) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-1004 (-1085)) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-1004 (-1085)) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2255 ((|#1| $) NIL (|has| |#1| (-426))) (($ $ (-1004 (-1085))) NIL (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-1004 (-1085))) NIL) (($ (-1085)) NIL) (($ (-1037 |#1| (-1085))) NIL) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-494 (-1004 (-1085)))) NIL) (($ $ (-1004 (-1085)) (-708)) NIL) (($ $ (-588 (-1004 (-1085))) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-1004 (-1085))) NIL) (($ $ (-588 (-1004 (-1085)))) NIL) (($ $ (-1004 (-1085)) (-708)) NIL) (($ $ (-588 (-1004 (-1085))) (-588 (-708))) NIL) (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-2006 (((-393 |#3|) |#3|) 16)))
+(((-998 |#1| |#2| |#3|) (-10 -7 (-15 -2006 ((-393 |#3|) |#3|))) (-1142 (-382 (-881 (-522)))) (-13 (-338) (-135) (-662 (-382 (-881 (-522))) |#1|)) (-1142 |#2|)) (T -998))
+((-2006 (*1 *2 *3) (-12 (-4 *4 (-1142 (-382 (-881 (-522))))) (-4 *5 (-13 (-338) (-135) (-662 (-382 (-881 (-522))) *4))) (-5 *2 (-393 *3)) (-5 *1 (-998 *4 *5 *3)) (-4 *3 (-1142 *5)))))
+(-10 -7 (-15 -2006 ((-393 |#3|) |#3|)))
+((-1419 (((-108) $ $) NIL)) (-1308 (($ $ $) 14)) (-2524 (($ $ $) 15)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3269 (($) 6)) (-3873 (((-1085) $) 18)) (-2217 (((-792) $) 12)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 13)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 8)))
+(((-999) (-13 (-784) (-10 -8 (-15 -3269 ($)) (-15 -3873 ((-1085) $))))) (T -999))
+((-3269 (*1 *1) (-5 *1 (-999))) (-3873 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-999)))))
+(-13 (-784) (-10 -8 (-15 -3269 ($)) (-15 -3873 ((-1085) $))))
+((-3052 ((|#1| |#1| (-1 (-522) |#1| |#1|)) 23) ((|#1| |#1| (-1 (-108) |#1|)) 20)) (-1575 (((-1171)) 15)) (-3003 (((-588 |#1|)) 9)))
+(((-1000 |#1|) (-10 -7 (-15 -1575 ((-1171))) (-15 -3003 ((-588 |#1|))) (-15 -3052 (|#1| |#1| (-1 (-108) |#1|))) (-15 -3052 (|#1| |#1| (-1 (-522) |#1| |#1|)))) (-125)) (T -1000))
+((-3052 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-522) *2 *2)) (-4 *2 (-125)) (-5 *1 (-1000 *2)))) (-3052 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *2)) (-4 *2 (-125)) (-5 *1 (-1000 *2)))) (-3003 (*1 *2) (-12 (-5 *2 (-588 *3)) (-5 *1 (-1000 *3)) (-4 *3 (-125)))) (-1575 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1000 *3)) (-4 *3 (-125)))))
+(-10 -7 (-15 -1575 ((-1171))) (-15 -3003 ((-588 |#1|))) (-15 -3052 (|#1| |#1| (-1 (-108) |#1|))) (-15 -3052 (|#1| |#1| (-1 (-522) |#1| |#1|))))
+((-3260 (($ (-104) $) 15)) (-2040 (((-3 (-104) "failed") (-1085) $) 13)) (-3298 (($) 6)) (-1924 (($) 16)) (-2282 (($) 17)) (-1390 (((-588 (-159)) $) 8)) (-2217 (((-792) $) 20)))
+(((-1001) (-13 (-562 (-792)) (-10 -8 (-15 -3298 ($)) (-15 -1390 ((-588 (-159)) $)) (-15 -2040 ((-3 (-104) "failed") (-1085) $)) (-15 -3260 ($ (-104) $)) (-15 -1924 ($)) (-15 -2282 ($))))) (T -1001))
+((-3298 (*1 *1) (-5 *1 (-1001))) (-1390 (*1 *2 *1) (-12 (-5 *2 (-588 (-159))) (-5 *1 (-1001)))) (-2040 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-104)) (-5 *1 (-1001)))) (-3260 (*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-1001)))) (-1924 (*1 *1) (-5 *1 (-1001))) (-2282 (*1 *1) (-5 *1 (-1001))))
+(-13 (-562 (-792)) (-10 -8 (-15 -3298 ($)) (-15 -1390 ((-588 (-159)) $)) (-15 -2040 ((-3 (-104) "failed") (-1085) $)) (-15 -3260 ($ (-104) $)) (-15 -1924 ($)) (-15 -2282 ($))))
+((-3690 (((-1166 (-628 |#1|)) (-588 (-628 |#1|))) 41) (((-1166 (-628 (-881 |#1|))) (-588 (-1085)) (-628 (-881 |#1|))) 61) (((-1166 (-628 (-382 (-881 |#1|)))) (-588 (-1085)) (-628 (-382 (-881 |#1|)))) 77)) (-3510 (((-1166 |#1|) (-628 |#1|) (-588 (-628 |#1|))) 35)))
+(((-1002 |#1|) (-10 -7 (-15 -3690 ((-1166 (-628 (-382 (-881 |#1|)))) (-588 (-1085)) (-628 (-382 (-881 |#1|))))) (-15 -3690 ((-1166 (-628 (-881 |#1|))) (-588 (-1085)) (-628 (-881 |#1|)))) (-15 -3690 ((-1166 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -3510 ((-1166 |#1|) (-628 |#1|) (-588 (-628 |#1|))))) (-338)) (T -1002))
+((-3510 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-628 *5))) (-5 *3 (-628 *5)) (-4 *5 (-338)) (-5 *2 (-1166 *5)) (-5 *1 (-1002 *5)))) (-3690 (*1 *2 *3) (-12 (-5 *3 (-588 (-628 *4))) (-4 *4 (-338)) (-5 *2 (-1166 (-628 *4))) (-5 *1 (-1002 *4)))) (-3690 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-1085))) (-4 *5 (-338)) (-5 *2 (-1166 (-628 (-881 *5)))) (-5 *1 (-1002 *5)) (-5 *4 (-628 (-881 *5))))) (-3690 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-1085))) (-4 *5 (-338)) (-5 *2 (-1166 (-628 (-382 (-881 *5))))) (-5 *1 (-1002 *5)) (-5 *4 (-628 (-382 (-881 *5)))))))
+(-10 -7 (-15 -3690 ((-1166 (-628 (-382 (-881 |#1|)))) (-588 (-1085)) (-628 (-382 (-881 |#1|))))) (-15 -3690 ((-1166 (-628 (-881 |#1|))) (-588 (-1085)) (-628 (-881 |#1|)))) (-15 -3690 ((-1166 (-628 |#1|)) (-588 (-628 |#1|)))) (-15 -3510 ((-1166 |#1|) (-628 |#1|) (-588 (-628 |#1|)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-4044 (((-588 (-708)) $) NIL) (((-588 (-708)) $ (-1085)) NIL)) (-3192 (((-708) $) NIL) (((-708) $ (-1085)) NIL)) (-3533 (((-588 (-1004 (-1085))) $) NIL)) (-1264 (((-1081 $) $ (-1004 (-1085))) NIL) (((-1081 |#1|) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 (-1004 (-1085)))) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2961 (($ $) NIL (|has| |#1| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1646 (($ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-1004 (-1085)) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL) (((-3 (-1037 |#1| (-1085)) "failed") $) NIL)) (-1478 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-1004 (-1085)) $) NIL) (((-1085) $) NIL) (((-1037 |#1| (-1085)) $) NIL)) (-2908 (($ $ $ (-1004 (-1085))) NIL (|has| |#1| (-157)))) (-3241 (($ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#1| (-426))) (($ $ (-1004 (-1085))) NIL (|has| |#1| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#1| (-838)))) (-3792 (($ $ |#1| (-494 (-1004 (-1085))) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-1004 (-1085)) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-1004 (-1085)) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3872 (((-708) $ (-1085)) NIL) (((-708) $) NIL)) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-3520 (($ (-1081 |#1|) (-1004 (-1085))) NIL) (($ (-1081 $) (-1004 (-1085))) NIL)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-494 (-1004 (-1085)))) NIL) (($ $ (-1004 (-1085)) (-708)) NIL) (($ $ (-588 (-1004 (-1085))) (-588 (-708))) NIL)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ (-1004 (-1085))) NIL)) (-3564 (((-494 (-1004 (-1085))) $) NIL) (((-708) $ (-1004 (-1085))) NIL) (((-588 (-708)) $ (-588 (-1004 (-1085)))) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-1723 (($ (-1 (-494 (-1004 (-1085))) (-494 (-1004 (-1085)))) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-2718 (((-1 $ (-708)) (-1085)) NIL) (((-1 $ (-708)) $) NIL (|has| |#1| (-210)))) (-3155 (((-3 (-1004 (-1085)) "failed") $) NIL)) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-1611 (((-1004 (-1085)) $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2311 (((-1068) $) NIL)) (-1717 (((-108) $) NIL)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| (-1004 (-1085))) (|:| -3858 (-708))) "failed") $) NIL)) (-1992 (($ $) NIL)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) NIL)) (-3207 ((|#1| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-838)))) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-1004 (-1085)) |#1|) NIL) (($ $ (-588 (-1004 (-1085))) (-588 |#1|)) NIL) (($ $ (-1004 (-1085)) $) NIL) (($ $ (-588 (-1004 (-1085))) (-588 $)) NIL) (($ $ (-1085) $) NIL (|has| |#1| (-210))) (($ $ (-588 (-1085)) (-588 $)) NIL (|has| |#1| (-210))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-210))) (($ $ (-588 (-1085)) (-588 |#1|)) NIL (|has| |#1| (-210)))) (-1615 (($ $ (-1004 (-1085))) NIL (|has| |#1| (-157)))) (-2731 (($ $ (-1004 (-1085))) NIL) (($ $ (-588 (-1004 (-1085)))) NIL) (($ $ (-1004 (-1085)) (-708)) NIL) (($ $ (-588 (-1004 (-1085))) (-588 (-708))) NIL) (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1266 (((-588 (-1085)) $) NIL)) (-2487 (((-494 (-1004 (-1085))) $) NIL) (((-708) $ (-1004 (-1085))) NIL) (((-588 (-708)) $ (-588 (-1004 (-1085)))) NIL) (((-708) $ (-1085)) NIL)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| (-1004 (-1085)) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-1004 (-1085)) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-1004 (-1085)) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2988 ((|#1| $) NIL (|has| |#1| (-426))) (($ $ (-1004 (-1085))) NIL (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-1004 (-1085))) NIL) (($ (-1085)) NIL) (($ (-1037 |#1| (-1085))) NIL) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-494 (-1004 (-1085)))) NIL) (($ $ (-1004 (-1085)) (-708)) NIL) (($ $ (-588 (-1004 (-1085))) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-1004 (-1085))) NIL) (($ $ (-588 (-1004 (-1085)))) NIL) (($ $ (-1004 (-1085)) (-708)) NIL) (($ $ (-588 (-1004 (-1085))) (-588 (-708))) NIL) (($ $) NIL (|has| |#1| (-210))) (($ $ (-708)) NIL (|has| |#1| (-210))) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-1003 |#1|) (-13 (-229 |#1| (-1085) (-1004 (-1085)) (-494 (-1004 (-1085)))) (-962 (-1037 |#1| (-1085)))) (-971)) (T -1003))
NIL
(-13 (-229 |#1| (-1085) (-1004 (-1085)) (-494 (-1004 (-1085)))) (-962 (-1037 |#1| (-1085))))
-((-1416 (((-108) $ $) NIL)) (-3152 (((-708) $) NIL)) (-1611 ((|#1| $) 10)) (-1297 (((-3 |#1| "failed") $) NIL)) (-1484 ((|#1| $) NIL)) (-3714 (((-708) $) 11)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-3830 (($ |#1| (-708)) 9)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2157 (($ $) NIL) (($ $ (-708)) NIL)) (-2190 (((-792) $) NIL) (($ |#1|) NIL)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 15)))
+((-1419 (((-108) $ $) NIL)) (-3192 (((-708) $) NIL)) (-1660 ((|#1| $) 10)) (-3700 (((-3 |#1| "failed") $) NIL)) (-1478 ((|#1| $) NIL)) (-3872 (((-708) $) 11)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-2718 (($ |#1| (-708)) 9)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2731 (($ $) NIL) (($ $ (-708)) NIL)) (-2217 (((-792) $) NIL) (($ |#1|) NIL)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 15)))
(((-1004 |#1|) (-242 |#1|) (-784)) (T -1004))
NIL
(-242 |#1|)
-((-1391 (((-588 |#2|) (-1 |#2| |#1|) (-1009 |#1|)) 24 (|has| |#1| (-782))) (((-1009 |#2|) (-1 |#2| |#1|) (-1009 |#1|)) 14)))
-(((-1005 |#1| |#2|) (-10 -7 (-15 -1391 ((-1009 |#2|) (-1 |#2| |#1|) (-1009 |#1|))) (IF (|has| |#1| (-782)) (-15 -1391 ((-588 |#2|) (-1 |#2| |#1|) (-1009 |#1|))) |%noBranch|)) (-1120) (-1120)) (T -1005))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1009 *5)) (-4 *5 (-782)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-588 *6)) (-5 *1 (-1005 *5 *6)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1009 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1009 *6)) (-5 *1 (-1005 *5 *6)))))
-(-10 -7 (-15 -1391 ((-1009 |#2|) (-1 |#2| |#1|) (-1009 |#1|))) (IF (|has| |#1| (-782)) (-15 -1391 ((-588 |#2|) (-1 |#2| |#1|) (-1009 |#1|))) |%noBranch|))
-((-1391 (((-1007 |#2|) (-1 |#2| |#1|) (-1007 |#1|)) 19)))
-(((-1006 |#1| |#2|) (-10 -7 (-15 -1391 ((-1007 |#2|) (-1 |#2| |#1|) (-1007 |#1|)))) (-1120) (-1120)) (T -1006))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1007 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1007 *6)) (-5 *1 (-1006 *5 *6)))))
-(-10 -7 (-15 -1391 ((-1007 |#2|) (-1 |#2| |#1|) (-1007 |#1|))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1611 (((-1085) $) 11)) (-1539 (((-1009 |#1|) $) 12)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1607 (($ (-1085) (-1009 |#1|)) 10)) (-2190 (((-792) $) 20 (|has| |#1| (-1014)))) (-1531 (((-108) $ $) 15 (|has| |#1| (-1014)))))
-(((-1007 |#1|) (-13 (-1120) (-10 -8 (-15 -1607 ($ (-1085) (-1009 |#1|))) (-15 -1611 ((-1085) $)) (-15 -1539 ((-1009 |#1|) $)) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|))) (-1120)) (T -1007))
-((-1607 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1009 *4)) (-4 *4 (-1120)) (-5 *1 (-1007 *4)))) (-1611 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1007 *3)) (-4 *3 (-1120)))) (-1539 (*1 *2 *1) (-12 (-5 *2 (-1009 *3)) (-5 *1 (-1007 *3)) (-4 *3 (-1120)))))
-(-13 (-1120) (-10 -8 (-15 -1607 ($ (-1085) (-1009 |#1|))) (-15 -1611 ((-1085) $)) (-15 -1539 ((-1009 |#1|) $)) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|)))
-((-1539 (($ |#1| |#1|) 7)) (-2314 ((|#1| $) 10)) (-1450 ((|#1| $) 12)) (-1461 (((-522) $) 8)) (-1376 ((|#1| $) 9)) (-1471 ((|#1| $) 11)) (-1431 (($ |#1|) 6)) (-1673 (($ |#1| |#1|) 14)) (-1345 (($ $ (-522)) 13)))
+((-3810 (((-588 |#2|) (-1 |#2| |#1|) (-1009 |#1|)) 24 (|has| |#1| (-782))) (((-1009 |#2|) (-1 |#2| |#1|) (-1009 |#1|)) 14)))
+(((-1005 |#1| |#2|) (-10 -7 (-15 -3810 ((-1009 |#2|) (-1 |#2| |#1|) (-1009 |#1|))) (IF (|has| |#1| (-782)) (-15 -3810 ((-588 |#2|) (-1 |#2| |#1|) (-1009 |#1|))) |%noBranch|)) (-1120) (-1120)) (T -1005))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1009 *5)) (-4 *5 (-782)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-588 *6)) (-5 *1 (-1005 *5 *6)))) (-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1009 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1009 *6)) (-5 *1 (-1005 *5 *6)))))
+(-10 -7 (-15 -3810 ((-1009 |#2|) (-1 |#2| |#1|) (-1009 |#1|))) (IF (|has| |#1| (-782)) (-15 -3810 ((-588 |#2|) (-1 |#2| |#1|) (-1009 |#1|))) |%noBranch|))
+((-3810 (((-1007 |#2|) (-1 |#2| |#1|) (-1007 |#1|)) 19)))
+(((-1006 |#1| |#2|) (-10 -7 (-15 -3810 ((-1007 |#2|) (-1 |#2| |#1|) (-1007 |#1|)))) (-1120) (-1120)) (T -1006))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1007 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1007 *6)) (-5 *1 (-1006 *5 *6)))))
+(-10 -7 (-15 -3810 ((-1007 |#2|) (-1 |#2| |#1|) (-1007 |#1|))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1660 (((-1085) $) 11)) (-1572 (((-1009 |#1|) $) 12)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1656 (($ (-1085) (-1009 |#1|)) 10)) (-2217 (((-792) $) 20 (|has| |#1| (-1014)))) (-1562 (((-108) $ $) 15 (|has| |#1| (-1014)))))
+(((-1007 |#1|) (-13 (-1120) (-10 -8 (-15 -1656 ($ (-1085) (-1009 |#1|))) (-15 -1660 ((-1085) $)) (-15 -1572 ((-1009 |#1|) $)) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|))) (-1120)) (T -1007))
+((-1656 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1009 *4)) (-4 *4 (-1120)) (-5 *1 (-1007 *4)))) (-1660 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1007 *3)) (-4 *3 (-1120)))) (-1572 (*1 *2 *1) (-12 (-5 *2 (-1009 *3)) (-5 *1 (-1007 *3)) (-4 *3 (-1120)))))
+(-13 (-1120) (-10 -8 (-15 -1656 ($ (-1085) (-1009 |#1|))) (-15 -1660 ((-1085) $)) (-15 -1572 ((-1009 |#1|) $)) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|)))
+((-1572 (($ |#1| |#1|) 7)) (-2430 ((|#1| $) 10)) (-1451 ((|#1| $) 12)) (-1463 (((-522) $) 8)) (-3636 ((|#1| $) 9)) (-1476 ((|#1| $) 11)) (-3873 (($ |#1|) 6)) (-1752 (($ |#1| |#1|) 14)) (-1327 (($ $ (-522)) 13)))
(((-1008 |#1|) (-1197) (-1120)) (T -1008))
-((-1673 (*1 *1 *2 *2) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))) (-1345 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-1008 *3)) (-4 *3 (-1120)))) (-1450 (*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))) (-1471 (*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))) (-2314 (*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))) (-1376 (*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))) (-1461 (*1 *2 *1) (-12 (-4 *1 (-1008 *3)) (-4 *3 (-1120)) (-5 *2 (-522)))) (-1539 (*1 *1 *2 *2) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))) (-1431 (*1 *1 *2) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))))
-(-13 (-1120) (-10 -8 (-15 -1673 ($ |t#1| |t#1|)) (-15 -1345 ($ $ (-522))) (-15 -1450 (|t#1| $)) (-15 -1471 (|t#1| $)) (-15 -2314 (|t#1| $)) (-15 -1376 (|t#1| $)) (-15 -1461 ((-522) $)) (-15 -1539 ($ |t#1| |t#1|)) (-15 -1431 ($ |t#1|))))
+((-1752 (*1 *1 *2 *2) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))) (-1327 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-1008 *3)) (-4 *3 (-1120)))) (-1451 (*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))) (-1476 (*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))) (-2430 (*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))) (-3636 (*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))) (-1463 (*1 *2 *1) (-12 (-4 *1 (-1008 *3)) (-4 *3 (-1120)) (-5 *2 (-522)))) (-1572 (*1 *1 *2 *2) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))) (-3873 (*1 *1 *2) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))))
+(-13 (-1120) (-10 -8 (-15 -1752 ($ |t#1| |t#1|)) (-15 -1327 ($ $ (-522))) (-15 -1451 (|t#1| $)) (-15 -1476 (|t#1| $)) (-15 -2430 (|t#1| $)) (-15 -3636 (|t#1| $)) (-15 -1463 ((-522) $)) (-15 -1572 ($ |t#1| |t#1|)) (-15 -3873 ($ |t#1|))))
(((-1120) . T))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1539 (($ |#1| |#1|) 15)) (-1391 (((-588 |#1|) (-1 |#1| |#1|) $) 38 (|has| |#1| (-782)))) (-2314 ((|#1| $) 10)) (-1450 ((|#1| $) 9)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1461 (((-522) $) 14)) (-1376 ((|#1| $) 12)) (-1471 ((|#1| $) 11)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1604 (((-588 |#1|) $) 36 (|has| |#1| (-782))) (((-588 |#1|) (-588 $)) 35 (|has| |#1| (-782)))) (-1431 (($ |#1|) 26)) (-2190 (((-792) $) 25 (|has| |#1| (-1014)))) (-1673 (($ |#1| |#1|) 8)) (-1345 (($ $ (-522)) 16)) (-1531 (((-108) $ $) 19 (|has| |#1| (-1014)))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1572 (($ |#1| |#1|) 15)) (-3810 (((-588 |#1|) (-1 |#1| |#1|) $) 38 (|has| |#1| (-782)))) (-2430 ((|#1| $) 10)) (-1451 ((|#1| $) 9)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1463 (((-522) $) 14)) (-3636 ((|#1| $) 12)) (-1476 ((|#1| $) 11)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1663 (((-588 |#1|) $) 36 (|has| |#1| (-782))) (((-588 |#1|) (-588 $)) 35 (|has| |#1| (-782)))) (-3873 (($ |#1|) 26)) (-2217 (((-792) $) 25 (|has| |#1| (-1014)))) (-1752 (($ |#1| |#1|) 8)) (-1327 (($ $ (-522)) 16)) (-1562 (((-108) $ $) 19 (|has| |#1| (-1014)))))
(((-1009 |#1|) (-13 (-1008 |#1|) (-10 -7 (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-1010 |#1| (-588 |#1|))) |%noBranch|))) (-1120)) (T -1009))
NIL
(-13 (-1008 |#1|) (-10 -7 (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-1010 |#1| (-588 |#1|))) |%noBranch|)))
-((-1539 (($ |#1| |#1|) 7)) (-1391 ((|#2| (-1 |#1| |#1|) $) 16)) (-2314 ((|#1| $) 10)) (-1450 ((|#1| $) 12)) (-1461 (((-522) $) 8)) (-1376 ((|#1| $) 9)) (-1471 ((|#1| $) 11)) (-1604 ((|#2| (-588 $)) 18) ((|#2| $) 17)) (-1431 (($ |#1|) 6)) (-1673 (($ |#1| |#1|) 14)) (-1345 (($ $ (-522)) 13)))
+((-1572 (($ |#1| |#1|) 7)) (-3810 ((|#2| (-1 |#1| |#1|) $) 16)) (-2430 ((|#1| $) 10)) (-1451 ((|#1| $) 12)) (-1463 (((-522) $) 8)) (-3636 ((|#1| $) 9)) (-1476 ((|#1| $) 11)) (-1663 ((|#2| (-588 $)) 18) ((|#2| $) 17)) (-3873 (($ |#1|) 6)) (-1752 (($ |#1| |#1|) 14)) (-1327 (($ $ (-522)) 13)))
(((-1010 |#1| |#2|) (-1197) (-782) (-1059 |t#1|)) (T -1010))
-((-1604 (*1 *2 *3) (-12 (-5 *3 (-588 *1)) (-4 *1 (-1010 *4 *2)) (-4 *4 (-782)) (-4 *2 (-1059 *4)))) (-1604 (*1 *2 *1) (-12 (-4 *1 (-1010 *3 *2)) (-4 *3 (-782)) (-4 *2 (-1059 *3)))) (-1391 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1010 *4 *2)) (-4 *4 (-782)) (-4 *2 (-1059 *4)))))
-(-13 (-1008 |t#1|) (-10 -8 (-15 -1604 (|t#2| (-588 $))) (-15 -1604 (|t#2| $)) (-15 -1391 (|t#2| (-1 |t#1| |t#1|) $))))
+((-1663 (*1 *2 *3) (-12 (-5 *3 (-588 *1)) (-4 *1 (-1010 *4 *2)) (-4 *4 (-782)) (-4 *2 (-1059 *4)))) (-1663 (*1 *2 *1) (-12 (-4 *1 (-1010 *3 *2)) (-4 *3 (-782)) (-4 *2 (-1059 *3)))) (-3810 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1010 *4 *2)) (-4 *4 (-782)) (-4 *2 (-1059 *4)))))
+(-13 (-1008 |t#1|) (-10 -8 (-15 -1663 (|t#2| (-588 $))) (-15 -1663 (|t#2| $)) (-15 -3810 (|t#2| (-1 |t#1| |t#1|) $))))
(((-1008 |#1|) . T) ((-1120) . T))
-((-2270 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-2079 (($ $ $) 10)) (-3417 (($ $ $) NIL) (($ $ |#2|) 15)))
-(((-1011 |#1| |#2|) (-10 -8 (-15 -2270 (|#1| |#2| |#1|)) (-15 -2270 (|#1| |#1| |#2|)) (-15 -2270 (|#1| |#1| |#1|)) (-15 -2079 (|#1| |#1| |#1|)) (-15 -3417 (|#1| |#1| |#2|)) (-15 -3417 (|#1| |#1| |#1|))) (-1012 |#2|) (-1014)) (T -1011))
+((-2323 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-4099 (($ $ $) 10)) (-3962 (($ $ $) NIL) (($ $ |#2|) 15)))
+(((-1011 |#1| |#2|) (-10 -8 (-15 -2323 (|#1| |#2| |#1|)) (-15 -2323 (|#1| |#1| |#2|)) (-15 -2323 (|#1| |#1| |#1|)) (-15 -4099 (|#1| |#1| |#1|)) (-15 -3962 (|#1| |#1| |#2|)) (-15 -3962 (|#1| |#1| |#1|))) (-1012 |#2|) (-1014)) (T -1011))
NIL
-(-10 -8 (-15 -2270 (|#1| |#2| |#1|)) (-15 -2270 (|#1| |#1| |#2|)) (-15 -2270 (|#1| |#1| |#1|)) (-15 -2079 (|#1| |#1| |#1|)) (-15 -3417 (|#1| |#1| |#2|)) (-15 -3417 (|#1| |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2270 (($ $ $) 18) (($ $ |#1|) 17) (($ |#1| $) 16)) (-2079 (($ $ $) 20)) (-3557 (((-108) $ $) 19)) (-4141 (((-108) $ (-708)) 35)) (-1764 (($) 25) (($ (-588 |#1|)) 24)) (-1628 (($ (-1 (-108) |#1|) $) 56 (|has| $ (-6 -4238)))) (-3175 (($) 36 T CONST)) (-2333 (($ $) 59 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#1| $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4238)))) (-3837 (((-588 |#1|) $) 43 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 34)) (-3308 (((-588 |#1|) $) 44 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 46 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 38)) (-2720 (((-108) $ (-708)) 33)) (-2385 (((-1068) $) 9)) (-2416 (($ $ $) 23)) (-4151 (((-1032) $) 10)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 52)) (-3053 (((-108) (-1 (-108) |#1|) $) 41 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#1|) (-588 |#1|)) 50 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 49 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 48 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 (-270 |#1|))) 47 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 29)) (-3985 (((-108) $) 32)) (-3775 (($) 31)) (-3417 (($ $ $) 22) (($ $ |#1|) 21)) (-4168 (((-708) |#1| $) 45 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#1|) $) 42 (|has| $ (-6 -4238)))) (-2404 (($ $) 30)) (-1431 (((-498) $) 60 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 51)) (-2190 (((-792) $) 11)) (-3392 (($) 27) (($ (-588 |#1|)) 26)) (-3648 (((-108) (-1 (-108) |#1|) $) 40 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 6)) (-1549 (((-108) $ $) 28)) (-3480 (((-708) $) 37 (|has| $ (-6 -4238)))))
+(-10 -8 (-15 -2323 (|#1| |#2| |#1|)) (-15 -2323 (|#1| |#1| |#2|)) (-15 -2323 (|#1| |#1| |#1|)) (-15 -4099 (|#1| |#1| |#1|)) (-15 -3962 (|#1| |#1| |#2|)) (-15 -3962 (|#1| |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2323 (($ $ $) 18) (($ $ |#1|) 17) (($ |#1| $) 16)) (-4099 (($ $ $) 20)) (-1751 (((-108) $ $) 19)) (-2717 (((-108) $ (-708)) 35)) (-1852 (($) 25) (($ (-588 |#1|)) 24)) (-1696 (($ (-1 (-108) |#1|) $) 56 (|has| $ (-6 -4238)))) (-3367 (($) 36 T CONST)) (-2379 (($ $) 59 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#1| $) 58 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 55 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4238)))) (-2395 (((-588 |#1|) $) 43 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 34)) (-4084 (((-588 |#1|) $) 44 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 46 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 38)) (-3309 (((-108) $ (-708)) 33)) (-2311 (((-1068) $) 9)) (-2251 (($ $ $) 23)) (-4174 (((-1032) $) 10)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 52)) (-3487 (((-108) (-1 (-108) |#1|) $) 41 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#1|) (-588 |#1|)) 50 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 49 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 48 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 (-270 |#1|))) 47 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 29)) (-3494 (((-108) $) 32)) (-3298 (($) 31)) (-3962 (($ $ $) 22) (($ $ |#1|) 21)) (-4187 (((-708) |#1| $) 45 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#1|) $) 42 (|has| $ (-6 -4238)))) (-2463 (($ $) 30)) (-3873 (((-498) $) 60 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 51)) (-2217 (((-792) $) 11)) (-3482 (($) 27) (($ (-588 |#1|)) 26)) (-1381 (((-108) (-1 (-108) |#1|) $) 40 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 6)) (-1587 (((-108) $ $) 28)) (-3591 (((-708) $) 37 (|has| $ (-6 -4238)))))
(((-1012 |#1|) (-1197) (-1014)) (T -1012))
-((-1549 (*1 *2 *1 *1) (-12 (-4 *1 (-1012 *3)) (-4 *3 (-1014)) (-5 *2 (-108)))) (-3392 (*1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-3392 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-1012 *3)))) (-1764 (*1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-1764 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-1012 *3)))) (-2416 (*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-3417 (*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-3417 (*1 *1 *1 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-2079 (*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-3557 (*1 *2 *1 *1) (-12 (-4 *1 (-1012 *3)) (-4 *3 (-1014)) (-5 *2 (-108)))) (-2270 (*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-2270 (*1 *1 *1 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-2270 (*1 *1 *2 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
-(-13 (-1014) (-139 |t#1|) (-10 -8 (-6 -4228) (-15 -1549 ((-108) $ $)) (-15 -3392 ($)) (-15 -3392 ($ (-588 |t#1|))) (-15 -1764 ($)) (-15 -1764 ($ (-588 |t#1|))) (-15 -2416 ($ $ $)) (-15 -3417 ($ $ $)) (-15 -3417 ($ $ |t#1|)) (-15 -2079 ($ $ $)) (-15 -3557 ((-108) $ $)) (-15 -2270 ($ $ $)) (-15 -2270 ($ $ |t#1|)) (-15 -2270 ($ |t#1| $))))
+((-1587 (*1 *2 *1 *1) (-12 (-4 *1 (-1012 *3)) (-4 *3 (-1014)) (-5 *2 (-108)))) (-3482 (*1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-3482 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-1012 *3)))) (-1852 (*1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-1852 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-1012 *3)))) (-2251 (*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-3962 (*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-3962 (*1 *1 *1 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-4099 (*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-1751 (*1 *2 *1 *1) (-12 (-4 *1 (-1012 *3)) (-4 *3 (-1014)) (-5 *2 (-108)))) (-2323 (*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-2323 (*1 *1 *1 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))) (-2323 (*1 *1 *2 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
+(-13 (-1014) (-139 |t#1|) (-10 -8 (-6 -4228) (-15 -1587 ((-108) $ $)) (-15 -3482 ($)) (-15 -3482 ($ (-588 |t#1|))) (-15 -1852 ($)) (-15 -1852 ($ (-588 |t#1|))) (-15 -2251 ($ $ $)) (-15 -3962 ($ $ $)) (-15 -3962 ($ $ |t#1|)) (-15 -4099 ($ $ $)) (-15 -1751 ((-108) $ $)) (-15 -2323 ($ $ $)) (-15 -2323 ($ $ |t#1|)) (-15 -2323 ($ |t#1| $))))
(((-33) . T) ((-97) . T) ((-562 (-792)) . T) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) . T) ((-1120) . T))
-((-2385 (((-1068) $) 10)) (-4151 (((-1032) $) 8)))
-(((-1013 |#1|) (-10 -8 (-15 -2385 ((-1068) |#1|)) (-15 -4151 ((-1032) |#1|))) (-1014)) (T -1013))
+((-2311 (((-1068) $) 10)) (-4174 (((-1032) $) 8)))
+(((-1013 |#1|) (-10 -8 (-15 -2311 ((-1068) |#1|)) (-15 -4174 ((-1032) |#1|))) (-1014)) (T -1013))
NIL
-(-10 -8 (-15 -2385 ((-1068) |#1|)) (-15 -4151 ((-1032) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-1531 (((-108) $ $) 6)))
+(-10 -8 (-15 -2311 ((-1068) |#1|)) (-15 -4174 ((-1032) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-1562 (((-108) $ $) 6)))
(((-1014) (-1197)) (T -1014))
-((-4151 (*1 *2 *1) (-12 (-4 *1 (-1014)) (-5 *2 (-1032)))) (-2385 (*1 *2 *1) (-12 (-4 *1 (-1014)) (-5 *2 (-1068)))))
-(-13 (-97) (-562 (-792)) (-10 -8 (-15 -4151 ((-1032) $)) (-15 -2385 ((-1068) $))))
+((-4174 (*1 *2 *1) (-12 (-4 *1 (-1014)) (-5 *2 (-1032)))) (-2311 (*1 *2 *1) (-12 (-4 *1 (-1014)) (-5 *2 (-1068)))))
+(-13 (-97) (-562 (-792)) (-10 -8 (-15 -4174 ((-1032) $)) (-15 -2311 ((-1068) $))))
(((-97) . T) ((-562 (-792)) . T))
-((-1416 (((-108) $ $) NIL)) (-1629 (((-708)) 30)) (-3111 (($ (-588 (-850))) 52)) (-1403 (((-3 $ "failed") $ (-850) (-850)) 57)) (-3255 (($) 32)) (-2246 (((-108) (-850) $) 35)) (-2120 (((-850) $) 50)) (-2385 (((-1068) $) NIL)) (-2717 (($ (-850)) 31)) (-1302 (((-3 $ "failed") $ (-850)) 55)) (-4151 (((-1032) $) NIL)) (-2234 (((-1166 $)) 40)) (-1389 (((-588 (-850)) $) 23)) (-1203 (((-708) $ (-850) (-850)) 56)) (-2190 (((-792) $) 29)) (-1531 (((-108) $ $) 21)))
-(((-1015 |#1| |#2|) (-13 (-343) (-10 -8 (-15 -1302 ((-3 $ "failed") $ (-850))) (-15 -1403 ((-3 $ "failed") $ (-850) (-850))) (-15 -1389 ((-588 (-850)) $)) (-15 -3111 ($ (-588 (-850)))) (-15 -2234 ((-1166 $))) (-15 -2246 ((-108) (-850) $)) (-15 -1203 ((-708) $ (-850) (-850))))) (-850) (-850)) (T -1015))
-((-1302 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-850)) (-5 *1 (-1015 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-1403 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-850)) (-5 *1 (-1015 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-1389 (*1 *2 *1) (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1015 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))) (-3111 (*1 *1 *2) (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1015 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))) (-2234 (*1 *2) (-12 (-5 *2 (-1166 (-1015 *3 *4))) (-5 *1 (-1015 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))) (-2246 (*1 *2 *3 *1) (-12 (-5 *3 (-850)) (-5 *2 (-108)) (-5 *1 (-1015 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-1203 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-850)) (-5 *2 (-708)) (-5 *1 (-1015 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-13 (-343) (-10 -8 (-15 -1302 ((-3 $ "failed") $ (-850))) (-15 -1403 ((-3 $ "failed") $ (-850) (-850))) (-15 -1389 ((-588 (-850)) $)) (-15 -3111 ($ (-588 (-850)))) (-15 -2234 ((-1166 $))) (-15 -2246 ((-108) (-850) $)) (-15 -1203 ((-708) $ (-850) (-850)))))
-((-1416 (((-108) $ $) NIL)) (-1579 (($) NIL (|has| |#1| (-343)))) (-2270 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 74)) (-2079 (($ $ $) 72)) (-3557 (((-108) $ $) 73)) (-4141 (((-108) $ (-708)) NIL)) (-1629 (((-708)) NIL (|has| |#1| (-343)))) (-1764 (($ (-588 |#1|)) NIL) (($) 13)) (-2790 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3859 (($ |#1| $) 67 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1423 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4238)))) (-3255 (($) NIL (|has| |#1| (-343)))) (-3837 (((-588 |#1|) $) 19 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-2814 ((|#1| $) 57 (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 66 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2446 ((|#1| $) 55 (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 34)) (-2120 (((-850) $) NIL (|has| |#1| (-343)))) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-2416 (($ $ $) 70)) (-2116 ((|#1| $) 25)) (-4095 (($ |#1| $) 65)) (-2717 (($ (-850)) NIL (|has| |#1| (-343)))) (-4151 (((-1032) $) NIL)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 31)) (-4087 ((|#1| $) 27)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 21)) (-3775 (($) 11)) (-3417 (($ $ |#1|) NIL) (($ $ $) 71)) (-3990 (($) NIL) (($ (-588 |#1|)) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) 16)) (-1431 (((-498) $) 52 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 61)) (-3763 (($ $) NIL (|has| |#1| (-343)))) (-2190 (((-792) $) NIL)) (-2067 (((-708) $) NIL)) (-3392 (($ (-588 |#1|)) NIL) (($) 12)) (-2795 (($ (-588 |#1|)) NIL)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 54)) (-1549 (((-108) $ $) NIL)) (-3480 (((-708) $) 10 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-1685 (((-708)) 30)) (-2903 (($ (-588 (-850))) 52)) (-3893 (((-3 $ "failed") $ (-850) (-850)) 57)) (-3344 (($) 32)) (-4176 (((-108) (-850) $) 35)) (-1475 (((-850) $) 50)) (-2311 (((-1068) $) NIL)) (-2882 (($ (-850)) 31)) (-1739 (((-3 $ "failed") $ (-850)) 55)) (-4174 (((-1032) $) NIL)) (-1693 (((-1166 $)) 40)) (-3741 (((-588 (-850)) $) 23)) (-2764 (((-708) $ (-850) (-850)) 56)) (-2217 (((-792) $) 29)) (-1562 (((-108) $ $) 21)))
+(((-1015 |#1| |#2|) (-13 (-343) (-10 -8 (-15 -1739 ((-3 $ "failed") $ (-850))) (-15 -3893 ((-3 $ "failed") $ (-850) (-850))) (-15 -3741 ((-588 (-850)) $)) (-15 -2903 ($ (-588 (-850)))) (-15 -1693 ((-1166 $))) (-15 -4176 ((-108) (-850) $)) (-15 -2764 ((-708) $ (-850) (-850))))) (-850) (-850)) (T -1015))
+((-1739 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-850)) (-5 *1 (-1015 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-3893 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-850)) (-5 *1 (-1015 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-3741 (*1 *2 *1) (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1015 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))) (-2903 (*1 *1 *2) (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1015 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))) (-1693 (*1 *2) (-12 (-5 *2 (-1166 (-1015 *3 *4))) (-5 *1 (-1015 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850)))) (-4176 (*1 *2 *3 *1) (-12 (-5 *3 (-850)) (-5 *2 (-108)) (-5 *1 (-1015 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-2764 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-850)) (-5 *2 (-708)) (-5 *1 (-1015 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-13 (-343) (-10 -8 (-15 -1739 ((-3 $ "failed") $ (-850))) (-15 -3893 ((-3 $ "failed") $ (-850) (-850))) (-15 -3741 ((-588 (-850)) $)) (-15 -2903 ($ (-588 (-850)))) (-15 -1693 ((-1166 $))) (-15 -4176 ((-108) (-850) $)) (-15 -2764 ((-708) $ (-850) (-850)))))
+((-1419 (((-108) $ $) NIL)) (-3641 (($) NIL (|has| |#1| (-343)))) (-2323 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 74)) (-4099 (($ $ $) 72)) (-1751 (((-108) $ $) 73)) (-2717 (((-108) $ (-708)) NIL)) (-1685 (((-708)) NIL (|has| |#1| (-343)))) (-1852 (($ (-588 |#1|)) NIL) (($) 13)) (-1213 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1700 (($ |#1| $) 67 (|has| $ (-6 -4238))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1424 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4238)))) (-3344 (($) NIL (|has| |#1| (-343)))) (-2395 (((-588 |#1|) $) 19 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-1308 ((|#1| $) 57 (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 66 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2524 ((|#1| $) 55 (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 34)) (-1475 (((-850) $) NIL (|has| |#1| (-343)))) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-2251 (($ $ $) 70)) (-1431 ((|#1| $) 25)) (-3365 (($ |#1| $) 65)) (-2882 (($ (-850)) NIL (|has| |#1| (-343)))) (-4174 (((-1032) $) NIL)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 31)) (-3295 ((|#1| $) 27)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 21)) (-3298 (($) 11)) (-3962 (($ $ |#1|) NIL) (($ $ $) 71)) (-3546 (($) NIL) (($ (-588 |#1|)) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) 16)) (-3873 (((-498) $) 52 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 61)) (-3201 (($ $) NIL (|has| |#1| (-343)))) (-2217 (((-792) $) NIL)) (-2847 (((-708) $) NIL)) (-3482 (($ (-588 |#1|)) NIL) (($) 12)) (-2501 (($ (-588 |#1|)) NIL)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 54)) (-1587 (((-108) $ $) NIL)) (-3591 (((-708) $) 10 (|has| $ (-6 -4238)))))
(((-1016 |#1|) (-400 |#1|) (-1014)) (T -1016))
NIL
(-400 |#1|)
-((-1416 (((-108) $ $) 7)) (-2031 (((-108) $) 32)) (-1490 ((|#2| $) 27)) (-2879 (((-108) $) 33)) (-1507 ((|#1| $) 28)) (-1741 (((-108) $) 35)) (-2045 (((-108) $) 37)) (-2586 (((-108) $) 34)) (-2385 (((-1068) $) 9)) (-3096 (((-108) $) 31)) (-1509 ((|#3| $) 26)) (-4151 (((-1032) $) 10)) (-3151 (((-108) $) 30)) (-3071 ((|#4| $) 25)) (-1575 ((|#5| $) 24)) (-3197 (((-108) $ $) 38)) (-2545 (($ $ (-522)) 14) (($ $ (-588 (-522))) 13)) (-1991 (((-588 $) $) 29)) (-1431 (($ (-588 $)) 23) (($ |#1|) 22) (($ |#2|) 21) (($ |#3|) 20) (($ |#4|) 19) (($ |#5|) 18)) (-2190 (((-792) $) 11)) (-3212 (($ $) 16)) (-3201 (($ $) 17)) (-1474 (((-108) $) 36)) (-1531 (((-108) $ $) 6)) (-3480 (((-522) $) 15)))
+((-1419 (((-108) $ $) 7)) (-2415 (((-108) $) 32)) (-1488 ((|#2| $) 27)) (-1355 (((-108) $) 33)) (-1513 ((|#1| $) 28)) (-1430 (((-108) $) 35)) (-2591 (((-108) $) 37)) (-3037 (((-108) $) 34)) (-2311 (((-1068) $) 9)) (-3871 (((-108) $) 31)) (-1516 ((|#3| $) 26)) (-4174 (((-1032) $) 10)) (-3186 (((-108) $) 30)) (-3173 ((|#4| $) 25)) (-1610 ((|#5| $) 24)) (-3277 (((-108) $ $) 38)) (-2683 (($ $ (-522)) 14) (($ $ (-588 (-522))) 13)) (-2058 (((-588 $) $) 29)) (-3873 (($ (-588 $)) 23) (($ |#1|) 22) (($ |#2|) 21) (($ |#3|) 20) (($ |#4|) 19) (($ |#5|) 18)) (-2217 (((-792) $) 11)) (-3281 (($ $) 16)) (-3271 (($ $) 17)) (-1519 (((-108) $) 36)) (-1562 (((-108) $ $) 6)) (-3591 (((-522) $) 15)))
(((-1017 |#1| |#2| |#3| |#4| |#5|) (-1197) (-1014) (-1014) (-1014) (-1014) (-1014)) (T -1017))
-((-3197 (*1 *2 *1 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-2045 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-1474 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-1741 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-2586 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-2879 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-2031 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-3096 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-3151 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-1991 (*1 *2 *1) (-12 (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-588 *1)) (-4 *1 (-1017 *3 *4 *5 *6 *7)))) (-1507 (*1 *2 *1) (-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))) (-1490 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *2 *4 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))) (-1509 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *2 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))) (-3071 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *2 *6)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))) (-1575 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *2)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))) (-1431 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)))) (-1431 (*1 *1 *2) (-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *2 (-1014)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))) (-1431 (*1 *1 *2) (-12 (-4 *1 (-1017 *3 *2 *4 *5 *6)) (-4 *3 (-1014)) (-4 *2 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))) (-1431 (*1 *1 *2) (-12 (-4 *1 (-1017 *3 *4 *2 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *2 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))) (-1431 (*1 *1 *2) (-12 (-4 *1 (-1017 *3 *4 *5 *2 *6)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *2 (-1014)) (-4 *6 (-1014)))) (-1431 (*1 *1 *2) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *2)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))) (-3201 (*1 *1 *1) (-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *2 (-1014)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))) (-3212 (*1 *1 *1) (-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *2 (-1014)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))) (-3480 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-522)))) (-2545 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)))) (-2545 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)))))
-(-13 (-1014) (-10 -8 (-15 -3197 ((-108) $ $)) (-15 -2045 ((-108) $)) (-15 -1474 ((-108) $)) (-15 -1741 ((-108) $)) (-15 -2586 ((-108) $)) (-15 -2879 ((-108) $)) (-15 -2031 ((-108) $)) (-15 -3096 ((-108) $)) (-15 -3151 ((-108) $)) (-15 -1991 ((-588 $) $)) (-15 -1507 (|t#1| $)) (-15 -1490 (|t#2| $)) (-15 -1509 (|t#3| $)) (-15 -3071 (|t#4| $)) (-15 -1575 (|t#5| $)) (-15 -1431 ($ (-588 $))) (-15 -1431 ($ |t#1|)) (-15 -1431 ($ |t#2|)) (-15 -1431 ($ |t#3|)) (-15 -1431 ($ |t#4|)) (-15 -1431 ($ |t#5|)) (-15 -3201 ($ $)) (-15 -3212 ($ $)) (-15 -3480 ((-522) $)) (-15 -2545 ($ $ (-522))) (-15 -2545 ($ $ (-588 (-522))))))
+((-3277 (*1 *2 *1 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-2591 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-1519 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-1430 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-3037 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-1355 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-2415 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-3871 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-3186 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))) (-2058 (*1 *2 *1) (-12 (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-588 *1)) (-4 *1 (-1017 *3 *4 *5 *6 *7)))) (-1513 (*1 *2 *1) (-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))) (-1488 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *2 *4 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))) (-1516 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *2 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))) (-3173 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *2 *6)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))) (-1610 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *2)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))) (-3873 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)))) (-3873 (*1 *1 *2) (-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *2 (-1014)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))) (-3873 (*1 *1 *2) (-12 (-4 *1 (-1017 *3 *2 *4 *5 *6)) (-4 *3 (-1014)) (-4 *2 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))) (-3873 (*1 *1 *2) (-12 (-4 *1 (-1017 *3 *4 *2 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *2 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))) (-3873 (*1 *1 *2) (-12 (-4 *1 (-1017 *3 *4 *5 *2 *6)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *2 (-1014)) (-4 *6 (-1014)))) (-3873 (*1 *1 *2) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *2)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))) (-3271 (*1 *1 *1) (-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *2 (-1014)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))) (-3281 (*1 *1 *1) (-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *2 (-1014)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))) (-3591 (*1 *2 *1) (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-522)))) (-2683 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)))) (-2683 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)))))
+(-13 (-1014) (-10 -8 (-15 -3277 ((-108) $ $)) (-15 -2591 ((-108) $)) (-15 -1519 ((-108) $)) (-15 -1430 ((-108) $)) (-15 -3037 ((-108) $)) (-15 -1355 ((-108) $)) (-15 -2415 ((-108) $)) (-15 -3871 ((-108) $)) (-15 -3186 ((-108) $)) (-15 -2058 ((-588 $) $)) (-15 -1513 (|t#1| $)) (-15 -1488 (|t#2| $)) (-15 -1516 (|t#3| $)) (-15 -3173 (|t#4| $)) (-15 -1610 (|t#5| $)) (-15 -3873 ($ (-588 $))) (-15 -3873 ($ |t#1|)) (-15 -3873 ($ |t#2|)) (-15 -3873 ($ |t#3|)) (-15 -3873 ($ |t#4|)) (-15 -3873 ($ |t#5|)) (-15 -3271 ($ $)) (-15 -3281 ($ $)) (-15 -3591 ((-522) $)) (-15 -2683 ($ $ (-522))) (-15 -2683 ($ $ (-588 (-522))))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2031 (((-108) $) NIL)) (-1490 (((-1085) $) NIL)) (-2879 (((-108) $) NIL)) (-1507 (((-1068) $) NIL)) (-1741 (((-108) $) NIL)) (-2045 (((-108) $) NIL)) (-2586 (((-108) $) NIL)) (-2385 (((-1068) $) NIL)) (-3096 (((-108) $) NIL)) (-1509 (((-522) $) NIL)) (-4151 (((-1032) $) NIL)) (-3151 (((-108) $) NIL)) (-3071 (((-202) $) NIL)) (-1575 (((-792) $) NIL)) (-3197 (((-108) $ $) NIL)) (-2545 (($ $ (-522)) NIL) (($ $ (-588 (-522))) NIL)) (-1991 (((-588 $) $) NIL)) (-1431 (($ (-588 $)) NIL) (($ (-1068)) NIL) (($ (-1085)) NIL) (($ (-522)) NIL) (($ (-202)) NIL) (($ (-792)) NIL)) (-2190 (((-792) $) NIL)) (-3212 (($ $) NIL)) (-3201 (($ $) NIL)) (-1474 (((-108) $) NIL)) (-1531 (((-108) $ $) NIL)) (-3480 (((-522) $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-2415 (((-108) $) NIL)) (-1488 (((-1085) $) NIL)) (-1355 (((-108) $) NIL)) (-1513 (((-1068) $) NIL)) (-1430 (((-108) $) NIL)) (-2591 (((-108) $) NIL)) (-3037 (((-108) $) NIL)) (-2311 (((-1068) $) NIL)) (-3871 (((-108) $) NIL)) (-1516 (((-522) $) NIL)) (-4174 (((-1032) $) NIL)) (-3186 (((-108) $) NIL)) (-3173 (((-202) $) NIL)) (-1610 (((-792) $) NIL)) (-3277 (((-108) $ $) NIL)) (-2683 (($ $ (-522)) NIL) (($ $ (-588 (-522))) NIL)) (-2058 (((-588 $) $) NIL)) (-3873 (($ (-588 $)) NIL) (($ (-1068)) NIL) (($ (-1085)) NIL) (($ (-522)) NIL) (($ (-202)) NIL) (($ (-792)) NIL)) (-2217 (((-792) $) NIL)) (-3281 (($ $) NIL)) (-3271 (($ $) NIL)) (-1519 (((-108) $) NIL)) (-1562 (((-108) $ $) NIL)) (-3591 (((-522) $) NIL)))
(((-1018) (-1017 (-1068) (-1085) (-522) (-202) (-792))) (T -1018))
NIL
(-1017 (-1068) (-1085) (-522) (-202) (-792))
-((-1416 (((-108) $ $) NIL)) (-2031 (((-108) $) 38)) (-1490 ((|#2| $) 42)) (-2879 (((-108) $) 37)) (-1507 ((|#1| $) 41)) (-1741 (((-108) $) 35)) (-2045 (((-108) $) 14)) (-2586 (((-108) $) 36)) (-2385 (((-1068) $) NIL)) (-3096 (((-108) $) 39)) (-1509 ((|#3| $) 44)) (-4151 (((-1032) $) NIL)) (-3151 (((-108) $) 40)) (-3071 ((|#4| $) 43)) (-1575 ((|#5| $) 45)) (-3197 (((-108) $ $) 34)) (-2545 (($ $ (-522)) 56) (($ $ (-588 (-522))) 58)) (-1991 (((-588 $) $) 22)) (-1431 (($ (-588 $)) 46) (($ |#1|) 47) (($ |#2|) 48) (($ |#3|) 49) (($ |#4|) 50) (($ |#5|) 51)) (-2190 (((-792) $) 23)) (-3212 (($ $) 21)) (-3201 (($ $) 52)) (-1474 (((-108) $) 18)) (-1531 (((-108) $ $) 33)) (-3480 (((-522) $) 54)))
+((-1419 (((-108) $ $) NIL)) (-2415 (((-108) $) 38)) (-1488 ((|#2| $) 42)) (-1355 (((-108) $) 37)) (-1513 ((|#1| $) 41)) (-1430 (((-108) $) 35)) (-2591 (((-108) $) 14)) (-3037 (((-108) $) 36)) (-2311 (((-1068) $) NIL)) (-3871 (((-108) $) 39)) (-1516 ((|#3| $) 44)) (-4174 (((-1032) $) NIL)) (-3186 (((-108) $) 40)) (-3173 ((|#4| $) 43)) (-1610 ((|#5| $) 45)) (-3277 (((-108) $ $) 34)) (-2683 (($ $ (-522)) 56) (($ $ (-588 (-522))) 58)) (-2058 (((-588 $) $) 22)) (-3873 (($ (-588 $)) 46) (($ |#1|) 47) (($ |#2|) 48) (($ |#3|) 49) (($ |#4|) 50) (($ |#5|) 51)) (-2217 (((-792) $) 23)) (-3281 (($ $) 21)) (-3271 (($ $) 52)) (-1519 (((-108) $) 18)) (-1562 (((-108) $ $) 33)) (-3591 (((-522) $) 54)))
(((-1019 |#1| |#2| |#3| |#4| |#5|) (-1017 |#1| |#2| |#3| |#4| |#5|) (-1014) (-1014) (-1014) (-1014) (-1014)) (T -1019))
NIL
(-1017 |#1| |#2| |#3| |#4| |#5|)
-((-2009 (((-1171) $) 23)) (-1464 (($ (-1085) (-409) |#2|) 11)) (-2190 (((-792) $) 16)))
-(((-1020 |#1| |#2|) (-13 (-370) (-10 -8 (-15 -1464 ($ (-1085) (-409) |#2|)))) (-784) (-405 |#1|)) (T -1020))
-((-1464 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-409)) (-4 *5 (-784)) (-5 *1 (-1020 *5 *4)) (-4 *4 (-405 *5)))))
-(-13 (-370) (-10 -8 (-15 -1464 ($ (-1085) (-409) |#2|))))
-((-3407 (((-108) |#5| |#5|) 38)) (-3753 (((-108) |#5| |#5|) 52)) (-1215 (((-108) |#5| (-588 |#5|)) 75) (((-108) |#5| |#5|) 61)) (-3027 (((-108) (-588 |#4|) (-588 |#4|)) 58)) (-3909 (((-108) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) 63)) (-3020 (((-1171)) 33)) (-4041 (((-1171) (-1068) (-1068) (-1068)) 29)) (-1523 (((-588 |#5|) (-588 |#5|)) 82)) (-3742 (((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)))) 80)) (-2025 (((-588 (-2 (|:| -3197 (-588 |#4|)) (|:| -1886 |#5|) (|:| |ineq| (-588 |#4|)))) (-588 |#4|) (-588 |#5|) (-108) (-108)) 102)) (-3441 (((-108) |#5| |#5|) 47)) (-2291 (((-3 (-108) "failed") |#5| |#5|) 71)) (-2075 (((-108) (-588 |#4|) (-588 |#4|)) 57)) (-3370 (((-108) (-588 |#4|) (-588 |#4|)) 59)) (-2123 (((-108) (-588 |#4|) (-588 |#4|)) 60)) (-2492 (((-3 (-2 (|:| -3197 (-588 |#4|)) (|:| -1886 |#5|) (|:| |ineq| (-588 |#4|))) "failed") (-588 |#4|) |#5| (-588 |#4|) (-108) (-108) (-108) (-108) (-108)) 98)) (-2069 (((-588 |#5|) (-588 |#5|)) 43)))
-(((-1021 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4041 ((-1171) (-1068) (-1068) (-1068))) (-15 -3020 ((-1171))) (-15 -3407 ((-108) |#5| |#5|)) (-15 -2069 ((-588 |#5|) (-588 |#5|))) (-15 -3441 ((-108) |#5| |#5|)) (-15 -3753 ((-108) |#5| |#5|)) (-15 -3027 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2075 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -3370 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2123 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2291 ((-3 (-108) "failed") |#5| |#5|)) (-15 -1215 ((-108) |#5| |#5|)) (-15 -1215 ((-108) |#5| (-588 |#5|))) (-15 -1523 ((-588 |#5|) (-588 |#5|))) (-15 -3909 ((-108) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)))) (-15 -3742 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) (-15 -2025 ((-588 (-2 (|:| -3197 (-588 |#4|)) (|:| -1886 |#5|) (|:| |ineq| (-588 |#4|)))) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -2492 ((-3 (-2 (|:| -3197 (-588 |#4|)) (|:| -1886 |#5|) (|:| |ineq| (-588 |#4|))) "failed") (-588 |#4|) |#5| (-588 |#4|) (-108) (-108) (-108) (-108) (-108)))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|)) (T -1021))
-((-2492 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| -3197 (-588 *9)) (|:| -1886 *4) (|:| |ineq| (-588 *9)))) (-5 *1 (-1021 *6 *7 *8 *9 *4)) (-5 *3 (-588 *9)) (-4 *4 (-990 *6 *7 *8 *9)))) (-2025 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-588 *10)) (-5 *5 (-108)) (-4 *10 (-990 *6 *7 *8 *9)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8)) (-5 *2 (-588 (-2 (|:| -3197 (-588 *9)) (|:| -1886 *10) (|:| |ineq| (-588 *9))))) (-5 *1 (-1021 *6 *7 *8 *9 *10)) (-5 *3 (-588 *9)))) (-3742 (*1 *2 *2) (-12 (-5 *2 (-588 (-2 (|:| |val| (-588 *6)) (|:| -1886 *7)))) (-4 *6 (-985 *3 *4 *5)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-1021 *3 *4 *5 *6 *7)))) (-3909 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1886 *8))) (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-990 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *8)))) (-1523 (*1 *2 *2) (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *1 (-1021 *3 *4 *5 *6 *7)))) (-1215 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-1021 *5 *6 *7 *8 *3)))) (-1215 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-2291 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-2123 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-3370 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-2075 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-3027 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-3753 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-3441 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-2069 (*1 *2 *2) (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *1 (-1021 *3 *4 *5 *6 *7)))) (-3407 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-3020 (*1 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171)) (-5 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))) (-4041 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171)) (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
-(-10 -7 (-15 -4041 ((-1171) (-1068) (-1068) (-1068))) (-15 -3020 ((-1171))) (-15 -3407 ((-108) |#5| |#5|)) (-15 -2069 ((-588 |#5|) (-588 |#5|))) (-15 -3441 ((-108) |#5| |#5|)) (-15 -3753 ((-108) |#5| |#5|)) (-15 -3027 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2075 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -3370 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2123 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2291 ((-3 (-108) "failed") |#5| |#5|)) (-15 -1215 ((-108) |#5| |#5|)) (-15 -1215 ((-108) |#5| (-588 |#5|))) (-15 -1523 ((-588 |#5|) (-588 |#5|))) (-15 -3909 ((-108) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)))) (-15 -3742 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) (-15 -2025 ((-588 (-2 (|:| -3197 (-588 |#4|)) (|:| -1886 |#5|) (|:| |ineq| (-588 |#4|)))) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -2492 ((-3 (-2 (|:| -3197 (-588 |#4|)) (|:| -1886 |#5|) (|:| |ineq| (-588 |#4|))) "failed") (-588 |#4|) |#5| (-588 |#4|) (-108) (-108) (-108) (-108) (-108))))
-((-1409 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#5|) 95)) (-3077 (((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) |#4| |#4| |#5|) 71)) (-3970 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5|) 89)) (-3477 (((-588 |#5|) |#4| |#5|) 110)) (-3172 (((-588 |#5|) |#4| |#5|) 117)) (-3548 (((-588 |#5|) |#4| |#5|) 118)) (-2589 (((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|) 96)) (-1779 (((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|) 116)) (-2544 (((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|) 44) (((-108) |#4| |#5|) 52)) (-3963 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) |#3| (-108)) 83) (((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5| (-108) (-108)) 49)) (-1966 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5|) 78)) (-1426 (((-1171)) 35)) (-1637 (((-1171)) 25)) (-1821 (((-1171) (-1068) (-1068) (-1068)) 31)) (-1312 (((-1171) (-1068) (-1068) (-1068)) 20)))
-(((-1022 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1312 ((-1171) (-1068) (-1068) (-1068))) (-15 -1637 ((-1171))) (-15 -1821 ((-1171) (-1068) (-1068) (-1068))) (-15 -1426 ((-1171))) (-15 -3077 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) |#4| |#4| |#5|)) (-15 -3963 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -3963 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) |#3| (-108))) (-15 -1966 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5|)) (-15 -3970 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5|)) (-15 -2544 ((-108) |#4| |#5|)) (-15 -2589 ((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|)) (-15 -3477 ((-588 |#5|) |#4| |#5|)) (-15 -1779 ((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|)) (-15 -3172 ((-588 |#5|) |#4| |#5|)) (-15 -2544 ((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|)) (-15 -3548 ((-588 |#5|) |#4| |#5|)) (-15 -1409 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#5|))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|)) (T -1022))
-((-1409 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3548 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4)) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2544 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1886 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3172 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4)) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-1779 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1886 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3477 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4)) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2589 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1886 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2544 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3970 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-1966 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3963 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1886 *9)))) (-5 *5 (-108)) (-4 *8 (-985 *6 *7 *4)) (-4 *9 (-990 *6 *7 *4 *8)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *4 (-784)) (-5 *2 (-588 (-2 (|:| |val| *8) (|:| -1886 *9)))) (-5 *1 (-1022 *6 *7 *4 *8 *9)))) (-3963 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4)))) (-5 *1 (-1022 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3)))) (-3077 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-1426 (*1 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171)) (-5 *1 (-1022 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))) (-1821 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171)) (-5 *1 (-1022 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-1637 (*1 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171)) (-5 *1 (-1022 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))) (-1312 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171)) (-5 *1 (-1022 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
-(-10 -7 (-15 -1312 ((-1171) (-1068) (-1068) (-1068))) (-15 -1637 ((-1171))) (-15 -1821 ((-1171) (-1068) (-1068) (-1068))) (-15 -1426 ((-1171))) (-15 -3077 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) |#4| |#4| |#5|)) (-15 -3963 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -3963 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) |#3| (-108))) (-15 -1966 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5|)) (-15 -3970 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#4| |#5|)) (-15 -2544 ((-108) |#4| |#5|)) (-15 -2589 ((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|)) (-15 -3477 ((-588 |#5|) |#4| |#5|)) (-15 -1779 ((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|)) (-15 -3172 ((-588 |#5|) |#4| |#5|)) (-15 -2544 ((-588 (-2 (|:| |val| (-108)) (|:| -1886 |#5|))) |#4| |#5|)) (-15 -3548 ((-588 |#5|) |#4| |#5|)) (-15 -1409 ((-588 (-2 (|:| |val| |#4|) (|:| -1886 |#5|))) |#4| |#5|)))
-((-1416 (((-108) $ $) 7)) (-2950 (((-588 (-2 (|:| -1650 $) (|:| -1544 (-588 |#4|)))) (-588 |#4|)) 85)) (-4125 (((-588 $) (-588 |#4|)) 86) (((-588 $) (-588 |#4|) (-108)) 111)) (-4090 (((-588 |#3|) $) 33)) (-2690 (((-108) $) 26)) (-4140 (((-108) $) 17 (|has| |#1| (-514)))) (-3575 (((-108) |#4| $) 101) (((-108) $) 97)) (-3607 ((|#4| |#4| $) 92)) (-3119 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 $))) |#4| $) 126)) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |#3|) 27)) (-4141 (((-108) $ (-708)) 44)) (-1628 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 79)) (-3175 (($) 45 T CONST)) (-3639 (((-108) $) 22 (|has| |#1| (-514)))) (-3982 (((-108) $ $) 24 (|has| |#1| (-514)))) (-3996 (((-108) $ $) 23 (|has| |#1| (-514)))) (-3538 (((-108) $) 25 (|has| |#1| (-514)))) (-2149 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3050 (((-588 |#4|) (-588 |#4|) $) 18 (|has| |#1| (-514)))) (-1787 (((-588 |#4|) (-588 |#4|) $) 19 (|has| |#1| (-514)))) (-1297 (((-3 $ "failed") (-588 |#4|)) 36)) (-1484 (($ (-588 |#4|)) 35)) (-2306 (((-3 $ "failed") $) 82)) (-2806 ((|#4| |#4| $) 89)) (-2333 (($ $) 68 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#4| $) 67 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4238)))) (-3421 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-514)))) (-1934 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-4164 ((|#4| |#4| $) 87)) (-3864 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-2091 (((-2 (|:| -1650 (-588 |#4|)) (|:| -1544 (-588 |#4|))) $) 105)) (-2208 (((-108) |#4| $) 136)) (-3129 (((-108) |#4| $) 133)) (-2198 (((-108) |#4| $) 137) (((-108) $) 134)) (-3837 (((-588 |#4|) $) 52 (|has| $ (-6 -4238)))) (-3341 (((-108) |#4| $) 104) (((-108) $) 103)) (-1521 ((|#3| $) 34)) (-3352 (((-108) $ (-708)) 43)) (-3308 (((-588 |#4|) $) 53 (|has| $ (-6 -4238)))) (-2246 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#4| |#4|) $) 47)) (-2458 (((-588 |#3|) $) 32)) (-1606 (((-108) |#3| $) 31)) (-2720 (((-108) $ (-708)) 42)) (-2385 (((-1068) $) 9)) (-3959 (((-3 |#4| (-588 $)) |#4| |#4| $) 128)) (-1331 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 $))) |#4| |#4| $) 127)) (-1442 (((-3 |#4| "failed") $) 83)) (-2893 (((-588 $) |#4| $) 129)) (-4190 (((-3 (-108) (-588 $)) |#4| $) 132)) (-3878 (((-588 (-2 (|:| |val| (-108)) (|:| -1886 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-2416 (((-588 $) |#4| $) 125) (((-588 $) (-588 |#4|) $) 124) (((-588 $) (-588 |#4|) (-588 $)) 123) (((-588 $) |#4| (-588 $)) 122)) (-2135 (($ |#4| $) 117) (($ (-588 |#4|) $) 116)) (-2242 (((-588 |#4|) $) 107)) (-3409 (((-108) |#4| $) 99) (((-108) $) 95)) (-1451 ((|#4| |#4| $) 90)) (-2123 (((-108) $ $) 110)) (-2039 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-514)))) (-2230 (((-108) |#4| $) 100) (((-108) $) 96)) (-2680 ((|#4| |#4| $) 91)) (-4151 (((-1032) $) 10)) (-2294 (((-3 |#4| "failed") $) 84)) (-1414 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-3307 (((-3 $ "failed") $ |#4|) 78)) (-3719 (($ $ |#4|) 77) (((-588 $) |#4| $) 115) (((-588 $) |#4| (-588 $)) 114) (((-588 $) (-588 |#4|) $) 113) (((-588 $) (-588 |#4|) (-588 $)) 112)) (-3053 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#4|) (-588 |#4|)) 59 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) 57 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) 56 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-1536 (((-108) $ $) 38)) (-3985 (((-108) $) 41)) (-3775 (($) 40)) (-2793 (((-708) $) 106)) (-4168 (((-708) |#4| $) 54 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4238)))) (-2404 (($ $) 39)) (-1431 (((-498) $) 69 (|has| |#4| (-563 (-498))))) (-2201 (($ (-588 |#4|)) 60)) (-2020 (($ $ |#3|) 28)) (-3606 (($ $ |#3|) 30)) (-3968 (($ $) 88)) (-2463 (($ $ |#3|) 29)) (-2190 (((-792) $) 11) (((-588 |#4|) $) 37)) (-1974 (((-708) $) 76 (|has| |#3| (-343)))) (-3989 (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-4212 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) 98)) (-2188 (((-588 $) |#4| $) 121) (((-588 $) |#4| (-588 $)) 120) (((-588 $) (-588 |#4|) $) 119) (((-588 $) (-588 |#4|) (-588 $)) 118)) (-3648 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4238)))) (-2360 (((-588 |#3|) $) 81)) (-3021 (((-108) |#4| $) 135)) (-2351 (((-108) |#3| $) 80)) (-1531 (((-108) $ $) 6)) (-3480 (((-708) $) 46 (|has| $ (-6 -4238)))))
+((-2550 (((-1171) $) 23)) (-1465 (($ (-1085) (-409) |#2|) 11)) (-2217 (((-792) $) 16)))
+(((-1020 |#1| |#2|) (-13 (-370) (-10 -8 (-15 -1465 ($ (-1085) (-409) |#2|)))) (-784) (-405 |#1|)) (T -1020))
+((-1465 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1085)) (-5 *3 (-409)) (-4 *5 (-784)) (-5 *1 (-1020 *5 *4)) (-4 *4 (-405 *5)))))
+(-13 (-370) (-10 -8 (-15 -1465 ($ (-1085) (-409) |#2|))))
+((-3840 (((-108) |#5| |#5|) 38)) (-3130 (((-108) |#5| |#5|) 52)) (-2080 (((-108) |#5| (-588 |#5|)) 75) (((-108) |#5| |#5|) 61)) (-1400 (((-108) (-588 |#4|) (-588 |#4|)) 58)) (-2115 (((-108) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) 63)) (-1324 (((-1171)) 33)) (-4052 (((-1171) (-1068) (-1068) (-1068)) 29)) (-1954 (((-588 |#5|) (-588 |#5|)) 82)) (-3041 (((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)))) 80)) (-2342 (((-588 (-2 (|:| -3277 (-588 |#4|)) (|:| -1974 |#5|) (|:| |ineq| (-588 |#4|)))) (-588 |#4|) (-588 |#5|) (-108) (-108)) 102)) (-3055 (((-108) |#5| |#5|) 47)) (-2494 (((-3 (-108) "failed") |#5| |#5|) 71)) (-4067 (((-108) (-588 |#4|) (-588 |#4|)) 57)) (-3474 (((-108) (-588 |#4|) (-588 |#4|)) 59)) (-1517 (((-108) (-588 |#4|) (-588 |#4|)) 60)) (-3882 (((-3 (-2 (|:| -3277 (-588 |#4|)) (|:| -1974 |#5|) (|:| |ineq| (-588 |#4|))) "failed") (-588 |#4|) |#5| (-588 |#4|) (-108) (-108) (-108) (-108) (-108)) 98)) (-2868 (((-588 |#5|) (-588 |#5|)) 43)))
+(((-1021 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4052 ((-1171) (-1068) (-1068) (-1068))) (-15 -1324 ((-1171))) (-15 -3840 ((-108) |#5| |#5|)) (-15 -2868 ((-588 |#5|) (-588 |#5|))) (-15 -3055 ((-108) |#5| |#5|)) (-15 -3130 ((-108) |#5| |#5|)) (-15 -1400 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -4067 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -3474 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -1517 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2494 ((-3 (-108) "failed") |#5| |#5|)) (-15 -2080 ((-108) |#5| |#5|)) (-15 -2080 ((-108) |#5| (-588 |#5|))) (-15 -1954 ((-588 |#5|) (-588 |#5|))) (-15 -2115 ((-108) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)))) (-15 -3041 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) (-15 -2342 ((-588 (-2 (|:| -3277 (-588 |#4|)) (|:| -1974 |#5|) (|:| |ineq| (-588 |#4|)))) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -3882 ((-3 (-2 (|:| -3277 (-588 |#4|)) (|:| -1974 |#5|) (|:| |ineq| (-588 |#4|))) "failed") (-588 |#4|) |#5| (-588 |#4|) (-108) (-108) (-108) (-108) (-108)))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|)) (T -1021))
+((-3882 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| -3277 (-588 *9)) (|:| -1974 *4) (|:| |ineq| (-588 *9)))) (-5 *1 (-1021 *6 *7 *8 *9 *4)) (-5 *3 (-588 *9)) (-4 *4 (-990 *6 *7 *8 *9)))) (-2342 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-588 *10)) (-5 *5 (-108)) (-4 *10 (-990 *6 *7 *8 *9)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8)) (-5 *2 (-588 (-2 (|:| -3277 (-588 *9)) (|:| -1974 *10) (|:| |ineq| (-588 *9))))) (-5 *1 (-1021 *6 *7 *8 *9 *10)) (-5 *3 (-588 *9)))) (-3041 (*1 *2 *2) (-12 (-5 *2 (-588 (-2 (|:| |val| (-588 *6)) (|:| -1974 *7)))) (-4 *6 (-985 *3 *4 *5)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-1021 *3 *4 *5 *6 *7)))) (-2115 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1974 *8))) (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-990 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *8)))) (-1954 (*1 *2 *2) (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *1 (-1021 *3 *4 *5 *6 *7)))) (-2080 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-1021 *5 *6 *7 *8 *3)))) (-2080 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-2494 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-1517 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-3474 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-4067 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-1400 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-3130 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-3055 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-2868 (*1 *2 *2) (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *1 (-1021 *3 *4 *5 *6 *7)))) (-3840 (*1 *2 *3 *3) (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))) (-1324 (*1 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171)) (-5 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))) (-4052 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171)) (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
+(-10 -7 (-15 -4052 ((-1171) (-1068) (-1068) (-1068))) (-15 -1324 ((-1171))) (-15 -3840 ((-108) |#5| |#5|)) (-15 -2868 ((-588 |#5|) (-588 |#5|))) (-15 -3055 ((-108) |#5| |#5|)) (-15 -3130 ((-108) |#5| |#5|)) (-15 -1400 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -4067 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -3474 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -1517 ((-108) (-588 |#4|) (-588 |#4|))) (-15 -2494 ((-3 (-108) "failed") |#5| |#5|)) (-15 -2080 ((-108) |#5| |#5|)) (-15 -2080 ((-108) |#5| (-588 |#5|))) (-15 -1954 ((-588 |#5|) (-588 |#5|))) (-15 -2115 ((-108) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)))) (-15 -3041 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) (-15 -2342 ((-588 (-2 (|:| -3277 (-588 |#4|)) (|:| -1974 |#5|) (|:| |ineq| (-588 |#4|)))) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -3882 ((-3 (-2 (|:| -3277 (-588 |#4|)) (|:| -1974 |#5|) (|:| |ineq| (-588 |#4|))) "failed") (-588 |#4|) |#5| (-588 |#4|) (-108) (-108) (-108) (-108) (-108))))
+((-2146 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#5|) 95)) (-3685 (((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) |#4| |#4| |#5|) 71)) (-1537 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5|) 89)) (-3341 (((-588 |#5|) |#4| |#5|) 110)) (-3336 (((-588 |#5|) |#4| |#5|) 117)) (-1647 (((-588 |#5|) |#4| |#5|) 118)) (-3057 (((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|) 96)) (-3601 (((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|) 116)) (-3565 (((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|) 44) (((-108) |#4| |#5|) 52)) (-1458 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) |#3| (-108)) 83) (((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5| (-108) (-108)) 49)) (-3046 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5|) 78)) (-2274 (((-1171)) 35)) (-2231 (((-1171)) 25)) (-2168 (((-1171) (-1068) (-1068) (-1068)) 31)) (-1832 (((-1171) (-1068) (-1068) (-1068)) 20)))
+(((-1022 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1832 ((-1171) (-1068) (-1068) (-1068))) (-15 -2231 ((-1171))) (-15 -2168 ((-1171) (-1068) (-1068) (-1068))) (-15 -2274 ((-1171))) (-15 -3685 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) |#4| |#4| |#5|)) (-15 -1458 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -1458 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) |#3| (-108))) (-15 -3046 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5|)) (-15 -1537 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5|)) (-15 -3565 ((-108) |#4| |#5|)) (-15 -3057 ((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|)) (-15 -3341 ((-588 |#5|) |#4| |#5|)) (-15 -3601 ((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|)) (-15 -3336 ((-588 |#5|) |#4| |#5|)) (-15 -3565 ((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|)) (-15 -1647 ((-588 |#5|) |#4| |#5|)) (-15 -2146 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#5|))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-990 |#1| |#2| |#3| |#4|)) (T -1022))
+((-2146 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-1647 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4)) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3565 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1974 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3336 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4)) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3601 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1974 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3341 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4)) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3057 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1974 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3565 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-1537 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-3046 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-1458 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1974 *9)))) (-5 *5 (-108)) (-4 *8 (-985 *6 *7 *4)) (-4 *9 (-990 *6 *7 *4 *8)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *4 (-784)) (-5 *2 (-588 (-2 (|:| |val| *8) (|:| -1974 *9)))) (-5 *1 (-1022 *6 *7 *4 *8 *9)))) (-1458 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4)))) (-5 *1 (-1022 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3)))) (-3685 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))) (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))) (-2274 (*1 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171)) (-5 *1 (-1022 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))) (-2168 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171)) (-5 *1 (-1022 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))) (-2231 (*1 *2) (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171)) (-5 *1 (-1022 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))) (-1832 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171)) (-5 *1 (-1022 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1832 ((-1171) (-1068) (-1068) (-1068))) (-15 -2231 ((-1171))) (-15 -2168 ((-1171) (-1068) (-1068) (-1068))) (-15 -2274 ((-1171))) (-15 -3685 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) |#4| |#4| |#5|)) (-15 -1458 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5| (-108) (-108))) (-15 -1458 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) |#3| (-108))) (-15 -3046 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5|)) (-15 -1537 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#4| |#5|)) (-15 -3565 ((-108) |#4| |#5|)) (-15 -3057 ((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|)) (-15 -3341 ((-588 |#5|) |#4| |#5|)) (-15 -3601 ((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|)) (-15 -3336 ((-588 |#5|) |#4| |#5|)) (-15 -3565 ((-588 (-2 (|:| |val| (-108)) (|:| -1974 |#5|))) |#4| |#5|)) (-15 -1647 ((-588 |#5|) |#4| |#5|)) (-15 -2146 ((-588 (-2 (|:| |val| |#4|) (|:| -1974 |#5|))) |#4| |#5|)))
+((-1419 (((-108) $ $) 7)) (-3829 (((-588 (-2 (|:| -1720 $) (|:| -1566 (-588 |#4|)))) (-588 |#4|)) 85)) (-2510 (((-588 $) (-588 |#4|)) 86) (((-588 $) (-588 |#4|) (-108)) 111)) (-3533 (((-588 |#3|) $) 33)) (-2161 (((-108) $) 26)) (-2702 (((-108) $) 17 (|has| |#1| (-514)))) (-1900 (((-108) |#4| $) 101) (((-108) $) 97)) (-2163 ((|#4| |#4| $) 92)) (-2961 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 $))) |#4| $) 126)) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |#3|) 27)) (-2717 (((-108) $ (-708)) 44)) (-1696 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 79)) (-3367 (($) 45 T CONST)) (-1298 (((-108) $) 22 (|has| |#1| (-514)))) (-1657 (((-108) $ $) 24 (|has| |#1| (-514)))) (-3598 (((-108) $ $) 23 (|has| |#1| (-514)))) (-2818 (((-108) $) 25 (|has| |#1| (-514)))) (-3090 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3461 (((-588 |#4|) (-588 |#4|) $) 18 (|has| |#1| (-514)))) (-3668 (((-588 |#4|) (-588 |#4|) $) 19 (|has| |#1| (-514)))) (-3700 (((-3 $ "failed") (-588 |#4|)) 36)) (-1478 (($ (-588 |#4|)) 35)) (-2352 (((-3 $ "failed") $) 82)) (-2625 ((|#4| |#4| $) 89)) (-2379 (($ $) 68 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#4| $) 67 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4238)))) (-4002 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-514)))) (-1426 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-2918 ((|#4| |#4| $) 87)) (-2153 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-1199 (((-2 (|:| -1720 (-588 |#4|)) (|:| -1566 (-588 |#4|))) $) 105)) (-2396 (((-108) |#4| $) 136)) (-3039 (((-108) |#4| $) 133)) (-2278 (((-108) |#4| $) 137) (((-108) $) 134)) (-2395 (((-588 |#4|) $) 52 (|has| $ (-6 -4238)))) (-1384 (((-108) |#4| $) 104) (((-108) $) 103)) (-1933 ((|#3| $) 34)) (-1480 (((-108) $ (-708)) 43)) (-4084 (((-588 |#4|) $) 53 (|has| $ (-6 -4238)))) (-4176 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#4| |#4|) $) 47)) (-2714 (((-588 |#3|) $) 32)) (-3826 (((-108) |#3| $) 31)) (-3309 (((-108) $ (-708)) 42)) (-2311 (((-1068) $) 9)) (-1418 (((-3 |#4| (-588 $)) |#4| |#4| $) 128)) (-1998 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 $))) |#4| |#4| $) 127)) (-1442 (((-3 |#4| "failed") $) 83)) (-1468 (((-588 $) |#4| $) 129)) (-1892 (((-3 (-108) (-588 $)) |#4| $) 132)) (-1862 (((-588 (-2 (|:| |val| (-108)) (|:| -1974 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-2251 (((-588 $) |#4| $) 125) (((-588 $) (-588 |#4|) $) 124) (((-588 $) (-588 |#4|) (-588 $)) 123) (((-588 $) |#4| (-588 $)) 122)) (-2953 (($ |#4| $) 117) (($ (-588 |#4|) $) 116)) (-4138 (((-588 |#4|) $) 107)) (-3864 (((-108) |#4| $) 99) (((-108) $) 95)) (-2556 ((|#4| |#4| $) 90)) (-1517 (((-108) $ $) 110)) (-2507 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-514)))) (-3060 (((-108) |#4| $) 100) (((-108) $) 96)) (-3896 ((|#4| |#4| $) 91)) (-4174 (((-1032) $) 10)) (-2337 (((-3 |#4| "failed") $) 84)) (-2187 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-4078 (((-3 $ "failed") $ |#4|) 78)) (-3934 (($ $ |#4|) 77) (((-588 $) |#4| $) 115) (((-588 $) |#4| (-588 $)) 114) (((-588 $) (-588 |#4|) $) 113) (((-588 $) (-588 |#4|) (-588 $)) 112)) (-3487 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#4|) (-588 |#4|)) 59 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) 57 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) 56 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-2065 (((-108) $ $) 38)) (-3494 (((-108) $) 41)) (-3298 (($) 40)) (-2487 (((-708) $) 106)) (-4187 (((-708) |#4| $) 54 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4238)))) (-2463 (($ $) 39)) (-3873 (((-498) $) 69 (|has| |#4| (-563 (-498))))) (-2227 (($ (-588 |#4|)) 60)) (-2271 (($ $ |#3|) 28)) (-2154 (($ $ |#3|) 30)) (-1524 (($ $) 88)) (-2773 (($ $ |#3|) 29)) (-2217 (((-792) $) 11) (((-588 |#4|) $) 37)) (-3111 (((-708) $) 76 (|has| |#3| (-343)))) (-3538 (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-2102 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) 98)) (-3386 (((-588 $) |#4| $) 121) (((-588 $) |#4| (-588 $)) 120) (((-588 $) (-588 |#4|) $) 119) (((-588 $) (-588 |#4|) (-588 $)) 118)) (-1381 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4238)))) (-1982 (((-588 |#3|) $) 81)) (-1336 (((-108) |#4| $) 135)) (-1711 (((-108) |#3| $) 80)) (-1562 (((-108) $ $) 6)) (-3591 (((-708) $) 46 (|has| $ (-6 -4238)))))
(((-1023 |#1| |#2| |#3| |#4|) (-1197) (-426) (-730) (-784) (-985 |t#1| |t#2| |t#3|)) (T -1023))
NIL
(-13 (-990 |t#1| |t#2| |t#3| |t#4|))
(((-33) . T) ((-97) . T) ((-562 (-588 |#4|)) . T) ((-562 (-792)) . T) ((-139 |#4|) . T) ((-563 (-498)) |has| |#4| (-563 (-498))) ((-285 |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))) ((-461 |#4|) . T) ((-483 |#4| |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))) ((-903 |#1| |#2| |#3| |#4|) . T) ((-990 |#1| |#2| |#3| |#4|) . T) ((-1014) . T) ((-1114 |#1| |#2| |#3| |#4|) . T) ((-1120) . T))
-((-1873 (((-588 (-522)) (-522) (-522) (-522)) 22)) (-3303 (((-588 (-522)) (-522) (-522) (-522)) 12)) (-1987 (((-588 (-522)) (-522) (-522) (-522)) 18)) (-1899 (((-522) (-522) (-522)) 9)) (-1457 (((-1166 (-522)) (-588 (-522)) (-1166 (-522)) (-522)) 45) (((-1166 (-522)) (-1166 (-522)) (-1166 (-522)) (-522)) 40)) (-3497 (((-588 (-522)) (-588 (-522)) (-588 (-522)) (-108)) 27)) (-2220 (((-628 (-522)) (-588 (-522)) (-588 (-522)) (-628 (-522))) 44)) (-4091 (((-628 (-522)) (-588 (-522)) (-588 (-522))) 32)) (-3452 (((-588 (-628 (-522))) (-588 (-522))) 34)) (-1291 (((-588 (-522)) (-588 (-522)) (-588 (-522)) (-628 (-522))) 47)) (-1804 (((-628 (-522)) (-588 (-522)) (-588 (-522)) (-588 (-522))) 55)))
-(((-1024) (-10 -7 (-15 -1804 ((-628 (-522)) (-588 (-522)) (-588 (-522)) (-588 (-522)))) (-15 -1291 ((-588 (-522)) (-588 (-522)) (-588 (-522)) (-628 (-522)))) (-15 -3452 ((-588 (-628 (-522))) (-588 (-522)))) (-15 -4091 ((-628 (-522)) (-588 (-522)) (-588 (-522)))) (-15 -2220 ((-628 (-522)) (-588 (-522)) (-588 (-522)) (-628 (-522)))) (-15 -3497 ((-588 (-522)) (-588 (-522)) (-588 (-522)) (-108))) (-15 -1457 ((-1166 (-522)) (-1166 (-522)) (-1166 (-522)) (-522))) (-15 -1457 ((-1166 (-522)) (-588 (-522)) (-1166 (-522)) (-522))) (-15 -1899 ((-522) (-522) (-522))) (-15 -1987 ((-588 (-522)) (-522) (-522) (-522))) (-15 -3303 ((-588 (-522)) (-522) (-522) (-522))) (-15 -1873 ((-588 (-522)) (-522) (-522) (-522))))) (T -1024))
-((-1873 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-1024)) (-5 *3 (-522)))) (-3303 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-1024)) (-5 *3 (-522)))) (-1987 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-1024)) (-5 *3 (-522)))) (-1899 (*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-1024)))) (-1457 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1166 (-522))) (-5 *3 (-588 (-522))) (-5 *4 (-522)) (-5 *1 (-1024)))) (-1457 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1166 (-522))) (-5 *3 (-522)) (-5 *1 (-1024)))) (-3497 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-588 (-522))) (-5 *3 (-108)) (-5 *1 (-1024)))) (-2220 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-628 (-522))) (-5 *3 (-588 (-522))) (-5 *1 (-1024)))) (-4091 (*1 *2 *3 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-1024)))) (-3452 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-588 (-628 (-522)))) (-5 *1 (-1024)))) (-1291 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-588 (-522))) (-5 *3 (-628 (-522))) (-5 *1 (-1024)))) (-1804 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-1024)))))
-(-10 -7 (-15 -1804 ((-628 (-522)) (-588 (-522)) (-588 (-522)) (-588 (-522)))) (-15 -1291 ((-588 (-522)) (-588 (-522)) (-588 (-522)) (-628 (-522)))) (-15 -3452 ((-588 (-628 (-522))) (-588 (-522)))) (-15 -4091 ((-628 (-522)) (-588 (-522)) (-588 (-522)))) (-15 -2220 ((-628 (-522)) (-588 (-522)) (-588 (-522)) (-628 (-522)))) (-15 -3497 ((-588 (-522)) (-588 (-522)) (-588 (-522)) (-108))) (-15 -1457 ((-1166 (-522)) (-1166 (-522)) (-1166 (-522)) (-522))) (-15 -1457 ((-1166 (-522)) (-588 (-522)) (-1166 (-522)) (-522))) (-15 -1899 ((-522) (-522) (-522))) (-15 -1987 ((-588 (-522)) (-522) (-522) (-522))) (-15 -3303 ((-588 (-522)) (-522) (-522) (-522))) (-15 -1873 ((-588 (-522)) (-522) (-522) (-522))))
-((-3510 (($ $ (-850)) 12)) (** (($ $ (-850)) 10)))
-(((-1025 |#1|) (-10 -8 (-15 -3510 (|#1| |#1| (-850))) (-15 ** (|#1| |#1| (-850)))) (-1026)) (T -1025))
-NIL
-(-10 -8 (-15 -3510 (|#1| |#1| (-850))) (-15 ** (|#1| |#1| (-850))))
-((-1416 (((-108) $ $) 7)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-3510 (($ $ (-850)) 13)) (-1531 (((-108) $ $) 6)) (** (($ $ (-850)) 14)) (* (($ $ $) 15)))
+((-2779 (((-588 (-522)) (-522) (-522) (-522)) 22)) (-4050 (((-588 (-522)) (-522) (-522) (-522)) 12)) (-3197 (((-588 (-522)) (-522) (-522) (-522)) 18)) (-4155 (((-522) (-522) (-522)) 9)) (-2621 (((-1166 (-522)) (-588 (-522)) (-1166 (-522)) (-522)) 45) (((-1166 (-522)) (-1166 (-522)) (-1166 (-522)) (-522)) 40)) (-2343 (((-588 (-522)) (-588 (-522)) (-588 (-522)) (-108)) 27)) (-3910 (((-628 (-522)) (-588 (-522)) (-588 (-522)) (-628 (-522))) 44)) (-3324 (((-628 (-522)) (-588 (-522)) (-588 (-522))) 32)) (-3145 (((-588 (-628 (-522))) (-588 (-522))) 34)) (-1636 (((-588 (-522)) (-588 (-522)) (-588 (-522)) (-628 (-522))) 47)) (-3807 (((-628 (-522)) (-588 (-522)) (-588 (-522)) (-588 (-522))) 55)))
+(((-1024) (-10 -7 (-15 -3807 ((-628 (-522)) (-588 (-522)) (-588 (-522)) (-588 (-522)))) (-15 -1636 ((-588 (-522)) (-588 (-522)) (-588 (-522)) (-628 (-522)))) (-15 -3145 ((-588 (-628 (-522))) (-588 (-522)))) (-15 -3324 ((-628 (-522)) (-588 (-522)) (-588 (-522)))) (-15 -3910 ((-628 (-522)) (-588 (-522)) (-588 (-522)) (-628 (-522)))) (-15 -2343 ((-588 (-522)) (-588 (-522)) (-588 (-522)) (-108))) (-15 -2621 ((-1166 (-522)) (-1166 (-522)) (-1166 (-522)) (-522))) (-15 -2621 ((-1166 (-522)) (-588 (-522)) (-1166 (-522)) (-522))) (-15 -4155 ((-522) (-522) (-522))) (-15 -3197 ((-588 (-522)) (-522) (-522) (-522))) (-15 -4050 ((-588 (-522)) (-522) (-522) (-522))) (-15 -2779 ((-588 (-522)) (-522) (-522) (-522))))) (T -1024))
+((-2779 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-1024)) (-5 *3 (-522)))) (-4050 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-1024)) (-5 *3 (-522)))) (-3197 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-1024)) (-5 *3 (-522)))) (-4155 (*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-1024)))) (-2621 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1166 (-522))) (-5 *3 (-588 (-522))) (-5 *4 (-522)) (-5 *1 (-1024)))) (-2621 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1166 (-522))) (-5 *3 (-522)) (-5 *1 (-1024)))) (-2343 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-588 (-522))) (-5 *3 (-108)) (-5 *1 (-1024)))) (-3910 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-628 (-522))) (-5 *3 (-588 (-522))) (-5 *1 (-1024)))) (-3324 (*1 *2 *3 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-1024)))) (-3145 (*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-588 (-628 (-522)))) (-5 *1 (-1024)))) (-1636 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-588 (-522))) (-5 *3 (-628 (-522))) (-5 *1 (-1024)))) (-3807 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-1024)))))
+(-10 -7 (-15 -3807 ((-628 (-522)) (-588 (-522)) (-588 (-522)) (-588 (-522)))) (-15 -1636 ((-588 (-522)) (-588 (-522)) (-588 (-522)) (-628 (-522)))) (-15 -3145 ((-588 (-628 (-522))) (-588 (-522)))) (-15 -3324 ((-628 (-522)) (-588 (-522)) (-588 (-522)))) (-15 -3910 ((-628 (-522)) (-588 (-522)) (-588 (-522)) (-628 (-522)))) (-15 -2343 ((-588 (-522)) (-588 (-522)) (-588 (-522)) (-108))) (-15 -2621 ((-1166 (-522)) (-1166 (-522)) (-1166 (-522)) (-522))) (-15 -2621 ((-1166 (-522)) (-588 (-522)) (-1166 (-522)) (-522))) (-15 -4155 ((-522) (-522) (-522))) (-15 -3197 ((-588 (-522)) (-522) (-522) (-522))) (-15 -4050 ((-588 (-522)) (-522) (-522) (-522))) (-15 -2779 ((-588 (-522)) (-522) (-522) (-522))))
+((-3622 (($ $ (-850)) 12)) (** (($ $ (-850)) 10)))
+(((-1025 |#1|) (-10 -8 (-15 -3622 (|#1| |#1| (-850))) (-15 ** (|#1| |#1| (-850)))) (-1026)) (T -1025))
+NIL
+(-10 -8 (-15 -3622 (|#1| |#1| (-850))) (-15 ** (|#1| |#1| (-850))))
+((-1419 (((-108) $ $) 7)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-3622 (($ $ (-850)) 13)) (-1562 (((-108) $ $) 6)) (** (($ $ (-850)) 14)) (* (($ $ $) 15)))
(((-1026) (-1197)) (T -1026))
-((* (*1 *1 *1 *1) (-4 *1 (-1026))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1026)) (-5 *2 (-850)))) (-3510 (*1 *1 *1 *2) (-12 (-4 *1 (-1026)) (-5 *2 (-850)))))
-(-13 (-1014) (-10 -8 (-15 * ($ $ $)) (-15 ** ($ $ (-850))) (-15 -3510 ($ $ (-850)))))
+((* (*1 *1 *1 *1) (-4 *1 (-1026))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1026)) (-5 *2 (-850)))) (-3622 (*1 *1 *1 *2) (-12 (-4 *1 (-1026)) (-5 *2 (-850)))))
+(-13 (-1014) (-10 -8 (-15 * ($ $ $)) (-15 ** ($ $ (-850))) (-15 -3622 ($ $ (-850)))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL (|has| |#3| (-1014)))) (-2250 (((-108) $) NIL (|has| |#3| (-124)))) (-2468 (($ (-850)) NIL (|has| |#3| (-971)))) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1210 (($ $ $) NIL (|has| |#3| (-730)))) (-1233 (((-3 $ "failed") $ $) NIL (|has| |#3| (-124)))) (-4141 (((-108) $ (-708)) NIL)) (-1629 (((-708)) NIL (|has| |#3| (-343)))) (-1341 (((-522) $) NIL (|has| |#3| (-782)))) (-2379 ((|#3| $ (-522) |#3|) NIL (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (-12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1014)))) (-1484 (((-522) $) NIL (-12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014)))) (((-382 (-522)) $) NIL (-12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014)))) ((|#3| $) NIL (|has| |#3| (-1014)))) (-2096 (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#3| (-584 (-522))) (|has| |#3| (-971)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#3| (-584 (-522))) (|has| |#3| (-971)))) (((-2 (|:| -1222 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 $) (-1166 $)) NIL (|has| |#3| (-971))) (((-628 |#3|) (-628 $)) NIL (|has| |#3| (-971)))) (-2682 (((-3 $ "failed") $) NIL (|has| |#3| (-971)))) (-3255 (($) NIL (|has| |#3| (-343)))) (-3854 ((|#3| $ (-522) |#3|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#3| $ (-522)) 12)) (-3687 (((-108) $) NIL (|has| |#3| (-782)))) (-3837 (((-588 |#3|) $) NIL (|has| $ (-6 -4238)))) (-2782 (((-108) $) NIL (|has| |#3| (-971)))) (-2556 (((-108) $) NIL (|has| |#3| (-782)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (-3708 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-3308 (((-588 |#3|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (-3708 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-3838 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#3| |#3|) $) NIL)) (-2120 (((-850) $) NIL (|has| |#3| (-343)))) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#3| (-1014)))) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-2717 (($ (-850)) NIL (|has| |#3| (-343)))) (-4151 (((-1032) $) NIL (|has| |#3| (-1014)))) (-2294 ((|#3| $) NIL (|has| (-522) (-784)))) (-2602 (($ $ |#3|) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#3|))) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-270 |#3|)) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-588 |#3|) (-588 |#3|)) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-1525 (((-588 |#3|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#3| $ (-522) |#3|) NIL) ((|#3| $ (-522)) NIL)) (-1883 ((|#3| $ $) NIL (|has| |#3| (-971)))) (-1962 (($ (-1166 |#3|)) NIL)) (-4078 (((-126)) NIL (|has| |#3| (-338)))) (-2157 (($ $) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1 |#3| |#3|) (-708)) NIL (|has| |#3| (-971))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-971)))) (-4168 (((-708) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238))) (((-708) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-2404 (($ $) NIL)) (-2190 (((-1166 |#3|) $) NIL) (($ (-522)) NIL (-3708 (-12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014))) (|has| |#3| (-971)))) (($ (-382 (-522))) NIL (-12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014)))) (($ |#3|) NIL (|has| |#3| (-1014))) (((-792) $) NIL (|has| |#3| (-562 (-792))))) (-2323 (((-708)) NIL (|has| |#3| (-971)))) (-3648 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-2241 (($ $) NIL (|has| |#3| (-782)))) (-3510 (($ $ (-708)) NIL (|has| |#3| (-971))) (($ $ (-850)) NIL (|has| |#3| (-971)))) (-3566 (($) NIL (|has| |#3| (-124)) CONST)) (-3577 (($) NIL (|has| |#3| (-971)) CONST)) (-2213 (($ $) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1 |#3| |#3|) (-708)) NIL (|has| |#3| (-971))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-971)))) (-1574 (((-108) $ $) NIL (-3708 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1558 (((-108) $ $) NIL (-3708 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1531 (((-108) $ $) NIL (|has| |#3| (-1014)))) (-1566 (((-108) $ $) NIL (-3708 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1549 (((-108) $ $) 17 (-3708 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1620 (($ $ |#3|) NIL (|has| |#3| (-338)))) (-1612 (($ $ $) NIL (|has| |#3| (-971))) (($ $) NIL (|has| |#3| (-971)))) (-1602 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-708)) NIL (|has| |#3| (-971))) (($ $ (-850)) NIL (|has| |#3| (-971)))) (* (($ $ $) NIL (|has| |#3| (-971))) (($ (-522) $) NIL (|has| |#3| (-971))) (($ $ |#3|) NIL (|has| |#3| (-664))) (($ |#3| $) NIL (|has| |#3| (-664))) (($ (-708) $) NIL (|has| |#3| (-124))) (($ (-850) $) NIL (|has| |#3| (-25)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL (|has| |#3| (-1014)))) (-2944 (((-108) $) NIL (|has| |#3| (-124)))) (-2826 (($ (-850)) NIL (|has| |#3| (-971)))) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1827 (($ $ $) NIL (|has| |#3| (-730)))) (-2265 (((-3 $ "failed") $ $) NIL (|has| |#3| (-124)))) (-2717 (((-108) $ (-708)) NIL)) (-1685 (((-708)) NIL (|has| |#3| (-343)))) (-3355 (((-522) $) NIL (|has| |#3| (-782)))) (-2437 ((|#3| $ (-522) |#3|) NIL (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (-12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1014)))) (-1478 (((-522) $) NIL (-12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014)))) (((-382 (-522)) $) NIL (-12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014)))) ((|#3| $) NIL (|has| |#3| (-1014)))) (-1226 (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#3| (-584 (-522))) (|has| |#3| (-971)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#3| (-584 (-522))) (|has| |#3| (-971)))) (((-2 (|:| -2149 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 $) (-1166 $)) NIL (|has| |#3| (-971))) (((-628 |#3|) (-628 $)) NIL (|has| |#3| (-971)))) (-3920 (((-3 $ "failed") $) NIL (|has| |#3| (-971)))) (-3344 (($) NIL (|has| |#3| (-343)))) (-2411 ((|#3| $ (-522) |#3|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#3| $ (-522)) 12)) (-3603 (((-108) $) NIL (|has| |#3| (-782)))) (-2395 (((-588 |#3|) $) NIL (|has| $ (-6 -4238)))) (-2859 (((-108) $) NIL (|has| |#3| (-971)))) (-3740 (((-108) $) NIL (|has| |#3| (-782)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (-3844 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-4084 (((-588 |#3|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (-3844 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-2397 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#3| |#3|) $) NIL)) (-1475 (((-850) $) NIL (|has| |#3| (-343)))) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#3| (-1014)))) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-2882 (($ (-850)) NIL (|has| |#3| (-343)))) (-4174 (((-1032) $) NIL (|has| |#3| (-1014)))) (-2337 ((|#3| $) NIL (|has| (-522) (-784)))) (-1972 (($ $ |#3|) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#3|))) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-270 |#3|)) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014)))) (($ $ (-588 |#3|) (-588 |#3|)) NIL (-12 (|has| |#3| (-285 |#3|)) (|has| |#3| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-1973 (((-588 |#3|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#3| $ (-522) |#3|) NIL) ((|#3| $ (-522)) NIL)) (-4024 ((|#3| $ $) NIL (|has| |#3| (-971)))) (-2041 (($ (-1166 |#3|)) NIL)) (-3222 (((-126)) NIL (|has| |#3| (-338)))) (-2731 (($ $) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1 |#3| |#3|) (-708)) NIL (|has| |#3| (-971))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-971)))) (-4187 (((-708) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238))) (((-708) |#3| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#3| (-1014))))) (-2463 (($ $) NIL)) (-2217 (((-1166 |#3|) $) NIL) (($ (-522)) NIL (-3844 (-12 (|has| |#3| (-962 (-522))) (|has| |#3| (-1014))) (|has| |#3| (-971)))) (($ (-382 (-522))) NIL (-12 (|has| |#3| (-962 (-382 (-522)))) (|has| |#3| (-1014)))) (($ |#3|) NIL (|has| |#3| (-1014))) (((-792) $) NIL (|has| |#3| (-562 (-792))))) (-2742 (((-708)) NIL (|has| |#3| (-971)))) (-1381 (((-108) (-1 (-108) |#3|) $) NIL (|has| $ (-6 -4238)))) (-4126 (($ $) NIL (|has| |#3| (-782)))) (-3622 (($ $ (-708)) NIL (|has| |#3| (-971))) (($ $ (-850)) NIL (|has| |#3| (-971)))) (-3697 (($) NIL (|has| |#3| (-124)) CONST)) (-3709 (($) NIL (|has| |#3| (-971)) CONST)) (-2252 (($ $) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971)))) (($ $ (-708)) NIL (-12 (|has| |#3| (-210)) (|has| |#3| (-971)))) (($ $ (-1085)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#3| (-829 (-1085))) (|has| |#3| (-971)))) (($ $ (-1 |#3| |#3|) (-708)) NIL (|has| |#3| (-971))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-971)))) (-1623 (((-108) $ $) NIL (-3844 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1597 (((-108) $ $) NIL (-3844 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1562 (((-108) $ $) NIL (|has| |#3| (-1014)))) (-1609 (((-108) $ $) NIL (-3844 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1587 (((-108) $ $) 17 (-3844 (|has| |#3| (-730)) (|has| |#3| (-782))))) (-1682 (($ $ |#3|) NIL (|has| |#3| (-338)))) (-1672 (($ $ $) NIL (|has| |#3| (-971))) (($ $) NIL (|has| |#3| (-971)))) (-1661 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-708)) NIL (|has| |#3| (-971))) (($ $ (-850)) NIL (|has| |#3| (-971)))) (* (($ $ $) NIL (|has| |#3| (-971))) (($ (-522) $) NIL (|has| |#3| (-971))) (($ $ |#3|) NIL (|has| |#3| (-664))) (($ |#3| $) NIL (|has| |#3| (-664))) (($ (-708) $) NIL (|has| |#3| (-124))) (($ (-850) $) NIL (|has| |#3| (-25)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-1027 |#1| |#2| |#3|) (-215 |#1| |#3|) (-708) (-708) (-730)) (T -1027))
NIL
(-215 |#1| |#3|)
-((-3356 (((-588 (-1139 |#2| |#1|)) (-1139 |#2| |#1|) (-1139 |#2| |#1|)) 37)) (-3124 (((-522) (-1139 |#2| |#1|)) 68 (|has| |#1| (-426)))) (-1589 (((-522) (-1139 |#2| |#1|)) 54)) (-3104 (((-588 (-1139 |#2| |#1|)) (-1139 |#2| |#1|) (-1139 |#2| |#1|)) 45)) (-3661 (((-522) (-1139 |#2| |#1|) (-1139 |#2| |#1|)) 56 (|has| |#1| (-426)))) (-1418 (((-588 |#1|) (-1139 |#2| |#1|) (-1139 |#2| |#1|)) 48)) (-2092 (((-522) (-1139 |#2| |#1|) (-1139 |#2| |#1|)) 53)))
-(((-1028 |#1| |#2|) (-10 -7 (-15 -3356 ((-588 (-1139 |#2| |#1|)) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -3104 ((-588 (-1139 |#2| |#1|)) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -1418 ((-588 |#1|) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -2092 ((-522) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -1589 ((-522) (-1139 |#2| |#1|))) (IF (|has| |#1| (-426)) (PROGN (-15 -3661 ((-522) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -3124 ((-522) (-1139 |#2| |#1|)))) |%noBranch|)) (-757) (-1085)) (T -1028))
-((-3124 (*1 *2 *3) (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-426)) (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))) (-3661 (*1 *2 *3 *3) (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-426)) (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))) (-1589 (*1 *2 *3) (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))) (-2092 (*1 *2 *3 *3) (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))) (-1418 (*1 *2 *3 *3) (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-588 *4)) (-5 *1 (-1028 *4 *5)))) (-3104 (*1 *2 *3 *3) (-12 (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-588 (-1139 *5 *4))) (-5 *1 (-1028 *4 *5)) (-5 *3 (-1139 *5 *4)))) (-3356 (*1 *2 *3 *3) (-12 (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-588 (-1139 *5 *4))) (-5 *1 (-1028 *4 *5)) (-5 *3 (-1139 *5 *4)))))
-(-10 -7 (-15 -3356 ((-588 (-1139 |#2| |#1|)) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -3104 ((-588 (-1139 |#2| |#1|)) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -1418 ((-588 |#1|) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -2092 ((-522) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -1589 ((-522) (-1139 |#2| |#1|))) (IF (|has| |#1| (-426)) (PROGN (-15 -3661 ((-522) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -3124 ((-522) (-1139 |#2| |#1|)))) |%noBranch|))
-((-1341 (((-3 (-522) "failed") |#2| (-1085) |#2| (-1068)) 16) (((-3 (-522) "failed") |#2| (-1085) (-777 |#2|)) 14) (((-3 (-522) "failed") |#2|) 51)))
-(((-1029 |#1| |#2|) (-10 -7 (-15 -1341 ((-3 (-522) "failed") |#2|)) (-15 -1341 ((-3 (-522) "failed") |#2| (-1085) (-777 |#2|))) (-15 -1341 ((-3 (-522) "failed") |#2| (-1085) |#2| (-1068)))) (-13 (-514) (-784) (-962 (-522)) (-584 (-522)) (-426)) (-13 (-27) (-1106) (-405 |#1|))) (T -1029))
-((-1341 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-1068)) (-4 *6 (-13 (-514) (-784) (-962 *2) (-584 *2) (-426))) (-5 *2 (-522)) (-5 *1 (-1029 *6 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *6))))) (-1341 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-777 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-514) (-784) (-962 *2) (-584 *2) (-426))) (-5 *2 (-522)) (-5 *1 (-1029 *6 *3)))) (-1341 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-514) (-784) (-962 *2) (-584 *2) (-426))) (-5 *2 (-522)) (-5 *1 (-1029 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))))
-(-10 -7 (-15 -1341 ((-3 (-522) "failed") |#2|)) (-15 -1341 ((-3 (-522) "failed") |#2| (-1085) (-777 |#2|))) (-15 -1341 ((-3 (-522) "failed") |#2| (-1085) |#2| (-1068))))
-((-1341 (((-3 (-522) "failed") (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|)) (-1068)) 34) (((-3 (-522) "failed") (-382 (-881 |#1|)) (-1085) (-777 (-382 (-881 |#1|)))) 29) (((-3 (-522) "failed") (-382 (-881 |#1|))) 12)))
-(((-1030 |#1|) (-10 -7 (-15 -1341 ((-3 (-522) "failed") (-382 (-881 |#1|)))) (-15 -1341 ((-3 (-522) "failed") (-382 (-881 |#1|)) (-1085) (-777 (-382 (-881 |#1|))))) (-15 -1341 ((-3 (-522) "failed") (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|)) (-1068)))) (-426)) (T -1030))
-((-1341 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-382 (-881 *6))) (-5 *4 (-1085)) (-5 *5 (-1068)) (-4 *6 (-426)) (-5 *2 (-522)) (-5 *1 (-1030 *6)))) (-1341 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-777 (-382 (-881 *6)))) (-5 *3 (-382 (-881 *6))) (-4 *6 (-426)) (-5 *2 (-522)) (-5 *1 (-1030 *6)))) (-1341 (*1 *2 *3) (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-426)) (-5 *2 (-522)) (-5 *1 (-1030 *4)))))
-(-10 -7 (-15 -1341 ((-3 (-522) "failed") (-382 (-881 |#1|)))) (-15 -1341 ((-3 (-522) "failed") (-382 (-881 |#1|)) (-1085) (-777 (-382 (-881 |#1|))))) (-15 -1341 ((-3 (-522) "failed") (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|)) (-1068))))
-((-3245 (((-291 (-522)) (-47)) 11)))
-(((-1031) (-10 -7 (-15 -3245 ((-291 (-522)) (-47))))) (T -1031))
-((-3245 (*1 *2 *3) (-12 (-5 *3 (-47)) (-5 *2 (-291 (-522))) (-5 *1 (-1031)))))
-(-10 -7 (-15 -3245 ((-291 (-522)) (-47))))
-((-1416 (((-108) $ $) NIL)) (-1501 (($ $) 41)) (-2250 (((-108) $) 65)) (-3349 (($ $ $) 48)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 84)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-3871 (($ $ $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3481 (($ $ $ $) 74)) (-3119 (($ $) NIL)) (-3450 (((-393 $) $) NIL)) (-1687 (((-108) $ $) NIL)) (-1341 (((-522) $) NIL)) (-1662 (($ $ $) 71)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL)) (-1484 (((-522) $) NIL)) (-2277 (($ $ $) 59)) (-2096 (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 78) (((-628 (-522)) (-628 $)) 28)) (-2682 (((-3 $ "failed") $) NIL)) (-1664 (((-3 (-382 (-522)) "failed") $) NIL)) (-1770 (((-108) $) NIL)) (-1492 (((-382 (-522)) $) NIL)) (-3255 (($) 81) (($ $) 82)) (-2254 (($ $ $) 58)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL)) (-2813 (((-108) $) NIL)) (-2676 (($ $ $ $) NIL)) (-2339 (($ $ $) 79)) (-3687 (((-108) $) NIL)) (-3219 (($ $ $) NIL)) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL)) (-2782 (((-108) $) 66)) (-2591 (((-108) $) 64)) (-2401 (($ $) 42)) (-3004 (((-3 $ "failed") $) NIL)) (-2556 (((-108) $) 75)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1335 (($ $ $ $) 72)) (-2814 (($ $ $) 68) (($) 39)) (-2446 (($ $ $) 67) (($) 38)) (-3893 (($ $) NIL)) (-2517 (($ $) 70)) (-2224 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2385 (((-1068) $) NIL)) (-2341 (($ $ $) NIL)) (-3802 (($) NIL T CONST)) (-2957 (($ $) 50)) (-4151 (((-1032) $) NIL) (($ $) 69)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2259 (($ $ $) 62) (($ (-588 $)) NIL)) (-2868 (($ $) NIL)) (-1916 (((-393 $) $) NIL)) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL)) (-2232 (((-3 $ "failed") $ $) NIL)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-1263 (((-108) $) NIL)) (-3730 (((-708) $) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 61)) (-2157 (($ $ (-708)) NIL) (($ $) NIL)) (-3056 (($ $) 51)) (-2404 (($ $) NIL)) (-1431 (((-522) $) 32) (((-498) $) NIL) (((-821 (-522)) $) NIL) (((-354) $) NIL) (((-202) $) NIL)) (-2190 (((-792) $) 31) (($ (-522)) 80) (($ $) NIL) (($ (-522)) 80)) (-2323 (((-708)) NIL)) (-3558 (((-108) $ $) NIL)) (-1480 (($ $ $) NIL)) (-3355 (($) 37)) (-3958 (((-108) $ $) NIL)) (-4004 (($ $ $ $) 73)) (-2241 (($ $) 63)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-2767 (($ $ $) 44)) (-3566 (($) 35 T CONST)) (-3506 (($ $ $) 47)) (-3577 (($) 36 T CONST)) (-4149 (((-1068) $) 21) (((-1068) $ (-108)) 23) (((-1171) (-759) $) 24) (((-1171) (-759) $ (-108)) 25)) (-3517 (($ $) 45)) (-2213 (($ $ (-708)) NIL) (($ $) NIL)) (-3498 (($ $ $) 46)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 40)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 49)) (-2324 (($ $ $) 43)) (-1612 (($ $) 52) (($ $ $) 54)) (-1602 (($ $ $) 53)) (** (($ $ (-850)) NIL) (($ $ (-708)) 57)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 34) (($ $ $) 55)))
-(((-1032) (-13 (-507) (-603) (-765) (-10 -8 (-6 -4225) (-6 -4230) (-6 -4226) (-15 -2446 ($)) (-15 -2814 ($)) (-15 -2401 ($ $)) (-15 -1501 ($ $)) (-15 -2324 ($ $ $)) (-15 -2767 ($ $ $)) (-15 -3349 ($ $ $)) (-15 -3517 ($ $)) (-15 -3498 ($ $ $)) (-15 -3506 ($ $ $))))) (T -1032))
-((-2767 (*1 *1 *1 *1) (-5 *1 (-1032))) (-2324 (*1 *1 *1 *1) (-5 *1 (-1032))) (-1501 (*1 *1 *1) (-5 *1 (-1032))) (-2446 (*1 *1) (-5 *1 (-1032))) (-2814 (*1 *1) (-5 *1 (-1032))) (-2401 (*1 *1 *1) (-5 *1 (-1032))) (-3349 (*1 *1 *1 *1) (-5 *1 (-1032))) (-3517 (*1 *1 *1) (-5 *1 (-1032))) (-3498 (*1 *1 *1 *1) (-5 *1 (-1032))) (-3506 (*1 *1 *1 *1) (-5 *1 (-1032))))
-(-13 (-507) (-603) (-765) (-10 -8 (-6 -4225) (-6 -4230) (-6 -4226) (-15 -2446 ($)) (-15 -2814 ($)) (-15 -2401 ($ $)) (-15 -1501 ($ $)) (-15 -2324 ($ $ $)) (-15 -2767 ($ $ $)) (-15 -3349 ($ $ $)) (-15 -3517 ($ $)) (-15 -3498 ($ $ $)) (-15 -3506 ($ $ $))))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-1355 ((|#1| $) 44)) (-4141 (((-108) $ (-708)) 8)) (-3175 (($) 7 T CONST)) (-3218 ((|#1| |#1| $) 46)) (-2327 ((|#1| $) 45)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-2116 ((|#1| $) 39)) (-4095 (($ |#1| $) 40)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-4087 ((|#1| $) 41)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-1253 (((-708) $) 43)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2795 (($ (-588 |#1|)) 42)) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1522 (((-588 (-1139 |#2| |#1|)) (-1139 |#2| |#1|) (-1139 |#2| |#1|)) 37)) (-2995 (((-522) (-1139 |#2| |#1|)) 68 (|has| |#1| (-426)))) (-3701 (((-522) (-1139 |#2| |#1|)) 54)) (-3956 (((-588 (-1139 |#2| |#1|)) (-1139 |#2| |#1|) (-1139 |#2| |#1|)) 45)) (-1529 (((-522) (-1139 |#2| |#1|) (-1139 |#2| |#1|)) 56 (|has| |#1| (-426)))) (-2213 (((-588 |#1|) (-1139 |#2| |#1|) (-1139 |#2| |#1|)) 48)) (-1207 (((-522) (-1139 |#2| |#1|) (-1139 |#2| |#1|)) 53)))
+(((-1028 |#1| |#2|) (-10 -7 (-15 -1522 ((-588 (-1139 |#2| |#1|)) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -3956 ((-588 (-1139 |#2| |#1|)) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -2213 ((-588 |#1|) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -1207 ((-522) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -3701 ((-522) (-1139 |#2| |#1|))) (IF (|has| |#1| (-426)) (PROGN (-15 -1529 ((-522) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -2995 ((-522) (-1139 |#2| |#1|)))) |%noBranch|)) (-757) (-1085)) (T -1028))
+((-2995 (*1 *2 *3) (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-426)) (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))) (-1529 (*1 *2 *3 *3) (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-426)) (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))) (-3701 (*1 *2 *3) (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))) (-1207 (*1 *2 *3 *3) (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))) (-2213 (*1 *2 *3 *3) (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-588 *4)) (-5 *1 (-1028 *4 *5)))) (-3956 (*1 *2 *3 *3) (-12 (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-588 (-1139 *5 *4))) (-5 *1 (-1028 *4 *5)) (-5 *3 (-1139 *5 *4)))) (-1522 (*1 *2 *3 *3) (-12 (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-588 (-1139 *5 *4))) (-5 *1 (-1028 *4 *5)) (-5 *3 (-1139 *5 *4)))))
+(-10 -7 (-15 -1522 ((-588 (-1139 |#2| |#1|)) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -3956 ((-588 (-1139 |#2| |#1|)) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -2213 ((-588 |#1|) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -1207 ((-522) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -3701 ((-522) (-1139 |#2| |#1|))) (IF (|has| |#1| (-426)) (PROGN (-15 -1529 ((-522) (-1139 |#2| |#1|) (-1139 |#2| |#1|))) (-15 -2995 ((-522) (-1139 |#2| |#1|)))) |%noBranch|))
+((-3355 (((-3 (-522) "failed") |#2| (-1085) |#2| (-1068)) 16) (((-3 (-522) "failed") |#2| (-1085) (-777 |#2|)) 14) (((-3 (-522) "failed") |#2|) 51)))
+(((-1029 |#1| |#2|) (-10 -7 (-15 -3355 ((-3 (-522) "failed") |#2|)) (-15 -3355 ((-3 (-522) "failed") |#2| (-1085) (-777 |#2|))) (-15 -3355 ((-3 (-522) "failed") |#2| (-1085) |#2| (-1068)))) (-13 (-514) (-784) (-962 (-522)) (-584 (-522)) (-426)) (-13 (-27) (-1106) (-405 |#1|))) (T -1029))
+((-3355 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-1068)) (-4 *6 (-13 (-514) (-784) (-962 *2) (-584 *2) (-426))) (-5 *2 (-522)) (-5 *1 (-1029 *6 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *6))))) (-3355 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-777 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *6))) (-4 *6 (-13 (-514) (-784) (-962 *2) (-584 *2) (-426))) (-5 *2 (-522)) (-5 *1 (-1029 *6 *3)))) (-3355 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-514) (-784) (-962 *2) (-584 *2) (-426))) (-5 *2 (-522)) (-5 *1 (-1029 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))))
+(-10 -7 (-15 -3355 ((-3 (-522) "failed") |#2|)) (-15 -3355 ((-3 (-522) "failed") |#2| (-1085) (-777 |#2|))) (-15 -3355 ((-3 (-522) "failed") |#2| (-1085) |#2| (-1068))))
+((-3355 (((-3 (-522) "failed") (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|)) (-1068)) 34) (((-3 (-522) "failed") (-382 (-881 |#1|)) (-1085) (-777 (-382 (-881 |#1|)))) 29) (((-3 (-522) "failed") (-382 (-881 |#1|))) 12)))
+(((-1030 |#1|) (-10 -7 (-15 -3355 ((-3 (-522) "failed") (-382 (-881 |#1|)))) (-15 -3355 ((-3 (-522) "failed") (-382 (-881 |#1|)) (-1085) (-777 (-382 (-881 |#1|))))) (-15 -3355 ((-3 (-522) "failed") (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|)) (-1068)))) (-426)) (T -1030))
+((-3355 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-382 (-881 *6))) (-5 *4 (-1085)) (-5 *5 (-1068)) (-4 *6 (-426)) (-5 *2 (-522)) (-5 *1 (-1030 *6)))) (-3355 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-777 (-382 (-881 *6)))) (-5 *3 (-382 (-881 *6))) (-4 *6 (-426)) (-5 *2 (-522)) (-5 *1 (-1030 *6)))) (-3355 (*1 *2 *3) (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-426)) (-5 *2 (-522)) (-5 *1 (-1030 *4)))))
+(-10 -7 (-15 -3355 ((-3 (-522) "failed") (-382 (-881 |#1|)))) (-15 -3355 ((-3 (-522) "failed") (-382 (-881 |#1|)) (-1085) (-777 (-382 (-881 |#1|))))) (-15 -3355 ((-3 (-522) "failed") (-382 (-881 |#1|)) (-1085) (-382 (-881 |#1|)) (-1068))))
+((-1667 (((-291 (-522)) (-47)) 11)))
+(((-1031) (-10 -7 (-15 -1667 ((-291 (-522)) (-47))))) (T -1031))
+((-1667 (*1 *2 *3) (-12 (-5 *3 (-47)) (-5 *2 (-291 (-522))) (-5 *1 (-1031)))))
+(-10 -7 (-15 -1667 ((-291 (-522)) (-47))))
+((-1419 (((-108) $ $) NIL)) (-1504 (($ $) 41)) (-2944 (((-108) $) 65)) (-3454 (($ $ $) 48)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 84)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-1805 (($ $ $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3372 (($ $ $ $) 74)) (-2961 (($ $) NIL)) (-3133 (((-393 $) $) NIL)) (-2805 (((-108) $ $) NIL)) (-3355 (((-522) $) NIL)) (-1736 (($ $ $) 71)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL)) (-1478 (((-522) $) NIL)) (-2333 (($ $ $) 59)) (-1226 (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 78) (((-628 (-522)) (-628 $)) 28)) (-3920 (((-3 $ "failed") $) NIL)) (-2549 (((-3 (-382 (-522)) "failed") $) NIL)) (-3519 (((-108) $) NIL)) (-1699 (((-382 (-522)) $) NIL)) (-3344 (($) 81) (($ $) 82)) (-2303 (($ $ $) 58)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL)) (-2725 (((-108) $) NIL)) (-3859 (($ $ $ $) NIL)) (-1968 (($ $ $) 79)) (-3603 (((-108) $) NIL)) (-2634 (($ $ $) NIL)) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL)) (-2859 (((-108) $) 66)) (-3077 (((-108) $) 64)) (-2473 (($ $) 42)) (-4208 (((-3 $ "failed") $) NIL)) (-3740 (((-108) $) 75)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2037 (($ $ $ $) 72)) (-1308 (($ $ $) 68) (($) 39)) (-2524 (($ $ $) 67) (($) 38)) (-4000 (($ $) NIL)) (-4030 (($ $) 70)) (-2267 (($ $ $) NIL) (($ (-588 $)) NIL)) (-2311 (((-1068) $) NIL)) (-1988 (($ $ $) NIL)) (-3937 (($) NIL T CONST)) (-3092 (($ $) 50)) (-4174 (((-1032) $) NIL) (($ $) 69)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL)) (-2308 (($ $ $) 62) (($ (-588 $)) NIL)) (-1274 (($ $) NIL)) (-2006 (((-393 $) $) NIL)) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL)) (-2276 (((-3 $ "failed") $ $) NIL)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL)) (-2626 (((-108) $) NIL)) (-4031 (((-708) $) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 61)) (-2731 (($ $ (-708)) NIL) (($ $) NIL)) (-3518 (($ $) 51)) (-2463 (($ $) NIL)) (-3873 (((-522) $) 32) (((-498) $) NIL) (((-821 (-522)) $) NIL) (((-354) $) NIL) (((-202) $) NIL)) (-2217 (((-792) $) 31) (($ (-522)) 80) (($ $) NIL) (($ (-522)) 80)) (-2742 (((-708)) NIL)) (-1763 (((-108) $ $) NIL)) (-1591 (($ $ $) NIL)) (-1897 (($) 37)) (-1407 (((-108) $ $) NIL)) (-3673 (($ $ $ $) 73)) (-4126 (($ $) 63)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-2920 (($ $ $) 44)) (-3697 (($) 35 T CONST)) (-3616 (($ $ $) 47)) (-3709 (($) 36 T CONST)) (-2810 (((-1068) $) 21) (((-1068) $ (-108)) 23) (((-1171) (-759) $) 24) (((-1171) (-759) $ (-108)) 25)) (-3628 (($ $) 45)) (-2252 (($ $ (-708)) NIL) (($ $) NIL)) (-3604 (($ $ $) 46)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 40)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 49)) (-2388 (($ $ $) 43)) (-1672 (($ $) 52) (($ $ $) 54)) (-1661 (($ $ $) 53)) (** (($ $ (-850)) NIL) (($ $ (-708)) 57)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 34) (($ $ $) 55)))
+(((-1032) (-13 (-507) (-603) (-765) (-10 -8 (-6 -4225) (-6 -4230) (-6 -4226) (-15 -2524 ($)) (-15 -1308 ($)) (-15 -2473 ($ $)) (-15 -1504 ($ $)) (-15 -2388 ($ $ $)) (-15 -2920 ($ $ $)) (-15 -3454 ($ $ $)) (-15 -3628 ($ $)) (-15 -3604 ($ $ $)) (-15 -3616 ($ $ $))))) (T -1032))
+((-2920 (*1 *1 *1 *1) (-5 *1 (-1032))) (-2388 (*1 *1 *1 *1) (-5 *1 (-1032))) (-1504 (*1 *1 *1) (-5 *1 (-1032))) (-2524 (*1 *1) (-5 *1 (-1032))) (-1308 (*1 *1) (-5 *1 (-1032))) (-2473 (*1 *1 *1) (-5 *1 (-1032))) (-3454 (*1 *1 *1 *1) (-5 *1 (-1032))) (-3628 (*1 *1 *1) (-5 *1 (-1032))) (-3604 (*1 *1 *1 *1) (-5 *1 (-1032))) (-3616 (*1 *1 *1 *1) (-5 *1 (-1032))))
+(-13 (-507) (-603) (-765) (-10 -8 (-6 -4225) (-6 -4230) (-6 -4226) (-15 -2524 ($)) (-15 -1308 ($)) (-15 -2473 ($ $)) (-15 -1504 ($ $)) (-15 -2388 ($ $ $)) (-15 -2920 ($ $ $)) (-15 -3454 ($ $ $)) (-15 -3628 ($ $)) (-15 -3604 ($ $ $)) (-15 -3616 ($ $ $))))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-1322 ((|#1| $) 44)) (-2717 (((-108) $ (-708)) 8)) (-3367 (($) 7 T CONST)) (-2622 ((|#1| |#1| $) 46)) (-2956 ((|#1| $) 45)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1431 ((|#1| $) 39)) (-3365 (($ |#1| $) 40)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-3295 ((|#1| $) 41)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-3735 (((-708) $) 43)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-2501 (($ (-588 |#1|)) 42)) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-1033 |#1|) (-1197) (-1120)) (T -1033))
-((-3218 (*1 *2 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1120)))) (-2327 (*1 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1120)))) (-1355 (*1 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1120)))) (-1253 (*1 *2 *1) (-12 (-4 *1 (-1033 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))))
-(-13 (-102 |t#1|) (-10 -8 (-6 -4238) (-15 -3218 (|t#1| |t#1| $)) (-15 -2327 (|t#1| $)) (-15 -1355 (|t#1| $)) (-15 -1253 ((-708) $))))
-(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-1865 ((|#3| $) 76)) (-1297 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#3| "failed") $) 40)) (-1484 (((-522) $) NIL) (((-382 (-522)) $) NIL) ((|#3| $) 37)) (-2096 (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-2 (|:| -1222 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 $) (-1166 $)) 73) (((-628 |#3|) (-628 $)) 65)) (-2157 (($ $ (-1 |#3| |#3|)) 19) (($ $ (-1 |#3| |#3|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL) (($ $ (-708)) NIL) (($ $) NIL)) (-1708 ((|#3| $) 78)) (-3263 ((|#4| $) 32)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL) (($ |#3|) 16)) (** (($ $ (-850)) NIL) (($ $ (-708)) 15) (($ $ (-522)) 82)))
-(((-1034 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-522))) (-15 -1708 (|#3| |#1|)) (-15 -1865 (|#3| |#1|)) (-15 -3263 (|#4| |#1|)) (-15 -2096 ((-628 |#3|) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-628 (-522)) (-628 |#1|))) (-15 -1484 (|#3| |#1|)) (-15 -1297 ((-3 |#3| "failed") |#1|)) (-15 -2190 (|#1| |#3|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2157 (|#1| |#1| (-1 |#3| |#3|) (-708))) (-15 -2157 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2190 (|#1| (-522))) (-15 ** (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-850))) (-15 -2190 ((-792) |#1|))) (-1035 |#2| |#3| |#4| |#5|) (-708) (-971) (-215 |#2| |#3|) (-215 |#2| |#3|)) (T -1034))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-522))) (-15 -1708 (|#3| |#1|)) (-15 -1865 (|#3| |#1|)) (-15 -3263 (|#4| |#1|)) (-15 -2096 ((-628 |#3|) (-628 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -2096 ((-628 (-522)) (-628 |#1|))) (-15 -1484 (|#3| |#1|)) (-15 -1297 ((-3 |#3| "failed") |#1|)) (-15 -2190 (|#1| |#3|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-522) |#1|)) (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2157 (|#1| |#1| (-1 |#3| |#3|) (-708))) (-15 -2157 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2190 (|#1| (-522))) (-15 ** (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-850))) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1865 ((|#2| $) 72)) (-2727 (((-108) $) 112)) (-1233 (((-3 $ "failed") $ $) 19)) (-2527 (((-108) $) 110)) (-4141 (((-108) $ (-708)) 102)) (-3022 (($ |#2|) 75)) (-3175 (($) 17 T CONST)) (-2264 (($ $) 129 (|has| |#2| (-283)))) (-1860 ((|#3| $ (-522)) 124)) (-1297 (((-3 (-522) "failed") $) 86 (|has| |#2| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 84 (|has| |#2| (-962 (-382 (-522))))) (((-3 |#2| "failed") $) 81)) (-1484 (((-522) $) 87 (|has| |#2| (-962 (-522)))) (((-382 (-522)) $) 85 (|has| |#2| (-962 (-382 (-522))))) ((|#2| $) 80)) (-2096 (((-628 (-522)) (-628 $)) 79 (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 78 (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) 77) (((-628 |#2|) (-628 $)) 76)) (-2682 (((-3 $ "failed") $) 34)) (-3166 (((-708) $) 130 (|has| |#2| (-514)))) (-3631 ((|#2| $ (-522) (-522)) 122)) (-3837 (((-588 |#2|) $) 95 (|has| $ (-6 -4238)))) (-2782 (((-108) $) 31)) (-3799 (((-708) $) 131 (|has| |#2| (-514)))) (-2064 (((-588 |#4|) $) 132 (|has| |#2| (-514)))) (-1411 (((-708) $) 118)) (-1422 (((-708) $) 119)) (-3352 (((-108) $ (-708)) 103)) (-3081 ((|#2| $) 67 (|has| |#2| (-6 (-4240 "*"))))) (-2575 (((-522) $) 114)) (-1885 (((-522) $) 116)) (-3308 (((-588 |#2|) $) 94 (|has| $ (-6 -4238)))) (-2246 (((-108) |#2| $) 92 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-3886 (((-522) $) 115)) (-4132 (((-522) $) 117)) (-1366 (($ (-588 (-588 |#2|))) 109)) (-3838 (($ (-1 |#2| |#2|) $) 99 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#2| |#2| |#2|) $ $) 126) (($ (-1 |#2| |#2|) $) 100)) (-3237 (((-588 (-588 |#2|)) $) 120)) (-2720 (((-108) $ (-708)) 104)) (-2385 (((-1068) $) 9)) (-2147 (((-3 $ "failed") $) 66 (|has| |#2| (-338)))) (-4151 (((-1032) $) 10)) (-2232 (((-3 $ "failed") $ |#2|) 127 (|has| |#2| (-514)))) (-3053 (((-108) (-1 (-108) |#2|) $) 97 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#2|))) 91 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) 90 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) 89 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) 88 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) 108)) (-3985 (((-108) $) 105)) (-3775 (($) 106)) (-2545 ((|#2| $ (-522) (-522) |#2|) 123) ((|#2| $ (-522) (-522)) 121)) (-2157 (($ $ (-1 |#2| |#2|)) 52) (($ $ (-1 |#2| |#2|) (-708)) 51) (($ $ (-588 (-1085)) (-588 (-708))) 44 (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) 43 (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) 42 (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) 41 (|has| |#2| (-829 (-1085)))) (($ $ (-708)) 39 (|has| |#2| (-210))) (($ $) 37 (|has| |#2| (-210)))) (-1708 ((|#2| $) 71)) (-4077 (($ (-588 |#2|)) 74)) (-1767 (((-108) $) 111)) (-3263 ((|#3| $) 73)) (-3206 ((|#2| $) 68 (|has| |#2| (-6 (-4240 "*"))))) (-4168 (((-708) (-1 (-108) |#2|) $) 96 (|has| $ (-6 -4238))) (((-708) |#2| $) 93 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 107)) (-3488 ((|#4| $ (-522)) 125)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 83 (|has| |#2| (-962 (-382 (-522))))) (($ |#2|) 82)) (-2323 (((-708)) 29)) (-3648 (((-108) (-1 (-108) |#2|) $) 98 (|has| $ (-6 -4238)))) (-1697 (((-108) $) 113)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-1 |#2| |#2|)) 50) (($ $ (-1 |#2| |#2|) (-708)) 49) (($ $ (-588 (-1085)) (-588 (-708))) 48 (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) 47 (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) 46 (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) 45 (|has| |#2| (-829 (-1085)))) (($ $ (-708)) 40 (|has| |#2| (-210))) (($ $) 38 (|has| |#2| (-210)))) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#2|) 128 (|has| |#2| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 65 (|has| |#2| (-338)))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#2|) 134) (($ |#2| $) 133) ((|#4| $ |#4|) 70) ((|#3| |#3| $) 69)) (-3480 (((-708) $) 101 (|has| $ (-6 -4238)))))
+((-2622 (*1 *2 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1120)))) (-2956 (*1 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1120)))) (-1322 (*1 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1120)))) (-3735 (*1 *2 *1) (-12 (-4 *1 (-1033 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))))
+(-13 (-102 |t#1|) (-10 -8 (-6 -4238) (-15 -2622 (|t#1| |t#1| $)) (-15 -2956 (|t#1| $)) (-15 -1322 (|t#1| $)) (-15 -3735 ((-708) $))))
+(((-33) . T) ((-102 |#1|) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-1945 ((|#3| $) 76)) (-3700 (((-3 (-522) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 |#3| "failed") $) 40)) (-1478 (((-522) $) NIL) (((-382 (-522)) $) NIL) ((|#3| $) 37)) (-1226 (((-628 (-522)) (-628 $)) NIL) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL) (((-2 (|:| -2149 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 $) (-1166 $)) 73) (((-628 |#3|) (-628 $)) 65)) (-2731 (($ $ (-1 |#3| |#3|)) 19) (($ $ (-1 |#3| |#3|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085)) NIL) (($ $ (-708)) NIL) (($ $) NIL)) (-4147 ((|#3| $) 78)) (-1828 ((|#4| $) 32)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ (-382 (-522))) NIL) (($ |#3|) 16)) (** (($ $ (-850)) NIL) (($ $ (-708)) 15) (($ $ (-522)) 82)))
+(((-1034 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-522))) (-15 -4147 (|#3| |#1|)) (-15 -1945 (|#3| |#1|)) (-15 -1828 (|#4| |#1|)) (-15 -1226 ((-628 |#3|) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-628 (-522)) (-628 |#1|))) (-15 -1478 (|#3| |#1|)) (-15 -3700 ((-3 |#3| "failed") |#1|)) (-15 -2217 (|#1| |#3|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2731 (|#1| |#1| (-1 |#3| |#3|) (-708))) (-15 -2731 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2217 (|#1| (-522))) (-15 ** (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-850))) (-15 -2217 ((-792) |#1|))) (-1035 |#2| |#3| |#4| |#5|) (-708) (-971) (-215 |#2| |#3|) (-215 |#2| |#3|)) (T -1034))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-522))) (-15 -4147 (|#3| |#1|)) (-15 -1945 (|#3| |#1|)) (-15 -1828 (|#4| |#1|)) (-15 -1226 ((-628 |#3|) (-628 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 |#3|)) (|:| |vec| (-1166 |#3|))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 |#1|) (-1166 |#1|))) (-15 -1226 ((-628 (-522)) (-628 |#1|))) (-15 -1478 (|#3| |#1|)) (-15 -3700 ((-3 |#3| "failed") |#1|)) (-15 -2217 (|#1| |#3|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-522) |#1|)) (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2731 (|#1| |#1| (-1 |#3| |#3|) (-708))) (-15 -2731 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2217 (|#1| (-522))) (-15 ** (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-850))) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-1945 ((|#2| $) 72)) (-3455 (((-108) $) 112)) (-2265 (((-3 $ "failed") $ $) 19)) (-2208 (((-108) $) 110)) (-2717 (((-108) $ (-708)) 102)) (-1348 (($ |#2|) 75)) (-3367 (($) 17 T CONST)) (-2091 (($ $) 129 (|has| |#2| (-283)))) (-2635 ((|#3| $ (-522)) 124)) (-3700 (((-3 (-522) "failed") $) 86 (|has| |#2| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) 84 (|has| |#2| (-962 (-382 (-522))))) (((-3 |#2| "failed") $) 81)) (-1478 (((-522) $) 87 (|has| |#2| (-962 (-522)))) (((-382 (-522)) $) 85 (|has| |#2| (-962 (-382 (-522))))) ((|#2| $) 80)) (-1226 (((-628 (-522)) (-628 $)) 79 (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 78 (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) 77) (((-628 |#2|) (-628 $)) 76)) (-3920 (((-3 $ "failed") $) 34)) (-1692 (((-708) $) 130 (|has| |#2| (-514)))) (-2186 ((|#2| $ (-522) (-522)) 122)) (-2395 (((-588 |#2|) $) 95 (|has| $ (-6 -4238)))) (-2859 (((-108) $) 31)) (-2336 (((-708) $) 131 (|has| |#2| (-514)))) (-2819 (((-588 |#4|) $) 132 (|has| |#2| (-514)))) (-2949 (((-708) $) 118)) (-2960 (((-708) $) 119)) (-1480 (((-108) $ (-708)) 103)) (-3721 ((|#2| $) 67 (|has| |#2| (-6 (-4240 "*"))))) (-2604 (((-522) $) 114)) (-4042 (((-522) $) 116)) (-4084 (((-588 |#2|) $) 94 (|has| $ (-6 -4238)))) (-4176 (((-108) |#2| $) 92 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-1925 (((-522) $) 115)) (-2595 (((-522) $) 117)) (-1347 (($ (-588 (-588 |#2|))) 109)) (-2397 (($ (-1 |#2| |#2|) $) 99 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#2| |#2| |#2|) $ $) 126) (($ (-1 |#2| |#2|) $) 100)) (-2862 (((-588 (-588 |#2|)) $) 120)) (-3309 (((-108) $ (-708)) 104)) (-2311 (((-1068) $) 9)) (-3073 (((-3 $ "failed") $) 66 (|has| |#2| (-338)))) (-4174 (((-1032) $) 10)) (-2276 (((-3 $ "failed") $ |#2|) 127 (|has| |#2| (-514)))) (-3487 (((-108) (-1 (-108) |#2|) $) 97 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#2|))) 91 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) 90 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) 89 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) 88 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) 108)) (-3494 (((-108) $) 105)) (-3298 (($) 106)) (-2683 ((|#2| $ (-522) (-522) |#2|) 123) ((|#2| $ (-522) (-522)) 121)) (-2731 (($ $ (-1 |#2| |#2|)) 52) (($ $ (-1 |#2| |#2|) (-708)) 51) (($ $ (-588 (-1085)) (-588 (-708))) 44 (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) 43 (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) 42 (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) 41 (|has| |#2| (-829 (-1085)))) (($ $ (-708)) 39 (|has| |#2| (-210))) (($ $) 37 (|has| |#2| (-210)))) (-4147 ((|#2| $) 71)) (-3215 (($ (-588 |#2|)) 74)) (-3498 (((-108) $) 111)) (-1828 ((|#3| $) 73)) (-2500 ((|#2| $) 68 (|has| |#2| (-6 (-4240 "*"))))) (-4187 (((-708) (-1 (-108) |#2|) $) 96 (|has| $ (-6 -4238))) (((-708) |#2| $) 93 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 107)) (-2223 ((|#4| $ (-522)) 125)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 83 (|has| |#2| (-962 (-382 (-522))))) (($ |#2|) 82)) (-2742 (((-708)) 29)) (-1381 (((-108) (-1 (-108) |#2|) $) 98 (|has| $ (-6 -4238)))) (-4047 (((-108) $) 113)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-1 |#2| |#2|)) 50) (($ $ (-1 |#2| |#2|) (-708)) 49) (($ $ (-588 (-1085)) (-588 (-708))) 48 (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) 47 (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) 46 (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) 45 (|has| |#2| (-829 (-1085)))) (($ $ (-708)) 40 (|has| |#2| (-210))) (($ $) 38 (|has| |#2| (-210)))) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#2|) 128 (|has| |#2| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 65 (|has| |#2| (-338)))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#2|) 134) (($ |#2| $) 133) ((|#4| $ |#4|) 70) ((|#3| |#3| $) 69)) (-3591 (((-708) $) 101 (|has| $ (-6 -4238)))))
(((-1035 |#1| |#2| |#3| |#4|) (-1197) (-708) (-971) (-215 |t#1| |t#2|) (-215 |t#1| |t#2|)) (T -1035))
-((-3022 (*1 *1 *2) (-12 (-4 *2 (-971)) (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2)) (-4 *5 (-215 *3 *2)))) (-4077 (*1 *1 *2) (-12 (-5 *2 (-588 *4)) (-4 *4 (-971)) (-4 *1 (-1035 *3 *4 *5 *6)) (-4 *5 (-215 *3 *4)) (-4 *6 (-215 *3 *4)))) (-3263 (*1 *2 *1) (-12 (-4 *1 (-1035 *3 *4 *2 *5)) (-4 *4 (-971)) (-4 *5 (-215 *3 *4)) (-4 *2 (-215 *3 *4)))) (-1865 (*1 *2 *1) (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2)) (-4 *5 (-215 *3 *2)) (-4 *2 (-971)))) (-1708 (*1 *2 *1) (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2)) (-4 *5 (-215 *3 *2)) (-4 *2 (-971)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1035 *3 *4 *5 *2)) (-4 *4 (-971)) (-4 *5 (-215 *3 *4)) (-4 *2 (-215 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1035 *3 *4 *2 *5)) (-4 *4 (-971)) (-4 *2 (-215 *3 *4)) (-4 *5 (-215 *3 *4)))) (-3206 (*1 *2 *1) (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2)) (-4 *5 (-215 *3 *2)) (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971)))) (-3081 (*1 *2 *1) (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2)) (-4 *5 (-215 *3 *2)) (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971)))) (-2147 (*1 *1 *1) (|partial| -12 (-4 *1 (-1035 *2 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-215 *2 *3)) (-4 *5 (-215 *2 *3)) (-4 *3 (-338)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-1035 *3 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-215 *3 *4)) (-4 *6 (-215 *3 *4)) (-4 *4 (-338)))))
-(-13 (-208 |t#2|) (-107 |t#2| |t#2|) (-974 |t#1| |t#1| |t#2| |t#3| |t#4|) (-386 |t#2|) (-352 |t#2|) (-10 -8 (IF (|has| |t#2| (-157)) (-6 (-655 |t#2|)) |%noBranch|) (-15 -3022 ($ |t#2|)) (-15 -4077 ($ (-588 |t#2|))) (-15 -3263 (|t#3| $)) (-15 -1865 (|t#2| $)) (-15 -1708 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4240 "*"))) (PROGN (-6 (-37 |t#2|)) (-15 -3206 (|t#2| $)) (-15 -3081 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-338)) (PROGN (-15 -2147 ((-3 $ "failed") $)) (-15 ** ($ $ (-522)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-33) . T) ((-37 |#2|) |has| |#2| (-6 (-4240 "*"))) ((-97) . T) ((-107 |#2| |#2|) . T) ((-124) . T) ((-562 (-792)) . T) ((-208 |#2|) . T) ((-210) |has| |#2| (-210)) ((-285 |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-352 |#2|) . T) ((-386 |#2|) . T) ((-461 |#2|) . T) ((-483 |#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-590 |#2|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#2| (-584 (-522))) ((-584 |#2|) . T) ((-655 |#2|) -3708 (|has| |#2| (-157)) (|has| |#2| (-6 (-4240 "*")))) ((-664) . T) ((-829 (-1085)) |has| |#2| (-829 (-1085))) ((-974 |#1| |#1| |#2| |#3| |#4|) . T) ((-962 (-382 (-522))) |has| |#2| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#2| (-962 (-522))) ((-962 |#2|) . T) ((-977 |#2|) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1120) . T))
-((-3581 ((|#4| |#4|) 68)) (-3261 ((|#4| |#4|) 63)) (-3208 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3855 (-588 |#3|))) |#4| |#3|) 76)) (-4029 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 67)) (-2228 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 65)))
-(((-1036 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3261 (|#4| |#4|)) (-15 -2228 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -3581 (|#4| |#4|)) (-15 -4029 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -3208 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3855 (-588 |#3|))) |#4| |#3|))) (-283) (-348 |#1|) (-348 |#1|) (-626 |#1| |#2| |#3|)) (T -1036))
-((-3208 (*1 *2 *3 *4) (-12 (-4 *5 (-283)) (-4 *6 (-348 *5)) (-4 *4 (-348 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4)))) (-5 *1 (-1036 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4)))) (-4029 (*1 *2 *3) (-12 (-4 *4 (-283)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1036 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-3581 (*1 *2 *2) (-12 (-4 *3 (-283)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-1036 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-2228 (*1 *2 *3) (-12 (-4 *4 (-283)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1036 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-3261 (*1 *2 *2) (-12 (-4 *3 (-283)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-1036 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
-(-10 -7 (-15 -3261 (|#4| |#4|)) (-15 -2228 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -3581 (|#4| |#4|)) (-15 -4029 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -3208 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3855 (-588 |#3|))) |#4| |#3|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 17)) (-4090 (((-588 |#2|) $) 159)) (-1282 (((-1081 $) $ |#2|) 53) (((-1081 |#1|) $) 42)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 109 (|has| |#1| (-514)))) (-2022 (($ $) 111 (|has| |#1| (-514)))) (-3739 (((-108) $) 113 (|has| |#1| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 |#2|)) 193)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3119 (($ $) NIL (|has| |#1| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) 156) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 |#2| "failed") $) NIL)) (-1484 ((|#1| $) 154) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) ((|#2| $) NIL)) (-1950 (($ $ $ |#2|) NIL (|has| |#1| (-157)))) (-3156 (($ $) 197)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) 81)) (-2071 (($ $) NIL (|has| |#1| (-426))) (($ $ |#2|) NIL (|has| |#1| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#1| (-838)))) (-2671 (($ $ |#1| (-494 |#2|) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| |#1| (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| |#1| (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-2782 (((-108) $) 19)) (-2112 (((-708) $) 26)) (-4073 (($ (-1081 |#1|) |#2|) 47) (($ (-1081 $) |#2|) 63)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) 31)) (-4049 (($ |#1| (-494 |#2|)) 70) (($ $ |#2| (-708)) 51) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ |#2|) NIL)) (-2925 (((-494 |#2|) $) 186) (((-708) $ |#2|) 187) (((-588 (-708)) $ (-588 |#2|)) 188)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3861 (($ (-1 (-494 |#2|) (-494 |#2|)) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) 121)) (-3145 (((-3 |#2| "failed") $) 161)) (-3128 (($ $) 196)) (-3138 ((|#1| $) 36)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2385 (((-1068) $) NIL)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| |#2|) (|:| -1400 (-708))) "failed") $) NIL)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) 32)) (-3118 ((|#1| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 139 (|has| |#1| (-426)))) (-2259 (($ (-588 $)) 144 (|has| |#1| (-426))) (($ $ $) 131 (|has| |#1| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-838)))) (-2232 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) 119 (|has| |#1| (-514)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ |#2| |#1|) 164) (($ $ (-588 |#2|) (-588 |#1|)) 177) (($ $ |#2| $) 163) (($ $ (-588 |#2|) (-588 $)) 176)) (-2769 (($ $ |#2|) NIL (|has| |#1| (-157)))) (-2157 (($ $ |#2|) 195) (($ $ (-588 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-2793 (((-494 |#2|) $) 182) (((-708) $ |#2|) 178) (((-588 (-708)) $ (-588 |#2|)) 180)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| |#1| (-563 (-498))) (|has| |#2| (-563 (-498)))))) (-2255 ((|#1| $) 127 (|has| |#1| (-426))) (($ $ |#2|) 130 (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2190 (((-792) $) 150) (($ (-522)) 75) (($ |#1|) 76) (($ |#2|) 28) (($ $) NIL (|has| |#1| (-514))) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-3916 (((-588 |#1|) $) 153)) (-3243 ((|#1| $ (-494 |#2|)) 72) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) 78)) (-3632 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-3958 (((-108) $ $) 116 (|has| |#1| (-514)))) (-3510 (($ $ (-850)) 101) (($ $ (-708)) 103)) (-3566 (($) 12 T CONST)) (-3577 (($) 14 T CONST)) (-2213 (($ $ |#2|) NIL) (($ $ (-588 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) 96)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1620 (($ $ |#1|) 125 (|has| |#1| (-338)))) (-1612 (($ $) 84) (($ $ $) 94)) (-1602 (($ $ $) 48)) (** (($ $ (-850)) 102) (($ $ (-708)) 99)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 87) (($ $ $) 64) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 89) (($ $ |#1|) NIL)))
+((-1348 (*1 *1 *2) (-12 (-4 *2 (-971)) (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2)) (-4 *5 (-215 *3 *2)))) (-3215 (*1 *1 *2) (-12 (-5 *2 (-588 *4)) (-4 *4 (-971)) (-4 *1 (-1035 *3 *4 *5 *6)) (-4 *5 (-215 *3 *4)) (-4 *6 (-215 *3 *4)))) (-1828 (*1 *2 *1) (-12 (-4 *1 (-1035 *3 *4 *2 *5)) (-4 *4 (-971)) (-4 *5 (-215 *3 *4)) (-4 *2 (-215 *3 *4)))) (-1945 (*1 *2 *1) (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2)) (-4 *5 (-215 *3 *2)) (-4 *2 (-971)))) (-4147 (*1 *2 *1) (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2)) (-4 *5 (-215 *3 *2)) (-4 *2 (-971)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1035 *3 *4 *5 *2)) (-4 *4 (-971)) (-4 *5 (-215 *3 *4)) (-4 *2 (-215 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1035 *3 *4 *2 *5)) (-4 *4 (-971)) (-4 *2 (-215 *3 *4)) (-4 *5 (-215 *3 *4)))) (-2500 (*1 *2 *1) (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2)) (-4 *5 (-215 *3 *2)) (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971)))) (-3721 (*1 *2 *1) (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2)) (-4 *5 (-215 *3 *2)) (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971)))) (-3073 (*1 *1 *1) (|partial| -12 (-4 *1 (-1035 *2 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-215 *2 *3)) (-4 *5 (-215 *2 *3)) (-4 *3 (-338)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-1035 *3 *4 *5 *6)) (-4 *4 (-971)) (-4 *5 (-215 *3 *4)) (-4 *6 (-215 *3 *4)) (-4 *4 (-338)))))
+(-13 (-208 |t#2|) (-107 |t#2| |t#2|) (-974 |t#1| |t#1| |t#2| |t#3| |t#4|) (-386 |t#2|) (-352 |t#2|) (-10 -8 (IF (|has| |t#2| (-157)) (-6 (-655 |t#2|)) |%noBranch|) (-15 -1348 ($ |t#2|)) (-15 -3215 ($ (-588 |t#2|))) (-15 -1828 (|t#3| $)) (-15 -1945 (|t#2| $)) (-15 -4147 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4240 "*"))) (PROGN (-6 (-37 |t#2|)) (-15 -2500 (|t#2| $)) (-15 -3721 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-338)) (PROGN (-15 -3073 ((-3 $ "failed") $)) (-15 ** ($ $ (-522)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-33) . T) ((-37 |#2|) |has| |#2| (-6 (-4240 "*"))) ((-97) . T) ((-107 |#2| |#2|) . T) ((-124) . T) ((-562 (-792)) . T) ((-208 |#2|) . T) ((-210) |has| |#2| (-210)) ((-285 |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-352 |#2|) . T) ((-386 |#2|) . T) ((-461 |#2|) . T) ((-483 |#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-590 |#2|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#2| (-584 (-522))) ((-584 |#2|) . T) ((-655 |#2|) -3844 (|has| |#2| (-157)) (|has| |#2| (-6 (-4240 "*")))) ((-664) . T) ((-829 (-1085)) |has| |#2| (-829 (-1085))) ((-974 |#1| |#1| |#2| |#3| |#4|) . T) ((-962 (-382 (-522))) |has| |#2| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#2| (-962 (-522))) ((-962 |#2|) . T) ((-977 |#2|) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1120) . T))
+((-1950 ((|#4| |#4|) 68)) (-1813 ((|#4| |#4|) 63)) (-2513 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2905 (-588 |#3|))) |#4| |#3|) 76)) (-3942 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 67)) (-3999 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 65)))
+(((-1036 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1813 (|#4| |#4|)) (-15 -3999 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -1950 (|#4| |#4|)) (-15 -3942 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2513 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2905 (-588 |#3|))) |#4| |#3|))) (-283) (-348 |#1|) (-348 |#1|) (-626 |#1| |#2| |#3|)) (T -1036))
+((-2513 (*1 *2 *3 *4) (-12 (-4 *5 (-283)) (-4 *6 (-348 *5)) (-4 *4 (-348 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4)))) (-5 *1 (-1036 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4)))) (-3942 (*1 *2 *3) (-12 (-4 *4 (-283)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1036 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-1950 (*1 *2 *2) (-12 (-4 *3 (-283)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-1036 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-3999 (*1 *2 *3) (-12 (-4 *4 (-283)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1036 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))) (-1813 (*1 *2 *2) (-12 (-4 *3 (-283)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-1036 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
+(-10 -7 (-15 -1813 (|#4| |#4|)) (-15 -3999 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -1950 (|#4| |#4|)) (-15 -3942 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2513 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2905 (-588 |#3|))) |#4| |#3|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 17)) (-3533 (((-588 |#2|) $) 160)) (-1264 (((-1081 $) $ |#2|) 53) (((-1081 |#1|) $) 42)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 109 (|has| |#1| (-514)))) (-2298 (($ $) 111 (|has| |#1| (-514)))) (-3007 (((-108) $) 113 (|has| |#1| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 |#2|)) 194)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2961 (($ $) NIL (|has| |#1| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) 157) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 |#2| "failed") $) NIL)) (-1478 ((|#1| $) 155) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) ((|#2| $) NIL)) (-2908 (($ $ $ |#2|) NIL (|has| |#1| (-157)))) (-3241 (($ $) 198)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) 81)) (-2883 (($ $) NIL (|has| |#1| (-426))) (($ $ |#2|) NIL (|has| |#1| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#1| (-838)))) (-3792 (($ $ |#1| (-494 |#2|) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| |#1| (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| |#1| (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-2859 (((-108) $) 19)) (-1391 (((-708) $) 26)) (-3520 (($ (-1081 |#1|) |#2|) 47) (($ (-1081 $) |#2|) 63)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) 31)) (-3500 (($ |#1| (-494 |#2|)) 70) (($ $ |#2| (-708)) 51) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ |#2|) NIL)) (-3564 (((-494 |#2|) $) 187) (((-708) $ |#2|) 188) (((-588 (-708)) $ (-588 |#2|)) 189)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-1723 (($ (-1 (-494 |#2|) (-494 |#2|)) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) 121)) (-3155 (((-3 |#2| "failed") $) 162)) (-3216 (($ $) 197)) (-3224 ((|#1| $) 36)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2311 (((-1068) $) NIL)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| |#2|) (|:| -3858 (-708))) "failed") $) NIL)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) 32)) (-3207 ((|#1| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 139 (|has| |#1| (-426)))) (-2308 (($ (-588 $)) 144 (|has| |#1| (-426))) (($ $ $) 131 (|has| |#1| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#1| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-838)))) (-2276 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ $) 119 (|has| |#1| (-514)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ |#2| |#1|) 165) (($ $ (-588 |#2|) (-588 |#1|)) 178) (($ $ |#2| $) 164) (($ $ (-588 |#2|) (-588 $)) 177)) (-1615 (($ $ |#2|) NIL (|has| |#1| (-157)))) (-2731 (($ $ |#2|) 196) (($ $ (-588 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-2487 (((-494 |#2|) $) 183) (((-708) $ |#2|) 179) (((-588 (-708)) $ (-588 |#2|)) 181)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| |#1| (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| |#1| (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| |#1| (-563 (-498))) (|has| |#2| (-563 (-498)))))) (-2988 ((|#1| $) 127 (|has| |#1| (-426))) (($ $ |#2|) 130 (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-2217 (((-792) $) 150) (($ (-522)) 75) (($ |#1|) 76) (($ |#2|) 28) (($ $) NIL (|has| |#1| (-514))) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-2180 (((-588 |#1|) $) 153)) (-1643 ((|#1| $ (-494 |#2|)) 72) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) 78)) (-1225 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-1407 (((-108) $ $) 116 (|has| |#1| (-514)))) (-3622 (($ $ (-850)) 101) (($ $ (-708)) 103)) (-3697 (($) 12 T CONST)) (-3709 (($) 14 T CONST)) (-2252 (($ $ |#2|) NIL) (($ $ (-588 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) 96)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1682 (($ $ |#1|) 125 (|has| |#1| (-338)))) (-1672 (($ $) 84) (($ $ $) 94)) (-1661 (($ $ $) 48)) (** (($ $ (-850)) 102) (($ $ (-708)) 99)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 87) (($ $ $) 64) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 89) (($ $ |#1|) NIL)))
(((-1037 |#1| |#2|) (-878 |#1| (-494 |#2|) |#2|) (-971) (-784)) (T -1037))
NIL
(-878 |#1| (-494 |#2|) |#2|)
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4090 (((-588 |#2|) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-2908 (($ $) 142 (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) 118 (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1929 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2884 (($ $) 138 (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) 114 (|has| |#1| (-37 (-382 (-522)))))) (-2930 (($ $) 146 (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) 122 (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) NIL T CONST)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2199 (((-881 |#1|) $ (-708)) NIL) (((-881 |#1|) $ (-708) (-708)) NIL)) (-3390 (((-108) $) NIL)) (-2838 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-708) $ |#2|) NIL) (((-708) $ |#2| (-708)) NIL)) (-2782 (((-108) $) NIL)) (-1504 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3340 (((-108) $) NIL)) (-4049 (($ $ (-588 |#2|) (-588 (-494 |#2|))) NIL) (($ $ |#2| (-494 |#2|)) NIL) (($ |#1| (-494 |#2|)) NIL) (($ $ |#2| (-708)) 58) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-1254 (($ $) 112 (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-1858 (($ $ |#2|) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ |#2| |#1|) 165 (|has| |#1| (-37 (-382 (-522)))))) (-4151 (((-1032) $) NIL)) (-2730 (($ (-1 $) |#2| |#1|) 164 (|has| |#1| (-37 (-382 (-522)))))) (-3719 (($ $ (-708)) 15)) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3266 (($ $) 110 (|has| |#1| (-37 (-382 (-522)))))) (-2289 (($ $ |#2| $) 96) (($ $ (-588 |#2|) (-588 $)) 89) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL)) (-2157 (($ $ |#2|) 99) (($ $ (-588 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-2793 (((-494 |#2|) $) NIL)) (-1658 (((-1 (-1066 |#3|) |#3|) (-588 |#2|) (-588 (-1066 |#3|))) 79)) (-1738 (($ $) 148 (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) 124 (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) 144 (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) 120 (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) 140 (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) 116 (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) 17)) (-2190 (((-792) $) 180) (($ (-522)) NIL) (($ |#1|) 44 (|has| |#1| (-157))) (($ $) NIL (|has| |#1| (-514))) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#2|) 65) (($ |#3|) 63)) (-3243 ((|#1| $ (-494 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL) ((|#3| $ (-708)) 42)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-1759 (($ $) 154 (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) 130 (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1745 (($ $) 150 (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) 126 (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) 158 (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) 134 (|has| |#1| (-37 (-382 (-522)))))) (-3924 (($ $) 160 (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) 136 (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) 156 (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) 132 (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) 152 (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) 128 (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 18 T CONST)) (-3577 (($) 10 T CONST)) (-2213 (($ $ |#2|) NIL) (($ $ (-588 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ |#1|) 182 (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 61)) (** (($ $ (-850)) NIL) (($ $ (-708)) 70) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 102 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 60) (($ $ (-382 (-522))) 107 (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) 105 (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 47) (($ $ |#1|) 48) (($ |#3| $) 46)))
-(((-1038 |#1| |#2| |#3|) (-13 (-678 |#1| |#2|) (-10 -8 (-15 -3243 (|#3| $ (-708))) (-15 -2190 ($ |#2|)) (-15 -2190 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -1658 ((-1 (-1066 |#3|) |#3|) (-588 |#2|) (-588 (-1066 |#3|)))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -1858 ($ $ |#2| |#1|)) (-15 -2730 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-971) (-784) (-878 |#1| (-494 |#2|) |#2|)) (T -1038))
-((-3243 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *2 (-878 *4 (-494 *5) *5)) (-5 *1 (-1038 *4 *5 *2)) (-4 *4 (-971)) (-4 *5 (-784)))) (-2190 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *2 (-784)) (-5 *1 (-1038 *3 *2 *4)) (-4 *4 (-878 *3 (-494 *2) *2)))) (-2190 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *4 (-784)) (-5 *1 (-1038 *3 *4 *2)) (-4 *2 (-878 *3 (-494 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-784)) (-5 *1 (-1038 *3 *4 *2)) (-4 *2 (-878 *3 (-494 *4) *4)))) (-1658 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 (-1066 *7))) (-4 *6 (-784)) (-4 *7 (-878 *5 (-494 *6) *6)) (-4 *5 (-971)) (-5 *2 (-1 (-1066 *7) *7)) (-5 *1 (-1038 *5 *6 *7)))) (-1858 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-4 *2 (-784)) (-5 *1 (-1038 *3 *2 *4)) (-4 *4 (-878 *3 (-494 *2) *2)))) (-2730 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1038 *4 *3 *5))) (-4 *4 (-37 (-382 (-522)))) (-4 *4 (-971)) (-4 *3 (-784)) (-5 *1 (-1038 *4 *3 *5)) (-4 *5 (-878 *4 (-494 *3) *3)))))
-(-13 (-678 |#1| |#2|) (-10 -8 (-15 -3243 (|#3| $ (-708))) (-15 -2190 ($ |#2|)) (-15 -2190 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -1658 ((-1 (-1066 |#3|) |#3|) (-588 |#2|) (-588 (-1066 |#3|)))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -1858 ($ $ |#2| |#1|)) (-15 -2730 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
-((-1416 (((-108) $ $) 7)) (-2950 (((-588 (-2 (|:| -1650 $) (|:| -1544 (-588 |#4|)))) (-588 |#4|)) 85)) (-4125 (((-588 $) (-588 |#4|)) 86) (((-588 $) (-588 |#4|) (-108)) 111)) (-4090 (((-588 |#3|) $) 33)) (-2690 (((-108) $) 26)) (-4140 (((-108) $) 17 (|has| |#1| (-514)))) (-3575 (((-108) |#4| $) 101) (((-108) $) 97)) (-3607 ((|#4| |#4| $) 92)) (-3119 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 $))) |#4| $) 126)) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |#3|) 27)) (-4141 (((-108) $ (-708)) 44)) (-1628 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 79)) (-3175 (($) 45 T CONST)) (-3639 (((-108) $) 22 (|has| |#1| (-514)))) (-3982 (((-108) $ $) 24 (|has| |#1| (-514)))) (-3996 (((-108) $ $) 23 (|has| |#1| (-514)))) (-3538 (((-108) $) 25 (|has| |#1| (-514)))) (-2149 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3050 (((-588 |#4|) (-588 |#4|) $) 18 (|has| |#1| (-514)))) (-1787 (((-588 |#4|) (-588 |#4|) $) 19 (|has| |#1| (-514)))) (-1297 (((-3 $ "failed") (-588 |#4|)) 36)) (-1484 (($ (-588 |#4|)) 35)) (-2306 (((-3 $ "failed") $) 82)) (-2806 ((|#4| |#4| $) 89)) (-2333 (($ $) 68 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#4| $) 67 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4238)))) (-3421 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-514)))) (-1934 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-4164 ((|#4| |#4| $) 87)) (-3864 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-2091 (((-2 (|:| -1650 (-588 |#4|)) (|:| -1544 (-588 |#4|))) $) 105)) (-2208 (((-108) |#4| $) 136)) (-3129 (((-108) |#4| $) 133)) (-2198 (((-108) |#4| $) 137) (((-108) $) 134)) (-3837 (((-588 |#4|) $) 52 (|has| $ (-6 -4238)))) (-3341 (((-108) |#4| $) 104) (((-108) $) 103)) (-1521 ((|#3| $) 34)) (-3352 (((-108) $ (-708)) 43)) (-3308 (((-588 |#4|) $) 53 (|has| $ (-6 -4238)))) (-2246 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#4| |#4|) $) 47)) (-2458 (((-588 |#3|) $) 32)) (-1606 (((-108) |#3| $) 31)) (-2720 (((-108) $ (-708)) 42)) (-2385 (((-1068) $) 9)) (-3959 (((-3 |#4| (-588 $)) |#4| |#4| $) 128)) (-1331 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 $))) |#4| |#4| $) 127)) (-1442 (((-3 |#4| "failed") $) 83)) (-2893 (((-588 $) |#4| $) 129)) (-4190 (((-3 (-108) (-588 $)) |#4| $) 132)) (-3878 (((-588 (-2 (|:| |val| (-108)) (|:| -1886 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-2416 (((-588 $) |#4| $) 125) (((-588 $) (-588 |#4|) $) 124) (((-588 $) (-588 |#4|) (-588 $)) 123) (((-588 $) |#4| (-588 $)) 122)) (-2135 (($ |#4| $) 117) (($ (-588 |#4|) $) 116)) (-2242 (((-588 |#4|) $) 107)) (-3409 (((-108) |#4| $) 99) (((-108) $) 95)) (-1451 ((|#4| |#4| $) 90)) (-2123 (((-108) $ $) 110)) (-2039 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-514)))) (-2230 (((-108) |#4| $) 100) (((-108) $) 96)) (-2680 ((|#4| |#4| $) 91)) (-4151 (((-1032) $) 10)) (-2294 (((-3 |#4| "failed") $) 84)) (-1414 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-3307 (((-3 $ "failed") $ |#4|) 78)) (-3719 (($ $ |#4|) 77) (((-588 $) |#4| $) 115) (((-588 $) |#4| (-588 $)) 114) (((-588 $) (-588 |#4|) $) 113) (((-588 $) (-588 |#4|) (-588 $)) 112)) (-3053 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#4|) (-588 |#4|)) 59 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) 57 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) 56 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-1536 (((-108) $ $) 38)) (-3985 (((-108) $) 41)) (-3775 (($) 40)) (-2793 (((-708) $) 106)) (-4168 (((-708) |#4| $) 54 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4238)))) (-2404 (($ $) 39)) (-1431 (((-498) $) 69 (|has| |#4| (-563 (-498))))) (-2201 (($ (-588 |#4|)) 60)) (-2020 (($ $ |#3|) 28)) (-3606 (($ $ |#3|) 30)) (-3968 (($ $) 88)) (-2463 (($ $ |#3|) 29)) (-2190 (((-792) $) 11) (((-588 |#4|) $) 37)) (-1974 (((-708) $) 76 (|has| |#3| (-343)))) (-3989 (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-4212 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) 98)) (-2188 (((-588 $) |#4| $) 121) (((-588 $) |#4| (-588 $)) 120) (((-588 $) (-588 |#4|) $) 119) (((-588 $) (-588 |#4|) (-588 $)) 118)) (-3648 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4238)))) (-2360 (((-588 |#3|) $) 81)) (-3021 (((-108) |#4| $) 135)) (-2351 (((-108) |#3| $) 80)) (-1531 (((-108) $ $) 6)) (-3480 (((-708) $) 46 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3533 (((-588 |#2|) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3044 (($ $) 142 (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) 118 (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2016 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3023 (($ $) 138 (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) 114 (|has| |#1| (-37 (-382 (-522)))))) (-3066 (($ $) 146 (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) 122 (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) NIL T CONST)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3710 (((-881 |#1|) $ (-708)) NIL) (((-881 |#1|) $ (-708) (-708)) NIL)) (-3672 (((-108) $) NIL)) (-2980 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-708) $ |#2|) NIL) (((-708) $ |#2| (-708)) NIL)) (-2859 (((-108) $) NIL)) (-1811 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1374 (((-108) $) NIL)) (-3500 (($ $ (-588 |#2|) (-588 (-494 |#2|))) NIL) (($ $ |#2| (-494 |#2|)) NIL) (($ |#1| (-494 |#2|)) NIL) (($ $ |#2| (-708)) 58) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1238 (($ $) 112 (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-2611 (($ $ |#2|) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ |#2| |#1|) 165 (|has| |#1| (-37 (-382 (-522)))))) (-4174 (((-1032) $) NIL)) (-3922 (($ (-1 $) |#2| |#1|) 164 (|has| |#1| (-37 (-382 (-522)))))) (-3934 (($ $ (-708)) 15)) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3357 (($ $) 110 (|has| |#1| (-37 (-382 (-522)))))) (-2330 (($ $ |#2| $) 96) (($ $ (-588 |#2|) (-588 $)) 89) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL)) (-2731 (($ $ |#2|) 99) (($ $ (-588 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-2487 (((-494 |#2|) $) NIL)) (-2491 (((-1 (-1066 |#3|) |#3|) (-588 |#2|) (-588 (-1066 |#3|))) 79)) (-1831 (($ $) 148 (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) 124 (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) 144 (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) 120 (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) 140 (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) 116 (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) 17)) (-2217 (((-792) $) 180) (($ (-522)) NIL) (($ |#1|) 44 (|has| |#1| (-157))) (($ $) NIL (|has| |#1| (-514))) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#2|) 65) (($ |#3|) 63)) (-1643 ((|#1| $ (-494 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL) ((|#3| $ (-708)) 42)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-1856 (($ $) 154 (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) 130 (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1839 (($ $) 150 (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) 126 (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) 158 (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) 134 (|has| |#1| (-37 (-382 (-522)))))) (-2476 (($ $) 160 (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) 136 (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) 156 (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) 132 (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) 152 (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) 128 (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 18 T CONST)) (-3709 (($) 10 T CONST)) (-2252 (($ $ |#2|) NIL) (($ $ (-588 |#2|)) NIL) (($ $ |#2| (-708)) NIL) (($ $ (-588 |#2|) (-588 (-708))) NIL)) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ |#1|) 182 (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 61)) (** (($ $ (-850)) NIL) (($ $ (-708)) 70) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 102 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 60) (($ $ (-382 (-522))) 107 (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) 105 (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 47) (($ $ |#1|) 48) (($ |#3| $) 46)))
+(((-1038 |#1| |#2| |#3|) (-13 (-678 |#1| |#2|) (-10 -8 (-15 -1643 (|#3| $ (-708))) (-15 -2217 ($ |#2|)) (-15 -2217 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -2491 ((-1 (-1066 |#3|) |#3|) (-588 |#2|) (-588 (-1066 |#3|)))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -2611 ($ $ |#2| |#1|)) (-15 -3922 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-971) (-784) (-878 |#1| (-494 |#2|) |#2|)) (T -1038))
+((-1643 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *2 (-878 *4 (-494 *5) *5)) (-5 *1 (-1038 *4 *5 *2)) (-4 *4 (-971)) (-4 *5 (-784)))) (-2217 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *2 (-784)) (-5 *1 (-1038 *3 *2 *4)) (-4 *4 (-878 *3 (-494 *2) *2)))) (-2217 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *4 (-784)) (-5 *1 (-1038 *3 *4 *2)) (-4 *2 (-878 *3 (-494 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-971)) (-4 *4 (-784)) (-5 *1 (-1038 *3 *4 *2)) (-4 *2 (-878 *3 (-494 *4) *4)))) (-2491 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 (-1066 *7))) (-4 *6 (-784)) (-4 *7 (-878 *5 (-494 *6) *6)) (-4 *5 (-971)) (-5 *2 (-1 (-1066 *7) *7)) (-5 *1 (-1038 *5 *6 *7)))) (-2611 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-4 *2 (-784)) (-5 *1 (-1038 *3 *2 *4)) (-4 *4 (-878 *3 (-494 *2) *2)))) (-3922 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1038 *4 *3 *5))) (-4 *4 (-37 (-382 (-522)))) (-4 *4 (-971)) (-4 *3 (-784)) (-5 *1 (-1038 *4 *3 *5)) (-4 *5 (-878 *4 (-494 *3) *3)))))
+(-13 (-678 |#1| |#2|) (-10 -8 (-15 -1643 (|#3| $ (-708))) (-15 -2217 ($ |#2|)) (-15 -2217 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -2491 ((-1 (-1066 |#3|) |#3|) (-588 |#2|) (-588 (-1066 |#3|)))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -2611 ($ $ |#2| |#1|)) (-15 -3922 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
+((-1419 (((-108) $ $) 7)) (-3829 (((-588 (-2 (|:| -1720 $) (|:| -1566 (-588 |#4|)))) (-588 |#4|)) 85)) (-2510 (((-588 $) (-588 |#4|)) 86) (((-588 $) (-588 |#4|) (-108)) 111)) (-3533 (((-588 |#3|) $) 33)) (-2161 (((-108) $) 26)) (-2702 (((-108) $) 17 (|has| |#1| (-514)))) (-1900 (((-108) |#4| $) 101) (((-108) $) 97)) (-2163 ((|#4| |#4| $) 92)) (-2961 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 $))) |#4| $) 126)) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |#3|) 27)) (-2717 (((-108) $ (-708)) 44)) (-1696 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 79)) (-3367 (($) 45 T CONST)) (-1298 (((-108) $) 22 (|has| |#1| (-514)))) (-1657 (((-108) $ $) 24 (|has| |#1| (-514)))) (-3598 (((-108) $ $) 23 (|has| |#1| (-514)))) (-2818 (((-108) $) 25 (|has| |#1| (-514)))) (-3090 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3461 (((-588 |#4|) (-588 |#4|) $) 18 (|has| |#1| (-514)))) (-3668 (((-588 |#4|) (-588 |#4|) $) 19 (|has| |#1| (-514)))) (-3700 (((-3 $ "failed") (-588 |#4|)) 36)) (-1478 (($ (-588 |#4|)) 35)) (-2352 (((-3 $ "failed") $) 82)) (-2625 ((|#4| |#4| $) 89)) (-2379 (($ $) 68 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#4| $) 67 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4238)))) (-4002 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-514)))) (-1426 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-2918 ((|#4| |#4| $) 87)) (-2153 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-1199 (((-2 (|:| -1720 (-588 |#4|)) (|:| -1566 (-588 |#4|))) $) 105)) (-2396 (((-108) |#4| $) 136)) (-3039 (((-108) |#4| $) 133)) (-2278 (((-108) |#4| $) 137) (((-108) $) 134)) (-2395 (((-588 |#4|) $) 52 (|has| $ (-6 -4238)))) (-1384 (((-108) |#4| $) 104) (((-108) $) 103)) (-1933 ((|#3| $) 34)) (-1480 (((-108) $ (-708)) 43)) (-4084 (((-588 |#4|) $) 53 (|has| $ (-6 -4238)))) (-4176 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#4| |#4|) $) 47)) (-2714 (((-588 |#3|) $) 32)) (-3826 (((-108) |#3| $) 31)) (-3309 (((-108) $ (-708)) 42)) (-2311 (((-1068) $) 9)) (-1418 (((-3 |#4| (-588 $)) |#4| |#4| $) 128)) (-1998 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 $))) |#4| |#4| $) 127)) (-1442 (((-3 |#4| "failed") $) 83)) (-1468 (((-588 $) |#4| $) 129)) (-1892 (((-3 (-108) (-588 $)) |#4| $) 132)) (-1862 (((-588 (-2 (|:| |val| (-108)) (|:| -1974 $))) |#4| $) 131) (((-108) |#4| $) 130)) (-2251 (((-588 $) |#4| $) 125) (((-588 $) (-588 |#4|) $) 124) (((-588 $) (-588 |#4|) (-588 $)) 123) (((-588 $) |#4| (-588 $)) 122)) (-2953 (($ |#4| $) 117) (($ (-588 |#4|) $) 116)) (-4138 (((-588 |#4|) $) 107)) (-3864 (((-108) |#4| $) 99) (((-108) $) 95)) (-2556 ((|#4| |#4| $) 90)) (-1517 (((-108) $ $) 110)) (-2507 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-514)))) (-3060 (((-108) |#4| $) 100) (((-108) $) 96)) (-3896 ((|#4| |#4| $) 91)) (-4174 (((-1032) $) 10)) (-2337 (((-3 |#4| "failed") $) 84)) (-2187 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-4078 (((-3 $ "failed") $ |#4|) 78)) (-3934 (($ $ |#4|) 77) (((-588 $) |#4| $) 115) (((-588 $) |#4| (-588 $)) 114) (((-588 $) (-588 |#4|) $) 113) (((-588 $) (-588 |#4|) (-588 $)) 112)) (-3487 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#4|) (-588 |#4|)) 59 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) 57 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) 56 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-2065 (((-108) $ $) 38)) (-3494 (((-108) $) 41)) (-3298 (($) 40)) (-2487 (((-708) $) 106)) (-4187 (((-708) |#4| $) 54 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4238)))) (-2463 (($ $) 39)) (-3873 (((-498) $) 69 (|has| |#4| (-563 (-498))))) (-2227 (($ (-588 |#4|)) 60)) (-2271 (($ $ |#3|) 28)) (-2154 (($ $ |#3|) 30)) (-1524 (($ $) 88)) (-2773 (($ $ |#3|) 29)) (-2217 (((-792) $) 11) (((-588 |#4|) $) 37)) (-3111 (((-708) $) 76 (|has| |#3| (-343)))) (-3538 (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-2102 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) 98)) (-3386 (((-588 $) |#4| $) 121) (((-588 $) |#4| (-588 $)) 120) (((-588 $) (-588 |#4|) $) 119) (((-588 $) (-588 |#4|) (-588 $)) 118)) (-1381 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4238)))) (-1982 (((-588 |#3|) $) 81)) (-1336 (((-108) |#4| $) 135)) (-1711 (((-108) |#3| $) 80)) (-1562 (((-108) $ $) 6)) (-3591 (((-708) $) 46 (|has| $ (-6 -4238)))))
(((-1039 |#1| |#2| |#3| |#4|) (-1197) (-426) (-730) (-784) (-985 |t#1| |t#2| |t#3|)) (T -1039))
NIL
(-13 (-1023 |t#1| |t#2| |t#3| |t#4|) (-721 |t#1| |t#2| |t#3| |t#4|))
(((-33) . T) ((-97) . T) ((-562 (-588 |#4|)) . T) ((-562 (-792)) . T) ((-139 |#4|) . T) ((-563 (-498)) |has| |#4| (-563 (-498))) ((-285 |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))) ((-461 |#4|) . T) ((-483 |#4| |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))) ((-721 |#1| |#2| |#3| |#4|) . T) ((-903 |#1| |#2| |#3| |#4|) . T) ((-990 |#1| |#2| |#3| |#4|) . T) ((-1014) . T) ((-1023 |#1| |#2| |#3| |#4|) . T) ((-1114 |#1| |#2| |#3| |#4|) . T) ((-1120) . T))
-((-3426 (((-588 |#2|) |#1|) 12)) (-2521 (((-588 |#2|) |#2| |#2| |#2| |#2| |#2|) 37) (((-588 |#2|) |#1|) 47)) (-4079 (((-588 |#2|) |#2| |#2| |#2|) 35) (((-588 |#2|) |#1|) 45)) (-2307 ((|#2| |#1|) 42)) (-1260 (((-2 (|:| |solns| (-588 |#2|)) (|:| |maps| (-588 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 16)) (-2177 (((-588 |#2|) |#2| |#2|) 34) (((-588 |#2|) |#1|) 44)) (-2265 (((-588 |#2|) |#2| |#2| |#2| |#2|) 36) (((-588 |#2|) |#1|) 46)) (-2325 ((|#2| |#2| |#2| |#2| |#2| |#2|) 41)) (-4044 ((|#2| |#2| |#2| |#2|) 39)) (-1878 ((|#2| |#2| |#2|) 38)) (-3521 ((|#2| |#2| |#2| |#2| |#2|) 40)))
-(((-1040 |#1| |#2|) (-10 -7 (-15 -3426 ((-588 |#2|) |#1|)) (-15 -2307 (|#2| |#1|)) (-15 -1260 ((-2 (|:| |solns| (-588 |#2|)) (|:| |maps| (-588 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -2177 ((-588 |#2|) |#1|)) (-15 -4079 ((-588 |#2|) |#1|)) (-15 -2265 ((-588 |#2|) |#1|)) (-15 -2521 ((-588 |#2|) |#1|)) (-15 -2177 ((-588 |#2|) |#2| |#2|)) (-15 -4079 ((-588 |#2|) |#2| |#2| |#2|)) (-15 -2265 ((-588 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2521 ((-588 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -1878 (|#2| |#2| |#2|)) (-15 -4044 (|#2| |#2| |#2| |#2|)) (-15 -3521 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2325 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1142 |#2|) (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (T -1040))
-((-2325 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))) (-3521 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))) (-4044 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))) (-1878 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))) (-2521 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))) (-2265 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))) (-4079 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))) (-2177 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))) (-2521 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4)))) (-2265 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4)))) (-4079 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4)))) (-2177 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4)))) (-1260 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-2 (|:| |solns| (-588 *5)) (|:| |maps| (-588 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1040 *3 *5)) (-4 *3 (-1142 *5)))) (-2307 (*1 *2 *3) (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))) (-3426 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4)))))
-(-10 -7 (-15 -3426 ((-588 |#2|) |#1|)) (-15 -2307 (|#2| |#1|)) (-15 -1260 ((-2 (|:| |solns| (-588 |#2|)) (|:| |maps| (-588 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -2177 ((-588 |#2|) |#1|)) (-15 -4079 ((-588 |#2|) |#1|)) (-15 -2265 ((-588 |#2|) |#1|)) (-15 -2521 ((-588 |#2|) |#1|)) (-15 -2177 ((-588 |#2|) |#2| |#2|)) (-15 -4079 ((-588 |#2|) |#2| |#2| |#2|)) (-15 -2265 ((-588 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2521 ((-588 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -1878 (|#2| |#2| |#2|)) (-15 -4044 (|#2| |#2| |#2| |#2|)) (-15 -3521 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2325 (|#2| |#2| |#2| |#2| |#2| |#2|)))
-((-3431 (((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-382 (-881 |#1|))))) 95) (((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-382 (-881 |#1|)))) (-588 (-1085))) 94) (((-588 (-588 (-270 (-291 |#1|)))) (-588 (-382 (-881 |#1|)))) 92) (((-588 (-588 (-270 (-291 |#1|)))) (-588 (-382 (-881 |#1|))) (-588 (-1085))) 90) (((-588 (-270 (-291 |#1|))) (-270 (-382 (-881 |#1|)))) 76) (((-588 (-270 (-291 |#1|))) (-270 (-382 (-881 |#1|))) (-1085)) 77) (((-588 (-270 (-291 |#1|))) (-382 (-881 |#1|))) 71) (((-588 (-270 (-291 |#1|))) (-382 (-881 |#1|)) (-1085)) 60)) (-2665 (((-588 (-588 (-291 |#1|))) (-588 (-382 (-881 |#1|))) (-588 (-1085))) 88) (((-588 (-291 |#1|)) (-382 (-881 |#1|)) (-1085)) 43)) (-2496 (((-1075 (-588 (-291 |#1|)) (-588 (-270 (-291 |#1|)))) (-382 (-881 |#1|)) (-1085)) 98) (((-1075 (-588 (-291 |#1|)) (-588 (-270 (-291 |#1|)))) (-270 (-382 (-881 |#1|))) (-1085)) 97)))
-(((-1041 |#1|) (-10 -7 (-15 -3431 ((-588 (-270 (-291 |#1|))) (-382 (-881 |#1|)) (-1085))) (-15 -3431 ((-588 (-270 (-291 |#1|))) (-382 (-881 |#1|)))) (-15 -3431 ((-588 (-270 (-291 |#1|))) (-270 (-382 (-881 |#1|))) (-1085))) (-15 -3431 ((-588 (-270 (-291 |#1|))) (-270 (-382 (-881 |#1|))))) (-15 -3431 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -3431 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-382 (-881 |#1|))))) (-15 -3431 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-382 (-881 |#1|)))) (-588 (-1085)))) (-15 -3431 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-382 (-881 |#1|)))))) (-15 -2665 ((-588 (-291 |#1|)) (-382 (-881 |#1|)) (-1085))) (-15 -2665 ((-588 (-588 (-291 |#1|))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -2496 ((-1075 (-588 (-291 |#1|)) (-588 (-270 (-291 |#1|)))) (-270 (-382 (-881 |#1|))) (-1085))) (-15 -2496 ((-1075 (-588 (-291 |#1|)) (-588 (-270 (-291 |#1|)))) (-382 (-881 |#1|)) (-1085)))) (-13 (-283) (-784) (-135))) (T -1041))
-((-2496 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-1075 (-588 (-291 *5)) (-588 (-270 (-291 *5))))) (-5 *1 (-1041 *5)))) (-2496 (*1 *2 *3 *4) (-12 (-5 *3 (-270 (-382 (-881 *5)))) (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-1075 (-588 (-291 *5)) (-588 (-270 (-291 *5))))) (-5 *1 (-1041 *5)))) (-2665 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085))) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-588 (-291 *5)))) (-5 *1 (-1041 *5)))) (-2665 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-291 *5))) (-5 *1 (-1041 *5)))) (-3431 (*1 *2 *3) (-12 (-5 *3 (-588 (-270 (-382 (-881 *4))))) (-4 *4 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-588 (-270 (-291 *4))))) (-5 *1 (-1041 *4)))) (-3431 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-270 (-382 (-881 *5))))) (-5 *4 (-588 (-1085))) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-588 (-270 (-291 *5))))) (-5 *1 (-1041 *5)))) (-3431 (*1 *2 *3) (-12 (-5 *3 (-588 (-382 (-881 *4)))) (-4 *4 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-588 (-270 (-291 *4))))) (-5 *1 (-1041 *4)))) (-3431 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085))) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-588 (-270 (-291 *5))))) (-5 *1 (-1041 *5)))) (-3431 (*1 *2 *3) (-12 (-5 *3 (-270 (-382 (-881 *4)))) (-4 *4 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1041 *4)))) (-3431 (*1 *2 *3 *4) (-12 (-5 *3 (-270 (-382 (-881 *5)))) (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *5)))) (-5 *1 (-1041 *5)))) (-3431 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1041 *4)))) (-3431 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *5)))) (-5 *1 (-1041 *5)))))
-(-10 -7 (-15 -3431 ((-588 (-270 (-291 |#1|))) (-382 (-881 |#1|)) (-1085))) (-15 -3431 ((-588 (-270 (-291 |#1|))) (-382 (-881 |#1|)))) (-15 -3431 ((-588 (-270 (-291 |#1|))) (-270 (-382 (-881 |#1|))) (-1085))) (-15 -3431 ((-588 (-270 (-291 |#1|))) (-270 (-382 (-881 |#1|))))) (-15 -3431 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -3431 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-382 (-881 |#1|))))) (-15 -3431 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-382 (-881 |#1|)))) (-588 (-1085)))) (-15 -3431 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-382 (-881 |#1|)))))) (-15 -2665 ((-588 (-291 |#1|)) (-382 (-881 |#1|)) (-1085))) (-15 -2665 ((-588 (-588 (-291 |#1|))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -2496 ((-1075 (-588 (-291 |#1|)) (-588 (-270 (-291 |#1|)))) (-270 (-382 (-881 |#1|))) (-1085))) (-15 -2496 ((-1075 (-588 (-291 |#1|)) (-588 (-270 (-291 |#1|)))) (-382 (-881 |#1|)) (-1085))))
-((-4204 (((-382 (-1081 (-291 |#1|))) (-1166 (-291 |#1|)) (-382 (-1081 (-291 |#1|))) (-522)) 27)) (-2269 (((-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|)))) 39)))
-(((-1042 |#1|) (-10 -7 (-15 -2269 ((-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))))) (-15 -4204 ((-382 (-1081 (-291 |#1|))) (-1166 (-291 |#1|)) (-382 (-1081 (-291 |#1|))) (-522)))) (-13 (-514) (-784))) (T -1042))
-((-4204 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-382 (-1081 (-291 *5)))) (-5 *3 (-1166 (-291 *5))) (-5 *4 (-522)) (-4 *5 (-13 (-514) (-784))) (-5 *1 (-1042 *5)))) (-2269 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-382 (-1081 (-291 *3)))) (-4 *3 (-13 (-514) (-784))) (-5 *1 (-1042 *3)))))
-(-10 -7 (-15 -2269 ((-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))))) (-15 -4204 ((-382 (-1081 (-291 |#1|))) (-1166 (-291 |#1|)) (-382 (-1081 (-291 |#1|))) (-522))))
-((-3426 (((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-291 |#1|))) (-588 (-1085))) 217) (((-588 (-270 (-291 |#1|))) (-291 |#1|) (-1085)) 20) (((-588 (-270 (-291 |#1|))) (-270 (-291 |#1|)) (-1085)) 26) (((-588 (-270 (-291 |#1|))) (-270 (-291 |#1|))) 25) (((-588 (-270 (-291 |#1|))) (-291 |#1|)) 21)))
-(((-1043 |#1|) (-10 -7 (-15 -3426 ((-588 (-270 (-291 |#1|))) (-291 |#1|))) (-15 -3426 ((-588 (-270 (-291 |#1|))) (-270 (-291 |#1|)))) (-15 -3426 ((-588 (-270 (-291 |#1|))) (-270 (-291 |#1|)) (-1085))) (-15 -3426 ((-588 (-270 (-291 |#1|))) (-291 |#1|) (-1085))) (-15 -3426 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-291 |#1|))) (-588 (-1085))))) (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (T -1043))
-((-3426 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-1085))) (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-588 (-588 (-270 (-291 *5))))) (-5 *1 (-1043 *5)) (-5 *3 (-588 (-270 (-291 *5)))))) (-3426 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-588 (-270 (-291 *5)))) (-5 *1 (-1043 *5)) (-5 *3 (-291 *5)))) (-3426 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-588 (-270 (-291 *5)))) (-5 *1 (-1043 *5)) (-5 *3 (-270 (-291 *5))))) (-3426 (*1 *2 *3) (-12 (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1043 *4)) (-5 *3 (-270 (-291 *4))))) (-3426 (*1 *2 *3) (-12 (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1043 *4)) (-5 *3 (-291 *4)))))
-(-10 -7 (-15 -3426 ((-588 (-270 (-291 |#1|))) (-291 |#1|))) (-15 -3426 ((-588 (-270 (-291 |#1|))) (-270 (-291 |#1|)))) (-15 -3426 ((-588 (-270 (-291 |#1|))) (-270 (-291 |#1|)) (-1085))) (-15 -3426 ((-588 (-270 (-291 |#1|))) (-291 |#1|) (-1085))) (-15 -3426 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-291 |#1|))) (-588 (-1085)))))
-((-1854 ((|#2| |#2|) 20 (|has| |#1| (-784))) ((|#2| |#2| (-1 (-108) |#1| |#1|)) 16)) (-2471 ((|#2| |#2|) 19 (|has| |#1| (-784))) ((|#2| |#2| (-1 (-108) |#1| |#1|)) 15)))
-(((-1044 |#1| |#2|) (-10 -7 (-15 -2471 (|#2| |#2| (-1 (-108) |#1| |#1|))) (-15 -1854 (|#2| |#2| (-1 (-108) |#1| |#1|))) (IF (|has| |#1| (-784)) (PROGN (-15 -2471 (|#2| |#2|)) (-15 -1854 (|#2| |#2|))) |%noBranch|)) (-1120) (-13 (-555 (-522) |#1|) (-10 -7 (-6 -4238) (-6 -4239)))) (T -1044))
-((-1854 (*1 *2 *2) (-12 (-4 *3 (-784)) (-4 *3 (-1120)) (-5 *1 (-1044 *3 *2)) (-4 *2 (-13 (-555 (-522) *3) (-10 -7 (-6 -4238) (-6 -4239)))))) (-2471 (*1 *2 *2) (-12 (-4 *3 (-784)) (-4 *3 (-1120)) (-5 *1 (-1044 *3 *2)) (-4 *2 (-13 (-555 (-522) *3) (-10 -7 (-6 -4238) (-6 -4239)))))) (-1854 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-1044 *4 *2)) (-4 *2 (-13 (-555 (-522) *4) (-10 -7 (-6 -4238) (-6 -4239)))))) (-2471 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-1044 *4 *2)) (-4 *2 (-13 (-555 (-522) *4) (-10 -7 (-6 -4238) (-6 -4239)))))))
-(-10 -7 (-15 -2471 (|#2| |#2| (-1 (-108) |#1| |#1|))) (-15 -1854 (|#2| |#2| (-1 (-108) |#1| |#1|))) (IF (|has| |#1| (-784)) (PROGN (-15 -2471 (|#2| |#2|)) (-15 -1854 (|#2| |#2|))) |%noBranch|))
-((-1416 (((-108) $ $) NIL)) (-3974 (((-1074 3 |#1|) $) 106)) (-2032 (((-108) $) 72)) (-3527 (($ $ (-588 (-872 |#1|))) 20) (($ $ (-588 (-588 |#1|))) 75) (($ (-588 (-872 |#1|))) 74) (((-588 (-872 |#1|)) $) 73)) (-2564 (((-108) $) 41)) (-2736 (($ $ (-872 |#1|)) 46) (($ $ (-588 |#1|)) 51) (($ $ (-708)) 53) (($ (-872 |#1|)) 47) (((-872 |#1|) $) 45)) (-3345 (((-2 (|:| -3398 (-708)) (|:| |curves| (-708)) (|:| |polygons| (-708)) (|:| |constructs| (-708))) $) 104)) (-1625 (((-708) $) 26)) (-2397 (((-708) $) 25)) (-3756 (($ $ (-708) (-872 |#1|)) 39)) (-2913 (((-108) $) 82)) (-2072 (($ $ (-588 (-588 (-872 |#1|))) (-588 (-156)) (-156)) 89) (($ $ (-588 (-588 (-588 |#1|))) (-588 (-156)) (-156)) 91) (($ $ (-588 (-588 (-872 |#1|))) (-108) (-108)) 85) (($ $ (-588 (-588 (-588 |#1|))) (-108) (-108)) 93) (($ (-588 (-588 (-872 |#1|)))) 86) (($ (-588 (-588 (-872 |#1|))) (-108) (-108)) 87) (((-588 (-588 (-872 |#1|))) $) 84)) (-2160 (($ (-588 $)) 28) (($ $ $) 29)) (-3186 (((-588 (-156)) $) 102)) (-4047 (((-588 (-872 |#1|)) $) 97)) (-3062 (((-588 (-588 (-156))) $) 101)) (-3870 (((-588 (-588 (-588 (-872 |#1|)))) $) NIL)) (-3491 (((-588 (-588 (-588 (-708)))) $) 99)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2303 (((-708) $ (-588 (-872 |#1|))) 37)) (-3258 (((-108) $) 54)) (-2616 (($ $ (-588 (-872 |#1|))) 56) (($ $ (-588 (-588 |#1|))) 62) (($ (-588 (-872 |#1|))) 57) (((-588 (-872 |#1|)) $) 55)) (-2788 (($) 23) (($ (-1074 3 |#1|)) 24)) (-2404 (($ $) 35)) (-2843 (((-588 $) $) 34)) (-3097 (($ (-588 $)) 31)) (-3844 (((-588 $) $) 33)) (-2190 (((-792) $) 110)) (-1775 (((-108) $) 64)) (-3324 (($ $ (-588 (-872 |#1|))) 66) (($ $ (-588 (-588 |#1|))) 69) (($ (-588 (-872 |#1|))) 67) (((-588 (-872 |#1|)) $) 65)) (-2523 (($ $) 105)) (-1531 (((-108) $ $) NIL)))
+((-2925 (((-588 |#2|) |#1|) 12)) (-2159 (((-588 |#2|) |#2| |#2| |#2| |#2| |#2|) 37) (((-588 |#2|) |#1|) 47)) (-3230 (((-588 |#2|) |#2| |#2| |#2|) 35) (((-588 |#2|) |#1|) 45)) (-2786 ((|#2| |#1|) 42)) (-2590 (((-2 (|:| |solns| (-588 |#2|)) (|:| |maps| (-588 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 16)) (-3687 (((-588 |#2|) |#2| |#2|) 34) (((-588 |#2|) |#1|) 44)) (-2101 (((-588 |#2|) |#2| |#2| |#2| |#2|) 36) (((-588 |#2|) |#1|) 46)) (-2756 ((|#2| |#2| |#2| |#2| |#2| |#2|) 41)) (-2969 ((|#2| |#2| |#2| |#2|) 39)) (-2832 ((|#2| |#2| |#2|) 38)) (-2593 ((|#2| |#2| |#2| |#2| |#2|) 40)))
+(((-1040 |#1| |#2|) (-10 -7 (-15 -2925 ((-588 |#2|) |#1|)) (-15 -2786 (|#2| |#1|)) (-15 -2590 ((-2 (|:| |solns| (-588 |#2|)) (|:| |maps| (-588 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3687 ((-588 |#2|) |#1|)) (-15 -3230 ((-588 |#2|) |#1|)) (-15 -2101 ((-588 |#2|) |#1|)) (-15 -2159 ((-588 |#2|) |#1|)) (-15 -3687 ((-588 |#2|) |#2| |#2|)) (-15 -3230 ((-588 |#2|) |#2| |#2| |#2|)) (-15 -2101 ((-588 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2159 ((-588 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -2832 (|#2| |#2| |#2|)) (-15 -2969 (|#2| |#2| |#2| |#2|)) (-15 -2593 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2756 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1142 |#2|) (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (T -1040))
+((-2756 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))) (-2593 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))) (-2969 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))) (-2832 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))) (-2159 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))) (-2101 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))) (-3230 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))) (-3687 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))) (-2159 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4)))) (-2101 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4)))) (-3230 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4)))) (-3687 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4)))) (-2590 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-2 (|:| |solns| (-588 *5)) (|:| |maps| (-588 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1040 *3 *5)) (-4 *3 (-1142 *5)))) (-2786 (*1 *2 *3) (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))) (-2925 (*1 *2 *3) (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522))))))) (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4)))))
+(-10 -7 (-15 -2925 ((-588 |#2|) |#1|)) (-15 -2786 (|#2| |#1|)) (-15 -2590 ((-2 (|:| |solns| (-588 |#2|)) (|:| |maps| (-588 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3687 ((-588 |#2|) |#1|)) (-15 -3230 ((-588 |#2|) |#1|)) (-15 -2101 ((-588 |#2|) |#1|)) (-15 -2159 ((-588 |#2|) |#1|)) (-15 -3687 ((-588 |#2|) |#2| |#2|)) (-15 -3230 ((-588 |#2|) |#2| |#2| |#2|)) (-15 -2101 ((-588 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2159 ((-588 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -2832 (|#2| |#2| |#2|)) (-15 -2969 (|#2| |#2| |#2| |#2|)) (-15 -2593 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2756 (|#2| |#2| |#2| |#2| |#2| |#2|)))
+((-2967 (((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-382 (-881 |#1|))))) 95) (((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-382 (-881 |#1|)))) (-588 (-1085))) 94) (((-588 (-588 (-270 (-291 |#1|)))) (-588 (-382 (-881 |#1|)))) 92) (((-588 (-588 (-270 (-291 |#1|)))) (-588 (-382 (-881 |#1|))) (-588 (-1085))) 90) (((-588 (-270 (-291 |#1|))) (-270 (-382 (-881 |#1|)))) 76) (((-588 (-270 (-291 |#1|))) (-270 (-382 (-881 |#1|))) (-1085)) 77) (((-588 (-270 (-291 |#1|))) (-382 (-881 |#1|))) 71) (((-588 (-270 (-291 |#1|))) (-382 (-881 |#1|)) (-1085)) 60)) (-2124 (((-588 (-588 (-291 |#1|))) (-588 (-382 (-881 |#1|))) (-588 (-1085))) 88) (((-588 (-291 |#1|)) (-382 (-881 |#1|)) (-1085)) 43)) (-3931 (((-1075 (-588 (-291 |#1|)) (-588 (-270 (-291 |#1|)))) (-382 (-881 |#1|)) (-1085)) 98) (((-1075 (-588 (-291 |#1|)) (-588 (-270 (-291 |#1|)))) (-270 (-382 (-881 |#1|))) (-1085)) 97)))
+(((-1041 |#1|) (-10 -7 (-15 -2967 ((-588 (-270 (-291 |#1|))) (-382 (-881 |#1|)) (-1085))) (-15 -2967 ((-588 (-270 (-291 |#1|))) (-382 (-881 |#1|)))) (-15 -2967 ((-588 (-270 (-291 |#1|))) (-270 (-382 (-881 |#1|))) (-1085))) (-15 -2967 ((-588 (-270 (-291 |#1|))) (-270 (-382 (-881 |#1|))))) (-15 -2967 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -2967 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-382 (-881 |#1|))))) (-15 -2967 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-382 (-881 |#1|)))) (-588 (-1085)))) (-15 -2967 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-382 (-881 |#1|)))))) (-15 -2124 ((-588 (-291 |#1|)) (-382 (-881 |#1|)) (-1085))) (-15 -2124 ((-588 (-588 (-291 |#1|))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -3931 ((-1075 (-588 (-291 |#1|)) (-588 (-270 (-291 |#1|)))) (-270 (-382 (-881 |#1|))) (-1085))) (-15 -3931 ((-1075 (-588 (-291 |#1|)) (-588 (-270 (-291 |#1|)))) (-382 (-881 |#1|)) (-1085)))) (-13 (-283) (-784) (-135))) (T -1041))
+((-3931 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-1075 (-588 (-291 *5)) (-588 (-270 (-291 *5))))) (-5 *1 (-1041 *5)))) (-3931 (*1 *2 *3 *4) (-12 (-5 *3 (-270 (-382 (-881 *5)))) (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-1075 (-588 (-291 *5)) (-588 (-270 (-291 *5))))) (-5 *1 (-1041 *5)))) (-2124 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085))) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-588 (-291 *5)))) (-5 *1 (-1041 *5)))) (-2124 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-291 *5))) (-5 *1 (-1041 *5)))) (-2967 (*1 *2 *3) (-12 (-5 *3 (-588 (-270 (-382 (-881 *4))))) (-4 *4 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-588 (-270 (-291 *4))))) (-5 *1 (-1041 *4)))) (-2967 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-270 (-382 (-881 *5))))) (-5 *4 (-588 (-1085))) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-588 (-270 (-291 *5))))) (-5 *1 (-1041 *5)))) (-2967 (*1 *2 *3) (-12 (-5 *3 (-588 (-382 (-881 *4)))) (-4 *4 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-588 (-270 (-291 *4))))) (-5 *1 (-1041 *4)))) (-2967 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085))) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-588 (-270 (-291 *5))))) (-5 *1 (-1041 *5)))) (-2967 (*1 *2 *3) (-12 (-5 *3 (-270 (-382 (-881 *4)))) (-4 *4 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1041 *4)))) (-2967 (*1 *2 *3 *4) (-12 (-5 *3 (-270 (-382 (-881 *5)))) (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *5)))) (-5 *1 (-1041 *5)))) (-2967 (*1 *2 *3) (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1041 *4)))) (-2967 (*1 *2 *3 *4) (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *5)))) (-5 *1 (-1041 *5)))))
+(-10 -7 (-15 -2967 ((-588 (-270 (-291 |#1|))) (-382 (-881 |#1|)) (-1085))) (-15 -2967 ((-588 (-270 (-291 |#1|))) (-382 (-881 |#1|)))) (-15 -2967 ((-588 (-270 (-291 |#1|))) (-270 (-382 (-881 |#1|))) (-1085))) (-15 -2967 ((-588 (-270 (-291 |#1|))) (-270 (-382 (-881 |#1|))))) (-15 -2967 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -2967 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-382 (-881 |#1|))))) (-15 -2967 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-382 (-881 |#1|)))) (-588 (-1085)))) (-15 -2967 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-382 (-881 |#1|)))))) (-15 -2124 ((-588 (-291 |#1|)) (-382 (-881 |#1|)) (-1085))) (-15 -2124 ((-588 (-588 (-291 |#1|))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -3931 ((-1075 (-588 (-291 |#1|)) (-588 (-270 (-291 |#1|)))) (-270 (-382 (-881 |#1|))) (-1085))) (-15 -3931 ((-1075 (-588 (-291 |#1|)) (-588 (-270 (-291 |#1|)))) (-382 (-881 |#1|)) (-1085))))
+((-2030 (((-382 (-1081 (-291 |#1|))) (-1166 (-291 |#1|)) (-382 (-1081 (-291 |#1|))) (-522)) 27)) (-2145 (((-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|)))) 39)))
+(((-1042 |#1|) (-10 -7 (-15 -2145 ((-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))))) (-15 -2030 ((-382 (-1081 (-291 |#1|))) (-1166 (-291 |#1|)) (-382 (-1081 (-291 |#1|))) (-522)))) (-13 (-514) (-784))) (T -1042))
+((-2030 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-382 (-1081 (-291 *5)))) (-5 *3 (-1166 (-291 *5))) (-5 *4 (-522)) (-4 *5 (-13 (-514) (-784))) (-5 *1 (-1042 *5)))) (-2145 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-382 (-1081 (-291 *3)))) (-4 *3 (-13 (-514) (-784))) (-5 *1 (-1042 *3)))))
+(-10 -7 (-15 -2145 ((-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))) (-382 (-1081 (-291 |#1|))))) (-15 -2030 ((-382 (-1081 (-291 |#1|))) (-1166 (-291 |#1|)) (-382 (-1081 (-291 |#1|))) (-522))))
+((-2925 (((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-291 |#1|))) (-588 (-1085))) 217) (((-588 (-270 (-291 |#1|))) (-291 |#1|) (-1085)) 20) (((-588 (-270 (-291 |#1|))) (-270 (-291 |#1|)) (-1085)) 26) (((-588 (-270 (-291 |#1|))) (-270 (-291 |#1|))) 25) (((-588 (-270 (-291 |#1|))) (-291 |#1|)) 21)))
+(((-1043 |#1|) (-10 -7 (-15 -2925 ((-588 (-270 (-291 |#1|))) (-291 |#1|))) (-15 -2925 ((-588 (-270 (-291 |#1|))) (-270 (-291 |#1|)))) (-15 -2925 ((-588 (-270 (-291 |#1|))) (-270 (-291 |#1|)) (-1085))) (-15 -2925 ((-588 (-270 (-291 |#1|))) (-291 |#1|) (-1085))) (-15 -2925 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-291 |#1|))) (-588 (-1085))))) (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (T -1043))
+((-2925 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-1085))) (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-588 (-588 (-270 (-291 *5))))) (-5 *1 (-1043 *5)) (-5 *3 (-588 (-270 (-291 *5)))))) (-2925 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-588 (-270 (-291 *5)))) (-5 *1 (-1043 *5)) (-5 *3 (-291 *5)))) (-2925 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-588 (-270 (-291 *5)))) (-5 *1 (-1043 *5)) (-5 *3 (-270 (-291 *5))))) (-2925 (*1 *2 *3) (-12 (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1043 *4)) (-5 *3 (-270 (-291 *4))))) (-2925 (*1 *2 *3) (-12 (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135))) (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1043 *4)) (-5 *3 (-291 *4)))))
+(-10 -7 (-15 -2925 ((-588 (-270 (-291 |#1|))) (-291 |#1|))) (-15 -2925 ((-588 (-270 (-291 |#1|))) (-270 (-291 |#1|)))) (-15 -2925 ((-588 (-270 (-291 |#1|))) (-270 (-291 |#1|)) (-1085))) (-15 -2925 ((-588 (-270 (-291 |#1|))) (-291 |#1|) (-1085))) (-15 -2925 ((-588 (-588 (-270 (-291 |#1|)))) (-588 (-270 (-291 |#1|))) (-588 (-1085)))))
+((-2558 ((|#2| |#2|) 20 (|has| |#1| (-784))) ((|#2| |#2| (-1 (-108) |#1| |#1|)) 16)) (-2846 ((|#2| |#2|) 19 (|has| |#1| (-784))) ((|#2| |#2| (-1 (-108) |#1| |#1|)) 15)))
+(((-1044 |#1| |#2|) (-10 -7 (-15 -2846 (|#2| |#2| (-1 (-108) |#1| |#1|))) (-15 -2558 (|#2| |#2| (-1 (-108) |#1| |#1|))) (IF (|has| |#1| (-784)) (PROGN (-15 -2846 (|#2| |#2|)) (-15 -2558 (|#2| |#2|))) |%noBranch|)) (-1120) (-13 (-555 (-522) |#1|) (-10 -7 (-6 -4238) (-6 -4239)))) (T -1044))
+((-2558 (*1 *2 *2) (-12 (-4 *3 (-784)) (-4 *3 (-1120)) (-5 *1 (-1044 *3 *2)) (-4 *2 (-13 (-555 (-522) *3) (-10 -7 (-6 -4238) (-6 -4239)))))) (-2846 (*1 *2 *2) (-12 (-4 *3 (-784)) (-4 *3 (-1120)) (-5 *1 (-1044 *3 *2)) (-4 *2 (-13 (-555 (-522) *3) (-10 -7 (-6 -4238) (-6 -4239)))))) (-2558 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-1044 *4 *2)) (-4 *2 (-13 (-555 (-522) *4) (-10 -7 (-6 -4238) (-6 -4239)))))) (-2846 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-1044 *4 *2)) (-4 *2 (-13 (-555 (-522) *4) (-10 -7 (-6 -4238) (-6 -4239)))))))
+(-10 -7 (-15 -2846 (|#2| |#2| (-1 (-108) |#1| |#1|))) (-15 -2558 (|#2| |#2| (-1 (-108) |#1| |#1|))) (IF (|has| |#1| (-784)) (PROGN (-15 -2846 (|#2| |#2|)) (-15 -2558 (|#2| |#2|))) |%noBranch|))
+((-1419 (((-108) $ $) NIL)) (-1584 (((-1074 3 |#1|) $) 106)) (-2428 (((-108) $) 72)) (-2672 (($ $ (-588 (-872 |#1|))) 20) (($ $ (-588 (-588 |#1|))) 75) (($ (-588 (-872 |#1|))) 74) (((-588 (-872 |#1|)) $) 73)) (-3828 (((-108) $) 41)) (-1239 (($ $ (-872 |#1|)) 46) (($ $ (-588 |#1|)) 51) (($ $ (-708)) 53) (($ (-872 |#1|)) 47) (((-872 |#1|) $) 45)) (-1887 (((-2 (|:| -3748 (-708)) (|:| |curves| (-708)) (|:| |polygons| (-708)) (|:| |constructs| (-708))) $) 104)) (-2152 (((-708) $) 26)) (-1366 (((-708) $) 25)) (-3151 (($ $ (-708) (-872 |#1|)) 39)) (-1658 (((-108) $) 82)) (-2888 (($ $ (-588 (-588 (-872 |#1|))) (-588 (-156)) (-156)) 89) (($ $ (-588 (-588 (-588 |#1|))) (-588 (-156)) (-156)) 91) (($ $ (-588 (-588 (-872 |#1|))) (-108) (-108)) 85) (($ $ (-588 (-588 (-588 |#1|))) (-108) (-108)) 93) (($ (-588 (-588 (-872 |#1|)))) 86) (($ (-588 (-588 (-872 |#1|))) (-108) (-108)) 87) (((-588 (-588 (-872 |#1|))) $) 84)) (-3164 (($ (-588 $)) 28) (($ $ $) 29)) (-2247 (((-588 (-156)) $) 102)) (-4098 (((-588 (-872 |#1|)) $) 97)) (-3549 (((-588 (-588 (-156))) $) 101)) (-1796 (((-588 (-588 (-588 (-872 |#1|)))) $) NIL)) (-2256 (((-588 (-588 (-588 (-708)))) $) 99)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2748 (((-708) $ (-588 (-872 |#1|))) 37)) (-1787 (((-108) $) 54)) (-3364 (($ $ (-588 (-872 |#1|))) 56) (($ $ (-588 (-588 |#1|))) 62) (($ (-588 (-872 |#1|))) 57) (((-588 (-872 |#1|)) $) 55)) (-4195 (($) 23) (($ (-1074 3 |#1|)) 24)) (-2463 (($ $) 35)) (-4095 (((-588 $) $) 34)) (-3884 (($ (-588 $)) 31)) (-2834 (((-588 $) $) 33)) (-2217 (((-792) $) 110)) (-3568 (((-108) $) 64)) (-1231 (($ $ (-588 (-872 |#1|))) 66) (($ $ (-588 (-588 |#1|))) 69) (($ (-588 (-872 |#1|))) 67) (((-588 (-872 |#1|)) $) 65)) (-2181 (($ $) 105)) (-1562 (((-108) $ $) NIL)))
(((-1045 |#1|) (-1046 |#1|) (-971)) (T -1045))
NIL
(-1046 |#1|)
-((-1416 (((-108) $ $) 7)) (-3974 (((-1074 3 |#1|) $) 13)) (-2032 (((-108) $) 29)) (-3527 (($ $ (-588 (-872 |#1|))) 33) (($ $ (-588 (-588 |#1|))) 32) (($ (-588 (-872 |#1|))) 31) (((-588 (-872 |#1|)) $) 30)) (-2564 (((-108) $) 44)) (-2736 (($ $ (-872 |#1|)) 49) (($ $ (-588 |#1|)) 48) (($ $ (-708)) 47) (($ (-872 |#1|)) 46) (((-872 |#1|) $) 45)) (-3345 (((-2 (|:| -3398 (-708)) (|:| |curves| (-708)) (|:| |polygons| (-708)) (|:| |constructs| (-708))) $) 15)) (-1625 (((-708) $) 58)) (-2397 (((-708) $) 59)) (-3756 (($ $ (-708) (-872 |#1|)) 50)) (-2913 (((-108) $) 21)) (-2072 (($ $ (-588 (-588 (-872 |#1|))) (-588 (-156)) (-156)) 28) (($ $ (-588 (-588 (-588 |#1|))) (-588 (-156)) (-156)) 27) (($ $ (-588 (-588 (-872 |#1|))) (-108) (-108)) 26) (($ $ (-588 (-588 (-588 |#1|))) (-108) (-108)) 25) (($ (-588 (-588 (-872 |#1|)))) 24) (($ (-588 (-588 (-872 |#1|))) (-108) (-108)) 23) (((-588 (-588 (-872 |#1|))) $) 22)) (-2160 (($ (-588 $)) 57) (($ $ $) 56)) (-3186 (((-588 (-156)) $) 16)) (-4047 (((-588 (-872 |#1|)) $) 20)) (-3062 (((-588 (-588 (-156))) $) 17)) (-3870 (((-588 (-588 (-588 (-872 |#1|)))) $) 18)) (-3491 (((-588 (-588 (-588 (-708)))) $) 19)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2303 (((-708) $ (-588 (-872 |#1|))) 51)) (-3258 (((-108) $) 39)) (-2616 (($ $ (-588 (-872 |#1|))) 43) (($ $ (-588 (-588 |#1|))) 42) (($ (-588 (-872 |#1|))) 41) (((-588 (-872 |#1|)) $) 40)) (-2788 (($) 61) (($ (-1074 3 |#1|)) 60)) (-2404 (($ $) 52)) (-2843 (((-588 $) $) 53)) (-3097 (($ (-588 $)) 55)) (-3844 (((-588 $) $) 54)) (-2190 (((-792) $) 11)) (-1775 (((-108) $) 34)) (-3324 (($ $ (-588 (-872 |#1|))) 38) (($ $ (-588 (-588 |#1|))) 37) (($ (-588 (-872 |#1|))) 36) (((-588 (-872 |#1|)) $) 35)) (-2523 (($ $) 14)) (-1531 (((-108) $ $) 6)))
+((-1419 (((-108) $ $) 7)) (-1584 (((-1074 3 |#1|) $) 13)) (-2428 (((-108) $) 29)) (-2672 (($ $ (-588 (-872 |#1|))) 33) (($ $ (-588 (-588 |#1|))) 32) (($ (-588 (-872 |#1|))) 31) (((-588 (-872 |#1|)) $) 30)) (-3828 (((-108) $) 44)) (-1239 (($ $ (-872 |#1|)) 49) (($ $ (-588 |#1|)) 48) (($ $ (-708)) 47) (($ (-872 |#1|)) 46) (((-872 |#1|) $) 45)) (-1887 (((-2 (|:| -3748 (-708)) (|:| |curves| (-708)) (|:| |polygons| (-708)) (|:| |constructs| (-708))) $) 15)) (-2152 (((-708) $) 58)) (-1366 (((-708) $) 59)) (-3151 (($ $ (-708) (-872 |#1|)) 50)) (-1658 (((-108) $) 21)) (-2888 (($ $ (-588 (-588 (-872 |#1|))) (-588 (-156)) (-156)) 28) (($ $ (-588 (-588 (-588 |#1|))) (-588 (-156)) (-156)) 27) (($ $ (-588 (-588 (-872 |#1|))) (-108) (-108)) 26) (($ $ (-588 (-588 (-588 |#1|))) (-108) (-108)) 25) (($ (-588 (-588 (-872 |#1|)))) 24) (($ (-588 (-588 (-872 |#1|))) (-108) (-108)) 23) (((-588 (-588 (-872 |#1|))) $) 22)) (-3164 (($ (-588 $)) 57) (($ $ $) 56)) (-2247 (((-588 (-156)) $) 16)) (-4098 (((-588 (-872 |#1|)) $) 20)) (-3549 (((-588 (-588 (-156))) $) 17)) (-1796 (((-588 (-588 (-588 (-872 |#1|)))) $) 18)) (-2256 (((-588 (-588 (-588 (-708)))) $) 19)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2748 (((-708) $ (-588 (-872 |#1|))) 51)) (-1787 (((-108) $) 39)) (-3364 (($ $ (-588 (-872 |#1|))) 43) (($ $ (-588 (-588 |#1|))) 42) (($ (-588 (-872 |#1|))) 41) (((-588 (-872 |#1|)) $) 40)) (-4195 (($) 61) (($ (-1074 3 |#1|)) 60)) (-2463 (($ $) 52)) (-4095 (((-588 $) $) 53)) (-3884 (($ (-588 $)) 55)) (-2834 (((-588 $) $) 54)) (-2217 (((-792) $) 11)) (-3568 (((-108) $) 34)) (-1231 (($ $ (-588 (-872 |#1|))) 38) (($ $ (-588 (-588 |#1|))) 37) (($ (-588 (-872 |#1|))) 36) (((-588 (-872 |#1|)) $) 35)) (-2181 (($ $) 14)) (-1562 (((-108) $ $) 6)))
(((-1046 |#1|) (-1197) (-971)) (T -1046))
-((-2190 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-792)))) (-2788 (*1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971)))) (-2788 (*1 *1 *2) (-12 (-5 *2 (-1074 3 *3)) (-4 *3 (-971)) (-4 *1 (-1046 *3)))) (-2397 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-708)))) (-1625 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-708)))) (-2160 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-2160 (*1 *1 *1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971)))) (-3097 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-3844 (*1 *2 *1) (-12 (-4 *3 (-971)) (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)))) (-2843 (*1 *2 *1) (-12 (-4 *3 (-971)) (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)))) (-2404 (*1 *1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971)))) (-2303 (*1 *2 *1 *3) (-12 (-5 *3 (-588 (-872 *4))) (-4 *1 (-1046 *4)) (-4 *4 (-971)) (-5 *2 (-708)))) (-3756 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *3 (-872 *4)) (-4 *1 (-1046 *4)) (-4 *4 (-971)))) (-2736 (*1 *1 *1 *2) (-12 (-5 *2 (-872 *3)) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-2736 (*1 *1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-2736 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-2736 (*1 *1 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-971)) (-4 *1 (-1046 *3)))) (-2736 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-872 *3)))) (-2564 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))) (-2616 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-872 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-2616 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-2616 (*1 *1 *2) (-12 (-5 *2 (-588 (-872 *3))) (-4 *3 (-971)) (-4 *1 (-1046 *3)))) (-2616 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3))))) (-3258 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))) (-3324 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-872 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-3324 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-3324 (*1 *1 *2) (-12 (-5 *2 (-588 (-872 *3))) (-4 *3 (-971)) (-4 *1 (-1046 *3)))) (-3324 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3))))) (-1775 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))) (-3527 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-872 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-3527 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-3527 (*1 *1 *2) (-12 (-5 *2 (-588 (-872 *3))) (-4 *3 (-971)) (-4 *1 (-1046 *3)))) (-3527 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3))))) (-2032 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))) (-2072 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-588 (-588 (-872 *5)))) (-5 *3 (-588 (-156))) (-5 *4 (-156)) (-4 *1 (-1046 *5)) (-4 *5 (-971)))) (-2072 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-588 (-588 (-588 *5)))) (-5 *3 (-588 (-156))) (-5 *4 (-156)) (-4 *1 (-1046 *5)) (-4 *5 (-971)))) (-2072 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-588 (-588 (-872 *4)))) (-5 *3 (-108)) (-4 *1 (-1046 *4)) (-4 *4 (-971)))) (-2072 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-588 (-588 (-588 *4)))) (-5 *3 (-108)) (-4 *1 (-1046 *4)) (-4 *4 (-971)))) (-2072 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 (-872 *3)))) (-4 *3 (-971)) (-4 *1 (-1046 *3)))) (-2072 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-588 (-588 (-872 *4)))) (-5 *3 (-108)) (-4 *4 (-971)) (-4 *1 (-1046 *4)))) (-2072 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-588 (-872 *3)))))) (-2913 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))) (-4047 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3))))) (-3491 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-588 (-588 (-708))))))) (-3870 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-588 (-588 (-872 *3))))))) (-3062 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-588 (-156)))))) (-3186 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-156))))) (-3345 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-2 (|:| -3398 (-708)) (|:| |curves| (-708)) (|:| |polygons| (-708)) (|:| |constructs| (-708)))))) (-2523 (*1 *1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971)))) (-3974 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-1074 3 *3)))))
-(-13 (-1014) (-10 -8 (-15 -2788 ($)) (-15 -2788 ($ (-1074 3 |t#1|))) (-15 -2397 ((-708) $)) (-15 -1625 ((-708) $)) (-15 -2160 ($ (-588 $))) (-15 -2160 ($ $ $)) (-15 -3097 ($ (-588 $))) (-15 -3844 ((-588 $) $)) (-15 -2843 ((-588 $) $)) (-15 -2404 ($ $)) (-15 -2303 ((-708) $ (-588 (-872 |t#1|)))) (-15 -3756 ($ $ (-708) (-872 |t#1|))) (-15 -2736 ($ $ (-872 |t#1|))) (-15 -2736 ($ $ (-588 |t#1|))) (-15 -2736 ($ $ (-708))) (-15 -2736 ($ (-872 |t#1|))) (-15 -2736 ((-872 |t#1|) $)) (-15 -2564 ((-108) $)) (-15 -2616 ($ $ (-588 (-872 |t#1|)))) (-15 -2616 ($ $ (-588 (-588 |t#1|)))) (-15 -2616 ($ (-588 (-872 |t#1|)))) (-15 -2616 ((-588 (-872 |t#1|)) $)) (-15 -3258 ((-108) $)) (-15 -3324 ($ $ (-588 (-872 |t#1|)))) (-15 -3324 ($ $ (-588 (-588 |t#1|)))) (-15 -3324 ($ (-588 (-872 |t#1|)))) (-15 -3324 ((-588 (-872 |t#1|)) $)) (-15 -1775 ((-108) $)) (-15 -3527 ($ $ (-588 (-872 |t#1|)))) (-15 -3527 ($ $ (-588 (-588 |t#1|)))) (-15 -3527 ($ (-588 (-872 |t#1|)))) (-15 -3527 ((-588 (-872 |t#1|)) $)) (-15 -2032 ((-108) $)) (-15 -2072 ($ $ (-588 (-588 (-872 |t#1|))) (-588 (-156)) (-156))) (-15 -2072 ($ $ (-588 (-588 (-588 |t#1|))) (-588 (-156)) (-156))) (-15 -2072 ($ $ (-588 (-588 (-872 |t#1|))) (-108) (-108))) (-15 -2072 ($ $ (-588 (-588 (-588 |t#1|))) (-108) (-108))) (-15 -2072 ($ (-588 (-588 (-872 |t#1|))))) (-15 -2072 ($ (-588 (-588 (-872 |t#1|))) (-108) (-108))) (-15 -2072 ((-588 (-588 (-872 |t#1|))) $)) (-15 -2913 ((-108) $)) (-15 -4047 ((-588 (-872 |t#1|)) $)) (-15 -3491 ((-588 (-588 (-588 (-708)))) $)) (-15 -3870 ((-588 (-588 (-588 (-872 |t#1|)))) $)) (-15 -3062 ((-588 (-588 (-156))) $)) (-15 -3186 ((-588 (-156)) $)) (-15 -3345 ((-2 (|:| -3398 (-708)) (|:| |curves| (-708)) (|:| |polygons| (-708)) (|:| |constructs| (-708))) $)) (-15 -2523 ($ $)) (-15 -3974 ((-1074 3 |t#1|) $)) (-15 -2190 ((-792) $))))
+((-2217 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-792)))) (-4195 (*1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971)))) (-4195 (*1 *1 *2) (-12 (-5 *2 (-1074 3 *3)) (-4 *3 (-971)) (-4 *1 (-1046 *3)))) (-1366 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-708)))) (-2152 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-708)))) (-3164 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-3164 (*1 *1 *1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971)))) (-3884 (*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-2834 (*1 *2 *1) (-12 (-4 *3 (-971)) (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)))) (-4095 (*1 *2 *1) (-12 (-4 *3 (-971)) (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)))) (-2463 (*1 *1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971)))) (-2748 (*1 *2 *1 *3) (-12 (-5 *3 (-588 (-872 *4))) (-4 *1 (-1046 *4)) (-4 *4 (-971)) (-5 *2 (-708)))) (-3151 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *3 (-872 *4)) (-4 *1 (-1046 *4)) (-4 *4 (-971)))) (-1239 (*1 *1 *1 *2) (-12 (-5 *2 (-872 *3)) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-1239 (*1 *1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-1239 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-1239 (*1 *1 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-971)) (-4 *1 (-1046 *3)))) (-1239 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-872 *3)))) (-3828 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))) (-3364 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-872 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-3364 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-3364 (*1 *1 *2) (-12 (-5 *2 (-588 (-872 *3))) (-4 *3 (-971)) (-4 *1 (-1046 *3)))) (-3364 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3))))) (-1787 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))) (-1231 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-872 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-1231 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-1231 (*1 *1 *2) (-12 (-5 *2 (-588 (-872 *3))) (-4 *3 (-971)) (-4 *1 (-1046 *3)))) (-1231 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3))))) (-3568 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))) (-2672 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-872 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-2672 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))) (-2672 (*1 *1 *2) (-12 (-5 *2 (-588 (-872 *3))) (-4 *3 (-971)) (-4 *1 (-1046 *3)))) (-2672 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3))))) (-2428 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))) (-2888 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-588 (-588 (-872 *5)))) (-5 *3 (-588 (-156))) (-5 *4 (-156)) (-4 *1 (-1046 *5)) (-4 *5 (-971)))) (-2888 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-588 (-588 (-588 *5)))) (-5 *3 (-588 (-156))) (-5 *4 (-156)) (-4 *1 (-1046 *5)) (-4 *5 (-971)))) (-2888 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-588 (-588 (-872 *4)))) (-5 *3 (-108)) (-4 *1 (-1046 *4)) (-4 *4 (-971)))) (-2888 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-588 (-588 (-588 *4)))) (-5 *3 (-108)) (-4 *1 (-1046 *4)) (-4 *4 (-971)))) (-2888 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 (-872 *3)))) (-4 *3 (-971)) (-4 *1 (-1046 *3)))) (-2888 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-588 (-588 (-872 *4)))) (-5 *3 (-108)) (-4 *4 (-971)) (-4 *1 (-1046 *4)))) (-2888 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-588 (-872 *3)))))) (-1658 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))) (-4098 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3))))) (-2256 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-588 (-588 (-708))))))) (-1796 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-588 (-588 (-872 *3))))))) (-3549 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-588 (-156)))))) (-2247 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-156))))) (-1887 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-2 (|:| -3748 (-708)) (|:| |curves| (-708)) (|:| |polygons| (-708)) (|:| |constructs| (-708)))))) (-2181 (*1 *1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971)))) (-1584 (*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-1074 3 *3)))))
+(-13 (-1014) (-10 -8 (-15 -4195 ($)) (-15 -4195 ($ (-1074 3 |t#1|))) (-15 -1366 ((-708) $)) (-15 -2152 ((-708) $)) (-15 -3164 ($ (-588 $))) (-15 -3164 ($ $ $)) (-15 -3884 ($ (-588 $))) (-15 -2834 ((-588 $) $)) (-15 -4095 ((-588 $) $)) (-15 -2463 ($ $)) (-15 -2748 ((-708) $ (-588 (-872 |t#1|)))) (-15 -3151 ($ $ (-708) (-872 |t#1|))) (-15 -1239 ($ $ (-872 |t#1|))) (-15 -1239 ($ $ (-588 |t#1|))) (-15 -1239 ($ $ (-708))) (-15 -1239 ($ (-872 |t#1|))) (-15 -1239 ((-872 |t#1|) $)) (-15 -3828 ((-108) $)) (-15 -3364 ($ $ (-588 (-872 |t#1|)))) (-15 -3364 ($ $ (-588 (-588 |t#1|)))) (-15 -3364 ($ (-588 (-872 |t#1|)))) (-15 -3364 ((-588 (-872 |t#1|)) $)) (-15 -1787 ((-108) $)) (-15 -1231 ($ $ (-588 (-872 |t#1|)))) (-15 -1231 ($ $ (-588 (-588 |t#1|)))) (-15 -1231 ($ (-588 (-872 |t#1|)))) (-15 -1231 ((-588 (-872 |t#1|)) $)) (-15 -3568 ((-108) $)) (-15 -2672 ($ $ (-588 (-872 |t#1|)))) (-15 -2672 ($ $ (-588 (-588 |t#1|)))) (-15 -2672 ($ (-588 (-872 |t#1|)))) (-15 -2672 ((-588 (-872 |t#1|)) $)) (-15 -2428 ((-108) $)) (-15 -2888 ($ $ (-588 (-588 (-872 |t#1|))) (-588 (-156)) (-156))) (-15 -2888 ($ $ (-588 (-588 (-588 |t#1|))) (-588 (-156)) (-156))) (-15 -2888 ($ $ (-588 (-588 (-872 |t#1|))) (-108) (-108))) (-15 -2888 ($ $ (-588 (-588 (-588 |t#1|))) (-108) (-108))) (-15 -2888 ($ (-588 (-588 (-872 |t#1|))))) (-15 -2888 ($ (-588 (-588 (-872 |t#1|))) (-108) (-108))) (-15 -2888 ((-588 (-588 (-872 |t#1|))) $)) (-15 -1658 ((-108) $)) (-15 -4098 ((-588 (-872 |t#1|)) $)) (-15 -2256 ((-588 (-588 (-588 (-708)))) $)) (-15 -1796 ((-588 (-588 (-588 (-872 |t#1|)))) $)) (-15 -3549 ((-588 (-588 (-156))) $)) (-15 -2247 ((-588 (-156)) $)) (-15 -1887 ((-2 (|:| -3748 (-708)) (|:| |curves| (-708)) (|:| |polygons| (-708)) (|:| |constructs| (-708))) $)) (-15 -2181 ($ $)) (-15 -1584 ((-1074 3 |t#1|) $)) (-15 -2217 ((-792) $))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-2580 (((-588 (-1090)) (-1068)) 8)))
-(((-1047) (-10 -7 (-15 -2580 ((-588 (-1090)) (-1068))))) (T -1047))
-((-2580 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-588 (-1090))) (-5 *1 (-1047)))))
-(-10 -7 (-15 -2580 ((-588 (-1090)) (-1068))))
-((-3651 (((-1171) (-588 (-792))) 23) (((-1171) (-792)) 22)) (-4189 (((-1171) (-588 (-792))) 21) (((-1171) (-792)) 20)) (-2009 (((-1171) (-588 (-792))) 19) (((-1171) (-792)) 11) (((-1171) (-1068) (-792)) 17)))
-(((-1048) (-10 -7 (-15 -2009 ((-1171) (-1068) (-792))) (-15 -2009 ((-1171) (-792))) (-15 -4189 ((-1171) (-792))) (-15 -3651 ((-1171) (-792))) (-15 -2009 ((-1171) (-588 (-792)))) (-15 -4189 ((-1171) (-588 (-792)))) (-15 -3651 ((-1171) (-588 (-792)))))) (T -1048))
-((-3651 (*1 *2 *3) (-12 (-5 *3 (-588 (-792))) (-5 *2 (-1171)) (-5 *1 (-1048)))) (-4189 (*1 *2 *3) (-12 (-5 *3 (-588 (-792))) (-5 *2 (-1171)) (-5 *1 (-1048)))) (-2009 (*1 *2 *3) (-12 (-5 *3 (-588 (-792))) (-5 *2 (-1171)) (-5 *1 (-1048)))) (-3651 (*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048)))) (-4189 (*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048)))) (-2009 (*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048)))) (-2009 (*1 *2 *3 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048)))))
-(-10 -7 (-15 -2009 ((-1171) (-1068) (-792))) (-15 -2009 ((-1171) (-792))) (-15 -4189 ((-1171) (-792))) (-15 -3651 ((-1171) (-792))) (-15 -2009 ((-1171) (-588 (-792)))) (-15 -4189 ((-1171) (-588 (-792)))) (-15 -3651 ((-1171) (-588 (-792)))))
-((-1967 (($ $ $) 10)) (-3236 (($ $) 9)) (-1829 (($ $ $) 13)) (-2709 (($ $ $) 15)) (-2477 (($ $ $) 12)) (-4205 (($ $ $) 14)) (-1601 (($ $) 17)) (-2607 (($ $) 16)) (-2241 (($ $) 6)) (-2018 (($ $ $) 11) (($ $) 7)) (-2627 (($ $ $) 8)))
+((-2730 (((-588 (-1090)) (-1068)) 8)))
+(((-1047) (-10 -7 (-15 -2730 ((-588 (-1090)) (-1068))))) (T -1047))
+((-2730 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-588 (-1090))) (-5 *1 (-1047)))))
+(-10 -7 (-15 -2730 ((-588 (-1090)) (-1068))))
+((-1412 (((-1171) (-588 (-792))) 23) (((-1171) (-792)) 22)) (-1882 (((-1171) (-588 (-792))) 21) (((-1171) (-792)) 20)) (-2550 (((-1171) (-588 (-792))) 19) (((-1171) (-792)) 11) (((-1171) (-1068) (-792)) 17)))
+(((-1048) (-10 -7 (-15 -2550 ((-1171) (-1068) (-792))) (-15 -2550 ((-1171) (-792))) (-15 -1882 ((-1171) (-792))) (-15 -1412 ((-1171) (-792))) (-15 -2550 ((-1171) (-588 (-792)))) (-15 -1882 ((-1171) (-588 (-792)))) (-15 -1412 ((-1171) (-588 (-792)))))) (T -1048))
+((-1412 (*1 *2 *3) (-12 (-5 *3 (-588 (-792))) (-5 *2 (-1171)) (-5 *1 (-1048)))) (-1882 (*1 *2 *3) (-12 (-5 *3 (-588 (-792))) (-5 *2 (-1171)) (-5 *1 (-1048)))) (-2550 (*1 *2 *3) (-12 (-5 *3 (-588 (-792))) (-5 *2 (-1171)) (-5 *1 (-1048)))) (-1412 (*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048)))) (-1882 (*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048)))) (-2550 (*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048)))) (-2550 (*1 *2 *3 *4) (-12 (-5 *3 (-1068)) (-5 *4 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048)))))
+(-10 -7 (-15 -2550 ((-1171) (-1068) (-792))) (-15 -2550 ((-1171) (-792))) (-15 -1882 ((-1171) (-792))) (-15 -1412 ((-1171) (-792))) (-15 -2550 ((-1171) (-588 (-792)))) (-15 -1882 ((-1171) (-588 (-792)))) (-15 -1412 ((-1171) (-588 (-792)))))
+((-3056 (($ $ $) 10)) (-2852 (($ $) 9)) (-2248 (($ $ $) 13)) (-1551 (($ $ $) 15)) (-3047 (($ $ $) 12)) (-2039 (($ $ $) 14)) (-3799 (($ $) 17)) (-2022 (($ $) 16)) (-4126 (($ $) 6)) (-2245 (($ $ $) 11) (($ $) 7)) (-2288 (($ $ $) 8)))
(((-1049) (-1197)) (T -1049))
-((-1601 (*1 *1 *1) (-4 *1 (-1049))) (-2607 (*1 *1 *1) (-4 *1 (-1049))) (-2709 (*1 *1 *1 *1) (-4 *1 (-1049))) (-4205 (*1 *1 *1 *1) (-4 *1 (-1049))) (-1829 (*1 *1 *1 *1) (-4 *1 (-1049))) (-2477 (*1 *1 *1 *1) (-4 *1 (-1049))) (-2018 (*1 *1 *1 *1) (-4 *1 (-1049))) (-1967 (*1 *1 *1 *1) (-4 *1 (-1049))) (-3236 (*1 *1 *1) (-4 *1 (-1049))) (-2627 (*1 *1 *1 *1) (-4 *1 (-1049))) (-2018 (*1 *1 *1) (-4 *1 (-1049))) (-2241 (*1 *1 *1) (-4 *1 (-1049))))
-(-13 (-10 -8 (-15 -2241 ($ $)) (-15 -2018 ($ $)) (-15 -2627 ($ $ $)) (-15 -3236 ($ $)) (-15 -1967 ($ $ $)) (-15 -2018 ($ $ $)) (-15 -2477 ($ $ $)) (-15 -1829 ($ $ $)) (-15 -4205 ($ $ $)) (-15 -2709 ($ $ $)) (-15 -2607 ($ $)) (-15 -1601 ($ $))))
-((-1416 (((-108) $ $) 41)) (-3435 ((|#1| $) 15)) (-3845 (((-108) $ $ (-1 (-108) |#2| |#2|)) 36)) (-2831 (((-108) $) 17)) (-3203 (($ $ |#1|) 28)) (-2413 (($ $ (-108)) 30)) (-3006 (($ $) 31)) (-3796 (($ $ |#2|) 29)) (-2385 (((-1068) $) NIL)) (-1700 (((-108) $ $ (-1 (-108) |#1| |#1|) (-1 (-108) |#2| |#2|)) 35)) (-4151 (((-1032) $) NIL)) (-3985 (((-108) $) 14)) (-3775 (($) 10)) (-2404 (($ $) 27)) (-2201 (($ |#1| |#2| (-108)) 18) (($ |#1| |#2|) 19) (($ (-2 (|:| |val| |#1|) (|:| -1886 |#2|))) 21) (((-588 $) (-588 (-2 (|:| |val| |#1|) (|:| -1886 |#2|)))) 24) (((-588 $) |#1| (-588 |#2|)) 26)) (-1667 ((|#2| $) 16)) (-2190 (((-792) $) 50)) (-1531 (((-108) $ $) 39)))
-(((-1050 |#1| |#2|) (-13 (-1014) (-10 -8 (-15 -3775 ($)) (-15 -3985 ((-108) $)) (-15 -3435 (|#1| $)) (-15 -1667 (|#2| $)) (-15 -2831 ((-108) $)) (-15 -2201 ($ |#1| |#2| (-108))) (-15 -2201 ($ |#1| |#2|)) (-15 -2201 ($ (-2 (|:| |val| |#1|) (|:| -1886 |#2|)))) (-15 -2201 ((-588 $) (-588 (-2 (|:| |val| |#1|) (|:| -1886 |#2|))))) (-15 -2201 ((-588 $) |#1| (-588 |#2|))) (-15 -2404 ($ $)) (-15 -3203 ($ $ |#1|)) (-15 -3796 ($ $ |#2|)) (-15 -2413 ($ $ (-108))) (-15 -3006 ($ $)) (-15 -1700 ((-108) $ $ (-1 (-108) |#1| |#1|) (-1 (-108) |#2| |#2|))) (-15 -3845 ((-108) $ $ (-1 (-108) |#2| |#2|))))) (-13 (-1014) (-33)) (-13 (-1014) (-33))) (T -1050))
-((-3775 (*1 *1) (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-3985 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))))) (-3435 (*1 *2 *1) (-12 (-4 *2 (-13 (-1014) (-33))) (-5 *1 (-1050 *2 *3)) (-4 *3 (-13 (-1014) (-33))))) (-1667 (*1 *2 *1) (-12 (-4 *2 (-13 (-1014) (-33))) (-5 *1 (-1050 *3 *2)) (-4 *3 (-13 (-1014) (-33))))) (-2831 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))))) (-2201 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-108)) (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-2201 (*1 *1 *2 *3) (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-2201 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -1886 *4))) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1050 *3 *4)))) (-2201 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| |val| *4) (|:| -1886 *5)))) (-4 *4 (-13 (-1014) (-33))) (-4 *5 (-13 (-1014) (-33))) (-5 *2 (-588 (-1050 *4 *5))) (-5 *1 (-1050 *4 *5)))) (-2201 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *5)) (-4 *5 (-13 (-1014) (-33))) (-5 *2 (-588 (-1050 *3 *5))) (-5 *1 (-1050 *3 *5)) (-4 *3 (-13 (-1014) (-33))))) (-2404 (*1 *1 *1) (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-3203 (*1 *1 *1 *2) (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-3796 (*1 *1 *1 *2) (-12 (-5 *1 (-1050 *3 *2)) (-4 *3 (-13 (-1014) (-33))) (-4 *2 (-13 (-1014) (-33))))) (-2413 (*1 *1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))))) (-3006 (*1 *1 *1) (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-1700 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-108) *5 *5)) (-5 *4 (-1 (-108) *6 *6)) (-4 *5 (-13 (-1014) (-33))) (-4 *6 (-13 (-1014) (-33))) (-5 *2 (-108)) (-5 *1 (-1050 *5 *6)))) (-3845 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-108) *5 *5)) (-4 *5 (-13 (-1014) (-33))) (-5 *2 (-108)) (-5 *1 (-1050 *4 *5)) (-4 *4 (-13 (-1014) (-33))))))
-(-13 (-1014) (-10 -8 (-15 -3775 ($)) (-15 -3985 ((-108) $)) (-15 -3435 (|#1| $)) (-15 -1667 (|#2| $)) (-15 -2831 ((-108) $)) (-15 -2201 ($ |#1| |#2| (-108))) (-15 -2201 ($ |#1| |#2|)) (-15 -2201 ($ (-2 (|:| |val| |#1|) (|:| -1886 |#2|)))) (-15 -2201 ((-588 $) (-588 (-2 (|:| |val| |#1|) (|:| -1886 |#2|))))) (-15 -2201 ((-588 $) |#1| (-588 |#2|))) (-15 -2404 ($ $)) (-15 -3203 ($ $ |#1|)) (-15 -3796 ($ $ |#2|)) (-15 -2413 ($ $ (-108))) (-15 -3006 ($ $)) (-15 -1700 ((-108) $ $ (-1 (-108) |#1| |#1|) (-1 (-108) |#2| |#2|))) (-15 -3845 ((-108) $ $ (-1 (-108) |#2| |#2|)))))
-((-1416 (((-108) $ $) NIL (|has| (-1050 |#1| |#2|) (-1014)))) (-3435 (((-1050 |#1| |#2|) $) 25)) (-2266 (($ $) 76)) (-1964 (((-108) (-1050 |#1| |#2|) $ (-1 (-108) |#2| |#2|)) 85)) (-1747 (($ $ $ (-588 (-1050 |#1| |#2|))) 90) (($ $ $ (-588 (-1050 |#1| |#2|)) (-1 (-108) |#2| |#2|)) 91)) (-4141 (((-108) $ (-708)) NIL)) (-3628 (((-1050 |#1| |#2|) $ (-1050 |#1| |#2|)) 43 (|has| $ (-6 -4239)))) (-2379 (((-1050 |#1| |#2|) $ "value" (-1050 |#1| |#2|)) NIL (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-1737 (((-588 (-2 (|:| |val| |#1|) (|:| -1886 |#2|))) $) 80)) (-3859 (($ (-1050 |#1| |#2|) $) 39)) (-1423 (($ (-1050 |#1| |#2|) $) 31)) (-3837 (((-588 (-1050 |#1| |#2|)) $) NIL (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) 51)) (-4208 (((-108) (-1050 |#1| |#2|) $) 82)) (-2030 (((-108) $ $) NIL (|has| (-1050 |#1| |#2|) (-1014)))) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 (-1050 |#1| |#2|)) $) 55 (|has| $ (-6 -4238)))) (-2246 (((-108) (-1050 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-1050 |#1| |#2|) (-1014))))) (-3838 (($ (-1 (-1050 |#1| |#2|) (-1050 |#1| |#2|)) $) 47 (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-1050 |#1| |#2|) (-1050 |#1| |#2|)) $) 46)) (-2720 (((-108) $ (-708)) NIL)) (-1279 (((-588 (-1050 |#1| |#2|)) $) 53)) (-1754 (((-108) $) 42)) (-2385 (((-1068) $) NIL (|has| (-1050 |#1| |#2|) (-1014)))) (-4151 (((-1032) $) NIL (|has| (-1050 |#1| |#2|) (-1014)))) (-3800 (((-3 $ "failed") $) 75)) (-3053 (((-108) (-1 (-108) (-1050 |#1| |#2|)) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-1050 |#1| |#2|)))) NIL (-12 (|has| (-1050 |#1| |#2|) (-285 (-1050 |#1| |#2|))) (|has| (-1050 |#1| |#2|) (-1014)))) (($ $ (-270 (-1050 |#1| |#2|))) NIL (-12 (|has| (-1050 |#1| |#2|) (-285 (-1050 |#1| |#2|))) (|has| (-1050 |#1| |#2|) (-1014)))) (($ $ (-1050 |#1| |#2|) (-1050 |#1| |#2|)) NIL (-12 (|has| (-1050 |#1| |#2|) (-285 (-1050 |#1| |#2|))) (|has| (-1050 |#1| |#2|) (-1014)))) (($ $ (-588 (-1050 |#1| |#2|)) (-588 (-1050 |#1| |#2|))) NIL (-12 (|has| (-1050 |#1| |#2|) (-285 (-1050 |#1| |#2|))) (|has| (-1050 |#1| |#2|) (-1014))))) (-1536 (((-108) $ $) 50)) (-3985 (((-108) $) 22)) (-3775 (($) 24)) (-2545 (((-1050 |#1| |#2|) $ "value") NIL)) (-2011 (((-522) $ $) NIL)) (-3042 (((-108) $) 44)) (-4168 (((-708) (-1 (-108) (-1050 |#1| |#2|)) $) NIL (|has| $ (-6 -4238))) (((-708) (-1050 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-1050 |#1| |#2|) (-1014))))) (-2404 (($ $) 49)) (-2201 (($ (-1050 |#1| |#2|)) 9) (($ |#1| |#2| (-588 $)) 12) (($ |#1| |#2| (-588 (-1050 |#1| |#2|))) 14) (($ |#1| |#2| |#1| (-588 |#2|)) 17)) (-4130 (((-588 |#2|) $) 81)) (-2190 (((-792) $) 73 (|has| (-1050 |#1| |#2|) (-562 (-792))))) (-1749 (((-588 $) $) 28)) (-2425 (((-108) $ $) NIL (|has| (-1050 |#1| |#2|) (-1014)))) (-3648 (((-108) (-1 (-108) (-1050 |#1| |#2|)) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 64 (|has| (-1050 |#1| |#2|) (-1014)))) (-3480 (((-708) $) 58 (|has| $ (-6 -4238)))))
-(((-1051 |#1| |#2|) (-13 (-936 (-1050 |#1| |#2|)) (-10 -8 (-6 -4239) (-6 -4238) (-15 -3800 ((-3 $ "failed") $)) (-15 -2266 ($ $)) (-15 -2201 ($ (-1050 |#1| |#2|))) (-15 -2201 ($ |#1| |#2| (-588 $))) (-15 -2201 ($ |#1| |#2| (-588 (-1050 |#1| |#2|)))) (-15 -2201 ($ |#1| |#2| |#1| (-588 |#2|))) (-15 -4130 ((-588 |#2|) $)) (-15 -1737 ((-588 (-2 (|:| |val| |#1|) (|:| -1886 |#2|))) $)) (-15 -4208 ((-108) (-1050 |#1| |#2|) $)) (-15 -1964 ((-108) (-1050 |#1| |#2|) $ (-1 (-108) |#2| |#2|))) (-15 -1423 ($ (-1050 |#1| |#2|) $)) (-15 -3859 ($ (-1050 |#1| |#2|) $)) (-15 -1747 ($ $ $ (-588 (-1050 |#1| |#2|)))) (-15 -1747 ($ $ $ (-588 (-1050 |#1| |#2|)) (-1 (-108) |#2| |#2|))))) (-13 (-1014) (-33)) (-13 (-1014) (-33))) (T -1051))
-((-3800 (*1 *1 *1) (|partial| -12 (-5 *1 (-1051 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-2266 (*1 *1 *1) (-12 (-5 *1 (-1051 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-2201 (*1 *1 *2) (-12 (-5 *2 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))) (-2201 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-588 (-1051 *2 *3))) (-5 *1 (-1051 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-2201 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-588 (-1050 *2 *3))) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))) (-5 *1 (-1051 *2 *3)))) (-2201 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-13 (-1014) (-33))) (-5 *1 (-1051 *2 *3)) (-4 *2 (-13 (-1014) (-33))))) (-4130 (*1 *2 *1) (-12 (-5 *2 (-588 *4)) (-5 *1 (-1051 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))))) (-1737 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4)))) (-5 *1 (-1051 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))))) (-4208 (*1 *2 *3 *1) (-12 (-5 *3 (-1050 *4 *5)) (-4 *4 (-13 (-1014) (-33))) (-4 *5 (-13 (-1014) (-33))) (-5 *2 (-108)) (-5 *1 (-1051 *4 *5)))) (-1964 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1050 *5 *6)) (-5 *4 (-1 (-108) *6 *6)) (-4 *5 (-13 (-1014) (-33))) (-4 *6 (-13 (-1014) (-33))) (-5 *2 (-108)) (-5 *1 (-1051 *5 *6)))) (-1423 (*1 *1 *2 *1) (-12 (-5 *2 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))) (-3859 (*1 *1 *2 *1) (-12 (-5 *2 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))) (-1747 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-588 (-1050 *3 *4))) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))) (-1747 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-1050 *4 *5))) (-5 *3 (-1 (-108) *5 *5)) (-4 *4 (-13 (-1014) (-33))) (-4 *5 (-13 (-1014) (-33))) (-5 *1 (-1051 *4 *5)))))
-(-13 (-936 (-1050 |#1| |#2|)) (-10 -8 (-6 -4239) (-6 -4238) (-15 -3800 ((-3 $ "failed") $)) (-15 -2266 ($ $)) (-15 -2201 ($ (-1050 |#1| |#2|))) (-15 -2201 ($ |#1| |#2| (-588 $))) (-15 -2201 ($ |#1| |#2| (-588 (-1050 |#1| |#2|)))) (-15 -2201 ($ |#1| |#2| |#1| (-588 |#2|))) (-15 -4130 ((-588 |#2|) $)) (-15 -1737 ((-588 (-2 (|:| |val| |#1|) (|:| -1886 |#2|))) $)) (-15 -4208 ((-108) (-1050 |#1| |#2|) $)) (-15 -1964 ((-108) (-1050 |#1| |#2|) $ (-1 (-108) |#2| |#2|))) (-15 -1423 ($ (-1050 |#1| |#2|) $)) (-15 -3859 ($ (-1050 |#1| |#2|) $)) (-15 -1747 ($ $ $ (-588 (-1050 |#1| |#2|)))) (-15 -1747 ($ $ $ (-588 (-1050 |#1| |#2|)) (-1 (-108) |#2| |#2|)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2318 (($ $) NIL)) (-1865 ((|#2| $) NIL)) (-2727 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-2499 (($ (-628 |#2|)) 45)) (-2527 (((-108) $) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-3022 (($ |#2|) 9)) (-3175 (($) NIL T CONST)) (-2264 (($ $) 58 (|has| |#2| (-283)))) (-1860 (((-217 |#1| |#2|) $ (-522)) 31)) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 |#2| "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) ((|#2| $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) 72)) (-3166 (((-708) $) 60 (|has| |#2| (-514)))) (-3631 ((|#2| $ (-522) (-522)) NIL)) (-3837 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2782 (((-108) $) NIL)) (-3799 (((-708) $) 62 (|has| |#2| (-514)))) (-2064 (((-588 (-217 |#1| |#2|)) $) 66 (|has| |#2| (-514)))) (-1411 (((-708) $) NIL)) (-1422 (((-708) $) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-3081 ((|#2| $) 56 (|has| |#2| (-6 (-4240 "*"))))) (-2575 (((-522) $) NIL)) (-1885 (((-522) $) NIL)) (-3308 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-3886 (((-522) $) NIL)) (-4132 (((-522) $) NIL)) (-1366 (($ (-588 (-588 |#2|))) 26)) (-3838 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3237 (((-588 (-588 |#2|)) $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-2147 (((-3 $ "failed") $) 69 (|has| |#2| (-338)))) (-4151 (((-1032) $) NIL)) (-2232 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514)))) (-3053 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#2| $ (-522) (-522) |#2|) NIL) ((|#2| $ (-522) (-522)) NIL)) (-2157 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $) NIL (|has| |#2| (-210)))) (-1708 ((|#2| $) NIL)) (-4077 (($ (-588 |#2|)) 40)) (-1767 (((-108) $) NIL)) (-3263 (((-217 |#1| |#2|) $) NIL)) (-3206 ((|#2| $) 54 (|has| |#2| (-6 (-4240 "*"))))) (-4168 (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2404 (($ $) NIL)) (-1431 (((-498) $) 81 (|has| |#2| (-563 (-498))))) (-3488 (((-217 |#1| |#2|) $ (-522)) 33)) (-2190 (((-792) $) 36) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#2| (-962 (-382 (-522))))) (($ |#2|) NIL) (((-628 |#2|) $) 42)) (-2323 (((-708)) 17)) (-3648 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1697 (((-108) $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 11 T CONST)) (-3577 (($) 14 T CONST)) (-2213 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $) NIL (|has| |#2| (-210)))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) 52) (($ $ (-522)) 71 (|has| |#2| (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-217 |#1| |#2|) $ (-217 |#1| |#2|)) 48) (((-217 |#1| |#2|) (-217 |#1| |#2|) $) 50)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-1052 |#1| |#2|) (-13 (-1035 |#1| |#2| (-217 |#1| |#2|) (-217 |#1| |#2|)) (-562 (-628 |#2|)) (-10 -8 (-15 -2318 ($ $)) (-15 -2499 ($ (-628 |#2|))) (-15 -2190 ((-628 |#2|) $)) (IF (|has| |#2| (-6 (-4240 "*"))) (-6 -4227) |%noBranch|) (IF (|has| |#2| (-6 (-4240 "*"))) (IF (|has| |#2| (-6 -4235)) (-6 -4235) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|))) (-708) (-971)) (T -1052))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-628 *4)) (-5 *1 (-1052 *3 *4)) (-14 *3 (-708)) (-4 *4 (-971)))) (-2318 (*1 *1 *1) (-12 (-5 *1 (-1052 *2 *3)) (-14 *2 (-708)) (-4 *3 (-971)))) (-2499 (*1 *1 *2) (-12 (-5 *2 (-628 *4)) (-4 *4 (-971)) (-5 *1 (-1052 *3 *4)) (-14 *3 (-708)))))
-(-13 (-1035 |#1| |#2| (-217 |#1| |#2|) (-217 |#1| |#2|)) (-562 (-628 |#2|)) (-10 -8 (-15 -2318 ($ $)) (-15 -2499 ($ (-628 |#2|))) (-15 -2190 ((-628 |#2|) $)) (IF (|has| |#2| (-6 (-4240 "*"))) (-6 -4227) |%noBranch|) (IF (|has| |#2| (-6 (-4240 "*"))) (IF (|has| |#2| (-6 -4235)) (-6 -4235) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|)))
-((-2084 (($ $) 19)) (-3192 (($ $ (-132)) 10) (($ $ (-129)) 14)) (-3792 (((-108) $ $) 24)) (-2390 (($ $) 17)) (-2545 (((-132) $ (-522) (-132)) NIL) (((-132) $ (-522)) NIL) (($ $ (-1133 (-522))) NIL) (($ $ $) 29)) (-2190 (($ (-132)) 27) (((-792) $) NIL)))
-(((-1053 |#1|) (-10 -8 (-15 -2190 ((-792) |#1|)) (-15 -2545 (|#1| |#1| |#1|)) (-15 -3192 (|#1| |#1| (-129))) (-15 -3192 (|#1| |#1| (-132))) (-15 -2190 (|#1| (-132))) (-15 -3792 ((-108) |#1| |#1|)) (-15 -2084 (|#1| |#1|)) (-15 -2390 (|#1| |#1|)) (-15 -2545 (|#1| |#1| (-1133 (-522)))) (-15 -2545 ((-132) |#1| (-522))) (-15 -2545 ((-132) |#1| (-522) (-132)))) (-1054)) (T -1053))
-NIL
-(-10 -8 (-15 -2190 ((-792) |#1|)) (-15 -2545 (|#1| |#1| |#1|)) (-15 -3192 (|#1| |#1| (-129))) (-15 -3192 (|#1| |#1| (-132))) (-15 -2190 (|#1| (-132))) (-15 -3792 ((-108) |#1| |#1|)) (-15 -2084 (|#1| |#1|)) (-15 -2390 (|#1| |#1|)) (-15 -2545 (|#1| |#1| (-1133 (-522)))) (-15 -2545 ((-132) |#1| (-522))) (-15 -2545 ((-132) |#1| (-522) (-132))))
-((-1416 (((-108) $ $) 19 (|has| (-132) (-1014)))) (-3539 (($ $) 120)) (-2084 (($ $) 121)) (-3192 (($ $ (-132)) 108) (($ $ (-129)) 107)) (-2679 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-3768 (((-108) $ $) 118)) (-3744 (((-108) $ $ (-522)) 117)) (-2724 (((-588 $) $ (-132)) 110) (((-588 $) $ (-129)) 109)) (-4187 (((-108) (-1 (-108) (-132) (-132)) $) 98) (((-108) $) 92 (|has| (-132) (-784)))) (-3537 (($ (-1 (-108) (-132) (-132)) $) 89 (|has| $ (-6 -4239))) (($ $) 88 (-12 (|has| (-132) (-784)) (|has| $ (-6 -4239))))) (-3216 (($ (-1 (-108) (-132) (-132)) $) 99) (($ $) 93 (|has| (-132) (-784)))) (-4141 (((-108) $ (-708)) 8)) (-2379 (((-132) $ (-522) (-132)) 52 (|has| $ (-6 -4239))) (((-132) $ (-1133 (-522)) (-132)) 58 (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) (-132)) $) 75 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-2850 (($ $ (-132)) 104) (($ $ (-129)) 103)) (-3509 (($ $) 90 (|has| $ (-6 -4239)))) (-1862 (($ $) 100)) (-2516 (($ $ (-1133 (-522)) $) 114)) (-2333 (($ $) 78 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ (-132) $) 77 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) (-132)) $) 74 (|has| $ (-6 -4238)))) (-3864 (((-132) (-1 (-132) (-132) (-132)) $ (-132) (-132)) 76 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238)))) (((-132) (-1 (-132) (-132) (-132)) $ (-132)) 73 (|has| $ (-6 -4238))) (((-132) (-1 (-132) (-132) (-132)) $) 72 (|has| $ (-6 -4238)))) (-3854 (((-132) $ (-522) (-132)) 53 (|has| $ (-6 -4239)))) (-3631 (((-132) $ (-522)) 51)) (-3792 (((-108) $ $) 119)) (-3238 (((-522) (-1 (-108) (-132)) $) 97) (((-522) (-132) $) 96 (|has| (-132) (-1014))) (((-522) (-132) $ (-522)) 95 (|has| (-132) (-1014))) (((-522) $ $ (-522)) 113) (((-522) (-129) $ (-522)) 112)) (-3837 (((-588 (-132)) $) 30 (|has| $ (-6 -4238)))) (-1811 (($ (-708) (-132)) 69)) (-3352 (((-108) $ (-708)) 9)) (-1359 (((-522) $) 43 (|has| (-522) (-784)))) (-2814 (($ $ $) 87 (|has| (-132) (-784)))) (-2160 (($ (-1 (-108) (-132) (-132)) $ $) 101) (($ $ $) 94 (|has| (-132) (-784)))) (-3308 (((-588 (-132)) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) (-132) $) 27 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 44 (|has| (-522) (-784)))) (-2446 (($ $ $) 86 (|has| (-132) (-784)))) (-1455 (((-108) $ $ (-132)) 115)) (-4148 (((-708) $ $ (-132)) 116)) (-3838 (($ (-1 (-132) (-132)) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-132) (-132)) $) 35) (($ (-1 (-132) (-132) (-132)) $ $) 64)) (-1909 (($ $) 122)) (-2390 (($ $) 123)) (-2720 (((-108) $ (-708)) 10)) (-2862 (($ $ (-132)) 106) (($ $ (-129)) 105)) (-2385 (((-1068) $) 22 (|has| (-132) (-1014)))) (-1661 (($ (-132) $ (-522)) 60) (($ $ $ (-522)) 59)) (-3604 (((-588 (-522)) $) 46)) (-1405 (((-108) (-522) $) 47)) (-4151 (((-1032) $) 21 (|has| (-132) (-1014)))) (-2294 (((-132) $) 42 (|has| (-522) (-784)))) (-1414 (((-3 (-132) "failed") (-1 (-108) (-132)) $) 71)) (-2602 (($ $ (-132)) 41 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) (-132)) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-132)))) 26 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-270 (-132))) 25 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-132) (-132)) 24 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-588 (-132)) (-588 (-132))) 23 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) (-132) $) 45 (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1525 (((-588 (-132)) $) 48)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 (((-132) $ (-522) (-132)) 50) (((-132) $ (-522)) 49) (($ $ (-1133 (-522))) 63) (($ $ $) 102)) (-3696 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-4168 (((-708) (-1 (-108) (-132)) $) 31 (|has| $ (-6 -4238))) (((-708) (-132) $) 28 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238))))) (-1577 (($ $ $ (-522)) 91 (|has| $ (-6 -4239)))) (-2404 (($ $) 13)) (-1431 (((-498) $) 79 (|has| (-132) (-563 (-498))))) (-2201 (($ (-588 (-132))) 70)) (-4165 (($ $ (-132)) 68) (($ (-132) $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2190 (($ (-132)) 111) (((-792) $) 18 (|has| (-132) (-562 (-792))))) (-3648 (((-108) (-1 (-108) (-132)) $) 33 (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) 84 (|has| (-132) (-784)))) (-1558 (((-108) $ $) 83 (|has| (-132) (-784)))) (-1531 (((-108) $ $) 20 (|has| (-132) (-1014)))) (-1566 (((-108) $ $) 85 (|has| (-132) (-784)))) (-1549 (((-108) $ $) 82 (|has| (-132) (-784)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-3799 (*1 *1 *1) (-4 *1 (-1049))) (-2022 (*1 *1 *1) (-4 *1 (-1049))) (-1551 (*1 *1 *1 *1) (-4 *1 (-1049))) (-2039 (*1 *1 *1 *1) (-4 *1 (-1049))) (-2248 (*1 *1 *1 *1) (-4 *1 (-1049))) (-3047 (*1 *1 *1 *1) (-4 *1 (-1049))) (-2245 (*1 *1 *1 *1) (-4 *1 (-1049))) (-3056 (*1 *1 *1 *1) (-4 *1 (-1049))) (-2852 (*1 *1 *1) (-4 *1 (-1049))) (-2288 (*1 *1 *1 *1) (-4 *1 (-1049))) (-2245 (*1 *1 *1) (-4 *1 (-1049))) (-4126 (*1 *1 *1) (-4 *1 (-1049))))
+(-13 (-10 -8 (-15 -4126 ($ $)) (-15 -2245 ($ $)) (-15 -2288 ($ $ $)) (-15 -2852 ($ $)) (-15 -3056 ($ $ $)) (-15 -2245 ($ $ $)) (-15 -3047 ($ $ $)) (-15 -2248 ($ $ $)) (-15 -2039 ($ $ $)) (-15 -1551 ($ $ $)) (-15 -2022 ($ $)) (-15 -3799 ($ $))))
+((-1419 (((-108) $ $) 41)) (-3526 ((|#1| $) 15)) (-2845 (((-108) $ $ (-1 (-108) |#2| |#2|)) 36)) (-2972 (((-108) $) 17)) (-2459 (($ $ |#1|) 28)) (-2596 (($ $ (-108)) 30)) (-1205 (($ $) 31)) (-2291 (($ $ |#2|) 29)) (-2311 (((-1068) $) NIL)) (-4074 (((-108) $ $ (-1 (-108) |#1| |#1|) (-1 (-108) |#2| |#2|)) 35)) (-4174 (((-1032) $) NIL)) (-3494 (((-108) $) 14)) (-3298 (($) 10)) (-2463 (($ $) 27)) (-2227 (($ |#1| |#2| (-108)) 18) (($ |#1| |#2|) 19) (($ (-2 (|:| |val| |#1|) (|:| -1974 |#2|))) 21) (((-588 $) (-588 (-2 (|:| |val| |#1|) (|:| -1974 |#2|)))) 24) (((-588 $) |#1| (-588 |#2|)) 26)) (-1755 ((|#2| $) 16)) (-2217 (((-792) $) 50)) (-1562 (((-108) $ $) 39)))
+(((-1050 |#1| |#2|) (-13 (-1014) (-10 -8 (-15 -3298 ($)) (-15 -3494 ((-108) $)) (-15 -3526 (|#1| $)) (-15 -1755 (|#2| $)) (-15 -2972 ((-108) $)) (-15 -2227 ($ |#1| |#2| (-108))) (-15 -2227 ($ |#1| |#2|)) (-15 -2227 ($ (-2 (|:| |val| |#1|) (|:| -1974 |#2|)))) (-15 -2227 ((-588 $) (-588 (-2 (|:| |val| |#1|) (|:| -1974 |#2|))))) (-15 -2227 ((-588 $) |#1| (-588 |#2|))) (-15 -2463 ($ $)) (-15 -2459 ($ $ |#1|)) (-15 -2291 ($ $ |#2|)) (-15 -2596 ($ $ (-108))) (-15 -1205 ($ $)) (-15 -4074 ((-108) $ $ (-1 (-108) |#1| |#1|) (-1 (-108) |#2| |#2|))) (-15 -2845 ((-108) $ $ (-1 (-108) |#2| |#2|))))) (-13 (-1014) (-33)) (-13 (-1014) (-33))) (T -1050))
+((-3298 (*1 *1) (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-3494 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))))) (-3526 (*1 *2 *1) (-12 (-4 *2 (-13 (-1014) (-33))) (-5 *1 (-1050 *2 *3)) (-4 *3 (-13 (-1014) (-33))))) (-1755 (*1 *2 *1) (-12 (-4 *2 (-13 (-1014) (-33))) (-5 *1 (-1050 *3 *2)) (-4 *3 (-13 (-1014) (-33))))) (-2972 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))))) (-2227 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-108)) (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-2227 (*1 *1 *2 *3) (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-2227 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -1974 *4))) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1050 *3 *4)))) (-2227 (*1 *2 *3) (-12 (-5 *3 (-588 (-2 (|:| |val| *4) (|:| -1974 *5)))) (-4 *4 (-13 (-1014) (-33))) (-4 *5 (-13 (-1014) (-33))) (-5 *2 (-588 (-1050 *4 *5))) (-5 *1 (-1050 *4 *5)))) (-2227 (*1 *2 *3 *4) (-12 (-5 *4 (-588 *5)) (-4 *5 (-13 (-1014) (-33))) (-5 *2 (-588 (-1050 *3 *5))) (-5 *1 (-1050 *3 *5)) (-4 *3 (-13 (-1014) (-33))))) (-2463 (*1 *1 *1) (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-2459 (*1 *1 *1 *2) (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-2291 (*1 *1 *1 *2) (-12 (-5 *1 (-1050 *3 *2)) (-4 *3 (-13 (-1014) (-33))) (-4 *2 (-13 (-1014) (-33))))) (-2596 (*1 *1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))))) (-1205 (*1 *1 *1) (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-4074 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-108) *5 *5)) (-5 *4 (-1 (-108) *6 *6)) (-4 *5 (-13 (-1014) (-33))) (-4 *6 (-13 (-1014) (-33))) (-5 *2 (-108)) (-5 *1 (-1050 *5 *6)))) (-2845 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-108) *5 *5)) (-4 *5 (-13 (-1014) (-33))) (-5 *2 (-108)) (-5 *1 (-1050 *4 *5)) (-4 *4 (-13 (-1014) (-33))))))
+(-13 (-1014) (-10 -8 (-15 -3298 ($)) (-15 -3494 ((-108) $)) (-15 -3526 (|#1| $)) (-15 -1755 (|#2| $)) (-15 -2972 ((-108) $)) (-15 -2227 ($ |#1| |#2| (-108))) (-15 -2227 ($ |#1| |#2|)) (-15 -2227 ($ (-2 (|:| |val| |#1|) (|:| -1974 |#2|)))) (-15 -2227 ((-588 $) (-588 (-2 (|:| |val| |#1|) (|:| -1974 |#2|))))) (-15 -2227 ((-588 $) |#1| (-588 |#2|))) (-15 -2463 ($ $)) (-15 -2459 ($ $ |#1|)) (-15 -2291 ($ $ |#2|)) (-15 -2596 ($ $ (-108))) (-15 -1205 ($ $)) (-15 -4074 ((-108) $ $ (-1 (-108) |#1| |#1|) (-1 (-108) |#2| |#2|))) (-15 -2845 ((-108) $ $ (-1 (-108) |#2| |#2|)))))
+((-1419 (((-108) $ $) NIL (|has| (-1050 |#1| |#2|) (-1014)))) (-3526 (((-1050 |#1| |#2|) $) 25)) (-2111 (($ $) 76)) (-3026 (((-108) (-1050 |#1| |#2|) $ (-1 (-108) |#2| |#2|)) 85)) (-1487 (($ $ $ (-588 (-1050 |#1| |#2|))) 90) (($ $ $ (-588 (-1050 |#1| |#2|)) (-1 (-108) |#2| |#2|)) 91)) (-2717 (((-108) $ (-708)) NIL)) (-1198 (((-1050 |#1| |#2|) $ (-1050 |#1| |#2|)) 43 (|has| $ (-6 -4239)))) (-2437 (((-1050 |#1| |#2|) $ "value" (-1050 |#1| |#2|)) NIL (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-1830 (((-588 (-2 (|:| |val| |#1|) (|:| -1974 |#2|))) $) 80)) (-1700 (($ (-1050 |#1| |#2|) $) 39)) (-1424 (($ (-1050 |#1| |#2|) $) 31)) (-2395 (((-588 (-1050 |#1| |#2|)) $) NIL (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) 51)) (-2064 (((-108) (-1050 |#1| |#2|) $) 82)) (-2402 (((-108) $ $) NIL (|has| (-1050 |#1| |#2|) (-1014)))) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 (-1050 |#1| |#2|)) $) 55 (|has| $ (-6 -4238)))) (-4176 (((-108) (-1050 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-1050 |#1| |#2|) (-1014))))) (-2397 (($ (-1 (-1050 |#1| |#2|) (-1050 |#1| |#2|)) $) 47 (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-1050 |#1| |#2|) (-1050 |#1| |#2|)) $) 46)) (-3309 (((-108) $ (-708)) NIL)) (-2548 (((-588 (-1050 |#1| |#2|)) $) 53)) (-3394 (((-108) $) 42)) (-2311 (((-1068) $) NIL (|has| (-1050 |#1| |#2|) (-1014)))) (-4174 (((-1032) $) NIL (|has| (-1050 |#1| |#2|) (-1014)))) (-2350 (((-3 $ "failed") $) 75)) (-3487 (((-108) (-1 (-108) (-1050 |#1| |#2|)) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-1050 |#1| |#2|)))) NIL (-12 (|has| (-1050 |#1| |#2|) (-285 (-1050 |#1| |#2|))) (|has| (-1050 |#1| |#2|) (-1014)))) (($ $ (-270 (-1050 |#1| |#2|))) NIL (-12 (|has| (-1050 |#1| |#2|) (-285 (-1050 |#1| |#2|))) (|has| (-1050 |#1| |#2|) (-1014)))) (($ $ (-1050 |#1| |#2|) (-1050 |#1| |#2|)) NIL (-12 (|has| (-1050 |#1| |#2|) (-285 (-1050 |#1| |#2|))) (|has| (-1050 |#1| |#2|) (-1014)))) (($ $ (-588 (-1050 |#1| |#2|)) (-588 (-1050 |#1| |#2|))) NIL (-12 (|has| (-1050 |#1| |#2|) (-285 (-1050 |#1| |#2|))) (|has| (-1050 |#1| |#2|) (-1014))))) (-2065 (((-108) $ $) 50)) (-3494 (((-108) $) 22)) (-3298 (($) 24)) (-2683 (((-1050 |#1| |#2|) $ "value") NIL)) (-3381 (((-522) $ $) NIL)) (-3395 (((-108) $) 44)) (-4187 (((-708) (-1 (-108) (-1050 |#1| |#2|)) $) NIL (|has| $ (-6 -4238))) (((-708) (-1050 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-1050 |#1| |#2|) (-1014))))) (-2463 (($ $) 49)) (-2227 (($ (-1050 |#1| |#2|)) 9) (($ |#1| |#2| (-588 $)) 12) (($ |#1| |#2| (-588 (-1050 |#1| |#2|))) 14) (($ |#1| |#2| |#1| (-588 |#2|)) 17)) (-4157 (((-588 |#2|) $) 81)) (-2217 (((-792) $) 73 (|has| (-1050 |#1| |#2|) (-562 (-792))))) (-1515 (((-588 $) $) 28)) (-3294 (((-108) $ $) NIL (|has| (-1050 |#1| |#2|) (-1014)))) (-1381 (((-108) (-1 (-108) (-1050 |#1| |#2|)) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 64 (|has| (-1050 |#1| |#2|) (-1014)))) (-3591 (((-708) $) 58 (|has| $ (-6 -4238)))))
+(((-1051 |#1| |#2|) (-13 (-936 (-1050 |#1| |#2|)) (-10 -8 (-6 -4239) (-6 -4238) (-15 -2350 ((-3 $ "failed") $)) (-15 -2111 ($ $)) (-15 -2227 ($ (-1050 |#1| |#2|))) (-15 -2227 ($ |#1| |#2| (-588 $))) (-15 -2227 ($ |#1| |#2| (-588 (-1050 |#1| |#2|)))) (-15 -2227 ($ |#1| |#2| |#1| (-588 |#2|))) (-15 -4157 ((-588 |#2|) $)) (-15 -1830 ((-588 (-2 (|:| |val| |#1|) (|:| -1974 |#2|))) $)) (-15 -2064 ((-108) (-1050 |#1| |#2|) $)) (-15 -3026 ((-108) (-1050 |#1| |#2|) $ (-1 (-108) |#2| |#2|))) (-15 -1424 ($ (-1050 |#1| |#2|) $)) (-15 -1700 ($ (-1050 |#1| |#2|) $)) (-15 -1487 ($ $ $ (-588 (-1050 |#1| |#2|)))) (-15 -1487 ($ $ $ (-588 (-1050 |#1| |#2|)) (-1 (-108) |#2| |#2|))))) (-13 (-1014) (-33)) (-13 (-1014) (-33))) (T -1051))
+((-2350 (*1 *1 *1) (|partial| -12 (-5 *1 (-1051 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-2111 (*1 *1 *1) (-12 (-5 *1 (-1051 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-2227 (*1 *1 *2) (-12 (-5 *2 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))) (-2227 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-588 (-1051 *2 *3))) (-5 *1 (-1051 *2 *3)) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))))) (-2227 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-588 (-1050 *2 *3))) (-4 *2 (-13 (-1014) (-33))) (-4 *3 (-13 (-1014) (-33))) (-5 *1 (-1051 *2 *3)))) (-2227 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-588 *3)) (-4 *3 (-13 (-1014) (-33))) (-5 *1 (-1051 *2 *3)) (-4 *2 (-13 (-1014) (-33))))) (-4157 (*1 *2 *1) (-12 (-5 *2 (-588 *4)) (-5 *1 (-1051 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))))) (-1830 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4)))) (-5 *1 (-1051 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))))) (-2064 (*1 *2 *3 *1) (-12 (-5 *3 (-1050 *4 *5)) (-4 *4 (-13 (-1014) (-33))) (-4 *5 (-13 (-1014) (-33))) (-5 *2 (-108)) (-5 *1 (-1051 *4 *5)))) (-3026 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1050 *5 *6)) (-5 *4 (-1 (-108) *6 *6)) (-4 *5 (-13 (-1014) (-33))) (-4 *6 (-13 (-1014) (-33))) (-5 *2 (-108)) (-5 *1 (-1051 *5 *6)))) (-1424 (*1 *1 *2 *1) (-12 (-5 *2 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))) (-1700 (*1 *1 *2 *1) (-12 (-5 *2 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))) (-1487 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-588 (-1050 *3 *4))) (-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))) (-1487 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-1050 *4 *5))) (-5 *3 (-1 (-108) *5 *5)) (-4 *4 (-13 (-1014) (-33))) (-4 *5 (-13 (-1014) (-33))) (-5 *1 (-1051 *4 *5)))))
+(-13 (-936 (-1050 |#1| |#2|)) (-10 -8 (-6 -4239) (-6 -4238) (-15 -2350 ((-3 $ "failed") $)) (-15 -2111 ($ $)) (-15 -2227 ($ (-1050 |#1| |#2|))) (-15 -2227 ($ |#1| |#2| (-588 $))) (-15 -2227 ($ |#1| |#2| (-588 (-1050 |#1| |#2|)))) (-15 -2227 ($ |#1| |#2| |#1| (-588 |#2|))) (-15 -4157 ((-588 |#2|) $)) (-15 -1830 ((-588 (-2 (|:| |val| |#1|) (|:| -1974 |#2|))) $)) (-15 -2064 ((-108) (-1050 |#1| |#2|) $)) (-15 -3026 ((-108) (-1050 |#1| |#2|) $ (-1 (-108) |#2| |#2|))) (-15 -1424 ($ (-1050 |#1| |#2|) $)) (-15 -1700 ($ (-1050 |#1| |#2|) $)) (-15 -1487 ($ $ $ (-588 (-1050 |#1| |#2|)))) (-15 -1487 ($ $ $ (-588 (-1050 |#1| |#2|)) (-1 (-108) |#2| |#2|)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2682 (($ $) NIL)) (-1945 ((|#2| $) NIL)) (-3455 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-4177 (($ (-628 |#2|)) 45)) (-2208 (((-108) $) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1348 (($ |#2|) 9)) (-3367 (($) NIL T CONST)) (-2091 (($ $) 58 (|has| |#2| (-283)))) (-2635 (((-217 |#1| |#2|) $ (-522)) 31)) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 |#2| "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) ((|#2| $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) 72)) (-1692 (((-708) $) 60 (|has| |#2| (-514)))) (-2186 ((|#2| $ (-522) (-522)) NIL)) (-2395 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2859 (((-108) $) NIL)) (-2336 (((-708) $) 62 (|has| |#2| (-514)))) (-2819 (((-588 (-217 |#1| |#2|)) $) 66 (|has| |#2| (-514)))) (-2949 (((-708) $) NIL)) (-2960 (((-708) $) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3721 ((|#2| $) 56 (|has| |#2| (-6 (-4240 "*"))))) (-2604 (((-522) $) NIL)) (-4042 (((-522) $) NIL)) (-4084 (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1925 (((-522) $) NIL)) (-2595 (((-522) $) NIL)) (-1347 (($ (-588 (-588 |#2|))) 26)) (-2397 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2862 (((-588 (-588 |#2|)) $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-3073 (((-3 $ "failed") $) 69 (|has| |#2| (-338)))) (-4174 (((-1032) $) NIL)) (-2276 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514)))) (-3487 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#2| $ (-522) (-522) |#2|) NIL) ((|#2| $ (-522) (-522)) NIL)) (-2731 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $) NIL (|has| |#2| (-210)))) (-4147 ((|#2| $) NIL)) (-3215 (($ (-588 |#2|)) 40)) (-3498 (((-108) $) NIL)) (-1828 (((-217 |#1| |#2|) $) NIL)) (-2500 ((|#2| $) 54 (|has| |#2| (-6 (-4240 "*"))))) (-4187 (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2463 (($ $) NIL)) (-3873 (((-498) $) 81 (|has| |#2| (-563 (-498))))) (-2223 (((-217 |#1| |#2|) $ (-522)) 33)) (-2217 (((-792) $) 36) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#2| (-962 (-382 (-522))))) (($ |#2|) NIL) (((-628 |#2|) $) 42)) (-2742 (((-708)) 17)) (-1381 (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-4047 (((-108) $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 11 T CONST)) (-3709 (($) 14 T CONST)) (-2252 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-708)) NIL (|has| |#2| (-210))) (($ $) NIL (|has| |#2| (-210)))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) 52) (($ $ (-522)) 71 (|has| |#2| (-338)))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-217 |#1| |#2|) $ (-217 |#1| |#2|)) 48) (((-217 |#1| |#2|) (-217 |#1| |#2|) $) 50)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-1052 |#1| |#2|) (-13 (-1035 |#1| |#2| (-217 |#1| |#2|) (-217 |#1| |#2|)) (-562 (-628 |#2|)) (-10 -8 (-15 -2682 ($ $)) (-15 -4177 ($ (-628 |#2|))) (-15 -2217 ((-628 |#2|) $)) (IF (|has| |#2| (-6 (-4240 "*"))) (-6 -4227) |%noBranch|) (IF (|has| |#2| (-6 (-4240 "*"))) (IF (|has| |#2| (-6 -4235)) (-6 -4235) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|))) (-708) (-971)) (T -1052))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-628 *4)) (-5 *1 (-1052 *3 *4)) (-14 *3 (-708)) (-4 *4 (-971)))) (-2682 (*1 *1 *1) (-12 (-5 *1 (-1052 *2 *3)) (-14 *2 (-708)) (-4 *3 (-971)))) (-4177 (*1 *1 *2) (-12 (-5 *2 (-628 *4)) (-4 *4 (-971)) (-5 *1 (-1052 *3 *4)) (-14 *3 (-708)))))
+(-13 (-1035 |#1| |#2| (-217 |#1| |#2|) (-217 |#1| |#2|)) (-562 (-628 |#2|)) (-10 -8 (-15 -2682 ($ $)) (-15 -4177 ($ (-628 |#2|))) (-15 -2217 ((-628 |#2|) $)) (IF (|has| |#2| (-6 (-4240 "*"))) (-6 -4227) |%noBranch|) (IF (|has| |#2| (-6 (-4240 "*"))) (IF (|has| |#2| (-6 -4235)) (-6 -4235) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-563 (-498))) (-6 (-563 (-498))) |%noBranch|)))
+((-4140 (($ $) 19)) (-2334 (($ $ (-132)) 10) (($ $ (-129)) 14)) (-3928 (((-108) $ $) 24)) (-2369 (($ $) 17)) (-2683 (((-132) $ (-522) (-132)) NIL) (((-132) $ (-522)) NIL) (($ $ (-1133 (-522))) NIL) (($ $ $) 29)) (-2217 (($ (-132)) 27) (((-792) $) NIL)))
+(((-1053 |#1|) (-10 -8 (-15 -2217 ((-792) |#1|)) (-15 -2683 (|#1| |#1| |#1|)) (-15 -2334 (|#1| |#1| (-129))) (-15 -2334 (|#1| |#1| (-132))) (-15 -2217 (|#1| (-132))) (-15 -3928 ((-108) |#1| |#1|)) (-15 -4140 (|#1| |#1|)) (-15 -2369 (|#1| |#1|)) (-15 -2683 (|#1| |#1| (-1133 (-522)))) (-15 -2683 ((-132) |#1| (-522))) (-15 -2683 ((-132) |#1| (-522) (-132)))) (-1054)) (T -1053))
+NIL
+(-10 -8 (-15 -2217 ((-792) |#1|)) (-15 -2683 (|#1| |#1| |#1|)) (-15 -2334 (|#1| |#1| (-129))) (-15 -2334 (|#1| |#1| (-132))) (-15 -2217 (|#1| (-132))) (-15 -3928 ((-108) |#1| |#1|)) (-15 -4140 (|#1| |#1|)) (-15 -2369 (|#1| |#1|)) (-15 -2683 (|#1| |#1| (-1133 (-522)))) (-15 -2683 ((-132) |#1| (-522))) (-15 -2683 ((-132) |#1| (-522) (-132))))
+((-1419 (((-108) $ $) 19 (|has| (-132) (-1014)))) (-2828 (($ $) 120)) (-4140 (($ $) 121)) (-2334 (($ $ (-132)) 108) (($ $ (-129)) 107)) (-3883 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-3900 (((-108) $ $) 118)) (-3876 (((-108) $ $ (-522)) 117)) (-3428 (((-588 $) $ (-132)) 110) (((-588 $) $ (-129)) 109)) (-1866 (((-108) (-1 (-108) (-132) (-132)) $) 98) (((-108) $) 92 (|has| (-132) (-784)))) (-2806 (($ (-1 (-108) (-132) (-132)) $) 89 (|has| $ (-6 -4239))) (($ $) 88 (-12 (|has| (-132) (-784)) (|has| $ (-6 -4239))))) (-3296 (($ (-1 (-108) (-132) (-132)) $) 99) (($ $) 93 (|has| (-132) (-784)))) (-2717 (((-108) $ (-708)) 8)) (-2437 (((-132) $ (-522) (-132)) 52 (|has| $ (-6 -4239))) (((-132) $ (-1133 (-522)) (-132)) 58 (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) (-132)) $) 75 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-2979 (($ $ (-132)) 104) (($ $ (-129)) 103)) (-2465 (($ $) 90 (|has| $ (-6 -4239)))) (-1939 (($ $) 100)) (-4029 (($ $ (-1133 (-522)) $) 114)) (-2379 (($ $) 78 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ (-132) $) 77 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) (-132)) $) 74 (|has| $ (-6 -4238)))) (-2153 (((-132) (-1 (-132) (-132) (-132)) $ (-132) (-132)) 76 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238)))) (((-132) (-1 (-132) (-132) (-132)) $ (-132)) 73 (|has| $ (-6 -4238))) (((-132) (-1 (-132) (-132) (-132)) $) 72 (|has| $ (-6 -4238)))) (-2411 (((-132) $ (-522) (-132)) 53 (|has| $ (-6 -4239)))) (-2186 (((-132) $ (-522)) 51)) (-3928 (((-108) $ $) 119)) (-3314 (((-522) (-1 (-108) (-132)) $) 97) (((-522) (-132) $) 96 (|has| (-132) (-1014))) (((-522) (-132) $ (-522)) 95 (|has| (-132) (-1014))) (((-522) $ $ (-522)) 113) (((-522) (-129) $ (-522)) 112)) (-2395 (((-588 (-132)) $) 30 (|has| $ (-6 -4238)))) (-1893 (($ (-708) (-132)) 69)) (-1480 (((-108) $ (-708)) 9)) (-3496 (((-522) $) 43 (|has| (-522) (-784)))) (-1308 (($ $ $) 87 (|has| (-132) (-784)))) (-3164 (($ (-1 (-108) (-132) (-132)) $ $) 101) (($ $ $) 94 (|has| (-132) (-784)))) (-4084 (((-588 (-132)) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) (-132) $) 27 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 44 (|has| (-522) (-784)))) (-2524 (($ $ $) 86 (|has| (-132) (-784)))) (-1445 (((-108) $ $ (-132)) 115)) (-4171 (((-708) $ $ (-132)) 116)) (-2397 (($ (-1 (-132) (-132)) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-132) (-132)) $) 35) (($ (-1 (-132) (-132) (-132)) $ $) 64)) (-1219 (($ $) 122)) (-2369 (($ $) 123)) (-3309 (((-108) $ (-708)) 10)) (-2992 (($ $ (-132)) 106) (($ $ (-129)) 105)) (-2311 (((-1068) $) 22 (|has| (-132) (-1014)))) (-1731 (($ (-132) $ (-522)) 60) (($ $ $ (-522)) 59)) (-2130 (((-588 (-522)) $) 46)) (-2103 (((-108) (-522) $) 47)) (-4174 (((-1032) $) 21 (|has| (-132) (-1014)))) (-2337 (((-132) $) 42 (|has| (-522) (-784)))) (-2187 (((-3 (-132) "failed") (-1 (-108) (-132)) $) 71)) (-1972 (($ $ (-132)) 41 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) (-132)) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-132)))) 26 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-270 (-132))) 25 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-132) (-132)) 24 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-588 (-132)) (-588 (-132))) 23 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) (-132) $) 45 (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1973 (((-588 (-132)) $) 48)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 (((-132) $ (-522) (-132)) 50) (((-132) $ (-522)) 49) (($ $ (-1133 (-522))) 63) (($ $ $) 102)) (-3835 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-4187 (((-708) (-1 (-108) (-132)) $) 31 (|has| $ (-6 -4238))) (((-708) (-132) $) 28 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238))))) (-3629 (($ $ $ (-522)) 91 (|has| $ (-6 -4239)))) (-2463 (($ $) 13)) (-3873 (((-498) $) 79 (|has| (-132) (-563 (-498))))) (-2227 (($ (-588 (-132))) 70)) (-4170 (($ $ (-132)) 68) (($ (-132) $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2217 (($ (-132)) 111) (((-792) $) 18 (|has| (-132) (-562 (-792))))) (-1381 (((-108) (-1 (-108) (-132)) $) 33 (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) 84 (|has| (-132) (-784)))) (-1597 (((-108) $ $) 83 (|has| (-132) (-784)))) (-1562 (((-108) $ $) 20 (|has| (-132) (-1014)))) (-1609 (((-108) $ $) 85 (|has| (-132) (-784)))) (-1587 (((-108) $ $) 82 (|has| (-132) (-784)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-1054) (-1197)) (T -1054))
-((-2390 (*1 *1 *1) (-4 *1 (-1054))) (-1909 (*1 *1 *1) (-4 *1 (-1054))) (-2084 (*1 *1 *1) (-4 *1 (-1054))) (-3539 (*1 *1 *1) (-4 *1 (-1054))) (-3792 (*1 *2 *1 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-108)))) (-3768 (*1 *2 *1 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-108)))) (-3744 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1054)) (-5 *3 (-522)) (-5 *2 (-108)))) (-4148 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1054)) (-5 *3 (-132)) (-5 *2 (-708)))) (-1455 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1054)) (-5 *3 (-132)) (-5 *2 (-108)))) (-2516 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-1133 (-522))))) (-3238 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-522)))) (-3238 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-522)) (-5 *3 (-129)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-132)) (-4 *1 (-1054)))) (-2724 (*1 *2 *1 *3) (-12 (-5 *3 (-132)) (-5 *2 (-588 *1)) (-4 *1 (-1054)))) (-2724 (*1 *2 *1 *3) (-12 (-5 *3 (-129)) (-5 *2 (-588 *1)) (-4 *1 (-1054)))) (-3192 (*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-132)))) (-3192 (*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-129)))) (-2862 (*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-132)))) (-2862 (*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-129)))) (-2850 (*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-132)))) (-2850 (*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-129)))) (-2545 (*1 *1 *1 *1) (-4 *1 (-1054))))
-(-13 (-19 (-132)) (-10 -8 (-15 -2390 ($ $)) (-15 -1909 ($ $)) (-15 -2084 ($ $)) (-15 -3539 ($ $)) (-15 -3792 ((-108) $ $)) (-15 -3768 ((-108) $ $)) (-15 -3744 ((-108) $ $ (-522))) (-15 -4148 ((-708) $ $ (-132))) (-15 -1455 ((-108) $ $ (-132))) (-15 -2516 ($ $ (-1133 (-522)) $)) (-15 -3238 ((-522) $ $ (-522))) (-15 -3238 ((-522) (-129) $ (-522))) (-15 -2190 ($ (-132))) (-15 -2724 ((-588 $) $ (-132))) (-15 -2724 ((-588 $) $ (-129))) (-15 -3192 ($ $ (-132))) (-15 -3192 ($ $ (-129))) (-15 -2862 ($ $ (-132))) (-15 -2862 ($ $ (-129))) (-15 -2850 ($ $ (-132))) (-15 -2850 ($ $ (-129))) (-15 -2545 ($ $ $))))
-(((-33) . T) ((-97) -3708 (|has| (-132) (-1014)) (|has| (-132) (-784))) ((-562 (-792)) -3708 (|has| (-132) (-1014)) (|has| (-132) (-784)) (|has| (-132) (-562 (-792)))) ((-139 #0=(-132)) . T) ((-563 (-498)) |has| (-132) (-563 (-498))) ((-262 #1=(-522) #0#) . T) ((-264 #1# #0#) . T) ((-285 #0#) -12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))) ((-348 #0#) . T) ((-461 #0#) . T) ((-555 #1# #0#) . T) ((-483 #0# #0#) -12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))) ((-593 #0#) . T) ((-19 #0#) . T) ((-784) |has| (-132) (-784)) ((-1014) -3708 (|has| (-132) (-1014)) (|has| (-132) (-784))) ((-1120) . T))
-((-1732 (((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-588 |#4|) (-588 |#5|) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) (-708)) 94)) (-3499 (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|) 54) (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708)) 53)) (-1906 (((-1171) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-708)) 85)) (-1349 (((-708) (-588 |#4|) (-588 |#5|)) 27)) (-2268 (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|) 56) (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708)) 55) (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708) (-108)) 57)) (-3496 (((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108) (-108) (-108) (-108)) 76) (((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108)) 77)) (-1431 (((-1068) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) 80)) (-2971 (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|) 52)) (-1232 (((-708) (-588 |#4|) (-588 |#5|)) 19)))
-(((-1055 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1232 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -1349 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -2971 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|)) (-15 -3499 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708))) (-15 -3499 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|)) (-15 -2268 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708) (-108))) (-15 -2268 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708))) (-15 -2268 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|)) (-15 -3496 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -3496 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -1732 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-588 |#4|) (-588 |#5|) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) (-708))) (-15 -1431 ((-1068) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)))) (-15 -1906 ((-1171) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-708)))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-1023 |#1| |#2| |#3| |#4|)) (T -1055))
-((-1906 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1886 *9)))) (-5 *4 (-708)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-1171)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))) (-1431 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1886 *8))) (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-1023 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1068)) (-5 *1 (-1055 *4 *5 *6 *7 *8)))) (-1732 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-588 *11)) (|:| |todo| (-588 (-2 (|:| |val| *3) (|:| -1886 *11)))))) (-5 *6 (-708)) (-5 *2 (-588 (-2 (|:| |val| (-588 *10)) (|:| -1886 *11)))) (-5 *3 (-588 *10)) (-5 *4 (-588 *11)) (-4 *10 (-985 *7 *8 *9)) (-4 *11 (-1023 *7 *8 *9 *10)) (-4 *7 (-426)) (-4 *8 (-730)) (-4 *9 (-784)) (-5 *1 (-1055 *7 *8 *9 *10 *11)))) (-3496 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))) (-3496 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))) (-2268 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))))) (-5 *1 (-1055 *5 *6 *7 *3 *4)) (-4 *4 (-1023 *5 *6 *7 *3)))) (-2268 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))))) (-5 *1 (-1055 *6 *7 *8 *3 *4)) (-4 *4 (-1023 *6 *7 *8 *3)))) (-2268 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-708)) (-5 *6 (-108)) (-4 *7 (-426)) (-4 *8 (-730)) (-4 *9 (-784)) (-4 *3 (-985 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))))) (-5 *1 (-1055 *7 *8 *9 *3 *4)) (-4 *4 (-1023 *7 *8 *9 *3)))) (-3499 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))))) (-5 *1 (-1055 *5 *6 *7 *3 *4)) (-4 *4 (-1023 *5 *6 *7 *3)))) (-3499 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))))) (-5 *1 (-1055 *6 *7 *8 *3 *4)) (-4 *4 (-1023 *6 *7 *8 *3)))) (-2971 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4)))))) (-5 *1 (-1055 *5 *6 *7 *3 *4)) (-4 *4 (-1023 *5 *6 *7 *3)))) (-1349 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))) (-1232 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -1232 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -1349 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -2971 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|)) (-15 -3499 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708))) (-15 -3499 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|)) (-15 -2268 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708) (-108))) (-15 -2268 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5| (-708))) (-15 -2268 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) |#4| |#5|)) (-15 -3496 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -3496 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -1732 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-588 |#4|) (-588 |#5|) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))))) (-708))) (-15 -1431 ((-1068) (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|)))) (-15 -1906 ((-1171) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1886 |#5|))) (-708))))
-((-1416 (((-108) $ $) NIL)) (-2950 (((-588 (-2 (|:| -1650 $) (|:| -1544 (-588 |#4|)))) (-588 |#4|)) NIL)) (-4125 (((-588 $) (-588 |#4|)) 110) (((-588 $) (-588 |#4|) (-108)) 111) (((-588 $) (-588 |#4|) (-108) (-108)) 109) (((-588 $) (-588 |#4|) (-108) (-108) (-108) (-108)) 112)) (-4090 (((-588 |#3|) $) NIL)) (-2690 (((-108) $) NIL)) (-4140 (((-108) $) NIL (|has| |#1| (-514)))) (-3575 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-3607 ((|#4| |#4| $) NIL)) (-3119 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 $))) |#4| $) 84)) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |#3|) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-1628 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 62)) (-3175 (($) NIL T CONST)) (-3639 (((-108) $) 26 (|has| |#1| (-514)))) (-3982 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3996 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3538 (((-108) $) NIL (|has| |#1| (-514)))) (-2149 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3050 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-1787 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-1297 (((-3 $ "failed") (-588 |#4|)) NIL)) (-1484 (($ (-588 |#4|)) NIL)) (-2306 (((-3 $ "failed") $) 39)) (-2806 ((|#4| |#4| $) 65)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-1423 (($ |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-3421 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 78 (|has| |#1| (-514)))) (-1934 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-4164 ((|#4| |#4| $) NIL)) (-3864 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2091 (((-2 (|:| -1650 (-588 |#4|)) (|:| -1544 (-588 |#4|))) $) NIL)) (-2208 (((-108) |#4| $) NIL)) (-3129 (((-108) |#4| $) NIL)) (-2198 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2352 (((-2 (|:| |val| (-588 |#4|)) (|:| |towers| (-588 $))) (-588 |#4|) (-108) (-108)) 124)) (-3837 (((-588 |#4|) $) 16 (|has| $ (-6 -4238)))) (-3341 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1521 ((|#3| $) 33)) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#4|) $) 17 (|has| $ (-6 -4238)))) (-2246 (((-108) |#4| $) 25 (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-3838 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#4| |#4|) $) 21)) (-2458 (((-588 |#3|) $) NIL)) (-1606 (((-108) |#3| $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-3959 (((-3 |#4| (-588 $)) |#4| |#4| $) NIL)) (-1331 (((-588 (-2 (|:| |val| |#4|) (|:| -1886 $))) |#4| |#4| $) 103)) (-1442 (((-3 |#4| "failed") $) 37)) (-2893 (((-588 $) |#4| $) 88)) (-4190 (((-3 (-108) (-588 $)) |#4| $) NIL)) (-3878 (((-588 (-2 (|:| |val| (-108)) (|:| -1886 $))) |#4| $) 98) (((-108) |#4| $) 53)) (-2416 (((-588 $) |#4| $) 107) (((-588 $) (-588 |#4|) $) NIL) (((-588 $) (-588 |#4|) (-588 $)) 108) (((-588 $) |#4| (-588 $)) NIL)) (-1610 (((-588 $) (-588 |#4|) (-108) (-108) (-108)) 119)) (-2135 (($ |#4| $) 75) (($ (-588 |#4|) $) 76) (((-588 $) |#4| $ (-108) (-108) (-108) (-108) (-108)) 74)) (-2242 (((-588 |#4|) $) NIL)) (-3409 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1451 ((|#4| |#4| $) NIL)) (-2123 (((-108) $ $) NIL)) (-2039 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-2230 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2680 ((|#4| |#4| $) NIL)) (-4151 (((-1032) $) NIL)) (-2294 (((-3 |#4| "failed") $) 35)) (-1414 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-3307 (((-3 $ "failed") $ |#4|) 48)) (-3719 (($ $ |#4|) NIL) (((-588 $) |#4| $) 90) (((-588 $) |#4| (-588 $)) NIL) (((-588 $) (-588 |#4|) $) NIL) (((-588 $) (-588 |#4|) (-588 $)) 86)) (-3053 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#4|) (-588 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 15)) (-3775 (($) 13)) (-2793 (((-708) $) NIL)) (-4168 (((-708) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (((-708) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) 12)) (-1431 (((-498) $) NIL (|has| |#4| (-563 (-498))))) (-2201 (($ (-588 |#4|)) 20)) (-2020 (($ $ |#3|) 42)) (-3606 (($ $ |#3|) 44)) (-3968 (($ $) NIL)) (-2463 (($ $ |#3|) NIL)) (-2190 (((-792) $) 31) (((-588 |#4|) $) 40)) (-1974 (((-708) $) NIL (|has| |#3| (-343)))) (-3989 (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-4212 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) NIL)) (-2188 (((-588 $) |#4| $) 54) (((-588 $) |#4| (-588 $)) NIL) (((-588 $) (-588 |#4|) $) NIL) (((-588 $) (-588 |#4|) (-588 $)) NIL)) (-3648 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2360 (((-588 |#3|) $) NIL)) (-3021 (((-108) |#4| $) NIL)) (-2351 (((-108) |#3| $) 61)) (-1531 (((-108) $ $) NIL)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-1056 |#1| |#2| |#3| |#4|) (-13 (-1023 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2135 ((-588 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -4125 ((-588 $) (-588 |#4|) (-108) (-108))) (-15 -4125 ((-588 $) (-588 |#4|) (-108) (-108) (-108) (-108))) (-15 -1610 ((-588 $) (-588 |#4|) (-108) (-108) (-108))) (-15 -2352 ((-2 (|:| |val| (-588 |#4|)) (|:| |towers| (-588 $))) (-588 |#4|) (-108) (-108))))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|)) (T -1056))
-((-2135 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-1056 *5 *6 *7 *3))) (-5 *1 (-1056 *5 *6 *7 *3)) (-4 *3 (-985 *5 *6 *7)))) (-4125 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-1056 *5 *6 *7 *8))) (-5 *1 (-1056 *5 *6 *7 *8)))) (-4125 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-1056 *5 *6 *7 *8))) (-5 *1 (-1056 *5 *6 *7 *8)))) (-1610 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-1056 *5 *6 *7 *8))) (-5 *1 (-1056 *5 *6 *7 *8)))) (-2352 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-588 *8)) (|:| |towers| (-588 (-1056 *5 *6 *7 *8))))) (-5 *1 (-1056 *5 *6 *7 *8)) (-5 *3 (-588 *8)))))
-(-13 (-1023 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2135 ((-588 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -4125 ((-588 $) (-588 |#4|) (-108) (-108))) (-15 -4125 ((-588 $) (-588 |#4|) (-108) (-108) (-108) (-108))) (-15 -1610 ((-588 $) (-588 |#4|) (-108) (-108) (-108))) (-15 -2352 ((-2 (|:| |val| (-588 |#4|)) (|:| |towers| (-588 $))) (-588 |#4|) (-108) (-108)))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1355 ((|#1| $) 34)) (-3978 (($ (-588 |#1|)) 39)) (-4141 (((-108) $ (-708)) NIL)) (-3175 (($) NIL T CONST)) (-3218 ((|#1| |#1| $) 36)) (-2327 ((|#1| $) 32)) (-3837 (((-588 |#1|) $) 18 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3838 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 22)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-2116 ((|#1| $) 35)) (-4095 (($ |#1| $) 37)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-4087 ((|#1| $) 33)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 31)) (-3775 (($) 38)) (-1253 (((-708) $) 29)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) 27)) (-2190 (((-792) $) 14 (|has| |#1| (-562 (-792))))) (-2795 (($ (-588 |#1|)) NIL)) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 17 (|has| |#1| (-1014)))) (-3480 (((-708) $) 30 (|has| $ (-6 -4238)))))
-(((-1057 |#1|) (-13 (-1033 |#1|) (-10 -8 (-15 -3978 ($ (-588 |#1|))))) (-1120)) (T -1057))
-((-3978 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1057 *3)))))
-(-13 (-1033 |#1|) (-10 -8 (-15 -3978 ($ (-588 |#1|)))))
-((-2379 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1133 (-522)) |#2|) 44) ((|#2| $ (-522) |#2|) 41)) (-3069 (((-108) $) 12)) (-3838 (($ (-1 |#2| |#2|) $) 39)) (-2294 ((|#2| $) NIL) (($ $ (-708)) 17)) (-2602 (($ $ |#2|) 40)) (-2855 (((-108) $) 11)) (-2545 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1133 (-522))) 31) ((|#2| $ (-522)) 23) ((|#2| $ (-522) |#2|) NIL)) (-2630 (($ $ $) 47) (($ $ |#2|) NIL)) (-4165 (($ $ $) 33) (($ |#2| $) NIL) (($ (-588 $)) 36) (($ $ |#2|) NIL)))
-(((-1058 |#1| |#2|) (-10 -8 (-15 -3069 ((-108) |#1|)) (-15 -2855 ((-108) |#1|)) (-15 -2379 (|#2| |#1| (-522) |#2|)) (-15 -2545 (|#2| |#1| (-522) |#2|)) (-15 -2545 (|#2| |#1| (-522))) (-15 -2602 (|#1| |#1| |#2|)) (-15 -4165 (|#1| |#1| |#2|)) (-15 -4165 (|#1| (-588 |#1|))) (-15 -2545 (|#1| |#1| (-1133 (-522)))) (-15 -2379 (|#2| |#1| (-1133 (-522)) |#2|)) (-15 -2379 (|#2| |#1| "last" |#2|)) (-15 -2379 (|#1| |#1| "rest" |#1|)) (-15 -2379 (|#2| |#1| "first" |#2|)) (-15 -2630 (|#1| |#1| |#2|)) (-15 -2630 (|#1| |#1| |#1|)) (-15 -2545 (|#2| |#1| "last")) (-15 -2545 (|#1| |#1| "rest")) (-15 -2294 (|#1| |#1| (-708))) (-15 -2545 (|#2| |#1| "first")) (-15 -2294 (|#2| |#1|)) (-15 -4165 (|#1| |#2| |#1|)) (-15 -4165 (|#1| |#1| |#1|)) (-15 -2379 (|#2| |#1| "value" |#2|)) (-15 -2545 (|#2| |#1| "value")) (-15 -3838 (|#1| (-1 |#2| |#2|) |#1|))) (-1059 |#2|) (-1120)) (T -1058))
-NIL
-(-10 -8 (-15 -3069 ((-108) |#1|)) (-15 -2855 ((-108) |#1|)) (-15 -2379 (|#2| |#1| (-522) |#2|)) (-15 -2545 (|#2| |#1| (-522) |#2|)) (-15 -2545 (|#2| |#1| (-522))) (-15 -2602 (|#1| |#1| |#2|)) (-15 -4165 (|#1| |#1| |#2|)) (-15 -4165 (|#1| (-588 |#1|))) (-15 -2545 (|#1| |#1| (-1133 (-522)))) (-15 -2379 (|#2| |#1| (-1133 (-522)) |#2|)) (-15 -2379 (|#2| |#1| "last" |#2|)) (-15 -2379 (|#1| |#1| "rest" |#1|)) (-15 -2379 (|#2| |#1| "first" |#2|)) (-15 -2630 (|#1| |#1| |#2|)) (-15 -2630 (|#1| |#1| |#1|)) (-15 -2545 (|#2| |#1| "last")) (-15 -2545 (|#1| |#1| "rest")) (-15 -2294 (|#1| |#1| (-708))) (-15 -2545 (|#2| |#1| "first")) (-15 -2294 (|#2| |#1|)) (-15 -4165 (|#1| |#2| |#1|)) (-15 -4165 (|#1| |#1| |#1|)) (-15 -2379 (|#2| |#1| "value" |#2|)) (-15 -2545 (|#2| |#1| "value")) (-15 -3838 (|#1| (-1 |#2| |#2|) |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3435 ((|#1| $) 48)) (-2093 ((|#1| $) 65)) (-3835 (($ $) 67)) (-2679 (((-1171) $ (-522) (-522)) 97 (|has| $ (-6 -4239)))) (-3487 (($ $ (-522)) 52 (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) 8)) (-3628 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-1243 (($ $ $) 56 (|has| $ (-6 -4239)))) (-2049 ((|#1| $ |#1|) 54 (|has| $ (-6 -4239)))) (-1346 ((|#1| $ |#1|) 58 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4239))) (($ $ "rest" $) 55 (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 117 (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) 86 (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) 102 (|has| $ (-6 -4238)))) (-2081 ((|#1| $) 66)) (-3175 (($) 7 T CONST)) (-2306 (($ $) 73) (($ $ (-708)) 71)) (-2333 (($ $) 99 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ (-1 (-108) |#1|) $) 103 (|has| $ (-6 -4238))) (($ |#1| $) 100 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3854 ((|#1| $ (-522) |#1|) 85 (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) 87)) (-3069 (((-108) $) 83)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) 50)) (-2030 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-1811 (($ (-708) |#1|) 108)) (-3352 (((-108) $ (-708)) 9)) (-1359 (((-522) $) 95 (|has| (-522) (-784)))) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 94 (|has| (-522) (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-2720 (((-108) $ (-708)) 10)) (-1279 (((-588 |#1|) $) 45)) (-1754 (((-108) $) 49)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1442 ((|#1| $) 70) (($ $ (-708)) 68)) (-1661 (($ $ $ (-522)) 116) (($ |#1| $ (-522)) 115)) (-3604 (((-588 (-522)) $) 92)) (-1405 (((-108) (-522) $) 91)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2294 ((|#1| $) 76) (($ $ (-708)) 74)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 106)) (-2602 (($ $ |#1|) 96 (|has| $ (-6 -4239)))) (-2855 (((-108) $) 84)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#1| $) 93 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) 90)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1133 (-522))) 112) ((|#1| $ (-522)) 89) ((|#1| $ (-522) |#1|) 88)) (-2011 (((-522) $ $) 44)) (-3696 (($ $ (-1133 (-522))) 114) (($ $ (-522)) 113)) (-3042 (((-108) $) 46)) (-3107 (($ $) 62)) (-2646 (($ $) 59 (|has| $ (-6 -4239)))) (-2393 (((-708) $) 63)) (-2122 (($ $) 64)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-1431 (((-498) $) 98 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 107)) (-2630 (($ $ $) 61 (|has| $ (-6 -4239))) (($ $ |#1|) 60 (|has| $ (-6 -4239)))) (-4165 (($ $ $) 78) (($ |#1| $) 77) (($ (-588 $)) 110) (($ $ |#1|) 109)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) 51)) (-2425 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-2369 (*1 *1 *1) (-4 *1 (-1054))) (-1219 (*1 *1 *1) (-4 *1 (-1054))) (-4140 (*1 *1 *1) (-4 *1 (-1054))) (-2828 (*1 *1 *1) (-4 *1 (-1054))) (-3928 (*1 *2 *1 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-108)))) (-3900 (*1 *2 *1 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-108)))) (-3876 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1054)) (-5 *3 (-522)) (-5 *2 (-108)))) (-4171 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1054)) (-5 *3 (-132)) (-5 *2 (-708)))) (-1445 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1054)) (-5 *3 (-132)) (-5 *2 (-108)))) (-4029 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-1133 (-522))))) (-3314 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-522)))) (-3314 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-522)) (-5 *3 (-129)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-132)) (-4 *1 (-1054)))) (-3428 (*1 *2 *1 *3) (-12 (-5 *3 (-132)) (-5 *2 (-588 *1)) (-4 *1 (-1054)))) (-3428 (*1 *2 *1 *3) (-12 (-5 *3 (-129)) (-5 *2 (-588 *1)) (-4 *1 (-1054)))) (-2334 (*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-132)))) (-2334 (*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-129)))) (-2992 (*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-132)))) (-2992 (*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-129)))) (-2979 (*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-132)))) (-2979 (*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-129)))) (-2683 (*1 *1 *1 *1) (-4 *1 (-1054))))
+(-13 (-19 (-132)) (-10 -8 (-15 -2369 ($ $)) (-15 -1219 ($ $)) (-15 -4140 ($ $)) (-15 -2828 ($ $)) (-15 -3928 ((-108) $ $)) (-15 -3900 ((-108) $ $)) (-15 -3876 ((-108) $ $ (-522))) (-15 -4171 ((-708) $ $ (-132))) (-15 -1445 ((-108) $ $ (-132))) (-15 -4029 ($ $ (-1133 (-522)) $)) (-15 -3314 ((-522) $ $ (-522))) (-15 -3314 ((-522) (-129) $ (-522))) (-15 -2217 ($ (-132))) (-15 -3428 ((-588 $) $ (-132))) (-15 -3428 ((-588 $) $ (-129))) (-15 -2334 ($ $ (-132))) (-15 -2334 ($ $ (-129))) (-15 -2992 ($ $ (-132))) (-15 -2992 ($ $ (-129))) (-15 -2979 ($ $ (-132))) (-15 -2979 ($ $ (-129))) (-15 -2683 ($ $ $))))
+(((-33) . T) ((-97) -3844 (|has| (-132) (-1014)) (|has| (-132) (-784))) ((-562 (-792)) -3844 (|has| (-132) (-1014)) (|has| (-132) (-784)) (|has| (-132) (-562 (-792)))) ((-139 #0=(-132)) . T) ((-563 (-498)) |has| (-132) (-563 (-498))) ((-262 #1=(-522) #0#) . T) ((-264 #1# #0#) . T) ((-285 #0#) -12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))) ((-348 #0#) . T) ((-461 #0#) . T) ((-555 #1# #0#) . T) ((-483 #0# #0#) -12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))) ((-593 #0#) . T) ((-19 #0#) . T) ((-784) |has| (-132) (-784)) ((-1014) -3844 (|has| (-132) (-1014)) (|has| (-132) (-784))) ((-1120) . T))
+((-1358 (((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-588 |#4|) (-588 |#5|) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) (-708)) 94)) (-2357 (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|) 54) (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708)) 53)) (-3245 (((-1171) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-708)) 85)) (-3423 (((-708) (-588 |#4|) (-588 |#5|)) 27)) (-2132 (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|) 56) (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708)) 55) (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708) (-108)) 57)) (-2327 (((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108) (-108) (-108) (-108)) 76) (((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108)) 77)) (-3873 (((-1068) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) 80)) (-4013 (((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|) 52)) (-2253 (((-708) (-588 |#4|) (-588 |#5|)) 19)))
+(((-1055 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2253 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -3423 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -4013 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|)) (-15 -2357 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708))) (-15 -2357 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|)) (-15 -2132 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708) (-108))) (-15 -2132 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708))) (-15 -2132 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|)) (-15 -2327 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -2327 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -1358 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-588 |#4|) (-588 |#5|) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) (-708))) (-15 -3873 ((-1068) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)))) (-15 -3245 ((-1171) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-708)))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|) (-1023 |#1| |#2| |#3| |#4|)) (T -1055))
+((-3245 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1974 *9)))) (-5 *4 (-708)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-1171)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))) (-3873 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1974 *8))) (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-1023 *4 *5 *6 *7)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1068)) (-5 *1 (-1055 *4 *5 *6 *7 *8)))) (-1358 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-588 *11)) (|:| |todo| (-588 (-2 (|:| |val| *3) (|:| -1974 *11)))))) (-5 *6 (-708)) (-5 *2 (-588 (-2 (|:| |val| (-588 *10)) (|:| -1974 *11)))) (-5 *3 (-588 *10)) (-5 *4 (-588 *11)) (-4 *10 (-985 *7 *8 *9)) (-4 *11 (-1023 *7 *8 *9 *10)) (-4 *7 (-426)) (-4 *8 (-730)) (-4 *9 (-784)) (-5 *1 (-1055 *7 *8 *9 *10 *11)))) (-2327 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))) (-2327 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))) (-2132 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))))) (-5 *1 (-1055 *5 *6 *7 *3 *4)) (-4 *4 (-1023 *5 *6 *7 *3)))) (-2132 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))))) (-5 *1 (-1055 *6 *7 *8 *3 *4)) (-4 *4 (-1023 *6 *7 *8 *3)))) (-2132 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-708)) (-5 *6 (-108)) (-4 *7 (-426)) (-4 *8 (-730)) (-4 *9 (-784)) (-4 *3 (-985 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))))) (-5 *1 (-1055 *7 *8 *9 *3 *4)) (-4 *4 (-1023 *7 *8 *9 *3)))) (-2357 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))))) (-5 *1 (-1055 *5 *6 *7 *3 *4)) (-4 *4 (-1023 *5 *6 *7 *3)))) (-2357 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *3 (-985 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))))) (-5 *1 (-1055 *6 *7 *8 *3 *4)) (-4 *4 (-1023 *6 *7 *8 *3)))) (-4013 (*1 *2 *3 *4) (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-588 *4)) (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4)))))) (-5 *1 (-1055 *5 *6 *7 *3 *4)) (-4 *4 (-1023 *5 *6 *7 *3)))) (-3423 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))) (-2253 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -2253 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -3423 ((-708) (-588 |#4|) (-588 |#5|))) (-15 -4013 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|)) (-15 -2357 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708))) (-15 -2357 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|)) (-15 -2132 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708) (-108))) (-15 -2132 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5| (-708))) (-15 -2132 ((-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) |#4| |#5|)) (-15 -2327 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108))) (-15 -2327 ((-588 |#5|) (-588 |#4|) (-588 |#5|) (-108) (-108) (-108) (-108) (-108))) (-15 -1358 ((-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-588 |#4|) (-588 |#5|) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-2 (|:| |done| (-588 |#5|)) (|:| |todo| (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))))) (-708))) (-15 -3873 ((-1068) (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|)))) (-15 -3245 ((-1171) (-588 (-2 (|:| |val| (-588 |#4|)) (|:| -1974 |#5|))) (-708))))
+((-1419 (((-108) $ $) NIL)) (-3829 (((-588 (-2 (|:| -1720 $) (|:| -1566 (-588 |#4|)))) (-588 |#4|)) NIL)) (-2510 (((-588 $) (-588 |#4|)) 110) (((-588 $) (-588 |#4|) (-108)) 111) (((-588 $) (-588 |#4|) (-108) (-108)) 109) (((-588 $) (-588 |#4|) (-108) (-108) (-108) (-108)) 112)) (-3533 (((-588 |#3|) $) NIL)) (-2161 (((-108) $) NIL)) (-2702 (((-108) $) NIL (|has| |#1| (-514)))) (-1900 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2163 ((|#4| |#4| $) NIL)) (-2961 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 $))) |#4| $) 84)) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |#3|) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1696 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 62)) (-3367 (($) NIL T CONST)) (-1298 (((-108) $) 26 (|has| |#1| (-514)))) (-1657 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3598 (((-108) $ $) NIL (|has| |#1| (-514)))) (-2818 (((-108) $) NIL (|has| |#1| (-514)))) (-3090 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-3461 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-3668 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-3700 (((-3 $ "failed") (-588 |#4|)) NIL)) (-1478 (($ (-588 |#4|)) NIL)) (-2352 (((-3 $ "failed") $) 39)) (-2625 ((|#4| |#4| $) 65)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-1424 (($ |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-4002 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 78 (|has| |#1| (-514)))) (-1426 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-2918 ((|#4| |#4| $) NIL)) (-2153 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-1199 (((-2 (|:| -1720 (-588 |#4|)) (|:| -1566 (-588 |#4|))) $) NIL)) (-2396 (((-108) |#4| $) NIL)) (-3039 (((-108) |#4| $) NIL)) (-2278 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1721 (((-2 (|:| |val| (-588 |#4|)) (|:| |towers| (-588 $))) (-588 |#4|) (-108) (-108)) 124)) (-2395 (((-588 |#4|) $) 16 (|has| $ (-6 -4238)))) (-1384 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1933 ((|#3| $) 33)) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#4|) $) 17 (|has| $ (-6 -4238)))) (-4176 (((-108) |#4| $) 25 (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-2397 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#4| |#4|) $) 21)) (-2714 (((-588 |#3|) $) NIL)) (-3826 (((-108) |#3| $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-1418 (((-3 |#4| (-588 $)) |#4| |#4| $) NIL)) (-1998 (((-588 (-2 (|:| |val| |#4|) (|:| -1974 $))) |#4| |#4| $) 103)) (-1442 (((-3 |#4| "failed") $) 37)) (-1468 (((-588 $) |#4| $) 88)) (-1892 (((-3 (-108) (-588 $)) |#4| $) NIL)) (-1862 (((-588 (-2 (|:| |val| (-108)) (|:| -1974 $))) |#4| $) 98) (((-108) |#4| $) 53)) (-2251 (((-588 $) |#4| $) 107) (((-588 $) (-588 |#4|) $) NIL) (((-588 $) (-588 |#4|) (-588 $)) 108) (((-588 $) |#4| (-588 $)) NIL)) (-3862 (((-588 $) (-588 |#4|) (-108) (-108) (-108)) 119)) (-2953 (($ |#4| $) 75) (($ (-588 |#4|) $) 76) (((-588 $) |#4| $ (-108) (-108) (-108) (-108) (-108)) 74)) (-4138 (((-588 |#4|) $) NIL)) (-3864 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2556 ((|#4| |#4| $) NIL)) (-1517 (((-108) $ $) NIL)) (-2507 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-3060 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-3896 ((|#4| |#4| $) NIL)) (-4174 (((-1032) $) NIL)) (-2337 (((-3 |#4| "failed") $) 35)) (-2187 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-4078 (((-3 $ "failed") $ |#4|) 48)) (-3934 (($ $ |#4|) NIL) (((-588 $) |#4| $) 90) (((-588 $) |#4| (-588 $)) NIL) (((-588 $) (-588 |#4|) $) NIL) (((-588 $) (-588 |#4|) (-588 $)) 86)) (-3487 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#4|) (-588 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 15)) (-3298 (($) 13)) (-2487 (((-708) $) NIL)) (-4187 (((-708) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (((-708) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) 12)) (-3873 (((-498) $) NIL (|has| |#4| (-563 (-498))))) (-2227 (($ (-588 |#4|)) 20)) (-2271 (($ $ |#3|) 42)) (-2154 (($ $ |#3|) 44)) (-1524 (($ $) NIL)) (-2773 (($ $ |#3|) NIL)) (-2217 (((-792) $) 31) (((-588 |#4|) $) 40)) (-3111 (((-708) $) NIL (|has| |#3| (-343)))) (-3538 (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2102 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) NIL)) (-3386 (((-588 $) |#4| $) 54) (((-588 $) |#4| (-588 $)) NIL) (((-588 $) (-588 |#4|) $) NIL) (((-588 $) (-588 |#4|) (-588 $)) NIL)) (-1381 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-1982 (((-588 |#3|) $) NIL)) (-1336 (((-108) |#4| $) NIL)) (-1711 (((-108) |#3| $) 61)) (-1562 (((-108) $ $) NIL)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-1056 |#1| |#2| |#3| |#4|) (-13 (-1023 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2953 ((-588 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -2510 ((-588 $) (-588 |#4|) (-108) (-108))) (-15 -2510 ((-588 $) (-588 |#4|) (-108) (-108) (-108) (-108))) (-15 -3862 ((-588 $) (-588 |#4|) (-108) (-108) (-108))) (-15 -1721 ((-2 (|:| |val| (-588 |#4|)) (|:| |towers| (-588 $))) (-588 |#4|) (-108) (-108))))) (-426) (-730) (-784) (-985 |#1| |#2| |#3|)) (T -1056))
+((-2953 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-1056 *5 *6 *7 *3))) (-5 *1 (-1056 *5 *6 *7 *3)) (-4 *3 (-985 *5 *6 *7)))) (-2510 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-1056 *5 *6 *7 *8))) (-5 *1 (-1056 *5 *6 *7 *8)))) (-2510 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-1056 *5 *6 *7 *8))) (-5 *1 (-1056 *5 *6 *7 *8)))) (-3862 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 (-1056 *5 *6 *7 *8))) (-5 *1 (-1056 *5 *6 *7 *8)))) (-1721 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-588 *8)) (|:| |towers| (-588 (-1056 *5 *6 *7 *8))))) (-5 *1 (-1056 *5 *6 *7 *8)) (-5 *3 (-588 *8)))))
+(-13 (-1023 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2953 ((-588 $) |#4| $ (-108) (-108) (-108) (-108) (-108))) (-15 -2510 ((-588 $) (-588 |#4|) (-108) (-108))) (-15 -2510 ((-588 $) (-588 |#4|) (-108) (-108) (-108) (-108))) (-15 -3862 ((-588 $) (-588 |#4|) (-108) (-108) (-108))) (-15 -1721 ((-2 (|:| |val| (-588 |#4|)) (|:| |towers| (-588 $))) (-588 |#4|) (-108) (-108)))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1322 ((|#1| $) 34)) (-4058 (($ (-588 |#1|)) 39)) (-2717 (((-108) $ (-708)) NIL)) (-3367 (($) NIL T CONST)) (-2622 ((|#1| |#1| $) 36)) (-2956 ((|#1| $) 32)) (-2395 (((-588 |#1|) $) 18 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2397 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 22)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1431 ((|#1| $) 35)) (-3365 (($ |#1| $) 37)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3295 ((|#1| $) 33)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 31)) (-3298 (($) 38)) (-3735 (((-708) $) 29)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) 27)) (-2217 (((-792) $) 14 (|has| |#1| (-562 (-792))))) (-2501 (($ (-588 |#1|)) NIL)) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 17 (|has| |#1| (-1014)))) (-3591 (((-708) $) 30 (|has| $ (-6 -4238)))))
+(((-1057 |#1|) (-13 (-1033 |#1|) (-10 -8 (-15 -4058 ($ (-588 |#1|))))) (-1120)) (T -1057))
+((-4058 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1057 *3)))))
+(-13 (-1033 |#1|) (-10 -8 (-15 -4058 ($ (-588 |#1|)))))
+((-2437 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1133 (-522)) |#2|) 44) ((|#2| $ (-522) |#2|) 41)) (-3614 (((-108) $) 12)) (-2397 (($ (-1 |#2| |#2|) $) 39)) (-2337 ((|#2| $) NIL) (($ $ (-708)) 17)) (-1972 (($ $ |#2|) 40)) (-4196 (((-108) $) 11)) (-2683 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1133 (-522))) 31) ((|#2| $ (-522)) 23) ((|#2| $ (-522) |#2|) NIL)) (-2335 (($ $ $) 47) (($ $ |#2|) NIL)) (-4170 (($ $ $) 33) (($ |#2| $) NIL) (($ (-588 $)) 36) (($ $ |#2|) NIL)))
+(((-1058 |#1| |#2|) (-10 -8 (-15 -3614 ((-108) |#1|)) (-15 -4196 ((-108) |#1|)) (-15 -2437 (|#2| |#1| (-522) |#2|)) (-15 -2683 (|#2| |#1| (-522) |#2|)) (-15 -2683 (|#2| |#1| (-522))) (-15 -1972 (|#1| |#1| |#2|)) (-15 -4170 (|#1| |#1| |#2|)) (-15 -4170 (|#1| (-588 |#1|))) (-15 -2683 (|#1| |#1| (-1133 (-522)))) (-15 -2437 (|#2| |#1| (-1133 (-522)) |#2|)) (-15 -2437 (|#2| |#1| "last" |#2|)) (-15 -2437 (|#1| |#1| "rest" |#1|)) (-15 -2437 (|#2| |#1| "first" |#2|)) (-15 -2335 (|#1| |#1| |#2|)) (-15 -2335 (|#1| |#1| |#1|)) (-15 -2683 (|#2| |#1| "last")) (-15 -2683 (|#1| |#1| "rest")) (-15 -2337 (|#1| |#1| (-708))) (-15 -2683 (|#2| |#1| "first")) (-15 -2337 (|#2| |#1|)) (-15 -4170 (|#1| |#2| |#1|)) (-15 -4170 (|#1| |#1| |#1|)) (-15 -2437 (|#2| |#1| "value" |#2|)) (-15 -2683 (|#2| |#1| "value")) (-15 -2397 (|#1| (-1 |#2| |#2|) |#1|))) (-1059 |#2|) (-1120)) (T -1058))
+NIL
+(-10 -8 (-15 -3614 ((-108) |#1|)) (-15 -4196 ((-108) |#1|)) (-15 -2437 (|#2| |#1| (-522) |#2|)) (-15 -2683 (|#2| |#1| (-522) |#2|)) (-15 -2683 (|#2| |#1| (-522))) (-15 -1972 (|#1| |#1| |#2|)) (-15 -4170 (|#1| |#1| |#2|)) (-15 -4170 (|#1| (-588 |#1|))) (-15 -2683 (|#1| |#1| (-1133 (-522)))) (-15 -2437 (|#2| |#1| (-1133 (-522)) |#2|)) (-15 -2437 (|#2| |#1| "last" |#2|)) (-15 -2437 (|#1| |#1| "rest" |#1|)) (-15 -2437 (|#2| |#1| "first" |#2|)) (-15 -2335 (|#1| |#1| |#2|)) (-15 -2335 (|#1| |#1| |#1|)) (-15 -2683 (|#2| |#1| "last")) (-15 -2683 (|#1| |#1| "rest")) (-15 -2337 (|#1| |#1| (-708))) (-15 -2683 (|#2| |#1| "first")) (-15 -2337 (|#2| |#1|)) (-15 -4170 (|#1| |#2| |#1|)) (-15 -4170 (|#1| |#1| |#1|)) (-15 -2437 (|#2| |#1| "value" |#2|)) (-15 -2683 (|#2| |#1| "value")) (-15 -2397 (|#1| (-1 |#2| |#2|) |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3526 ((|#1| $) 48)) (-2126 ((|#1| $) 65)) (-3961 (($ $) 67)) (-3883 (((-1171) $ (-522) (-522)) 97 (|has| $ (-6 -4239)))) (-2211 (($ $ (-522)) 52 (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) 8)) (-1198 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-2398 (($ $ $) 56 (|has| $ (-6 -4239)))) (-2631 ((|#1| $ |#1|) 54 (|has| $ (-6 -4239)))) (-3393 ((|#1| $ |#1|) 58 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4239))) (($ $ "rest" $) 55 (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 117 (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) 86 (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) 102 (|has| $ (-6 -4238)))) (-2116 ((|#1| $) 66)) (-3367 (($) 7 T CONST)) (-2352 (($ $) 73) (($ $ (-708)) 71)) (-2379 (($ $) 99 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ (-1 (-108) |#1|) $) 103 (|has| $ (-6 -4238))) (($ |#1| $) 100 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2411 ((|#1| $ (-522) |#1|) 85 (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) 87)) (-3614 (((-108) $) 83)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) 50)) (-2402 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-1893 (($ (-708) |#1|) 108)) (-1480 (((-108) $ (-708)) 9)) (-3496 (((-522) $) 95 (|has| (-522) (-784)))) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 94 (|has| (-522) (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3309 (((-108) $ (-708)) 10)) (-2548 (((-588 |#1|) $) 45)) (-3394 (((-108) $) 49)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1442 ((|#1| $) 70) (($ $ (-708)) 68)) (-1731 (($ $ $ (-522)) 116) (($ |#1| $ (-522)) 115)) (-2130 (((-588 (-522)) $) 92)) (-2103 (((-108) (-522) $) 91)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2337 ((|#1| $) 76) (($ $ (-708)) 74)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 106)) (-1972 (($ $ |#1|) 96 (|has| $ (-6 -4239)))) (-4196 (((-108) $) 84)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#1| $) 93 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) 90)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1133 (-522))) 112) ((|#1| $ (-522)) 89) ((|#1| $ (-522) |#1|) 88)) (-3381 (((-522) $ $) 44)) (-3835 (($ $ (-1133 (-522))) 114) (($ $ (-522)) 113)) (-3395 (((-108) $) 46)) (-2885 (($ $) 62)) (-1668 (($ $) 59 (|has| $ (-6 -4239)))) (-1321 (((-708) $) 63)) (-1502 (($ $) 64)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-3873 (((-498) $) 98 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 107)) (-2335 (($ $ $) 61 (|has| $ (-6 -4239))) (($ $ |#1|) 60 (|has| $ (-6 -4239)))) (-4170 (($ $ $) 78) (($ |#1| $) 77) (($ (-588 $)) 110) (($ $ |#1|) 109)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) 51)) (-3294 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-1059 |#1|) (-1197) (-1120)) (T -1059))
-((-2855 (*1 *2 *1) (-12 (-4 *1 (-1059 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))) (-3069 (*1 *2 *1) (-12 (-4 *1 (-1059 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))))
-(-13 (-1154 |t#1|) (-593 |t#1|) (-10 -8 (-15 -2855 ((-108) $)) (-15 -3069 ((-108) $))))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-936 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1120) . T) ((-1154 |#1|) . T))
-((-1416 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1800 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2679 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#2| $ |#1| |#2|) NIL)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2750 (((-3 |#2| "failed") |#1| $) NIL)) (-3175 (($) NIL T CONST)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-3859 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) NIL)) (-1423 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#2| $ |#1|) NIL)) (-3837 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 ((|#1| $) NIL (|has| |#1| (-784)))) (-3308 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2014 ((|#1| $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2966 (((-588 |#1|) $) NIL)) (-1231 (((-108) |#1| $) NIL)) (-2116 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-4095 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3604 (((-588 |#1|) $) NIL)) (-1405 (((-108) |#1| $) NIL)) (-4151 (((-1032) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2294 ((|#2| $) NIL (|has| |#1| (-784)))) (-1414 (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL)) (-2602 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1525 (((-588 |#2|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3990 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2190 (((-792) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-2795 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-4196 (*1 *2 *1) (-12 (-4 *1 (-1059 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))) (-3614 (*1 *2 *1) (-12 (-4 *1 (-1059 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))))
+(-13 (-1154 |t#1|) (-593 |t#1|) (-10 -8 (-15 -4196 ((-108) $)) (-15 -3614 ((-108) $))))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-936 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1120) . T) ((-1154 |#1|) . T))
+((-1419 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1883 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-3883 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#2| $ |#1| |#2|) NIL)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-4011 (((-3 |#2| "failed") |#1| $) NIL)) (-3367 (($) NIL T CONST)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-1700 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) NIL)) (-1424 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#2| $ |#1|) NIL)) (-2395 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 ((|#1| $) NIL (|has| |#1| (-784)))) (-4084 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2201 ((|#1| $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2562 (((-588 |#1|) $) NIL)) (-2241 (((-108) |#1| $) NIL)) (-1431 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3365 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-2130 (((-588 |#1|) $) NIL)) (-2103 (((-108) |#1| $) NIL)) (-4174 (((-1032) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2337 ((|#2| $) NIL (|has| |#1| (-784)))) (-2187 (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL)) (-1972 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1973 (((-588 |#2|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3546 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-2217 (((-792) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-2501 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-1060 |#1| |#2| |#3|) (-1097 |#1| |#2|) (-1014) (-1014) |#2|) (T -1060))
NIL
(-1097 |#1| |#2|)
-((-1416 (((-108) $ $) 7)) (-3004 (((-3 $ "failed") $) 13)) (-2385 (((-1068) $) 9)) (-3802 (($) 14 T CONST)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11)) (-1531 (((-108) $ $) 6)))
+((-1419 (((-108) $ $) 7)) (-4208 (((-3 $ "failed") $) 13)) (-2311 (((-1068) $) 9)) (-3937 (($) 14 T CONST)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11)) (-1562 (((-108) $ $) 6)))
(((-1061) (-1197)) (T -1061))
-((-3802 (*1 *1) (-4 *1 (-1061))) (-3004 (*1 *1 *1) (|partial| -4 *1 (-1061))))
-(-13 (-1014) (-10 -8 (-15 -3802 ($) -2677) (-15 -3004 ((-3 $ "failed") $))))
+((-3937 (*1 *1) (-4 *1 (-1061))) (-4208 (*1 *1 *1) (|partial| -4 *1 (-1061))))
+(-13 (-1014) (-10 -8 (-15 -3937 ($) -2855) (-15 -4208 ((-3 $ "failed") $))))
(((-97) . T) ((-562 (-792)) . T) ((-1014) . T))
-((-3486 (((-1066 |#1|) (-1066 |#1|)) 17)) (-2703 (((-1066 |#1|) (-1066 |#1|)) 13)) (-2927 (((-1066 |#1|) (-1066 |#1|) (-522) (-522)) 20)) (-2312 (((-1066 |#1|) (-1066 |#1|)) 15)))
-(((-1062 |#1|) (-10 -7 (-15 -2703 ((-1066 |#1|) (-1066 |#1|))) (-15 -2312 ((-1066 |#1|) (-1066 |#1|))) (-15 -3486 ((-1066 |#1|) (-1066 |#1|))) (-15 -2927 ((-1066 |#1|) (-1066 |#1|) (-522) (-522)))) (-13 (-514) (-135))) (T -1062))
-((-2927 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-13 (-514) (-135))) (-5 *1 (-1062 *4)))) (-3486 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-13 (-514) (-135))) (-5 *1 (-1062 *3)))) (-2312 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-13 (-514) (-135))) (-5 *1 (-1062 *3)))) (-2703 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-13 (-514) (-135))) (-5 *1 (-1062 *3)))))
-(-10 -7 (-15 -2703 ((-1066 |#1|) (-1066 |#1|))) (-15 -2312 ((-1066 |#1|) (-1066 |#1|))) (-15 -3486 ((-1066 |#1|) (-1066 |#1|))) (-15 -2927 ((-1066 |#1|) (-1066 |#1|) (-522) (-522))))
-((-4165 (((-1066 |#1|) (-1066 (-1066 |#1|))) 15)))
-(((-1063 |#1|) (-10 -7 (-15 -4165 ((-1066 |#1|) (-1066 (-1066 |#1|))))) (-1120)) (T -1063))
-((-4165 (*1 *2 *3) (-12 (-5 *3 (-1066 (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1063 *4)) (-4 *4 (-1120)))))
-(-10 -7 (-15 -4165 ((-1066 |#1|) (-1066 (-1066 |#1|)))))
-((-3690 (((-1066 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1066 |#1|)) 25)) (-3864 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1066 |#1|)) 26)) (-1391 (((-1066 |#2|) (-1 |#2| |#1|) (-1066 |#1|)) 16)))
-(((-1064 |#1| |#2|) (-10 -7 (-15 -1391 ((-1066 |#2|) (-1 |#2| |#1|) (-1066 |#1|))) (-15 -3690 ((-1066 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1066 |#1|))) (-15 -3864 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1066 |#1|)))) (-1120) (-1120)) (T -1064))
-((-3864 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1066 *5)) (-4 *5 (-1120)) (-4 *2 (-1120)) (-5 *1 (-1064 *5 *2)))) (-3690 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1066 *6)) (-4 *6 (-1120)) (-4 *3 (-1120)) (-5 *2 (-1066 *3)) (-5 *1 (-1064 *6 *3)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1066 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1066 *6)) (-5 *1 (-1064 *5 *6)))))
-(-10 -7 (-15 -1391 ((-1066 |#2|) (-1 |#2| |#1|) (-1066 |#1|))) (-15 -3690 ((-1066 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1066 |#1|))) (-15 -3864 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1066 |#1|))))
-((-1391 (((-1066 |#3|) (-1 |#3| |#1| |#2|) (-1066 |#1|) (-1066 |#2|)) 21)))
-(((-1065 |#1| |#2| |#3|) (-10 -7 (-15 -1391 ((-1066 |#3|) (-1 |#3| |#1| |#2|) (-1066 |#1|) (-1066 |#2|)))) (-1120) (-1120) (-1120)) (T -1065))
-((-1391 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1066 *6)) (-5 *5 (-1066 *7)) (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-1066 *8)) (-5 *1 (-1065 *6 *7 *8)))))
-(-10 -7 (-15 -1391 ((-1066 |#3|) (-1 |#3| |#1| |#2|) (-1066 |#1|) (-1066 |#2|))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3435 ((|#1| $) NIL)) (-2093 ((|#1| $) NIL)) (-3835 (($ $) 49)) (-2679 (((-1171) $ (-522) (-522)) 74 (|has| $ (-6 -4239)))) (-3487 (($ $ (-522)) 108 (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) NIL)) (-2577 (((-792) $) 38 (|has| |#1| (-1014)))) (-1693 (((-108)) 39 (|has| |#1| (-1014)))) (-3628 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-1243 (($ $ $) 96 (|has| $ (-6 -4239))) (($ $ (-522) $) 118)) (-2049 ((|#1| $ |#1|) 105 (|has| $ (-6 -4239)))) (-1346 ((|#1| $ |#1|) 100 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) 102 (|has| $ (-6 -4239))) (($ $ "rest" $) 104 (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) 107 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 87 (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) 56)) (-2081 ((|#1| $) NIL)) (-3175 (($) NIL T CONST)) (-1351 (($ $) 14)) (-2306 (($ $) 29) (($ $ (-708)) 86)) (-1855 (((-108) (-588 |#1|) $) 113 (|has| |#1| (-1014)))) (-4191 (($ (-588 |#1|)) 110)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1423 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) 55)) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3854 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) NIL)) (-3069 (((-108) $) NIL)) (-3837 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1585 (((-1171) (-522) $) 117 (|has| |#1| (-1014)))) (-1808 (((-708) $) 115)) (-4138 (((-588 $) $) NIL)) (-2030 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1811 (($ (-708) |#1|) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 71 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 61) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2720 (((-108) $ (-708)) NIL)) (-1279 (((-588 |#1|) $) NIL)) (-1754 (((-108) $) NIL)) (-2155 (($ $) 88)) (-2947 (((-108) $) 13)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1442 ((|#1| $) NIL) (($ $ (-708)) NIL)) (-1661 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) 72)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1578 (($ (-1 |#1|)) 120) (($ (-1 |#1| |#1|) |#1|) 121)) (-2765 ((|#1| $) 10)) (-2294 ((|#1| $) 28) (($ $ (-708)) 47)) (-3972 (((-2 (|:| |cycle?| (-108)) (|:| -3375 (-708)) (|:| |period| (-708))) (-708) $) 25)) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1614 (($ (-1 (-108) |#1|) $) 122)) (-1622 (($ (-1 (-108) |#1|) $) 123)) (-2602 (($ $ |#1|) 66 (|has| $ (-6 -4239)))) (-3719 (($ $ (-522)) 32)) (-2855 (((-108) $) 70)) (-4031 (((-108) $) 12)) (-4010 (((-108) $) 114)) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 20)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) 15)) (-3775 (($) 41)) (-2545 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1133 (-522))) NIL) ((|#1| $ (-522)) 52) ((|#1| $ (-522) |#1|) NIL)) (-2011 (((-522) $ $) 46)) (-3696 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-2604 (($ (-1 $)) 45)) (-3042 (((-108) $) 67)) (-3107 (($ $) 68)) (-2646 (($ $) 97 (|has| $ (-6 -4239)))) (-2393 (((-708) $) NIL)) (-2122 (($ $) NIL)) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) 42)) (-1431 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 51)) (-3440 (($ |#1| $) 95)) (-2630 (($ $ $) 98 (|has| $ (-6 -4239))) (($ $ |#1|) 99 (|has| $ (-6 -4239)))) (-4165 (($ $ $) 76) (($ |#1| $) 43) (($ (-588 $)) 81) (($ $ |#1|) 75)) (-1522 (($ $) 48)) (-2190 (($ (-588 |#1|)) 109) (((-792) $) 40 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) NIL)) (-2425 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 112 (|has| |#1| (-1014)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-1066 |#1|) (-13 (-615 |#1|) (-10 -8 (-6 -4239) (-15 -2190 ($ (-588 |#1|))) (-15 -4191 ($ (-588 |#1|))) (IF (|has| |#1| (-1014)) (-15 -1855 ((-108) (-588 |#1|) $)) |%noBranch|) (-15 -3972 ((-2 (|:| |cycle?| (-108)) (|:| -3375 (-708)) (|:| |period| (-708))) (-708) $)) (-15 -2604 ($ (-1 $))) (-15 -3440 ($ |#1| $)) (IF (|has| |#1| (-1014)) (PROGN (-15 -1585 ((-1171) (-522) $)) (-15 -2577 ((-792) $)) (-15 -1693 ((-108)))) |%noBranch|) (-15 -1243 ($ $ (-522) $)) (-15 -1578 ($ (-1 |#1|))) (-15 -1578 ($ (-1 |#1| |#1|) |#1|)) (-15 -1614 ($ (-1 (-108) |#1|) $)) (-15 -1622 ($ (-1 (-108) |#1|) $)))) (-1120)) (T -1066))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))) (-4191 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))) (-1855 (*1 *2 *3 *1) (-12 (-5 *3 (-588 *4)) (-4 *4 (-1014)) (-4 *4 (-1120)) (-5 *2 (-108)) (-5 *1 (-1066 *4)))) (-3972 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-108)) (|:| -3375 (-708)) (|:| |period| (-708)))) (-5 *1 (-1066 *4)) (-4 *4 (-1120)) (-5 *3 (-708)))) (-2604 (*1 *1 *2) (-12 (-5 *2 (-1 (-1066 *3))) (-5 *1 (-1066 *3)) (-4 *3 (-1120)))) (-3440 (*1 *1 *2 *1) (-12 (-5 *1 (-1066 *2)) (-4 *2 (-1120)))) (-1585 (*1 *2 *3 *1) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-1066 *4)) (-4 *4 (-1014)) (-4 *4 (-1120)))) (-2577 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-1066 *3)) (-4 *3 (-1014)) (-4 *3 (-1120)))) (-1693 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1066 *3)) (-4 *3 (-1014)) (-4 *3 (-1120)))) (-1243 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1066 *3)) (-4 *3 (-1120)))) (-1578 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))) (-1578 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))) (-1614 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))) (-1622 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))))
-(-13 (-615 |#1|) (-10 -8 (-6 -4239) (-15 -2190 ($ (-588 |#1|))) (-15 -4191 ($ (-588 |#1|))) (IF (|has| |#1| (-1014)) (-15 -1855 ((-108) (-588 |#1|) $)) |%noBranch|) (-15 -3972 ((-2 (|:| |cycle?| (-108)) (|:| -3375 (-708)) (|:| |period| (-708))) (-708) $)) (-15 -2604 ($ (-1 $))) (-15 -3440 ($ |#1| $)) (IF (|has| |#1| (-1014)) (PROGN (-15 -1585 ((-1171) (-522) $)) (-15 -2577 ((-792) $)) (-15 -1693 ((-108)))) |%noBranch|) (-15 -1243 ($ $ (-522) $)) (-15 -1578 ($ (-1 |#1|))) (-15 -1578 ($ (-1 |#1| |#1|) |#1|)) (-15 -1614 ($ (-1 (-108) |#1|) $)) (-15 -1622 ($ (-1 (-108) |#1|) $))))
-((-1416 (((-108) $ $) 19)) (-3539 (($ $) 120)) (-2084 (($ $) 121)) (-3192 (($ $ (-132)) 108) (($ $ (-129)) 107)) (-2679 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-3768 (((-108) $ $) 118)) (-3744 (((-108) $ $ (-522)) 117)) (-1507 (($ (-522)) 127)) (-2724 (((-588 $) $ (-132)) 110) (((-588 $) $ (-129)) 109)) (-4187 (((-108) (-1 (-108) (-132) (-132)) $) 98) (((-108) $) 92 (|has| (-132) (-784)))) (-3537 (($ (-1 (-108) (-132) (-132)) $) 89 (|has| $ (-6 -4239))) (($ $) 88 (-12 (|has| (-132) (-784)) (|has| $ (-6 -4239))))) (-3216 (($ (-1 (-108) (-132) (-132)) $) 99) (($ $) 93 (|has| (-132) (-784)))) (-4141 (((-108) $ (-708)) 8)) (-2379 (((-132) $ (-522) (-132)) 52 (|has| $ (-6 -4239))) (((-132) $ (-1133 (-522)) (-132)) 58 (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) (-132)) $) 75 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-2850 (($ $ (-132)) 104) (($ $ (-129)) 103)) (-3509 (($ $) 90 (|has| $ (-6 -4239)))) (-1862 (($ $) 100)) (-2516 (($ $ (-1133 (-522)) $) 114)) (-2333 (($ $) 78 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ (-132) $) 77 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) (-132)) $) 74 (|has| $ (-6 -4238)))) (-3864 (((-132) (-1 (-132) (-132) (-132)) $ (-132) (-132)) 76 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238)))) (((-132) (-1 (-132) (-132) (-132)) $ (-132)) 73 (|has| $ (-6 -4238))) (((-132) (-1 (-132) (-132) (-132)) $) 72 (|has| $ (-6 -4238)))) (-3854 (((-132) $ (-522) (-132)) 53 (|has| $ (-6 -4239)))) (-3631 (((-132) $ (-522)) 51)) (-3792 (((-108) $ $) 119)) (-3238 (((-522) (-1 (-108) (-132)) $) 97) (((-522) (-132) $) 96 (|has| (-132) (-1014))) (((-522) (-132) $ (-522)) 95 (|has| (-132) (-1014))) (((-522) $ $ (-522)) 113) (((-522) (-129) $ (-522)) 112)) (-3837 (((-588 (-132)) $) 30 (|has| $ (-6 -4238)))) (-1811 (($ (-708) (-132)) 69)) (-3352 (((-108) $ (-708)) 9)) (-1359 (((-522) $) 43 (|has| (-522) (-784)))) (-2814 (($ $ $) 87 (|has| (-132) (-784)))) (-2160 (($ (-1 (-108) (-132) (-132)) $ $) 101) (($ $ $) 94 (|has| (-132) (-784)))) (-3308 (((-588 (-132)) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) (-132) $) 27 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 44 (|has| (-522) (-784)))) (-2446 (($ $ $) 86 (|has| (-132) (-784)))) (-1455 (((-108) $ $ (-132)) 115)) (-4148 (((-708) $ $ (-132)) 116)) (-3838 (($ (-1 (-132) (-132)) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-132) (-132)) $) 35) (($ (-1 (-132) (-132) (-132)) $ $) 64)) (-1909 (($ $) 122)) (-2390 (($ $) 123)) (-2720 (((-108) $ (-708)) 10)) (-2862 (($ $ (-132)) 106) (($ $ (-129)) 105)) (-2385 (((-1068) $) 22)) (-1661 (($ (-132) $ (-522)) 60) (($ $ $ (-522)) 59)) (-3604 (((-588 (-522)) $) 46)) (-1405 (((-108) (-522) $) 47)) (-4151 (((-1032) $) 21)) (-2294 (((-132) $) 42 (|has| (-522) (-784)))) (-1414 (((-3 (-132) "failed") (-1 (-108) (-132)) $) 71)) (-2602 (($ $ (-132)) 41 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) (-132)) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-132)))) 26 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-270 (-132))) 25 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-132) (-132)) 24 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-588 (-132)) (-588 (-132))) 23 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) (-132) $) 45 (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1525 (((-588 (-132)) $) 48)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 (((-132) $ (-522) (-132)) 50) (((-132) $ (-522)) 49) (($ $ (-1133 (-522))) 63) (($ $ $) 102)) (-3696 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-4168 (((-708) (-1 (-108) (-132)) $) 31 (|has| $ (-6 -4238))) (((-708) (-132) $) 28 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238))))) (-1577 (($ $ $ (-522)) 91 (|has| $ (-6 -4239)))) (-2404 (($ $) 13)) (-1431 (((-498) $) 79 (|has| (-132) (-563 (-498))))) (-2201 (($ (-588 (-132))) 70)) (-4165 (($ $ (-132)) 68) (($ (-132) $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2190 (($ (-132)) 111) (((-792) $) 18)) (-3648 (((-108) (-1 (-108) (-132)) $) 33 (|has| $ (-6 -4238)))) (-4149 (((-1068) $) 131) (((-1068) $ (-108)) 130) (((-1171) (-759) $) 129) (((-1171) (-759) $ (-108)) 128)) (-1574 (((-108) $ $) 84 (|has| (-132) (-784)))) (-1558 (((-108) $ $) 83 (|has| (-132) (-784)))) (-1531 (((-108) $ $) 20)) (-1566 (((-108) $ $) 85 (|has| (-132) (-784)))) (-1549 (((-108) $ $) 82 (|has| (-132) (-784)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-2202 (((-1066 |#1|) (-1066 |#1|)) 17)) (-1484 (((-1066 |#1|) (-1066 |#1|)) 13)) (-3586 (((-1066 |#1|) (-1066 |#1|) (-522) (-522)) 20)) (-2404 (((-1066 |#1|) (-1066 |#1|)) 15)))
+(((-1062 |#1|) (-10 -7 (-15 -1484 ((-1066 |#1|) (-1066 |#1|))) (-15 -2404 ((-1066 |#1|) (-1066 |#1|))) (-15 -2202 ((-1066 |#1|) (-1066 |#1|))) (-15 -3586 ((-1066 |#1|) (-1066 |#1|) (-522) (-522)))) (-13 (-514) (-135))) (T -1062))
+((-3586 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-13 (-514) (-135))) (-5 *1 (-1062 *4)))) (-2202 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-13 (-514) (-135))) (-5 *1 (-1062 *3)))) (-2404 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-13 (-514) (-135))) (-5 *1 (-1062 *3)))) (-1484 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-13 (-514) (-135))) (-5 *1 (-1062 *3)))))
+(-10 -7 (-15 -1484 ((-1066 |#1|) (-1066 |#1|))) (-15 -2404 ((-1066 |#1|) (-1066 |#1|))) (-15 -2202 ((-1066 |#1|) (-1066 |#1|))) (-15 -3586 ((-1066 |#1|) (-1066 |#1|) (-522) (-522))))
+((-4170 (((-1066 |#1|) (-1066 (-1066 |#1|))) 15)))
+(((-1063 |#1|) (-10 -7 (-15 -4170 ((-1066 |#1|) (-1066 (-1066 |#1|))))) (-1120)) (T -1063))
+((-4170 (*1 *2 *3) (-12 (-5 *3 (-1066 (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1063 *4)) (-4 *4 (-1120)))))
+(-10 -7 (-15 -4170 ((-1066 |#1|) (-1066 (-1066 |#1|)))))
+((-3639 (((-1066 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1066 |#1|)) 25)) (-2153 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1066 |#1|)) 26)) (-3810 (((-1066 |#2|) (-1 |#2| |#1|) (-1066 |#1|)) 16)))
+(((-1064 |#1| |#2|) (-10 -7 (-15 -3810 ((-1066 |#2|) (-1 |#2| |#1|) (-1066 |#1|))) (-15 -3639 ((-1066 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1066 |#1|))) (-15 -2153 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1066 |#1|)))) (-1120) (-1120)) (T -1064))
+((-2153 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1066 *5)) (-4 *5 (-1120)) (-4 *2 (-1120)) (-5 *1 (-1064 *5 *2)))) (-3639 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1066 *6)) (-4 *6 (-1120)) (-4 *3 (-1120)) (-5 *2 (-1066 *3)) (-5 *1 (-1064 *6 *3)))) (-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1066 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1066 *6)) (-5 *1 (-1064 *5 *6)))))
+(-10 -7 (-15 -3810 ((-1066 |#2|) (-1 |#2| |#1|) (-1066 |#1|))) (-15 -3639 ((-1066 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1066 |#1|))) (-15 -2153 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1066 |#1|))))
+((-3810 (((-1066 |#3|) (-1 |#3| |#1| |#2|) (-1066 |#1|) (-1066 |#2|)) 21)))
+(((-1065 |#1| |#2| |#3|) (-10 -7 (-15 -3810 ((-1066 |#3|) (-1 |#3| |#1| |#2|) (-1066 |#1|) (-1066 |#2|)))) (-1120) (-1120) (-1120)) (T -1065))
+((-3810 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1066 *6)) (-5 *5 (-1066 *7)) (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-1066 *8)) (-5 *1 (-1065 *6 *7 *8)))))
+(-10 -7 (-15 -3810 ((-1066 |#3|) (-1 |#3| |#1| |#2|) (-1066 |#1|) (-1066 |#2|))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3526 ((|#1| $) NIL)) (-2126 ((|#1| $) NIL)) (-3961 (($ $) 49)) (-3883 (((-1171) $ (-522) (-522)) 74 (|has| $ (-6 -4239)))) (-2211 (($ $ (-522)) 108 (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) NIL)) (-2627 (((-792) $) 38 (|has| |#1| (-1014)))) (-4016 (((-108)) 39 (|has| |#1| (-1014)))) (-1198 ((|#1| $ |#1|) NIL (|has| $ (-6 -4239)))) (-2398 (($ $ $) 96 (|has| $ (-6 -4239))) (($ $ (-522) $) 118)) (-2631 ((|#1| $ |#1|) 105 (|has| $ (-6 -4239)))) (-3393 ((|#1| $ |#1|) 100 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) 102 (|has| $ (-6 -4239))) (($ $ "rest" $) 104 (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) 107 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 87 (|has| $ (-6 -4239))) ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) NIL (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) 56)) (-2116 ((|#1| $) NIL)) (-3367 (($) NIL T CONST)) (-3441 (($ $) 14)) (-2352 (($ $) 29) (($ $ (-708)) 86)) (-2573 (((-108) (-588 |#1|) $) 113 (|has| |#1| (-1014)))) (-1901 (($ (-588 |#1|)) 110)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1424 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) 55)) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2411 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) NIL)) (-3614 (((-108) $) NIL)) (-2395 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1637 (((-1171) (-522) $) 117 (|has| |#1| (-1014)))) (-3847 (((-708) $) 115)) (-2674 (((-588 $) $) NIL)) (-2402 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1893 (($ (-708) |#1|) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 71 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 61) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3309 (((-108) $ (-708)) NIL)) (-2548 (((-588 |#1|) $) NIL)) (-3394 (((-108) $) NIL)) (-3136 (($ $) 88)) (-3789 (((-108) $) 13)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1442 ((|#1| $) NIL) (($ $ (-708)) NIL)) (-1731 (($ $ $ (-522)) NIL) (($ |#1| $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) 72)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-1626 (($ (-1 |#1|)) 120) (($ (-1 |#1| |#1|) |#1|) 121)) (-1578 ((|#1| $) 10)) (-2337 ((|#1| $) 28) (($ $ (-708)) 47)) (-1559 (((-2 (|:| |cycle?| (-108)) (|:| -3476 (-708)) (|:| |period| (-708))) (-708) $) 25)) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1674 (($ (-1 (-108) |#1|) $) 122)) (-1684 (($ (-1 (-108) |#1|) $) 123)) (-1972 (($ $ |#1|) 66 (|has| $ (-6 -4239)))) (-3934 (($ $ (-522)) 32)) (-4196 (((-108) $) 70)) (-3963 (((-108) $) 12)) (-3726 (((-108) $) 114)) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 20)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) 15)) (-3298 (($) 41)) (-2683 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1133 (-522))) NIL) ((|#1| $ (-522)) 52) ((|#1| $ (-522) |#1|) NIL)) (-3381 (((-522) $ $) 46)) (-3835 (($ $ (-1133 (-522))) NIL) (($ $ (-522)) NIL)) (-1995 (($ (-1 $)) 45)) (-3395 (((-108) $) 67)) (-2885 (($ $) 68)) (-1668 (($ $) 97 (|has| $ (-6 -4239)))) (-1321 (((-708) $) NIL)) (-1502 (($ $) NIL)) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) 42)) (-3873 (((-498) $) NIL (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 51)) (-3019 (($ |#1| $) 95)) (-2335 (($ $ $) 98 (|has| $ (-6 -4239))) (($ $ |#1|) 99 (|has| $ (-6 -4239)))) (-4170 (($ $ $) 76) (($ |#1| $) 43) (($ (-588 $)) 81) (($ $ |#1|) 75)) (-1944 (($ $) 48)) (-2217 (($ (-588 |#1|)) 109) (((-792) $) 40 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) NIL)) (-3294 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 112 (|has| |#1| (-1014)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-1066 |#1|) (-13 (-615 |#1|) (-10 -8 (-6 -4239) (-15 -2217 ($ (-588 |#1|))) (-15 -1901 ($ (-588 |#1|))) (IF (|has| |#1| (-1014)) (-15 -2573 ((-108) (-588 |#1|) $)) |%noBranch|) (-15 -1559 ((-2 (|:| |cycle?| (-108)) (|:| -3476 (-708)) (|:| |period| (-708))) (-708) $)) (-15 -1995 ($ (-1 $))) (-15 -3019 ($ |#1| $)) (IF (|has| |#1| (-1014)) (PROGN (-15 -1637 ((-1171) (-522) $)) (-15 -2627 ((-792) $)) (-15 -4016 ((-108)))) |%noBranch|) (-15 -2398 ($ $ (-522) $)) (-15 -1626 ($ (-1 |#1|))) (-15 -1626 ($ (-1 |#1| |#1|) |#1|)) (-15 -1674 ($ (-1 (-108) |#1|) $)) (-15 -1684 ($ (-1 (-108) |#1|) $)))) (-1120)) (T -1066))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))) (-1901 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))) (-2573 (*1 *2 *3 *1) (-12 (-5 *3 (-588 *4)) (-4 *4 (-1014)) (-4 *4 (-1120)) (-5 *2 (-108)) (-5 *1 (-1066 *4)))) (-1559 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-108)) (|:| -3476 (-708)) (|:| |period| (-708)))) (-5 *1 (-1066 *4)) (-4 *4 (-1120)) (-5 *3 (-708)))) (-1995 (*1 *1 *2) (-12 (-5 *2 (-1 (-1066 *3))) (-5 *1 (-1066 *3)) (-4 *3 (-1120)))) (-3019 (*1 *1 *2 *1) (-12 (-5 *1 (-1066 *2)) (-4 *2 (-1120)))) (-1637 (*1 *2 *3 *1) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-1066 *4)) (-4 *4 (-1014)) (-4 *4 (-1120)))) (-2627 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-1066 *3)) (-4 *3 (-1014)) (-4 *3 (-1120)))) (-4016 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1066 *3)) (-4 *3 (-1014)) (-4 *3 (-1120)))) (-2398 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1066 *3)) (-4 *3 (-1120)))) (-1626 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))) (-1626 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))) (-1674 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))) (-1684 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))))
+(-13 (-615 |#1|) (-10 -8 (-6 -4239) (-15 -2217 ($ (-588 |#1|))) (-15 -1901 ($ (-588 |#1|))) (IF (|has| |#1| (-1014)) (-15 -2573 ((-108) (-588 |#1|) $)) |%noBranch|) (-15 -1559 ((-2 (|:| |cycle?| (-108)) (|:| -3476 (-708)) (|:| |period| (-708))) (-708) $)) (-15 -1995 ($ (-1 $))) (-15 -3019 ($ |#1| $)) (IF (|has| |#1| (-1014)) (PROGN (-15 -1637 ((-1171) (-522) $)) (-15 -2627 ((-792) $)) (-15 -4016 ((-108)))) |%noBranch|) (-15 -2398 ($ $ (-522) $)) (-15 -1626 ($ (-1 |#1|))) (-15 -1626 ($ (-1 |#1| |#1|) |#1|)) (-15 -1674 ($ (-1 (-108) |#1|) $)) (-15 -1684 ($ (-1 (-108) |#1|) $))))
+((-1419 (((-108) $ $) 19)) (-2828 (($ $) 120)) (-4140 (($ $) 121)) (-2334 (($ $ (-132)) 108) (($ $ (-129)) 107)) (-3883 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-3900 (((-108) $ $) 118)) (-3876 (((-108) $ $ (-522)) 117)) (-1513 (($ (-522)) 127)) (-3428 (((-588 $) $ (-132)) 110) (((-588 $) $ (-129)) 109)) (-1866 (((-108) (-1 (-108) (-132) (-132)) $) 98) (((-108) $) 92 (|has| (-132) (-784)))) (-2806 (($ (-1 (-108) (-132) (-132)) $) 89 (|has| $ (-6 -4239))) (($ $) 88 (-12 (|has| (-132) (-784)) (|has| $ (-6 -4239))))) (-3296 (($ (-1 (-108) (-132) (-132)) $) 99) (($ $) 93 (|has| (-132) (-784)))) (-2717 (((-108) $ (-708)) 8)) (-2437 (((-132) $ (-522) (-132)) 52 (|has| $ (-6 -4239))) (((-132) $ (-1133 (-522)) (-132)) 58 (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) (-132)) $) 75 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-2979 (($ $ (-132)) 104) (($ $ (-129)) 103)) (-2465 (($ $) 90 (|has| $ (-6 -4239)))) (-1939 (($ $) 100)) (-4029 (($ $ (-1133 (-522)) $) 114)) (-2379 (($ $) 78 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ (-132) $) 77 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) (-132)) $) 74 (|has| $ (-6 -4238)))) (-2153 (((-132) (-1 (-132) (-132) (-132)) $ (-132) (-132)) 76 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238)))) (((-132) (-1 (-132) (-132) (-132)) $ (-132)) 73 (|has| $ (-6 -4238))) (((-132) (-1 (-132) (-132) (-132)) $) 72 (|has| $ (-6 -4238)))) (-2411 (((-132) $ (-522) (-132)) 53 (|has| $ (-6 -4239)))) (-2186 (((-132) $ (-522)) 51)) (-3928 (((-108) $ $) 119)) (-3314 (((-522) (-1 (-108) (-132)) $) 97) (((-522) (-132) $) 96 (|has| (-132) (-1014))) (((-522) (-132) $ (-522)) 95 (|has| (-132) (-1014))) (((-522) $ $ (-522)) 113) (((-522) (-129) $ (-522)) 112)) (-2395 (((-588 (-132)) $) 30 (|has| $ (-6 -4238)))) (-1893 (($ (-708) (-132)) 69)) (-1480 (((-108) $ (-708)) 9)) (-3496 (((-522) $) 43 (|has| (-522) (-784)))) (-1308 (($ $ $) 87 (|has| (-132) (-784)))) (-3164 (($ (-1 (-108) (-132) (-132)) $ $) 101) (($ $ $) 94 (|has| (-132) (-784)))) (-4084 (((-588 (-132)) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) (-132) $) 27 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 44 (|has| (-522) (-784)))) (-2524 (($ $ $) 86 (|has| (-132) (-784)))) (-1445 (((-108) $ $ (-132)) 115)) (-4171 (((-708) $ $ (-132)) 116)) (-2397 (($ (-1 (-132) (-132)) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-132) (-132)) $) 35) (($ (-1 (-132) (-132) (-132)) $ $) 64)) (-1219 (($ $) 122)) (-2369 (($ $) 123)) (-3309 (((-108) $ (-708)) 10)) (-2992 (($ $ (-132)) 106) (($ $ (-129)) 105)) (-2311 (((-1068) $) 22)) (-1731 (($ (-132) $ (-522)) 60) (($ $ $ (-522)) 59)) (-2130 (((-588 (-522)) $) 46)) (-2103 (((-108) (-522) $) 47)) (-4174 (((-1032) $) 21)) (-2337 (((-132) $) 42 (|has| (-522) (-784)))) (-2187 (((-3 (-132) "failed") (-1 (-108) (-132)) $) 71)) (-1972 (($ $ (-132)) 41 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) (-132)) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-132)))) 26 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-270 (-132))) 25 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-132) (-132)) 24 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-588 (-132)) (-588 (-132))) 23 (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) (-132) $) 45 (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1973 (((-588 (-132)) $) 48)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 (((-132) $ (-522) (-132)) 50) (((-132) $ (-522)) 49) (($ $ (-1133 (-522))) 63) (($ $ $) 102)) (-3835 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-4187 (((-708) (-1 (-108) (-132)) $) 31 (|has| $ (-6 -4238))) (((-708) (-132) $) 28 (-12 (|has| (-132) (-1014)) (|has| $ (-6 -4238))))) (-3629 (($ $ $ (-522)) 91 (|has| $ (-6 -4239)))) (-2463 (($ $) 13)) (-3873 (((-498) $) 79 (|has| (-132) (-563 (-498))))) (-2227 (($ (-588 (-132))) 70)) (-4170 (($ $ (-132)) 68) (($ (-132) $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2217 (($ (-132)) 111) (((-792) $) 18)) (-1381 (((-108) (-1 (-108) (-132)) $) 33 (|has| $ (-6 -4238)))) (-2810 (((-1068) $) 131) (((-1068) $ (-108)) 130) (((-1171) (-759) $) 129) (((-1171) (-759) $ (-108)) 128)) (-1623 (((-108) $ $) 84 (|has| (-132) (-784)))) (-1597 (((-108) $ $) 83 (|has| (-132) (-784)))) (-1562 (((-108) $ $) 20)) (-1609 (((-108) $ $) 85 (|has| (-132) (-784)))) (-1587 (((-108) $ $) 82 (|has| (-132) (-784)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-1067) (-1197)) (T -1067))
-((-1507 (*1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-1067)))))
-(-13 (-1054) (-1014) (-765) (-10 -8 (-15 -1507 ($ (-522)))))
+((-1513 (*1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-1067)))))
+(-13 (-1054) (-1014) (-765) (-10 -8 (-15 -1513 ($ (-522)))))
(((-33) . T) ((-97) . T) ((-562 (-792)) . T) ((-139 #0=(-132)) . T) ((-563 (-498)) |has| (-132) (-563 (-498))) ((-262 #1=(-522) #0#) . T) ((-264 #1# #0#) . T) ((-285 #0#) -12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))) ((-348 #0#) . T) ((-461 #0#) . T) ((-555 #1# #0#) . T) ((-483 #0# #0#) -12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))) ((-593 #0#) . T) ((-19 #0#) . T) ((-765) . T) ((-784) |has| (-132) (-784)) ((-1014) . T) ((-1054) . T) ((-1120) . T))
-((-1416 (((-108) $ $) NIL)) (-3539 (($ $) NIL)) (-2084 (($ $) NIL)) (-3192 (($ $ (-132)) NIL) (($ $ (-129)) NIL)) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-3768 (((-108) $ $) NIL)) (-3744 (((-108) $ $ (-522)) NIL)) (-1507 (($ (-522)) 7)) (-2724 (((-588 $) $ (-132)) NIL) (((-588 $) $ (-129)) NIL)) (-4187 (((-108) (-1 (-108) (-132) (-132)) $) NIL) (((-108) $) NIL (|has| (-132) (-784)))) (-3537 (($ (-1 (-108) (-132) (-132)) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| (-132) (-784))))) (-3216 (($ (-1 (-108) (-132) (-132)) $) NIL) (($ $) NIL (|has| (-132) (-784)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 (((-132) $ (-522) (-132)) NIL (|has| $ (-6 -4239))) (((-132) $ (-1133 (-522)) (-132)) NIL (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-2850 (($ $ (-132)) NIL) (($ $ (-129)) NIL)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2516 (($ $ (-1133 (-522)) $) NIL)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1423 (($ (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014)))) (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-132) (-1 (-132) (-132) (-132)) $ (-132) (-132)) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014)))) (((-132) (-1 (-132) (-132) (-132)) $ (-132)) NIL (|has| $ (-6 -4238))) (((-132) (-1 (-132) (-132) (-132)) $) NIL (|has| $ (-6 -4238)))) (-3854 (((-132) $ (-522) (-132)) NIL (|has| $ (-6 -4239)))) (-3631 (((-132) $ (-522)) NIL)) (-3792 (((-108) $ $) NIL)) (-3238 (((-522) (-1 (-108) (-132)) $) NIL) (((-522) (-132) $) NIL (|has| (-132) (-1014))) (((-522) (-132) $ (-522)) NIL (|has| (-132) (-1014))) (((-522) $ $ (-522)) NIL) (((-522) (-129) $ (-522)) NIL)) (-3837 (((-588 (-132)) $) NIL (|has| $ (-6 -4238)))) (-1811 (($ (-708) (-132)) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| (-132) (-784)))) (-2160 (($ (-1 (-108) (-132) (-132)) $ $) NIL) (($ $ $) NIL (|has| (-132) (-784)))) (-3308 (((-588 (-132)) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| (-132) (-784)))) (-1455 (((-108) $ $ (-132)) NIL)) (-4148 (((-708) $ $ (-132)) NIL)) (-3838 (($ (-1 (-132) (-132)) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-132) (-132)) $) NIL) (($ (-1 (-132) (-132) (-132)) $ $) NIL)) (-1909 (($ $) NIL)) (-2390 (($ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2862 (($ $ (-132)) NIL) (($ $ (-129)) NIL)) (-2385 (((-1068) $) NIL)) (-1661 (($ (-132) $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL)) (-2294 (((-132) $) NIL (|has| (-522) (-784)))) (-1414 (((-3 (-132) "failed") (-1 (-108) (-132)) $) NIL)) (-2602 (($ $ (-132)) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-132)))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-270 (-132))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-132) (-132)) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-588 (-132)) (-588 (-132))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1525 (((-588 (-132)) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 (((-132) $ (-522) (-132)) NIL) (((-132) $ (-522)) NIL) (($ $ (-1133 (-522))) NIL) (($ $ $) NIL)) (-3696 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4168 (((-708) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238))) (((-708) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-132) (-563 (-498))))) (-2201 (($ (-588 (-132))) NIL)) (-4165 (($ $ (-132)) NIL) (($ (-132) $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2190 (($ (-132)) NIL) (((-792) $) NIL)) (-3648 (((-108) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-4149 (((-1068) $) 18) (((-1068) $ (-108)) 20) (((-1171) (-759) $) 21) (((-1171) (-759) $ (-108)) 22)) (-1574 (((-108) $ $) NIL (|has| (-132) (-784)))) (-1558 (((-108) $ $) NIL (|has| (-132) (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| (-132) (-784)))) (-1549 (((-108) $ $) NIL (|has| (-132) (-784)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-2828 (($ $) NIL)) (-4140 (($ $) NIL)) (-2334 (($ $ (-132)) NIL) (($ $ (-129)) NIL)) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-3900 (((-108) $ $) NIL)) (-3876 (((-108) $ $ (-522)) NIL)) (-1513 (($ (-522)) 7)) (-3428 (((-588 $) $ (-132)) NIL) (((-588 $) $ (-129)) NIL)) (-1866 (((-108) (-1 (-108) (-132) (-132)) $) NIL) (((-108) $) NIL (|has| (-132) (-784)))) (-2806 (($ (-1 (-108) (-132) (-132)) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| (-132) (-784))))) (-3296 (($ (-1 (-108) (-132) (-132)) $) NIL) (($ $) NIL (|has| (-132) (-784)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 (((-132) $ (-522) (-132)) NIL (|has| $ (-6 -4239))) (((-132) $ (-1133 (-522)) (-132)) NIL (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2979 (($ $ (-132)) NIL) (($ $ (-129)) NIL)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-4029 (($ $ (-1133 (-522)) $) NIL)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1424 (($ (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014)))) (($ (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-132) (-1 (-132) (-132) (-132)) $ (-132) (-132)) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014)))) (((-132) (-1 (-132) (-132) (-132)) $ (-132)) NIL (|has| $ (-6 -4238))) (((-132) (-1 (-132) (-132) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2411 (((-132) $ (-522) (-132)) NIL (|has| $ (-6 -4239)))) (-2186 (((-132) $ (-522)) NIL)) (-3928 (((-108) $ $) NIL)) (-3314 (((-522) (-1 (-108) (-132)) $) NIL) (((-522) (-132) $) NIL (|has| (-132) (-1014))) (((-522) (-132) $ (-522)) NIL (|has| (-132) (-1014))) (((-522) $ $ (-522)) NIL) (((-522) (-129) $ (-522)) NIL)) (-2395 (((-588 (-132)) $) NIL (|has| $ (-6 -4238)))) (-1893 (($ (-708) (-132)) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| (-132) (-784)))) (-3164 (($ (-1 (-108) (-132) (-132)) $ $) NIL) (($ $ $) NIL (|has| (-132) (-784)))) (-4084 (((-588 (-132)) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| (-132) (-784)))) (-1445 (((-108) $ $ (-132)) NIL)) (-4171 (((-708) $ $ (-132)) NIL)) (-2397 (($ (-1 (-132) (-132)) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-132) (-132)) $) NIL) (($ (-1 (-132) (-132) (-132)) $ $) NIL)) (-1219 (($ $) NIL)) (-2369 (($ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2992 (($ $ (-132)) NIL) (($ $ (-129)) NIL)) (-2311 (((-1068) $) NIL)) (-1731 (($ (-132) $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL)) (-2337 (((-132) $) NIL (|has| (-522) (-784)))) (-2187 (((-3 (-132) "failed") (-1 (-108) (-132)) $) NIL)) (-1972 (($ $ (-132)) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-132)))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-270 (-132))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-132) (-132)) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014)))) (($ $ (-588 (-132)) (-588 (-132))) NIL (-12 (|has| (-132) (-285 (-132))) (|has| (-132) (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-1973 (((-588 (-132)) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 (((-132) $ (-522) (-132)) NIL) (((-132) $ (-522)) NIL) (($ $ (-1133 (-522))) NIL) (($ $ $) NIL)) (-3835 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4187 (((-708) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238))) (((-708) (-132) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-132) (-1014))))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-132) (-563 (-498))))) (-2227 (($ (-588 (-132))) NIL)) (-4170 (($ $ (-132)) NIL) (($ (-132) $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2217 (($ (-132)) NIL) (((-792) $) NIL)) (-1381 (((-108) (-1 (-108) (-132)) $) NIL (|has| $ (-6 -4238)))) (-2810 (((-1068) $) 18) (((-1068) $ (-108)) 20) (((-1171) (-759) $) 21) (((-1171) (-759) $ (-108)) 22)) (-1623 (((-108) $ $) NIL (|has| (-132) (-784)))) (-1597 (((-108) $ $) NIL (|has| (-132) (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| (-132) (-784)))) (-1587 (((-108) $ $) NIL (|has| (-132) (-784)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-1068) (-1067)) (T -1068))
NIL
(-1067)
-((-1416 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)) (|has| |#1| (-1014))))) (-1800 (($) NIL) (($ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) NIL)) (-2679 (((-1171) $ (-1068) (-1068)) NIL (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#1| $ (-1068) |#1|) NIL)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-2750 (((-3 |#1| "failed") (-1068) $) NIL)) (-3175 (($) NIL T CONST)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014))))) (-3859 (($ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#1| "failed") (-1068) $) NIL)) (-1423 (($ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)))) (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-1068) |#1|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-1068)) NIL)) (-3837 (((-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-1068) $) NIL (|has| (-1068) (-784)))) (-3308 (((-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)))) (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-1068) $) NIL (|has| (-1068) (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (-3708 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)) (|has| |#1| (-1014))))) (-2966 (((-588 (-1068)) $) NIL)) (-1231 (((-108) (-1068) $) NIL)) (-2116 (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL)) (-4095 (($ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL)) (-3604 (((-588 (-1068)) $) NIL)) (-1405 (((-108) (-1068) $) NIL)) (-4151 (((-1032) $) NIL (-3708 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)) (|has| |#1| (-1014))))) (-2294 ((|#1| $) NIL (|has| (-1068) (-784)))) (-1414 (((-3 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) "failed") (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL)) (-2602 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))))) NIL (-12 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) NIL (-12 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)))) (($ $ (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) NIL (-12 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)))) (($ $ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) NIL (-12 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-285 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ (-1068)) NIL) ((|#1| $ (-1068) |#1|) NIL)) (-3990 (($) NIL) (($ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) NIL)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) NIL)) (-2190 (((-792) $) NIL (-3708 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-562 (-792))) (|has| |#1| (-562 (-792)))))) (-2795 (($ (-588 (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)))) NIL)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 (-1068)) (|:| -3048 |#1|)) (-1014)) (|has| |#1| (-1014))))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)) (|has| |#1| (-1014))))) (-1883 (($) NIL) (($ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) NIL)) (-3883 (((-1171) $ (-1068) (-1068)) NIL (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#1| $ (-1068) |#1|) NIL)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-4011 (((-3 |#1| "failed") (-1068) $) NIL)) (-3367 (($) NIL T CONST)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014))))) (-1700 (($ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#1| "failed") (-1068) $) NIL)) (-1424 (($ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)))) (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-1068) |#1|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-1068)) NIL)) (-2395 (((-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-1068) $) NIL (|has| (-1068) (-784)))) (-4084 (((-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)))) (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-1068) $) NIL (|has| (-1068) (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (-3844 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)) (|has| |#1| (-1014))))) (-2562 (((-588 (-1068)) $) NIL)) (-2241 (((-108) (-1068) $) NIL)) (-1431 (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL)) (-3365 (($ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL)) (-2130 (((-588 (-1068)) $) NIL)) (-2103 (((-108) (-1068) $) NIL)) (-4174 (((-1032) $) NIL (-3844 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)) (|has| |#1| (-1014))))) (-2337 ((|#1| $) NIL (|has| (-1068) (-784)))) (-2187 (((-3 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) "failed") (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL)) (-1972 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))))) NIL (-12 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) NIL (-12 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)))) (($ $ (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) NIL (-12 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)))) (($ $ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) NIL (-12 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-285 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ (-1068)) NIL) ((|#1| $ (-1068) |#1|) NIL)) (-3546 (($) NIL) (($ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) NIL)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) NIL)) (-2217 (((-792) $) NIL (-3844 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-562 (-792))) (|has| |#1| (-562 (-792)))))) (-2501 (($ (-588 (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)))) NIL)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 (-1068)) (|:| -3149 |#1|)) (-1014)) (|has| |#1| (-1014))))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-1069 |#1|) (-13 (-1097 (-1068) |#1|) (-10 -7 (-6 -4238))) (-1014)) (T -1069))
NIL
(-13 (-1097 (-1068) |#1|) (-10 -7 (-6 -4238)))
-((-1867 (((-1066 |#1|) (-1066 |#1|)) 77)) (-2682 (((-3 (-1066 |#1|) "failed") (-1066 |#1|)) 37)) (-1342 (((-1066 |#1|) (-382 (-522)) (-1066 |#1|)) 117 (|has| |#1| (-37 (-382 (-522)))))) (-4042 (((-1066 |#1|) |#1| (-1066 |#1|)) 121 (|has| |#1| (-338)))) (-1773 (((-1066 |#1|) (-1066 |#1|)) 90)) (-2876 (((-1066 (-522)) (-522)) 57)) (-2115 (((-1066 |#1|) (-1066 (-1066 |#1|))) 108 (|has| |#1| (-37 (-382 (-522)))))) (-3814 (((-1066 |#1|) (-522) (-522) (-1066 |#1|)) 95)) (-2518 (((-1066 |#1|) |#1| (-522)) 45)) (-3555 (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 60)) (-2006 (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 119 (|has| |#1| (-338)))) (-3737 (((-1066 |#1|) |#1| (-1 (-1066 |#1|))) 107 (|has| |#1| (-37 (-382 (-522)))))) (-3127 (((-1066 |#1|) (-1 |#1| (-522)) |#1| (-1 (-1066 |#1|))) 120 (|has| |#1| (-338)))) (-1511 (((-1066 |#1|) (-1066 |#1|)) 89)) (-2358 (((-1066 |#1|) (-1066 |#1|)) 76)) (-1958 (((-1066 |#1|) (-522) (-522) (-1066 |#1|)) 96)) (-1858 (((-1066 |#1|) |#1| (-1066 |#1|)) 105 (|has| |#1| (-37 (-382 (-522)))))) (-1262 (((-1066 (-522)) (-522)) 56)) (-3622 (((-1066 |#1|) |#1|) 59)) (-1310 (((-1066 |#1|) (-1066 |#1|) (-522) (-522)) 92)) (-3281 (((-1066 |#1|) (-1 |#1| (-522)) (-1066 |#1|)) 66)) (-2232 (((-3 (-1066 |#1|) "failed") (-1066 |#1|) (-1066 |#1|)) 35)) (-3755 (((-1066 |#1|) (-1066 |#1|)) 91)) (-2289 (((-1066 |#1|) (-1066 |#1|) |#1|) 71)) (-4013 (((-1066 |#1|) (-1066 |#1|)) 62)) (-1830 (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 72)) (-2190 (((-1066 |#1|) |#1|) 67)) (-2005 (((-1066 |#1|) (-1066 (-1066 |#1|))) 82)) (-1620 (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 36)) (-1612 (((-1066 |#1|) (-1066 |#1|)) 21) (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 23)) (-1602 (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 17)) (* (((-1066 |#1|) (-1066 |#1|) |#1|) 29) (((-1066 |#1|) |#1| (-1066 |#1|)) 26) (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 27)))
-(((-1070 |#1|) (-10 -7 (-15 -1602 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -1612 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -1612 ((-1066 |#1|) (-1066 |#1|))) (-15 * ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 * ((-1066 |#1|) |#1| (-1066 |#1|))) (-15 * ((-1066 |#1|) (-1066 |#1|) |#1|)) (-15 -2232 ((-3 (-1066 |#1|) "failed") (-1066 |#1|) (-1066 |#1|))) (-15 -1620 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -2682 ((-3 (-1066 |#1|) "failed") (-1066 |#1|))) (-15 -2518 ((-1066 |#1|) |#1| (-522))) (-15 -1262 ((-1066 (-522)) (-522))) (-15 -2876 ((-1066 (-522)) (-522))) (-15 -3622 ((-1066 |#1|) |#1|)) (-15 -3555 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -4013 ((-1066 |#1|) (-1066 |#1|))) (-15 -3281 ((-1066 |#1|) (-1 |#1| (-522)) (-1066 |#1|))) (-15 -2190 ((-1066 |#1|) |#1|)) (-15 -2289 ((-1066 |#1|) (-1066 |#1|) |#1|)) (-15 -1830 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -2358 ((-1066 |#1|) (-1066 |#1|))) (-15 -1867 ((-1066 |#1|) (-1066 |#1|))) (-15 -2005 ((-1066 |#1|) (-1066 (-1066 |#1|)))) (-15 -1511 ((-1066 |#1|) (-1066 |#1|))) (-15 -1773 ((-1066 |#1|) (-1066 |#1|))) (-15 -3755 ((-1066 |#1|) (-1066 |#1|))) (-15 -1310 ((-1066 |#1|) (-1066 |#1|) (-522) (-522))) (-15 -3814 ((-1066 |#1|) (-522) (-522) (-1066 |#1|))) (-15 -1958 ((-1066 |#1|) (-522) (-522) (-1066 |#1|))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -1858 ((-1066 |#1|) |#1| (-1066 |#1|))) (-15 -3737 ((-1066 |#1|) |#1| (-1 (-1066 |#1|)))) (-15 -2115 ((-1066 |#1|) (-1066 (-1066 |#1|)))) (-15 -1342 ((-1066 |#1|) (-382 (-522)) (-1066 |#1|)))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-15 -2006 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -3127 ((-1066 |#1|) (-1 |#1| (-522)) |#1| (-1 (-1066 |#1|)))) (-15 -4042 ((-1066 |#1|) |#1| (-1066 |#1|)))) |%noBranch|)) (-971)) (T -1070))
-((-4042 (*1 *2 *3 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-338)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-3127 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-522))) (-5 *5 (-1 (-1066 *4))) (-4 *4 (-338)) (-4 *4 (-971)) (-5 *2 (-1066 *4)) (-5 *1 (-1070 *4)))) (-2006 (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-338)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1342 (*1 *2 *3 *2) (-12 (-5 *2 (-1066 *4)) (-4 *4 (-37 *3)) (-4 *4 (-971)) (-5 *3 (-382 (-522))) (-5 *1 (-1070 *4)))) (-2115 (*1 *2 *3) (-12 (-5 *3 (-1066 (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1070 *4)) (-4 *4 (-37 (-382 (-522)))) (-4 *4 (-971)))) (-3737 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1066 *3))) (-5 *2 (-1066 *3)) (-5 *1 (-1070 *3)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)))) (-1858 (*1 *2 *3 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1958 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-971)) (-5 *1 (-1070 *4)))) (-3814 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-971)) (-5 *1 (-1070 *4)))) (-1310 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-971)) (-5 *1 (-1070 *4)))) (-3755 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1773 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1511 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-2005 (*1 *2 *3) (-12 (-5 *3 (-1066 (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1070 *4)) (-4 *4 (-971)))) (-1867 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-2358 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1830 (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-2289 (*1 *2 *2 *3) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-2190 (*1 *2 *3) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-1070 *3)) (-4 *3 (-971)))) (-3281 (*1 *2 *3 *2) (-12 (-5 *2 (-1066 *4)) (-5 *3 (-1 *4 (-522))) (-4 *4 (-971)) (-5 *1 (-1070 *4)))) (-4013 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-3555 (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-3622 (*1 *2 *3) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-1070 *3)) (-4 *3 (-971)))) (-2876 (*1 *2 *3) (-12 (-5 *2 (-1066 (-522))) (-5 *1 (-1070 *4)) (-4 *4 (-971)) (-5 *3 (-522)))) (-1262 (*1 *2 *3) (-12 (-5 *2 (-1066 (-522))) (-5 *1 (-1070 *4)) (-4 *4 (-971)) (-5 *3 (-522)))) (-2518 (*1 *2 *3 *4) (-12 (-5 *4 (-522)) (-5 *2 (-1066 *3)) (-5 *1 (-1070 *3)) (-4 *3 (-971)))) (-2682 (*1 *2 *2) (|partial| -12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1620 (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-2232 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1612 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1612 (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1602 (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))))
-(-10 -7 (-15 -1602 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -1612 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -1612 ((-1066 |#1|) (-1066 |#1|))) (-15 * ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 * ((-1066 |#1|) |#1| (-1066 |#1|))) (-15 * ((-1066 |#1|) (-1066 |#1|) |#1|)) (-15 -2232 ((-3 (-1066 |#1|) "failed") (-1066 |#1|) (-1066 |#1|))) (-15 -1620 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -2682 ((-3 (-1066 |#1|) "failed") (-1066 |#1|))) (-15 -2518 ((-1066 |#1|) |#1| (-522))) (-15 -1262 ((-1066 (-522)) (-522))) (-15 -2876 ((-1066 (-522)) (-522))) (-15 -3622 ((-1066 |#1|) |#1|)) (-15 -3555 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -4013 ((-1066 |#1|) (-1066 |#1|))) (-15 -3281 ((-1066 |#1|) (-1 |#1| (-522)) (-1066 |#1|))) (-15 -2190 ((-1066 |#1|) |#1|)) (-15 -2289 ((-1066 |#1|) (-1066 |#1|) |#1|)) (-15 -1830 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -2358 ((-1066 |#1|) (-1066 |#1|))) (-15 -1867 ((-1066 |#1|) (-1066 |#1|))) (-15 -2005 ((-1066 |#1|) (-1066 (-1066 |#1|)))) (-15 -1511 ((-1066 |#1|) (-1066 |#1|))) (-15 -1773 ((-1066 |#1|) (-1066 |#1|))) (-15 -3755 ((-1066 |#1|) (-1066 |#1|))) (-15 -1310 ((-1066 |#1|) (-1066 |#1|) (-522) (-522))) (-15 -3814 ((-1066 |#1|) (-522) (-522) (-1066 |#1|))) (-15 -1958 ((-1066 |#1|) (-522) (-522) (-1066 |#1|))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -1858 ((-1066 |#1|) |#1| (-1066 |#1|))) (-15 -3737 ((-1066 |#1|) |#1| (-1 (-1066 |#1|)))) (-15 -2115 ((-1066 |#1|) (-1066 (-1066 |#1|)))) (-15 -1342 ((-1066 |#1|) (-382 (-522)) (-1066 |#1|)))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-15 -2006 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -3127 ((-1066 |#1|) (-1 |#1| (-522)) |#1| (-1 (-1066 |#1|)))) (-15 -4042 ((-1066 |#1|) |#1| (-1066 |#1|)))) |%noBranch|))
-((-2908 (((-1066 |#1|) (-1066 |#1|)) 57)) (-2772 (((-1066 |#1|) (-1066 |#1|)) 39)) (-2884 (((-1066 |#1|) (-1066 |#1|)) 53)) (-2748 (((-1066 |#1|) (-1066 |#1|)) 35)) (-2930 (((-1066 |#1|) (-1066 |#1|)) 60)) (-2794 (((-1066 |#1|) (-1066 |#1|)) 42)) (-1254 (((-1066 |#1|) (-1066 |#1|)) 31)) (-3266 (((-1066 |#1|) (-1066 |#1|)) 27)) (-1738 (((-1066 |#1|) (-1066 |#1|)) 61)) (-2804 (((-1066 |#1|) (-1066 |#1|)) 43)) (-2919 (((-1066 |#1|) (-1066 |#1|)) 58)) (-2784 (((-1066 |#1|) (-1066 |#1|)) 40)) (-2896 (((-1066 |#1|) (-1066 |#1|)) 55)) (-2761 (((-1066 |#1|) (-1066 |#1|)) 37)) (-1759 (((-1066 |#1|) (-1066 |#1|)) 65)) (-2836 (((-1066 |#1|) (-1066 |#1|)) 47)) (-1745 (((-1066 |#1|) (-1066 |#1|)) 63)) (-2815 (((-1066 |#1|) (-1066 |#1|)) 45)) (-1776 (((-1066 |#1|) (-1066 |#1|)) 68)) (-2860 (((-1066 |#1|) (-1066 |#1|)) 50)) (-3924 (((-1066 |#1|) (-1066 |#1|)) 69)) (-2872 (((-1066 |#1|) (-1066 |#1|)) 51)) (-1768 (((-1066 |#1|) (-1066 |#1|)) 67)) (-2848 (((-1066 |#1|) (-1066 |#1|)) 49)) (-1752 (((-1066 |#1|) (-1066 |#1|)) 66)) (-2825 (((-1066 |#1|) (-1066 |#1|)) 48)) (** (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 33)))
-(((-1071 |#1|) (-10 -7 (-15 -3266 ((-1066 |#1|) (-1066 |#1|))) (-15 -1254 ((-1066 |#1|) (-1066 |#1|))) (-15 ** ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -2748 ((-1066 |#1|) (-1066 |#1|))) (-15 -2761 ((-1066 |#1|) (-1066 |#1|))) (-15 -2772 ((-1066 |#1|) (-1066 |#1|))) (-15 -2784 ((-1066 |#1|) (-1066 |#1|))) (-15 -2794 ((-1066 |#1|) (-1066 |#1|))) (-15 -2804 ((-1066 |#1|) (-1066 |#1|))) (-15 -2815 ((-1066 |#1|) (-1066 |#1|))) (-15 -2825 ((-1066 |#1|) (-1066 |#1|))) (-15 -2836 ((-1066 |#1|) (-1066 |#1|))) (-15 -2848 ((-1066 |#1|) (-1066 |#1|))) (-15 -2860 ((-1066 |#1|) (-1066 |#1|))) (-15 -2872 ((-1066 |#1|) (-1066 |#1|))) (-15 -2884 ((-1066 |#1|) (-1066 |#1|))) (-15 -2896 ((-1066 |#1|) (-1066 |#1|))) (-15 -2908 ((-1066 |#1|) (-1066 |#1|))) (-15 -2919 ((-1066 |#1|) (-1066 |#1|))) (-15 -2930 ((-1066 |#1|) (-1066 |#1|))) (-15 -1738 ((-1066 |#1|) (-1066 |#1|))) (-15 -1745 ((-1066 |#1|) (-1066 |#1|))) (-15 -1752 ((-1066 |#1|) (-1066 |#1|))) (-15 -1759 ((-1066 |#1|) (-1066 |#1|))) (-15 -1768 ((-1066 |#1|) (-1066 |#1|))) (-15 -1776 ((-1066 |#1|) (-1066 |#1|))) (-15 -3924 ((-1066 |#1|) (-1066 |#1|)))) (-37 (-382 (-522)))) (T -1071))
-((-3924 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1776 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1768 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1759 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1752 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1745 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1738 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2930 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2919 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2908 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2896 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2884 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2872 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2860 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2848 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2836 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2825 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2815 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2804 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2794 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2784 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2772 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2761 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2748 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1254 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-3266 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))))
-(-10 -7 (-15 -3266 ((-1066 |#1|) (-1066 |#1|))) (-15 -1254 ((-1066 |#1|) (-1066 |#1|))) (-15 ** ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -2748 ((-1066 |#1|) (-1066 |#1|))) (-15 -2761 ((-1066 |#1|) (-1066 |#1|))) (-15 -2772 ((-1066 |#1|) (-1066 |#1|))) (-15 -2784 ((-1066 |#1|) (-1066 |#1|))) (-15 -2794 ((-1066 |#1|) (-1066 |#1|))) (-15 -2804 ((-1066 |#1|) (-1066 |#1|))) (-15 -2815 ((-1066 |#1|) (-1066 |#1|))) (-15 -2825 ((-1066 |#1|) (-1066 |#1|))) (-15 -2836 ((-1066 |#1|) (-1066 |#1|))) (-15 -2848 ((-1066 |#1|) (-1066 |#1|))) (-15 -2860 ((-1066 |#1|) (-1066 |#1|))) (-15 -2872 ((-1066 |#1|) (-1066 |#1|))) (-15 -2884 ((-1066 |#1|) (-1066 |#1|))) (-15 -2896 ((-1066 |#1|) (-1066 |#1|))) (-15 -2908 ((-1066 |#1|) (-1066 |#1|))) (-15 -2919 ((-1066 |#1|) (-1066 |#1|))) (-15 -2930 ((-1066 |#1|) (-1066 |#1|))) (-15 -1738 ((-1066 |#1|) (-1066 |#1|))) (-15 -1745 ((-1066 |#1|) (-1066 |#1|))) (-15 -1752 ((-1066 |#1|) (-1066 |#1|))) (-15 -1759 ((-1066 |#1|) (-1066 |#1|))) (-15 -1768 ((-1066 |#1|) (-1066 |#1|))) (-15 -1776 ((-1066 |#1|) (-1066 |#1|))) (-15 -3924 ((-1066 |#1|) (-1066 |#1|))))
-((-2908 (((-1066 |#1|) (-1066 |#1|)) 100)) (-2772 (((-1066 |#1|) (-1066 |#1|)) 64)) (-2932 (((-2 (|:| -2884 (-1066 |#1|)) (|:| -2896 (-1066 |#1|))) (-1066 |#1|)) 96)) (-2884 (((-1066 |#1|) (-1066 |#1|)) 97)) (-3442 (((-2 (|:| -2748 (-1066 |#1|)) (|:| -2761 (-1066 |#1|))) (-1066 |#1|)) 53)) (-2748 (((-1066 |#1|) (-1066 |#1|)) 54)) (-2930 (((-1066 |#1|) (-1066 |#1|)) 102)) (-2794 (((-1066 |#1|) (-1066 |#1|)) 71)) (-1254 (((-1066 |#1|) (-1066 |#1|)) 39)) (-3266 (((-1066 |#1|) (-1066 |#1|)) 36)) (-1738 (((-1066 |#1|) (-1066 |#1|)) 103)) (-2804 (((-1066 |#1|) (-1066 |#1|)) 72)) (-2919 (((-1066 |#1|) (-1066 |#1|)) 101)) (-2784 (((-1066 |#1|) (-1066 |#1|)) 67)) (-2896 (((-1066 |#1|) (-1066 |#1|)) 98)) (-2761 (((-1066 |#1|) (-1066 |#1|)) 55)) (-1759 (((-1066 |#1|) (-1066 |#1|)) 111)) (-2836 (((-1066 |#1|) (-1066 |#1|)) 86)) (-1745 (((-1066 |#1|) (-1066 |#1|)) 105)) (-2815 (((-1066 |#1|) (-1066 |#1|)) 82)) (-1776 (((-1066 |#1|) (-1066 |#1|)) 115)) (-2860 (((-1066 |#1|) (-1066 |#1|)) 90)) (-3924 (((-1066 |#1|) (-1066 |#1|)) 117)) (-2872 (((-1066 |#1|) (-1066 |#1|)) 92)) (-1768 (((-1066 |#1|) (-1066 |#1|)) 113)) (-2848 (((-1066 |#1|) (-1066 |#1|)) 88)) (-1752 (((-1066 |#1|) (-1066 |#1|)) 107)) (-2825 (((-1066 |#1|) (-1066 |#1|)) 84)) (** (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 40)))
-(((-1072 |#1|) (-10 -7 (-15 -3266 ((-1066 |#1|) (-1066 |#1|))) (-15 -1254 ((-1066 |#1|) (-1066 |#1|))) (-15 ** ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -3442 ((-2 (|:| -2748 (-1066 |#1|)) (|:| -2761 (-1066 |#1|))) (-1066 |#1|))) (-15 -2748 ((-1066 |#1|) (-1066 |#1|))) (-15 -2761 ((-1066 |#1|) (-1066 |#1|))) (-15 -2772 ((-1066 |#1|) (-1066 |#1|))) (-15 -2784 ((-1066 |#1|) (-1066 |#1|))) (-15 -2794 ((-1066 |#1|) (-1066 |#1|))) (-15 -2804 ((-1066 |#1|) (-1066 |#1|))) (-15 -2815 ((-1066 |#1|) (-1066 |#1|))) (-15 -2825 ((-1066 |#1|) (-1066 |#1|))) (-15 -2836 ((-1066 |#1|) (-1066 |#1|))) (-15 -2848 ((-1066 |#1|) (-1066 |#1|))) (-15 -2860 ((-1066 |#1|) (-1066 |#1|))) (-15 -2872 ((-1066 |#1|) (-1066 |#1|))) (-15 -2932 ((-2 (|:| -2884 (-1066 |#1|)) (|:| -2896 (-1066 |#1|))) (-1066 |#1|))) (-15 -2884 ((-1066 |#1|) (-1066 |#1|))) (-15 -2896 ((-1066 |#1|) (-1066 |#1|))) (-15 -2908 ((-1066 |#1|) (-1066 |#1|))) (-15 -2919 ((-1066 |#1|) (-1066 |#1|))) (-15 -2930 ((-1066 |#1|) (-1066 |#1|))) (-15 -1738 ((-1066 |#1|) (-1066 |#1|))) (-15 -1745 ((-1066 |#1|) (-1066 |#1|))) (-15 -1752 ((-1066 |#1|) (-1066 |#1|))) (-15 -1759 ((-1066 |#1|) (-1066 |#1|))) (-15 -1768 ((-1066 |#1|) (-1066 |#1|))) (-15 -1776 ((-1066 |#1|) (-1066 |#1|))) (-15 -3924 ((-1066 |#1|) (-1066 |#1|)))) (-37 (-382 (-522)))) (T -1072))
-((-3924 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1776 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1768 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1759 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1752 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1745 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1738 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2930 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2919 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2908 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2896 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2884 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2932 (*1 *2 *3) (-12 (-4 *4 (-37 (-382 (-522)))) (-5 *2 (-2 (|:| -2884 (-1066 *4)) (|:| -2896 (-1066 *4)))) (-5 *1 (-1072 *4)) (-5 *3 (-1066 *4)))) (-2872 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2860 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2848 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2836 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2825 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2815 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2804 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2794 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2784 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2772 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2761 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2748 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-3442 (*1 *2 *3) (-12 (-4 *4 (-37 (-382 (-522)))) (-5 *2 (-2 (|:| -2748 (-1066 *4)) (|:| -2761 (-1066 *4)))) (-5 *1 (-1072 *4)) (-5 *3 (-1066 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1254 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-3266 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))))
-(-10 -7 (-15 -3266 ((-1066 |#1|) (-1066 |#1|))) (-15 -1254 ((-1066 |#1|) (-1066 |#1|))) (-15 ** ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -3442 ((-2 (|:| -2748 (-1066 |#1|)) (|:| -2761 (-1066 |#1|))) (-1066 |#1|))) (-15 -2748 ((-1066 |#1|) (-1066 |#1|))) (-15 -2761 ((-1066 |#1|) (-1066 |#1|))) (-15 -2772 ((-1066 |#1|) (-1066 |#1|))) (-15 -2784 ((-1066 |#1|) (-1066 |#1|))) (-15 -2794 ((-1066 |#1|) (-1066 |#1|))) (-15 -2804 ((-1066 |#1|) (-1066 |#1|))) (-15 -2815 ((-1066 |#1|) (-1066 |#1|))) (-15 -2825 ((-1066 |#1|) (-1066 |#1|))) (-15 -2836 ((-1066 |#1|) (-1066 |#1|))) (-15 -2848 ((-1066 |#1|) (-1066 |#1|))) (-15 -2860 ((-1066 |#1|) (-1066 |#1|))) (-15 -2872 ((-1066 |#1|) (-1066 |#1|))) (-15 -2932 ((-2 (|:| -2884 (-1066 |#1|)) (|:| -2896 (-1066 |#1|))) (-1066 |#1|))) (-15 -2884 ((-1066 |#1|) (-1066 |#1|))) (-15 -2896 ((-1066 |#1|) (-1066 |#1|))) (-15 -2908 ((-1066 |#1|) (-1066 |#1|))) (-15 -2919 ((-1066 |#1|) (-1066 |#1|))) (-15 -2930 ((-1066 |#1|) (-1066 |#1|))) (-15 -1738 ((-1066 |#1|) (-1066 |#1|))) (-15 -1745 ((-1066 |#1|) (-1066 |#1|))) (-15 -1752 ((-1066 |#1|) (-1066 |#1|))) (-15 -1759 ((-1066 |#1|) (-1066 |#1|))) (-15 -1768 ((-1066 |#1|) (-1066 |#1|))) (-15 -1776 ((-1066 |#1|) (-1066 |#1|))) (-15 -3924 ((-1066 |#1|) (-1066 |#1|))))
-((-3016 (((-886 |#2|) |#2| |#2|) 36)) (-2071 ((|#2| |#2| |#1|) 19 (|has| |#1| (-283)))))
-(((-1073 |#1| |#2|) (-10 -7 (-15 -3016 ((-886 |#2|) |#2| |#2|)) (IF (|has| |#1| (-283)) (-15 -2071 (|#2| |#2| |#1|)) |%noBranch|)) (-514) (-1142 |#1|)) (T -1073))
-((-2071 (*1 *2 *2 *3) (-12 (-4 *3 (-283)) (-4 *3 (-514)) (-5 *1 (-1073 *3 *2)) (-4 *2 (-1142 *3)))) (-3016 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-886 *3)) (-5 *1 (-1073 *4 *3)) (-4 *3 (-1142 *4)))))
-(-10 -7 (-15 -3016 ((-886 |#2|) |#2| |#2|)) (IF (|has| |#1| (-283)) (-15 -2071 (|#2| |#2| |#1|)) |%noBranch|))
-((-1416 (((-108) $ $) NIL)) (-2172 (($ $ (-588 (-708))) 67)) (-3974 (($) 26)) (-4218 (($ $) 42)) (-1441 (((-588 $) $) 51)) (-2662 (((-108) $) 16)) (-4163 (((-588 (-872 |#2|)) $) 74)) (-4147 (($ $) 68)) (-1386 (((-708) $) 37)) (-1811 (($) 25)) (-2332 (($ $ (-588 (-708)) (-872 |#2|)) 60) (($ $ (-588 (-708)) (-708)) 61) (($ $ (-708) (-872 |#2|)) 63)) (-2160 (($ $ $) 48) (($ (-588 $)) 50)) (-1554 (((-708) $) 75)) (-1754 (((-108) $) 15)) (-2385 (((-1068) $) NIL)) (-3418 (((-108) $) 18)) (-4151 (((-1032) $) NIL)) (-3155 (((-156) $) 73)) (-3693 (((-872 |#2|) $) 69)) (-1394 (((-708) $) 70)) (-2253 (((-108) $) 72)) (-1340 (($ $ (-588 (-708)) (-156)) 66)) (-1925 (($ $) 43)) (-2190 (((-792) $) 85)) (-3008 (($ $ (-588 (-708)) (-108)) 65)) (-1749 (((-588 $) $) 11)) (-3254 (($ $ (-708)) 36)) (-1904 (($ $) 32)) (-3979 (($ $ $ (-872 |#2|) (-708)) 56)) (-2090 (($ $ (-872 |#2|)) 55)) (-2608 (($ $ (-588 (-708)) (-872 |#2|)) 54) (($ $ (-588 (-708)) (-708)) 58) (((-708) $ (-872 |#2|)) 59)) (-1531 (((-108) $ $) 79)))
-(((-1074 |#1| |#2|) (-13 (-1014) (-10 -8 (-15 -1754 ((-108) $)) (-15 -2662 ((-108) $)) (-15 -3418 ((-108) $)) (-15 -1811 ($)) (-15 -3974 ($)) (-15 -1904 ($ $)) (-15 -3254 ($ $ (-708))) (-15 -1749 ((-588 $) $)) (-15 -1386 ((-708) $)) (-15 -4218 ($ $)) (-15 -1925 ($ $)) (-15 -2160 ($ $ $)) (-15 -2160 ($ (-588 $))) (-15 -1441 ((-588 $) $)) (-15 -2608 ($ $ (-588 (-708)) (-872 |#2|))) (-15 -2090 ($ $ (-872 |#2|))) (-15 -3979 ($ $ $ (-872 |#2|) (-708))) (-15 -2332 ($ $ (-588 (-708)) (-872 |#2|))) (-15 -2608 ($ $ (-588 (-708)) (-708))) (-15 -2332 ($ $ (-588 (-708)) (-708))) (-15 -2608 ((-708) $ (-872 |#2|))) (-15 -2332 ($ $ (-708) (-872 |#2|))) (-15 -3008 ($ $ (-588 (-708)) (-108))) (-15 -1340 ($ $ (-588 (-708)) (-156))) (-15 -2172 ($ $ (-588 (-708)))) (-15 -3693 ((-872 |#2|) $)) (-15 -1394 ((-708) $)) (-15 -2253 ((-108) $)) (-15 -3155 ((-156) $)) (-15 -1554 ((-708) $)) (-15 -4147 ($ $)) (-15 -4163 ((-588 (-872 |#2|)) $)))) (-850) (-971)) (T -1074))
-((-1754 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-2662 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-3418 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-1811 (*1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-3974 (*1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-1904 (*1 *1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-3254 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-1749 (*1 *2 *1) (-12 (-5 *2 (-588 (-1074 *3 *4))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-1386 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-4218 (*1 *1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-1925 (*1 *1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-2160 (*1 *1 *1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-2160 (*1 *1 *2) (-12 (-5 *2 (-588 (-1074 *3 *4))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-1441 (*1 *2 *1) (-12 (-5 *2 (-588 (-1074 *3 *4))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-2608 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-708))) (-5 *3 (-872 *5)) (-4 *5 (-971)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))) (-2090 (*1 *1 *1 *2) (-12 (-5 *2 (-872 *4)) (-4 *4 (-971)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)))) (-3979 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-872 *5)) (-5 *3 (-708)) (-4 *5 (-971)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))) (-2332 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-708))) (-5 *3 (-872 *5)) (-4 *5 (-971)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))) (-2608 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-708))) (-5 *3 (-708)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)) (-4 *5 (-971)))) (-2332 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-708))) (-5 *3 (-708)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)) (-4 *5 (-971)))) (-2608 (*1 *2 *1 *3) (-12 (-5 *3 (-872 *5)) (-4 *5 (-971)) (-5 *2 (-708)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))) (-2332 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *3 (-872 *5)) (-4 *5 (-971)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))) (-3008 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-708))) (-5 *3 (-108)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)) (-4 *5 (-971)))) (-1340 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-708))) (-5 *3 (-156)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)) (-4 *5 (-971)))) (-2172 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-708))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-3693 (*1 *2 *1) (-12 (-5 *2 (-872 *4)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-1394 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-2253 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-3155 (*1 *2 *1) (-12 (-5 *2 (-156)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-1554 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-4147 (*1 *1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-4163 (*1 *2 *1) (-12 (-5 *2 (-588 (-872 *4))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))))
-(-13 (-1014) (-10 -8 (-15 -1754 ((-108) $)) (-15 -2662 ((-108) $)) (-15 -3418 ((-108) $)) (-15 -1811 ($)) (-15 -3974 ($)) (-15 -1904 ($ $)) (-15 -3254 ($ $ (-708))) (-15 -1749 ((-588 $) $)) (-15 -1386 ((-708) $)) (-15 -4218 ($ $)) (-15 -1925 ($ $)) (-15 -2160 ($ $ $)) (-15 -2160 ($ (-588 $))) (-15 -1441 ((-588 $) $)) (-15 -2608 ($ $ (-588 (-708)) (-872 |#2|))) (-15 -2090 ($ $ (-872 |#2|))) (-15 -3979 ($ $ $ (-872 |#2|) (-708))) (-15 -2332 ($ $ (-588 (-708)) (-872 |#2|))) (-15 -2608 ($ $ (-588 (-708)) (-708))) (-15 -2332 ($ $ (-588 (-708)) (-708))) (-15 -2608 ((-708) $ (-872 |#2|))) (-15 -2332 ($ $ (-708) (-872 |#2|))) (-15 -3008 ($ $ (-588 (-708)) (-108))) (-15 -1340 ($ $ (-588 (-708)) (-156))) (-15 -2172 ($ $ (-588 (-708)))) (-15 -3693 ((-872 |#2|) $)) (-15 -1394 ((-708) $)) (-15 -2253 ((-108) $)) (-15 -3155 ((-156) $)) (-15 -1554 ((-708) $)) (-15 -4147 ($ $)) (-15 -4163 ((-588 (-872 |#2|)) $))))
-((-1416 (((-108) $ $) NIL)) (-3602 ((|#2| $) 11)) (-3593 ((|#1| $) 10)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2201 (($ |#1| |#2|) 9)) (-2190 (((-792) $) 16)) (-1531 (((-108) $ $) NIL)))
-(((-1075 |#1| |#2|) (-13 (-1014) (-10 -8 (-15 -2201 ($ |#1| |#2|)) (-15 -3593 (|#1| $)) (-15 -3602 (|#2| $)))) (-1014) (-1014)) (T -1075))
-((-2201 (*1 *1 *2 *3) (-12 (-5 *1 (-1075 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-3593 (*1 *2 *1) (-12 (-4 *2 (-1014)) (-5 *1 (-1075 *2 *3)) (-4 *3 (-1014)))) (-3602 (*1 *2 *1) (-12 (-4 *2 (-1014)) (-5 *1 (-1075 *3 *2)) (-4 *3 (-1014)))))
-(-13 (-1014) (-10 -8 (-15 -2201 ($ |#1| |#2|)) (-15 -3593 (|#1| $)) (-15 -3602 (|#2| $))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2229 (((-1083 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-283)) (|has| |#1| (-338))))) (-4090 (((-588 (-999)) $) NIL)) (-1611 (((-1085) $) 11)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-2022 (($ $) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-3739 (((-108) $) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-2789 (($ $ (-522)) NIL) (($ $ (-522) (-522)) 66)) (-2258 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) NIL)) (-3321 (((-1083 |#1| |#2| |#3|) $) 36)) (-2114 (((-3 (-1083 |#1| |#2| |#3|) "failed") $) 29)) (-3058 (((-1083 |#1| |#2| |#3|) $) 30)) (-2908 (($ $) 107 (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) 83 (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-3119 (($ $) NIL (|has| |#1| (-338)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1929 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-2884 (($ $) 103 (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) 79 (|has| |#1| (-37 (-382 (-522)))))) (-1341 (((-522) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-2773 (($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) NIL)) (-2930 (($ $) 111 (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) 87 (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-1083 |#1| |#2| |#3|) "failed") $) 31) (((-3 (-1085) "failed") $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-1085))) (|has| |#1| (-338)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338)))) (((-3 (-522) "failed") $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338))))) (-1484 (((-1083 |#1| |#2| |#3|) $) 131) (((-1085) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-1085))) (|has| |#1| (-338)))) (((-382 (-522)) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338)))) (((-522) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338))))) (-3701 (($ $) 34) (($ (-522) $) 35)) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-3156 (($ $) NIL)) (-2096 (((-628 (-1083 |#1| |#2| |#3|)) (-628 $)) NIL (|has| |#1| (-338))) (((-2 (|:| -1222 (-628 (-1083 |#1| |#2| |#3|))) (|:| |vec| (-1166 (-1083 |#1| |#2| |#3|)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-338))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-584 (-522))) (|has| |#1| (-338)))) (((-628 (-522)) (-628 $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-584 (-522))) (|has| |#1| (-338))))) (-2682 (((-3 $ "failed") $) 48)) (-2240 (((-382 (-881 |#1|)) $ (-522)) 65 (|has| |#1| (-514))) (((-382 (-881 |#1|)) $ (-522) (-522)) 67 (|has| |#1| (-514)))) (-3255 (($) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-507)) (|has| |#1| (-338))))) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2813 (((-108) $) NIL (|has| |#1| (-338)))) (-3687 (((-108) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-3390 (((-108) $) 25)) (-2838 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-815 (-522))) (|has| |#1| (-338)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-815 (-354))) (|has| |#1| (-338))))) (-3714 (((-522) $) NIL) (((-522) $ (-522)) 24)) (-2782 (((-108) $) NIL)) (-2902 (($ $) NIL (|has| |#1| (-338)))) (-2805 (((-1083 |#1| |#2| |#3|) $) 38 (|has| |#1| (-338)))) (-1504 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3004 (((-3 $ "failed") $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-1061)) (|has| |#1| (-338))))) (-2556 (((-108) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-2073 (($ $ (-850)) NIL)) (-3950 (($ (-1 |#1| (-522)) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-522)) 18) (($ $ (-999) (-522)) NIL) (($ $ (-588 (-999)) (-588 (-522))) NIL)) (-2814 (($ $ $) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-2446 (($ $ $) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-338)))) (-1254 (($ $) 72 (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-3068 (($ (-522) (-1083 |#1| |#2| |#3|)) 33)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL (|has| |#1| (-338)))) (-1858 (($ $) 70 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) NIL (-3708 (-12 (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 71 (|has| |#1| (-37 (-382 (-522)))))) (-3802 (($) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-1061)) (|has| |#1| (-338))) CONST)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-3933 (($ $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-283)) (|has| |#1| (-338))))) (-3686 (((-1083 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-507)) (|has| |#1| (-338))))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-1916 (((-393 $) $) NIL (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3719 (($ $ (-522)) 145)) (-2232 (((-3 $ "failed") $ $) 49 (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3266 (($ $) 73 (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-522))))) (($ $ (-1085) (-1083 |#1| |#2| |#3|)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-483 (-1085) (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-588 (-1085)) (-588 (-1083 |#1| |#2| |#3|))) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-483 (-1085) (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-588 (-270 (-1083 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-285 (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-270 (-1083 |#1| |#2| |#3|))) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-285 (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-285 (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-588 (-1083 |#1| |#2| |#3|)) (-588 (-1083 |#1| |#2| |#3|))) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-285 (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338))))) (-3730 (((-708) $) NIL (|has| |#1| (-338)))) (-2545 ((|#1| $ (-522)) NIL) (($ $ $) 54 (|has| (-522) (-1026))) (($ $ (-1083 |#1| |#2| |#3|)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-262 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338))))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-2157 (($ $ (-1 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|))) NIL (|has| |#1| (-338))) (($ $ (-1 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|)) (-708)) NIL (|has| |#1| (-338))) (($ $ (-1162 |#2|)) 51) (($ $ (-708)) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) 50 (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085) (-708)) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-588 (-1085))) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085)) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))) (-3533 (($ $) NIL (|has| |#1| (-338)))) (-2816 (((-1083 |#1| |#2| |#3|) $) 41 (|has| |#1| (-338)))) (-2793 (((-522) $) 37)) (-1738 (($ $) 113 (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) 89 (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) 109 (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) 85 (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) 105 (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) 81 (|has| |#1| (-37 (-382 (-522)))))) (-1431 (((-498) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-563 (-498))) (|has| |#1| (-338)))) (((-354) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-947)) (|has| |#1| (-338)))) (((-202) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-947)) (|has| |#1| (-338)))) (((-821 (-354)) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-563 (-821 (-354)))) (|has| |#1| (-338)))) (((-821 (-522)) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-563 (-821 (-522)))) (|has| |#1| (-338))))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-1522 (($ $) NIL)) (-2190 (((-792) $) 149) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ (-1083 |#1| |#2| |#3|)) 27) (($ (-1162 |#2|)) 23) (($ (-1085)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-1085))) (|has| |#1| (-338)))) (($ $) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514)))) (($ (-382 (-522))) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338))) (|has| |#1| (-37 (-382 (-522))))))) (-3243 ((|#1| $ (-522)) 68)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-133)) (|has| |#1| (-338))) (|has| |#1| (-133))))) (-2323 (((-708)) NIL)) (-1893 ((|#1| $) 12)) (-3025 (((-1083 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-507)) (|has| |#1| (-338))))) (-1759 (($ $) 119 (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) 95 (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-1745 (($ $) 115 (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) 91 (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) 123 (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) 99 (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-522)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-522)))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) 125 (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) 101 (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) 121 (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) 97 (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) 117 (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) 93 (|has| |#1| (-37 (-382 (-522)))))) (-2241 (($ $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3566 (($) 20 T CONST)) (-3577 (($) 16 T CONST)) (-2213 (($ $ (-1 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|))) NIL (|has| |#1| (-338))) (($ $ (-1 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|)) (-708)) NIL (|has| |#1| (-338))) (($ $ (-708)) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085) (-708)) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-588 (-1085))) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085)) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))) (-1574 (((-108) $ $) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1558 (((-108) $ $) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1549 (((-108) $ $) NIL (-3708 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) 44 (|has| |#1| (-338))) (($ (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|)) 45 (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 21)) (** (($ $ (-850)) NIL) (($ $ (-708)) 53) (($ $ (-522)) NIL (|has| |#1| (-338))) (($ $ $) 74 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 128 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 32) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1083 |#1| |#2| |#3|)) 43 (|has| |#1| (-338))) (($ (-1083 |#1| |#2| |#3|) $) 42 (|has| |#1| (-338))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
-(((-1076 |#1| |#2| |#3|) (-13 (-1128 |#1| (-1083 |#1| |#2| |#3|)) (-10 -8 (-15 -2190 ($ (-1162 |#2|))) (-15 -2157 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -1076))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1076 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1076 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-1858 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1076 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
-(-13 (-1128 |#1| (-1083 |#1| |#2| |#3|)) (-10 -8 (-15 -2190 ($ (-1162 |#2|))) (-15 -2157 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|)))
-((-3518 ((|#2| |#2| (-1007 |#2|)) 26) ((|#2| |#2| (-1085)) 28)))
-(((-1077 |#1| |#2|) (-10 -7 (-15 -3518 (|#2| |#2| (-1085))) (-15 -3518 (|#2| |#2| (-1007 |#2|)))) (-13 (-514) (-784) (-962 (-522)) (-584 (-522))) (-13 (-405 |#1|) (-146) (-27) (-1106))) (T -1077))
-((-3518 (*1 *2 *2 *3) (-12 (-5 *3 (-1007 *2)) (-4 *2 (-13 (-405 *4) (-146) (-27) (-1106))) (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1077 *4 *2)))) (-3518 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1077 *4 *2)) (-4 *2 (-13 (-405 *4) (-146) (-27) (-1106))))))
-(-10 -7 (-15 -3518 (|#2| |#2| (-1085))) (-15 -3518 (|#2| |#2| (-1007 |#2|))))
-((-3518 (((-3 (-382 (-881 |#1|)) (-291 |#1|)) (-382 (-881 |#1|)) (-1007 (-382 (-881 |#1|)))) 30) (((-382 (-881 |#1|)) (-881 |#1|) (-1007 (-881 |#1|))) 44) (((-3 (-382 (-881 |#1|)) (-291 |#1|)) (-382 (-881 |#1|)) (-1085)) 32) (((-382 (-881 |#1|)) (-881 |#1|) (-1085)) 36)))
-(((-1078 |#1|) (-10 -7 (-15 -3518 ((-382 (-881 |#1|)) (-881 |#1|) (-1085))) (-15 -3518 ((-3 (-382 (-881 |#1|)) (-291 |#1|)) (-382 (-881 |#1|)) (-1085))) (-15 -3518 ((-382 (-881 |#1|)) (-881 |#1|) (-1007 (-881 |#1|)))) (-15 -3518 ((-3 (-382 (-881 |#1|)) (-291 |#1|)) (-382 (-881 |#1|)) (-1007 (-382 (-881 |#1|)))))) (-13 (-514) (-784) (-962 (-522)))) (T -1078))
-((-3518 (*1 *2 *3 *4) (-12 (-5 *4 (-1007 (-382 (-881 *5)))) (-5 *3 (-382 (-881 *5))) (-4 *5 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-3 *3 (-291 *5))) (-5 *1 (-1078 *5)))) (-3518 (*1 *2 *3 *4) (-12 (-5 *4 (-1007 (-881 *5))) (-5 *3 (-881 *5)) (-4 *5 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-382 *3)) (-5 *1 (-1078 *5)))) (-3518 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-3 (-382 (-881 *5)) (-291 *5))) (-5 *1 (-1078 *5)) (-5 *3 (-382 (-881 *5))))) (-3518 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-382 (-881 *5))) (-5 *1 (-1078 *5)) (-5 *3 (-881 *5)))))
-(-10 -7 (-15 -3518 ((-382 (-881 |#1|)) (-881 |#1|) (-1085))) (-15 -3518 ((-3 (-382 (-881 |#1|)) (-291 |#1|)) (-382 (-881 |#1|)) (-1085))) (-15 -3518 ((-382 (-881 |#1|)) (-881 |#1|) (-1007 (-881 |#1|)))) (-15 -3518 ((-3 (-382 (-881 |#1|)) (-291 |#1|)) (-382 (-881 |#1|)) (-1007 (-382 (-881 |#1|))))))
-((-1391 (((-1081 |#2|) (-1 |#2| |#1|) (-1081 |#1|)) 13)))
-(((-1079 |#1| |#2|) (-10 -7 (-15 -1391 ((-1081 |#2|) (-1 |#2| |#1|) (-1081 |#1|)))) (-971) (-971)) (T -1079))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1081 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-5 *2 (-1081 *6)) (-5 *1 (-1079 *5 *6)))))
-(-10 -7 (-15 -1391 ((-1081 |#2|) (-1 |#2| |#1|) (-1081 |#1|))))
-((-3450 (((-393 (-1081 (-382 |#4|))) (-1081 (-382 |#4|))) 50)) (-1916 (((-393 (-1081 (-382 |#4|))) (-1081 (-382 |#4|))) 51)))
-(((-1080 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1916 ((-393 (-1081 (-382 |#4|))) (-1081 (-382 |#4|)))) (-15 -3450 ((-393 (-1081 (-382 |#4|))) (-1081 (-382 |#4|))))) (-730) (-784) (-426) (-878 |#3| |#1| |#2|)) (T -1080))
-((-3450 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-426)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-393 (-1081 (-382 *7)))) (-5 *1 (-1080 *4 *5 *6 *7)) (-5 *3 (-1081 (-382 *7))))) (-1916 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-426)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-393 (-1081 (-382 *7)))) (-5 *1 (-1080 *4 *5 *6 *7)) (-5 *3 (-1081 (-382 *7))))))
-(-10 -7 (-15 -1916 ((-393 (-1081 (-382 |#4|))) (-1081 (-382 |#4|)))) (-15 -3450 ((-393 (-1081 (-382 |#4|))) (-1081 (-382 |#4|)))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 30)) (-3960 (((-1166 |#1|) $ (-708)) NIL)) (-4090 (((-588 (-999)) $) NIL)) (-3793 (($ (-1081 |#1|)) NIL)) (-1282 (((-1081 $) $ (-999)) 59) (((-1081 |#1|) $) 48)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) 133 (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 (-999))) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3984 (($ $ $) 127 (|has| |#1| (-514)))) (-1565 (((-393 (-1081 $)) (-1081 $)) 72 (|has| |#1| (-838)))) (-3119 (($ $) NIL (|has| |#1| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 92 (|has| |#1| (-838)))) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-3242 (($ $ (-708)) 42)) (-2272 (($ $ (-708)) 43)) (-1441 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-426)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-999) "failed") $) NIL)) (-1484 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-999) $) NIL)) (-1950 (($ $ $ (-999)) NIL (|has| |#1| (-157))) ((|#1| $ $) 129 (|has| |#1| (-157)))) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-3156 (($ $) 57)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-2052 (($ $ $) 105)) (-4152 (($ $ $) NIL (|has| |#1| (-514)))) (-1541 (((-2 (|:| -2977 |#1|) (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-514)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2071 (($ $) 134 (|has| |#1| (-426))) (($ $ (-999)) NIL (|has| |#1| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#1| (-838)))) (-2671 (($ $ |#1| (-708) $) 46)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-999) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-999) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3445 (((-792) $ (-792)) 118)) (-3714 (((-708) $ $) NIL (|has| |#1| (-514)))) (-2782 (((-108) $) 32)) (-2112 (((-708) $) NIL)) (-3004 (((-3 $ "failed") $) NIL (|has| |#1| (-1061)))) (-4073 (($ (-1081 |#1|) (-999)) 50) (($ (-1081 $) (-999)) 66)) (-2073 (($ $ (-708)) 34)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-708)) 64) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ (-999)) NIL) (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 122)) (-2925 (((-708) $) NIL) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3861 (($ (-1 (-708) (-708)) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-3624 (((-1081 |#1|) $) NIL)) (-3145 (((-3 (-999) "failed") $) NIL)) (-3128 (($ $) NIL)) (-3138 ((|#1| $) 53)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2385 (((-1068) $) NIL)) (-3114 (((-2 (|:| -1353 $) (|:| -3421 $)) $ (-708)) 41)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-999)) (|:| -1400 (-708))) "failed") $) NIL)) (-1858 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3802 (($) NIL (|has| |#1| (-1061)) CONST)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) 33)) (-3118 ((|#1| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 80 (|has| |#1| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) 136 (|has| |#1| (-426)))) (-2600 (($ $ (-708) |#1| $) 100)) (-3729 (((-393 (-1081 $)) (-1081 $)) 78 (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) 77 (|has| |#1| (-838)))) (-1916 (((-393 $) $) 85 (|has| |#1| (-838)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-2232 (((-3 $ "failed") $ |#1|) 132 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 101 (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-999) |#1|) NIL) (($ $ (-588 (-999)) (-588 |#1|)) NIL) (($ $ (-999) $) NIL) (($ $ (-588 (-999)) (-588 $)) NIL)) (-3730 (((-708) $) NIL (|has| |#1| (-338)))) (-2545 ((|#1| $ |#1|) 120) (($ $ $) 121) (((-382 $) (-382 $) (-382 $)) NIL (|has| |#1| (-514))) ((|#1| (-382 $) |#1|) NIL (|has| |#1| (-338))) (((-382 $) $ (-382 $)) NIL (|has| |#1| (-514)))) (-4158 (((-3 $ "failed") $ (-708)) 37)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 139 (|has| |#1| (-338)))) (-2769 (($ $ (-999)) NIL (|has| |#1| (-157))) ((|#1| $) 125 (|has| |#1| (-157)))) (-2157 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-2793 (((-708) $) 55) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| (-999) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-999) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-999) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2255 ((|#1| $) 131 (|has| |#1| (-426))) (($ $ (-999)) NIL (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-3097 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514))) (((-3 (-382 $) "failed") (-382 $) $) NIL (|has| |#1| (-514)))) (-2190 (((-792) $) 119) (($ (-522)) NIL) (($ |#1|) 54) (($ (-999)) NIL) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-708)) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) 28 (|has| |#1| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3510 (($ $ (-850)) 15) (($ $ (-708)) 16)) (-3566 (($) 17 T CONST)) (-3577 (($) 18 T CONST)) (-2213 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) 97)) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1620 (($ $ |#1|) 140 (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 67)) (** (($ $ (-850)) 14) (($ $ (-708)) 12)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 27) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 103) (($ $ |#1|) NIL)))
-(((-1081 |#1|) (-13 (-1142 |#1|) (-10 -8 (-15 -3445 ((-792) $ (-792))) (-15 -2600 ($ $ (-708) |#1| $)))) (-971)) (T -1081))
-((-3445 (*1 *2 *1 *2) (-12 (-5 *2 (-792)) (-5 *1 (-1081 *3)) (-4 *3 (-971)))) (-2600 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1081 *3)) (-4 *3 (-971)))))
-(-13 (-1142 |#1|) (-10 -8 (-15 -3445 ((-792) $ (-792))) (-15 -2600 ($ $ (-708) |#1| $))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4090 (((-588 (-999)) $) NIL)) (-1611 (((-1085) $) 11)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-2789 (($ $ (-382 (-522))) NIL) (($ $ (-382 (-522)) (-382 (-522))) NIL)) (-2258 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) NIL)) (-2908 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL (|has| |#1| (-338)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1929 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-2884 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2773 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) NIL)) (-2930 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-1076 |#1| |#2| |#3|) "failed") $) 32) (((-3 (-1083 |#1| |#2| |#3|) "failed") $) 35)) (-1484 (((-1076 |#1| |#2| |#3|) $) NIL) (((-1083 |#1| |#2| |#3|) $) NIL)) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3987 (((-382 (-522)) $) 55)) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-3079 (($ (-382 (-522)) (-1076 |#1| |#2| |#3|)) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2813 (((-108) $) NIL (|has| |#1| (-338)))) (-3390 (((-108) $) NIL)) (-2838 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-382 (-522)) $) NIL) (((-382 (-522)) $ (-382 (-522))) NIL)) (-2782 (((-108) $) NIL)) (-1504 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2073 (($ $ (-850)) NIL) (($ $ (-382 (-522))) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-382 (-522))) 19) (($ $ (-999) (-382 (-522))) NIL) (($ $ (-588 (-999)) (-588 (-382 (-522)))) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-1254 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2440 (((-1076 |#1| |#2| |#3|) $) 40)) (-4020 (((-3 (-1076 |#1| |#2| |#3|) "failed") $) NIL)) (-3068 (((-1076 |#1| |#2| |#3|) $) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL (|has| |#1| (-338)))) (-1858 (($ $) 38 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) NIL (-3708 (-12 (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 39 (|has| |#1| (-37 (-382 (-522)))))) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3719 (($ $ (-382 (-522))) NIL)) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3266 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-3730 (((-708) $) NIL (|has| |#1| (-338)))) (-2545 ((|#1| $ (-382 (-522))) NIL) (($ $ $) NIL (|has| (-382 (-522)) (-1026)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 36 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $ (-1162 |#2|)) 37)) (-2793 (((-382 (-522)) $) NIL)) (-1738 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) NIL)) (-2190 (((-792) $) 58) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ (-1076 |#1| |#2| |#3|)) 29) (($ (-1083 |#1| |#2| |#3|)) 30) (($ (-1162 |#2|)) 25) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514)))) (-3243 ((|#1| $ (-382 (-522))) NIL)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-1893 ((|#1| $) 12)) (-1759 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1745 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-382 (-522))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3566 (($) 21 T CONST)) (-3577 (($) 16 T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 23)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
-(((-1082 |#1| |#2| |#3|) (-13 (-1149 |#1| (-1076 |#1| |#2| |#3|)) (-962 (-1083 |#1| |#2| |#3|)) (-10 -8 (-15 -2190 ($ (-1162 |#2|))) (-15 -2157 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -1082))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1082 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1082 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-1858 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1082 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
-(-13 (-1149 |#1| (-1076 |#1| |#2| |#3|)) (-962 (-1083 |#1| |#2| |#3|)) (-10 -8 (-15 -2190 ($ (-1162 |#2|))) (-15 -2157 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 125)) (-4090 (((-588 (-999)) $) NIL)) (-1611 (((-1085) $) 116)) (-2549 (((-1139 |#2| |#1|) $ (-708)) 63)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-2789 (($ $ (-708)) 79) (($ $ (-708) (-708)) 76)) (-2258 (((-1066 (-2 (|:| |k| (-708)) (|:| |c| |#1|))) $) 102)) (-2908 (($ $) 169 (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) 145 (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1929 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2884 (($ $) 165 (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) 141 (|has| |#1| (-37 (-382 (-522)))))) (-2773 (($ (-1066 (-2 (|:| |k| (-708)) (|:| |c| |#1|)))) 115) (($ (-1066 |#1|)) 110)) (-2930 (($ $) 173 (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) 149 (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) NIL T CONST)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) 23)) (-3546 (($ $) 26)) (-2199 (((-881 |#1|) $ (-708)) 75) (((-881 |#1|) $ (-708) (-708)) 77)) (-3390 (((-108) $) 120)) (-2838 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-708) $) 122) (((-708) $ (-708)) 124)) (-2782 (((-108) $) NIL)) (-1504 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2073 (($ $ (-850)) NIL)) (-3950 (($ (-1 |#1| (-522)) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-708)) 13) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-1254 (($ $) 131 (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-1858 (($ $) 129 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) NIL (-3708 (-12 (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 130 (|has| |#1| (-37 (-382 (-522)))))) (-4151 (((-1032) $) NIL)) (-3719 (($ $ (-708)) 15)) (-2232 (((-3 $ "failed") $ $) 24 (|has| |#1| (-514)))) (-3266 (($ $) 133 (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-708)))))) (-2545 ((|#1| $ (-708)) 119) (($ $ $) 128 (|has| (-708) (-1026)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $) 27 (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $ (-1162 |#2|)) 29)) (-2793 (((-708) $) NIL)) (-1738 (($ $) 175 (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) 151 (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) 171 (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) 147 (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) 167 (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) 143 (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) NIL)) (-2190 (((-792) $) 201) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514))) (($ |#1|) 126 (|has| |#1| (-157))) (($ (-1139 |#2| |#1|)) 51) (($ (-1162 |#2|)) 32)) (-3916 (((-1066 |#1|) $) 98)) (-3243 ((|#1| $ (-708)) 118)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-1893 ((|#1| $) 54)) (-1759 (($ $) 181 (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) 157 (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1745 (($ $) 177 (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) 153 (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) 185 (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) 161 (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-708)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-708)))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) 187 (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) 163 (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) 183 (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) 159 (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) 179 (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) 155 (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 17 T CONST)) (-3577 (($) 19 T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) 194)) (-1602 (($ $ $) 31)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ |#1|) 198 (|has| |#1| (-338))) (($ $ $) 134 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 137 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 132) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
-(((-1083 |#1| |#2| |#3|) (-13 (-1157 |#1|) (-10 -8 (-15 -2190 ($ (-1139 |#2| |#1|))) (-15 -2549 ((-1139 |#2| |#1|) $ (-708))) (-15 -2190 ($ (-1162 |#2|))) (-15 -2157 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -1083))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1139 *4 *3)) (-4 *3 (-971)) (-14 *4 (-1085)) (-14 *5 *3) (-5 *1 (-1083 *3 *4 *5)))) (-2549 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1139 *5 *4)) (-5 *1 (-1083 *4 *5 *6)) (-4 *4 (-971)) (-14 *5 (-1085)) (-14 *6 *4))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1083 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1083 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-1858 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1083 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
-(-13 (-1157 |#1|) (-10 -8 (-15 -2190 ($ (-1139 |#2| |#1|))) (-15 -2549 ((-1139 |#2| |#1|) $ (-708))) (-15 -2190 ($ (-1162 |#2|))) (-15 -2157 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|)))
-((-2190 (((-792) $) 22) (($ (-1085)) 24)) (-3708 (($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 35)) (-3695 (($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 28) (($ $) 29)) (-3179 (($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 30)) (-3169 (($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 32)) (-3159 (($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 31)) (-3150 (($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 33)) (-3087 (($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 36)) (-12 (($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 34)))
-(((-1084) (-13 (-562 (-792)) (-10 -8 (-15 -2190 ($ (-1085))) (-15 -3179 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3159 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3169 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3150 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3708 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3087 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3695 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3695 ($ $))))) (T -1084))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1084)))) (-3179 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3159 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3169 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3150 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3708 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3087 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3695 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3695 (*1 *1 *1) (-5 *1 (-1084))))
-(-13 (-562 (-792)) (-10 -8 (-15 -2190 ($ (-1085))) (-15 -3179 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3159 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3169 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3150 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3708 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3087 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3695 ($ (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3695 ($ $))))
-((-1416 (((-108) $ $) NIL)) (-3929 (($ $ (-588 (-792))) 58)) (-1237 (($ $ (-588 (-792))) 56)) (-1507 (((-1068) $) 82)) (-2526 (((-2 (|:| -2337 (-588 (-792))) (|:| -1210 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -4123 (-588 (-792))) (|:| |args| (-588 (-792)))) $) 85)) (-3106 (((-108) $) 21)) (-1581 (($ $ (-588 (-588 (-792)))) 54) (($ $ (-2 (|:| -2337 (-588 (-792))) (|:| -1210 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -4123 (-588 (-792))) (|:| |args| (-588 (-792))))) 80)) (-3175 (($) 123 T CONST)) (-2787 (((-1171)) 104)) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 65) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 71)) (-1811 (($) 93) (($ $) 99)) (-2888 (($ $) 81)) (-2814 (($ $ $) NIL)) (-2446 (($ $ $) NIL)) (-1580 (((-588 $) $) 105)) (-2385 (((-1068) $) 88)) (-4151 (((-1032) $) NIL)) (-2545 (($ $ (-588 (-792))) 57)) (-1431 (((-498) $) 45) (((-1085) $) 46) (((-821 (-522)) $) 75) (((-821 (-354)) $) 73)) (-2190 (((-792) $) 52) (($ (-1068)) 47)) (-2320 (($ $ (-588 (-792))) 59)) (-4149 (((-1068) $) 33) (((-1068) $ (-108)) 34) (((-1171) (-759) $) 35) (((-1171) (-759) $ (-108)) 36)) (-1574 (((-108) $ $) NIL)) (-1558 (((-108) $ $) NIL)) (-1531 (((-108) $ $) 48)) (-1566 (((-108) $ $) NIL)) (-1549 (((-108) $ $) 49)))
-(((-1085) (-13 (-784) (-563 (-498)) (-765) (-563 (-1085)) (-563 (-821 (-522))) (-563 (-821 (-354))) (-815 (-522)) (-815 (-354)) (-10 -8 (-15 -1811 ($)) (-15 -1811 ($ $)) (-15 -2787 ((-1171))) (-15 -2190 ($ (-1068))) (-15 -2888 ($ $)) (-15 -3106 ((-108) $)) (-15 -2526 ((-2 (|:| -2337 (-588 (-792))) (|:| -1210 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -4123 (-588 (-792))) (|:| |args| (-588 (-792)))) $)) (-15 -1581 ($ $ (-588 (-588 (-792))))) (-15 -1581 ($ $ (-2 (|:| -2337 (-588 (-792))) (|:| -1210 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -4123 (-588 (-792))) (|:| |args| (-588 (-792)))))) (-15 -1237 ($ $ (-588 (-792)))) (-15 -3929 ($ $ (-588 (-792)))) (-15 -2320 ($ $ (-588 (-792)))) (-15 -2545 ($ $ (-588 (-792)))) (-15 -1507 ((-1068) $)) (-15 -1580 ((-588 $) $)) (-15 -3175 ($) -2677)))) (T -1085))
-((-1811 (*1 *1) (-5 *1 (-1085))) (-1811 (*1 *1 *1) (-5 *1 (-1085))) (-2787 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1085)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1085)))) (-2888 (*1 *1 *1) (-5 *1 (-1085))) (-3106 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1085)))) (-2526 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2337 (-588 (-792))) (|:| -1210 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -4123 (-588 (-792))) (|:| |args| (-588 (-792))))) (-5 *1 (-1085)))) (-1581 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-588 (-792)))) (-5 *1 (-1085)))) (-1581 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -2337 (-588 (-792))) (|:| -1210 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -4123 (-588 (-792))) (|:| |args| (-588 (-792))))) (-5 *1 (-1085)))) (-1237 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))) (-3929 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))) (-2320 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))) (-2545 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))) (-1507 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1085)))) (-1580 (*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1085)))) (-3175 (*1 *1) (-5 *1 (-1085))))
-(-13 (-784) (-563 (-498)) (-765) (-563 (-1085)) (-563 (-821 (-522))) (-563 (-821 (-354))) (-815 (-522)) (-815 (-354)) (-10 -8 (-15 -1811 ($)) (-15 -1811 ($ $)) (-15 -2787 ((-1171))) (-15 -2190 ($ (-1068))) (-15 -2888 ($ $)) (-15 -3106 ((-108) $)) (-15 -2526 ((-2 (|:| -2337 (-588 (-792))) (|:| -1210 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -4123 (-588 (-792))) (|:| |args| (-588 (-792)))) $)) (-15 -1581 ($ $ (-588 (-588 (-792))))) (-15 -1581 ($ $ (-2 (|:| -2337 (-588 (-792))) (|:| -1210 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -4123 (-588 (-792))) (|:| |args| (-588 (-792)))))) (-15 -1237 ($ $ (-588 (-792)))) (-15 -3929 ($ $ (-588 (-792)))) (-15 -2320 ($ $ (-588 (-792)))) (-15 -2545 ($ $ (-588 (-792)))) (-15 -1507 ((-1068) $)) (-15 -1580 ((-588 $) $)) (-15 -3175 ($) -2677)))
-((-4070 (((-1166 |#1|) |#1| (-850)) 16) (((-1166 |#1|) (-588 |#1|)) 20)))
-(((-1086 |#1|) (-10 -7 (-15 -4070 ((-1166 |#1|) (-588 |#1|))) (-15 -4070 ((-1166 |#1|) |#1| (-850)))) (-971)) (T -1086))
-((-4070 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-5 *2 (-1166 *3)) (-5 *1 (-1086 *3)) (-4 *3 (-971)))) (-4070 (*1 *2 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-971)) (-5 *2 (-1166 *4)) (-5 *1 (-1086 *4)))))
-(-10 -7 (-15 -4070 ((-1166 |#1|) (-588 |#1|))) (-15 -4070 ((-1166 |#1|) |#1| (-850))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1484 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2071 (($ $) NIL (|has| |#1| (-426)))) (-2671 (($ $ |#1| (-898) $) NIL)) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-898)) NIL)) (-2925 (((-898) $) NIL)) (-3861 (($ (-1 (-898) (-898)) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) NIL)) (-3118 ((|#1| $) NIL)) (-2600 (($ $ (-898) |#1| $) NIL (-12 (|has| (-898) (-124)) (|has| |#1| (-514))))) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-2793 (((-898) $) NIL)) (-2255 ((|#1| $) NIL (|has| |#1| (-426)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL (|has| |#1| (-514))) (($ |#1|) NIL) (($ (-382 (-522))) NIL (-3708 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ (-898)) NIL)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 9 T CONST)) (-3577 (($) 14 T CONST)) (-1531 (((-108) $ $) 16)) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 19)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) 13) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
-(((-1087 |#1|) (-13 (-301 |#1| (-898)) (-10 -8 (IF (|has| |#1| (-514)) (IF (|has| (-898) (-124)) (-15 -2600 ($ $ (-898) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4236)) (-6 -4236) |%noBranch|))) (-971)) (T -1087))
-((-2600 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-898)) (-4 *2 (-124)) (-5 *1 (-1087 *3)) (-4 *3 (-514)) (-4 *3 (-971)))))
-(-13 (-301 |#1| (-898)) (-10 -8 (IF (|has| |#1| (-514)) (IF (|has| (-898) (-124)) (-15 -2600 ($ $ (-898) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4236)) (-6 -4236) |%noBranch|)))
-((-1429 (((-1089) (-1085) $) 24)) (-2280 (($) 28)) (-1218 (((-3 (|:| |fst| (-409)) (|:| -1367 "void")) (-1085) $) 21)) (-4167 (((-1171) (-1085) (-3 (|:| |fst| (-409)) (|:| -1367 "void")) $) 40) (((-1171) (-1085) (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) 41) (((-1171) (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) 42)) (-3528 (((-1171) (-1085)) 57)) (-1900 (((-1171) (-1085) $) 54) (((-1171) (-1085)) 55) (((-1171)) 56)) (-3009 (((-1171) (-1085)) 36)) (-3615 (((-1085)) 35)) (-3775 (($) 33)) (-3425 (((-412) (-1085) (-412) (-1085) $) 44) (((-412) (-588 (-1085)) (-412) (-1085) $) 48) (((-412) (-1085) (-412)) 45) (((-412) (-1085) (-412) (-1085)) 49)) (-2994 (((-1085)) 34)) (-2190 (((-792) $) 27)) (-2515 (((-1171)) 29) (((-1171) (-1085)) 32)) (-3033 (((-588 (-1085)) (-1085) $) 23)) (-1512 (((-1171) (-1085) (-588 (-1085)) $) 37) (((-1171) (-1085) (-588 (-1085))) 38) (((-1171) (-588 (-1085))) 39)))
-(((-1088) (-13 (-562 (-792)) (-10 -8 (-15 -2280 ($)) (-15 -2515 ((-1171))) (-15 -2515 ((-1171) (-1085))) (-15 -3425 ((-412) (-1085) (-412) (-1085) $)) (-15 -3425 ((-412) (-588 (-1085)) (-412) (-1085) $)) (-15 -3425 ((-412) (-1085) (-412))) (-15 -3425 ((-412) (-1085) (-412) (-1085))) (-15 -3009 ((-1171) (-1085))) (-15 -2994 ((-1085))) (-15 -3615 ((-1085))) (-15 -1512 ((-1171) (-1085) (-588 (-1085)) $)) (-15 -1512 ((-1171) (-1085) (-588 (-1085)))) (-15 -1512 ((-1171) (-588 (-1085)))) (-15 -4167 ((-1171) (-1085) (-3 (|:| |fst| (-409)) (|:| -1367 "void")) $)) (-15 -4167 ((-1171) (-1085) (-3 (|:| |fst| (-409)) (|:| -1367 "void")))) (-15 -4167 ((-1171) (-3 (|:| |fst| (-409)) (|:| -1367 "void")))) (-15 -1900 ((-1171) (-1085) $)) (-15 -1900 ((-1171) (-1085))) (-15 -1900 ((-1171))) (-15 -3528 ((-1171) (-1085))) (-15 -3775 ($)) (-15 -1218 ((-3 (|:| |fst| (-409)) (|:| -1367 "void")) (-1085) $)) (-15 -3033 ((-588 (-1085)) (-1085) $)) (-15 -1429 ((-1089) (-1085) $))))) (T -1088))
-((-2280 (*1 *1) (-5 *1 (-1088))) (-2515 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1088)))) (-2515 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-3425 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1088)))) (-3425 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-412)) (-5 *3 (-588 (-1085))) (-5 *4 (-1085)) (-5 *1 (-1088)))) (-3425 (*1 *2 *3 *2) (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1088)))) (-3425 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1088)))) (-3009 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-2994 (*1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1088)))) (-3615 (*1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1088)))) (-1512 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-1512 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-1512 (*1 *2 *3) (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-4167 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1085)) (-5 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-4167 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-4167 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-1900 (*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-1900 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-1900 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1088)))) (-3528 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-3775 (*1 *1) (-5 *1 (-1088))) (-1218 (*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-5 *1 (-1088)))) (-3033 (*1 *2 *3 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1088)) (-5 *3 (-1085)))) (-1429 (*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-1089)) (-5 *1 (-1088)))))
-(-13 (-562 (-792)) (-10 -8 (-15 -2280 ($)) (-15 -2515 ((-1171))) (-15 -2515 ((-1171) (-1085))) (-15 -3425 ((-412) (-1085) (-412) (-1085) $)) (-15 -3425 ((-412) (-588 (-1085)) (-412) (-1085) $)) (-15 -3425 ((-412) (-1085) (-412))) (-15 -3425 ((-412) (-1085) (-412) (-1085))) (-15 -3009 ((-1171) (-1085))) (-15 -2994 ((-1085))) (-15 -3615 ((-1085))) (-15 -1512 ((-1171) (-1085) (-588 (-1085)) $)) (-15 -1512 ((-1171) (-1085) (-588 (-1085)))) (-15 -1512 ((-1171) (-588 (-1085)))) (-15 -4167 ((-1171) (-1085) (-3 (|:| |fst| (-409)) (|:| -1367 "void")) $)) (-15 -4167 ((-1171) (-1085) (-3 (|:| |fst| (-409)) (|:| -1367 "void")))) (-15 -4167 ((-1171) (-3 (|:| |fst| (-409)) (|:| -1367 "void")))) (-15 -1900 ((-1171) (-1085) $)) (-15 -1900 ((-1171) (-1085))) (-15 -1900 ((-1171))) (-15 -3528 ((-1171) (-1085))) (-15 -3775 ($)) (-15 -1218 ((-3 (|:| |fst| (-409)) (|:| -1367 "void")) (-1085) $)) (-15 -3033 ((-588 (-1085)) (-1085) $)) (-15 -1429 ((-1089) (-1085) $))))
-((-2263 (((-588 (-588 (-3 (|:| -2888 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522))))))))) $) 57)) (-4053 (((-588 (-3 (|:| -2888 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522)))))))) (-409) $) 40)) (-1954 (($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-412))))) 15)) (-3528 (((-1171) $) 65)) (-2713 (((-588 (-1085)) $) 20)) (-2833 (((-1018) $) 53)) (-2698 (((-412) (-1085) $) 27)) (-1559 (((-588 (-1085)) $) 30)) (-3775 (($) 17)) (-3425 (((-412) (-588 (-1085)) (-412) $) 25) (((-412) (-1085) (-412) $) 24)) (-2190 (((-792) $) 9) (((-1094 (-1085) (-412)) $) 11)))
-(((-1089) (-13 (-562 (-792)) (-10 -8 (-15 -2190 ((-1094 (-1085) (-412)) $)) (-15 -3775 ($)) (-15 -3425 ((-412) (-588 (-1085)) (-412) $)) (-15 -3425 ((-412) (-1085) (-412) $)) (-15 -2698 ((-412) (-1085) $)) (-15 -2713 ((-588 (-1085)) $)) (-15 -4053 ((-588 (-3 (|:| -2888 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522)))))))) (-409) $)) (-15 -1559 ((-588 (-1085)) $)) (-15 -2263 ((-588 (-588 (-3 (|:| -2888 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522))))))))) $)) (-15 -2833 ((-1018) $)) (-15 -3528 ((-1171) $)) (-15 -1954 ($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-412))))))))) (T -1089))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-1094 (-1085) (-412))) (-5 *1 (-1089)))) (-3775 (*1 *1) (-5 *1 (-1089))) (-3425 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-412)) (-5 *3 (-588 (-1085))) (-5 *1 (-1089)))) (-3425 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1089)))) (-2698 (*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-412)) (-5 *1 (-1089)))) (-2713 (*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1089)))) (-4053 (*1 *2 *3 *1) (-12 (-5 *3 (-409)) (-5 *2 (-588 (-3 (|:| -2888 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522))))))))) (-5 *1 (-1089)))) (-1559 (*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1089)))) (-2263 (*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-3 (|:| -2888 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522)))))))))) (-5 *1 (-1089)))) (-2833 (*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-1089)))) (-3528 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1089)))) (-1954 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-412))))) (-5 *1 (-1089)))))
-(-13 (-562 (-792)) (-10 -8 (-15 -2190 ((-1094 (-1085) (-412)) $)) (-15 -3775 ($)) (-15 -3425 ((-412) (-588 (-1085)) (-412) $)) (-15 -3425 ((-412) (-1085) (-412) $)) (-15 -2698 ((-412) (-1085) $)) (-15 -2713 ((-588 (-1085)) $)) (-15 -4053 ((-588 (-3 (|:| -2888 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522)))))))) (-409) $)) (-15 -1559 ((-588 (-1085)) $)) (-15 -2263 ((-588 (-588 (-3 (|:| -2888 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522))))))))) $)) (-15 -2833 ((-1018) $)) (-15 -3528 ((-1171) $)) (-15 -1954 ($ (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-412))))))))
-((-1416 (((-108) $ $) NIL)) (-3939 (((-108) $) 42)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2494 (((-3 (-522) (-202) (-1085) (-1068) $) $) 50)) (-3323 (((-588 $) $) 55)) (-1431 (((-1018) $) 20) (($ (-1018)) 21)) (-4023 (((-108) $) 52)) (-2190 (((-792) $) NIL) (($ (-522)) 23) (((-522) $) 25) (($ (-202)) 27) (((-202) $) 29) (($ (-1085)) 31) (((-1085) $) 33) (($ (-1068)) 35) (((-1068) $) 37)) (-2176 (((-108) $ (|[\|\|]| (-522))) 10) (((-108) $ (|[\|\|]| (-202))) 13) (((-108) $ (|[\|\|]| (-1085))) 19) (((-108) $ (|[\|\|]| (-1068))) 16)) (-3573 (($ (-1085) (-588 $)) 39) (($ $ (-588 $)) 40)) (-2442 (((-522) $) 24) (((-202) $) 28) (((-1085) $) 32) (((-1068) $) 36)) (-1531 (((-108) $ $) 7)))
-(((-1090) (-13 (-1161) (-1014) (-10 -8 (-15 -1431 ((-1018) $)) (-15 -1431 ($ (-1018))) (-15 -2190 ($ (-522))) (-15 -2190 ((-522) $)) (-15 -2442 ((-522) $)) (-15 -2190 ($ (-202))) (-15 -2190 ((-202) $)) (-15 -2442 ((-202) $)) (-15 -2190 ($ (-1085))) (-15 -2190 ((-1085) $)) (-15 -2442 ((-1085) $)) (-15 -2190 ($ (-1068))) (-15 -2190 ((-1068) $)) (-15 -2442 ((-1068) $)) (-15 -3573 ($ (-1085) (-588 $))) (-15 -3573 ($ $ (-588 $))) (-15 -3939 ((-108) $)) (-15 -2494 ((-3 (-522) (-202) (-1085) (-1068) $) $)) (-15 -3323 ((-588 $) $)) (-15 -4023 ((-108) $)) (-15 -2176 ((-108) $ (|[\|\|]| (-522)))) (-15 -2176 ((-108) $ (|[\|\|]| (-202)))) (-15 -2176 ((-108) $ (|[\|\|]| (-1085)))) (-15 -2176 ((-108) $ (|[\|\|]| (-1068))))))) (T -1090))
-((-1431 (*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-1090)))) (-1431 (*1 *1 *2) (-12 (-5 *2 (-1018)) (-5 *1 (-1090)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-1090)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1090)))) (-2442 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1090)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-1090)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-202)) (-5 *1 (-1090)))) (-2442 (*1 *2 *1) (-12 (-5 *2 (-202)) (-5 *1 (-1090)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1090)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1090)))) (-2442 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1090)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1090)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1090)))) (-2442 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1090)))) (-3573 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-1090))) (-5 *1 (-1090)))) (-3573 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-1090))) (-5 *1 (-1090)))) (-3939 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1090)))) (-2494 (*1 *2 *1) (-12 (-5 *2 (-3 (-522) (-202) (-1085) (-1068) (-1090))) (-5 *1 (-1090)))) (-3323 (*1 *2 *1) (-12 (-5 *2 (-588 (-1090))) (-5 *1 (-1090)))) (-4023 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1090)))) (-2176 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-522))) (-5 *2 (-108)) (-5 *1 (-1090)))) (-2176 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-202))) (-5 *2 (-108)) (-5 *1 (-1090)))) (-2176 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1085))) (-5 *2 (-108)) (-5 *1 (-1090)))) (-2176 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1068))) (-5 *2 (-108)) (-5 *1 (-1090)))))
-(-13 (-1161) (-1014) (-10 -8 (-15 -1431 ((-1018) $)) (-15 -1431 ($ (-1018))) (-15 -2190 ($ (-522))) (-15 -2190 ((-522) $)) (-15 -2442 ((-522) $)) (-15 -2190 ($ (-202))) (-15 -2190 ((-202) $)) (-15 -2442 ((-202) $)) (-15 -2190 ($ (-1085))) (-15 -2190 ((-1085) $)) (-15 -2442 ((-1085) $)) (-15 -2190 ($ (-1068))) (-15 -2190 ((-1068) $)) (-15 -2442 ((-1068) $)) (-15 -3573 ($ (-1085) (-588 $))) (-15 -3573 ($ $ (-588 $))) (-15 -3939 ((-108) $)) (-15 -2494 ((-3 (-522) (-202) (-1085) (-1068) $) $)) (-15 -3323 ((-588 $) $)) (-15 -4023 ((-108) $)) (-15 -2176 ((-108) $ (|[\|\|]| (-522)))) (-15 -2176 ((-108) $ (|[\|\|]| (-202)))) (-15 -2176 ((-108) $ (|[\|\|]| (-1085)))) (-15 -2176 ((-108) $ (|[\|\|]| (-1068))))))
-((-2711 (((-588 (-588 (-881 |#1|))) (-588 (-382 (-881 |#1|))) (-588 (-1085))) 55)) (-3426 (((-588 (-270 (-382 (-881 |#1|)))) (-270 (-382 (-881 |#1|)))) 67) (((-588 (-270 (-382 (-881 |#1|)))) (-382 (-881 |#1|))) 63) (((-588 (-270 (-382 (-881 |#1|)))) (-270 (-382 (-881 |#1|))) (-1085)) 68) (((-588 (-270 (-382 (-881 |#1|)))) (-382 (-881 |#1|)) (-1085)) 62) (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-270 (-382 (-881 |#1|))))) 92) (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-382 (-881 |#1|)))) 91) (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-270 (-382 (-881 |#1|)))) (-588 (-1085))) 93) (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-382 (-881 |#1|))) (-588 (-1085))) 90)))
-(((-1091 |#1|) (-10 -7 (-15 -3426 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -3426 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-270 (-382 (-881 |#1|)))) (-588 (-1085)))) (-15 -3426 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-382 (-881 |#1|))))) (-15 -3426 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-270 (-382 (-881 |#1|)))))) (-15 -3426 ((-588 (-270 (-382 (-881 |#1|)))) (-382 (-881 |#1|)) (-1085))) (-15 -3426 ((-588 (-270 (-382 (-881 |#1|)))) (-270 (-382 (-881 |#1|))) (-1085))) (-15 -3426 ((-588 (-270 (-382 (-881 |#1|)))) (-382 (-881 |#1|)))) (-15 -3426 ((-588 (-270 (-382 (-881 |#1|)))) (-270 (-382 (-881 |#1|))))) (-15 -2711 ((-588 (-588 (-881 |#1|))) (-588 (-382 (-881 |#1|))) (-588 (-1085))))) (-514)) (T -1091))
-((-2711 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085))) (-4 *5 (-514)) (-5 *2 (-588 (-588 (-881 *5)))) (-5 *1 (-1091 *5)))) (-3426 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 (-270 (-382 (-881 *4))))) (-5 *1 (-1091 *4)) (-5 *3 (-270 (-382 (-881 *4)))))) (-3426 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 (-270 (-382 (-881 *4))))) (-5 *1 (-1091 *4)) (-5 *3 (-382 (-881 *4))))) (-3426 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-514)) (-5 *2 (-588 (-270 (-382 (-881 *5))))) (-5 *1 (-1091 *5)) (-5 *3 (-270 (-382 (-881 *5)))))) (-3426 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-514)) (-5 *2 (-588 (-270 (-382 (-881 *5))))) (-5 *1 (-1091 *5)) (-5 *3 (-382 (-881 *5))))) (-3426 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-1091 *4)) (-5 *3 (-588 (-270 (-382 (-881 *4))))))) (-3426 (*1 *2 *3) (-12 (-5 *3 (-588 (-382 (-881 *4)))) (-4 *4 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-1091 *4)))) (-3426 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-1085))) (-4 *5 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-1091 *5)) (-5 *3 (-588 (-270 (-382 (-881 *5))))))) (-3426 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085))) (-4 *5 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-1091 *5)))))
-(-10 -7 (-15 -3426 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -3426 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-270 (-382 (-881 |#1|)))) (-588 (-1085)))) (-15 -3426 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-382 (-881 |#1|))))) (-15 -3426 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-270 (-382 (-881 |#1|)))))) (-15 -3426 ((-588 (-270 (-382 (-881 |#1|)))) (-382 (-881 |#1|)) (-1085))) (-15 -3426 ((-588 (-270 (-382 (-881 |#1|)))) (-270 (-382 (-881 |#1|))) (-1085))) (-15 -3426 ((-588 (-270 (-382 (-881 |#1|)))) (-382 (-881 |#1|)))) (-15 -3426 ((-588 (-270 (-382 (-881 |#1|)))) (-270 (-382 (-881 |#1|))))) (-15 -2711 ((-588 (-588 (-881 |#1|))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))))
-((-4000 (((-588 (-588 |#1|)) (-588 (-588 |#1|)) (-588 (-588 (-588 |#1|)))) 38)) (-1206 (((-588 (-588 (-588 |#1|))) (-588 (-588 |#1|))) 24)) (-1530 (((-1093 (-588 |#1|)) (-588 |#1|)) 34)) (-3224 (((-588 (-588 |#1|)) (-588 |#1|)) 30)) (-3923 (((-2 (|:| |f1| (-588 |#1|)) (|:| |f2| (-588 (-588 (-588 |#1|)))) (|:| |f3| (-588 (-588 |#1|))) (|:| |f4| (-588 (-588 (-588 |#1|))))) (-588 (-588 (-588 |#1|)))) 37)) (-2278 (((-2 (|:| |f1| (-588 |#1|)) (|:| |f2| (-588 (-588 (-588 |#1|)))) (|:| |f3| (-588 (-588 |#1|))) (|:| |f4| (-588 (-588 (-588 |#1|))))) (-588 |#1|) (-588 (-588 (-588 |#1|))) (-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))) (-588 (-588 (-588 |#1|))) (-588 (-588 (-588 |#1|)))) 36)) (-3309 (((-588 (-588 |#1|)) (-588 (-588 |#1|))) 28)) (-2147 (((-588 |#1|) (-588 |#1|)) 31)) (-2162 (((-588 (-588 (-588 |#1|))) (-588 |#1|) (-588 (-588 (-588 |#1|)))) 18)) (-1519 (((-588 (-588 (-588 |#1|))) (-1 (-108) |#1| |#1|) (-588 |#1|) (-588 (-588 (-588 |#1|)))) 15)) (-3598 (((-2 (|:| |fs| (-108)) (|:| |sd| (-588 |#1|)) (|:| |td| (-588 (-588 |#1|)))) (-1 (-108) |#1| |#1|) (-588 |#1|) (-588 (-588 |#1|))) 13)) (-1976 (((-588 (-588 |#1|)) (-588 (-588 (-588 |#1|)))) 39)) (-1946 (((-588 (-588 |#1|)) (-1093 (-588 |#1|))) 41)))
-(((-1092 |#1|) (-10 -7 (-15 -3598 ((-2 (|:| |fs| (-108)) (|:| |sd| (-588 |#1|)) (|:| |td| (-588 (-588 |#1|)))) (-1 (-108) |#1| |#1|) (-588 |#1|) (-588 (-588 |#1|)))) (-15 -1519 ((-588 (-588 (-588 |#1|))) (-1 (-108) |#1| |#1|) (-588 |#1|) (-588 (-588 (-588 |#1|))))) (-15 -2162 ((-588 (-588 (-588 |#1|))) (-588 |#1|) (-588 (-588 (-588 |#1|))))) (-15 -4000 ((-588 (-588 |#1|)) (-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))))) (-15 -1976 ((-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))))) (-15 -1946 ((-588 (-588 |#1|)) (-1093 (-588 |#1|)))) (-15 -1206 ((-588 (-588 (-588 |#1|))) (-588 (-588 |#1|)))) (-15 -1530 ((-1093 (-588 |#1|)) (-588 |#1|))) (-15 -3309 ((-588 (-588 |#1|)) (-588 (-588 |#1|)))) (-15 -3224 ((-588 (-588 |#1|)) (-588 |#1|))) (-15 -2147 ((-588 |#1|) (-588 |#1|))) (-15 -2278 ((-2 (|:| |f1| (-588 |#1|)) (|:| |f2| (-588 (-588 (-588 |#1|)))) (|:| |f3| (-588 (-588 |#1|))) (|:| |f4| (-588 (-588 (-588 |#1|))))) (-588 |#1|) (-588 (-588 (-588 |#1|))) (-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))) (-588 (-588 (-588 |#1|))) (-588 (-588 (-588 |#1|))))) (-15 -3923 ((-2 (|:| |f1| (-588 |#1|)) (|:| |f2| (-588 (-588 (-588 |#1|)))) (|:| |f3| (-588 (-588 |#1|))) (|:| |f4| (-588 (-588 (-588 |#1|))))) (-588 (-588 (-588 |#1|)))))) (-784)) (T -1092))
-((-3923 (*1 *2 *3) (-12 (-4 *4 (-784)) (-5 *2 (-2 (|:| |f1| (-588 *4)) (|:| |f2| (-588 (-588 (-588 *4)))) (|:| |f3| (-588 (-588 *4))) (|:| |f4| (-588 (-588 (-588 *4)))))) (-5 *1 (-1092 *4)) (-5 *3 (-588 (-588 (-588 *4)))))) (-2278 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-784)) (-5 *3 (-588 *6)) (-5 *5 (-588 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-588 *5)) (|:| |f3| *5) (|:| |f4| (-588 *5)))) (-5 *1 (-1092 *6)) (-5 *4 (-588 *5)))) (-2147 (*1 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-1092 *3)))) (-3224 (*1 *2 *3) (-12 (-4 *4 (-784)) (-5 *2 (-588 (-588 *4))) (-5 *1 (-1092 *4)) (-5 *3 (-588 *4)))) (-3309 (*1 *2 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-784)) (-5 *1 (-1092 *3)))) (-1530 (*1 *2 *3) (-12 (-4 *4 (-784)) (-5 *2 (-1093 (-588 *4))) (-5 *1 (-1092 *4)) (-5 *3 (-588 *4)))) (-1206 (*1 *2 *3) (-12 (-4 *4 (-784)) (-5 *2 (-588 (-588 (-588 *4)))) (-5 *1 (-1092 *4)) (-5 *3 (-588 (-588 *4))))) (-1946 (*1 *2 *3) (-12 (-5 *3 (-1093 (-588 *4))) (-4 *4 (-784)) (-5 *2 (-588 (-588 *4))) (-5 *1 (-1092 *4)))) (-1976 (*1 *2 *3) (-12 (-5 *3 (-588 (-588 (-588 *4)))) (-5 *2 (-588 (-588 *4))) (-5 *1 (-1092 *4)) (-4 *4 (-784)))) (-4000 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-588 (-588 *4)))) (-5 *2 (-588 (-588 *4))) (-4 *4 (-784)) (-5 *1 (-1092 *4)))) (-2162 (*1 *2 *3 *2) (-12 (-5 *2 (-588 (-588 (-588 *4)))) (-5 *3 (-588 *4)) (-4 *4 (-784)) (-5 *1 (-1092 *4)))) (-1519 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-588 (-588 (-588 *5)))) (-5 *3 (-1 (-108) *5 *5)) (-5 *4 (-588 *5)) (-4 *5 (-784)) (-5 *1 (-1092 *5)))) (-3598 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-108) *6 *6)) (-4 *6 (-784)) (-5 *4 (-588 *6)) (-5 *2 (-2 (|:| |fs| (-108)) (|:| |sd| *4) (|:| |td| (-588 *4)))) (-5 *1 (-1092 *6)) (-5 *5 (-588 *4)))))
-(-10 -7 (-15 -3598 ((-2 (|:| |fs| (-108)) (|:| |sd| (-588 |#1|)) (|:| |td| (-588 (-588 |#1|)))) (-1 (-108) |#1| |#1|) (-588 |#1|) (-588 (-588 |#1|)))) (-15 -1519 ((-588 (-588 (-588 |#1|))) (-1 (-108) |#1| |#1|) (-588 |#1|) (-588 (-588 (-588 |#1|))))) (-15 -2162 ((-588 (-588 (-588 |#1|))) (-588 |#1|) (-588 (-588 (-588 |#1|))))) (-15 -4000 ((-588 (-588 |#1|)) (-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))))) (-15 -1976 ((-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))))) (-15 -1946 ((-588 (-588 |#1|)) (-1093 (-588 |#1|)))) (-15 -1206 ((-588 (-588 (-588 |#1|))) (-588 (-588 |#1|)))) (-15 -1530 ((-1093 (-588 |#1|)) (-588 |#1|))) (-15 -3309 ((-588 (-588 |#1|)) (-588 (-588 |#1|)))) (-15 -3224 ((-588 (-588 |#1|)) (-588 |#1|))) (-15 -2147 ((-588 |#1|) (-588 |#1|))) (-15 -2278 ((-2 (|:| |f1| (-588 |#1|)) (|:| |f2| (-588 (-588 (-588 |#1|)))) (|:| |f3| (-588 (-588 |#1|))) (|:| |f4| (-588 (-588 (-588 |#1|))))) (-588 |#1|) (-588 (-588 (-588 |#1|))) (-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))) (-588 (-588 (-588 |#1|))) (-588 (-588 (-588 |#1|))))) (-15 -3923 ((-2 (|:| |f1| (-588 |#1|)) (|:| |f2| (-588 (-588 (-588 |#1|)))) (|:| |f3| (-588 (-588 |#1|))) (|:| |f4| (-588 (-588 (-588 |#1|))))) (-588 (-588 (-588 |#1|))))))
-((-2299 (($ (-588 (-588 |#1|))) 9)) (-3237 (((-588 (-588 |#1|)) $) 10)) (-2190 (((-792) $) 25)))
-(((-1093 |#1|) (-10 -8 (-15 -2299 ($ (-588 (-588 |#1|)))) (-15 -3237 ((-588 (-588 |#1|)) $)) (-15 -2190 ((-792) $))) (-1014)) (T -1093))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-1093 *3)) (-4 *3 (-1014)))) (-3237 (*1 *2 *1) (-12 (-5 *2 (-588 (-588 *3))) (-5 *1 (-1093 *3)) (-4 *3 (-1014)))) (-2299 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-1093 *3)))))
-(-10 -8 (-15 -2299 ($ (-588 (-588 |#1|)))) (-15 -3237 ((-588 (-588 |#1|)) $)) (-15 -2190 ((-792) $)))
-((-1416 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1800 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2679 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#2| $ |#1| |#2|) NIL)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2750 (((-3 |#2| "failed") |#1| $) NIL)) (-3175 (($) NIL T CONST)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-3859 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) NIL)) (-1423 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#2| $ |#1|) NIL)) (-3837 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) NIL)) (-1359 ((|#1| $) NIL (|has| |#1| (-784)))) (-3308 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2014 ((|#1| $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2966 (((-588 |#1|) $) NIL)) (-1231 (((-108) |#1| $) NIL)) (-2116 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-4095 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3604 (((-588 |#1|) $) NIL)) (-1405 (((-108) |#1| $) NIL)) (-4151 (((-1032) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2294 ((|#2| $) NIL (|has| |#1| (-784)))) (-1414 (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL)) (-2602 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1525 (((-588 |#2|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3990 (($) NIL) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-2190 (((-792) $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-2795 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) NIL)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) NIL (-3708 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
+((-2706 (((-1066 |#1|) (-1066 |#1|)) 77)) (-3920 (((-3 (-1066 |#1|) "failed") (-1066 |#1|)) 37)) (-3366 (((-1066 |#1|) (-382 (-522)) (-1066 |#1|)) 117 (|has| |#1| (-37 (-382 (-522)))))) (-4062 (((-1066 |#1|) |#1| (-1066 |#1|)) 121 (|has| |#1| (-338)))) (-3550 (((-1066 |#1|) (-1066 |#1|)) 90)) (-1320 (((-1066 (-522)) (-522)) 57)) (-1422 (((-1066 |#1|) (-1066 (-1066 |#1|))) 108 (|has| |#1| (-37 (-382 (-522)))))) (-2515 (((-1066 |#1|) (-522) (-522) (-1066 |#1|)) 95)) (-2623 (((-1066 |#1|) |#1| (-522)) 45)) (-1727 (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 60)) (-3342 (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 119 (|has| |#1| (-338)))) (-2985 (((-1066 |#1|) |#1| (-1 (-1066 |#1|))) 107 (|has| |#1| (-37 (-382 (-522)))))) (-3029 (((-1066 |#1|) (-1 |#1| (-522)) |#1| (-1 (-1066 |#1|))) 120 (|has| |#1| (-338)))) (-1843 (((-1066 |#1|) (-1066 |#1|)) 89)) (-1962 (((-1066 |#1|) (-1066 |#1|)) 76)) (-2968 (((-1066 |#1|) (-522) (-522) (-1066 |#1|)) 96)) (-2611 (((-1066 |#1|) |#1| (-1066 |#1|)) 105 (|has| |#1| (-37 (-382 (-522)))))) (-2614 (((-1066 (-522)) (-522)) 56)) (-4149 (((-1066 |#1|) |#1|) 59)) (-1815 (((-1066 |#1|) (-1066 |#1|) (-522) (-522)) 92)) (-1985 (((-1066 |#1|) (-1 |#1| (-522)) (-1066 |#1|)) 66)) (-2276 (((-3 (-1066 |#1|) "failed") (-1066 |#1|) (-1066 |#1|)) 35)) (-3143 (((-1066 |#1|) (-1066 |#1|)) 91)) (-2330 (((-1066 |#1|) (-1066 |#1|) |#1|) 71)) (-3760 (((-1066 |#1|) (-1066 |#1|)) 62)) (-2262 (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 72)) (-2217 (((-1066 |#1|) |#1|) 67)) (-3332 (((-1066 |#1|) (-1066 (-1066 |#1|))) 82)) (-1682 (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 36)) (-1672 (((-1066 |#1|) (-1066 |#1|)) 21) (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 23)) (-1661 (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 17)) (* (((-1066 |#1|) (-1066 |#1|) |#1|) 29) (((-1066 |#1|) |#1| (-1066 |#1|)) 26) (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 27)))
+(((-1070 |#1|) (-10 -7 (-15 -1661 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -1672 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -1672 ((-1066 |#1|) (-1066 |#1|))) (-15 * ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 * ((-1066 |#1|) |#1| (-1066 |#1|))) (-15 * ((-1066 |#1|) (-1066 |#1|) |#1|)) (-15 -2276 ((-3 (-1066 |#1|) "failed") (-1066 |#1|) (-1066 |#1|))) (-15 -1682 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -3920 ((-3 (-1066 |#1|) "failed") (-1066 |#1|))) (-15 -2623 ((-1066 |#1|) |#1| (-522))) (-15 -2614 ((-1066 (-522)) (-522))) (-15 -1320 ((-1066 (-522)) (-522))) (-15 -4149 ((-1066 |#1|) |#1|)) (-15 -1727 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -3760 ((-1066 |#1|) (-1066 |#1|))) (-15 -1985 ((-1066 |#1|) (-1 |#1| (-522)) (-1066 |#1|))) (-15 -2217 ((-1066 |#1|) |#1|)) (-15 -2330 ((-1066 |#1|) (-1066 |#1|) |#1|)) (-15 -2262 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -1962 ((-1066 |#1|) (-1066 |#1|))) (-15 -2706 ((-1066 |#1|) (-1066 |#1|))) (-15 -3332 ((-1066 |#1|) (-1066 (-1066 |#1|)))) (-15 -1843 ((-1066 |#1|) (-1066 |#1|))) (-15 -3550 ((-1066 |#1|) (-1066 |#1|))) (-15 -3143 ((-1066 |#1|) (-1066 |#1|))) (-15 -1815 ((-1066 |#1|) (-1066 |#1|) (-522) (-522))) (-15 -2515 ((-1066 |#1|) (-522) (-522) (-1066 |#1|))) (-15 -2968 ((-1066 |#1|) (-522) (-522) (-1066 |#1|))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -2611 ((-1066 |#1|) |#1| (-1066 |#1|))) (-15 -2985 ((-1066 |#1|) |#1| (-1 (-1066 |#1|)))) (-15 -1422 ((-1066 |#1|) (-1066 (-1066 |#1|)))) (-15 -3366 ((-1066 |#1|) (-382 (-522)) (-1066 |#1|)))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-15 -3342 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -3029 ((-1066 |#1|) (-1 |#1| (-522)) |#1| (-1 (-1066 |#1|)))) (-15 -4062 ((-1066 |#1|) |#1| (-1066 |#1|)))) |%noBranch|)) (-971)) (T -1070))
+((-4062 (*1 *2 *3 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-338)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-3029 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-522))) (-5 *5 (-1 (-1066 *4))) (-4 *4 (-338)) (-4 *4 (-971)) (-5 *2 (-1066 *4)) (-5 *1 (-1070 *4)))) (-3342 (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-338)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-3366 (*1 *2 *3 *2) (-12 (-5 *2 (-1066 *4)) (-4 *4 (-37 *3)) (-4 *4 (-971)) (-5 *3 (-382 (-522))) (-5 *1 (-1070 *4)))) (-1422 (*1 *2 *3) (-12 (-5 *3 (-1066 (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1070 *4)) (-4 *4 (-37 (-382 (-522)))) (-4 *4 (-971)))) (-2985 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1066 *3))) (-5 *2 (-1066 *3)) (-5 *1 (-1070 *3)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)))) (-2611 (*1 *2 *3 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-2968 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-971)) (-5 *1 (-1070 *4)))) (-2515 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-971)) (-5 *1 (-1070 *4)))) (-1815 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-971)) (-5 *1 (-1070 *4)))) (-3143 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-3550 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1843 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-3332 (*1 *2 *3) (-12 (-5 *3 (-1066 (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1070 *4)) (-4 *4 (-971)))) (-2706 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1962 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-2262 (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-2330 (*1 *2 *2 *3) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-2217 (*1 *2 *3) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-1070 *3)) (-4 *3 (-971)))) (-1985 (*1 *2 *3 *2) (-12 (-5 *2 (-1066 *4)) (-5 *3 (-1 *4 (-522))) (-4 *4 (-971)) (-5 *1 (-1070 *4)))) (-3760 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1727 (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-4149 (*1 *2 *3) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-1070 *3)) (-4 *3 (-971)))) (-1320 (*1 *2 *3) (-12 (-5 *2 (-1066 (-522))) (-5 *1 (-1070 *4)) (-4 *4 (-971)) (-5 *3 (-522)))) (-2614 (*1 *2 *3) (-12 (-5 *2 (-1066 (-522))) (-5 *1 (-1070 *4)) (-4 *4 (-971)) (-5 *3 (-522)))) (-2623 (*1 *2 *3 *4) (-12 (-5 *4 (-522)) (-5 *2 (-1066 *3)) (-5 *1 (-1070 *3)) (-4 *3 (-971)))) (-3920 (*1 *2 *2) (|partial| -12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1682 (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-2276 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1672 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1672 (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))) (-1661 (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))))
+(-10 -7 (-15 -1661 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -1672 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -1672 ((-1066 |#1|) (-1066 |#1|))) (-15 * ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 * ((-1066 |#1|) |#1| (-1066 |#1|))) (-15 * ((-1066 |#1|) (-1066 |#1|) |#1|)) (-15 -2276 ((-3 (-1066 |#1|) "failed") (-1066 |#1|) (-1066 |#1|))) (-15 -1682 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -3920 ((-3 (-1066 |#1|) "failed") (-1066 |#1|))) (-15 -2623 ((-1066 |#1|) |#1| (-522))) (-15 -2614 ((-1066 (-522)) (-522))) (-15 -1320 ((-1066 (-522)) (-522))) (-15 -4149 ((-1066 |#1|) |#1|)) (-15 -1727 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -3760 ((-1066 |#1|) (-1066 |#1|))) (-15 -1985 ((-1066 |#1|) (-1 |#1| (-522)) (-1066 |#1|))) (-15 -2217 ((-1066 |#1|) |#1|)) (-15 -2330 ((-1066 |#1|) (-1066 |#1|) |#1|)) (-15 -2262 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -1962 ((-1066 |#1|) (-1066 |#1|))) (-15 -2706 ((-1066 |#1|) (-1066 |#1|))) (-15 -3332 ((-1066 |#1|) (-1066 (-1066 |#1|)))) (-15 -1843 ((-1066 |#1|) (-1066 |#1|))) (-15 -3550 ((-1066 |#1|) (-1066 |#1|))) (-15 -3143 ((-1066 |#1|) (-1066 |#1|))) (-15 -1815 ((-1066 |#1|) (-1066 |#1|) (-522) (-522))) (-15 -2515 ((-1066 |#1|) (-522) (-522) (-1066 |#1|))) (-15 -2968 ((-1066 |#1|) (-522) (-522) (-1066 |#1|))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -2611 ((-1066 |#1|) |#1| (-1066 |#1|))) (-15 -2985 ((-1066 |#1|) |#1| (-1 (-1066 |#1|)))) (-15 -1422 ((-1066 |#1|) (-1066 (-1066 |#1|)))) (-15 -3366 ((-1066 |#1|) (-382 (-522)) (-1066 |#1|)))) |%noBranch|) (IF (|has| |#1| (-338)) (PROGN (-15 -3342 ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -3029 ((-1066 |#1|) (-1 |#1| (-522)) |#1| (-1 (-1066 |#1|)))) (-15 -4062 ((-1066 |#1|) |#1| (-1066 |#1|)))) |%noBranch|))
+((-3044 (((-1066 |#1|) (-1066 |#1|)) 57)) (-2923 (((-1066 |#1|) (-1066 |#1|)) 39)) (-3023 (((-1066 |#1|) (-1066 |#1|)) 53)) (-2906 (((-1066 |#1|) (-1066 |#1|)) 35)) (-3066 (((-1066 |#1|) (-1066 |#1|)) 60)) (-2936 (((-1066 |#1|) (-1066 |#1|)) 42)) (-1238 (((-1066 |#1|) (-1066 |#1|)) 31)) (-3357 (((-1066 |#1|) (-1066 |#1|)) 27)) (-1831 (((-1066 |#1|) (-1066 |#1|)) 61)) (-2946 (((-1066 |#1|) (-1066 |#1|)) 43)) (-3054 (((-1066 |#1|) (-1066 |#1|)) 58)) (-2928 (((-1066 |#1|) (-1066 |#1|)) 40)) (-3035 (((-1066 |#1|) (-1066 |#1|)) 55)) (-2915 (((-1066 |#1|) (-1066 |#1|)) 37)) (-1856 (((-1066 |#1|) (-1066 |#1|)) 65)) (-2976 (((-1066 |#1|) (-1066 |#1|)) 47)) (-1839 (((-1066 |#1|) (-1066 |#1|)) 63)) (-2957 (((-1066 |#1|) (-1066 |#1|)) 45)) (-1873 (((-1066 |#1|) (-1066 |#1|)) 68)) (-3001 (((-1066 |#1|) (-1066 |#1|)) 50)) (-2476 (((-1066 |#1|) (-1066 |#1|)) 69)) (-3011 (((-1066 |#1|) (-1066 |#1|)) 51)) (-1864 (((-1066 |#1|) (-1066 |#1|)) 67)) (-2989 (((-1066 |#1|) (-1066 |#1|)) 49)) (-1849 (((-1066 |#1|) (-1066 |#1|)) 66)) (-2966 (((-1066 |#1|) (-1066 |#1|)) 48)) (** (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 33)))
+(((-1071 |#1|) (-10 -7 (-15 -3357 ((-1066 |#1|) (-1066 |#1|))) (-15 -1238 ((-1066 |#1|) (-1066 |#1|))) (-15 ** ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -2906 ((-1066 |#1|) (-1066 |#1|))) (-15 -2915 ((-1066 |#1|) (-1066 |#1|))) (-15 -2923 ((-1066 |#1|) (-1066 |#1|))) (-15 -2928 ((-1066 |#1|) (-1066 |#1|))) (-15 -2936 ((-1066 |#1|) (-1066 |#1|))) (-15 -2946 ((-1066 |#1|) (-1066 |#1|))) (-15 -2957 ((-1066 |#1|) (-1066 |#1|))) (-15 -2966 ((-1066 |#1|) (-1066 |#1|))) (-15 -2976 ((-1066 |#1|) (-1066 |#1|))) (-15 -2989 ((-1066 |#1|) (-1066 |#1|))) (-15 -3001 ((-1066 |#1|) (-1066 |#1|))) (-15 -3011 ((-1066 |#1|) (-1066 |#1|))) (-15 -3023 ((-1066 |#1|) (-1066 |#1|))) (-15 -3035 ((-1066 |#1|) (-1066 |#1|))) (-15 -3044 ((-1066 |#1|) (-1066 |#1|))) (-15 -3054 ((-1066 |#1|) (-1066 |#1|))) (-15 -3066 ((-1066 |#1|) (-1066 |#1|))) (-15 -1831 ((-1066 |#1|) (-1066 |#1|))) (-15 -1839 ((-1066 |#1|) (-1066 |#1|))) (-15 -1849 ((-1066 |#1|) (-1066 |#1|))) (-15 -1856 ((-1066 |#1|) (-1066 |#1|))) (-15 -1864 ((-1066 |#1|) (-1066 |#1|))) (-15 -1873 ((-1066 |#1|) (-1066 |#1|))) (-15 -2476 ((-1066 |#1|) (-1066 |#1|)))) (-37 (-382 (-522)))) (T -1071))
+((-2476 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1873 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1864 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1856 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1849 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1839 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1831 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-3066 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-3054 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-3044 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-3035 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-3023 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-3011 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-3001 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2989 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2976 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2966 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2957 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2946 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2936 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2928 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2923 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2915 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-2906 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-1238 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))) (-3357 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1071 *3)))))
+(-10 -7 (-15 -3357 ((-1066 |#1|) (-1066 |#1|))) (-15 -1238 ((-1066 |#1|) (-1066 |#1|))) (-15 ** ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -2906 ((-1066 |#1|) (-1066 |#1|))) (-15 -2915 ((-1066 |#1|) (-1066 |#1|))) (-15 -2923 ((-1066 |#1|) (-1066 |#1|))) (-15 -2928 ((-1066 |#1|) (-1066 |#1|))) (-15 -2936 ((-1066 |#1|) (-1066 |#1|))) (-15 -2946 ((-1066 |#1|) (-1066 |#1|))) (-15 -2957 ((-1066 |#1|) (-1066 |#1|))) (-15 -2966 ((-1066 |#1|) (-1066 |#1|))) (-15 -2976 ((-1066 |#1|) (-1066 |#1|))) (-15 -2989 ((-1066 |#1|) (-1066 |#1|))) (-15 -3001 ((-1066 |#1|) (-1066 |#1|))) (-15 -3011 ((-1066 |#1|) (-1066 |#1|))) (-15 -3023 ((-1066 |#1|) (-1066 |#1|))) (-15 -3035 ((-1066 |#1|) (-1066 |#1|))) (-15 -3044 ((-1066 |#1|) (-1066 |#1|))) (-15 -3054 ((-1066 |#1|) (-1066 |#1|))) (-15 -3066 ((-1066 |#1|) (-1066 |#1|))) (-15 -1831 ((-1066 |#1|) (-1066 |#1|))) (-15 -1839 ((-1066 |#1|) (-1066 |#1|))) (-15 -1849 ((-1066 |#1|) (-1066 |#1|))) (-15 -1856 ((-1066 |#1|) (-1066 |#1|))) (-15 -1864 ((-1066 |#1|) (-1066 |#1|))) (-15 -1873 ((-1066 |#1|) (-1066 |#1|))) (-15 -2476 ((-1066 |#1|) (-1066 |#1|))))
+((-3044 (((-1066 |#1|) (-1066 |#1|)) 100)) (-2923 (((-1066 |#1|) (-1066 |#1|)) 64)) (-3633 (((-2 (|:| -3023 (-1066 |#1|)) (|:| -3035 (-1066 |#1|))) (-1066 |#1|)) 96)) (-3023 (((-1066 |#1|) (-1066 |#1|)) 97)) (-3067 (((-2 (|:| -2906 (-1066 |#1|)) (|:| -2915 (-1066 |#1|))) (-1066 |#1|)) 53)) (-2906 (((-1066 |#1|) (-1066 |#1|)) 54)) (-3066 (((-1066 |#1|) (-1066 |#1|)) 102)) (-2936 (((-1066 |#1|) (-1066 |#1|)) 71)) (-1238 (((-1066 |#1|) (-1066 |#1|)) 39)) (-3357 (((-1066 |#1|) (-1066 |#1|)) 36)) (-1831 (((-1066 |#1|) (-1066 |#1|)) 103)) (-2946 (((-1066 |#1|) (-1066 |#1|)) 72)) (-3054 (((-1066 |#1|) (-1066 |#1|)) 101)) (-2928 (((-1066 |#1|) (-1066 |#1|)) 67)) (-3035 (((-1066 |#1|) (-1066 |#1|)) 98)) (-2915 (((-1066 |#1|) (-1066 |#1|)) 55)) (-1856 (((-1066 |#1|) (-1066 |#1|)) 111)) (-2976 (((-1066 |#1|) (-1066 |#1|)) 86)) (-1839 (((-1066 |#1|) (-1066 |#1|)) 105)) (-2957 (((-1066 |#1|) (-1066 |#1|)) 82)) (-1873 (((-1066 |#1|) (-1066 |#1|)) 115)) (-3001 (((-1066 |#1|) (-1066 |#1|)) 90)) (-2476 (((-1066 |#1|) (-1066 |#1|)) 117)) (-3011 (((-1066 |#1|) (-1066 |#1|)) 92)) (-1864 (((-1066 |#1|) (-1066 |#1|)) 113)) (-2989 (((-1066 |#1|) (-1066 |#1|)) 88)) (-1849 (((-1066 |#1|) (-1066 |#1|)) 107)) (-2966 (((-1066 |#1|) (-1066 |#1|)) 84)) (** (((-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) 40)))
+(((-1072 |#1|) (-10 -7 (-15 -3357 ((-1066 |#1|) (-1066 |#1|))) (-15 -1238 ((-1066 |#1|) (-1066 |#1|))) (-15 ** ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -3067 ((-2 (|:| -2906 (-1066 |#1|)) (|:| -2915 (-1066 |#1|))) (-1066 |#1|))) (-15 -2906 ((-1066 |#1|) (-1066 |#1|))) (-15 -2915 ((-1066 |#1|) (-1066 |#1|))) (-15 -2923 ((-1066 |#1|) (-1066 |#1|))) (-15 -2928 ((-1066 |#1|) (-1066 |#1|))) (-15 -2936 ((-1066 |#1|) (-1066 |#1|))) (-15 -2946 ((-1066 |#1|) (-1066 |#1|))) (-15 -2957 ((-1066 |#1|) (-1066 |#1|))) (-15 -2966 ((-1066 |#1|) (-1066 |#1|))) (-15 -2976 ((-1066 |#1|) (-1066 |#1|))) (-15 -2989 ((-1066 |#1|) (-1066 |#1|))) (-15 -3001 ((-1066 |#1|) (-1066 |#1|))) (-15 -3011 ((-1066 |#1|) (-1066 |#1|))) (-15 -3633 ((-2 (|:| -3023 (-1066 |#1|)) (|:| -3035 (-1066 |#1|))) (-1066 |#1|))) (-15 -3023 ((-1066 |#1|) (-1066 |#1|))) (-15 -3035 ((-1066 |#1|) (-1066 |#1|))) (-15 -3044 ((-1066 |#1|) (-1066 |#1|))) (-15 -3054 ((-1066 |#1|) (-1066 |#1|))) (-15 -3066 ((-1066 |#1|) (-1066 |#1|))) (-15 -1831 ((-1066 |#1|) (-1066 |#1|))) (-15 -1839 ((-1066 |#1|) (-1066 |#1|))) (-15 -1849 ((-1066 |#1|) (-1066 |#1|))) (-15 -1856 ((-1066 |#1|) (-1066 |#1|))) (-15 -1864 ((-1066 |#1|) (-1066 |#1|))) (-15 -1873 ((-1066 |#1|) (-1066 |#1|))) (-15 -2476 ((-1066 |#1|) (-1066 |#1|)))) (-37 (-382 (-522)))) (T -1072))
+((-2476 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1873 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1864 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1856 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1849 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1839 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1831 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-3066 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-3054 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-3044 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-3035 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-3023 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-3633 (*1 *2 *3) (-12 (-4 *4 (-37 (-382 (-522)))) (-5 *2 (-2 (|:| -3023 (-1066 *4)) (|:| -3035 (-1066 *4)))) (-5 *1 (-1072 *4)) (-5 *3 (-1066 *4)))) (-3011 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-3001 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2989 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2976 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2966 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2957 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2946 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2936 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2928 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2923 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2915 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-2906 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-3067 (*1 *2 *3) (-12 (-4 *4 (-37 (-382 (-522)))) (-5 *2 (-2 (|:| -2906 (-1066 *4)) (|:| -2915 (-1066 *4)))) (-5 *1 (-1072 *4)) (-5 *3 (-1066 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-1238 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))) (-3357 (*1 *2 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1072 *3)))))
+(-10 -7 (-15 -3357 ((-1066 |#1|) (-1066 |#1|))) (-15 -1238 ((-1066 |#1|) (-1066 |#1|))) (-15 ** ((-1066 |#1|) (-1066 |#1|) (-1066 |#1|))) (-15 -3067 ((-2 (|:| -2906 (-1066 |#1|)) (|:| -2915 (-1066 |#1|))) (-1066 |#1|))) (-15 -2906 ((-1066 |#1|) (-1066 |#1|))) (-15 -2915 ((-1066 |#1|) (-1066 |#1|))) (-15 -2923 ((-1066 |#1|) (-1066 |#1|))) (-15 -2928 ((-1066 |#1|) (-1066 |#1|))) (-15 -2936 ((-1066 |#1|) (-1066 |#1|))) (-15 -2946 ((-1066 |#1|) (-1066 |#1|))) (-15 -2957 ((-1066 |#1|) (-1066 |#1|))) (-15 -2966 ((-1066 |#1|) (-1066 |#1|))) (-15 -2976 ((-1066 |#1|) (-1066 |#1|))) (-15 -2989 ((-1066 |#1|) (-1066 |#1|))) (-15 -3001 ((-1066 |#1|) (-1066 |#1|))) (-15 -3011 ((-1066 |#1|) (-1066 |#1|))) (-15 -3633 ((-2 (|:| -3023 (-1066 |#1|)) (|:| -3035 (-1066 |#1|))) (-1066 |#1|))) (-15 -3023 ((-1066 |#1|) (-1066 |#1|))) (-15 -3035 ((-1066 |#1|) (-1066 |#1|))) (-15 -3044 ((-1066 |#1|) (-1066 |#1|))) (-15 -3054 ((-1066 |#1|) (-1066 |#1|))) (-15 -3066 ((-1066 |#1|) (-1066 |#1|))) (-15 -1831 ((-1066 |#1|) (-1066 |#1|))) (-15 -1839 ((-1066 |#1|) (-1066 |#1|))) (-15 -1849 ((-1066 |#1|) (-1066 |#1|))) (-15 -1856 ((-1066 |#1|) (-1066 |#1|))) (-15 -1864 ((-1066 |#1|) (-1066 |#1|))) (-15 -1873 ((-1066 |#1|) (-1066 |#1|))) (-15 -2476 ((-1066 |#1|) (-1066 |#1|))))
+((-1296 (((-886 |#2|) |#2| |#2|) 36)) (-2883 ((|#2| |#2| |#1|) 19 (|has| |#1| (-283)))))
+(((-1073 |#1| |#2|) (-10 -7 (-15 -1296 ((-886 |#2|) |#2| |#2|)) (IF (|has| |#1| (-283)) (-15 -2883 (|#2| |#2| |#1|)) |%noBranch|)) (-514) (-1142 |#1|)) (T -1073))
+((-2883 (*1 *2 *2 *3) (-12 (-4 *3 (-283)) (-4 *3 (-514)) (-5 *1 (-1073 *3 *2)) (-4 *2 (-1142 *3)))) (-1296 (*1 *2 *3 *3) (-12 (-4 *4 (-514)) (-5 *2 (-886 *3)) (-5 *1 (-1073 *4 *3)) (-4 *3 (-1142 *4)))))
+(-10 -7 (-15 -1296 ((-886 |#2|) |#2| |#2|)) (IF (|has| |#1| (-283)) (-15 -2883 (|#2| |#2| |#1|)) |%noBranch|))
+((-1419 (((-108) $ $) NIL)) (-3261 (($ $ (-588 (-708))) 67)) (-1584 (($) 26)) (-2164 (($ $) 42)) (-2458 (((-588 $) $) 51)) (-2095 (((-108) $) 16)) (-2909 (((-588 (-872 |#2|)) $) 74)) (-2799 (($ $) 68)) (-3708 (((-708) $) 37)) (-1893 (($) 25)) (-1908 (($ $ (-588 (-708)) (-872 |#2|)) 60) (($ $ (-588 (-708)) (-708)) 61) (($ $ (-708) (-872 |#2|)) 63)) (-3164 (($ $ $) 48) (($ (-588 $)) 50)) (-1592 (((-708) $) 75)) (-3394 (((-108) $) 15)) (-2311 (((-1068) $) NIL)) (-3973 (((-108) $) 18)) (-4174 (((-1032) $) NIL)) (-3217 (((-156) $) 73)) (-3670 (((-872 |#2|) $) 69)) (-3783 (((-708) $) 70)) (-2978 (((-108) $) 72)) (-3345 (($ $ (-588 (-708)) (-156)) 66)) (-1353 (($ $) 43)) (-2217 (((-792) $) 85)) (-1224 (($ $ (-588 (-708)) (-108)) 65)) (-1515 (((-588 $) $) 11)) (-1758 (($ $ (-708)) 36)) (-4204 (($ $) 32)) (-1621 (($ $ $ (-872 |#2|) (-708)) 56)) (-4211 (($ $ (-872 |#2|)) 55)) (-3282 (($ $ (-588 (-708)) (-872 |#2|)) 54) (($ $ (-588 (-708)) (-708)) 58) (((-708) $ (-872 |#2|)) 59)) (-1562 (((-108) $ $) 79)))
+(((-1074 |#1| |#2|) (-13 (-1014) (-10 -8 (-15 -3394 ((-108) $)) (-15 -2095 ((-108) $)) (-15 -3973 ((-108) $)) (-15 -1893 ($)) (-15 -1584 ($)) (-15 -4204 ($ $)) (-15 -1758 ($ $ (-708))) (-15 -1515 ((-588 $) $)) (-15 -3708 ((-708) $)) (-15 -2164 ($ $)) (-15 -1353 ($ $)) (-15 -3164 ($ $ $)) (-15 -3164 ($ (-588 $))) (-15 -2458 ((-588 $) $)) (-15 -3282 ($ $ (-588 (-708)) (-872 |#2|))) (-15 -4211 ($ $ (-872 |#2|))) (-15 -1621 ($ $ $ (-872 |#2|) (-708))) (-15 -1908 ($ $ (-588 (-708)) (-872 |#2|))) (-15 -3282 ($ $ (-588 (-708)) (-708))) (-15 -1908 ($ $ (-588 (-708)) (-708))) (-15 -3282 ((-708) $ (-872 |#2|))) (-15 -1908 ($ $ (-708) (-872 |#2|))) (-15 -1224 ($ $ (-588 (-708)) (-108))) (-15 -3345 ($ $ (-588 (-708)) (-156))) (-15 -3261 ($ $ (-588 (-708)))) (-15 -3670 ((-872 |#2|) $)) (-15 -3783 ((-708) $)) (-15 -2978 ((-108) $)) (-15 -3217 ((-156) $)) (-15 -1592 ((-708) $)) (-15 -2799 ($ $)) (-15 -2909 ((-588 (-872 |#2|)) $)))) (-850) (-971)) (T -1074))
+((-3394 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-2095 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-3973 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-1893 (*1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-1584 (*1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-4204 (*1 *1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-1758 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-1515 (*1 *2 *1) (-12 (-5 *2 (-588 (-1074 *3 *4))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-3708 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-2164 (*1 *1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-1353 (*1 *1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-3164 (*1 *1 *1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-3164 (*1 *1 *2) (-12 (-5 *2 (-588 (-1074 *3 *4))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-2458 (*1 *2 *1) (-12 (-5 *2 (-588 (-1074 *3 *4))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-3282 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-708))) (-5 *3 (-872 *5)) (-4 *5 (-971)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))) (-4211 (*1 *1 *1 *2) (-12 (-5 *2 (-872 *4)) (-4 *4 (-971)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)))) (-1621 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-872 *5)) (-5 *3 (-708)) (-4 *5 (-971)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))) (-1908 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-708))) (-5 *3 (-872 *5)) (-4 *5 (-971)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))) (-3282 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-708))) (-5 *3 (-708)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)) (-4 *5 (-971)))) (-1908 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-708))) (-5 *3 (-708)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)) (-4 *5 (-971)))) (-3282 (*1 *2 *1 *3) (-12 (-5 *3 (-872 *5)) (-4 *5 (-971)) (-5 *2 (-708)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))) (-1908 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *3 (-872 *5)) (-4 *5 (-971)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))) (-1224 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-708))) (-5 *3 (-108)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)) (-4 *5 (-971)))) (-3345 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-588 (-708))) (-5 *3 (-156)) (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)) (-4 *5 (-971)))) (-3261 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-708))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-3670 (*1 *2 *1) (-12 (-5 *2 (-872 *4)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-3783 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-2978 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-3217 (*1 *2 *1) (-12 (-5 *2 (-156)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-1592 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))) (-2799 (*1 *1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))) (-2909 (*1 *2 *1) (-12 (-5 *2 (-588 (-872 *4))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850)) (-4 *4 (-971)))))
+(-13 (-1014) (-10 -8 (-15 -3394 ((-108) $)) (-15 -2095 ((-108) $)) (-15 -3973 ((-108) $)) (-15 -1893 ($)) (-15 -1584 ($)) (-15 -4204 ($ $)) (-15 -1758 ($ $ (-708))) (-15 -1515 ((-588 $) $)) (-15 -3708 ((-708) $)) (-15 -2164 ($ $)) (-15 -1353 ($ $)) (-15 -3164 ($ $ $)) (-15 -3164 ($ (-588 $))) (-15 -2458 ((-588 $) $)) (-15 -3282 ($ $ (-588 (-708)) (-872 |#2|))) (-15 -4211 ($ $ (-872 |#2|))) (-15 -1621 ($ $ $ (-872 |#2|) (-708))) (-15 -1908 ($ $ (-588 (-708)) (-872 |#2|))) (-15 -3282 ($ $ (-588 (-708)) (-708))) (-15 -1908 ($ $ (-588 (-708)) (-708))) (-15 -3282 ((-708) $ (-872 |#2|))) (-15 -1908 ($ $ (-708) (-872 |#2|))) (-15 -1224 ($ $ (-588 (-708)) (-108))) (-15 -3345 ($ $ (-588 (-708)) (-156))) (-15 -3261 ($ $ (-588 (-708)))) (-15 -3670 ((-872 |#2|) $)) (-15 -3783 ((-708) $)) (-15 -2978 ((-108) $)) (-15 -3217 ((-156) $)) (-15 -1592 ((-708) $)) (-15 -2799 ($ $)) (-15 -2909 ((-588 (-872 |#2|)) $))))
+((-1419 (((-108) $ $) NIL)) (-3728 ((|#2| $) 11)) (-3717 ((|#1| $) 10)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2227 (($ |#1| |#2|) 9)) (-2217 (((-792) $) 16)) (-1562 (((-108) $ $) NIL)))
+(((-1075 |#1| |#2|) (-13 (-1014) (-10 -8 (-15 -2227 ($ |#1| |#2|)) (-15 -3717 (|#1| $)) (-15 -3728 (|#2| $)))) (-1014) (-1014)) (T -1075))
+((-2227 (*1 *1 *2 *3) (-12 (-5 *1 (-1075 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-3717 (*1 *2 *1) (-12 (-4 *2 (-1014)) (-5 *1 (-1075 *2 *3)) (-4 *3 (-1014)))) (-3728 (*1 *2 *1) (-12 (-4 *2 (-1014)) (-5 *1 (-1075 *3 *2)) (-4 *3 (-1014)))))
+(-13 (-1014) (-10 -8 (-15 -2227 ($ |#1| |#2|)) (-15 -3717 (|#1| $)) (-15 -3728 (|#2| $))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3049 (((-1083 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-283)) (|has| |#1| (-338))))) (-3533 (((-588 (-999)) $) NIL)) (-1660 (((-1085) $) 11)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-2298 (($ $) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-3007 (((-108) $) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-3495 (($ $ (-522)) NIL) (($ $ (-522) (-522)) 66)) (-3024 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) NIL)) (-1201 (((-1083 |#1| |#2| |#3|) $) 36)) (-1413 (((-3 (-1083 |#1| |#2| |#3|) "failed") $) 29)) (-3162 (((-1083 |#1| |#2| |#3|) $) 30)) (-3044 (($ $) 107 (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) 83 (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-2961 (($ $) NIL (|has| |#1| (-338)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-338)))) (-2016 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-3023 (($ $) 103 (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) 79 (|has| |#1| (-37 (-382 (-522)))))) (-3355 (((-522) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-1270 (($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) NIL)) (-3066 (($ $) 111 (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) 87 (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-1083 |#1| |#2| |#3|) "failed") $) 31) (((-3 (-1085) "failed") $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-1085))) (|has| |#1| (-338)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338)))) (((-3 (-522) "failed") $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338))))) (-1478 (((-1083 |#1| |#2| |#3|) $) 131) (((-1085) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-1085))) (|has| |#1| (-338)))) (((-382 (-522)) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338)))) (((-522) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338))))) (-3734 (($ $) 34) (($ (-522) $) 35)) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-3241 (($ $) NIL)) (-1226 (((-628 (-1083 |#1| |#2| |#3|)) (-628 $)) NIL (|has| |#1| (-338))) (((-2 (|:| -2149 (-628 (-1083 |#1| |#2| |#3|))) (|:| |vec| (-1166 (-1083 |#1| |#2| |#3|)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-338))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-584 (-522))) (|has| |#1| (-338)))) (((-628 (-522)) (-628 $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-584 (-522))) (|has| |#1| (-338))))) (-3920 (((-3 $ "failed") $) 48)) (-1749 (((-382 (-881 |#1|)) $ (-522)) 65 (|has| |#1| (-514))) (((-382 (-881 |#1|)) $ (-522) (-522)) 67 (|has| |#1| (-514)))) (-3344 (($) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-507)) (|has| |#1| (-338))))) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2725 (((-108) $) NIL (|has| |#1| (-338)))) (-3603 (((-108) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-3672 (((-108) $) 25)) (-2980 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-815 (-522))) (|has| |#1| (-338)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-815 (-354))) (|has| |#1| (-338))))) (-3872 (((-522) $) NIL) (((-522) $ (-522)) 24)) (-2859 (((-108) $) NIL)) (-1558 (($ $) NIL (|has| |#1| (-338)))) (-2947 (((-1083 |#1| |#2| |#3|) $) 38 (|has| |#1| (-338)))) (-1811 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-4208 (((-3 $ "failed") $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-1061)) (|has| |#1| (-338))))) (-3740 (((-108) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-2895 (($ $ (-850)) NIL)) (-1332 (($ (-1 |#1| (-522)) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-522)) 18) (($ $ (-999) (-522)) NIL) (($ $ (-588 (-999)) (-588 (-522))) NIL)) (-1308 (($ $ $) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-2524 (($ $ $) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-338)))) (-1238 (($ $) 72 (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-3170 (($ (-522) (-1083 |#1| |#2| |#3|)) 33)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL (|has| |#1| (-338)))) (-2611 (($ $) 70 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) NIL (-3844 (-12 (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 71 (|has| |#1| (-37 (-382 (-522)))))) (-3937 (($) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-1061)) (|has| |#1| (-338))) CONST)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-4194 (($ $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-283)) (|has| |#1| (-338))))) (-3592 (((-1083 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-507)) (|has| |#1| (-338))))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-2006 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-3934 (($ $ (-522)) 145)) (-2276 (((-3 $ "failed") $ $) 49 (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3357 (($ $) 73 (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-522))))) (($ $ (-1085) (-1083 |#1| |#2| |#3|)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-483 (-1085) (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-588 (-1085)) (-588 (-1083 |#1| |#2| |#3|))) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-483 (-1085) (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-588 (-270 (-1083 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-285 (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-270 (-1083 |#1| |#2| |#3|))) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-285 (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-285 (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-588 (-1083 |#1| |#2| |#3|)) (-588 (-1083 |#1| |#2| |#3|))) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-285 (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338))))) (-4031 (((-708) $) NIL (|has| |#1| (-338)))) (-2683 ((|#1| $ (-522)) NIL) (($ $ $) 54 (|has| (-522) (-1026))) (($ $ (-1083 |#1| |#2| |#3|)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-262 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|))) (|has| |#1| (-338))))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-2731 (($ $ (-1 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|))) NIL (|has| |#1| (-338))) (($ $ (-1 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|)) (-708)) NIL (|has| |#1| (-338))) (($ $ (-1162 |#2|)) 51) (($ $ (-708)) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) 50 (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085) (-708)) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-588 (-1085))) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085)) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))) (-2762 (($ $) NIL (|has| |#1| (-338)))) (-2959 (((-1083 |#1| |#2| |#3|) $) 41 (|has| |#1| (-338)))) (-2487 (((-522) $) 37)) (-1831 (($ $) 113 (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) 89 (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) 109 (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) 85 (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) 105 (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) 81 (|has| |#1| (-37 (-382 (-522)))))) (-3873 (((-498) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-563 (-498))) (|has| |#1| (-338)))) (((-354) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-947)) (|has| |#1| (-338)))) (((-202) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-947)) (|has| |#1| (-338)))) (((-821 (-354)) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-563 (-821 (-354)))) (|has| |#1| (-338)))) (((-821 (-522)) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-563 (-821 (-522)))) (|has| |#1| (-338))))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-1944 (($ $) NIL)) (-2217 (((-792) $) 149) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ (-1083 |#1| |#2| |#3|)) 27) (($ (-1162 |#2|)) 23) (($ (-1085)) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-1085))) (|has| |#1| (-338)))) (($ $) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514)))) (($ (-382 (-522))) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338))) (|has| |#1| (-37 (-382 (-522))))))) (-1643 ((|#1| $ (-522)) 68)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-133)) (|has| |#1| (-338))) (|has| |#1| (-133))))) (-2742 (((-708)) NIL)) (-1980 ((|#1| $) 12)) (-1379 (((-1083 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-507)) (|has| |#1| (-338))))) (-1856 (($ $) 119 (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) 95 (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-1839 (($ $) 115 (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) 91 (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) 123 (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) 99 (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-522)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-522)))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) 125 (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) 101 (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) 121 (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) 97 (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) 117 (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) 93 (|has| |#1| (-37 (-382 (-522)))))) (-4126 (($ $) NIL (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3697 (($) 20 T CONST)) (-3709 (($) 16 T CONST)) (-2252 (($ $ (-1 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|))) NIL (|has| |#1| (-338))) (($ $ (-1 (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|)) (-708)) NIL (|has| |#1| (-338))) (($ $ (-708)) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085) (-708)) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-588 (-1085))) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085)) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))) (-1623 (((-108) $ $) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1597 (((-108) $ $) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1587 (((-108) $ $) NIL (-3844 (-12 (|has| (-1083 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1083 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) 44 (|has| |#1| (-338))) (($ (-1083 |#1| |#2| |#3|) (-1083 |#1| |#2| |#3|)) 45 (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 21)) (** (($ $ (-850)) NIL) (($ $ (-708)) 53) (($ $ (-522)) NIL (|has| |#1| (-338))) (($ $ $) 74 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 128 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 32) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1083 |#1| |#2| |#3|)) 43 (|has| |#1| (-338))) (($ (-1083 |#1| |#2| |#3|) $) 42 (|has| |#1| (-338))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+(((-1076 |#1| |#2| |#3|) (-13 (-1128 |#1| (-1083 |#1| |#2| |#3|)) (-10 -8 (-15 -2217 ($ (-1162 |#2|))) (-15 -2731 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -1076))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1076 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1076 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2611 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1076 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
+(-13 (-1128 |#1| (-1083 |#1| |#2| |#3|)) (-10 -8 (-15 -2217 ($ (-1162 |#2|))) (-15 -2731 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|)))
+((-3640 ((|#2| |#2| (-1007 |#2|)) 26) ((|#2| |#2| (-1085)) 28)))
+(((-1077 |#1| |#2|) (-10 -7 (-15 -3640 (|#2| |#2| (-1085))) (-15 -3640 (|#2| |#2| (-1007 |#2|)))) (-13 (-514) (-784) (-962 (-522)) (-584 (-522))) (-13 (-405 |#1|) (-146) (-27) (-1106))) (T -1077))
+((-3640 (*1 *2 *2 *3) (-12 (-5 *3 (-1007 *2)) (-4 *2 (-13 (-405 *4) (-146) (-27) (-1106))) (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1077 *4 *2)))) (-3640 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1077 *4 *2)) (-4 *2 (-13 (-405 *4) (-146) (-27) (-1106))))))
+(-10 -7 (-15 -3640 (|#2| |#2| (-1085))) (-15 -3640 (|#2| |#2| (-1007 |#2|))))
+((-3640 (((-3 (-382 (-881 |#1|)) (-291 |#1|)) (-382 (-881 |#1|)) (-1007 (-382 (-881 |#1|)))) 30) (((-382 (-881 |#1|)) (-881 |#1|) (-1007 (-881 |#1|))) 44) (((-3 (-382 (-881 |#1|)) (-291 |#1|)) (-382 (-881 |#1|)) (-1085)) 32) (((-382 (-881 |#1|)) (-881 |#1|) (-1085)) 36)))
+(((-1078 |#1|) (-10 -7 (-15 -3640 ((-382 (-881 |#1|)) (-881 |#1|) (-1085))) (-15 -3640 ((-3 (-382 (-881 |#1|)) (-291 |#1|)) (-382 (-881 |#1|)) (-1085))) (-15 -3640 ((-382 (-881 |#1|)) (-881 |#1|) (-1007 (-881 |#1|)))) (-15 -3640 ((-3 (-382 (-881 |#1|)) (-291 |#1|)) (-382 (-881 |#1|)) (-1007 (-382 (-881 |#1|)))))) (-13 (-514) (-784) (-962 (-522)))) (T -1078))
+((-3640 (*1 *2 *3 *4) (-12 (-5 *4 (-1007 (-382 (-881 *5)))) (-5 *3 (-382 (-881 *5))) (-4 *5 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-3 *3 (-291 *5))) (-5 *1 (-1078 *5)))) (-3640 (*1 *2 *3 *4) (-12 (-5 *4 (-1007 (-881 *5))) (-5 *3 (-881 *5)) (-4 *5 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-382 *3)) (-5 *1 (-1078 *5)))) (-3640 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-3 (-382 (-881 *5)) (-291 *5))) (-5 *1 (-1078 *5)) (-5 *3 (-382 (-881 *5))))) (-3640 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-382 (-881 *5))) (-5 *1 (-1078 *5)) (-5 *3 (-881 *5)))))
+(-10 -7 (-15 -3640 ((-382 (-881 |#1|)) (-881 |#1|) (-1085))) (-15 -3640 ((-3 (-382 (-881 |#1|)) (-291 |#1|)) (-382 (-881 |#1|)) (-1085))) (-15 -3640 ((-382 (-881 |#1|)) (-881 |#1|) (-1007 (-881 |#1|)))) (-15 -3640 ((-3 (-382 (-881 |#1|)) (-291 |#1|)) (-382 (-881 |#1|)) (-1007 (-382 (-881 |#1|))))))
+((-3810 (((-1081 |#2|) (-1 |#2| |#1|) (-1081 |#1|)) 13)))
+(((-1079 |#1| |#2|) (-10 -7 (-15 -3810 ((-1081 |#2|) (-1 |#2| |#1|) (-1081 |#1|)))) (-971) (-971)) (T -1079))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1081 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-5 *2 (-1081 *6)) (-5 *1 (-1079 *5 *6)))))
+(-10 -7 (-15 -3810 ((-1081 |#2|) (-1 |#2| |#1|) (-1081 |#1|))))
+((-3133 (((-393 (-1081 (-382 |#4|))) (-1081 (-382 |#4|))) 50)) (-2006 (((-393 (-1081 (-382 |#4|))) (-1081 (-382 |#4|))) 51)))
+(((-1080 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2006 ((-393 (-1081 (-382 |#4|))) (-1081 (-382 |#4|)))) (-15 -3133 ((-393 (-1081 (-382 |#4|))) (-1081 (-382 |#4|))))) (-730) (-784) (-426) (-878 |#3| |#1| |#2|)) (T -1080))
+((-3133 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-426)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-393 (-1081 (-382 *7)))) (-5 *1 (-1080 *4 *5 *6 *7)) (-5 *3 (-1081 (-382 *7))))) (-2006 (*1 *2 *3) (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-426)) (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-393 (-1081 (-382 *7)))) (-5 *1 (-1080 *4 *5 *6 *7)) (-5 *3 (-1081 (-382 *7))))))
+(-10 -7 (-15 -2006 ((-393 (-1081 (-382 |#4|))) (-1081 (-382 |#4|)))) (-15 -3133 ((-393 (-1081 (-382 |#4|))) (-1081 (-382 |#4|)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 30)) (-1428 (((-1166 |#1|) $ (-708)) NIL)) (-3533 (((-588 (-999)) $) NIL)) (-2264 (($ (-1081 |#1|)) NIL)) (-1264 (((-1081 $) $ (-999)) 59) (((-1081 |#1|) $) 48)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) 133 (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 (-999))) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3485 (($ $ $) 127 (|has| |#1| (-514)))) (-3543 (((-393 (-1081 $)) (-1081 $)) 72 (|has| |#1| (-838)))) (-2961 (($ $) NIL (|has| |#1| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 92 (|has| |#1| (-838)))) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-1633 (($ $ (-708)) 42)) (-2165 (($ $ (-708)) 43)) (-2458 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-426)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#1| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-999) "failed") $) NIL)) (-1478 ((|#1| $) NIL) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-999) $) NIL)) (-2908 (($ $ $ (-999)) NIL (|has| |#1| (-157))) ((|#1| $ $) 129 (|has| |#1| (-157)))) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-3241 (($ $) 57)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) NIL) (((-628 |#1|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-2659 (($ $ $) 105)) (-2830 (($ $ $) NIL (|has| |#1| (-514)))) (-3370 (((-2 (|:| -3112 |#1|) (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-514)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2883 (($ $) 134 (|has| |#1| (-426))) (($ $ (-999)) NIL (|has| |#1| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#1| (-838)))) (-3792 (($ $ |#1| (-708) $) 46)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-999) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-999) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3094 (((-792) $ (-792)) 118)) (-3872 (((-708) $ $) NIL (|has| |#1| (-514)))) (-2859 (((-108) $) 32)) (-1391 (((-708) $) NIL)) (-4208 (((-3 $ "failed") $) NIL (|has| |#1| (-1061)))) (-3520 (($ (-1081 |#1|) (-999)) 50) (($ (-1081 $) (-999)) 66)) (-2895 (($ $ (-708)) 34)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-708)) 64) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ (-999)) NIL) (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 122)) (-3564 (((-708) $) NIL) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-1723 (($ (-1 (-708) (-708)) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-4178 (((-1081 |#1|) $) NIL)) (-3155 (((-3 (-999) "failed") $) NIL)) (-3216 (($ $) NIL)) (-3224 ((|#1| $) 53)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) NIL (|has| |#1| (-426)))) (-2311 (((-1068) $) NIL)) (-2927 (((-2 (|:| -3450 $) (|:| -4002 $)) $ (-708)) 41)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| (-999)) (|:| -3858 (-708))) "failed") $) NIL)) (-2611 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3937 (($) NIL (|has| |#1| (-1061)) CONST)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) 33)) (-3207 ((|#1| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 80 (|has| |#1| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-426))) (($ $ $) 136 (|has| |#1| (-426)))) (-1953 (($ $ (-708) |#1| $) 100)) (-4022 (((-393 (-1081 $)) (-1081 $)) 78 (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) 77 (|has| |#1| (-838)))) (-2006 (((-393 $) $) 85 (|has| |#1| (-838)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-2276 (((-3 $ "failed") $ |#1|) 132 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 101 (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-999) |#1|) NIL) (($ $ (-588 (-999)) (-588 |#1|)) NIL) (($ $ (-999) $) NIL) (($ $ (-588 (-999)) (-588 $)) NIL)) (-4031 (((-708) $) NIL (|has| |#1| (-338)))) (-2683 ((|#1| $ |#1|) 120) (($ $ $) 121) (((-382 $) (-382 $) (-382 $)) NIL (|has| |#1| (-514))) ((|#1| (-382 $) |#1|) NIL (|has| |#1| (-338))) (((-382 $) $ (-382 $)) NIL (|has| |#1| (-514)))) (-2877 (((-3 $ "failed") $ (-708)) 37)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 139 (|has| |#1| (-338)))) (-1615 (($ $ (-999)) NIL (|has| |#1| (-157))) ((|#1| $) 125 (|has| |#1| (-157)))) (-2731 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-2487 (((-708) $) 55) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| (-999) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-999) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-999) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2988 ((|#1| $) 131 (|has| |#1| (-426))) (($ $ (-999)) NIL (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#1| (-838))))) (-3884 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514))) (((-3 (-382 $) "failed") (-382 $) $) NIL (|has| |#1| (-514)))) (-2217 (((-792) $) 119) (($ (-522)) NIL) (($ |#1|) 54) (($ (-999)) NIL) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#1| (-514)))) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-708)) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) 28 (|has| |#1| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3622 (($ $ (-850)) 15) (($ $ (-708)) 16)) (-3697 (($) 17 T CONST)) (-3709 (($) 18 T CONST)) (-2252 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) 97)) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1682 (($ $ |#1|) 140 (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 67)) (** (($ $ (-850)) 14) (($ $ (-708)) 12)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 27) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 103) (($ $ |#1|) NIL)))
+(((-1081 |#1|) (-13 (-1142 |#1|) (-10 -8 (-15 -3094 ((-792) $ (-792))) (-15 -1953 ($ $ (-708) |#1| $)))) (-971)) (T -1081))
+((-3094 (*1 *2 *1 *2) (-12 (-5 *2 (-792)) (-5 *1 (-1081 *3)) (-4 *3 (-971)))) (-1953 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1081 *3)) (-4 *3 (-971)))))
+(-13 (-1142 |#1|) (-10 -8 (-15 -3094 ((-792) $ (-792))) (-15 -1953 ($ $ (-708) |#1| $))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3533 (((-588 (-999)) $) NIL)) (-1660 (((-1085) $) 11)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3495 (($ $ (-382 (-522))) NIL) (($ $ (-382 (-522)) (-382 (-522))) NIL)) (-3024 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) NIL)) (-3044 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL (|has| |#1| (-338)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-338)))) (-2016 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-3023 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1270 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) NIL)) (-3066 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-1076 |#1| |#2| |#3|) "failed") $) 32) (((-3 (-1083 |#1| |#2| |#3|) "failed") $) 35)) (-1478 (((-1076 |#1| |#2| |#3|) $) NIL) (((-1083 |#1| |#2| |#3|) $) NIL)) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3515 (((-382 (-522)) $) 55)) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-3178 (($ (-382 (-522)) (-1076 |#1| |#2| |#3|)) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2725 (((-108) $) NIL (|has| |#1| (-338)))) (-3672 (((-108) $) NIL)) (-2980 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-382 (-522)) $) NIL) (((-382 (-522)) $ (-382 (-522))) NIL)) (-2859 (((-108) $) NIL)) (-1811 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2895 (($ $ (-850)) NIL) (($ $ (-382 (-522))) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-382 (-522))) 19) (($ $ (-999) (-382 (-522))) NIL) (($ $ (-588 (-999)) (-588 (-382 (-522)))) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1238 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-3602 (((-1076 |#1| |#2| |#3|) $) 40)) (-3830 (((-3 (-1076 |#1| |#2| |#3|) "failed") $) NIL)) (-3170 (((-1076 |#1| |#2| |#3|) $) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL (|has| |#1| (-338)))) (-2611 (($ $) 38 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) NIL (-3844 (-12 (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 39 (|has| |#1| (-37 (-382 (-522)))))) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-3934 (($ $ (-382 (-522))) NIL)) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3357 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-4031 (((-708) $) NIL (|has| |#1| (-338)))) (-2683 ((|#1| $ (-382 (-522))) NIL) (($ $ $) NIL (|has| (-382 (-522)) (-1026)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 36 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $ (-1162 |#2|)) 37)) (-2487 (((-382 (-522)) $) NIL)) (-1831 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) NIL)) (-2217 (((-792) $) 58) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ (-1076 |#1| |#2| |#3|)) 29) (($ (-1083 |#1| |#2| |#3|)) 30) (($ (-1162 |#2|)) 25) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514)))) (-1643 ((|#1| $ (-382 (-522))) NIL)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-1980 ((|#1| $) 12)) (-1856 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1839 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-382 (-522))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3697 (($) 21 T CONST)) (-3709 (($) 16 T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 23)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+(((-1082 |#1| |#2| |#3|) (-13 (-1149 |#1| (-1076 |#1| |#2| |#3|)) (-962 (-1083 |#1| |#2| |#3|)) (-10 -8 (-15 -2217 ($ (-1162 |#2|))) (-15 -2731 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -1082))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1082 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1082 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2611 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1082 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
+(-13 (-1149 |#1| (-1076 |#1| |#2| |#3|)) (-962 (-1083 |#1| |#2| |#3|)) (-10 -8 (-15 -2217 ($ (-1162 |#2|))) (-15 -2731 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 125)) (-3533 (((-588 (-999)) $) NIL)) (-1660 (((-1085) $) 116)) (-3610 (((-1139 |#2| |#1|) $ (-708)) 63)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3495 (($ $ (-708)) 79) (($ $ (-708) (-708)) 76)) (-3024 (((-1066 (-2 (|:| |k| (-708)) (|:| |c| |#1|))) $) 102)) (-3044 (($ $) 169 (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) 145 (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2016 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3023 (($ $) 165 (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) 141 (|has| |#1| (-37 (-382 (-522)))))) (-1270 (($ (-1066 (-2 (|:| |k| (-708)) (|:| |c| |#1|)))) 115) (($ (-1066 |#1|)) 110)) (-3066 (($ $) 173 (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) 149 (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) NIL T CONST)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) 23)) (-2889 (($ $) 26)) (-3710 (((-881 |#1|) $ (-708)) 75) (((-881 |#1|) $ (-708) (-708)) 77)) (-3672 (((-108) $) 120)) (-2980 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-708) $) 122) (((-708) $ (-708)) 124)) (-2859 (((-108) $) NIL)) (-1811 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2895 (($ $ (-850)) NIL)) (-1332 (($ (-1 |#1| (-522)) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-708)) 13) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1238 (($ $) 131 (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-2611 (($ $) 129 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) NIL (-3844 (-12 (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 130 (|has| |#1| (-37 (-382 (-522)))))) (-4174 (((-1032) $) NIL)) (-3934 (($ $ (-708)) 15)) (-2276 (((-3 $ "failed") $ $) 24 (|has| |#1| (-514)))) (-3357 (($ $) 133 (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-708)))))) (-2683 ((|#1| $ (-708)) 119) (($ $ $) 128 (|has| (-708) (-1026)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $) 27 (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $ (-1162 |#2|)) 29)) (-2487 (((-708) $) NIL)) (-1831 (($ $) 175 (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) 151 (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) 171 (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) 147 (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) 167 (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) 143 (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) NIL)) (-2217 (((-792) $) 201) (($ (-522)) NIL) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514))) (($ |#1|) 126 (|has| |#1| (-157))) (($ (-1139 |#2| |#1|)) 51) (($ (-1162 |#2|)) 32)) (-2180 (((-1066 |#1|) $) 98)) (-1643 ((|#1| $ (-708)) 118)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-1980 ((|#1| $) 54)) (-1856 (($ $) 181 (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) 157 (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1839 (($ $) 177 (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) 153 (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) 185 (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) 161 (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-708)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-708)))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) 187 (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) 163 (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) 183 (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) 159 (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) 179 (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) 155 (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 17 T CONST)) (-3709 (($) 19 T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) 194)) (-1661 (($ $ $) 31)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ |#1|) 198 (|has| |#1| (-338))) (($ $ $) 134 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 137 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 132) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+(((-1083 |#1| |#2| |#3|) (-13 (-1157 |#1|) (-10 -8 (-15 -2217 ($ (-1139 |#2| |#1|))) (-15 -3610 ((-1139 |#2| |#1|) $ (-708))) (-15 -2217 ($ (-1162 |#2|))) (-15 -2731 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -1083))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1139 *4 *3)) (-4 *3 (-971)) (-14 *4 (-1085)) (-14 *5 *3) (-5 *1 (-1083 *3 *4 *5)))) (-3610 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1139 *5 *4)) (-5 *1 (-1083 *4 *5 *6)) (-4 *4 (-971)) (-14 *5 (-1085)) (-14 *6 *4))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1083 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1083 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2611 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1083 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
+(-13 (-1157 |#1|) (-10 -8 (-15 -2217 ($ (-1139 |#2| |#1|))) (-15 -3610 ((-1139 |#2| |#1|) $ (-708))) (-15 -2217 ($ (-1162 |#2|))) (-15 -2731 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|)))
+((-2217 (((-792) $) 22) (($ (-1085)) 24)) (-3844 (($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 35)) (-3832 (($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 28) (($ $) 29)) (-3262 (($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 30)) (-3253 (($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 32)) (-3244 (($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 31)) (-3235 (($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 33)) (-3185 (($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 36)) (-12 (($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $))) 34)))
+(((-1084) (-13 (-562 (-792)) (-10 -8 (-15 -2217 ($ (-1085))) (-15 -3262 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3244 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3253 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3235 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3844 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3185 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3832 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3832 ($ $))))) (T -1084))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1084)))) (-3262 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3244 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3253 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3235 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3844 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3185 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3832 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084)))) (-5 *1 (-1084)))) (-3832 (*1 *1 *1) (-5 *1 (-1084))))
+(-13 (-562 (-792)) (-10 -8 (-15 -2217 ($ (-1085))) (-15 -3262 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3244 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3253 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3235 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3844 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3185 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)) (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3832 ($ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354))) (|:| CF (-291 (-154 (-354)))) (|:| |switch| $)))) (-15 -3832 ($ $))))
+((-1419 (((-108) $ $) NIL)) (-4145 (($ $ (-588 (-792))) 58)) (-2309 (($ $ (-588 (-792))) 56)) (-1513 (((-1068) $) 82)) (-4039 (((-2 (|:| -1949 (-588 (-792))) (|:| -1827 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -2482 (-588 (-792))) (|:| |args| (-588 (-792)))) $) 85)) (-3977 (((-108) $) 21)) (-1630 (($ $ (-588 (-588 (-792)))) 54) (($ $ (-2 (|:| -1949 (-588 (-792))) (|:| -1827 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -2482 (-588 (-792))) (|:| |args| (-588 (-792))))) 80)) (-3367 (($) 123 T CONST)) (-4184 (((-1171)) 104)) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 65) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 71)) (-1893 (($) 93) (($ $) 99)) (-3015 (($ $) 81)) (-1308 (($ $ $) NIL)) (-2524 (($ $ $) NIL)) (-1614 (((-588 $) $) 105)) (-2311 (((-1068) $) 88)) (-4174 (((-1032) $) NIL)) (-2683 (($ $ (-588 (-792))) 57)) (-3873 (((-498) $) 45) (((-1085) $) 46) (((-821 (-522)) $) 75) (((-821 (-354)) $) 73)) (-2217 (((-792) $) 52) (($ (-1068)) 47)) (-2695 (($ $ (-588 (-792))) 59)) (-2810 (((-1068) $) 33) (((-1068) $ (-108)) 34) (((-1171) (-759) $) 35) (((-1171) (-759) $ (-108)) 36)) (-1623 (((-108) $ $) NIL)) (-1597 (((-108) $ $) NIL)) (-1562 (((-108) $ $) 48)) (-1609 (((-108) $ $) NIL)) (-1587 (((-108) $ $) 49)))
+(((-1085) (-13 (-784) (-563 (-498)) (-765) (-563 (-1085)) (-563 (-821 (-522))) (-563 (-821 (-354))) (-815 (-522)) (-815 (-354)) (-10 -8 (-15 -1893 ($)) (-15 -1893 ($ $)) (-15 -4184 ((-1171))) (-15 -2217 ($ (-1068))) (-15 -3015 ($ $)) (-15 -3977 ((-108) $)) (-15 -4039 ((-2 (|:| -1949 (-588 (-792))) (|:| -1827 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -2482 (-588 (-792))) (|:| |args| (-588 (-792)))) $)) (-15 -1630 ($ $ (-588 (-588 (-792))))) (-15 -1630 ($ $ (-2 (|:| -1949 (-588 (-792))) (|:| -1827 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -2482 (-588 (-792))) (|:| |args| (-588 (-792)))))) (-15 -2309 ($ $ (-588 (-792)))) (-15 -4145 ($ $ (-588 (-792)))) (-15 -2695 ($ $ (-588 (-792)))) (-15 -2683 ($ $ (-588 (-792)))) (-15 -1513 ((-1068) $)) (-15 -1614 ((-588 $) $)) (-15 -3367 ($) -2855)))) (T -1085))
+((-1893 (*1 *1) (-5 *1 (-1085))) (-1893 (*1 *1 *1) (-5 *1 (-1085))) (-4184 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1085)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1085)))) (-3015 (*1 *1 *1) (-5 *1 (-1085))) (-3977 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1085)))) (-4039 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -1949 (-588 (-792))) (|:| -1827 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -2482 (-588 (-792))) (|:| |args| (-588 (-792))))) (-5 *1 (-1085)))) (-1630 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-588 (-792)))) (-5 *1 (-1085)))) (-1630 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -1949 (-588 (-792))) (|:| -1827 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -2482 (-588 (-792))) (|:| |args| (-588 (-792))))) (-5 *1 (-1085)))) (-2309 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))) (-4145 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))) (-2695 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))) (-2683 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))) (-1513 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1085)))) (-1614 (*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1085)))) (-3367 (*1 *1) (-5 *1 (-1085))))
+(-13 (-784) (-563 (-498)) (-765) (-563 (-1085)) (-563 (-821 (-522))) (-563 (-821 (-354))) (-815 (-522)) (-815 (-354)) (-10 -8 (-15 -1893 ($)) (-15 -1893 ($ $)) (-15 -4184 ((-1171))) (-15 -2217 ($ (-1068))) (-15 -3015 ($ $)) (-15 -3977 ((-108) $)) (-15 -4039 ((-2 (|:| -1949 (-588 (-792))) (|:| -1827 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -2482 (-588 (-792))) (|:| |args| (-588 (-792)))) $)) (-15 -1630 ($ $ (-588 (-588 (-792))))) (-15 -1630 ($ $ (-2 (|:| -1949 (-588 (-792))) (|:| -1827 (-588 (-792))) (|:| |presup| (-588 (-792))) (|:| -2482 (-588 (-792))) (|:| |args| (-588 (-792)))))) (-15 -2309 ($ $ (-588 (-792)))) (-15 -4145 ($ $ (-588 (-792)))) (-15 -2695 ($ $ (-588 (-792)))) (-15 -2683 ($ $ (-588 (-792)))) (-15 -1513 ((-1068) $)) (-15 -1614 ((-588 $) $)) (-15 -3367 ($) -2855)))
+((-3176 (((-1166 |#1|) |#1| (-850)) 16) (((-1166 |#1|) (-588 |#1|)) 20)))
+(((-1086 |#1|) (-10 -7 (-15 -3176 ((-1166 |#1|) (-588 |#1|))) (-15 -3176 ((-1166 |#1|) |#1| (-850)))) (-971)) (T -1086))
+((-3176 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-5 *2 (-1166 *3)) (-5 *1 (-1086 *3)) (-4 *3 (-971)))) (-3176 (*1 *2 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-971)) (-5 *2 (-1166 *4)) (-5 *1 (-1086 *4)))))
+(-10 -7 (-15 -3176 ((-1166 |#1|) (-588 |#1|))) (-15 -3176 ((-1166 |#1|) |#1| (-850))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (|has| |#1| (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#1| (-962 (-382 (-522))))) (((-3 |#1| "failed") $) NIL)) (-1478 (((-522) $) NIL (|has| |#1| (-962 (-522)))) (((-382 (-522)) $) NIL (|has| |#1| (-962 (-382 (-522))))) ((|#1| $) NIL)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2883 (($ $) NIL (|has| |#1| (-426)))) (-3792 (($ $ |#1| (-898) $) NIL)) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-898)) NIL)) (-3564 (((-898) $) NIL)) (-1723 (($ (-1 (-898) (-898)) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) NIL)) (-3207 ((|#1| $) NIL)) (-1953 (($ $ (-898) |#1| $) NIL (-12 (|has| (-898) (-124)) (|has| |#1| (-514))))) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-514)))) (-2487 (((-898) $) NIL)) (-2988 ((|#1| $) NIL (|has| |#1| (-426)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ $) NIL (|has| |#1| (-514))) (($ |#1|) NIL) (($ (-382 (-522))) NIL (-3844 (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-962 (-382 (-522))))))) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ (-898)) NIL)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#1| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 9 T CONST)) (-3709 (($) 14 T CONST)) (-1562 (((-108) $ $) 16)) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 19)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) 13) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+(((-1087 |#1|) (-13 (-301 |#1| (-898)) (-10 -8 (IF (|has| |#1| (-514)) (IF (|has| (-898) (-124)) (-15 -1953 ($ $ (-898) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4236)) (-6 -4236) |%noBranch|))) (-971)) (T -1087))
+((-1953 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-898)) (-4 *2 (-124)) (-5 *1 (-1087 *3)) (-4 *3 (-514)) (-4 *3 (-971)))))
+(-13 (-301 |#1| (-898)) (-10 -8 (IF (|has| |#1| (-514)) (IF (|has| (-898) (-124)) (-15 -1953 ($ $ (-898) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4236)) (-6 -4236) |%noBranch|)))
+((-2316 (((-1089) (-1085) $) 24)) (-2283 (($) 28)) (-2108 (((-3 (|:| |fst| (-409)) (|:| -1350 "void")) (-1085) $) 21)) (-2931 (((-1171) (-1085) (-3 (|:| |fst| (-409)) (|:| -1350 "void")) $) 40) (((-1171) (-1085) (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) 41) (((-1171) (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) 42)) (-2688 (((-1171) (-1085)) 57)) (-4169 (((-1171) (-1085) $) 54) (((-1171) (-1085)) 55) (((-1171)) 56)) (-1235 (((-1171) (-1085)) 36)) (-4091 (((-1085)) 35)) (-3298 (($) 33)) (-3528 (((-412) (-1085) (-412) (-1085) $) 44) (((-412) (-588 (-1085)) (-412) (-1085) $) 48) (((-412) (-1085) (-412)) 45) (((-412) (-1085) (-412) (-1085)) 49)) (-4097 (((-1085)) 34)) (-2217 (((-792) $) 27)) (-2128 (((-1171)) 29) (((-1171) (-1085)) 32)) (-1461 (((-588 (-1085)) (-1085) $) 23)) (-1853 (((-1171) (-1085) (-588 (-1085)) $) 37) (((-1171) (-1085) (-588 (-1085))) 38) (((-1171) (-588 (-1085))) 39)))
+(((-1088) (-13 (-562 (-792)) (-10 -8 (-15 -2283 ($)) (-15 -2128 ((-1171))) (-15 -2128 ((-1171) (-1085))) (-15 -3528 ((-412) (-1085) (-412) (-1085) $)) (-15 -3528 ((-412) (-588 (-1085)) (-412) (-1085) $)) (-15 -3528 ((-412) (-1085) (-412))) (-15 -3528 ((-412) (-1085) (-412) (-1085))) (-15 -1235 ((-1171) (-1085))) (-15 -4097 ((-1085))) (-15 -4091 ((-1085))) (-15 -1853 ((-1171) (-1085) (-588 (-1085)) $)) (-15 -1853 ((-1171) (-1085) (-588 (-1085)))) (-15 -1853 ((-1171) (-588 (-1085)))) (-15 -2931 ((-1171) (-1085) (-3 (|:| |fst| (-409)) (|:| -1350 "void")) $)) (-15 -2931 ((-1171) (-1085) (-3 (|:| |fst| (-409)) (|:| -1350 "void")))) (-15 -2931 ((-1171) (-3 (|:| |fst| (-409)) (|:| -1350 "void")))) (-15 -4169 ((-1171) (-1085) $)) (-15 -4169 ((-1171) (-1085))) (-15 -4169 ((-1171))) (-15 -2688 ((-1171) (-1085))) (-15 -3298 ($)) (-15 -2108 ((-3 (|:| |fst| (-409)) (|:| -1350 "void")) (-1085) $)) (-15 -1461 ((-588 (-1085)) (-1085) $)) (-15 -2316 ((-1089) (-1085) $))))) (T -1088))
+((-2283 (*1 *1) (-5 *1 (-1088))) (-2128 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1088)))) (-2128 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-3528 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1088)))) (-3528 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-412)) (-5 *3 (-588 (-1085))) (-5 *4 (-1085)) (-5 *1 (-1088)))) (-3528 (*1 *2 *3 *2) (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1088)))) (-3528 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1088)))) (-1235 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-4097 (*1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1088)))) (-4091 (*1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1088)))) (-1853 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-1853 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-1853 (*1 *2 *3) (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-2931 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1085)) (-5 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-2931 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-5 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-2931 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-4169 (*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-4169 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-4169 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1088)))) (-2688 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))) (-3298 (*1 *1) (-5 *1 (-1088))) (-2108 (*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-5 *1 (-1088)))) (-1461 (*1 *2 *3 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1088)) (-5 *3 (-1085)))) (-2316 (*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-1089)) (-5 *1 (-1088)))))
+(-13 (-562 (-792)) (-10 -8 (-15 -2283 ($)) (-15 -2128 ((-1171))) (-15 -2128 ((-1171) (-1085))) (-15 -3528 ((-412) (-1085) (-412) (-1085) $)) (-15 -3528 ((-412) (-588 (-1085)) (-412) (-1085) $)) (-15 -3528 ((-412) (-1085) (-412))) (-15 -3528 ((-412) (-1085) (-412) (-1085))) (-15 -1235 ((-1171) (-1085))) (-15 -4097 ((-1085))) (-15 -4091 ((-1085))) (-15 -1853 ((-1171) (-1085) (-588 (-1085)) $)) (-15 -1853 ((-1171) (-1085) (-588 (-1085)))) (-15 -1853 ((-1171) (-588 (-1085)))) (-15 -2931 ((-1171) (-1085) (-3 (|:| |fst| (-409)) (|:| -1350 "void")) $)) (-15 -2931 ((-1171) (-1085) (-3 (|:| |fst| (-409)) (|:| -1350 "void")))) (-15 -2931 ((-1171) (-3 (|:| |fst| (-409)) (|:| -1350 "void")))) (-15 -4169 ((-1171) (-1085) $)) (-15 -4169 ((-1171) (-1085))) (-15 -4169 ((-1171))) (-15 -2688 ((-1171) (-1085))) (-15 -3298 ($)) (-15 -2108 ((-3 (|:| |fst| (-409)) (|:| -1350 "void")) (-1085) $)) (-15 -1461 ((-588 (-1085)) (-1085) $)) (-15 -2316 ((-1089) (-1085) $))))
+((-2082 (((-588 (-588 (-3 (|:| -3015 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522))))))))) $) 57)) (-3048 (((-588 (-3 (|:| -3015 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522)))))))) (-409) $) 40)) (-2492 (($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-412))))) 15)) (-2688 (((-1171) $) 65)) (-2729 (((-588 (-1085)) $) 20)) (-2886 (((-1018) $) 53)) (-3642 (((-412) (-1085) $) 27)) (-3491 (((-588 (-1085)) $) 30)) (-3298 (($) 17)) (-3528 (((-412) (-588 (-1085)) (-412) $) 25) (((-412) (-1085) (-412) $) 24)) (-2217 (((-792) $) 9) (((-1094 (-1085) (-412)) $) 11)))
+(((-1089) (-13 (-562 (-792)) (-10 -8 (-15 -2217 ((-1094 (-1085) (-412)) $)) (-15 -3298 ($)) (-15 -3528 ((-412) (-588 (-1085)) (-412) $)) (-15 -3528 ((-412) (-1085) (-412) $)) (-15 -3642 ((-412) (-1085) $)) (-15 -2729 ((-588 (-1085)) $)) (-15 -3048 ((-588 (-3 (|:| -3015 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522)))))))) (-409) $)) (-15 -3491 ((-588 (-1085)) $)) (-15 -2082 ((-588 (-588 (-3 (|:| -3015 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522))))))))) $)) (-15 -2886 ((-1018) $)) (-15 -2688 ((-1171) $)) (-15 -2492 ($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-412))))))))) (T -1089))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-1094 (-1085) (-412))) (-5 *1 (-1089)))) (-3298 (*1 *1) (-5 *1 (-1089))) (-3528 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-412)) (-5 *3 (-588 (-1085))) (-5 *1 (-1089)))) (-3528 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1089)))) (-3642 (*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-412)) (-5 *1 (-1089)))) (-2729 (*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1089)))) (-3048 (*1 *2 *3 *1) (-12 (-5 *3 (-409)) (-5 *2 (-588 (-3 (|:| -3015 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522))))))))) (-5 *1 (-1089)))) (-3491 (*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1089)))) (-2082 (*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-3 (|:| -3015 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522)))))))))) (-5 *1 (-1089)))) (-2886 (*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-1089)))) (-2688 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1089)))) (-2492 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-412))))) (-5 *1 (-1089)))))
+(-13 (-562 (-792)) (-10 -8 (-15 -2217 ((-1094 (-1085) (-412)) $)) (-15 -3298 ($)) (-15 -3528 ((-412) (-588 (-1085)) (-412) $)) (-15 -3528 ((-412) (-1085) (-412) $)) (-15 -3642 ((-412) (-1085) $)) (-15 -2729 ((-588 (-1085)) $)) (-15 -3048 ((-588 (-3 (|:| -3015 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522)))))))) (-409) $)) (-15 -3491 ((-588 (-1085)) $)) (-15 -2082 ((-588 (-588 (-3 (|:| -3015 (-1085)) (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522))))))))) $)) (-15 -2886 ((-1018) $)) (-15 -2688 ((-1171) $)) (-15 -2492 ($ (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-412))))))))
+((-1419 (((-108) $ $) NIL)) (-1233 (((-108) $) 42)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3906 (((-3 (-522) (-202) (-1085) (-1068) $) $) 50)) (-1220 (((-588 $) $) 55)) (-3873 (((-1018) $) 20) (($ (-1018)) 21)) (-3866 (((-108) $) 52)) (-2217 (((-792) $) NIL) (($ (-522)) 23) (((-522) $) 25) (($ (-202)) 27) (((-202) $) 29) (($ (-1085)) 31) (((-1085) $) 33) (($ (-1068)) 35) (((-1068) $) 37)) (-2215 (((-108) $ (|[\|\|]| (-522))) 10) (((-108) $ (|[\|\|]| (-202))) 13) (((-108) $ (|[\|\|]| (-1085))) 19) (((-108) $ (|[\|\|]| (-1068))) 16)) (-1881 (($ (-1085) (-588 $)) 39) (($ $ (-588 $)) 40)) (-2503 (((-522) $) 24) (((-202) $) 28) (((-1085) $) 32) (((-1068) $) 36)) (-1562 (((-108) $ $) 7)))
+(((-1090) (-13 (-1161) (-1014) (-10 -8 (-15 -3873 ((-1018) $)) (-15 -3873 ($ (-1018))) (-15 -2217 ($ (-522))) (-15 -2217 ((-522) $)) (-15 -2503 ((-522) $)) (-15 -2217 ($ (-202))) (-15 -2217 ((-202) $)) (-15 -2503 ((-202) $)) (-15 -2217 ($ (-1085))) (-15 -2217 ((-1085) $)) (-15 -2503 ((-1085) $)) (-15 -2217 ($ (-1068))) (-15 -2217 ((-1068) $)) (-15 -2503 ((-1068) $)) (-15 -1881 ($ (-1085) (-588 $))) (-15 -1881 ($ $ (-588 $))) (-15 -1233 ((-108) $)) (-15 -3906 ((-3 (-522) (-202) (-1085) (-1068) $) $)) (-15 -1220 ((-588 $) $)) (-15 -3866 ((-108) $)) (-15 -2215 ((-108) $ (|[\|\|]| (-522)))) (-15 -2215 ((-108) $ (|[\|\|]| (-202)))) (-15 -2215 ((-108) $ (|[\|\|]| (-1085)))) (-15 -2215 ((-108) $ (|[\|\|]| (-1068))))))) (T -1090))
+((-3873 (*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-1090)))) (-3873 (*1 *1 *2) (-12 (-5 *2 (-1018)) (-5 *1 (-1090)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-1090)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1090)))) (-2503 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1090)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-1090)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-202)) (-5 *1 (-1090)))) (-2503 (*1 *2 *1) (-12 (-5 *2 (-202)) (-5 *1 (-1090)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1090)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1090)))) (-2503 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1090)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1090)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1090)))) (-2503 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1090)))) (-1881 (*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-1090))) (-5 *1 (-1090)))) (-1881 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-1090))) (-5 *1 (-1090)))) (-1233 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1090)))) (-3906 (*1 *2 *1) (-12 (-5 *2 (-3 (-522) (-202) (-1085) (-1068) (-1090))) (-5 *1 (-1090)))) (-1220 (*1 *2 *1) (-12 (-5 *2 (-588 (-1090))) (-5 *1 (-1090)))) (-3866 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1090)))) (-2215 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-522))) (-5 *2 (-108)) (-5 *1 (-1090)))) (-2215 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-202))) (-5 *2 (-108)) (-5 *1 (-1090)))) (-2215 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1085))) (-5 *2 (-108)) (-5 *1 (-1090)))) (-2215 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1068))) (-5 *2 (-108)) (-5 *1 (-1090)))))
+(-13 (-1161) (-1014) (-10 -8 (-15 -3873 ((-1018) $)) (-15 -3873 ($ (-1018))) (-15 -2217 ($ (-522))) (-15 -2217 ((-522) $)) (-15 -2503 ((-522) $)) (-15 -2217 ($ (-202))) (-15 -2217 ((-202) $)) (-15 -2503 ((-202) $)) (-15 -2217 ($ (-1085))) (-15 -2217 ((-1085) $)) (-15 -2503 ((-1085) $)) (-15 -2217 ($ (-1068))) (-15 -2217 ((-1068) $)) (-15 -2503 ((-1068) $)) (-15 -1881 ($ (-1085) (-588 $))) (-15 -1881 ($ $ (-588 $))) (-15 -1233 ((-108) $)) (-15 -3906 ((-3 (-522) (-202) (-1085) (-1068) $) $)) (-15 -1220 ((-588 $) $)) (-15 -3866 ((-108) $)) (-15 -2215 ((-108) $ (|[\|\|]| (-522)))) (-15 -2215 ((-108) $ (|[\|\|]| (-202)))) (-15 -2215 ((-108) $ (|[\|\|]| (-1085)))) (-15 -2215 ((-108) $ (|[\|\|]| (-1068))))))
+((-1574 (((-588 (-588 (-881 |#1|))) (-588 (-382 (-881 |#1|))) (-588 (-1085))) 55)) (-2925 (((-588 (-270 (-382 (-881 |#1|)))) (-270 (-382 (-881 |#1|)))) 67) (((-588 (-270 (-382 (-881 |#1|)))) (-382 (-881 |#1|))) 63) (((-588 (-270 (-382 (-881 |#1|)))) (-270 (-382 (-881 |#1|))) (-1085)) 68) (((-588 (-270 (-382 (-881 |#1|)))) (-382 (-881 |#1|)) (-1085)) 62) (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-270 (-382 (-881 |#1|))))) 92) (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-382 (-881 |#1|)))) 91) (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-270 (-382 (-881 |#1|)))) (-588 (-1085))) 93) (((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-382 (-881 |#1|))) (-588 (-1085))) 90)))
+(((-1091 |#1|) (-10 -7 (-15 -2925 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -2925 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-270 (-382 (-881 |#1|)))) (-588 (-1085)))) (-15 -2925 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-382 (-881 |#1|))))) (-15 -2925 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-270 (-382 (-881 |#1|)))))) (-15 -2925 ((-588 (-270 (-382 (-881 |#1|)))) (-382 (-881 |#1|)) (-1085))) (-15 -2925 ((-588 (-270 (-382 (-881 |#1|)))) (-270 (-382 (-881 |#1|))) (-1085))) (-15 -2925 ((-588 (-270 (-382 (-881 |#1|)))) (-382 (-881 |#1|)))) (-15 -2925 ((-588 (-270 (-382 (-881 |#1|)))) (-270 (-382 (-881 |#1|))))) (-15 -1574 ((-588 (-588 (-881 |#1|))) (-588 (-382 (-881 |#1|))) (-588 (-1085))))) (-514)) (T -1091))
+((-1574 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085))) (-4 *5 (-514)) (-5 *2 (-588 (-588 (-881 *5)))) (-5 *1 (-1091 *5)))) (-2925 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 (-270 (-382 (-881 *4))))) (-5 *1 (-1091 *4)) (-5 *3 (-270 (-382 (-881 *4)))))) (-2925 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 (-270 (-382 (-881 *4))))) (-5 *1 (-1091 *4)) (-5 *3 (-382 (-881 *4))))) (-2925 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-514)) (-5 *2 (-588 (-270 (-382 (-881 *5))))) (-5 *1 (-1091 *5)) (-5 *3 (-270 (-382 (-881 *5)))))) (-2925 (*1 *2 *3 *4) (-12 (-5 *4 (-1085)) (-4 *5 (-514)) (-5 *2 (-588 (-270 (-382 (-881 *5))))) (-5 *1 (-1091 *5)) (-5 *3 (-382 (-881 *5))))) (-2925 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-1091 *4)) (-5 *3 (-588 (-270 (-382 (-881 *4))))))) (-2925 (*1 *2 *3) (-12 (-5 *3 (-588 (-382 (-881 *4)))) (-4 *4 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-1091 *4)))) (-2925 (*1 *2 *3 *4) (-12 (-5 *4 (-588 (-1085))) (-4 *5 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-1091 *5)) (-5 *3 (-588 (-270 (-382 (-881 *5))))))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085))) (-4 *5 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-1091 *5)))))
+(-10 -7 (-15 -2925 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))) (-15 -2925 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-270 (-382 (-881 |#1|)))) (-588 (-1085)))) (-15 -2925 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-382 (-881 |#1|))))) (-15 -2925 ((-588 (-588 (-270 (-382 (-881 |#1|))))) (-588 (-270 (-382 (-881 |#1|)))))) (-15 -2925 ((-588 (-270 (-382 (-881 |#1|)))) (-382 (-881 |#1|)) (-1085))) (-15 -2925 ((-588 (-270 (-382 (-881 |#1|)))) (-270 (-382 (-881 |#1|))) (-1085))) (-15 -2925 ((-588 (-270 (-382 (-881 |#1|)))) (-382 (-881 |#1|)))) (-15 -2925 ((-588 (-270 (-382 (-881 |#1|)))) (-270 (-382 (-881 |#1|))))) (-15 -1574 ((-588 (-588 (-881 |#1|))) (-588 (-382 (-881 |#1|))) (-588 (-1085)))))
+((-3634 (((-588 (-588 |#1|)) (-588 (-588 |#1|)) (-588 (-588 (-588 |#1|)))) 38)) (-1795 (((-588 (-588 (-588 |#1|))) (-588 (-588 |#1|))) 24)) (-2023 (((-1093 (-588 |#1|)) (-588 |#1|)) 34)) (-2705 (((-588 (-588 |#1|)) (-588 |#1|)) 30)) (-4014 (((-2 (|:| |f1| (-588 |#1|)) (|:| |f2| (-588 (-588 (-588 |#1|)))) (|:| |f3| (-588 (-588 |#1|))) (|:| |f4| (-588 (-588 (-588 |#1|))))) (-588 (-588 (-588 |#1|)))) 37)) (-2257 (((-2 (|:| |f1| (-588 |#1|)) (|:| |f2| (-588 (-588 (-588 |#1|)))) (|:| |f3| (-588 (-588 |#1|))) (|:| |f4| (-588 (-588 (-588 |#1|))))) (-588 |#1|) (-588 (-588 (-588 |#1|))) (-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))) (-588 (-588 (-588 |#1|))) (-588 (-588 (-588 |#1|)))) 36)) (-4093 (((-588 (-588 |#1|)) (-588 (-588 |#1|))) 28)) (-3073 (((-588 |#1|) (-588 |#1|)) 31)) (-3180 (((-588 (-588 (-588 |#1|))) (-588 |#1|) (-588 (-588 (-588 |#1|)))) 18)) (-1913 (((-588 (-588 (-588 |#1|))) (-1 (-108) |#1| |#1|) (-588 |#1|) (-588 (-588 (-588 |#1|)))) 15)) (-2081 (((-2 (|:| |fs| (-108)) (|:| |sd| (-588 |#1|)) (|:| |td| (-588 (-588 |#1|)))) (-1 (-108) |#1| |#1|) (-588 |#1|) (-588 (-588 |#1|))) 13)) (-3125 (((-588 (-588 |#1|)) (-588 (-588 (-588 |#1|)))) 39)) (-1557 (((-588 (-588 |#1|)) (-1093 (-588 |#1|))) 41)))
+(((-1092 |#1|) (-10 -7 (-15 -2081 ((-2 (|:| |fs| (-108)) (|:| |sd| (-588 |#1|)) (|:| |td| (-588 (-588 |#1|)))) (-1 (-108) |#1| |#1|) (-588 |#1|) (-588 (-588 |#1|)))) (-15 -1913 ((-588 (-588 (-588 |#1|))) (-1 (-108) |#1| |#1|) (-588 |#1|) (-588 (-588 (-588 |#1|))))) (-15 -3180 ((-588 (-588 (-588 |#1|))) (-588 |#1|) (-588 (-588 (-588 |#1|))))) (-15 -3634 ((-588 (-588 |#1|)) (-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))))) (-15 -3125 ((-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))))) (-15 -1557 ((-588 (-588 |#1|)) (-1093 (-588 |#1|)))) (-15 -1795 ((-588 (-588 (-588 |#1|))) (-588 (-588 |#1|)))) (-15 -2023 ((-1093 (-588 |#1|)) (-588 |#1|))) (-15 -4093 ((-588 (-588 |#1|)) (-588 (-588 |#1|)))) (-15 -2705 ((-588 (-588 |#1|)) (-588 |#1|))) (-15 -3073 ((-588 |#1|) (-588 |#1|))) (-15 -2257 ((-2 (|:| |f1| (-588 |#1|)) (|:| |f2| (-588 (-588 (-588 |#1|)))) (|:| |f3| (-588 (-588 |#1|))) (|:| |f4| (-588 (-588 (-588 |#1|))))) (-588 |#1|) (-588 (-588 (-588 |#1|))) (-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))) (-588 (-588 (-588 |#1|))) (-588 (-588 (-588 |#1|))))) (-15 -4014 ((-2 (|:| |f1| (-588 |#1|)) (|:| |f2| (-588 (-588 (-588 |#1|)))) (|:| |f3| (-588 (-588 |#1|))) (|:| |f4| (-588 (-588 (-588 |#1|))))) (-588 (-588 (-588 |#1|)))))) (-784)) (T -1092))
+((-4014 (*1 *2 *3) (-12 (-4 *4 (-784)) (-5 *2 (-2 (|:| |f1| (-588 *4)) (|:| |f2| (-588 (-588 (-588 *4)))) (|:| |f3| (-588 (-588 *4))) (|:| |f4| (-588 (-588 (-588 *4)))))) (-5 *1 (-1092 *4)) (-5 *3 (-588 (-588 (-588 *4)))))) (-2257 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-784)) (-5 *3 (-588 *6)) (-5 *5 (-588 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-588 *5)) (|:| |f3| *5) (|:| |f4| (-588 *5)))) (-5 *1 (-1092 *6)) (-5 *4 (-588 *5)))) (-3073 (*1 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-1092 *3)))) (-2705 (*1 *2 *3) (-12 (-4 *4 (-784)) (-5 *2 (-588 (-588 *4))) (-5 *1 (-1092 *4)) (-5 *3 (-588 *4)))) (-4093 (*1 *2 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-784)) (-5 *1 (-1092 *3)))) (-2023 (*1 *2 *3) (-12 (-4 *4 (-784)) (-5 *2 (-1093 (-588 *4))) (-5 *1 (-1092 *4)) (-5 *3 (-588 *4)))) (-1795 (*1 *2 *3) (-12 (-4 *4 (-784)) (-5 *2 (-588 (-588 (-588 *4)))) (-5 *1 (-1092 *4)) (-5 *3 (-588 (-588 *4))))) (-1557 (*1 *2 *3) (-12 (-5 *3 (-1093 (-588 *4))) (-4 *4 (-784)) (-5 *2 (-588 (-588 *4))) (-5 *1 (-1092 *4)))) (-3125 (*1 *2 *3) (-12 (-5 *3 (-588 (-588 (-588 *4)))) (-5 *2 (-588 (-588 *4))) (-5 *1 (-1092 *4)) (-4 *4 (-784)))) (-3634 (*1 *2 *2 *3) (-12 (-5 *3 (-588 (-588 (-588 *4)))) (-5 *2 (-588 (-588 *4))) (-4 *4 (-784)) (-5 *1 (-1092 *4)))) (-3180 (*1 *2 *3 *2) (-12 (-5 *2 (-588 (-588 (-588 *4)))) (-5 *3 (-588 *4)) (-4 *4 (-784)) (-5 *1 (-1092 *4)))) (-1913 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-588 (-588 (-588 *5)))) (-5 *3 (-1 (-108) *5 *5)) (-5 *4 (-588 *5)) (-4 *5 (-784)) (-5 *1 (-1092 *5)))) (-2081 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-108) *6 *6)) (-4 *6 (-784)) (-5 *4 (-588 *6)) (-5 *2 (-2 (|:| |fs| (-108)) (|:| |sd| *4) (|:| |td| (-588 *4)))) (-5 *1 (-1092 *6)) (-5 *5 (-588 *4)))))
+(-10 -7 (-15 -2081 ((-2 (|:| |fs| (-108)) (|:| |sd| (-588 |#1|)) (|:| |td| (-588 (-588 |#1|)))) (-1 (-108) |#1| |#1|) (-588 |#1|) (-588 (-588 |#1|)))) (-15 -1913 ((-588 (-588 (-588 |#1|))) (-1 (-108) |#1| |#1|) (-588 |#1|) (-588 (-588 (-588 |#1|))))) (-15 -3180 ((-588 (-588 (-588 |#1|))) (-588 |#1|) (-588 (-588 (-588 |#1|))))) (-15 -3634 ((-588 (-588 |#1|)) (-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))))) (-15 -3125 ((-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))))) (-15 -1557 ((-588 (-588 |#1|)) (-1093 (-588 |#1|)))) (-15 -1795 ((-588 (-588 (-588 |#1|))) (-588 (-588 |#1|)))) (-15 -2023 ((-1093 (-588 |#1|)) (-588 |#1|))) (-15 -4093 ((-588 (-588 |#1|)) (-588 (-588 |#1|)))) (-15 -2705 ((-588 (-588 |#1|)) (-588 |#1|))) (-15 -3073 ((-588 |#1|) (-588 |#1|))) (-15 -2257 ((-2 (|:| |f1| (-588 |#1|)) (|:| |f2| (-588 (-588 (-588 |#1|)))) (|:| |f3| (-588 (-588 |#1|))) (|:| |f4| (-588 (-588 (-588 |#1|))))) (-588 |#1|) (-588 (-588 (-588 |#1|))) (-588 (-588 |#1|)) (-588 (-588 (-588 |#1|))) (-588 (-588 (-588 |#1|))) (-588 (-588 (-588 |#1|))))) (-15 -4014 ((-2 (|:| |f1| (-588 |#1|)) (|:| |f2| (-588 (-588 (-588 |#1|)))) (|:| |f3| (-588 (-588 |#1|))) (|:| |f4| (-588 (-588 (-588 |#1|))))) (-588 (-588 (-588 |#1|))))))
+((-2594 (($ (-588 (-588 |#1|))) 9)) (-2862 (((-588 (-588 |#1|)) $) 10)) (-2217 (((-792) $) 25)))
+(((-1093 |#1|) (-10 -8 (-15 -2594 ($ (-588 (-588 |#1|)))) (-15 -2862 ((-588 (-588 |#1|)) $)) (-15 -2217 ((-792) $))) (-1014)) (T -1093))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-1093 *3)) (-4 *3 (-1014)))) (-2862 (*1 *2 *1) (-12 (-5 *2 (-588 (-588 *3))) (-5 *1 (-1093 *3)) (-4 *3 (-1014)))) (-2594 (*1 *1 *2) (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-1093 *3)))))
+(-10 -8 (-15 -2594 ($ (-588 (-588 |#1|)))) (-15 -2862 ((-588 (-588 |#1|)) $)) (-15 -2217 ((-792) $)))
+((-1419 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-1883 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-3883 (((-1171) $ |#1| |#1|) NIL (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#2| $ |#1| |#2|) NIL)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-4011 (((-3 |#2| "failed") |#1| $) NIL)) (-3367 (($) NIL T CONST)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-1700 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) NIL)) (-1424 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#2| $ |#1|) NIL)) (-2395 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) NIL)) (-3496 ((|#1| $) NIL (|has| |#1| (-784)))) (-4084 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-588 |#2|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-2201 ((|#1| $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2562 (((-588 |#1|) $) NIL)) (-2241 (((-108) |#1| $) NIL)) (-1431 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3365 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-2130 (((-588 |#1|) $) NIL)) (-2103 (((-108) |#1| $) NIL)) (-4174 (((-1032) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-2337 ((|#2| $) NIL (|has| |#1| (-784)))) (-2187 (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL)) (-1972 (($ $ |#2|) NIL (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1973 (((-588 |#2|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3546 (($) NIL) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) NIL (-12 (|has| $ (-6 -4238)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (((-708) |#2| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014)))) (((-708) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-2217 (((-792) $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792))) (|has| |#2| (-562 (-792)))))) (-2501 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) NIL)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) NIL (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) NIL (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) NIL (-3844 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| |#2| (-1014))))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
(((-1094 |#1| |#2|) (-13 (-1097 |#1| |#2|) (-10 -7 (-6 -4238))) (-1014) (-1014)) (T -1094))
NIL
(-13 (-1097 |#1| |#2|) (-10 -7 (-6 -4238)))
-((-3292 ((|#1| (-588 |#1|)) 32)) (-3616 ((|#1| |#1| (-522)) 18)) (-1686 (((-1081 |#1|) |#1| (-850)) 15)))
-(((-1095 |#1|) (-10 -7 (-15 -3292 (|#1| (-588 |#1|))) (-15 -1686 ((-1081 |#1|) |#1| (-850))) (-15 -3616 (|#1| |#1| (-522)))) (-338)) (T -1095))
-((-3616 (*1 *2 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-1095 *2)) (-4 *2 (-338)))) (-1686 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-5 *2 (-1081 *3)) (-5 *1 (-1095 *3)) (-4 *3 (-338)))) (-3292 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-5 *1 (-1095 *2)) (-4 *2 (-338)))))
-(-10 -7 (-15 -3292 (|#1| (-588 |#1|))) (-15 -1686 ((-1081 |#1|) |#1| (-850))) (-15 -3616 (|#1| |#1| (-522))))
-((-1800 (($) 10) (($ (-588 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)))) 14)) (-3859 (($ (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) $) 60) (($ (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-3837 (((-588 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) $) 39) (((-588 |#3|) $) 41)) (-3838 (($ (-1 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) $) 52) (($ (-1 |#3| |#3|) $) 33)) (-1391 (($ (-1 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) $) 50) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-2116 (((-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) $) 53)) (-4095 (($ (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) $) 16)) (-3604 (((-588 |#2|) $) 19)) (-1405 (((-108) |#2| $) 58)) (-1414 (((-3 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) "failed") (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) $) 57)) (-4087 (((-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) $) 62)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) $) NIL) (((-108) (-1 (-108) |#3|) $) 66)) (-1525 (((-588 |#3|) $) 43)) (-2545 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) $) NIL) (((-708) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) $) NIL) (((-708) |#3| $) NIL) (((-708) (-1 (-108) |#3|) $) 67)) (-2190 (((-792) $) 27)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) $) NIL) (((-108) (-1 (-108) |#3|) $) 64)) (-1531 (((-108) $ $) 48)))
-(((-1096 |#1| |#2| |#3|) (-10 -8 (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -1391 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1800 (|#1| (-588 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))))) (-15 -1800 (|#1|)) (-15 -1391 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3838 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3648 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -3053 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -4168 ((-708) (-1 (-108) |#3|) |#1|)) (-15 -3837 ((-588 |#3|) |#1|)) (-15 -4168 ((-708) |#3| |#1|)) (-15 -2545 (|#3| |#1| |#2| |#3|)) (-15 -2545 (|#3| |#1| |#2|)) (-15 -1525 ((-588 |#3|) |#1|)) (-15 -1405 ((-108) |#2| |#1|)) (-15 -3604 ((-588 |#2|) |#1|)) (-15 -3859 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3859 (|#1| (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -3859 (|#1| (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) |#1|)) (-15 -1414 ((-3 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) "failed") (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -2116 ((-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) |#1|)) (-15 -4095 (|#1| (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) |#1|)) (-15 -4087 ((-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) |#1|)) (-15 -4168 ((-708) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) |#1|)) (-15 -3837 ((-588 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -4168 ((-708) (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -3053 ((-108) (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -3648 ((-108) (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -3838 (|#1| (-1 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -1391 (|#1| (-1 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|))) (-1097 |#2| |#3|) (-1014) (-1014)) (T -1096))
-NIL
-(-10 -8 (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -1391 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1800 (|#1| (-588 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))))) (-15 -1800 (|#1|)) (-15 -1391 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3838 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3648 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -3053 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -4168 ((-708) (-1 (-108) |#3|) |#1|)) (-15 -3837 ((-588 |#3|) |#1|)) (-15 -4168 ((-708) |#3| |#1|)) (-15 -2545 (|#3| |#1| |#2| |#3|)) (-15 -2545 (|#3| |#1| |#2|)) (-15 -1525 ((-588 |#3|) |#1|)) (-15 -1405 ((-108) |#2| |#1|)) (-15 -3604 ((-588 |#2|) |#1|)) (-15 -3859 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3859 (|#1| (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -3859 (|#1| (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) |#1|)) (-15 -1414 ((-3 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) "failed") (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -2116 ((-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) |#1|)) (-15 -4095 (|#1| (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) |#1|)) (-15 -4087 ((-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) |#1|)) (-15 -4168 ((-708) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) |#1|)) (-15 -3837 ((-588 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -4168 ((-708) (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -3053 ((-108) (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -3648 ((-108) (-1 (-108) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -3838 (|#1| (-1 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)) (-15 -1391 (|#1| (-1 (-2 (|:| -2530 |#2|) (|:| -3048 |#3|)) (-2 (|:| -2530 |#2|) (|:| -3048 |#3|))) |#1|)))
-((-1416 (((-108) $ $) 19 (-3708 (|has| |#2| (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-1800 (($) 72) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 71)) (-2679 (((-1171) $ |#1| |#1|) 99 (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) 8)) (-2379 ((|#2| $ |#1| |#2|) 73)) (-2790 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 45 (|has| $ (-6 -4238)))) (-1628 (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 55 (|has| $ (-6 -4238)))) (-2750 (((-3 |#2| "failed") |#1| $) 61)) (-3175 (($) 7 T CONST)) (-2333 (($ $) 58 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238))))) (-3859 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 46 (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) 62)) (-1423 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 54 (|has| $ (-6 -4238)))) (-3864 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 56 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 53 (|has| $ (-6 -4238))) (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 52 (|has| $ (-6 -4238)))) (-3854 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4239)))) (-3631 ((|#2| $ |#1|) 88)) (-3837 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 30 (|has| $ (-6 -4238))) (((-588 |#2|) $) 79 (|has| $ (-6 -4238)))) (-3352 (((-108) $ (-708)) 9)) (-1359 ((|#1| $) 96 (|has| |#1| (-784)))) (-3308 (((-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 29 (|has| $ (-6 -4238))) (((-588 |#2|) $) 80 (|has| $ (-6 -4238)))) (-2246 (((-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-108) |#2| $) 82 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-2014 ((|#1| $) 95 (|has| |#1| (-784)))) (-3838 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 34 (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4239)))) (-1391 (($ (-1 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70)) (-2720 (((-108) $ (-708)) 10)) (-2385 (((-1068) $) 22 (-3708 (|has| |#2| (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-2966 (((-588 |#1|) $) 63)) (-1231 (((-108) |#1| $) 64)) (-2116 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 39)) (-4095 (($ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 40)) (-3604 (((-588 |#1|) $) 93)) (-1405 (((-108) |#1| $) 92)) (-4151 (((-1032) $) 21 (-3708 (|has| |#2| (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-2294 ((|#2| $) 97 (|has| |#1| (-784)))) (-1414 (((-3 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) "failed") (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 51)) (-2602 (($ $ |#2|) 98 (|has| $ (-6 -4239)))) (-4087 (((-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 41)) (-3053 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 32 (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) 77 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))))) 26 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 25 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) 24 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 23 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) 86 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) 84 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) 83 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#2| $) 94 (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1525 (((-588 |#2|) $) 91)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89)) (-3990 (($) 49) (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 48)) (-4168 (((-708) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 31 (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-708) |#2| $) 81 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#2|) $) 78 (|has| $ (-6 -4238)))) (-2404 (($ $) 13)) (-1431 (((-498) $) 59 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))))) (-2201 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 50)) (-2190 (((-792) $) 18 (-3708 (|has| |#2| (-562 (-792))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792)))))) (-2795 (($ (-588 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) 42)) (-3648 (((-108) (-1 (-108) (-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) $) 33 (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) 76 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (-3708 (|has| |#2| (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-2084 ((|#1| (-588 |#1|)) 32)) (-4100 ((|#1| |#1| (-522)) 18)) (-2795 (((-1081 |#1|) |#1| (-850)) 15)))
+(((-1095 |#1|) (-10 -7 (-15 -2084 (|#1| (-588 |#1|))) (-15 -2795 ((-1081 |#1|) |#1| (-850))) (-15 -4100 (|#1| |#1| (-522)))) (-338)) (T -1095))
+((-4100 (*1 *2 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-1095 *2)) (-4 *2 (-338)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *4 (-850)) (-5 *2 (-1081 *3)) (-5 *1 (-1095 *3)) (-4 *3 (-338)))) (-2084 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-5 *1 (-1095 *2)) (-4 *2 (-338)))))
+(-10 -7 (-15 -2084 (|#1| (-588 |#1|))) (-15 -2795 ((-1081 |#1|) |#1| (-850))) (-15 -4100 (|#1| |#1| (-522))))
+((-1883 (($) 10) (($ (-588 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)))) 14)) (-1700 (($ (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) $) 60) (($ (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-2395 (((-588 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) $) 39) (((-588 |#3|) $) 41)) (-2397 (($ (-1 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) $) 52) (($ (-1 |#3| |#3|) $) 33)) (-3810 (($ (-1 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) $) 50) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-1431 (((-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) $) 53)) (-3365 (($ (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) $) 16)) (-2130 (((-588 |#2|) $) 19)) (-2103 (((-108) |#2| $) 58)) (-2187 (((-3 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) "failed") (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) $) 57)) (-3295 (((-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) $) 62)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) $) NIL) (((-108) (-1 (-108) |#3|) $) 66)) (-1973 (((-588 |#3|) $) 43)) (-2683 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) $) NIL) (((-708) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) $) NIL) (((-708) |#3| $) NIL) (((-708) (-1 (-108) |#3|) $) 67)) (-2217 (((-792) $) 27)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) $) NIL) (((-108) (-1 (-108) |#3|) $) 64)) (-1562 (((-108) $ $) 48)))
+(((-1096 |#1| |#2| |#3|) (-10 -8 (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -3810 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1883 (|#1| (-588 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))))) (-15 -1883 (|#1|)) (-15 -3810 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2397 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1381 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -3487 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -4187 ((-708) (-1 (-108) |#3|) |#1|)) (-15 -2395 ((-588 |#3|) |#1|)) (-15 -4187 ((-708) |#3| |#1|)) (-15 -2683 (|#3| |#1| |#2| |#3|)) (-15 -2683 (|#3| |#1| |#2|)) (-15 -1973 ((-588 |#3|) |#1|)) (-15 -2103 ((-108) |#2| |#1|)) (-15 -2130 ((-588 |#2|) |#1|)) (-15 -1700 ((-3 |#3| "failed") |#2| |#1|)) (-15 -1700 (|#1| (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -1700 (|#1| (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) |#1|)) (-15 -2187 ((-3 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) "failed") (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -1431 ((-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) |#1|)) (-15 -3365 (|#1| (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) |#1|)) (-15 -3295 ((-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) |#1|)) (-15 -4187 ((-708) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) |#1|)) (-15 -2395 ((-588 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -4187 ((-708) (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -3487 ((-108) (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -1381 ((-108) (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -2397 (|#1| (-1 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -3810 (|#1| (-1 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|))) (-1097 |#2| |#3|) (-1014) (-1014)) (T -1096))
+NIL
+(-10 -8 (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -3810 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1883 (|#1| (-588 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))))) (-15 -1883 (|#1|)) (-15 -3810 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2397 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1381 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -3487 ((-108) (-1 (-108) |#3|) |#1|)) (-15 -4187 ((-708) (-1 (-108) |#3|) |#1|)) (-15 -2395 ((-588 |#3|) |#1|)) (-15 -4187 ((-708) |#3| |#1|)) (-15 -2683 (|#3| |#1| |#2| |#3|)) (-15 -2683 (|#3| |#1| |#2|)) (-15 -1973 ((-588 |#3|) |#1|)) (-15 -2103 ((-108) |#2| |#1|)) (-15 -2130 ((-588 |#2|) |#1|)) (-15 -1700 ((-3 |#3| "failed") |#2| |#1|)) (-15 -1700 (|#1| (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -1700 (|#1| (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) |#1|)) (-15 -2187 ((-3 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) "failed") (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -1431 ((-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) |#1|)) (-15 -3365 (|#1| (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) |#1|)) (-15 -3295 ((-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) |#1|)) (-15 -4187 ((-708) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) |#1|)) (-15 -2395 ((-588 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -4187 ((-708) (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -3487 ((-108) (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -1381 ((-108) (-1 (-108) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -2397 (|#1| (-1 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)) (-15 -3810 (|#1| (-1 (-2 (|:| -2644 |#2|) (|:| -3149 |#3|)) (-2 (|:| -2644 |#2|) (|:| -3149 |#3|))) |#1|)))
+((-1419 (((-108) $ $) 19 (-3844 (|has| |#2| (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-1883 (($) 72) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 71)) (-3883 (((-1171) $ |#1| |#1|) 99 (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) 8)) (-2437 ((|#2| $ |#1| |#2|) 73)) (-1213 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 45 (|has| $ (-6 -4238)))) (-1696 (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 55 (|has| $ (-6 -4238)))) (-4011 (((-3 |#2| "failed") |#1| $) 61)) (-3367 (($) 7 T CONST)) (-2379 (($ $) 58 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238))))) (-1700 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 47 (|has| $ (-6 -4238))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 46 (|has| $ (-6 -4238))) (((-3 |#2| "failed") |#1| $) 62)) (-1424 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 54 (|has| $ (-6 -4238)))) (-2153 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 56 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 53 (|has| $ (-6 -4238))) (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 52 (|has| $ (-6 -4238)))) (-2411 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4239)))) (-2186 ((|#2| $ |#1|) 88)) (-2395 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 30 (|has| $ (-6 -4238))) (((-588 |#2|) $) 79 (|has| $ (-6 -4238)))) (-1480 (((-108) $ (-708)) 9)) (-3496 ((|#1| $) 96 (|has| |#1| (-784)))) (-4084 (((-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 29 (|has| $ (-6 -4238))) (((-588 |#2|) $) 80 (|has| $ (-6 -4238)))) (-4176 (((-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-108) |#2| $) 82 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238))))) (-2201 ((|#1| $) 95 (|has| |#1| (-784)))) (-2397 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 34 (|has| $ (-6 -4239))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4239)))) (-3810 (($ (-1 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70)) (-3309 (((-108) $ (-708)) 10)) (-2311 (((-1068) $) 22 (-3844 (|has| |#2| (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-2562 (((-588 |#1|) $) 63)) (-2241 (((-108) |#1| $) 64)) (-1431 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 39)) (-3365 (($ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 40)) (-2130 (((-588 |#1|) $) 93)) (-2103 (((-108) |#1| $) 92)) (-4174 (((-1032) $) 21 (-3844 (|has| |#2| (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-2337 ((|#2| $) 97 (|has| |#1| (-784)))) (-2187 (((-3 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) "failed") (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 51)) (-1972 (($ $ |#2|) 98 (|has| $ (-6 -4239)))) (-3295 (((-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 41)) (-3487 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 32 (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) 77 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))))) 26 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-270 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 25 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) 24 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 23 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)))) (($ $ (-588 |#2|) (-588 |#2|)) 86 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-270 |#2|)) 84 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014)))) (($ $ (-588 (-270 |#2|))) 83 (-12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#2| $) 94 (-12 (|has| $ (-6 -4238)) (|has| |#2| (-1014))))) (-1973 (((-588 |#2|) $) 91)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89)) (-3546 (($) 49) (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 48)) (-4187 (((-708) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 31 (|has| $ (-6 -4238))) (((-708) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| $ (-6 -4238)))) (((-708) |#2| $) 81 (-12 (|has| |#2| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#2|) $) 78 (|has| $ (-6 -4238)))) (-2463 (($ $) 13)) (-3873 (((-498) $) 59 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))))) (-2227 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 50)) (-2217 (((-792) $) 18 (-3844 (|has| |#2| (-562 (-792))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792)))))) (-2501 (($ (-588 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) 42)) (-1381 (((-108) (-1 (-108) (-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) $) 33 (|has| $ (-6 -4238))) (((-108) (-1 (-108) |#2|) $) 76 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (-3844 (|has| |#2| (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-1097 |#1| |#2|) (-1197) (-1014) (-1014)) (T -1097))
-((-2379 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1097 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))) (-1800 (*1 *1) (-12 (-4 *1 (-1097 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-1800 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -2530 *3) (|:| -3048 *4)))) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *1 (-1097 *3 *4)))) (-1391 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1097 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))))
-(-13 (-559 |t#1| |t#2|) (-555 |t#1| |t#2|) (-10 -8 (-15 -2379 (|t#2| $ |t#1| |t#2|)) (-15 -1800 ($)) (-15 -1800 ($ (-588 (-2 (|:| -2530 |t#1|) (|:| -3048 |t#2|))))) (-15 -1391 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
-(((-33) . T) ((-102 #0=(-2 (|:| -2530 |#1|) (|:| -3048 |#2|))) . T) ((-97) -3708 (|has| |#2| (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))) ((-562 (-792)) -3708 (|has| |#2| (-1014)) (|has| |#2| (-562 (-792))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-562 (-792)))) ((-139 #0#) . T) ((-563 (-498)) |has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-563 (-498))) ((-206 #0#) . T) ((-212 #0#) . T) ((-262 |#1| |#2|) . T) ((-264 |#1| |#2|) . T) ((-285 #0#) -12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))) ((-285 |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-461 #0#) . T) ((-461 |#2|) . T) ((-555 |#1| |#2|) . T) ((-483 #0# #0#) -12 (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-285 (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)))) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))) ((-483 |#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-559 |#1| |#2|) . T) ((-1014) -3708 (|has| |#2| (-1014)) (|has| (-2 (|:| -2530 |#1|) (|:| -3048 |#2|)) (-1014))) ((-1120) . T))
-((-2869 (((-108)) 24)) (-1397 (((-1171) (-1068)) 26)) (-3769 (((-108)) 36)) (-3334 (((-1171)) 34)) (-2083 (((-1171) (-1068) (-1068)) 25)) (-1940 (((-108)) 37)) (-4095 (((-1171) |#1| |#2|) 44)) (-2625 (((-1171)) 20)) (-2651 (((-3 |#2| "failed") |#1|) 42)) (-3571 (((-1171)) 35)))
-(((-1098 |#1| |#2|) (-10 -7 (-15 -2625 ((-1171))) (-15 -2083 ((-1171) (-1068) (-1068))) (-15 -1397 ((-1171) (-1068))) (-15 -3334 ((-1171))) (-15 -3571 ((-1171))) (-15 -2869 ((-108))) (-15 -3769 ((-108))) (-15 -1940 ((-108))) (-15 -2651 ((-3 |#2| "failed") |#1|)) (-15 -4095 ((-1171) |#1| |#2|))) (-1014) (-1014)) (T -1098))
-((-4095 (*1 *2 *3 *4) (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-2651 (*1 *2 *3) (|partial| -12 (-4 *2 (-1014)) (-5 *1 (-1098 *3 *2)) (-4 *3 (-1014)))) (-1940 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-3769 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-2869 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-3571 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-3334 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-1397 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1098 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1014)))) (-2083 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1098 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1014)))) (-2625 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))))
-(-10 -7 (-15 -2625 ((-1171))) (-15 -2083 ((-1171) (-1068) (-1068))) (-15 -1397 ((-1171) (-1068))) (-15 -3334 ((-1171))) (-15 -3571 ((-1171))) (-15 -2869 ((-108))) (-15 -3769 ((-108))) (-15 -1940 ((-108))) (-15 -2651 ((-3 |#2| "failed") |#1|)) (-15 -4095 ((-1171) |#1| |#2|)))
-((-4024 (((-1068) (-1068)) 18)) (-3312 (((-51) (-1068)) 21)))
-(((-1099) (-10 -7 (-15 -3312 ((-51) (-1068))) (-15 -4024 ((-1068) (-1068))))) (T -1099))
-((-4024 (*1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1099)))) (-3312 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-51)) (-5 *1 (-1099)))))
-(-10 -7 (-15 -3312 ((-51) (-1068))) (-15 -4024 ((-1068) (-1068))))
-((-2190 (((-1101) |#1|) 11)))
-(((-1100 |#1|) (-10 -7 (-15 -2190 ((-1101) |#1|))) (-1014)) (T -1100))
-((-2190 (*1 *2 *3) (-12 (-5 *2 (-1101)) (-5 *1 (-1100 *3)) (-4 *3 (-1014)))))
-(-10 -7 (-15 -2190 ((-1101) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-1632 (((-588 (-1068)) $) 33)) (-2021 (((-588 (-1068)) $ (-588 (-1068))) 36)) (-2301 (((-588 (-1068)) $ (-588 (-1068))) 35)) (-3900 (((-588 (-1068)) $ (-588 (-1068))) 37)) (-2536 (((-588 (-1068)) $) 32)) (-1811 (($) 22)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2185 (((-588 (-1068)) $) 34)) (-1678 (((-1171) $ (-522)) 29) (((-1171) $) 30)) (-1431 (($ (-792) (-522)) 26) (($ (-792) (-522) (-792)) NIL)) (-2190 (((-792) $) 39) (($ (-792)) 24)) (-1531 (((-108) $ $) NIL)))
-(((-1101) (-13 (-1014) (-10 -8 (-15 -2190 ($ (-792))) (-15 -1431 ($ (-792) (-522))) (-15 -1431 ($ (-792) (-522) (-792))) (-15 -1678 ((-1171) $ (-522))) (-15 -1678 ((-1171) $)) (-15 -2185 ((-588 (-1068)) $)) (-15 -1632 ((-588 (-1068)) $)) (-15 -1811 ($)) (-15 -2536 ((-588 (-1068)) $)) (-15 -3900 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2021 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2301 ((-588 (-1068)) $ (-588 (-1068))))))) (T -1101))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-792)) (-5 *1 (-1101)))) (-1431 (*1 *1 *2 *3) (-12 (-5 *2 (-792)) (-5 *3 (-522)) (-5 *1 (-1101)))) (-1431 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-792)) (-5 *3 (-522)) (-5 *1 (-1101)))) (-1678 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-1101)))) (-1678 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1101)))) (-2185 (*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))) (-1632 (*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))) (-1811 (*1 *1) (-5 *1 (-1101))) (-2536 (*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))) (-3900 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))) (-2021 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))) (-2301 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
-(-13 (-1014) (-10 -8 (-15 -2190 ($ (-792))) (-15 -1431 ($ (-792) (-522))) (-15 -1431 ($ (-792) (-522) (-792))) (-15 -1678 ((-1171) $ (-522))) (-15 -1678 ((-1171) $)) (-15 -2185 ((-588 (-1068)) $)) (-15 -1632 ((-588 (-1068)) $)) (-15 -1811 ($)) (-15 -2536 ((-588 (-1068)) $)) (-15 -3900 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2021 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2301 ((-588 (-1068)) $ (-588 (-1068))))))
-((-1416 (((-108) $ $) NIL)) (-2829 (((-1068) $ (-1068)) 15) (((-1068) $) 14)) (-1270 (((-1068) $ (-1068)) 13)) (-2563 (($ $ (-1068)) NIL)) (-1284 (((-3 (-1068) "failed") $) 11)) (-3519 (((-1068) $) 8)) (-1789 (((-3 (-1068) "failed") $) 12)) (-4045 (((-1068) $) 9)) (-1544 (($ (-363)) NIL) (($ (-363) (-1068)) NIL)) (-2888 (((-363) $) NIL)) (-2385 (((-1068) $) NIL)) (-3469 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2668 (((-108) $) 17)) (-2190 (((-792) $) NIL)) (-2152 (($ $) NIL)) (-1531 (((-108) $ $) NIL)))
-(((-1102) (-13 (-339 (-363) (-1068)) (-10 -8 (-15 -2829 ((-1068) $ (-1068))) (-15 -2829 ((-1068) $)) (-15 -3519 ((-1068) $)) (-15 -1284 ((-3 (-1068) "failed") $)) (-15 -1789 ((-3 (-1068) "failed") $)) (-15 -2668 ((-108) $))))) (T -1102))
-((-2829 (*1 *2 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1102)))) (-2829 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1102)))) (-3519 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1102)))) (-1284 (*1 *2 *1) (|partial| -12 (-5 *2 (-1068)) (-5 *1 (-1102)))) (-1789 (*1 *2 *1) (|partial| -12 (-5 *2 (-1068)) (-5 *1 (-1102)))) (-2668 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1102)))))
-(-13 (-339 (-363) (-1068)) (-10 -8 (-15 -2829 ((-1068) $ (-1068))) (-15 -2829 ((-1068) $)) (-15 -3519 ((-1068) $)) (-15 -1284 ((-3 (-1068) "failed") $)) (-15 -1789 ((-3 (-1068) "failed") $)) (-15 -2668 ((-108) $))))
-((-1341 (((-3 (-522) "failed") |#1|) 19)) (-1315 (((-3 (-522) "failed") |#1|) 13)) (-2287 (((-522) (-1068)) 28)))
-(((-1103 |#1|) (-10 -7 (-15 -1341 ((-3 (-522) "failed") |#1|)) (-15 -1315 ((-3 (-522) "failed") |#1|)) (-15 -2287 ((-522) (-1068)))) (-971)) (T -1103))
-((-2287 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-522)) (-5 *1 (-1103 *4)) (-4 *4 (-971)))) (-1315 (*1 *2 *3) (|partial| -12 (-5 *2 (-522)) (-5 *1 (-1103 *3)) (-4 *3 (-971)))) (-1341 (*1 *2 *3) (|partial| -12 (-5 *2 (-522)) (-5 *1 (-1103 *3)) (-4 *3 (-971)))))
-(-10 -7 (-15 -1341 ((-3 (-522) "failed") |#1|)) (-15 -1315 ((-3 (-522) "failed") |#1|)) (-15 -2287 ((-522) (-1068))))
-((-2452 (((-1045 (-202))) 8)))
-(((-1104) (-10 -7 (-15 -2452 ((-1045 (-202)))))) (T -1104))
-((-2452 (*1 *2) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-1104)))))
-(-10 -7 (-15 -2452 ((-1045 (-202)))))
-((-2838 (($) 11)) (-1759 (($ $) 35)) (-1745 (($ $) 33)) (-2815 (($ $) 25)) (-1776 (($ $) 17)) (-3924 (($ $) 15)) (-1768 (($ $) 19)) (-2848 (($ $) 30)) (-1752 (($ $) 34)) (-2825 (($ $) 29)))
-(((-1105 |#1|) (-10 -8 (-15 -2838 (|#1|)) (-15 -1759 (|#1| |#1|)) (-15 -1745 (|#1| |#1|)) (-15 -1776 (|#1| |#1|)) (-15 -3924 (|#1| |#1|)) (-15 -1768 (|#1| |#1|)) (-15 -1752 (|#1| |#1|)) (-15 -2815 (|#1| |#1|)) (-15 -2848 (|#1| |#1|)) (-15 -2825 (|#1| |#1|))) (-1106)) (T -1105))
-NIL
-(-10 -8 (-15 -2838 (|#1|)) (-15 -1759 (|#1| |#1|)) (-15 -1745 (|#1| |#1|)) (-15 -1776 (|#1| |#1|)) (-15 -3924 (|#1| |#1|)) (-15 -1768 (|#1| |#1|)) (-15 -1752 (|#1| |#1|)) (-15 -2815 (|#1| |#1|)) (-15 -2848 (|#1| |#1|)) (-15 -2825 (|#1| |#1|)))
-((-2908 (($ $) 26)) (-2772 (($ $) 11)) (-2884 (($ $) 27)) (-2748 (($ $) 10)) (-2930 (($ $) 28)) (-2794 (($ $) 9)) (-2838 (($) 16)) (-1254 (($ $) 19)) (-3266 (($ $) 18)) (-1738 (($ $) 29)) (-2804 (($ $) 8)) (-2919 (($ $) 30)) (-2784 (($ $) 7)) (-2896 (($ $) 31)) (-2761 (($ $) 6)) (-1759 (($ $) 20)) (-2836 (($ $) 32)) (-1745 (($ $) 21)) (-2815 (($ $) 33)) (-1776 (($ $) 22)) (-2860 (($ $) 34)) (-3924 (($ $) 23)) (-2872 (($ $) 35)) (-1768 (($ $) 24)) (-2848 (($ $) 36)) (-1752 (($ $) 25)) (-2825 (($ $) 37)) (** (($ $ $) 17)))
+((-2437 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1097 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))) (-1883 (*1 *1) (-12 (-4 *1 (-1097 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))) (-1883 (*1 *1 *2) (-12 (-5 *2 (-588 (-2 (|:| -2644 *3) (|:| -3149 *4)))) (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *1 (-1097 *3 *4)))) (-3810 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1097 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))))
+(-13 (-559 |t#1| |t#2|) (-555 |t#1| |t#2|) (-10 -8 (-15 -2437 (|t#2| $ |t#1| |t#2|)) (-15 -1883 ($)) (-15 -1883 ($ (-588 (-2 (|:| -2644 |t#1|) (|:| -3149 |t#2|))))) (-15 -3810 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
+(((-33) . T) ((-102 #0=(-2 (|:| -2644 |#1|) (|:| -3149 |#2|))) . T) ((-97) -3844 (|has| |#2| (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))) ((-562 (-792)) -3844 (|has| |#2| (-1014)) (|has| |#2| (-562 (-792))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-562 (-792)))) ((-139 #0#) . T) ((-563 (-498)) |has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-563 (-498))) ((-206 #0#) . T) ((-212 #0#) . T) ((-262 |#1| |#2|) . T) ((-264 |#1| |#2|) . T) ((-285 #0#) -12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))) ((-285 |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-461 #0#) . T) ((-461 |#2|) . T) ((-555 |#1| |#2|) . T) ((-483 #0# #0#) -12 (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-285 (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)))) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))) ((-483 |#2| |#2|) -12 (|has| |#2| (-285 |#2|)) (|has| |#2| (-1014))) ((-559 |#1| |#2|) . T) ((-1014) -3844 (|has| |#2| (-1014)) (|has| (-2 (|:| -2644 |#1|) (|:| -3149 |#2|)) (-1014))) ((-1120) . T))
+((-1285 (((-108)) 24)) (-3819 (((-1171) (-1068)) 26)) (-3243 (((-108)) 36)) (-1318 (((-1171)) 34)) (-4129 (((-1171) (-1068) (-1068)) 25)) (-1479 (((-108)) 37)) (-3365 (((-1171) |#1| |#2|) 44)) (-1761 (((-1171)) 20)) (-1722 (((-3 |#2| "failed") |#1|) 42)) (-1865 (((-1171)) 35)))
+(((-1098 |#1| |#2|) (-10 -7 (-15 -1761 ((-1171))) (-15 -4129 ((-1171) (-1068) (-1068))) (-15 -3819 ((-1171) (-1068))) (-15 -1318 ((-1171))) (-15 -1865 ((-1171))) (-15 -1285 ((-108))) (-15 -3243 ((-108))) (-15 -1479 ((-108))) (-15 -1722 ((-3 |#2| "failed") |#1|)) (-15 -3365 ((-1171) |#1| |#2|))) (-1014) (-1014)) (T -1098))
+((-3365 (*1 *2 *3 *4) (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-1722 (*1 *2 *3) (|partial| -12 (-4 *2 (-1014)) (-5 *1 (-1098 *3 *2)) (-4 *3 (-1014)))) (-1479 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-3243 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-1285 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-1865 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-1318 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))) (-3819 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1098 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1014)))) (-4129 (*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1098 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1014)))) (-1761 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014)))))
+(-10 -7 (-15 -1761 ((-1171))) (-15 -4129 ((-1171) (-1068) (-1068))) (-15 -3819 ((-1171) (-1068))) (-15 -1318 ((-1171))) (-15 -1865 ((-1171))) (-15 -1285 ((-108))) (-15 -3243 ((-108))) (-15 -1479 ((-108))) (-15 -1722 ((-3 |#2| "failed") |#1|)) (-15 -3365 ((-1171) |#1| |#2|)))
+((-3879 (((-1068) (-1068)) 18)) (-4121 (((-51) (-1068)) 21)))
+(((-1099) (-10 -7 (-15 -4121 ((-51) (-1068))) (-15 -3879 ((-1068) (-1068))))) (T -1099))
+((-3879 (*1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1099)))) (-4121 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-51)) (-5 *1 (-1099)))))
+(-10 -7 (-15 -4121 ((-51) (-1068))) (-15 -3879 ((-1068) (-1068))))
+((-2217 (((-1101) |#1|) 11)))
+(((-1100 |#1|) (-10 -7 (-15 -2217 ((-1101) |#1|))) (-1014)) (T -1100))
+((-2217 (*1 *2 *3) (-12 (-5 *2 (-1101)) (-5 *1 (-1100 *3)) (-4 *3 (-1014)))))
+(-10 -7 (-15 -2217 ((-1101) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-1698 (((-588 (-1068)) $) 33)) (-2284 (((-588 (-1068)) $ (-588 (-1068))) 36)) (-2716 (((-588 (-1068)) $ (-588 (-1068))) 35)) (-2034 (((-588 (-1068)) $ (-588 (-1068))) 37)) (-3506 (((-588 (-1068)) $) 32)) (-1893 (($) 22)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3359 (((-588 (-1068)) $) 34)) (-1757 (((-1171) $ (-522)) 29) (((-1171) $) 30)) (-3873 (($ (-792) (-522)) 26) (($ (-792) (-522) (-792)) NIL)) (-2217 (((-792) $) 39) (($ (-792)) 24)) (-1562 (((-108) $ $) NIL)))
+(((-1101) (-13 (-1014) (-10 -8 (-15 -2217 ($ (-792))) (-15 -3873 ($ (-792) (-522))) (-15 -3873 ($ (-792) (-522) (-792))) (-15 -1757 ((-1171) $ (-522))) (-15 -1757 ((-1171) $)) (-15 -3359 ((-588 (-1068)) $)) (-15 -1698 ((-588 (-1068)) $)) (-15 -1893 ($)) (-15 -3506 ((-588 (-1068)) $)) (-15 -2034 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2284 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2716 ((-588 (-1068)) $ (-588 (-1068))))))) (T -1101))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-792)) (-5 *1 (-1101)))) (-3873 (*1 *1 *2 *3) (-12 (-5 *2 (-792)) (-5 *3 (-522)) (-5 *1 (-1101)))) (-3873 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-792)) (-5 *3 (-522)) (-5 *1 (-1101)))) (-1757 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-1101)))) (-1757 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1101)))) (-3359 (*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))) (-1698 (*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))) (-1893 (*1 *1) (-5 *1 (-1101))) (-3506 (*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))) (-2034 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))) (-2284 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))) (-2716 (*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
+(-13 (-1014) (-10 -8 (-15 -2217 ($ (-792))) (-15 -3873 ($ (-792) (-522))) (-15 -3873 ($ (-792) (-522) (-792))) (-15 -1757 ((-1171) $ (-522))) (-15 -1757 ((-1171) $)) (-15 -3359 ((-588 (-1068)) $)) (-15 -1698 ((-588 (-1068)) $)) (-15 -1893 ($)) (-15 -3506 ((-588 (-1068)) $)) (-15 -2034 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2284 ((-588 (-1068)) $ (-588 (-1068)))) (-15 -2716 ((-588 (-1068)) $ (-588 (-1068))))))
+((-1419 (((-108) $ $) NIL)) (-2864 (((-1068) $ (-1068)) 15) (((-1068) $) 14)) (-2710 (((-1068) $ (-1068)) 13)) (-3813 (($ $ (-1068)) NIL)) (-1561 (((-3 (-1068) "failed") $) 11)) (-2566 (((-1068) $) 8)) (-3688 (((-3 (-1068) "failed") $) 12)) (-2982 (((-1068) $) 9)) (-1566 (($ (-363)) NIL) (($ (-363) (-1068)) NIL)) (-3015 (((-363) $) NIL)) (-2311 (((-1068) $) NIL)) (-3270 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3764 (((-108) $) 17)) (-2217 (((-792) $) NIL)) (-3116 (($ $) NIL)) (-1562 (((-108) $ $) NIL)))
+(((-1102) (-13 (-339 (-363) (-1068)) (-10 -8 (-15 -2864 ((-1068) $ (-1068))) (-15 -2864 ((-1068) $)) (-15 -2566 ((-1068) $)) (-15 -1561 ((-3 (-1068) "failed") $)) (-15 -3688 ((-3 (-1068) "failed") $)) (-15 -3764 ((-108) $))))) (T -1102))
+((-2864 (*1 *2 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1102)))) (-2864 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1102)))) (-2566 (*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1102)))) (-1561 (*1 *2 *1) (|partial| -12 (-5 *2 (-1068)) (-5 *1 (-1102)))) (-3688 (*1 *2 *1) (|partial| -12 (-5 *2 (-1068)) (-5 *1 (-1102)))) (-3764 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1102)))))
+(-13 (-339 (-363) (-1068)) (-10 -8 (-15 -2864 ((-1068) $ (-1068))) (-15 -2864 ((-1068) $)) (-15 -2566 ((-1068) $)) (-15 -1561 ((-3 (-1068) "failed") $)) (-15 -3688 ((-3 (-1068) "failed") $)) (-15 -3764 ((-108) $))))
+((-3355 (((-3 (-522) "failed") |#1|) 19)) (-1857 (((-3 (-522) "failed") |#1|) 13)) (-2454 (((-522) (-1068)) 28)))
+(((-1103 |#1|) (-10 -7 (-15 -3355 ((-3 (-522) "failed") |#1|)) (-15 -1857 ((-3 (-522) "failed") |#1|)) (-15 -2454 ((-522) (-1068)))) (-971)) (T -1103))
+((-2454 (*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-522)) (-5 *1 (-1103 *4)) (-4 *4 (-971)))) (-1857 (*1 *2 *3) (|partial| -12 (-5 *2 (-522)) (-5 *1 (-1103 *3)) (-4 *3 (-971)))) (-3355 (*1 *2 *3) (|partial| -12 (-5 *2 (-522)) (-5 *1 (-1103 *3)) (-4 *3 (-971)))))
+(-10 -7 (-15 -3355 ((-3 (-522) "failed") |#1|)) (-15 -1857 ((-3 (-522) "failed") |#1|)) (-15 -2454 ((-522) (-1068))))
+((-2628 (((-1045 (-202))) 8)))
+(((-1104) (-10 -7 (-15 -2628 ((-1045 (-202)))))) (T -1104))
+((-2628 (*1 *2) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-1104)))))
+(-10 -7 (-15 -2628 ((-1045 (-202)))))
+((-2980 (($) 11)) (-1856 (($ $) 35)) (-1839 (($ $) 33)) (-2957 (($ $) 25)) (-1873 (($ $) 17)) (-2476 (($ $) 15)) (-1864 (($ $) 19)) (-2989 (($ $) 30)) (-1849 (($ $) 34)) (-2966 (($ $) 29)))
+(((-1105 |#1|) (-10 -8 (-15 -2980 (|#1|)) (-15 -1856 (|#1| |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -1873 (|#1| |#1|)) (-15 -2476 (|#1| |#1|)) (-15 -1864 (|#1| |#1|)) (-15 -1849 (|#1| |#1|)) (-15 -2957 (|#1| |#1|)) (-15 -2989 (|#1| |#1|)) (-15 -2966 (|#1| |#1|))) (-1106)) (T -1105))
+NIL
+(-10 -8 (-15 -2980 (|#1|)) (-15 -1856 (|#1| |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -1873 (|#1| |#1|)) (-15 -2476 (|#1| |#1|)) (-15 -1864 (|#1| |#1|)) (-15 -1849 (|#1| |#1|)) (-15 -2957 (|#1| |#1|)) (-15 -2989 (|#1| |#1|)) (-15 -2966 (|#1| |#1|)))
+((-3044 (($ $) 26)) (-2923 (($ $) 11)) (-3023 (($ $) 27)) (-2906 (($ $) 10)) (-3066 (($ $) 28)) (-2936 (($ $) 9)) (-2980 (($) 16)) (-1238 (($ $) 19)) (-3357 (($ $) 18)) (-1831 (($ $) 29)) (-2946 (($ $) 8)) (-3054 (($ $) 30)) (-2928 (($ $) 7)) (-3035 (($ $) 31)) (-2915 (($ $) 6)) (-1856 (($ $) 20)) (-2976 (($ $) 32)) (-1839 (($ $) 21)) (-2957 (($ $) 33)) (-1873 (($ $) 22)) (-3001 (($ $) 34)) (-2476 (($ $) 23)) (-3011 (($ $) 35)) (-1864 (($ $) 24)) (-2989 (($ $) 36)) (-1849 (($ $) 25)) (-2966 (($ $) 37)) (** (($ $ $) 17)))
(((-1106) (-1197)) (T -1106))
-((-2838 (*1 *1) (-4 *1 (-1106))))
-(-13 (-1109) (-91) (-463) (-34) (-260) (-10 -8 (-15 -2838 ($))))
+((-2980 (*1 *1) (-4 *1 (-1106))))
+(-13 (-1109) (-91) (-463) (-34) (-260) (-10 -8 (-15 -2980 ($))))
(((-34) . T) ((-91) . T) ((-260) . T) ((-463) . T) ((-1109) . T))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3435 ((|#1| $) 17)) (-3474 (($ |#1| (-588 $)) 23) (($ (-588 |#1|)) 27) (($ |#1|) 25)) (-4141 (((-108) $ (-708)) 47)) (-3628 ((|#1| $ |#1|) 14 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) 13 (|has| $ (-6 -4239)))) (-3175 (($) NIL T CONST)) (-3837 (((-588 |#1|) $) 51 (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) 42)) (-2030 (((-108) $ $) 33 (|has| |#1| (-1014)))) (-3352 (((-108) $ (-708)) 40)) (-3308 (((-588 |#1|) $) 52 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 50 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3838 (($ (-1 |#1| |#1|) $) 24 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 22)) (-2720 (((-108) $ (-708)) 39)) (-1279 (((-588 |#1|) $) 37)) (-1754 (((-108) $) 36)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3053 (((-108) (-1 (-108) |#1|) $) 49 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 74)) (-3985 (((-108) $) 9)) (-3775 (($) 10)) (-2545 ((|#1| $ "value") NIL)) (-2011 (((-522) $ $) 32)) (-3264 (((-588 $) $) 58)) (-3423 (((-108) $ $) 76)) (-3433 (((-588 $) $) 71)) (-3645 (($ $) 72)) (-3042 (((-108) $) 55)) (-4168 (((-708) (-1 (-108) |#1|) $) 20 (|has| $ (-6 -4238))) (((-708) |#1| $) 16 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2404 (($ $) 57)) (-2190 (((-792) $) 60 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) 12)) (-2425 (((-108) $ $) 29 (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) 48 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 28 (|has| |#1| (-1014)))) (-3480 (((-708) $) 38 (|has| $ (-6 -4238)))))
-(((-1107 |#1|) (-13 (-936 |#1|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -3474 ($ |#1| (-588 $))) (-15 -3474 ($ (-588 |#1|))) (-15 -3474 ($ |#1|)) (-15 -3042 ((-108) $)) (-15 -3645 ($ $)) (-15 -3433 ((-588 $) $)) (-15 -3423 ((-108) $ $)) (-15 -3264 ((-588 $) $)))) (-1014)) (T -1107))
-((-3042 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))) (-3474 (*1 *1 *2 *3) (-12 (-5 *3 (-588 (-1107 *2))) (-5 *1 (-1107 *2)) (-4 *2 (-1014)))) (-3474 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-1107 *3)))) (-3474 (*1 *1 *2) (-12 (-5 *1 (-1107 *2)) (-4 *2 (-1014)))) (-3645 (*1 *1 *1) (-12 (-5 *1 (-1107 *2)) (-4 *2 (-1014)))) (-3433 (*1 *2 *1) (-12 (-5 *2 (-588 (-1107 *3))) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))) (-3423 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))) (-3264 (*1 *2 *1) (-12 (-5 *2 (-588 (-1107 *3))) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))))
-(-13 (-936 |#1|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -3474 ($ |#1| (-588 $))) (-15 -3474 ($ (-588 |#1|))) (-15 -3474 ($ |#1|)) (-15 -3042 ((-108) $)) (-15 -3645 ($ $)) (-15 -3433 ((-588 $) $)) (-15 -3423 ((-108) $ $)) (-15 -3264 ((-588 $) $))))
-((-2772 (($ $) 15)) (-2794 (($ $) 12)) (-2804 (($ $) 10)) (-2784 (($ $) 17)))
-(((-1108 |#1|) (-10 -8 (-15 -2784 (|#1| |#1|)) (-15 -2804 (|#1| |#1|)) (-15 -2794 (|#1| |#1|)) (-15 -2772 (|#1| |#1|))) (-1109)) (T -1108))
-NIL
-(-10 -8 (-15 -2784 (|#1| |#1|)) (-15 -2804 (|#1| |#1|)) (-15 -2794 (|#1| |#1|)) (-15 -2772 (|#1| |#1|)))
-((-2772 (($ $) 11)) (-2748 (($ $) 10)) (-2794 (($ $) 9)) (-2804 (($ $) 8)) (-2784 (($ $) 7)) (-2761 (($ $) 6)))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3526 ((|#1| $) 17)) (-3570 (($ |#1| (-588 $)) 23) (($ (-588 |#1|)) 27) (($ |#1|) 25)) (-2717 (((-108) $ (-708)) 48)) (-1198 ((|#1| $ |#1|) 14 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) 13 (|has| $ (-6 -4239)))) (-3367 (($) NIL T CONST)) (-2395 (((-588 |#1|) $) 52 (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) 43)) (-2402 (((-108) $ $) 33 (|has| |#1| (-1014)))) (-1480 (((-108) $ (-708)) 41)) (-4084 (((-588 |#1|) $) 53 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 51 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2397 (($ (-1 |#1| |#1|) $) 24 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 22)) (-3309 (((-108) $ (-708)) 40)) (-2548 (((-588 |#1|) $) 37)) (-3394 (((-108) $) 36)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-3487 (((-108) (-1 (-108) |#1|) $) 50 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 74)) (-3494 (((-108) $) 9)) (-3298 (($) 10)) (-2683 ((|#1| $ "value") NIL)) (-3381 (((-522) $ $) 32)) (-1837 (((-588 $) $) 59)) (-2907 (((-108) $ $) 76)) (-2993 (((-588 $) $) 72)) (-1349 (($ $) 73)) (-3395 (((-108) $) 56)) (-4187 (((-708) (-1 (-108) |#1|) $) 20 (|has| $ (-6 -4238))) (((-708) |#1| $) 16 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2463 (($ $) 58)) (-2217 (((-792) $) 61 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) 12)) (-3294 (((-108) $ $) 29 (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) 49 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 28 (|has| |#1| (-1014)))) (-3591 (((-708) $) 39 (|has| $ (-6 -4238)))))
+(((-1107 |#1|) (-13 (-936 |#1|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -3570 ($ |#1| (-588 $))) (-15 -3570 ($ (-588 |#1|))) (-15 -3570 ($ |#1|)) (-15 -3395 ((-108) $)) (-15 -1349 ($ $)) (-15 -2993 ((-588 $) $)) (-15 -2907 ((-108) $ $)) (-15 -1837 ((-588 $) $)))) (-1014)) (T -1107))
+((-3395 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))) (-3570 (*1 *1 *2 *3) (-12 (-5 *3 (-588 (-1107 *2))) (-5 *1 (-1107 *2)) (-4 *2 (-1014)))) (-3570 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-1107 *3)))) (-3570 (*1 *1 *2) (-12 (-5 *1 (-1107 *2)) (-4 *2 (-1014)))) (-1349 (*1 *1 *1) (-12 (-5 *1 (-1107 *2)) (-4 *2 (-1014)))) (-2993 (*1 *2 *1) (-12 (-5 *2 (-588 (-1107 *3))) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))) (-2907 (*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))) (-1837 (*1 *2 *1) (-12 (-5 *2 (-588 (-1107 *3))) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))))
+(-13 (-936 |#1|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -3570 ($ |#1| (-588 $))) (-15 -3570 ($ (-588 |#1|))) (-15 -3570 ($ |#1|)) (-15 -3395 ((-108) $)) (-15 -1349 ($ $)) (-15 -2993 ((-588 $) $)) (-15 -2907 ((-108) $ $)) (-15 -1837 ((-588 $) $))))
+((-2923 (($ $) 15)) (-2936 (($ $) 12)) (-2946 (($ $) 10)) (-2928 (($ $) 17)))
+(((-1108 |#1|) (-10 -8 (-15 -2928 (|#1| |#1|)) (-15 -2946 (|#1| |#1|)) (-15 -2936 (|#1| |#1|)) (-15 -2923 (|#1| |#1|))) (-1109)) (T -1108))
+NIL
+(-10 -8 (-15 -2928 (|#1| |#1|)) (-15 -2946 (|#1| |#1|)) (-15 -2936 (|#1| |#1|)) (-15 -2923 (|#1| |#1|)))
+((-2923 (($ $) 11)) (-2906 (($ $) 10)) (-2936 (($ $) 9)) (-2946 (($ $) 8)) (-2928 (($ $) 7)) (-2915 (($ $) 6)))
(((-1109) (-1197)) (T -1109))
-((-2772 (*1 *1 *1) (-4 *1 (-1109))) (-2748 (*1 *1 *1) (-4 *1 (-1109))) (-2794 (*1 *1 *1) (-4 *1 (-1109))) (-2804 (*1 *1 *1) (-4 *1 (-1109))) (-2784 (*1 *1 *1) (-4 *1 (-1109))) (-2761 (*1 *1 *1) (-4 *1 (-1109))))
-(-13 (-10 -8 (-15 -2761 ($ $)) (-15 -2784 ($ $)) (-15 -2804 ($ $)) (-15 -2794 ($ $)) (-15 -2748 ($ $)) (-15 -2772 ($ $))))
-((-3874 ((|#2| |#2|) 85)) (-2405 (((-108) |#2|) 25)) (-1937 ((|#2| |#2|) 29)) (-1948 ((|#2| |#2|) 31)) (-3846 ((|#2| |#2| (-1085)) 79) ((|#2| |#2|) 80)) (-4162 (((-154 |#2|) |#2|) 27)) (-2377 ((|#2| |#2| (-1085)) 81) ((|#2| |#2|) 82)))
-(((-1110 |#1| |#2|) (-10 -7 (-15 -3846 (|#2| |#2|)) (-15 -3846 (|#2| |#2| (-1085))) (-15 -2377 (|#2| |#2|)) (-15 -2377 (|#2| |#2| (-1085))) (-15 -3874 (|#2| |#2|)) (-15 -1937 (|#2| |#2|)) (-15 -1948 (|#2| |#2|)) (-15 -2405 ((-108) |#2|)) (-15 -4162 ((-154 |#2|) |#2|))) (-13 (-426) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -1110))
-((-4162 (*1 *2 *3) (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-154 *3)) (-5 *1 (-1110 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))) (-2405 (*1 *2 *3) (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-108)) (-5 *1 (-1110 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))) (-1948 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))) (-1937 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))) (-3874 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))) (-2377 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))) (-2377 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))) (-3846 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))) (-3846 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))))
-(-10 -7 (-15 -3846 (|#2| |#2|)) (-15 -3846 (|#2| |#2| (-1085))) (-15 -2377 (|#2| |#2|)) (-15 -2377 (|#2| |#2| (-1085))) (-15 -3874 (|#2| |#2|)) (-15 -1937 (|#2| |#2|)) (-15 -1948 (|#2| |#2|)) (-15 -2405 ((-108) |#2|)) (-15 -4162 ((-154 |#2|) |#2|)))
-((-3718 ((|#4| |#4| |#1|) 27)) (-2980 ((|#4| |#4| |#1|) 28)))
-(((-1111 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3718 (|#4| |#4| |#1|)) (-15 -2980 (|#4| |#4| |#1|))) (-514) (-348 |#1|) (-348 |#1|) (-626 |#1| |#2| |#3|)) (T -1111))
-((-2980 (*1 *2 *2 *3) (-12 (-4 *3 (-514)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-1111 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-3718 (*1 *2 *2 *3) (-12 (-4 *3 (-514)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-1111 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
-(-10 -7 (-15 -3718 (|#4| |#4| |#1|)) (-15 -2980 (|#4| |#4| |#1|)))
-((-3652 ((|#2| |#2|) 132)) (-2036 ((|#2| |#2|) 129)) (-1641 ((|#2| |#2|) 120)) (-3078 ((|#2| |#2|) 117)) (-3646 ((|#2| |#2|) 125)) (-4102 ((|#2| |#2|) 113)) (-4206 ((|#2| |#2|) 42)) (-2982 ((|#2| |#2|) 93)) (-3245 ((|#2| |#2|) 73)) (-1439 ((|#2| |#2|) 127)) (-2734 ((|#2| |#2|) 115)) (-1992 ((|#2| |#2|) 137)) (-1608 ((|#2| |#2|) 135)) (-3649 ((|#2| |#2|) 136)) (-1785 ((|#2| |#2|) 134)) (-1399 ((|#2| |#2|) 146)) (-3273 ((|#2| |#2|) 30 (-12 (|has| |#2| (-563 (-821 |#1|))) (|has| |#2| (-815 |#1|)) (|has| |#1| (-563 (-821 |#1|))) (|has| |#1| (-815 |#1|))))) (-1303 ((|#2| |#2|) 74)) (-3605 ((|#2| |#2|) 138)) (-1604 ((|#2| |#2|) 139)) (-1751 ((|#2| |#2|) 126)) (-1626 ((|#2| |#2|) 114)) (-2179 ((|#2| |#2|) 133)) (-3953 ((|#2| |#2|) 131)) (-2781 ((|#2| |#2|) 121)) (-3311 ((|#2| |#2|) 119)) (-3371 ((|#2| |#2|) 123)) (-2532 ((|#2| |#2|) 111)))
-(((-1112 |#1| |#2|) (-10 -7 (-15 -1604 (|#2| |#2|)) (-15 -3245 (|#2| |#2|)) (-15 -1399 (|#2| |#2|)) (-15 -2982 (|#2| |#2|)) (-15 -4206 (|#2| |#2|)) (-15 -1303 (|#2| |#2|)) (-15 -3605 (|#2| |#2|)) (-15 -2532 (|#2| |#2|)) (-15 -3371 (|#2| |#2|)) (-15 -2781 (|#2| |#2|)) (-15 -2179 (|#2| |#2|)) (-15 -1626 (|#2| |#2|)) (-15 -1751 (|#2| |#2|)) (-15 -2734 (|#2| |#2|)) (-15 -1439 (|#2| |#2|)) (-15 -4102 (|#2| |#2|)) (-15 -3646 (|#2| |#2|)) (-15 -1641 (|#2| |#2|)) (-15 -3652 (|#2| |#2|)) (-15 -3078 (|#2| |#2|)) (-15 -2036 (|#2| |#2|)) (-15 -3311 (|#2| |#2|)) (-15 -3953 (|#2| |#2|)) (-15 -1785 (|#2| |#2|)) (-15 -1608 (|#2| |#2|)) (-15 -3649 (|#2| |#2|)) (-15 -1992 (|#2| |#2|)) (IF (|has| |#1| (-815 |#1|)) (IF (|has| |#1| (-563 (-821 |#1|))) (IF (|has| |#2| (-563 (-821 |#1|))) (IF (|has| |#2| (-815 |#1|)) (-15 -3273 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-13 (-784) (-426)) (-13 (-405 |#1|) (-1106))) (T -1112))
-((-3273 (*1 *2 *2) (-12 (-4 *3 (-563 (-821 *3))) (-4 *3 (-815 *3)) (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-563 (-821 *3))) (-4 *2 (-815 *3)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1992 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3649 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1608 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1785 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3953 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3311 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2036 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3078 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3652 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1641 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3646 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-4102 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1439 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2734 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1751 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1626 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2179 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2781 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3371 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2532 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3605 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1303 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-4206 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2982 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1399 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3245 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1604 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))))
-(-10 -7 (-15 -1604 (|#2| |#2|)) (-15 -3245 (|#2| |#2|)) (-15 -1399 (|#2| |#2|)) (-15 -2982 (|#2| |#2|)) (-15 -4206 (|#2| |#2|)) (-15 -1303 (|#2| |#2|)) (-15 -3605 (|#2| |#2|)) (-15 -2532 (|#2| |#2|)) (-15 -3371 (|#2| |#2|)) (-15 -2781 (|#2| |#2|)) (-15 -2179 (|#2| |#2|)) (-15 -1626 (|#2| |#2|)) (-15 -1751 (|#2| |#2|)) (-15 -2734 (|#2| |#2|)) (-15 -1439 (|#2| |#2|)) (-15 -4102 (|#2| |#2|)) (-15 -3646 (|#2| |#2|)) (-15 -1641 (|#2| |#2|)) (-15 -3652 (|#2| |#2|)) (-15 -3078 (|#2| |#2|)) (-15 -2036 (|#2| |#2|)) (-15 -3311 (|#2| |#2|)) (-15 -3953 (|#2| |#2|)) (-15 -1785 (|#2| |#2|)) (-15 -1608 (|#2| |#2|)) (-15 -3649 (|#2| |#2|)) (-15 -1992 (|#2| |#2|)) (IF (|has| |#1| (-815 |#1|)) (IF (|has| |#1| (-563 (-821 |#1|))) (IF (|has| |#2| (-563 (-821 |#1|))) (IF (|has| |#2| (-815 |#1|)) (-15 -3273 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
-((-3575 (((-108) |#5| $) 60) (((-108) $) 102)) (-3607 ((|#5| |#5| $) 75)) (-1628 (($ (-1 (-108) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 119)) (-2149 (((-588 |#5|) (-588 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|)) 73)) (-1297 (((-3 $ "failed") (-588 |#5|)) 126)) (-2306 (((-3 $ "failed") $) 112)) (-2806 ((|#5| |#5| $) 94)) (-1934 (((-108) |#5| $ (-1 (-108) |#5| |#5|)) 31)) (-4164 ((|#5| |#5| $) 98)) (-3864 ((|#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 (-108) |#5| |#5|)) 69)) (-2091 (((-2 (|:| -1650 (-588 |#5|)) (|:| -1544 (-588 |#5|))) $) 55)) (-3341 (((-108) |#5| $) 58) (((-108) $) 103)) (-1521 ((|#4| $) 108)) (-1442 (((-3 |#5| "failed") $) 110)) (-2242 (((-588 |#5|) $) 49)) (-3409 (((-108) |#5| $) 67) (((-108) $) 107)) (-1451 ((|#5| |#5| $) 81)) (-2123 (((-108) $ $) 27)) (-2230 (((-108) |#5| $) 63) (((-108) $) 105)) (-2680 ((|#5| |#5| $) 78)) (-2294 (((-3 |#5| "failed") $) 109)) (-3719 (($ $ |#5|) 127)) (-2793 (((-708) $) 52)) (-2201 (($ (-588 |#5|)) 124)) (-2020 (($ $ |#4|) 122)) (-3606 (($ $ |#4|) 121)) (-3968 (($ $) 120)) (-2190 (((-792) $) NIL) (((-588 |#5|) $) 113)) (-1974 (((-708) $) 130)) (-3989 (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#5|))) "failed") (-588 |#5|) (-1 (-108) |#5| |#5|)) 43) (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#5|))) "failed") (-588 |#5|) (-1 (-108) |#5|) (-1 (-108) |#5| |#5|)) 45)) (-4212 (((-108) $ (-1 (-108) |#5| (-588 |#5|))) 100)) (-2360 (((-588 |#4|) $) 115)) (-2351 (((-108) |#4| $) 118)) (-1531 (((-108) $ $) 19)))
-(((-1113 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1974 ((-708) |#1|)) (-15 -3719 (|#1| |#1| |#5|)) (-15 -1628 ((-3 |#5| "failed") |#1| |#4|)) (-15 -2351 ((-108) |#4| |#1|)) (-15 -2360 ((-588 |#4|) |#1|)) (-15 -2306 ((-3 |#1| "failed") |#1|)) (-15 -1442 ((-3 |#5| "failed") |#1|)) (-15 -2294 ((-3 |#5| "failed") |#1|)) (-15 -4164 (|#5| |#5| |#1|)) (-15 -3968 (|#1| |#1|)) (-15 -2806 (|#5| |#5| |#1|)) (-15 -1451 (|#5| |#5| |#1|)) (-15 -2680 (|#5| |#5| |#1|)) (-15 -3607 (|#5| |#5| |#1|)) (-15 -2149 ((-588 |#5|) (-588 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -3864 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -3409 ((-108) |#1|)) (-15 -2230 ((-108) |#1|)) (-15 -3575 ((-108) |#1|)) (-15 -4212 ((-108) |#1| (-1 (-108) |#5| (-588 |#5|)))) (-15 -3409 ((-108) |#5| |#1|)) (-15 -2230 ((-108) |#5| |#1|)) (-15 -3575 ((-108) |#5| |#1|)) (-15 -1934 ((-108) |#5| |#1| (-1 (-108) |#5| |#5|))) (-15 -3341 ((-108) |#1|)) (-15 -3341 ((-108) |#5| |#1|)) (-15 -2091 ((-2 (|:| -1650 (-588 |#5|)) (|:| -1544 (-588 |#5|))) |#1|)) (-15 -2793 ((-708) |#1|)) (-15 -2242 ((-588 |#5|) |#1|)) (-15 -3989 ((-3 (-2 (|:| |bas| |#1|) (|:| -1355 (-588 |#5|))) "failed") (-588 |#5|) (-1 (-108) |#5|) (-1 (-108) |#5| |#5|))) (-15 -3989 ((-3 (-2 (|:| |bas| |#1|) (|:| -1355 (-588 |#5|))) "failed") (-588 |#5|) (-1 (-108) |#5| |#5|))) (-15 -2123 ((-108) |#1| |#1|)) (-15 -2020 (|#1| |#1| |#4|)) (-15 -3606 (|#1| |#1| |#4|)) (-15 -1521 (|#4| |#1|)) (-15 -1297 ((-3 |#1| "failed") (-588 |#5|))) (-15 -2190 ((-588 |#5|) |#1|)) (-15 -2201 (|#1| (-588 |#5|))) (-15 -3864 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -3864 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1628 (|#1| (-1 (-108) |#5|) |#1|)) (-15 -3864 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|))) (-1114 |#2| |#3| |#4| |#5|) (-514) (-730) (-784) (-985 |#2| |#3| |#4|)) (T -1113))
-NIL
-(-10 -8 (-15 -1974 ((-708) |#1|)) (-15 -3719 (|#1| |#1| |#5|)) (-15 -1628 ((-3 |#5| "failed") |#1| |#4|)) (-15 -2351 ((-108) |#4| |#1|)) (-15 -2360 ((-588 |#4|) |#1|)) (-15 -2306 ((-3 |#1| "failed") |#1|)) (-15 -1442 ((-3 |#5| "failed") |#1|)) (-15 -2294 ((-3 |#5| "failed") |#1|)) (-15 -4164 (|#5| |#5| |#1|)) (-15 -3968 (|#1| |#1|)) (-15 -2806 (|#5| |#5| |#1|)) (-15 -1451 (|#5| |#5| |#1|)) (-15 -2680 (|#5| |#5| |#1|)) (-15 -3607 (|#5| |#5| |#1|)) (-15 -2149 ((-588 |#5|) (-588 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -3864 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -3409 ((-108) |#1|)) (-15 -2230 ((-108) |#1|)) (-15 -3575 ((-108) |#1|)) (-15 -4212 ((-108) |#1| (-1 (-108) |#5| (-588 |#5|)))) (-15 -3409 ((-108) |#5| |#1|)) (-15 -2230 ((-108) |#5| |#1|)) (-15 -3575 ((-108) |#5| |#1|)) (-15 -1934 ((-108) |#5| |#1| (-1 (-108) |#5| |#5|))) (-15 -3341 ((-108) |#1|)) (-15 -3341 ((-108) |#5| |#1|)) (-15 -2091 ((-2 (|:| -1650 (-588 |#5|)) (|:| -1544 (-588 |#5|))) |#1|)) (-15 -2793 ((-708) |#1|)) (-15 -2242 ((-588 |#5|) |#1|)) (-15 -3989 ((-3 (-2 (|:| |bas| |#1|) (|:| -1355 (-588 |#5|))) "failed") (-588 |#5|) (-1 (-108) |#5|) (-1 (-108) |#5| |#5|))) (-15 -3989 ((-3 (-2 (|:| |bas| |#1|) (|:| -1355 (-588 |#5|))) "failed") (-588 |#5|) (-1 (-108) |#5| |#5|))) (-15 -2123 ((-108) |#1| |#1|)) (-15 -2020 (|#1| |#1| |#4|)) (-15 -3606 (|#1| |#1| |#4|)) (-15 -1521 (|#4| |#1|)) (-15 -1297 ((-3 |#1| "failed") (-588 |#5|))) (-15 -2190 ((-588 |#5|) |#1|)) (-15 -2201 (|#1| (-588 |#5|))) (-15 -3864 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -3864 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1628 (|#1| (-1 (-108) |#5|) |#1|)) (-15 -3864 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -2190 ((-792) |#1|)) (-15 -1531 ((-108) |#1| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2950 (((-588 (-2 (|:| -1650 $) (|:| -1544 (-588 |#4|)))) (-588 |#4|)) 85)) (-4125 (((-588 $) (-588 |#4|)) 86)) (-4090 (((-588 |#3|) $) 33)) (-2690 (((-108) $) 26)) (-4140 (((-108) $) 17 (|has| |#1| (-514)))) (-3575 (((-108) |#4| $) 101) (((-108) $) 97)) (-3607 ((|#4| |#4| $) 92)) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |#3|) 27)) (-4141 (((-108) $ (-708)) 44)) (-1628 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 79)) (-3175 (($) 45 T CONST)) (-3639 (((-108) $) 22 (|has| |#1| (-514)))) (-3982 (((-108) $ $) 24 (|has| |#1| (-514)))) (-3996 (((-108) $ $) 23 (|has| |#1| (-514)))) (-3538 (((-108) $) 25 (|has| |#1| (-514)))) (-2149 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3050 (((-588 |#4|) (-588 |#4|) $) 18 (|has| |#1| (-514)))) (-1787 (((-588 |#4|) (-588 |#4|) $) 19 (|has| |#1| (-514)))) (-1297 (((-3 $ "failed") (-588 |#4|)) 36)) (-1484 (($ (-588 |#4|)) 35)) (-2306 (((-3 $ "failed") $) 82)) (-2806 ((|#4| |#4| $) 89)) (-2333 (($ $) 68 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#4| $) 67 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4238)))) (-3421 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-514)))) (-1934 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-4164 ((|#4| |#4| $) 87)) (-3864 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-2091 (((-2 (|:| -1650 (-588 |#4|)) (|:| -1544 (-588 |#4|))) $) 105)) (-3837 (((-588 |#4|) $) 52 (|has| $ (-6 -4238)))) (-3341 (((-108) |#4| $) 104) (((-108) $) 103)) (-1521 ((|#3| $) 34)) (-3352 (((-108) $ (-708)) 43)) (-3308 (((-588 |#4|) $) 53 (|has| $ (-6 -4238)))) (-2246 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#4| |#4|) $) 47)) (-2458 (((-588 |#3|) $) 32)) (-1606 (((-108) |#3| $) 31)) (-2720 (((-108) $ (-708)) 42)) (-2385 (((-1068) $) 9)) (-1442 (((-3 |#4| "failed") $) 83)) (-2242 (((-588 |#4|) $) 107)) (-3409 (((-108) |#4| $) 99) (((-108) $) 95)) (-1451 ((|#4| |#4| $) 90)) (-2123 (((-108) $ $) 110)) (-2039 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-514)))) (-2230 (((-108) |#4| $) 100) (((-108) $) 96)) (-2680 ((|#4| |#4| $) 91)) (-4151 (((-1032) $) 10)) (-2294 (((-3 |#4| "failed") $) 84)) (-1414 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-3307 (((-3 $ "failed") $ |#4|) 78)) (-3719 (($ $ |#4|) 77)) (-3053 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#4|) (-588 |#4|)) 59 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) 57 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) 56 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-1536 (((-108) $ $) 38)) (-3985 (((-108) $) 41)) (-3775 (($) 40)) (-2793 (((-708) $) 106)) (-4168 (((-708) |#4| $) 54 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4238)))) (-2404 (($ $) 39)) (-1431 (((-498) $) 69 (|has| |#4| (-563 (-498))))) (-2201 (($ (-588 |#4|)) 60)) (-2020 (($ $ |#3|) 28)) (-3606 (($ $ |#3|) 30)) (-3968 (($ $) 88)) (-2463 (($ $ |#3|) 29)) (-2190 (((-792) $) 11) (((-588 |#4|) $) 37)) (-1974 (((-708) $) 76 (|has| |#3| (-343)))) (-3989 (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-4212 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) 98)) (-3648 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4238)))) (-2360 (((-588 |#3|) $) 81)) (-2351 (((-108) |#3| $) 80)) (-1531 (((-108) $ $) 6)) (-3480 (((-708) $) 46 (|has| $ (-6 -4238)))))
+((-2923 (*1 *1 *1) (-4 *1 (-1109))) (-2906 (*1 *1 *1) (-4 *1 (-1109))) (-2936 (*1 *1 *1) (-4 *1 (-1109))) (-2946 (*1 *1 *1) (-4 *1 (-1109))) (-2928 (*1 *1 *1) (-4 *1 (-1109))) (-2915 (*1 *1 *1) (-4 *1 (-1109))))
+(-13 (-10 -8 (-15 -2915 ($ $)) (-15 -2928 ($ $)) (-15 -2946 ($ $)) (-15 -2936 ($ $)) (-15 -2906 ($ $)) (-15 -2923 ($ $))))
+((-1829 ((|#2| |#2|) 85)) (-1408 (((-108) |#2|) 25)) (-2025 ((|#2| |#2|) 29)) (-2033 ((|#2| |#2|) 31)) (-2854 ((|#2| |#2| (-1085)) 79) ((|#2| |#2|) 80)) (-2902 (((-154 |#2|) |#2|) 27)) (-1254 ((|#2| |#2| (-1085)) 81) ((|#2| |#2|) 82)))
+(((-1110 |#1| |#2|) (-10 -7 (-15 -2854 (|#2| |#2|)) (-15 -2854 (|#2| |#2| (-1085))) (-15 -1254 (|#2| |#2|)) (-15 -1254 (|#2| |#2| (-1085))) (-15 -1829 (|#2| |#2|)) (-15 -2025 (|#2| |#2|)) (-15 -2033 (|#2| |#2|)) (-15 -1408 ((-108) |#2|)) (-15 -2902 ((-154 |#2|) |#2|))) (-13 (-426) (-784) (-962 (-522)) (-584 (-522))) (-13 (-27) (-1106) (-405 |#1|))) (T -1110))
+((-2902 (*1 *2 *3) (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-154 *3)) (-5 *1 (-1110 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))) (-1408 (*1 *2 *3) (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *2 (-108)) (-5 *1 (-1110 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *4))))) (-2033 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))) (-2025 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))) (-1829 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))) (-1254 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))) (-1254 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))) (-2854 (*1 *2 *2 *3) (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))) (-2854 (*1 *2 *2) (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522)))) (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))))
+(-10 -7 (-15 -2854 (|#2| |#2|)) (-15 -2854 (|#2| |#2| (-1085))) (-15 -1254 (|#2| |#2|)) (-15 -1254 (|#2| |#2| (-1085))) (-15 -1829 (|#2| |#2|)) (-15 -2025 (|#2| |#2|)) (-15 -2033 (|#2| |#2|)) (-15 -1408 ((-108) |#2|)) (-15 -2902 ((-154 |#2|) |#2|)))
+((-3921 ((|#4| |#4| |#1|) 27)) (-4072 ((|#4| |#4| |#1|) 28)))
+(((-1111 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3921 (|#4| |#4| |#1|)) (-15 -4072 (|#4| |#4| |#1|))) (-514) (-348 |#1|) (-348 |#1|) (-626 |#1| |#2| |#3|)) (T -1111))
+((-4072 (*1 *2 *2 *3) (-12 (-4 *3 (-514)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-1111 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))) (-3921 (*1 *2 *2 *3) (-12 (-4 *3 (-514)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3)) (-5 *1 (-1111 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
+(-10 -7 (-15 -3921 (|#4| |#4| |#1|)) (-15 -4072 (|#4| |#4| |#1|)))
+((-1423 ((|#2| |#2|) 132)) (-2468 ((|#2| |#2|) 129)) (-2269 ((|#2| |#2|) 120)) (-3698 ((|#2| |#2|) 117)) (-1360 ((|#2| |#2|) 125)) (-3422 ((|#2| |#2|) 113)) (-2047 ((|#2| |#2|) 42)) (-4007 ((|#2| |#2|) 93)) (-1667 ((|#2| |#2|) 73)) (-2432 ((|#2| |#2|) 127)) (-3970 ((|#2| |#2|) 115)) (-3229 ((|#2| |#2|) 137)) (-3838 ((|#2| |#2|) 135)) (-1392 ((|#2| |#2|) 136)) (-3649 ((|#2| |#2|) 134)) (-3846 ((|#2| |#2|) 146)) (-1904 ((|#2| |#2|) 30 (-12 (|has| |#2| (-563 (-821 |#1|))) (|has| |#2| (-815 |#1|)) (|has| |#1| (-563 (-821 |#1|))) (|has| |#1| (-815 |#1|))))) (-1750 ((|#2| |#2|) 74)) (-2143 ((|#2| |#2|) 138)) (-1663 ((|#2| |#2|) 139)) (-1541 ((|#2| |#2|) 126)) (-2162 ((|#2| |#2|) 114)) (-3299 ((|#2| |#2|) 133)) (-1365 ((|#2| |#2|) 131)) (-2849 ((|#2| |#2|) 121)) (-4111 ((|#2| |#2|) 119)) (-3483 ((|#2| |#2|) 123)) (-2254 ((|#2| |#2|) 111)))
+(((-1112 |#1| |#2|) (-10 -7 (-15 -1663 (|#2| |#2|)) (-15 -1667 (|#2| |#2|)) (-15 -3846 (|#2| |#2|)) (-15 -4007 (|#2| |#2|)) (-15 -2047 (|#2| |#2|)) (-15 -1750 (|#2| |#2|)) (-15 -2143 (|#2| |#2|)) (-15 -2254 (|#2| |#2|)) (-15 -3483 (|#2| |#2|)) (-15 -2849 (|#2| |#2|)) (-15 -3299 (|#2| |#2|)) (-15 -2162 (|#2| |#2|)) (-15 -1541 (|#2| |#2|)) (-15 -3970 (|#2| |#2|)) (-15 -2432 (|#2| |#2|)) (-15 -3422 (|#2| |#2|)) (-15 -1360 (|#2| |#2|)) (-15 -2269 (|#2| |#2|)) (-15 -1423 (|#2| |#2|)) (-15 -3698 (|#2| |#2|)) (-15 -2468 (|#2| |#2|)) (-15 -4111 (|#2| |#2|)) (-15 -1365 (|#2| |#2|)) (-15 -3649 (|#2| |#2|)) (-15 -3838 (|#2| |#2|)) (-15 -1392 (|#2| |#2|)) (-15 -3229 (|#2| |#2|)) (IF (|has| |#1| (-815 |#1|)) (IF (|has| |#1| (-563 (-821 |#1|))) (IF (|has| |#2| (-563 (-821 |#1|))) (IF (|has| |#2| (-815 |#1|)) (-15 -1904 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-13 (-784) (-426)) (-13 (-405 |#1|) (-1106))) (T -1112))
+((-1904 (*1 *2 *2) (-12 (-4 *3 (-563 (-821 *3))) (-4 *3 (-815 *3)) (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-563 (-821 *3))) (-4 *2 (-815 *3)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3229 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1392 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3838 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3649 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1365 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-4111 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2468 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3698 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1423 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2269 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1360 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3422 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2432 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3970 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1541 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2162 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3299 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2849 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3483 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2254 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2143 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1750 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-2047 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-4007 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-3846 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1667 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))) (-1663 (*1 *2 *2) (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2)) (-4 *2 (-13 (-405 *3) (-1106))))))
+(-10 -7 (-15 -1663 (|#2| |#2|)) (-15 -1667 (|#2| |#2|)) (-15 -3846 (|#2| |#2|)) (-15 -4007 (|#2| |#2|)) (-15 -2047 (|#2| |#2|)) (-15 -1750 (|#2| |#2|)) (-15 -2143 (|#2| |#2|)) (-15 -2254 (|#2| |#2|)) (-15 -3483 (|#2| |#2|)) (-15 -2849 (|#2| |#2|)) (-15 -3299 (|#2| |#2|)) (-15 -2162 (|#2| |#2|)) (-15 -1541 (|#2| |#2|)) (-15 -3970 (|#2| |#2|)) (-15 -2432 (|#2| |#2|)) (-15 -3422 (|#2| |#2|)) (-15 -1360 (|#2| |#2|)) (-15 -2269 (|#2| |#2|)) (-15 -1423 (|#2| |#2|)) (-15 -3698 (|#2| |#2|)) (-15 -2468 (|#2| |#2|)) (-15 -4111 (|#2| |#2|)) (-15 -1365 (|#2| |#2|)) (-15 -3649 (|#2| |#2|)) (-15 -3838 (|#2| |#2|)) (-15 -1392 (|#2| |#2|)) (-15 -3229 (|#2| |#2|)) (IF (|has| |#1| (-815 |#1|)) (IF (|has| |#1| (-563 (-821 |#1|))) (IF (|has| |#2| (-563 (-821 |#1|))) (IF (|has| |#2| (-815 |#1|)) (-15 -1904 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-1900 (((-108) |#5| $) 60) (((-108) $) 102)) (-2163 ((|#5| |#5| $) 75)) (-1696 (($ (-1 (-108) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 119)) (-3090 (((-588 |#5|) (-588 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|)) 73)) (-3700 (((-3 $ "failed") (-588 |#5|)) 126)) (-2352 (((-3 $ "failed") $) 112)) (-2625 ((|#5| |#5| $) 94)) (-1426 (((-108) |#5| $ (-1 (-108) |#5| |#5|)) 31)) (-2918 ((|#5| |#5| $) 98)) (-2153 ((|#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 (-108) |#5| |#5|)) 69)) (-1199 (((-2 (|:| -1720 (-588 |#5|)) (|:| -1566 (-588 |#5|))) $) 55)) (-1384 (((-108) |#5| $) 58) (((-108) $) 103)) (-1933 ((|#4| $) 108)) (-1442 (((-3 |#5| "failed") $) 110)) (-4138 (((-588 |#5|) $) 49)) (-3864 (((-108) |#5| $) 67) (((-108) $) 107)) (-2556 ((|#5| |#5| $) 81)) (-1517 (((-108) $ $) 27)) (-3060 (((-108) |#5| $) 63) (((-108) $) 105)) (-3896 ((|#5| |#5| $) 78)) (-2337 (((-3 |#5| "failed") $) 109)) (-3934 (($ $ |#5|) 127)) (-2487 (((-708) $) 52)) (-2227 (($ (-588 |#5|)) 124)) (-2271 (($ $ |#4|) 122)) (-2154 (($ $ |#4|) 121)) (-1524 (($ $) 120)) (-2217 (((-792) $) NIL) (((-588 |#5|) $) 113)) (-3111 (((-708) $) 130)) (-3538 (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#5|))) "failed") (-588 |#5|) (-1 (-108) |#5| |#5|)) 43) (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#5|))) "failed") (-588 |#5|) (-1 (-108) |#5|) (-1 (-108) |#5| |#5|)) 45)) (-2102 (((-108) $ (-1 (-108) |#5| (-588 |#5|))) 100)) (-1982 (((-588 |#4|) $) 115)) (-1711 (((-108) |#4| $) 118)) (-1562 (((-108) $ $) 19)))
+(((-1113 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3111 ((-708) |#1|)) (-15 -3934 (|#1| |#1| |#5|)) (-15 -1696 ((-3 |#5| "failed") |#1| |#4|)) (-15 -1711 ((-108) |#4| |#1|)) (-15 -1982 ((-588 |#4|) |#1|)) (-15 -2352 ((-3 |#1| "failed") |#1|)) (-15 -1442 ((-3 |#5| "failed") |#1|)) (-15 -2337 ((-3 |#5| "failed") |#1|)) (-15 -2918 (|#5| |#5| |#1|)) (-15 -1524 (|#1| |#1|)) (-15 -2625 (|#5| |#5| |#1|)) (-15 -2556 (|#5| |#5| |#1|)) (-15 -3896 (|#5| |#5| |#1|)) (-15 -2163 (|#5| |#5| |#1|)) (-15 -3090 ((-588 |#5|) (-588 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -2153 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -3864 ((-108) |#1|)) (-15 -3060 ((-108) |#1|)) (-15 -1900 ((-108) |#1|)) (-15 -2102 ((-108) |#1| (-1 (-108) |#5| (-588 |#5|)))) (-15 -3864 ((-108) |#5| |#1|)) (-15 -3060 ((-108) |#5| |#1|)) (-15 -1900 ((-108) |#5| |#1|)) (-15 -1426 ((-108) |#5| |#1| (-1 (-108) |#5| |#5|))) (-15 -1384 ((-108) |#1|)) (-15 -1384 ((-108) |#5| |#1|)) (-15 -1199 ((-2 (|:| -1720 (-588 |#5|)) (|:| -1566 (-588 |#5|))) |#1|)) (-15 -2487 ((-708) |#1|)) (-15 -4138 ((-588 |#5|) |#1|)) (-15 -3538 ((-3 (-2 (|:| |bas| |#1|) (|:| -1322 (-588 |#5|))) "failed") (-588 |#5|) (-1 (-108) |#5|) (-1 (-108) |#5| |#5|))) (-15 -3538 ((-3 (-2 (|:| |bas| |#1|) (|:| -1322 (-588 |#5|))) "failed") (-588 |#5|) (-1 (-108) |#5| |#5|))) (-15 -1517 ((-108) |#1| |#1|)) (-15 -2271 (|#1| |#1| |#4|)) (-15 -2154 (|#1| |#1| |#4|)) (-15 -1933 (|#4| |#1|)) (-15 -3700 ((-3 |#1| "failed") (-588 |#5|))) (-15 -2217 ((-588 |#5|) |#1|)) (-15 -2227 (|#1| (-588 |#5|))) (-15 -2153 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -2153 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1696 (|#1| (-1 (-108) |#5|) |#1|)) (-15 -2153 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|))) (-1114 |#2| |#3| |#4| |#5|) (-514) (-730) (-784) (-985 |#2| |#3| |#4|)) (T -1113))
+NIL
+(-10 -8 (-15 -3111 ((-708) |#1|)) (-15 -3934 (|#1| |#1| |#5|)) (-15 -1696 ((-3 |#5| "failed") |#1| |#4|)) (-15 -1711 ((-108) |#4| |#1|)) (-15 -1982 ((-588 |#4|) |#1|)) (-15 -2352 ((-3 |#1| "failed") |#1|)) (-15 -1442 ((-3 |#5| "failed") |#1|)) (-15 -2337 ((-3 |#5| "failed") |#1|)) (-15 -2918 (|#5| |#5| |#1|)) (-15 -1524 (|#1| |#1|)) (-15 -2625 (|#5| |#5| |#1|)) (-15 -2556 (|#5| |#5| |#1|)) (-15 -3896 (|#5| |#5| |#1|)) (-15 -2163 (|#5| |#5| |#1|)) (-15 -3090 ((-588 |#5|) (-588 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -2153 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-108) |#5| |#5|))) (-15 -3864 ((-108) |#1|)) (-15 -3060 ((-108) |#1|)) (-15 -1900 ((-108) |#1|)) (-15 -2102 ((-108) |#1| (-1 (-108) |#5| (-588 |#5|)))) (-15 -3864 ((-108) |#5| |#1|)) (-15 -3060 ((-108) |#5| |#1|)) (-15 -1900 ((-108) |#5| |#1|)) (-15 -1426 ((-108) |#5| |#1| (-1 (-108) |#5| |#5|))) (-15 -1384 ((-108) |#1|)) (-15 -1384 ((-108) |#5| |#1|)) (-15 -1199 ((-2 (|:| -1720 (-588 |#5|)) (|:| -1566 (-588 |#5|))) |#1|)) (-15 -2487 ((-708) |#1|)) (-15 -4138 ((-588 |#5|) |#1|)) (-15 -3538 ((-3 (-2 (|:| |bas| |#1|) (|:| -1322 (-588 |#5|))) "failed") (-588 |#5|) (-1 (-108) |#5|) (-1 (-108) |#5| |#5|))) (-15 -3538 ((-3 (-2 (|:| |bas| |#1|) (|:| -1322 (-588 |#5|))) "failed") (-588 |#5|) (-1 (-108) |#5| |#5|))) (-15 -1517 ((-108) |#1| |#1|)) (-15 -2271 (|#1| |#1| |#4|)) (-15 -2154 (|#1| |#1| |#4|)) (-15 -1933 (|#4| |#1|)) (-15 -3700 ((-3 |#1| "failed") (-588 |#5|))) (-15 -2217 ((-588 |#5|) |#1|)) (-15 -2227 (|#1| (-588 |#5|))) (-15 -2153 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -2153 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1696 (|#1| (-1 (-108) |#5|) |#1|)) (-15 -2153 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -2217 ((-792) |#1|)) (-15 -1562 ((-108) |#1| |#1|)))
+((-1419 (((-108) $ $) 7)) (-3829 (((-588 (-2 (|:| -1720 $) (|:| -1566 (-588 |#4|)))) (-588 |#4|)) 85)) (-2510 (((-588 $) (-588 |#4|)) 86)) (-3533 (((-588 |#3|) $) 33)) (-2161 (((-108) $) 26)) (-2702 (((-108) $) 17 (|has| |#1| (-514)))) (-1900 (((-108) |#4| $) 101) (((-108) $) 97)) (-2163 ((|#4| |#4| $) 92)) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |#3|) 27)) (-2717 (((-108) $ (-708)) 44)) (-1696 (($ (-1 (-108) |#4|) $) 65 (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) 79)) (-3367 (($) 45 T CONST)) (-1298 (((-108) $) 22 (|has| |#1| (-514)))) (-1657 (((-108) $ $) 24 (|has| |#1| (-514)))) (-3598 (((-108) $ $) 23 (|has| |#1| (-514)))) (-2818 (((-108) $) 25 (|has| |#1| (-514)))) (-3090 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 93)) (-3461 (((-588 |#4|) (-588 |#4|) $) 18 (|has| |#1| (-514)))) (-3668 (((-588 |#4|) (-588 |#4|) $) 19 (|has| |#1| (-514)))) (-3700 (((-3 $ "failed") (-588 |#4|)) 36)) (-1478 (($ (-588 |#4|)) 35)) (-2352 (((-3 $ "failed") $) 82)) (-2625 ((|#4| |#4| $) 89)) (-2379 (($ $) 68 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#4| $) 67 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#4|) $) 64 (|has| $ (-6 -4238)))) (-4002 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-514)))) (-1426 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) 102)) (-2918 ((|#4| |#4| $) 87)) (-2153 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 94)) (-1199 (((-2 (|:| -1720 (-588 |#4|)) (|:| -1566 (-588 |#4|))) $) 105)) (-2395 (((-588 |#4|) $) 52 (|has| $ (-6 -4238)))) (-1384 (((-108) |#4| $) 104) (((-108) $) 103)) (-1933 ((|#3| $) 34)) (-1480 (((-108) $ (-708)) 43)) (-4084 (((-588 |#4|) $) 53 (|has| $ (-6 -4238)))) (-4176 (((-108) |#4| $) 55 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#4| |#4|) $) 47)) (-2714 (((-588 |#3|) $) 32)) (-3826 (((-108) |#3| $) 31)) (-3309 (((-108) $ (-708)) 42)) (-2311 (((-1068) $) 9)) (-1442 (((-3 |#4| "failed") $) 83)) (-4138 (((-588 |#4|) $) 107)) (-3864 (((-108) |#4| $) 99) (((-108) $) 95)) (-2556 ((|#4| |#4| $) 90)) (-1517 (((-108) $ $) 110)) (-2507 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-514)))) (-3060 (((-108) |#4| $) 100) (((-108) $) 96)) (-3896 ((|#4| |#4| $) 91)) (-4174 (((-1032) $) 10)) (-2337 (((-3 |#4| "failed") $) 84)) (-2187 (((-3 |#4| "failed") (-1 (-108) |#4|) $) 61)) (-4078 (((-3 $ "failed") $ |#4|) 78)) (-3934 (($ $ |#4|) 77)) (-3487 (((-108) (-1 (-108) |#4|) $) 50 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#4|) (-588 |#4|)) 59 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) 57 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) 56 (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-2065 (((-108) $ $) 38)) (-3494 (((-108) $) 41)) (-3298 (($) 40)) (-2487 (((-708) $) 106)) (-4187 (((-708) |#4| $) 54 (-12 (|has| |#4| (-1014)) (|has| $ (-6 -4238)))) (((-708) (-1 (-108) |#4|) $) 51 (|has| $ (-6 -4238)))) (-2463 (($ $) 39)) (-3873 (((-498) $) 69 (|has| |#4| (-563 (-498))))) (-2227 (($ (-588 |#4|)) 60)) (-2271 (($ $ |#3|) 28)) (-2154 (($ $ |#3|) 30)) (-1524 (($ $) 88)) (-2773 (($ $ |#3|) 29)) (-2217 (((-792) $) 11) (((-588 |#4|) $) 37)) (-3111 (((-708) $) 76 (|has| |#3| (-343)))) (-3538 (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) 108)) (-2102 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) 98)) (-1381 (((-108) (-1 (-108) |#4|) $) 49 (|has| $ (-6 -4238)))) (-1982 (((-588 |#3|) $) 81)) (-1711 (((-108) |#3| $) 80)) (-1562 (((-108) $ $) 6)) (-3591 (((-708) $) 46 (|has| $ (-6 -4238)))))
(((-1114 |#1| |#2| |#3| |#4|) (-1197) (-514) (-730) (-784) (-985 |t#1| |t#2| |t#3|)) (T -1114))
-((-2123 (*1 *2 *1 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-3989 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-108) *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-2 (|:| |bas| *1) (|:| -1355 (-588 *8)))) (-5 *3 (-588 *8)) (-4 *1 (-1114 *5 *6 *7 *8)))) (-3989 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-108) *9)) (-5 *5 (-1 (-108) *9 *9)) (-4 *9 (-985 *6 *7 *8)) (-4 *6 (-514)) (-4 *7 (-730)) (-4 *8 (-784)) (-5 *2 (-2 (|:| |bas| *1) (|:| -1355 (-588 *9)))) (-5 *3 (-588 *9)) (-4 *1 (-1114 *6 *7 *8 *9)))) (-2242 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *6)))) (-2793 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-708)))) (-2091 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-2 (|:| -1650 (-588 *6)) (|:| -1544 (-588 *6)))))) (-3341 (*1 *2 *3 *1) (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-3341 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-1934 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *1 (-1114 *5 *6 *7 *3)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-108)))) (-3575 (*1 *2 *3 *1) (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-2230 (*1 *2 *3 *1) (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-3409 (*1 *2 *3 *1) (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-4212 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-108) *7 (-588 *7))) (-4 *1 (-1114 *4 *5 *6 *7)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-3575 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-2230 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-3409 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-3864 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-108) *2 *2)) (-4 *1 (-1114 *5 *6 *7 *2)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *2 (-985 *5 *6 *7)))) (-2149 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-588 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-108) *8 *8)) (-4 *1 (-1114 *5 *6 *7 *8)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)))) (-3607 (*1 *2 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-2680 (*1 *2 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-1451 (*1 *2 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-2806 (*1 *2 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-3968 (*1 *1 *1) (-12 (-4 *1 (-1114 *2 *3 *4 *5)) (-4 *2 (-514)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-985 *2 *3 *4)))) (-4164 (*1 *2 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-4125 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-1114 *4 *5 *6 *7)))) (-2950 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-588 (-2 (|:| -1650 *1) (|:| -1544 (-588 *7))))) (-5 *3 (-588 *7)) (-4 *1 (-1114 *4 *5 *6 *7)))) (-2294 (*1 *2 *1) (|partial| -12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-1442 (*1 *2 *1) (|partial| -12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-2306 (*1 *1 *1) (|partial| -12 (-4 *1 (-1114 *2 *3 *4 *5)) (-4 *2 (-514)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-985 *2 *3 *4)))) (-2360 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *5)))) (-2351 (*1 *2 *3 *1) (-12 (-4 *1 (-1114 *4 *5 *3 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *3 (-784)) (-4 *6 (-985 *4 *5 *3)) (-5 *2 (-108)))) (-1628 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1114 *4 *5 *3 *2)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *3 (-784)) (-4 *2 (-985 *4 *5 *3)))) (-3307 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-3719 (*1 *1 *1 *2) (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-1974 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *5 (-343)) (-5 *2 (-708)))))
-(-13 (-903 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -2123 ((-108) $ $)) (-15 -3989 ((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |t#4|))) "failed") (-588 |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -3989 ((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |t#4|))) "failed") (-588 |t#4|) (-1 (-108) |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -2242 ((-588 |t#4|) $)) (-15 -2793 ((-708) $)) (-15 -2091 ((-2 (|:| -1650 (-588 |t#4|)) (|:| -1544 (-588 |t#4|))) $)) (-15 -3341 ((-108) |t#4| $)) (-15 -3341 ((-108) $)) (-15 -1934 ((-108) |t#4| $ (-1 (-108) |t#4| |t#4|))) (-15 -3575 ((-108) |t#4| $)) (-15 -2230 ((-108) |t#4| $)) (-15 -3409 ((-108) |t#4| $)) (-15 -4212 ((-108) $ (-1 (-108) |t#4| (-588 |t#4|)))) (-15 -3575 ((-108) $)) (-15 -2230 ((-108) $)) (-15 -3409 ((-108) $)) (-15 -3864 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -2149 ((-588 |t#4|) (-588 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -3607 (|t#4| |t#4| $)) (-15 -2680 (|t#4| |t#4| $)) (-15 -1451 (|t#4| |t#4| $)) (-15 -2806 (|t#4| |t#4| $)) (-15 -3968 ($ $)) (-15 -4164 (|t#4| |t#4| $)) (-15 -4125 ((-588 $) (-588 |t#4|))) (-15 -2950 ((-588 (-2 (|:| -1650 $) (|:| -1544 (-588 |t#4|)))) (-588 |t#4|))) (-15 -2294 ((-3 |t#4| "failed") $)) (-15 -1442 ((-3 |t#4| "failed") $)) (-15 -2306 ((-3 $ "failed") $)) (-15 -2360 ((-588 |t#3|) $)) (-15 -2351 ((-108) |t#3| $)) (-15 -1628 ((-3 |t#4| "failed") $ |t#3|)) (-15 -3307 ((-3 $ "failed") $ |t#4|)) (-15 -3719 ($ $ |t#4|)) (IF (|has| |t#3| (-343)) (-15 -1974 ((-708) $)) |%noBranch|)))
+((-1517 (*1 *2 *1 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-3538 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-108) *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-2 (|:| |bas| *1) (|:| -1322 (-588 *8)))) (-5 *3 (-588 *8)) (-4 *1 (-1114 *5 *6 *7 *8)))) (-3538 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-108) *9)) (-5 *5 (-1 (-108) *9 *9)) (-4 *9 (-985 *6 *7 *8)) (-4 *6 (-514)) (-4 *7 (-730)) (-4 *8 (-784)) (-5 *2 (-2 (|:| |bas| *1) (|:| -1322 (-588 *9)))) (-5 *3 (-588 *9)) (-4 *1 (-1114 *6 *7 *8 *9)))) (-4138 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *6)))) (-2487 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-708)))) (-1199 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-2 (|:| -1720 (-588 *6)) (|:| -1566 (-588 *6)))))) (-1384 (*1 *2 *3 *1) (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-1384 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-1426 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *1 (-1114 *5 *6 *7 *3)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-108)))) (-1900 (*1 *2 *3 *1) (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-3060 (*1 *2 *3 *1) (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-3864 (*1 *2 *3 *1) (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-2102 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-108) *7 (-588 *7))) (-4 *1 (-1114 *4 *5 *6 *7)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)))) (-1900 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-3060 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-3864 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))) (-2153 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-108) *2 *2)) (-4 *1 (-1114 *5 *6 *7 *2)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *2 (-985 *5 *6 *7)))) (-3090 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-588 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-108) *8 *8)) (-4 *1 (-1114 *5 *6 *7 *8)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)))) (-2163 (*1 *2 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-3896 (*1 *2 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-2556 (*1 *2 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-2625 (*1 *2 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-1524 (*1 *1 *1) (-12 (-4 *1 (-1114 *2 *3 *4 *5)) (-4 *2 (-514)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-985 *2 *3 *4)))) (-2918 (*1 *2 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-2510 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1)) (-4 *1 (-1114 *4 *5 *6 *7)))) (-3829 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-588 (-2 (|:| -1720 *1) (|:| -1566 (-588 *7))))) (-5 *3 (-588 *7)) (-4 *1 (-1114 *4 *5 *6 *7)))) (-2337 (*1 *2 *1) (|partial| -12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-1442 (*1 *2 *1) (|partial| -12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-2352 (*1 *1 *1) (|partial| -12 (-4 *1 (-1114 *2 *3 *4 *5)) (-4 *2 (-514)) (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-985 *2 *3 *4)))) (-1982 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *5)))) (-1711 (*1 *2 *3 *1) (-12 (-4 *1 (-1114 *4 *5 *3 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *3 (-784)) (-4 *6 (-985 *4 *5 *3)) (-5 *2 (-108)))) (-1696 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1114 *4 *5 *3 *2)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *3 (-784)) (-4 *2 (-985 *4 *5 *3)))) (-4078 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-3934 (*1 *1 *1 *2) (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))) (-3111 (*1 *2 *1) (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *5 (-343)) (-5 *2 (-708)))))
+(-13 (-903 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4238) (-6 -4239) (-15 -1517 ((-108) $ $)) (-15 -3538 ((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |t#4|))) "failed") (-588 |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -3538 ((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |t#4|))) "failed") (-588 |t#4|) (-1 (-108) |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -4138 ((-588 |t#4|) $)) (-15 -2487 ((-708) $)) (-15 -1199 ((-2 (|:| -1720 (-588 |t#4|)) (|:| -1566 (-588 |t#4|))) $)) (-15 -1384 ((-108) |t#4| $)) (-15 -1384 ((-108) $)) (-15 -1426 ((-108) |t#4| $ (-1 (-108) |t#4| |t#4|))) (-15 -1900 ((-108) |t#4| $)) (-15 -3060 ((-108) |t#4| $)) (-15 -3864 ((-108) |t#4| $)) (-15 -2102 ((-108) $ (-1 (-108) |t#4| (-588 |t#4|)))) (-15 -1900 ((-108) $)) (-15 -3060 ((-108) $)) (-15 -3864 ((-108) $)) (-15 -2153 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -3090 ((-588 |t#4|) (-588 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-108) |t#4| |t#4|))) (-15 -2163 (|t#4| |t#4| $)) (-15 -3896 (|t#4| |t#4| $)) (-15 -2556 (|t#4| |t#4| $)) (-15 -2625 (|t#4| |t#4| $)) (-15 -1524 ($ $)) (-15 -2918 (|t#4| |t#4| $)) (-15 -2510 ((-588 $) (-588 |t#4|))) (-15 -3829 ((-588 (-2 (|:| -1720 $) (|:| -1566 (-588 |t#4|)))) (-588 |t#4|))) (-15 -2337 ((-3 |t#4| "failed") $)) (-15 -1442 ((-3 |t#4| "failed") $)) (-15 -2352 ((-3 $ "failed") $)) (-15 -1982 ((-588 |t#3|) $)) (-15 -1711 ((-108) |t#3| $)) (-15 -1696 ((-3 |t#4| "failed") $ |t#3|)) (-15 -4078 ((-3 $ "failed") $ |t#4|)) (-15 -3934 ($ $ |t#4|)) (IF (|has| |t#3| (-343)) (-15 -3111 ((-708) $)) |%noBranch|)))
(((-33) . T) ((-97) . T) ((-562 (-588 |#4|)) . T) ((-562 (-792)) . T) ((-139 |#4|) . T) ((-563 (-498)) |has| |#4| (-563 (-498))) ((-285 |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))) ((-461 |#4|) . T) ((-483 |#4| |#4|) -12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))) ((-903 |#1| |#2| |#3| |#4|) . T) ((-1014) . T) ((-1120) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4090 (((-588 (-1085)) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-2908 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1929 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2884 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2930 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) NIL T CONST)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2199 (((-881 |#1|) $ (-708)) 17) (((-881 |#1|) $ (-708) (-708)) NIL)) (-3390 (((-108) $) NIL)) (-2838 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-708) $ (-1085)) NIL) (((-708) $ (-1085) (-708)) NIL)) (-2782 (((-108) $) NIL)) (-1504 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3340 (((-108) $) NIL)) (-4049 (($ $ (-588 (-1085)) (-588 (-494 (-1085)))) NIL) (($ $ (-1085) (-494 (-1085))) NIL) (($ |#1| (-494 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-1254 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-1858 (($ $ (-1085)) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-37 (-382 (-522)))))) (-4151 (((-1032) $) NIL)) (-2730 (($ (-1 $) (-1085) |#1|) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3719 (($ $ (-708)) NIL)) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3266 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2289 (($ $ (-1085) $) NIL) (($ $ (-588 (-1085)) (-588 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL)) (-2157 (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-2793 (((-494 (-1085)) $) NIL)) (-1738 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ $) NIL (|has| |#1| (-514))) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-1085)) NIL) (($ (-881 |#1|)) NIL)) (-3243 ((|#1| $ (-494 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (((-881 |#1|) $ (-708)) NIL)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-1759 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1745 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3924 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) NIL T CONST)) (-2213 (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-1115 |#1|) (-13 (-678 |#1| (-1085)) (-10 -8 (-15 -3243 ((-881 |#1|) $ (-708))) (-15 -2190 ($ (-1085))) (-15 -2190 ($ (-881 |#1|))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -1858 ($ $ (-1085) |#1|)) (-15 -2730 ($ (-1 $) (-1085) |#1|))) |%noBranch|))) (-971)) (T -1115))
-((-3243 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *2 (-881 *4)) (-5 *1 (-1115 *4)) (-4 *4 (-971)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1115 *3)) (-4 *3 (-971)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-881 *3)) (-4 *3 (-971)) (-5 *1 (-1115 *3)))) (-1858 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *1 (-1115 *3)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)))) (-2730 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1115 *4))) (-5 *3 (-1085)) (-5 *1 (-1115 *4)) (-4 *4 (-37 (-382 (-522)))) (-4 *4 (-971)))))
-(-13 (-678 |#1| (-1085)) (-10 -8 (-15 -3243 ((-881 |#1|) $ (-708))) (-15 -2190 ($ (-1085))) (-15 -2190 ($ (-881 |#1|))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -1858 ($ $ (-1085) |#1|)) (-15 -2730 ($ (-1 $) (-1085) |#1|))) |%noBranch|)))
-((-2124 (($ |#1| (-588 (-588 (-872 (-202)))) (-108)) 16)) (-2883 (((-108) $ (-108)) 15)) (-2364 (((-108) $) 14)) (-2654 (((-588 (-588 (-872 (-202)))) $) 10)) (-1510 ((|#1| $) 8)) (-3888 (((-108) $) 12)))
-(((-1116 |#1|) (-10 -8 (-15 -1510 (|#1| $)) (-15 -2654 ((-588 (-588 (-872 (-202)))) $)) (-15 -3888 ((-108) $)) (-15 -2364 ((-108) $)) (-15 -2883 ((-108) $ (-108))) (-15 -2124 ($ |#1| (-588 (-588 (-872 (-202)))) (-108)))) (-901)) (T -1116))
-((-2124 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-108)) (-5 *1 (-1116 *2)) (-4 *2 (-901)))) (-2883 (*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1116 *3)) (-4 *3 (-901)))) (-2364 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1116 *3)) (-4 *3 (-901)))) (-3888 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1116 *3)) (-4 *3 (-901)))) (-2654 (*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-1116 *3)) (-4 *3 (-901)))) (-1510 (*1 *2 *1) (-12 (-5 *1 (-1116 *2)) (-4 *2 (-901)))))
-(-10 -8 (-15 -1510 (|#1| $)) (-15 -2654 ((-588 (-588 (-872 (-202)))) $)) (-15 -3888 ((-108) $)) (-15 -2364 ((-108) $)) (-15 -2883 ((-108) $ (-108))) (-15 -2124 ($ |#1| (-588 (-588 (-872 (-202)))) (-108))))
-((-2468 (((-872 (-202)) (-872 (-202))) 25)) (-2736 (((-872 (-202)) (-202) (-202) (-202) (-202)) 10)) (-3751 (((-588 (-872 (-202))) (-872 (-202)) (-872 (-202)) (-872 (-202)) (-202) (-588 (-588 (-202)))) 37)) (-1883 (((-202) (-872 (-202)) (-872 (-202))) 21)) (-3230 (((-872 (-202)) (-872 (-202)) (-872 (-202))) 22)) (-2981 (((-588 (-588 (-202))) (-522)) 31)) (-1612 (((-872 (-202)) (-872 (-202)) (-872 (-202))) 20)) (-1602 (((-872 (-202)) (-872 (-202)) (-872 (-202))) 19)) (* (((-872 (-202)) (-202) (-872 (-202))) 18)))
-(((-1117) (-10 -7 (-15 -2736 ((-872 (-202)) (-202) (-202) (-202) (-202))) (-15 * ((-872 (-202)) (-202) (-872 (-202)))) (-15 -1602 ((-872 (-202)) (-872 (-202)) (-872 (-202)))) (-15 -1612 ((-872 (-202)) (-872 (-202)) (-872 (-202)))) (-15 -1883 ((-202) (-872 (-202)) (-872 (-202)))) (-15 -3230 ((-872 (-202)) (-872 (-202)) (-872 (-202)))) (-15 -2468 ((-872 (-202)) (-872 (-202)))) (-15 -2981 ((-588 (-588 (-202))) (-522))) (-15 -3751 ((-588 (-872 (-202))) (-872 (-202)) (-872 (-202)) (-872 (-202)) (-202) (-588 (-588 (-202))))))) (T -1117))
-((-3751 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-588 (-588 (-202)))) (-5 *4 (-202)) (-5 *2 (-588 (-872 *4))) (-5 *1 (-1117)) (-5 *3 (-872 *4)))) (-2981 (*1 *2 *3) (-12 (-5 *3 (-522)) (-5 *2 (-588 (-588 (-202)))) (-5 *1 (-1117)))) (-2468 (*1 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)))) (-3230 (*1 *2 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)))) (-1883 (*1 *2 *3 *3) (-12 (-5 *3 (-872 (-202))) (-5 *2 (-202)) (-5 *1 (-1117)))) (-1612 (*1 *2 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)))) (-1602 (*1 *2 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-872 (-202))) (-5 *3 (-202)) (-5 *1 (-1117)))) (-2736 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)) (-5 *3 (-202)))))
-(-10 -7 (-15 -2736 ((-872 (-202)) (-202) (-202) (-202) (-202))) (-15 * ((-872 (-202)) (-202) (-872 (-202)))) (-15 -1602 ((-872 (-202)) (-872 (-202)) (-872 (-202)))) (-15 -1612 ((-872 (-202)) (-872 (-202)) (-872 (-202)))) (-15 -1883 ((-202) (-872 (-202)) (-872 (-202)))) (-15 -3230 ((-872 (-202)) (-872 (-202)) (-872 (-202)))) (-15 -2468 ((-872 (-202)) (-872 (-202)))) (-15 -2981 ((-588 (-588 (-202))) (-522))) (-15 -3751 ((-588 (-872 (-202))) (-872 (-202)) (-872 (-202)) (-872 (-202)) (-202) (-588 (-588 (-202))))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1628 ((|#1| $ (-708)) 13)) (-2517 (((-708) $) 12)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2190 (((-886 |#1|) $) 10) (($ (-886 |#1|)) 9) (((-792) $) 23 (|has| |#1| (-562 (-792))))) (-1531 (((-108) $ $) 16 (|has| |#1| (-1014)))))
-(((-1118 |#1|) (-13 (-562 (-886 |#1|)) (-10 -8 (-15 -2190 ($ (-886 |#1|))) (-15 -1628 (|#1| $ (-708))) (-15 -2517 ((-708) $)) (IF (|has| |#1| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|))) (-1120)) (T -1118))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-886 *3)) (-4 *3 (-1120)) (-5 *1 (-1118 *3)))) (-1628 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-1118 *2)) (-4 *2 (-1120)))) (-2517 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1118 *3)) (-4 *3 (-1120)))))
-(-13 (-562 (-886 |#1|)) (-10 -8 (-15 -2190 ($ (-886 |#1|))) (-15 -1628 (|#1| $ (-708))) (-15 -2517 ((-708) $)) (IF (|has| |#1| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|)))
-((-4065 (((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)) (-522)) 79)) (-3394 (((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|))) 73)) (-3658 (((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|))) 58)))
-(((-1119 |#1|) (-10 -7 (-15 -3394 ((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)))) (-15 -3658 ((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)))) (-15 -4065 ((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)) (-522)))) (-324)) (T -1119))
-((-4065 (*1 *2 *3 *4) (-12 (-5 *4 (-522)) (-4 *5 (-324)) (-5 *2 (-393 (-1081 (-1081 *5)))) (-5 *1 (-1119 *5)) (-5 *3 (-1081 (-1081 *5))))) (-3658 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-393 (-1081 (-1081 *4)))) (-5 *1 (-1119 *4)) (-5 *3 (-1081 (-1081 *4))))) (-3394 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-393 (-1081 (-1081 *4)))) (-5 *1 (-1119 *4)) (-5 *3 (-1081 (-1081 *4))))))
-(-10 -7 (-15 -3394 ((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)))) (-15 -3658 ((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)))) (-15 -4065 ((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)) (-522))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3533 (((-588 (-1085)) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3044 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2016 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3023 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3066 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) NIL T CONST)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3710 (((-881 |#1|) $ (-708)) 17) (((-881 |#1|) $ (-708) (-708)) NIL)) (-3672 (((-108) $) NIL)) (-2980 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-708) $ (-1085)) NIL) (((-708) $ (-1085) (-708)) NIL)) (-2859 (((-108) $) NIL)) (-1811 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1374 (((-108) $) NIL)) (-3500 (($ $ (-588 (-1085)) (-588 (-494 (-1085)))) NIL) (($ $ (-1085) (-494 (-1085))) NIL) (($ |#1| (-494 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1238 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-2611 (($ $ (-1085)) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085) |#1|) NIL (|has| |#1| (-37 (-382 (-522)))))) (-4174 (((-1032) $) NIL)) (-3922 (($ (-1 $) (-1085) |#1|) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3934 (($ $ (-708)) NIL)) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3357 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2330 (($ $ (-1085) $) NIL) (($ $ (-588 (-1085)) (-588 $)) NIL) (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL)) (-2731 (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-2487 (((-494 (-1085)) $) NIL)) (-1831 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ $) NIL (|has| |#1| (-514))) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-1085)) NIL) (($ (-881 |#1|)) NIL)) (-1643 ((|#1| $ (-494 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (((-881 |#1|) $ (-708)) NIL)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-1856 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1839 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2476 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) NIL T CONST)) (-2252 (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL)) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-1115 |#1|) (-13 (-678 |#1| (-1085)) (-10 -8 (-15 -1643 ((-881 |#1|) $ (-708))) (-15 -2217 ($ (-1085))) (-15 -2217 ($ (-881 |#1|))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -2611 ($ $ (-1085) |#1|)) (-15 -3922 ($ (-1 $) (-1085) |#1|))) |%noBranch|))) (-971)) (T -1115))
+((-1643 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *2 (-881 *4)) (-5 *1 (-1115 *4)) (-4 *4 (-971)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1115 *3)) (-4 *3 (-971)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-881 *3)) (-4 *3 (-971)) (-5 *1 (-1115 *3)))) (-2611 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *1 (-1115 *3)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)))) (-3922 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1115 *4))) (-5 *3 (-1085)) (-5 *1 (-1115 *4)) (-4 *4 (-37 (-382 (-522)))) (-4 *4 (-971)))))
+(-13 (-678 |#1| (-1085)) (-10 -8 (-15 -1643 ((-881 |#1|) $ (-708))) (-15 -2217 ($ (-1085))) (-15 -2217 ($ (-881 |#1|))) (IF (|has| |#1| (-37 (-382 (-522)))) (PROGN (-15 -2611 ($ $ (-1085) |#1|)) (-15 -3922 ($ (-1 $) (-1085) |#1|))) |%noBranch|)))
+((-1530 (($ |#1| (-588 (-588 (-872 (-202)))) (-108)) 16)) (-1397 (((-108) $ (-108)) 15)) (-3914 (((-108) $) 14)) (-1759 (((-588 (-588 (-872 (-202)))) $) 10)) (-1835 ((|#1| $) 8)) (-1947 (((-108) $) 12)))
+(((-1116 |#1|) (-10 -8 (-15 -1835 (|#1| $)) (-15 -1759 ((-588 (-588 (-872 (-202)))) $)) (-15 -1947 ((-108) $)) (-15 -3914 ((-108) $)) (-15 -1397 ((-108) $ (-108))) (-15 -1530 ($ |#1| (-588 (-588 (-872 (-202)))) (-108)))) (-901)) (T -1116))
+((-1530 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-108)) (-5 *1 (-1116 *2)) (-4 *2 (-901)))) (-1397 (*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1116 *3)) (-4 *3 (-901)))) (-3914 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1116 *3)) (-4 *3 (-901)))) (-1947 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1116 *3)) (-4 *3 (-901)))) (-1759 (*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-1116 *3)) (-4 *3 (-901)))) (-1835 (*1 *2 *1) (-12 (-5 *1 (-1116 *2)) (-4 *2 (-901)))))
+(-10 -8 (-15 -1835 (|#1| $)) (-15 -1759 ((-588 (-588 (-872 (-202)))) $)) (-15 -1947 ((-108) $)) (-15 -3914 ((-108) $)) (-15 -1397 ((-108) $ (-108))) (-15 -1530 ($ |#1| (-588 (-588 (-872 (-202)))) (-108))))
+((-2826 (((-872 (-202)) (-872 (-202))) 25)) (-1239 (((-872 (-202)) (-202) (-202) (-202) (-202)) 10)) (-3117 (((-588 (-872 (-202))) (-872 (-202)) (-872 (-202)) (-872 (-202)) (-202) (-588 (-588 (-202)))) 37)) (-4024 (((-202) (-872 (-202)) (-872 (-202))) 21)) (-2791 (((-872 (-202)) (-872 (-202)) (-872 (-202))) 22)) (-3995 (((-588 (-588 (-202))) (-522)) 31)) (-1672 (((-872 (-202)) (-872 (-202)) (-872 (-202))) 20)) (-1661 (((-872 (-202)) (-872 (-202)) (-872 (-202))) 19)) (* (((-872 (-202)) (-202) (-872 (-202))) 18)))
+(((-1117) (-10 -7 (-15 -1239 ((-872 (-202)) (-202) (-202) (-202) (-202))) (-15 * ((-872 (-202)) (-202) (-872 (-202)))) (-15 -1661 ((-872 (-202)) (-872 (-202)) (-872 (-202)))) (-15 -1672 ((-872 (-202)) (-872 (-202)) (-872 (-202)))) (-15 -4024 ((-202) (-872 (-202)) (-872 (-202)))) (-15 -2791 ((-872 (-202)) (-872 (-202)) (-872 (-202)))) (-15 -2826 ((-872 (-202)) (-872 (-202)))) (-15 -3995 ((-588 (-588 (-202))) (-522))) (-15 -3117 ((-588 (-872 (-202))) (-872 (-202)) (-872 (-202)) (-872 (-202)) (-202) (-588 (-588 (-202))))))) (T -1117))
+((-3117 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-588 (-588 (-202)))) (-5 *4 (-202)) (-5 *2 (-588 (-872 *4))) (-5 *1 (-1117)) (-5 *3 (-872 *4)))) (-3995 (*1 *2 *3) (-12 (-5 *3 (-522)) (-5 *2 (-588 (-588 (-202)))) (-5 *1 (-1117)))) (-2826 (*1 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)))) (-2791 (*1 *2 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)))) (-4024 (*1 *2 *3 *3) (-12 (-5 *3 (-872 (-202))) (-5 *2 (-202)) (-5 *1 (-1117)))) (-1672 (*1 *2 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)))) (-1661 (*1 *2 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-872 (-202))) (-5 *3 (-202)) (-5 *1 (-1117)))) (-1239 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)) (-5 *3 (-202)))))
+(-10 -7 (-15 -1239 ((-872 (-202)) (-202) (-202) (-202) (-202))) (-15 * ((-872 (-202)) (-202) (-872 (-202)))) (-15 -1661 ((-872 (-202)) (-872 (-202)) (-872 (-202)))) (-15 -1672 ((-872 (-202)) (-872 (-202)) (-872 (-202)))) (-15 -4024 ((-202) (-872 (-202)) (-872 (-202)))) (-15 -2791 ((-872 (-202)) (-872 (-202)) (-872 (-202)))) (-15 -2826 ((-872 (-202)) (-872 (-202)))) (-15 -3995 ((-588 (-588 (-202))) (-522))) (-15 -3117 ((-588 (-872 (-202))) (-872 (-202)) (-872 (-202)) (-872 (-202)) (-202) (-588 (-588 (-202))))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1696 ((|#1| $ (-708)) 13)) (-4030 (((-708) $) 12)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2217 (((-886 |#1|) $) 10) (($ (-886 |#1|)) 9) (((-792) $) 23 (|has| |#1| (-562 (-792))))) (-1562 (((-108) $ $) 16 (|has| |#1| (-1014)))))
+(((-1118 |#1|) (-13 (-562 (-886 |#1|)) (-10 -8 (-15 -2217 ($ (-886 |#1|))) (-15 -1696 (|#1| $ (-708))) (-15 -4030 ((-708) $)) (IF (|has| |#1| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|))) (-1120)) (T -1118))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-886 *3)) (-4 *3 (-1120)) (-5 *1 (-1118 *3)))) (-1696 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-1118 *2)) (-4 *2 (-1120)))) (-4030 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1118 *3)) (-4 *3 (-1120)))))
+(-13 (-562 (-886 |#1|)) (-10 -8 (-15 -2217 ($ (-886 |#1|))) (-15 -1696 (|#1| $ (-708))) (-15 -4030 ((-708) $)) (IF (|has| |#1| (-562 (-792))) (-6 (-562 (-792))) |%noBranch|) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|)))
+((-3140 (((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)) (-522)) 79)) (-3703 (((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|))) 73)) (-1489 (((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|))) 58)))
+(((-1119 |#1|) (-10 -7 (-15 -3703 ((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)))) (-15 -1489 ((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)))) (-15 -3140 ((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)) (-522)))) (-324)) (T -1119))
+((-3140 (*1 *2 *3 *4) (-12 (-5 *4 (-522)) (-4 *5 (-324)) (-5 *2 (-393 (-1081 (-1081 *5)))) (-5 *1 (-1119 *5)) (-5 *3 (-1081 (-1081 *5))))) (-1489 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-393 (-1081 (-1081 *4)))) (-5 *1 (-1119 *4)) (-5 *3 (-1081 (-1081 *4))))) (-3703 (*1 *2 *3) (-12 (-4 *4 (-324)) (-5 *2 (-393 (-1081 (-1081 *4)))) (-5 *1 (-1119 *4)) (-5 *3 (-1081 (-1081 *4))))))
+(-10 -7 (-15 -3703 ((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)))) (-15 -1489 ((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)))) (-15 -3140 ((-393 (-1081 (-1081 |#1|))) (-1081 (-1081 |#1|)) (-522))))
NIL
(((-1120) (-1197)) (T -1120))
NIL
-(-13 (-10 -7 (-6 -2047)))
-((-1278 (((-108)) 15)) (-2728 (((-1171) (-588 |#1|) (-588 |#1|)) 19) (((-1171) (-588 |#1|)) 20)) (-3352 (((-108) |#1| |#1|) 31 (|has| |#1| (-784)))) (-2720 (((-108) |#1| |#1| (-1 (-108) |#1| |#1|)) 27) (((-3 (-108) "failed") |#1| |#1|) 25)) (-3860 ((|#1| (-588 |#1|)) 32 (|has| |#1| (-784))) ((|#1| (-588 |#1|) (-1 (-108) |#1| |#1|)) 28)) (-2085 (((-2 (|:| -2314 (-588 |#1|)) (|:| -1376 (-588 |#1|)))) 17)))
-(((-1121 |#1|) (-10 -7 (-15 -2728 ((-1171) (-588 |#1|))) (-15 -2728 ((-1171) (-588 |#1|) (-588 |#1|))) (-15 -2085 ((-2 (|:| -2314 (-588 |#1|)) (|:| -1376 (-588 |#1|))))) (-15 -2720 ((-3 (-108) "failed") |#1| |#1|)) (-15 -2720 ((-108) |#1| |#1| (-1 (-108) |#1| |#1|))) (-15 -3860 (|#1| (-588 |#1|) (-1 (-108) |#1| |#1|))) (-15 -1278 ((-108))) (IF (|has| |#1| (-784)) (PROGN (-15 -3860 (|#1| (-588 |#1|))) (-15 -3352 ((-108) |#1| |#1|))) |%noBranch|)) (-1014)) (T -1121))
-((-3352 (*1 *2 *3 *3) (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-784)) (-4 *3 (-1014)))) (-3860 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-784)) (-5 *1 (-1121 *2)))) (-1278 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-1014)))) (-3860 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *2)) (-5 *4 (-1 (-108) *2 *2)) (-5 *1 (-1121 *2)) (-4 *2 (-1014)))) (-2720 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *3 (-1014)) (-5 *2 (-108)) (-5 *1 (-1121 *3)))) (-2720 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-1014)))) (-2085 (*1 *2) (-12 (-5 *2 (-2 (|:| -2314 (-588 *3)) (|:| -1376 (-588 *3)))) (-5 *1 (-1121 *3)) (-4 *3 (-1014)))) (-2728 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-1014)) (-5 *2 (-1171)) (-5 *1 (-1121 *4)))) (-2728 (*1 *2 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-1014)) (-5 *2 (-1171)) (-5 *1 (-1121 *4)))))
-(-10 -7 (-15 -2728 ((-1171) (-588 |#1|))) (-15 -2728 ((-1171) (-588 |#1|) (-588 |#1|))) (-15 -2085 ((-2 (|:| -2314 (-588 |#1|)) (|:| -1376 (-588 |#1|))))) (-15 -2720 ((-3 (-108) "failed") |#1| |#1|)) (-15 -2720 ((-108) |#1| |#1| (-1 (-108) |#1| |#1|))) (-15 -3860 (|#1| (-588 |#1|) (-1 (-108) |#1| |#1|))) (-15 -1278 ((-108))) (IF (|has| |#1| (-784)) (PROGN (-15 -3860 (|#1| (-588 |#1|))) (-15 -3352 ((-108) |#1| |#1|))) |%noBranch|))
-((-2573 (((-1171) (-588 (-1085)) (-588 (-1085))) 12) (((-1171) (-588 (-1085))) 10)) (-1493 (((-1171)) 13)) (-2503 (((-2 (|:| -1376 (-588 (-1085))) (|:| -2314 (-588 (-1085))))) 17)))
-(((-1122) (-10 -7 (-15 -2573 ((-1171) (-588 (-1085)))) (-15 -2573 ((-1171) (-588 (-1085)) (-588 (-1085)))) (-15 -2503 ((-2 (|:| -1376 (-588 (-1085))) (|:| -2314 (-588 (-1085)))))) (-15 -1493 ((-1171))))) (T -1122))
-((-1493 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1122)))) (-2503 (*1 *2) (-12 (-5 *2 (-2 (|:| -1376 (-588 (-1085))) (|:| -2314 (-588 (-1085))))) (-5 *1 (-1122)))) (-2573 (*1 *2 *3 *3) (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1171)) (-5 *1 (-1122)))) (-2573 (*1 *2 *3) (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1171)) (-5 *1 (-1122)))))
-(-10 -7 (-15 -2573 ((-1171) (-588 (-1085)))) (-15 -2573 ((-1171) (-588 (-1085)) (-588 (-1085)))) (-15 -2503 ((-2 (|:| -1376 (-588 (-1085))) (|:| -2314 (-588 (-1085)))))) (-15 -1493 ((-1171))))
-((-3119 (($ $) 16)) (-2813 (((-108) $) 23)))
-(((-1123 |#1|) (-10 -8 (-15 -3119 (|#1| |#1|)) (-15 -2813 ((-108) |#1|))) (-1124)) (T -1123))
-NIL
-(-10 -8 (-15 -3119 (|#1| |#1|)) (-15 -2813 ((-108) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 51)) (-3450 (((-393 $) $) 52)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2813 (((-108) $) 53)) (-2782 (((-108) $) 31)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-1916 (((-393 $) $) 50)) (-2232 (((-3 $ "failed") $ $) 42)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
+(-13 (-10 -7 (-6 -2088)))
+((-1511 (((-108)) 15)) (-3463 (((-1171) (-588 |#1|) (-588 |#1|)) 19) (((-1171) (-588 |#1|)) 20)) (-1480 (((-108) |#1| |#1|) 31 (|has| |#1| (-784)))) (-3309 (((-108) |#1| |#1| (-1 (-108) |#1| |#1|)) 27) (((-3 (-108) "failed") |#1| |#1|) 25)) (-1712 ((|#1| (-588 |#1|)) 32 (|has| |#1| (-784))) ((|#1| (-588 |#1|) (-1 (-108) |#1| |#1|)) 28)) (-4150 (((-2 (|:| -2430 (-588 |#1|)) (|:| -3636 (-588 |#1|)))) 17)))
+(((-1121 |#1|) (-10 -7 (-15 -3463 ((-1171) (-588 |#1|))) (-15 -3463 ((-1171) (-588 |#1|) (-588 |#1|))) (-15 -4150 ((-2 (|:| -2430 (-588 |#1|)) (|:| -3636 (-588 |#1|))))) (-15 -3309 ((-3 (-108) "failed") |#1| |#1|)) (-15 -3309 ((-108) |#1| |#1| (-1 (-108) |#1| |#1|))) (-15 -1712 (|#1| (-588 |#1|) (-1 (-108) |#1| |#1|))) (-15 -1511 ((-108))) (IF (|has| |#1| (-784)) (PROGN (-15 -1712 (|#1| (-588 |#1|))) (-15 -1480 ((-108) |#1| |#1|))) |%noBranch|)) (-1014)) (T -1121))
+((-1480 (*1 *2 *3 *3) (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-784)) (-4 *3 (-1014)))) (-1712 (*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-784)) (-5 *1 (-1121 *2)))) (-1511 (*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-1014)))) (-1712 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *2)) (-5 *4 (-1 (-108) *2 *2)) (-5 *1 (-1121 *2)) (-4 *2 (-1014)))) (-3309 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *3 (-1014)) (-5 *2 (-108)) (-5 *1 (-1121 *3)))) (-3309 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-1014)))) (-4150 (*1 *2) (-12 (-5 *2 (-2 (|:| -2430 (-588 *3)) (|:| -3636 (-588 *3)))) (-5 *1 (-1121 *3)) (-4 *3 (-1014)))) (-3463 (*1 *2 *3 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-1014)) (-5 *2 (-1171)) (-5 *1 (-1121 *4)))) (-3463 (*1 *2 *3) (-12 (-5 *3 (-588 *4)) (-4 *4 (-1014)) (-5 *2 (-1171)) (-5 *1 (-1121 *4)))))
+(-10 -7 (-15 -3463 ((-1171) (-588 |#1|))) (-15 -3463 ((-1171) (-588 |#1|) (-588 |#1|))) (-15 -4150 ((-2 (|:| -2430 (-588 |#1|)) (|:| -3636 (-588 |#1|))))) (-15 -3309 ((-3 (-108) "failed") |#1| |#1|)) (-15 -3309 ((-108) |#1| |#1| (-1 (-108) |#1| |#1|))) (-15 -1712 (|#1| (-588 |#1|) (-1 (-108) |#1| |#1|))) (-15 -1511 ((-108))) (IF (|has| |#1| (-784)) (PROGN (-15 -1712 (|#1| (-588 |#1|))) (-15 -1480 ((-108) |#1| |#1|))) |%noBranch|))
+((-2579 (((-1171) (-588 (-1085)) (-588 (-1085))) 12) (((-1171) (-588 (-1085))) 10)) (-1709 (((-1171)) 13)) (-4218 (((-2 (|:| -3636 (-588 (-1085))) (|:| -2430 (-588 (-1085))))) 17)))
+(((-1122) (-10 -7 (-15 -2579 ((-1171) (-588 (-1085)))) (-15 -2579 ((-1171) (-588 (-1085)) (-588 (-1085)))) (-15 -4218 ((-2 (|:| -3636 (-588 (-1085))) (|:| -2430 (-588 (-1085)))))) (-15 -1709 ((-1171))))) (T -1122))
+((-1709 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1122)))) (-4218 (*1 *2) (-12 (-5 *2 (-2 (|:| -3636 (-588 (-1085))) (|:| -2430 (-588 (-1085))))) (-5 *1 (-1122)))) (-2579 (*1 *2 *3 *3) (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1171)) (-5 *1 (-1122)))) (-2579 (*1 *2 *3) (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1171)) (-5 *1 (-1122)))))
+(-10 -7 (-15 -2579 ((-1171) (-588 (-1085)))) (-15 -2579 ((-1171) (-588 (-1085)) (-588 (-1085)))) (-15 -4218 ((-2 (|:| -3636 (-588 (-1085))) (|:| -2430 (-588 (-1085)))))) (-15 -1709 ((-1171))))
+((-2961 (($ $) 16)) (-2725 (((-108) $) 23)))
+(((-1123 |#1|) (-10 -8 (-15 -2961 (|#1| |#1|)) (-15 -2725 ((-108) |#1|))) (-1124)) (T -1123))
+NIL
+(-10 -8 (-15 -2961 (|#1| |#1|)) (-15 -2725 ((-108) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 51)) (-3133 (((-393 $) $) 52)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2725 (((-108) $) 53)) (-2859 (((-108) $) 31)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-2006 (((-393 $) $) 50)) (-2276 (((-3 $ "failed") $ $) 42)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43)) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24)))
(((-1124) (-1197)) (T -1124))
-((-2813 (*1 *2 *1) (-12 (-4 *1 (-1124)) (-5 *2 (-108)))) (-3450 (*1 *2 *1) (-12 (-5 *2 (-393 *1)) (-4 *1 (-1124)))) (-3119 (*1 *1 *1) (-4 *1 (-1124))) (-1916 (*1 *2 *1) (-12 (-5 *2 (-393 *1)) (-4 *1 (-1124)))))
-(-13 (-426) (-10 -8 (-15 -2813 ((-108) $)) (-15 -3450 ((-393 $) $)) (-15 -3119 ($ $)) (-15 -1916 ((-393 $) $))))
+((-2725 (*1 *2 *1) (-12 (-4 *1 (-1124)) (-5 *2 (-108)))) (-3133 (*1 *2 *1) (-12 (-5 *2 (-393 *1)) (-4 *1 (-1124)))) (-2961 (*1 *1 *1) (-4 *1 (-1124))) (-2006 (*1 *2 *1) (-12 (-5 *2 (-393 *1)) (-4 *1 (-1124)))))
+(-13 (-426) (-10 -8 (-15 -2725 ((-108) $)) (-15 -3133 ((-393 $) $)) (-15 -2961 ($ $)) (-15 -2006 ((-393 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 $) . T) ((-97) . T) ((-107 $ $) . T) ((-124) . T) ((-562 (-792)) . T) ((-157) . T) ((-266) . T) ((-426) . T) ((-514) . T) ((-590 $) . T) ((-655 $) . T) ((-664) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1391 (((-1130 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1130 |#1| |#3| |#5|)) 23)))
-(((-1125 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1391 ((-1130 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1130 |#1| |#3| |#5|)))) (-971) (-971) (-1085) (-1085) |#1| |#2|) (T -1125))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1130 *5 *7 *9)) (-4 *5 (-971)) (-4 *6 (-971)) (-14 *7 (-1085)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1130 *6 *8 *10)) (-5 *1 (-1125 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1085)))))
-(-10 -7 (-15 -1391 ((-1130 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1130 |#1| |#3| |#5|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4090 (((-588 (-999)) $) 74)) (-1611 (((-1085) $) 103)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2022 (($ $) 52 (|has| |#1| (-514)))) (-3739 (((-108) $) 54 (|has| |#1| (-514)))) (-2789 (($ $ (-522)) 98) (($ $ (-522) (-522)) 97)) (-2258 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) 105)) (-2908 (($ $) 135 (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) 118 (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 162 (|has| |#1| (-338)))) (-3450 (((-393 $) $) 163 (|has| |#1| (-338)))) (-1929 (($ $) 117 (|has| |#1| (-37 (-382 (-522)))))) (-1687 (((-108) $ $) 153 (|has| |#1| (-338)))) (-2884 (($ $) 134 (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) 119 (|has| |#1| (-37 (-382 (-522)))))) (-2773 (($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) 174)) (-2930 (($ $) 133 (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) 120 (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) 17 T CONST)) (-2277 (($ $ $) 157 (|has| |#1| (-338)))) (-3156 (($ $) 60)) (-2682 (((-3 $ "failed") $) 34)) (-2240 (((-382 (-881 |#1|)) $ (-522)) 172 (|has| |#1| (-514))) (((-382 (-881 |#1|)) $ (-522) (-522)) 171 (|has| |#1| (-514)))) (-2254 (($ $ $) 156 (|has| |#1| (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 151 (|has| |#1| (-338)))) (-2813 (((-108) $) 164 (|has| |#1| (-338)))) (-3390 (((-108) $) 73)) (-2838 (($) 145 (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-522) $) 100) (((-522) $ (-522)) 99)) (-2782 (((-108) $) 31)) (-1504 (($ $ (-522)) 116 (|has| |#1| (-37 (-382 (-522)))))) (-2073 (($ $ (-850)) 101)) (-3950 (($ (-1 |#1| (-522)) $) 173)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 160 (|has| |#1| (-338)))) (-3340 (((-108) $) 62)) (-4049 (($ |#1| (-522)) 61) (($ $ (-999) (-522)) 76) (($ $ (-588 (-999)) (-588 (-522))) 75)) (-1391 (($ (-1 |#1| |#1|) $) 63)) (-1254 (($ $) 142 (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) 65)) (-3138 ((|#1| $) 66)) (-2224 (($ (-588 $)) 149 (|has| |#1| (-338))) (($ $ $) 148 (|has| |#1| (-338)))) (-2385 (((-1068) $) 9)) (-3098 (($ $) 165 (|has| |#1| (-338)))) (-1858 (($ $) 170 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 169 (-3708 (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-887)) (|has| |#1| (-1106)) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-37 (-382 (-522)))))))) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 150 (|has| |#1| (-338)))) (-2259 (($ (-588 $)) 147 (|has| |#1| (-338))) (($ $ $) 146 (|has| |#1| (-338)))) (-1916 (((-393 $) $) 161 (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 158 (|has| |#1| (-338)))) (-3719 (($ $ (-522)) 95)) (-2232 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 152 (|has| |#1| (-338)))) (-3266 (($ $) 143 (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-522)))))) (-3730 (((-708) $) 154 (|has| |#1| (-338)))) (-2545 ((|#1| $ (-522)) 104) (($ $ $) 81 (|has| (-522) (-1026)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 155 (|has| |#1| (-338)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) 89 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-1085) (-708)) 88 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085))) 87 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-1085)) 86 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-708)) 84 (|has| |#1| (-15 * (|#1| (-522) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (-2793 (((-522) $) 64)) (-1738 (($ $) 132 (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) 121 (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) 131 (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) 122 (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) 130 (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) 123 (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) 72)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 47 (|has| |#1| (-157))) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514)))) (-3243 ((|#1| $ (-522)) 59)) (-2143 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-1893 ((|#1| $) 102)) (-1759 (($ $) 141 (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) 129 (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) 53 (|has| |#1| (-514)))) (-1745 (($ $) 140 (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) 128 (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) 139 (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) 127 (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-522)) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-522)))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) 138 (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) 126 (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) 137 (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) 125 (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) 136 (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) 124 (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 166 (|has| |#1| (-338)))) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) 93 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-1085) (-708)) 92 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085))) 91 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-1085)) 90 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-708)) 85 (|has| |#1| (-15 * (|#1| (-522) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#1|) 58 (|has| |#1| (-338))) (($ $ $) 168 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 167 (|has| |#1| (-338))) (($ $ $) 144 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 115 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
+((-3810 (((-1130 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1130 |#1| |#3| |#5|)) 23)))
+(((-1125 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3810 ((-1130 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1130 |#1| |#3| |#5|)))) (-971) (-971) (-1085) (-1085) |#1| |#2|) (T -1125))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1130 *5 *7 *9)) (-4 *5 (-971)) (-4 *6 (-971)) (-14 *7 (-1085)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1130 *6 *8 *10)) (-5 *1 (-1125 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1085)))))
+(-10 -7 (-15 -3810 ((-1130 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1130 |#1| |#3| |#5|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3533 (((-588 (-999)) $) 74)) (-1660 (((-1085) $) 103)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2298 (($ $) 52 (|has| |#1| (-514)))) (-3007 (((-108) $) 54 (|has| |#1| (-514)))) (-3495 (($ $ (-522)) 98) (($ $ (-522) (-522)) 97)) (-3024 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) 105)) (-3044 (($ $) 135 (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) 118 (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 162 (|has| |#1| (-338)))) (-3133 (((-393 $) $) 163 (|has| |#1| (-338)))) (-2016 (($ $) 117 (|has| |#1| (-37 (-382 (-522)))))) (-2805 (((-108) $ $) 153 (|has| |#1| (-338)))) (-3023 (($ $) 134 (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) 119 (|has| |#1| (-37 (-382 (-522)))))) (-1270 (($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) 174)) (-3066 (($ $) 133 (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) 120 (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) 17 T CONST)) (-2333 (($ $ $) 157 (|has| |#1| (-338)))) (-3241 (($ $) 60)) (-3920 (((-3 $ "failed") $) 34)) (-1749 (((-382 (-881 |#1|)) $ (-522)) 172 (|has| |#1| (-514))) (((-382 (-881 |#1|)) $ (-522) (-522)) 171 (|has| |#1| (-514)))) (-2303 (($ $ $) 156 (|has| |#1| (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 151 (|has| |#1| (-338)))) (-2725 (((-108) $) 164 (|has| |#1| (-338)))) (-3672 (((-108) $) 73)) (-2980 (($) 145 (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-522) $) 100) (((-522) $ (-522)) 99)) (-2859 (((-108) $) 31)) (-1811 (($ $ (-522)) 116 (|has| |#1| (-37 (-382 (-522)))))) (-2895 (($ $ (-850)) 101)) (-1332 (($ (-1 |#1| (-522)) $) 173)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 160 (|has| |#1| (-338)))) (-1374 (((-108) $) 62)) (-3500 (($ |#1| (-522)) 61) (($ $ (-999) (-522)) 76) (($ $ (-588 (-999)) (-588 (-522))) 75)) (-3810 (($ (-1 |#1| |#1|) $) 63)) (-1238 (($ $) 142 (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) 65)) (-3224 ((|#1| $) 66)) (-2267 (($ (-588 $)) 149 (|has| |#1| (-338))) (($ $ $) 148 (|has| |#1| (-338)))) (-2311 (((-1068) $) 9)) (-3193 (($ $) 165 (|has| |#1| (-338)))) (-2611 (($ $) 170 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 169 (-3844 (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-887)) (|has| |#1| (-1106)) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-37 (-382 (-522)))))))) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 150 (|has| |#1| (-338)))) (-2308 (($ (-588 $)) 147 (|has| |#1| (-338))) (($ $ $) 146 (|has| |#1| (-338)))) (-2006 (((-393 $) $) 161 (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 158 (|has| |#1| (-338)))) (-3934 (($ $ (-522)) 95)) (-2276 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 152 (|has| |#1| (-338)))) (-3357 (($ $) 143 (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-522)))))) (-4031 (((-708) $) 154 (|has| |#1| (-338)))) (-2683 ((|#1| $ (-522)) 104) (($ $ $) 81 (|has| (-522) (-1026)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 155 (|has| |#1| (-338)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) 89 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-1085) (-708)) 88 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085))) 87 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-1085)) 86 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-708)) 84 (|has| |#1| (-15 * (|#1| (-522) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (-2487 (((-522) $) 64)) (-1831 (($ $) 132 (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) 121 (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) 131 (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) 122 (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) 130 (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) 123 (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) 72)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 47 (|has| |#1| (-157))) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514)))) (-1643 ((|#1| $ (-522)) 59)) (-3040 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-1980 ((|#1| $) 102)) (-1856 (($ $) 141 (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) 129 (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) 53 (|has| |#1| (-514)))) (-1839 (($ $) 140 (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) 128 (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) 139 (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) 127 (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-522)) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-522)))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) 138 (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) 126 (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) 137 (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) 125 (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) 136 (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) 124 (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 166 (|has| |#1| (-338)))) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) 93 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-1085) (-708)) 92 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085))) 91 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-1085)) 90 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-708)) 85 (|has| |#1| (-15 * (|#1| (-522) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#1|) 58 (|has| |#1| (-338))) (($ $ $) 168 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 167 (|has| |#1| (-338))) (($ $ $) 144 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 115 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
(((-1126 |#1|) (-1197) (-971)) (T -1126))
-((-2773 (*1 *1 *2) (-12 (-5 *2 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *3)))) (-4 *3 (-971)) (-4 *1 (-1126 *3)))) (-3950 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-522))) (-4 *1 (-1126 *3)) (-4 *3 (-971)))) (-2240 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-1126 *4)) (-4 *4 (-971)) (-4 *4 (-514)) (-5 *2 (-382 (-881 *4))))) (-2240 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-4 *1 (-1126 *4)) (-4 *4 (-971)) (-4 *4 (-514)) (-5 *2 (-382 (-881 *4))))) (-1858 (*1 *1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522)))))) (-1858 (*1 *1 *1 *2) (-3708 (-12 (-5 *2 (-1085)) (-4 *1 (-1126 *3)) (-4 *3 (-971)) (-12 (-4 *3 (-29 (-522))) (-4 *3 (-887)) (-4 *3 (-1106)) (-4 *3 (-37 (-382 (-522)))))) (-12 (-5 *2 (-1085)) (-4 *1 (-1126 *3)) (-4 *3 (-971)) (-12 (|has| *3 (-15 -4090 ((-588 *2) *3))) (|has| *3 (-15 -1858 (*3 *3 *2))) (-4 *3 (-37 (-382 (-522)))))))))
-(-13 (-1144 |t#1| (-522)) (-10 -8 (-15 -2773 ($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |t#1|))))) (-15 -3950 ($ (-1 |t#1| (-522)) $)) (IF (|has| |t#1| (-514)) (PROGN (-15 -2240 ((-382 (-881 |t#1|)) $ (-522))) (-15 -2240 ((-382 (-881 |t#1|)) $ (-522) (-522)))) |%noBranch|) (IF (|has| |t#1| (-37 (-382 (-522)))) (PROGN (-15 -1858 ($ $)) (IF (|has| |t#1| (-15 -1858 (|t#1| |t#1| (-1085)))) (IF (|has| |t#1| (-15 -4090 ((-588 (-1085)) |t#1|))) (-15 -1858 ($ $ (-1085))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1106)) (IF (|has| |t#1| (-887)) (IF (|has| |t#1| (-29 (-522))) (-15 -1858 ($ $ (-1085))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-928)) (-6 (-1106))) |%noBranch|) (IF (|has| |t#1| (-338)) (-6 (-338)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-522)) . T) ((-25) . T) ((-37 #1=(-382 (-522))) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-34) |has| |#1| (-37 (-382 (-522)))) ((-91) |has| |#1| (-37 (-382 (-522)))) ((-97) . T) ((-107 #1# #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-210) |has| |#1| (-15 * (|#1| (-522) |#1|))) ((-220) |has| |#1| (-338)) ((-260) |has| |#1| (-37 (-382 (-522)))) ((-262 $ $) |has| (-522) (-1026)) ((-266) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-283) |has| |#1| (-338)) ((-338) |has| |#1| (-338)) ((-426) |has| |#1| (-338)) ((-463) |has| |#1| (-37 (-382 (-522)))) ((-514) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-590 #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-664) . T) ((-829 (-1085)) -12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))) ((-900 |#1| #0# (-999)) . T) ((-849) |has| |#1| (-338)) ((-928) |has| |#1| (-37 (-382 (-522)))) ((-977 #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1106) |has| |#1| (-37 (-382 (-522)))) ((-1109) |has| |#1| (-37 (-382 (-522)))) ((-1124) |has| |#1| (-338)) ((-1144 |#1| #0#) . T))
-((-2250 (((-108) $) 12)) (-1297 (((-3 |#3| "failed") $) 17) (((-3 (-1085) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 (-522) "failed") $) NIL)) (-1484 ((|#3| $) 14) (((-1085) $) NIL) (((-382 (-522)) $) NIL) (((-522) $) NIL)))
-(((-1127 |#1| |#2| |#3|) (-10 -8 (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1484 ((-1085) |#1|)) (-15 -1297 ((-3 (-1085) "failed") |#1|)) (-15 -1484 (|#3| |#1|)) (-15 -1297 ((-3 |#3| "failed") |#1|)) (-15 -2250 ((-108) |#1|))) (-1128 |#2| |#3|) (-971) (-1157 |#2|)) (T -1127))
-NIL
-(-10 -8 (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1484 ((-1085) |#1|)) (-15 -1297 ((-3 (-1085) "failed") |#1|)) (-15 -1484 (|#3| |#1|)) (-15 -1297 ((-3 |#3| "failed") |#1|)) (-15 -2250 ((-108) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2229 ((|#2| $) 231 (-4015 (|has| |#2| (-283)) (|has| |#1| (-338))))) (-4090 (((-588 (-999)) $) 74)) (-1611 (((-1085) $) 103)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2022 (($ $) 52 (|has| |#1| (-514)))) (-3739 (((-108) $) 54 (|has| |#1| (-514)))) (-2789 (($ $ (-522)) 98) (($ $ (-522) (-522)) 97)) (-2258 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) 105)) (-3321 ((|#2| $) 267)) (-2114 (((-3 |#2| "failed") $) 263)) (-3058 ((|#2| $) 264)) (-2908 (($ $) 135 (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) 118 (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) 19)) (-1565 (((-393 (-1081 $)) (-1081 $)) 240 (-4015 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-3119 (($ $) 162 (|has| |#1| (-338)))) (-3450 (((-393 $) $) 163 (|has| |#1| (-338)))) (-1929 (($ $) 117 (|has| |#1| (-37 (-382 (-522)))))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 237 (-4015 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-1687 (((-108) $ $) 153 (|has| |#1| (-338)))) (-2884 (($ $) 134 (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) 119 (|has| |#1| (-37 (-382 (-522)))))) (-1341 (((-522) $) 249 (-4015 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-2773 (($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) 174)) (-2930 (($ $) 133 (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) 120 (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) 17 T CONST)) (-1297 (((-3 |#2| "failed") $) 270) (((-3 (-522) "failed") $) 259 (-4015 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-3 (-382 (-522)) "failed") $) 257 (-4015 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-3 (-1085) "failed") $) 242 (-4015 (|has| |#2| (-962 (-1085))) (|has| |#1| (-338))))) (-1484 ((|#2| $) 269) (((-522) $) 260 (-4015 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-382 (-522)) $) 258 (-4015 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-1085) $) 243 (-4015 (|has| |#2| (-962 (-1085))) (|has| |#1| (-338))))) (-3701 (($ $) 266) (($ (-522) $) 265)) (-2277 (($ $ $) 157 (|has| |#1| (-338)))) (-3156 (($ $) 60)) (-2096 (((-628 |#2|) (-628 $)) 221 (|has| |#1| (-338))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) 220 (|has| |#1| (-338))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 219 (-4015 (|has| |#2| (-584 (-522))) (|has| |#1| (-338)))) (((-628 (-522)) (-628 $)) 218 (-4015 (|has| |#2| (-584 (-522))) (|has| |#1| (-338))))) (-2682 (((-3 $ "failed") $) 34)) (-2240 (((-382 (-881 |#1|)) $ (-522)) 172 (|has| |#1| (-514))) (((-382 (-881 |#1|)) $ (-522) (-522)) 171 (|has| |#1| (-514)))) (-3255 (($) 233 (-4015 (|has| |#2| (-507)) (|has| |#1| (-338))))) (-2254 (($ $ $) 156 (|has| |#1| (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 151 (|has| |#1| (-338)))) (-2813 (((-108) $) 164 (|has| |#1| (-338)))) (-3687 (((-108) $) 247 (-4015 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-3390 (((-108) $) 73)) (-2838 (($) 145 (|has| |#1| (-37 (-382 (-522)))))) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 225 (-4015 (|has| |#2| (-815 (-354))) (|has| |#1| (-338)))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 224 (-4015 (|has| |#2| (-815 (-522))) (|has| |#1| (-338))))) (-3714 (((-522) $) 100) (((-522) $ (-522)) 99)) (-2782 (((-108) $) 31)) (-2902 (($ $) 229 (|has| |#1| (-338)))) (-2805 ((|#2| $) 227 (|has| |#1| (-338)))) (-1504 (($ $ (-522)) 116 (|has| |#1| (-37 (-382 (-522)))))) (-3004 (((-3 $ "failed") $) 261 (-4015 (|has| |#2| (-1061)) (|has| |#1| (-338))))) (-2556 (((-108) $) 248 (-4015 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-2073 (($ $ (-850)) 101)) (-3950 (($ (-1 |#1| (-522)) $) 173)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 160 (|has| |#1| (-338)))) (-3340 (((-108) $) 62)) (-4049 (($ |#1| (-522)) 61) (($ $ (-999) (-522)) 76) (($ $ (-588 (-999)) (-588 (-522))) 75)) (-2814 (($ $ $) 251 (-4015 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-2446 (($ $ $) 252 (-4015 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1391 (($ (-1 |#1| |#1|) $) 63) (($ (-1 |#2| |#2|) $) 213 (|has| |#1| (-338)))) (-1254 (($ $) 142 (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) 65)) (-3138 ((|#1| $) 66)) (-2224 (($ (-588 $)) 149 (|has| |#1| (-338))) (($ $ $) 148 (|has| |#1| (-338)))) (-3068 (($ (-522) |#2|) 268)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 165 (|has| |#1| (-338)))) (-1858 (($ $) 170 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 169 (-3708 (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-887)) (|has| |#1| (-1106)) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-37 (-382 (-522)))))))) (-3802 (($) 262 (-4015 (|has| |#2| (-1061)) (|has| |#1| (-338))) CONST)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 150 (|has| |#1| (-338)))) (-2259 (($ (-588 $)) 147 (|has| |#1| (-338))) (($ $ $) 146 (|has| |#1| (-338)))) (-3933 (($ $) 232 (-4015 (|has| |#2| (-283)) (|has| |#1| (-338))))) (-3686 ((|#2| $) 235 (-4015 (|has| |#2| (-507)) (|has| |#1| (-338))))) (-3729 (((-393 (-1081 $)) (-1081 $)) 238 (-4015 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-3495 (((-393 (-1081 $)) (-1081 $)) 239 (-4015 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-1916 (((-393 $) $) 161 (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 158 (|has| |#1| (-338)))) (-3719 (($ $ (-522)) 95)) (-2232 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 152 (|has| |#1| (-338)))) (-3266 (($ $) 143 (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-522))))) (($ $ (-1085) |#2|) 212 (-4015 (|has| |#2| (-483 (-1085) |#2|)) (|has| |#1| (-338)))) (($ $ (-588 (-1085)) (-588 |#2|)) 211 (-4015 (|has| |#2| (-483 (-1085) |#2|)) (|has| |#1| (-338)))) (($ $ (-588 (-270 |#2|))) 210 (-4015 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338)))) (($ $ (-270 |#2|)) 209 (-4015 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338)))) (($ $ |#2| |#2|) 208 (-4015 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338)))) (($ $ (-588 |#2|) (-588 |#2|)) 207 (-4015 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338))))) (-3730 (((-708) $) 154 (|has| |#1| (-338)))) (-2545 ((|#1| $ (-522)) 104) (($ $ $) 81 (|has| (-522) (-1026))) (($ $ |#2|) 206 (-4015 (|has| |#2| (-262 |#2| |#2|)) (|has| |#1| (-338))))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 155 (|has| |#1| (-338)))) (-2157 (($ $ (-1 |#2| |#2|)) 217 (|has| |#1| (-338))) (($ $ (-1 |#2| |#2|) (-708)) 216 (|has| |#1| (-338))) (($ $ (-708)) 84 (-3708 (-4015 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) 82 (-3708 (-4015 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) 89 (-3708 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))))) (($ $ (-1085) (-708)) 88 (-3708 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))))) (($ $ (-588 (-1085))) 87 (-3708 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))))) (($ $ (-1085)) 86 (-3708 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))))) (-3533 (($ $) 230 (|has| |#1| (-338)))) (-2816 ((|#2| $) 228 (|has| |#1| (-338)))) (-2793 (((-522) $) 64)) (-1738 (($ $) 132 (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) 121 (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) 131 (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) 122 (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) 130 (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) 123 (|has| |#1| (-37 (-382 (-522)))))) (-1431 (((-202) $) 246 (-4015 (|has| |#2| (-947)) (|has| |#1| (-338)))) (((-354) $) 245 (-4015 (|has| |#2| (-947)) (|has| |#1| (-338)))) (((-498) $) 244 (-4015 (|has| |#2| (-563 (-498))) (|has| |#1| (-338)))) (((-821 (-354)) $) 223 (-4015 (|has| |#2| (-563 (-821 (-354)))) (|has| |#1| (-338)))) (((-821 (-522)) $) 222 (-4015 (|has| |#2| (-563 (-821 (-522)))) (|has| |#1| (-338))))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 236 (-4015 (-4015 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#1| (-338))))) (-1522 (($ $) 72)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 47 (|has| |#1| (-157))) (($ |#2|) 271) (($ (-1085)) 241 (-4015 (|has| |#2| (-962 (-1085))) (|has| |#1| (-338)))) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514)))) (-3243 ((|#1| $ (-522)) 59)) (-2143 (((-3 $ "failed") $) 48 (-3708 (-4015 (-3708 (|has| |#2| (-133)) (-4015 (|has| $ (-133)) (|has| |#2| (-838)))) (|has| |#1| (-338))) (|has| |#1| (-133))))) (-2323 (((-708)) 29)) (-1893 ((|#1| $) 102)) (-3025 ((|#2| $) 234 (-4015 (|has| |#2| (-507)) (|has| |#1| (-338))))) (-1759 (($ $) 141 (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) 129 (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) 53 (|has| |#1| (-514)))) (-1745 (($ $) 140 (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) 128 (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) 139 (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) 127 (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-522)) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-522)))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) 138 (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) 126 (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) 137 (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) 125 (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) 136 (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) 124 (|has| |#1| (-37 (-382 (-522)))))) (-2241 (($ $) 250 (-4015 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 166 (|has| |#1| (-338)))) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-1 |#2| |#2|)) 215 (|has| |#1| (-338))) (($ $ (-1 |#2| |#2|) (-708)) 214 (|has| |#1| (-338))) (($ $ (-708)) 85 (-3708 (-4015 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) 83 (-3708 (-4015 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) 93 (-3708 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))))) (($ $ (-1085) (-708)) 92 (-3708 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))))) (($ $ (-588 (-1085))) 91 (-3708 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))))) (($ $ (-1085)) 90 (-3708 (-4015 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))))) (-1574 (((-108) $ $) 254 (-4015 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1558 (((-108) $ $) 255 (-4015 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 253 (-4015 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1549 (((-108) $ $) 256 (-4015 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1620 (($ $ |#1|) 58 (|has| |#1| (-338))) (($ $ $) 168 (|has| |#1| (-338))) (($ |#2| |#2|) 226 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 167 (|has| |#1| (-338))) (($ $ $) 144 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 115 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ |#2|) 205 (|has| |#1| (-338))) (($ |#2| $) 204 (|has| |#1| (-338))) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
+((-1270 (*1 *1 *2) (-12 (-5 *2 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *3)))) (-4 *3 (-971)) (-4 *1 (-1126 *3)))) (-1332 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-522))) (-4 *1 (-1126 *3)) (-4 *3 (-971)))) (-1749 (*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-4 *1 (-1126 *4)) (-4 *4 (-971)) (-4 *4 (-514)) (-5 *2 (-382 (-881 *4))))) (-1749 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-4 *1 (-1126 *4)) (-4 *4 (-971)) (-4 *4 (-514)) (-5 *2 (-382 (-881 *4))))) (-2611 (*1 *1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522)))))) (-2611 (*1 *1 *1 *2) (-3844 (-12 (-5 *2 (-1085)) (-4 *1 (-1126 *3)) (-4 *3 (-971)) (-12 (-4 *3 (-29 (-522))) (-4 *3 (-887)) (-4 *3 (-1106)) (-4 *3 (-37 (-382 (-522)))))) (-12 (-5 *2 (-1085)) (-4 *1 (-1126 *3)) (-4 *3 (-971)) (-12 (|has| *3 (-15 -3533 ((-588 *2) *3))) (|has| *3 (-15 -2611 (*3 *3 *2))) (-4 *3 (-37 (-382 (-522)))))))))
+(-13 (-1144 |t#1| (-522)) (-10 -8 (-15 -1270 ($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |t#1|))))) (-15 -1332 ($ (-1 |t#1| (-522)) $)) (IF (|has| |t#1| (-514)) (PROGN (-15 -1749 ((-382 (-881 |t#1|)) $ (-522))) (-15 -1749 ((-382 (-881 |t#1|)) $ (-522) (-522)))) |%noBranch|) (IF (|has| |t#1| (-37 (-382 (-522)))) (PROGN (-15 -2611 ($ $)) (IF (|has| |t#1| (-15 -2611 (|t#1| |t#1| (-1085)))) (IF (|has| |t#1| (-15 -3533 ((-588 (-1085)) |t#1|))) (-15 -2611 ($ $ (-1085))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1106)) (IF (|has| |t#1| (-887)) (IF (|has| |t#1| (-29 (-522))) (-15 -2611 ($ $ (-1085))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-928)) (-6 (-1106))) |%noBranch|) (IF (|has| |t#1| (-338)) (-6 (-338)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-522)) . T) ((-25) . T) ((-37 #1=(-382 (-522))) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-34) |has| |#1| (-37 (-382 (-522)))) ((-91) |has| |#1| (-37 (-382 (-522)))) ((-97) . T) ((-107 #1# #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-210) |has| |#1| (-15 * (|#1| (-522) |#1|))) ((-220) |has| |#1| (-338)) ((-260) |has| |#1| (-37 (-382 (-522)))) ((-262 $ $) |has| (-522) (-1026)) ((-266) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-283) |has| |#1| (-338)) ((-338) |has| |#1| (-338)) ((-426) |has| |#1| (-338)) ((-463) |has| |#1| (-37 (-382 (-522)))) ((-514) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-590 #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-664) . T) ((-829 (-1085)) -12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))) ((-900 |#1| #0# (-999)) . T) ((-849) |has| |#1| (-338)) ((-928) |has| |#1| (-37 (-382 (-522)))) ((-977 #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1106) |has| |#1| (-37 (-382 (-522)))) ((-1109) |has| |#1| (-37 (-382 (-522)))) ((-1124) |has| |#1| (-338)) ((-1144 |#1| #0#) . T))
+((-2944 (((-108) $) 12)) (-3700 (((-3 |#3| "failed") $) 17) (((-3 (-1085) "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 (-522) "failed") $) NIL)) (-1478 ((|#3| $) 14) (((-1085) $) NIL) (((-382 (-522)) $) NIL) (((-522) $) NIL)))
+(((-1127 |#1| |#2| |#3|) (-10 -8 (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1478 ((-1085) |#1|)) (-15 -3700 ((-3 (-1085) "failed") |#1|)) (-15 -1478 (|#3| |#1|)) (-15 -3700 ((-3 |#3| "failed") |#1|)) (-15 -2944 ((-108) |#1|))) (-1128 |#2| |#3|) (-971) (-1157 |#2|)) (T -1127))
+NIL
+(-10 -8 (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -1478 ((-1085) |#1|)) (-15 -3700 ((-3 (-1085) "failed") |#1|)) (-15 -1478 (|#3| |#1|)) (-15 -3700 ((-3 |#3| "failed") |#1|)) (-15 -2944 ((-108) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3049 ((|#2| $) 231 (-4079 (|has| |#2| (-283)) (|has| |#1| (-338))))) (-3533 (((-588 (-999)) $) 74)) (-1660 (((-1085) $) 103)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2298 (($ $) 52 (|has| |#1| (-514)))) (-3007 (((-108) $) 54 (|has| |#1| (-514)))) (-3495 (($ $ (-522)) 98) (($ $ (-522) (-522)) 97)) (-3024 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) 105)) (-1201 ((|#2| $) 267)) (-1413 (((-3 |#2| "failed") $) 263)) (-3162 ((|#2| $) 264)) (-3044 (($ $) 135 (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) 118 (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) 19)) (-3543 (((-393 (-1081 $)) (-1081 $)) 240 (-4079 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-2961 (($ $) 162 (|has| |#1| (-338)))) (-3133 (((-393 $) $) 163 (|has| |#1| (-338)))) (-2016 (($ $) 117 (|has| |#1| (-37 (-382 (-522)))))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 237 (-4079 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-2805 (((-108) $ $) 153 (|has| |#1| (-338)))) (-3023 (($ $) 134 (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) 119 (|has| |#1| (-37 (-382 (-522)))))) (-3355 (((-522) $) 249 (-4079 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-1270 (($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) 174)) (-3066 (($ $) 133 (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) 120 (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) 17 T CONST)) (-3700 (((-3 |#2| "failed") $) 270) (((-3 (-522) "failed") $) 259 (-4079 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-3 (-382 (-522)) "failed") $) 257 (-4079 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-3 (-1085) "failed") $) 242 (-4079 (|has| |#2| (-962 (-1085))) (|has| |#1| (-338))))) (-1478 ((|#2| $) 269) (((-522) $) 260 (-4079 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-382 (-522)) $) 258 (-4079 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-1085) $) 243 (-4079 (|has| |#2| (-962 (-1085))) (|has| |#1| (-338))))) (-3734 (($ $) 266) (($ (-522) $) 265)) (-2333 (($ $ $) 157 (|has| |#1| (-338)))) (-3241 (($ $) 60)) (-1226 (((-628 |#2|) (-628 $)) 221 (|has| |#1| (-338))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) 220 (|has| |#1| (-338))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 219 (-4079 (|has| |#2| (-584 (-522))) (|has| |#1| (-338)))) (((-628 (-522)) (-628 $)) 218 (-4079 (|has| |#2| (-584 (-522))) (|has| |#1| (-338))))) (-3920 (((-3 $ "failed") $) 34)) (-1749 (((-382 (-881 |#1|)) $ (-522)) 172 (|has| |#1| (-514))) (((-382 (-881 |#1|)) $ (-522) (-522)) 171 (|has| |#1| (-514)))) (-3344 (($) 233 (-4079 (|has| |#2| (-507)) (|has| |#1| (-338))))) (-2303 (($ $ $) 156 (|has| |#1| (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 151 (|has| |#1| (-338)))) (-2725 (((-108) $) 164 (|has| |#1| (-338)))) (-3603 (((-108) $) 247 (-4079 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-3672 (((-108) $) 73)) (-2980 (($) 145 (|has| |#1| (-37 (-382 (-522)))))) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 225 (-4079 (|has| |#2| (-815 (-354))) (|has| |#1| (-338)))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 224 (-4079 (|has| |#2| (-815 (-522))) (|has| |#1| (-338))))) (-3872 (((-522) $) 100) (((-522) $ (-522)) 99)) (-2859 (((-108) $) 31)) (-1558 (($ $) 229 (|has| |#1| (-338)))) (-2947 ((|#2| $) 227 (|has| |#1| (-338)))) (-1811 (($ $ (-522)) 116 (|has| |#1| (-37 (-382 (-522)))))) (-4208 (((-3 $ "failed") $) 261 (-4079 (|has| |#2| (-1061)) (|has| |#1| (-338))))) (-3740 (((-108) $) 248 (-4079 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-2895 (($ $ (-850)) 101)) (-1332 (($ (-1 |#1| (-522)) $) 173)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 160 (|has| |#1| (-338)))) (-1374 (((-108) $) 62)) (-3500 (($ |#1| (-522)) 61) (($ $ (-999) (-522)) 76) (($ $ (-588 (-999)) (-588 (-522))) 75)) (-1308 (($ $ $) 251 (-4079 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-2524 (($ $ $) 252 (-4079 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-3810 (($ (-1 |#1| |#1|) $) 63) (($ (-1 |#2| |#2|) $) 213 (|has| |#1| (-338)))) (-1238 (($ $) 142 (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) 65)) (-3224 ((|#1| $) 66)) (-2267 (($ (-588 $)) 149 (|has| |#1| (-338))) (($ $ $) 148 (|has| |#1| (-338)))) (-3170 (($ (-522) |#2|) 268)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 165 (|has| |#1| (-338)))) (-2611 (($ $) 170 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 169 (-3844 (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-887)) (|has| |#1| (-1106)) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-37 (-382 (-522)))))))) (-3937 (($) 262 (-4079 (|has| |#2| (-1061)) (|has| |#1| (-338))) CONST)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 150 (|has| |#1| (-338)))) (-2308 (($ (-588 $)) 147 (|has| |#1| (-338))) (($ $ $) 146 (|has| |#1| (-338)))) (-4194 (($ $) 232 (-4079 (|has| |#2| (-283)) (|has| |#1| (-338))))) (-3592 ((|#2| $) 235 (-4079 (|has| |#2| (-507)) (|has| |#1| (-338))))) (-4022 (((-393 (-1081 $)) (-1081 $)) 238 (-4079 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-2313 (((-393 (-1081 $)) (-1081 $)) 239 (-4079 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-2006 (((-393 $) $) 161 (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 158 (|has| |#1| (-338)))) (-3934 (($ $ (-522)) 95)) (-2276 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 152 (|has| |#1| (-338)))) (-3357 (($ $) 143 (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-522))))) (($ $ (-1085) |#2|) 212 (-4079 (|has| |#2| (-483 (-1085) |#2|)) (|has| |#1| (-338)))) (($ $ (-588 (-1085)) (-588 |#2|)) 211 (-4079 (|has| |#2| (-483 (-1085) |#2|)) (|has| |#1| (-338)))) (($ $ (-588 (-270 |#2|))) 210 (-4079 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338)))) (($ $ (-270 |#2|)) 209 (-4079 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338)))) (($ $ |#2| |#2|) 208 (-4079 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338)))) (($ $ (-588 |#2|) (-588 |#2|)) 207 (-4079 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338))))) (-4031 (((-708) $) 154 (|has| |#1| (-338)))) (-2683 ((|#1| $ (-522)) 104) (($ $ $) 81 (|has| (-522) (-1026))) (($ $ |#2|) 206 (-4079 (|has| |#2| (-262 |#2| |#2|)) (|has| |#1| (-338))))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 155 (|has| |#1| (-338)))) (-2731 (($ $ (-1 |#2| |#2|)) 217 (|has| |#1| (-338))) (($ $ (-1 |#2| |#2|) (-708)) 216 (|has| |#1| (-338))) (($ $ (-708)) 84 (-3844 (-4079 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) 82 (-3844 (-4079 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) 89 (-3844 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))))) (($ $ (-1085) (-708)) 88 (-3844 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))))) (($ $ (-588 (-1085))) 87 (-3844 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))))) (($ $ (-1085)) 86 (-3844 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))))) (-2762 (($ $) 230 (|has| |#1| (-338)))) (-2959 ((|#2| $) 228 (|has| |#1| (-338)))) (-2487 (((-522) $) 64)) (-1831 (($ $) 132 (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) 121 (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) 131 (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) 122 (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) 130 (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) 123 (|has| |#1| (-37 (-382 (-522)))))) (-3873 (((-202) $) 246 (-4079 (|has| |#2| (-947)) (|has| |#1| (-338)))) (((-354) $) 245 (-4079 (|has| |#2| (-947)) (|has| |#1| (-338)))) (((-498) $) 244 (-4079 (|has| |#2| (-563 (-498))) (|has| |#1| (-338)))) (((-821 (-354)) $) 223 (-4079 (|has| |#2| (-563 (-821 (-354)))) (|has| |#1| (-338)))) (((-821 (-522)) $) 222 (-4079 (|has| |#2| (-563 (-821 (-522)))) (|has| |#1| (-338))))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 236 (-4079 (-4079 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#1| (-338))))) (-1944 (($ $) 72)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 47 (|has| |#1| (-157))) (($ |#2|) 271) (($ (-1085)) 241 (-4079 (|has| |#2| (-962 (-1085))) (|has| |#1| (-338)))) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514)))) (-1643 ((|#1| $ (-522)) 59)) (-3040 (((-3 $ "failed") $) 48 (-3844 (-4079 (-3844 (|has| |#2| (-133)) (-4079 (|has| $ (-133)) (|has| |#2| (-838)))) (|has| |#1| (-338))) (|has| |#1| (-133))))) (-2742 (((-708)) 29)) (-1980 ((|#1| $) 102)) (-1379 ((|#2| $) 234 (-4079 (|has| |#2| (-507)) (|has| |#1| (-338))))) (-1856 (($ $) 141 (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) 129 (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) 53 (|has| |#1| (-514)))) (-1839 (($ $) 140 (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) 128 (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) 139 (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) 127 (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-522)) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-522)))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) 138 (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) 126 (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) 137 (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) 125 (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) 136 (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) 124 (|has| |#1| (-37 (-382 (-522)))))) (-4126 (($ $) 250 (-4079 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 166 (|has| |#1| (-338)))) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-1 |#2| |#2|)) 215 (|has| |#1| (-338))) (($ $ (-1 |#2| |#2|) (-708)) 214 (|has| |#1| (-338))) (($ $ (-708)) 85 (-3844 (-4079 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) 83 (-3844 (-4079 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) 93 (-3844 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))))) (($ $ (-1085) (-708)) 92 (-3844 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))))) (($ $ (-588 (-1085))) 91 (-3844 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))))) (($ $ (-1085)) 90 (-3844 (-4079 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))))) (-1623 (((-108) $ $) 254 (-4079 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1597 (((-108) $ $) 255 (-4079 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 253 (-4079 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1587 (((-108) $ $) 256 (-4079 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1682 (($ $ |#1|) 58 (|has| |#1| (-338))) (($ $ $) 168 (|has| |#1| (-338))) (($ |#2| |#2|) 226 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 167 (|has| |#1| (-338))) (($ $ $) 144 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 115 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ |#2|) 205 (|has| |#1| (-338))) (($ |#2| $) 204 (|has| |#1| (-338))) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
(((-1128 |#1| |#2|) (-1197) (-971) (-1157 |t#1|)) (T -1128))
-((-2793 (*1 *2 *1) (-12 (-4 *1 (-1128 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1157 *3)) (-5 *2 (-522)))) (-2190 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *1 (-1128 *3 *2)) (-4 *2 (-1157 *3)))) (-3068 (*1 *1 *2 *3) (-12 (-5 *2 (-522)) (-4 *4 (-971)) (-4 *1 (-1128 *4 *3)) (-4 *3 (-1157 *4)))) (-3321 (*1 *2 *1) (-12 (-4 *1 (-1128 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1157 *3)))) (-3701 (*1 *1 *1) (-12 (-4 *1 (-1128 *2 *3)) (-4 *2 (-971)) (-4 *3 (-1157 *2)))) (-3701 (*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-4 *1 (-1128 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1157 *3)))) (-3058 (*1 *2 *1) (-12 (-4 *1 (-1128 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1157 *3)))) (-2114 (*1 *2 *1) (|partial| -12 (-4 *1 (-1128 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1157 *3)))))
-(-13 (-1126 |t#1|) (-962 |t#2|) (-10 -8 (-15 -3068 ($ (-522) |t#2|)) (-15 -2793 ((-522) $)) (-15 -3321 (|t#2| $)) (-15 -3701 ($ $)) (-15 -3701 ($ (-522) $)) (-15 -2190 ($ |t#2|)) (-15 -3058 (|t#2| $)) (-15 -2114 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-338)) (-6 (-919 |t#2|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-522)) . T) ((-25) . T) ((-37 #1=(-382 (-522))) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-37 |#1|) |has| |#1| (-157)) ((-37 |#2|) |has| |#1| (-338)) ((-37 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-34) |has| |#1| (-37 (-382 (-522)))) ((-91) |has| |#1| (-37 (-382 (-522)))) ((-97) . T) ((-107 #1# #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-107 |#1| |#1|) . T) ((-107 |#2| |#2|) |has| |#1| (-338)) ((-107 $ $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-124) . T) ((-133) -3708 (-12 (|has| |#1| (-338)) (|has| |#2| (-133))) (|has| |#1| (-133))) ((-135) -3708 (-12 (|has| |#1| (-338)) (|has| |#2| (-135))) (|has| |#1| (-135))) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-563 (-202)) -12 (|has| |#1| (-338)) (|has| |#2| (-947))) ((-563 (-354)) -12 (|has| |#1| (-338)) (|has| |#2| (-947))) ((-563 (-498)) -12 (|has| |#1| (-338)) (|has| |#2| (-563 (-498)))) ((-563 (-821 (-354))) -12 (|has| |#1| (-338)) (|has| |#2| (-563 (-821 (-354))))) ((-563 (-821 (-522))) -12 (|has| |#1| (-338)) (|has| |#2| (-563 (-821 (-522))))) ((-208 |#2|) |has| |#1| (-338)) ((-210) -3708 (-12 (|has| |#1| (-338)) (|has| |#2| (-210))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))) ((-220) |has| |#1| (-338)) ((-260) |has| |#1| (-37 (-382 (-522)))) ((-262 |#2| $) -12 (|has| |#1| (-338)) (|has| |#2| (-262 |#2| |#2|))) ((-262 $ $) |has| (-522) (-1026)) ((-266) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-283) |has| |#1| (-338)) ((-285 |#2|) -12 (|has| |#1| (-338)) (|has| |#2| (-285 |#2|))) ((-338) |has| |#1| (-338)) ((-313 |#2|) |has| |#1| (-338)) ((-352 |#2|) |has| |#1| (-338)) ((-375 |#2|) |has| |#1| (-338)) ((-426) |has| |#1| (-338)) ((-463) |has| |#1| (-37 (-382 (-522)))) ((-483 (-1085) |#2|) -12 (|has| |#1| (-338)) (|has| |#2| (-483 (-1085) |#2|))) ((-483 |#2| |#2|) -12 (|has| |#1| (-338)) (|has| |#2| (-285 |#2|))) ((-514) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-590 #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-590 |#1|) . T) ((-590 |#2|) |has| |#1| (-338)) ((-590 $) . T) ((-584 (-522)) -12 (|has| |#1| (-338)) (|has| |#2| (-584 (-522)))) ((-584 |#2|) |has| |#1| (-338)) ((-655 #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-655 |#1|) |has| |#1| (-157)) ((-655 |#2|) |has| |#1| (-338)) ((-655 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-664) . T) ((-728) -12 (|has| |#1| (-338)) (|has| |#2| (-757))) ((-729) -12 (|has| |#1| (-338)) (|has| |#2| (-757))) ((-731) -12 (|has| |#1| (-338)) (|has| |#2| (-757))) ((-732) -12 (|has| |#1| (-338)) (|has| |#2| (-757))) ((-757) -12 (|has| |#1| (-338)) (|has| |#2| (-757))) ((-782) -12 (|has| |#1| (-338)) (|has| |#2| (-757))) ((-784) -3708 (-12 (|has| |#1| (-338)) (|has| |#2| (-784))) (-12 (|has| |#1| (-338)) (|has| |#2| (-757)))) ((-829 (-1085)) -3708 (-12 (|has| |#1| (-338)) (|has| |#2| (-829 (-1085)))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) ((-815 (-354)) -12 (|has| |#1| (-338)) (|has| |#2| (-815 (-354)))) ((-815 (-522)) -12 (|has| |#1| (-338)) (|has| |#2| (-815 (-522)))) ((-813 |#2|) |has| |#1| (-338)) ((-838) -12 (|has| |#1| (-338)) (|has| |#2| (-838))) ((-900 |#1| #0# (-999)) . T) ((-849) |has| |#1| (-338)) ((-919 |#2|) |has| |#1| (-338)) ((-928) |has| |#1| (-37 (-382 (-522)))) ((-947) -12 (|has| |#1| (-338)) (|has| |#2| (-947))) ((-962 (-382 (-522))) -12 (|has| |#1| (-338)) (|has| |#2| (-962 (-522)))) ((-962 (-522)) -12 (|has| |#1| (-338)) (|has| |#2| (-962 (-522)))) ((-962 (-1085)) -12 (|has| |#1| (-338)) (|has| |#2| (-962 (-1085)))) ((-962 |#2|) . T) ((-977 #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-977 |#1|) . T) ((-977 |#2|) |has| |#1| (-338)) ((-977 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) -12 (|has| |#1| (-338)) (|has| |#2| (-1061))) ((-1106) |has| |#1| (-37 (-382 (-522)))) ((-1109) |has| |#1| (-37 (-382 (-522)))) ((-1120) |has| |#1| (-338)) ((-1124) |has| |#1| (-338)) ((-1126 |#1|) . T) ((-1144 |#1| #0#) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 70)) (-2229 ((|#2| $) NIL (-12 (|has| |#2| (-283)) (|has| |#1| (-338))))) (-4090 (((-588 (-999)) $) NIL)) (-1611 (((-1085) $) 88)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-2789 (($ $ (-522)) 97) (($ $ (-522) (-522)) 99)) (-2258 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) 47)) (-3321 ((|#2| $) 11)) (-2114 (((-3 |#2| "failed") $) 30)) (-3058 ((|#2| $) 31)) (-2908 (($ $) 192 (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) 168 (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-3119 (($ $) NIL (|has| |#1| (-338)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1929 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-2884 (($ $) 188 (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) 164 (|has| |#1| (-37 (-382 (-522)))))) (-1341 (((-522) $) NIL (-12 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-2773 (($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) 57)) (-2930 (($ $) 196 (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) 172 (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#2| "failed") $) 144) (((-3 (-522) "failed") $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-3 (-1085) "failed") $) NIL (-12 (|has| |#2| (-962 (-1085))) (|has| |#1| (-338))))) (-1484 ((|#2| $) 143) (((-522) $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-382 (-522)) $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-1085) $) NIL (-12 (|has| |#2| (-962 (-1085))) (|has| |#1| (-338))))) (-3701 (($ $) 61) (($ (-522) $) 24)) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-3156 (($ $) NIL)) (-2096 (((-628 |#2|) (-628 $)) NIL (|has| |#1| (-338))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL (|has| |#1| (-338))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#1| (-338)))) (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#1| (-338))))) (-2682 (((-3 $ "failed") $) 77)) (-2240 (((-382 (-881 |#1|)) $ (-522)) 112 (|has| |#1| (-514))) (((-382 (-881 |#1|)) $ (-522) (-522)) 114 (|has| |#1| (-514)))) (-3255 (($) NIL (-12 (|has| |#2| (-507)) (|has| |#1| (-338))))) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2813 (((-108) $) NIL (|has| |#1| (-338)))) (-3687 (((-108) $) NIL (-12 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-3390 (((-108) $) 64)) (-2838 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| |#2| (-815 (-354))) (|has| |#1| (-338)))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| |#2| (-815 (-522))) (|has| |#1| (-338))))) (-3714 (((-522) $) 93) (((-522) $ (-522)) 95)) (-2782 (((-108) $) NIL)) (-2902 (($ $) NIL (|has| |#1| (-338)))) (-2805 ((|#2| $) 151 (|has| |#1| (-338)))) (-1504 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3004 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1061)) (|has| |#1| (-338))))) (-2556 (((-108) $) NIL (-12 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-2073 (($ $ (-850)) 136)) (-3950 (($ (-1 |#1| (-522)) $) 132)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-522)) 19) (($ $ (-999) (-522)) NIL) (($ $ (-588 (-999)) (-588 (-522))) NIL)) (-2814 (($ $ $) NIL (-12 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-2446 (($ $ $) NIL (-12 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1391 (($ (-1 |#1| |#1|) $) 129) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-338)))) (-1254 (($ $) 162 (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-3068 (($ (-522) |#2|) 10)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 145 (|has| |#1| (-338)))) (-1858 (($ $) 214 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 219 (-3708 (-12 (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106)))))) (-3802 (($) NIL (-12 (|has| |#2| (-1061)) (|has| |#1| (-338))) CONST)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-3933 (($ $) NIL (-12 (|has| |#2| (-283)) (|has| |#1| (-338))))) (-3686 ((|#2| $) NIL (-12 (|has| |#2| (-507)) (|has| |#1| (-338))))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-1916 (((-393 $) $) NIL (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3719 (($ $ (-522)) 126)) (-2232 (((-3 $ "failed") $ $) 116 (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3266 (($ $) 160 (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) 85 (|has| |#1| (-15 ** (|#1| |#1| (-522))))) (($ $ (-1085) |#2|) NIL (-12 (|has| |#2| (-483 (-1085) |#2|)) (|has| |#1| (-338)))) (($ $ (-588 (-1085)) (-588 |#2|)) NIL (-12 (|has| |#2| (-483 (-1085) |#2|)) (|has| |#1| (-338)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338))))) (-3730 (((-708) $) NIL (|has| |#1| (-338)))) (-2545 ((|#1| $ (-522)) 91) (($ $ $) 79 (|has| (-522) (-1026))) (($ $ |#2|) NIL (-12 (|has| |#2| (-262 |#2| |#2|)) (|has| |#1| (-338))))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-2157 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-338))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#1| (-338))) (($ $ (-708)) NIL (-3708 (-12 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) 137 (-3708 (-12 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-3708 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085) (-708)) NIL (-3708 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-588 (-1085))) NIL (-3708 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085)) 140 (-3708 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))) (-3533 (($ $) NIL (|has| |#1| (-338)))) (-2816 ((|#2| $) 152 (|has| |#1| (-338)))) (-2793 (((-522) $) 12)) (-1738 (($ $) 198 (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) 174 (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) 194 (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) 170 (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) 190 (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) 166 (|has| |#1| (-37 (-382 (-522)))))) (-1431 (((-202) $) NIL (-12 (|has| |#2| (-947)) (|has| |#1| (-338)))) (((-354) $) NIL (-12 (|has| |#2| (-947)) (|has| |#1| (-338)))) (((-498) $) NIL (-12 (|has| |#2| (-563 (-498))) (|has| |#1| (-338)))) (((-821 (-354)) $) NIL (-12 (|has| |#2| (-563 (-821 (-354)))) (|has| |#1| (-338)))) (((-821 (-522)) $) NIL (-12 (|has| |#2| (-563 (-821 (-522)))) (|has| |#1| (-338))))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838)) (|has| |#1| (-338))))) (-1522 (($ $) 124)) (-2190 (((-792) $) 243) (($ (-522)) 23) (($ |#1|) 21 (|has| |#1| (-157))) (($ |#2|) 20) (($ (-1085)) NIL (-12 (|has| |#2| (-962 (-1085))) (|has| |#1| (-338)))) (($ (-382 (-522))) 155 (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514)))) (-3243 ((|#1| $ (-522)) 74)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#2| (-838)) (|has| |#1| (-338))) (-12 (|has| |#2| (-133)) (|has| |#1| (-338))) (|has| |#1| (-133))))) (-2323 (((-708)) 142)) (-1893 ((|#1| $) 90)) (-3025 ((|#2| $) NIL (-12 (|has| |#2| (-507)) (|has| |#1| (-338))))) (-1759 (($ $) 204 (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) 180 (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1745 (($ $) 200 (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) 176 (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) 208 (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) 184 (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-522)) 122 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-522)))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) 210 (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) 186 (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) 206 (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) 182 (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) 202 (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) 178 (|has| |#1| (-37 (-382 (-522)))))) (-2241 (($ $) NIL (-12 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3566 (($) 13 T CONST)) (-3577 (($) 17 T CONST)) (-2213 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-338))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#1| (-338))) (($ $ (-708)) NIL (-3708 (-12 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) NIL (-3708 (-12 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-3708 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085) (-708)) NIL (-3708 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-588 (-1085))) NIL (-3708 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085)) NIL (-3708 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))) (-1574 (((-108) $ $) NIL (-12 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1558 (((-108) $ $) NIL (-12 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1531 (((-108) $ $) 63)) (-1566 (((-108) $ $) NIL (-12 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1549 (((-108) $ $) NIL (-12 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) 149 (|has| |#1| (-338))) (($ |#2| |#2|) 150 (|has| |#1| (-338)))) (-1612 (($ $) 213) (($ $ $) 68)) (-1602 (($ $ $) 66)) (** (($ $ (-850)) NIL) (($ $ (-708)) 73) (($ $ (-522)) 146 (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 158 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 139) (($ $ |#2|) 148 (|has| |#1| (-338))) (($ |#2| $) 147 (|has| |#1| (-338))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+((-2487 (*1 *2 *1) (-12 (-4 *1 (-1128 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1157 *3)) (-5 *2 (-522)))) (-2217 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *1 (-1128 *3 *2)) (-4 *2 (-1157 *3)))) (-3170 (*1 *1 *2 *3) (-12 (-5 *2 (-522)) (-4 *4 (-971)) (-4 *1 (-1128 *4 *3)) (-4 *3 (-1157 *4)))) (-1201 (*1 *2 *1) (-12 (-4 *1 (-1128 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1157 *3)))) (-3734 (*1 *1 *1) (-12 (-4 *1 (-1128 *2 *3)) (-4 *2 (-971)) (-4 *3 (-1157 *2)))) (-3734 (*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-4 *1 (-1128 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1157 *3)))) (-3162 (*1 *2 *1) (-12 (-4 *1 (-1128 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1157 *3)))) (-1413 (*1 *2 *1) (|partial| -12 (-4 *1 (-1128 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1157 *3)))))
+(-13 (-1126 |t#1|) (-962 |t#2|) (-10 -8 (-15 -3170 ($ (-522) |t#2|)) (-15 -2487 ((-522) $)) (-15 -1201 (|t#2| $)) (-15 -3734 ($ $)) (-15 -3734 ($ (-522) $)) (-15 -2217 ($ |t#2|)) (-15 -3162 (|t#2| $)) (-15 -1413 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-338)) (-6 (-919 |t#2|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-522)) . T) ((-25) . T) ((-37 #1=(-382 (-522))) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-37 |#1|) |has| |#1| (-157)) ((-37 |#2|) |has| |#1| (-338)) ((-37 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-34) |has| |#1| (-37 (-382 (-522)))) ((-91) |has| |#1| (-37 (-382 (-522)))) ((-97) . T) ((-107 #1# #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-107 |#1| |#1|) . T) ((-107 |#2| |#2|) |has| |#1| (-338)) ((-107 $ $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-124) . T) ((-133) -3844 (-12 (|has| |#1| (-338)) (|has| |#2| (-133))) (|has| |#1| (-133))) ((-135) -3844 (-12 (|has| |#1| (-338)) (|has| |#2| (-135))) (|has| |#1| (-135))) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-563 (-202)) -12 (|has| |#1| (-338)) (|has| |#2| (-947))) ((-563 (-354)) -12 (|has| |#1| (-338)) (|has| |#2| (-947))) ((-563 (-498)) -12 (|has| |#1| (-338)) (|has| |#2| (-563 (-498)))) ((-563 (-821 (-354))) -12 (|has| |#1| (-338)) (|has| |#2| (-563 (-821 (-354))))) ((-563 (-821 (-522))) -12 (|has| |#1| (-338)) (|has| |#2| (-563 (-821 (-522))))) ((-208 |#2|) |has| |#1| (-338)) ((-210) -3844 (-12 (|has| |#1| (-338)) (|has| |#2| (-210))) (|has| |#1| (-15 * (|#1| (-522) |#1|)))) ((-220) |has| |#1| (-338)) ((-260) |has| |#1| (-37 (-382 (-522)))) ((-262 |#2| $) -12 (|has| |#1| (-338)) (|has| |#2| (-262 |#2| |#2|))) ((-262 $ $) |has| (-522) (-1026)) ((-266) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-283) |has| |#1| (-338)) ((-285 |#2|) -12 (|has| |#1| (-338)) (|has| |#2| (-285 |#2|))) ((-338) |has| |#1| (-338)) ((-313 |#2|) |has| |#1| (-338)) ((-352 |#2|) |has| |#1| (-338)) ((-375 |#2|) |has| |#1| (-338)) ((-426) |has| |#1| (-338)) ((-463) |has| |#1| (-37 (-382 (-522)))) ((-483 (-1085) |#2|) -12 (|has| |#1| (-338)) (|has| |#2| (-483 (-1085) |#2|))) ((-483 |#2| |#2|) -12 (|has| |#1| (-338)) (|has| |#2| (-285 |#2|))) ((-514) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-590 #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-590 |#1|) . T) ((-590 |#2|) |has| |#1| (-338)) ((-590 $) . T) ((-584 (-522)) -12 (|has| |#1| (-338)) (|has| |#2| (-584 (-522)))) ((-584 |#2|) |has| |#1| (-338)) ((-655 #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-655 |#1|) |has| |#1| (-157)) ((-655 |#2|) |has| |#1| (-338)) ((-655 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-664) . T) ((-728) -12 (|has| |#1| (-338)) (|has| |#2| (-757))) ((-729) -12 (|has| |#1| (-338)) (|has| |#2| (-757))) ((-731) -12 (|has| |#1| (-338)) (|has| |#2| (-757))) ((-732) -12 (|has| |#1| (-338)) (|has| |#2| (-757))) ((-757) -12 (|has| |#1| (-338)) (|has| |#2| (-757))) ((-782) -12 (|has| |#1| (-338)) (|has| |#2| (-757))) ((-784) -3844 (-12 (|has| |#1| (-338)) (|has| |#2| (-784))) (-12 (|has| |#1| (-338)) (|has| |#2| (-757)))) ((-829 (-1085)) -3844 (-12 (|has| |#1| (-338)) (|has| |#2| (-829 (-1085)))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))) ((-815 (-354)) -12 (|has| |#1| (-338)) (|has| |#2| (-815 (-354)))) ((-815 (-522)) -12 (|has| |#1| (-338)) (|has| |#2| (-815 (-522)))) ((-813 |#2|) |has| |#1| (-338)) ((-838) -12 (|has| |#1| (-338)) (|has| |#2| (-838))) ((-900 |#1| #0# (-999)) . T) ((-849) |has| |#1| (-338)) ((-919 |#2|) |has| |#1| (-338)) ((-928) |has| |#1| (-37 (-382 (-522)))) ((-947) -12 (|has| |#1| (-338)) (|has| |#2| (-947))) ((-962 (-382 (-522))) -12 (|has| |#1| (-338)) (|has| |#2| (-962 (-522)))) ((-962 (-522)) -12 (|has| |#1| (-338)) (|has| |#2| (-962 (-522)))) ((-962 (-1085)) -12 (|has| |#1| (-338)) (|has| |#2| (-962 (-1085)))) ((-962 |#2|) . T) ((-977 #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-977 |#1|) . T) ((-977 |#2|) |has| |#1| (-338)) ((-977 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) -12 (|has| |#1| (-338)) (|has| |#2| (-1061))) ((-1106) |has| |#1| (-37 (-382 (-522)))) ((-1109) |has| |#1| (-37 (-382 (-522)))) ((-1120) |has| |#1| (-338)) ((-1124) |has| |#1| (-338)) ((-1126 |#1|) . T) ((-1144 |#1| #0#) . T))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 70)) (-3049 ((|#2| $) NIL (-12 (|has| |#2| (-283)) (|has| |#1| (-338))))) (-3533 (((-588 (-999)) $) NIL)) (-1660 (((-1085) $) 88)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3495 (($ $ (-522)) 97) (($ $ (-522) (-522)) 99)) (-3024 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) 47)) (-1201 ((|#2| $) 11)) (-1413 (((-3 |#2| "failed") $) 30)) (-3162 ((|#2| $) 31)) (-3044 (($ $) 192 (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) 168 (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-2961 (($ $) NIL (|has| |#1| (-338)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-338)))) (-2016 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-3023 (($ $) 188 (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) 164 (|has| |#1| (-37 (-382 (-522)))))) (-3355 (((-522) $) NIL (-12 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-1270 (($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) 57)) (-3066 (($ $) 196 (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) 172 (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#2| "failed") $) 144) (((-3 (-522) "failed") $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-3 (-1085) "failed") $) NIL (-12 (|has| |#2| (-962 (-1085))) (|has| |#1| (-338))))) (-1478 ((|#2| $) 143) (((-522) $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-382 (-522)) $) NIL (-12 (|has| |#2| (-962 (-522))) (|has| |#1| (-338)))) (((-1085) $) NIL (-12 (|has| |#2| (-962 (-1085))) (|has| |#1| (-338))))) (-3734 (($ $) 61) (($ (-522) $) 24)) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-3241 (($ $) NIL)) (-1226 (((-628 |#2|) (-628 $)) NIL (|has| |#1| (-338))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL (|has| |#1| (-338))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#1| (-338)))) (((-628 (-522)) (-628 $)) NIL (-12 (|has| |#2| (-584 (-522))) (|has| |#1| (-338))))) (-3920 (((-3 $ "failed") $) 77)) (-1749 (((-382 (-881 |#1|)) $ (-522)) 112 (|has| |#1| (-514))) (((-382 (-881 |#1|)) $ (-522) (-522)) 114 (|has| |#1| (-514)))) (-3344 (($) NIL (-12 (|has| |#2| (-507)) (|has| |#1| (-338))))) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2725 (((-108) $) NIL (|has| |#1| (-338)))) (-3603 (((-108) $) NIL (-12 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-3672 (((-108) $) 64)) (-2980 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| |#2| (-815 (-354))) (|has| |#1| (-338)))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| |#2| (-815 (-522))) (|has| |#1| (-338))))) (-3872 (((-522) $) 93) (((-522) $ (-522)) 95)) (-2859 (((-108) $) NIL)) (-1558 (($ $) NIL (|has| |#1| (-338)))) (-2947 ((|#2| $) 151 (|has| |#1| (-338)))) (-1811 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-4208 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1061)) (|has| |#1| (-338))))) (-3740 (((-108) $) NIL (-12 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-2895 (($ $ (-850)) 136)) (-1332 (($ (-1 |#1| (-522)) $) 132)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-522)) 19) (($ $ (-999) (-522)) NIL) (($ $ (-588 (-999)) (-588 (-522))) NIL)) (-1308 (($ $ $) NIL (-12 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-2524 (($ $ $) NIL (-12 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-3810 (($ (-1 |#1| |#1|) $) 129) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-338)))) (-1238 (($ $) 162 (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-3170 (($ (-522) |#2|) 10)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 145 (|has| |#1| (-338)))) (-2611 (($ $) 214 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 219 (-3844 (-12 (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106)))))) (-3937 (($) NIL (-12 (|has| |#2| (-1061)) (|has| |#1| (-338))) CONST)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-4194 (($ $) NIL (-12 (|has| |#2| (-283)) (|has| |#1| (-338))))) (-3592 ((|#2| $) NIL (-12 (|has| |#2| (-507)) (|has| |#1| (-338))))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| |#2| (-838)) (|has| |#1| (-338))))) (-2006 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-3934 (($ $ (-522)) 126)) (-2276 (((-3 $ "failed") $ $) 116 (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3357 (($ $) 160 (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) 85 (|has| |#1| (-15 ** (|#1| |#1| (-522))))) (($ $ (-1085) |#2|) NIL (-12 (|has| |#2| (-483 (-1085) |#2|)) (|has| |#1| (-338)))) (($ $ (-588 (-1085)) (-588 |#2|)) NIL (-12 (|has| |#2| (-483 (-1085) |#2|)) (|has| |#1| (-338)))) (($ $ (-588 (-270 |#2|))) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338)))) (($ $ (-270 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338)))) (($ $ (-588 |#2|) (-588 |#2|)) NIL (-12 (|has| |#2| (-285 |#2|)) (|has| |#1| (-338))))) (-4031 (((-708) $) NIL (|has| |#1| (-338)))) (-2683 ((|#1| $ (-522)) 91) (($ $ $) 79 (|has| (-522) (-1026))) (($ $ |#2|) NIL (-12 (|has| |#2| (-262 |#2| |#2|)) (|has| |#1| (-338))))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-2731 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-338))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#1| (-338))) (($ $ (-708)) NIL (-3844 (-12 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) 137 (-3844 (-12 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-3844 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085) (-708)) NIL (-3844 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-588 (-1085))) NIL (-3844 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085)) 140 (-3844 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))) (-2762 (($ $) NIL (|has| |#1| (-338)))) (-2959 ((|#2| $) 152 (|has| |#1| (-338)))) (-2487 (((-522) $) 12)) (-1831 (($ $) 198 (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) 174 (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) 194 (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) 170 (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) 190 (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) 166 (|has| |#1| (-37 (-382 (-522)))))) (-3873 (((-202) $) NIL (-12 (|has| |#2| (-947)) (|has| |#1| (-338)))) (((-354) $) NIL (-12 (|has| |#2| (-947)) (|has| |#1| (-338)))) (((-498) $) NIL (-12 (|has| |#2| (-563 (-498))) (|has| |#1| (-338)))) (((-821 (-354)) $) NIL (-12 (|has| |#2| (-563 (-821 (-354)))) (|has| |#1| (-338)))) (((-821 (-522)) $) NIL (-12 (|has| |#2| (-563 (-821 (-522)))) (|has| |#1| (-338))))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838)) (|has| |#1| (-338))))) (-1944 (($ $) 124)) (-2217 (((-792) $) 243) (($ (-522)) 23) (($ |#1|) 21 (|has| |#1| (-157))) (($ |#2|) 20) (($ (-1085)) NIL (-12 (|has| |#2| (-962 (-1085))) (|has| |#1| (-338)))) (($ (-382 (-522))) 155 (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514)))) (-1643 ((|#1| $ (-522)) 74)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#2| (-838)) (|has| |#1| (-338))) (-12 (|has| |#2| (-133)) (|has| |#1| (-338))) (|has| |#1| (-133))))) (-2742 (((-708)) 142)) (-1980 ((|#1| $) 90)) (-1379 ((|#2| $) NIL (-12 (|has| |#2| (-507)) (|has| |#1| (-338))))) (-1856 (($ $) 204 (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) 180 (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1839 (($ $) 200 (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) 176 (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) 208 (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) 184 (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-522)) 122 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-522)))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) 210 (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) 186 (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) 206 (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) 182 (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) 202 (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) 178 (|has| |#1| (-37 (-382 (-522)))))) (-4126 (($ $) NIL (-12 (|has| |#2| (-757)) (|has| |#1| (-338))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3697 (($) 13 T CONST)) (-3709 (($) 17 T CONST)) (-2252 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-338))) (($ $ (-1 |#2| |#2|) (-708)) NIL (|has| |#1| (-338))) (($ $ (-708)) NIL (-3844 (-12 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) NIL (-3844 (-12 (|has| |#2| (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-3844 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085) (-708)) NIL (-3844 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-588 (-1085))) NIL (-3844 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085)) NIL (-3844 (-12 (|has| |#2| (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))) (-1623 (((-108) $ $) NIL (-12 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1597 (((-108) $ $) NIL (-12 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1562 (((-108) $ $) 63)) (-1609 (((-108) $ $) NIL (-12 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1587 (((-108) $ $) NIL (-12 (|has| |#2| (-784)) (|has| |#1| (-338))))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) 149 (|has| |#1| (-338))) (($ |#2| |#2|) 150 (|has| |#1| (-338)))) (-1672 (($ $) 213) (($ $ $) 68)) (-1661 (($ $ $) 66)) (** (($ $ (-850)) NIL) (($ $ (-708)) 73) (($ $ (-522)) 146 (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 158 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 139) (($ $ |#2|) 148 (|has| |#1| (-338))) (($ |#2| $) 147 (|has| |#1| (-338))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
(((-1129 |#1| |#2|) (-1128 |#1| |#2|) (-971) (-1157 |#1|)) (T -1129))
NIL
(-1128 |#1| |#2|)
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-2229 (((-1158 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-283)) (|has| |#1| (-338))))) (-4090 (((-588 (-999)) $) NIL)) (-1611 (((-1085) $) 10)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-2022 (($ $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-3739 (((-108) $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-2789 (($ $ (-522)) NIL) (($ $ (-522) (-522)) NIL)) (-2258 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) NIL)) (-3321 (((-1158 |#1| |#2| |#3|) $) NIL)) (-2114 (((-3 (-1158 |#1| |#2| |#3|) "failed") $) NIL)) (-3058 (((-1158 |#1| |#2| |#3|) $) NIL)) (-2908 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-3119 (($ $) NIL (|has| |#1| (-338)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1929 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-2884 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1341 (((-522) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-2773 (($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) NIL)) (-2930 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-1158 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-1085))) (|has| |#1| (-338)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338)))) (((-3 (-522) "failed") $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338))))) (-1484 (((-1158 |#1| |#2| |#3|) $) NIL) (((-1085) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-1085))) (|has| |#1| (-338)))) (((-382 (-522)) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338)))) (((-522) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338))))) (-3701 (($ $) NIL) (($ (-522) $) NIL)) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-3156 (($ $) NIL)) (-2096 (((-628 (-1158 |#1| |#2| |#3|)) (-628 $)) NIL (|has| |#1| (-338))) (((-2 (|:| -1222 (-628 (-1158 |#1| |#2| |#3|))) (|:| |vec| (-1166 (-1158 |#1| |#2| |#3|)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-338))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-584 (-522))) (|has| |#1| (-338)))) (((-628 (-522)) (-628 $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-584 (-522))) (|has| |#1| (-338))))) (-2682 (((-3 $ "failed") $) NIL)) (-2240 (((-382 (-881 |#1|)) $ (-522)) NIL (|has| |#1| (-514))) (((-382 (-881 |#1|)) $ (-522) (-522)) NIL (|has| |#1| (-514)))) (-3255 (($) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-507)) (|has| |#1| (-338))))) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2813 (((-108) $) NIL (|has| |#1| (-338)))) (-3687 (((-108) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-3390 (((-108) $) NIL)) (-2838 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-4011 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-815 (-522))) (|has| |#1| (-338)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-815 (-354))) (|has| |#1| (-338))))) (-3714 (((-522) $) NIL) (((-522) $ (-522)) NIL)) (-2782 (((-108) $) NIL)) (-2902 (($ $) NIL (|has| |#1| (-338)))) (-2805 (((-1158 |#1| |#2| |#3|) $) NIL (|has| |#1| (-338)))) (-1504 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3004 (((-3 $ "failed") $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-1061)) (|has| |#1| (-338))))) (-2556 (((-108) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-2073 (($ $ (-850)) NIL)) (-3950 (($ (-1 |#1| (-522)) $) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-522)) 17) (($ $ (-999) (-522)) NIL) (($ $ (-588 (-999)) (-588 (-522))) NIL)) (-2814 (($ $ $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-2446 (($ $ $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-338)))) (-1254 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-3068 (($ (-522) (-1158 |#1| |#2| |#3|)) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL (|has| |#1| (-338)))) (-1858 (($ $) 25 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) NIL (-3708 (-12 (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 26 (|has| |#1| (-37 (-382 (-522)))))) (-3802 (($) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-1061)) (|has| |#1| (-338))) CONST)) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-3933 (($ $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-283)) (|has| |#1| (-338))))) (-3686 (((-1158 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-507)) (|has| |#1| (-338))))) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-1916 (((-393 $) $) NIL (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3719 (($ $ (-522)) NIL)) (-2232 (((-3 $ "failed") $ $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3266 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-522))))) (($ $ (-1085) (-1158 |#1| |#2| |#3|)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-483 (-1085) (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-588 (-1085)) (-588 (-1158 |#1| |#2| |#3|))) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-483 (-1085) (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-588 (-270 (-1158 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-285 (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-270 (-1158 |#1| |#2| |#3|))) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-285 (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-285 (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-588 (-1158 |#1| |#2| |#3|)) (-588 (-1158 |#1| |#2| |#3|))) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-285 (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338))))) (-3730 (((-708) $) NIL (|has| |#1| (-338)))) (-2545 ((|#1| $ (-522)) NIL) (($ $ $) NIL (|has| (-522) (-1026))) (($ $ (-1158 |#1| |#2| |#3|)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-262 (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338))))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-2157 (($ $ (-1 (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|))) NIL (|has| |#1| (-338))) (($ $ (-1 (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|)) (-708)) NIL (|has| |#1| (-338))) (($ $ (-1162 |#2|)) 24) (($ $ (-708)) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) 23 (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085) (-708)) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-588 (-1085))) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085)) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))) (-3533 (($ $) NIL (|has| |#1| (-338)))) (-2816 (((-1158 |#1| |#2| |#3|) $) NIL (|has| |#1| (-338)))) (-2793 (((-522) $) NIL)) (-1738 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1431 (((-498) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-563 (-498))) (|has| |#1| (-338)))) (((-354) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-947)) (|has| |#1| (-338)))) (((-202) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-947)) (|has| |#1| (-338)))) (((-821 (-354)) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-563 (-821 (-354)))) (|has| |#1| (-338)))) (((-821 (-522)) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-563 (-821 (-522)))) (|has| |#1| (-338))))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-1522 (($ $) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ (-1158 |#1| |#2| |#3|)) NIL) (($ (-1162 |#2|)) 22) (($ (-1085)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-1085))) (|has| |#1| (-338)))) (($ $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514)))) (($ (-382 (-522))) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338))) (|has| |#1| (-37 (-382 (-522))))))) (-3243 ((|#1| $ (-522)) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-133)) (|has| |#1| (-338))) (|has| |#1| (-133))))) (-2323 (((-708)) NIL)) (-1893 ((|#1| $) 11)) (-3025 (((-1158 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-507)) (|has| |#1| (-338))))) (-1759 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-1745 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-522)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-522)))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2241 (($ $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3566 (($) 19 T CONST)) (-3577 (($) 15 T CONST)) (-2213 (($ $ (-1 (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|))) NIL (|has| |#1| (-338))) (($ $ (-1 (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|)) (-708)) NIL (|has| |#1| (-338))) (($ $ (-708)) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085) (-708)) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-588 (-1085))) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085)) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))) (-1574 (((-108) $ $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1558 (((-108) $ $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1549 (((-108) $ $) NIL (-3708 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338))) (($ (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|)) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 20)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1158 |#1| |#2| |#3|)) NIL (|has| |#1| (-338))) (($ (-1158 |#1| |#2| |#3|) $) NIL (|has| |#1| (-338))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
-(((-1130 |#1| |#2| |#3|) (-13 (-1128 |#1| (-1158 |#1| |#2| |#3|)) (-10 -8 (-15 -2190 ($ (-1162 |#2|))) (-15 -2157 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -1130))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1130 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1130 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-1858 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1130 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
-(-13 (-1128 |#1| (-1158 |#1| |#2| |#3|)) (-10 -8 (-15 -2190 ($ (-1162 |#2|))) (-15 -2157 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|)))
-((-3168 (((-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| |#1|) (|:| -2245 (-522)))))) |#1| (-108)) 10)) (-2571 (((-393 |#1|) |#1|) 21)) (-1916 (((-393 |#1|) |#1|) 20)))
-(((-1131 |#1|) (-10 -7 (-15 -1916 ((-393 |#1|) |#1|)) (-15 -2571 ((-393 |#1|) |#1|)) (-15 -3168 ((-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| |#1|) (|:| -2245 (-522)))))) |#1| (-108)))) (-1142 (-522))) (T -1131))
-((-3168 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-5 *2 (-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| *3) (|:| -2245 (-522))))))) (-5 *1 (-1131 *3)) (-4 *3 (-1142 (-522))))) (-2571 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-1131 *3)) (-4 *3 (-1142 (-522))))) (-1916 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-1131 *3)) (-4 *3 (-1142 (-522))))))
-(-10 -7 (-15 -1916 ((-393 |#1|) |#1|)) (-15 -2571 ((-393 |#1|) |#1|)) (-15 -3168 ((-2 (|:| |contp| (-522)) (|:| -2976 (-588 (-2 (|:| |irr| |#1|) (|:| -2245 (-522)))))) |#1| (-108))))
-((-1391 (((-1066 |#2|) (-1 |#2| |#1|) (-1133 |#1|)) 23 (|has| |#1| (-782))) (((-1133 |#2|) (-1 |#2| |#1|) (-1133 |#1|)) 17)))
-(((-1132 |#1| |#2|) (-10 -7 (-15 -1391 ((-1133 |#2|) (-1 |#2| |#1|) (-1133 |#1|))) (IF (|has| |#1| (-782)) (-15 -1391 ((-1066 |#2|) (-1 |#2| |#1|) (-1133 |#1|))) |%noBranch|)) (-1120) (-1120)) (T -1132))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1133 *5)) (-4 *5 (-782)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1066 *6)) (-5 *1 (-1132 *5 *6)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1133 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1133 *6)) (-5 *1 (-1132 *5 *6)))))
-(-10 -7 (-15 -1391 ((-1133 |#2|) (-1 |#2| |#1|) (-1133 |#1|))) (IF (|has| |#1| (-782)) (-15 -1391 ((-1066 |#2|) (-1 |#2| |#1|) (-1133 |#1|))) |%noBranch|))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1539 (($ |#1| |#1|) 9) (($ |#1|) 8)) (-1391 (((-1066 |#1|) (-1 |#1| |#1|) $) 41 (|has| |#1| (-782)))) (-2314 ((|#1| $) 14)) (-1450 ((|#1| $) 10)) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1461 (((-522) $) 18)) (-1376 ((|#1| $) 17)) (-1471 ((|#1| $) 11)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2211 (((-108) $) 16)) (-1604 (((-1066 |#1|) $) 38 (|has| |#1| (-782))) (((-1066 |#1|) (-588 $)) 37 (|has| |#1| (-782)))) (-1431 (($ |#1|) 25)) (-2190 (($ (-1009 |#1|)) 24) (((-792) $) 34 (|has| |#1| (-1014)))) (-1673 (($ |#1| |#1|) 20) (($ |#1|) 19)) (-1345 (($ $ (-522)) 13)) (-1531 (((-108) $ $) 27 (|has| |#1| (-1014)))))
-(((-1133 |#1|) (-13 (-1008 |#1|) (-10 -8 (-15 -1673 ($ |#1|)) (-15 -1539 ($ |#1|)) (-15 -2190 ($ (-1009 |#1|))) (-15 -2211 ((-108) $)) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-1010 |#1| (-1066 |#1|))) |%noBranch|))) (-1120)) (T -1133))
-((-1673 (*1 *1 *2) (-12 (-5 *1 (-1133 *2)) (-4 *2 (-1120)))) (-1539 (*1 *1 *2) (-12 (-5 *1 (-1133 *2)) (-4 *2 (-1120)))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1009 *3)) (-4 *3 (-1120)) (-5 *1 (-1133 *3)))) (-2211 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1133 *3)) (-4 *3 (-1120)))))
-(-13 (-1008 |#1|) (-10 -8 (-15 -1673 ($ |#1|)) (-15 -1539 ($ |#1|)) (-15 -2190 ($ (-1009 |#1|))) (-15 -2211 ((-108) $)) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-1010 |#1| (-1066 |#1|))) |%noBranch|)))
-((-1391 (((-1139 |#3| |#4|) (-1 |#4| |#2|) (-1139 |#1| |#2|)) 15)))
-(((-1134 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1391 ((-1139 |#3| |#4|) (-1 |#4| |#2|) (-1139 |#1| |#2|)))) (-1085) (-971) (-1085) (-971)) (T -1134))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1139 *5 *6)) (-14 *5 (-1085)) (-4 *6 (-971)) (-4 *8 (-971)) (-5 *2 (-1139 *7 *8)) (-5 *1 (-1134 *5 *6 *7 *8)) (-14 *7 (-1085)))))
-(-10 -7 (-15 -1391 ((-1139 |#3| |#4|) (-1 |#4| |#2|) (-1139 |#1| |#2|))))
-((-2297 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-1847 ((|#1| |#3|) 13)) (-3513 ((|#3| |#3|) 19)))
-(((-1135 |#1| |#2| |#3|) (-10 -7 (-15 -1847 (|#1| |#3|)) (-15 -3513 (|#3| |#3|)) (-15 -2297 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-514) (-919 |#1|) (-1142 |#2|)) (T -1135))
-((-2297 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-919 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1135 *4 *5 *3)) (-4 *3 (-1142 *5)))) (-3513 (*1 *2 *2) (-12 (-4 *3 (-514)) (-4 *4 (-919 *3)) (-5 *1 (-1135 *3 *4 *2)) (-4 *2 (-1142 *4)))) (-1847 (*1 *2 *3) (-12 (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-1135 *2 *4 *3)) (-4 *3 (-1142 *4)))))
-(-10 -7 (-15 -1847 (|#1| |#3|)) (-15 -3513 (|#3| |#3|)) (-15 -2297 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-2040 (((-3 |#2| "failed") |#2| (-708) |#1|) 29)) (-2611 (((-3 |#2| "failed") |#2| (-708)) 30)) (-4074 (((-3 (-2 (|:| -1913 |#2|) (|:| -1924 |#2|)) "failed") |#2|) 43)) (-3372 (((-588 |#2|) |#2|) 45)) (-1552 (((-3 |#2| "failed") |#2| |#2|) 40)))
-(((-1136 |#1| |#2|) (-10 -7 (-15 -2611 ((-3 |#2| "failed") |#2| (-708))) (-15 -2040 ((-3 |#2| "failed") |#2| (-708) |#1|)) (-15 -1552 ((-3 |#2| "failed") |#2| |#2|)) (-15 -4074 ((-3 (-2 (|:| -1913 |#2|) (|:| -1924 |#2|)) "failed") |#2|)) (-15 -3372 ((-588 |#2|) |#2|))) (-13 (-514) (-135)) (-1142 |#1|)) (T -1136))
-((-3372 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-135))) (-5 *2 (-588 *3)) (-5 *1 (-1136 *4 *3)) (-4 *3 (-1142 *4)))) (-4074 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-514) (-135))) (-5 *2 (-2 (|:| -1913 *3) (|:| -1924 *3))) (-5 *1 (-1136 *4 *3)) (-4 *3 (-1142 *4)))) (-1552 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-1136 *3 *2)) (-4 *2 (-1142 *3)))) (-2040 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-708)) (-4 *4 (-13 (-514) (-135))) (-5 *1 (-1136 *4 *2)) (-4 *2 (-1142 *4)))) (-2611 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-708)) (-4 *4 (-13 (-514) (-135))) (-5 *1 (-1136 *4 *2)) (-4 *2 (-1142 *4)))))
-(-10 -7 (-15 -2611 ((-3 |#2| "failed") |#2| (-708))) (-15 -2040 ((-3 |#2| "failed") |#2| (-708) |#1|)) (-15 -1552 ((-3 |#2| "failed") |#2| |#2|)) (-15 -4074 ((-3 (-2 (|:| -1913 |#2|) (|:| -1924 |#2|)) "failed") |#2|)) (-15 -3372 ((-588 |#2|) |#2|)))
-((-3162 (((-3 (-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) "failed") |#2| |#2|) 32)))
-(((-1137 |#1| |#2|) (-10 -7 (-15 -3162 ((-3 (-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) "failed") |#2| |#2|))) (-514) (-1142 |#1|)) (T -1137))
-((-3162 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-514)) (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-1137 *4 *3)) (-4 *3 (-1142 *4)))))
-(-10 -7 (-15 -3162 ((-3 (-2 (|:| -1353 |#2|) (|:| -3421 |#2|)) "failed") |#2| |#2|)))
-((-1942 ((|#2| |#2| |#2|) 19)) (-2739 ((|#2| |#2| |#2|) 30)) (-1917 ((|#2| |#2| |#2| (-708) (-708)) 36)))
-(((-1138 |#1| |#2|) (-10 -7 (-15 -1942 (|#2| |#2| |#2|)) (-15 -2739 (|#2| |#2| |#2|)) (-15 -1917 (|#2| |#2| |#2| (-708) (-708)))) (-971) (-1142 |#1|)) (T -1138))
-((-1917 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-708)) (-4 *4 (-971)) (-5 *1 (-1138 *4 *2)) (-4 *2 (-1142 *4)))) (-2739 (*1 *2 *2 *2) (-12 (-4 *3 (-971)) (-5 *1 (-1138 *3 *2)) (-4 *2 (-1142 *3)))) (-1942 (*1 *2 *2 *2) (-12 (-4 *3 (-971)) (-5 *1 (-1138 *3 *2)) (-4 *2 (-1142 *3)))))
-(-10 -7 (-15 -1942 (|#2| |#2| |#2|)) (-15 -2739 (|#2| |#2| |#2|)) (-15 -1917 (|#2| |#2| |#2| (-708) (-708))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-3960 (((-1166 |#2|) $ (-708)) NIL)) (-4090 (((-588 (-999)) $) NIL)) (-3793 (($ (-1081 |#2|)) NIL)) (-1282 (((-1081 $) $ (-999)) NIL) (((-1081 |#2|) $) NIL)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#2| (-514)))) (-2022 (($ $) NIL (|has| |#2| (-514)))) (-3739 (((-108) $) NIL (|has| |#2| (-514)))) (-3781 (((-708) $) NIL) (((-708) $ (-588 (-999))) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3984 (($ $ $) NIL (|has| |#2| (-514)))) (-1565 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3119 (($ $) NIL (|has| |#2| (-426)))) (-3450 (((-393 $) $) NIL (|has| |#2| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-1687 (((-108) $ $) NIL (|has| |#2| (-338)))) (-3242 (($ $ (-708)) NIL)) (-2272 (($ $ (-708)) NIL)) (-1441 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-426)))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-999) "failed") $) NIL)) (-1484 ((|#2| $) NIL) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-999) $) NIL)) (-1950 (($ $ $ (-999)) NIL (|has| |#2| (-157))) ((|#2| $ $) NIL (|has| |#2| (-157)))) (-2277 (($ $ $) NIL (|has| |#2| (-338)))) (-3156 (($ $) NIL)) (-2096 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-2254 (($ $ $) NIL (|has| |#2| (-338)))) (-2052 (($ $ $) NIL)) (-4152 (($ $ $) NIL (|has| |#2| (-514)))) (-1541 (((-2 (|:| -2977 |#2|) (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#2| (-514)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#2| (-338)))) (-2071 (($ $) NIL (|has| |#2| (-426))) (($ $ (-999)) NIL (|has| |#2| (-426)))) (-3147 (((-588 $) $) NIL)) (-2813 (((-108) $) NIL (|has| |#2| (-838)))) (-2671 (($ $ |#2| (-708) $) NIL)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-999) (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-999) (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-3714 (((-708) $ $) NIL (|has| |#2| (-514)))) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-3004 (((-3 $ "failed") $) NIL (|has| |#2| (-1061)))) (-4073 (($ (-1081 |#2|) (-999)) NIL) (($ (-1081 $) (-999)) NIL)) (-2073 (($ $ (-708)) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#2| (-338)))) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-4049 (($ |#2| (-708)) 17) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ (-999)) NIL) (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL)) (-2925 (((-708) $) NIL) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-2814 (($ $ $) NIL (|has| |#2| (-784)))) (-2446 (($ $ $) NIL (|has| |#2| (-784)))) (-3861 (($ (-1 (-708) (-708)) $) NIL)) (-1391 (($ (-1 |#2| |#2|) $) NIL)) (-3624 (((-1081 |#2|) $) NIL)) (-3145 (((-3 (-999) "failed") $) NIL)) (-3128 (($ $) NIL)) (-3138 ((|#2| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-2385 (((-1068) $) NIL)) (-3114 (((-2 (|:| -1353 $) (|:| -3421 $)) $ (-708)) NIL)) (-2462 (((-3 (-588 $) "failed") $) NIL)) (-4193 (((-3 (-588 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-999)) (|:| -1400 (-708))) "failed") $) NIL)) (-1858 (($ $) NIL (|has| |#2| (-37 (-382 (-522)))))) (-3802 (($) NIL (|has| |#2| (-1061)) CONST)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) NIL)) (-3118 ((|#2| $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#2| (-426)))) (-2259 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-2600 (($ $ (-708) |#2| $) NIL)) (-3729 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-1916 (((-393 $) $) NIL (|has| |#2| (-838)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#2| (-338)))) (-2232 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#2| (-338)))) (-2289 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-999) |#2|) NIL) (($ $ (-588 (-999)) (-588 |#2|)) NIL) (($ $ (-999) $) NIL) (($ $ (-588 (-999)) (-588 $)) NIL)) (-3730 (((-708) $) NIL (|has| |#2| (-338)))) (-2545 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-382 $) (-382 $) (-382 $)) NIL (|has| |#2| (-514))) ((|#2| (-382 $) |#2|) NIL (|has| |#2| (-338))) (((-382 $) $ (-382 $)) NIL (|has| |#2| (-514)))) (-4158 (((-3 $ "failed") $ (-708)) NIL)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#2| (-338)))) (-2769 (($ $ (-999)) NIL (|has| |#2| (-157))) ((|#2| $) NIL (|has| |#2| (-157)))) (-2157 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-2793 (((-708) $) NIL) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-1431 (((-821 (-354)) $) NIL (-12 (|has| (-999) (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-999) (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-999) (-563 (-498))) (|has| |#2| (-563 (-498)))))) (-2255 ((|#2| $) NIL (|has| |#2| (-426))) (($ $ (-999)) NIL (|has| |#2| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838))))) (-3097 (((-3 $ "failed") $ $) NIL (|has| |#2| (-514))) (((-3 (-382 $) "failed") (-382 $) $) NIL (|has| |#2| (-514)))) (-2190 (((-792) $) 13) (($ (-522)) NIL) (($ |#2|) NIL) (($ (-999)) NIL) (($ (-1162 |#1|)) 19) (($ (-382 (-522))) NIL (-3708 (|has| |#2| (-37 (-382 (-522)))) (|has| |#2| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#2| (-514)))) (-3916 (((-588 |#2|) $) NIL)) (-3243 ((|#2| $ (-708)) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-2143 (((-3 $ "failed") $) NIL (-3708 (-12 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#2| (-133))))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| |#2| (-157)))) (-3958 (((-108) $ $) NIL (|has| |#2| (-514)))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-3577 (($) 14 T CONST)) (-2213 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1574 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1531 (((-108) $ $) NIL)) (-1566 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1620 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#2| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#2| (-37 (-382 (-522))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-1139 |#1| |#2|) (-13 (-1142 |#2|) (-10 -8 (-15 -2190 ($ (-1162 |#1|))) (-15 -2600 ($ $ (-708) |#2| $)))) (-1085) (-971)) (T -1139))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1162 *3)) (-14 *3 (-1085)) (-5 *1 (-1139 *3 *4)) (-4 *4 (-971)))) (-2600 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1139 *4 *3)) (-14 *4 (-1085)) (-4 *3 (-971)))))
-(-13 (-1142 |#2|) (-10 -8 (-15 -2190 ($ (-1162 |#1|))) (-15 -2600 ($ $ (-708) |#2| $))))
-((-1391 ((|#4| (-1 |#3| |#1|) |#2|) 23)))
-(((-1140 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1391 (|#4| (-1 |#3| |#1|) |#2|))) (-971) (-1142 |#1|) (-971) (-1142 |#3|)) (T -1140))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-4 *2 (-1142 *6)) (-5 *1 (-1140 *5 *4 *6 *2)) (-4 *4 (-1142 *5)))))
-(-10 -7 (-15 -1391 (|#4| (-1 |#3| |#1|) |#2|)))
-((-3960 (((-1166 |#2|) $ (-708)) 113)) (-4090 (((-588 (-999)) $) 15)) (-3793 (($ (-1081 |#2|)) 66)) (-3781 (((-708) $) NIL) (((-708) $ (-588 (-999))) 18)) (-1565 (((-393 (-1081 $)) (-1081 $)) 184)) (-3119 (($ $) 174)) (-3450 (((-393 $) $) 172)) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 81)) (-3242 (($ $ (-708)) 70)) (-2272 (($ $ (-708)) 72)) (-1441 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 129)) (-1297 (((-3 |#2| "failed") $) 116) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 (-522) "failed") $) NIL) (((-3 (-999) "failed") $) NIL)) (-1484 ((|#2| $) 114) (((-382 (-522)) $) NIL) (((-522) $) NIL) (((-999) $) NIL)) (-4152 (($ $ $) 150)) (-1541 (((-2 (|:| -2977 |#2|) (|:| -1353 $) (|:| -3421 $)) $ $) 152)) (-3714 (((-708) $ $) 169)) (-3004 (((-3 $ "failed") $) 122)) (-4049 (($ |#2| (-708)) NIL) (($ $ (-999) (-708)) 46) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-2925 (((-708) $) NIL) (((-708) $ (-999)) 41) (((-588 (-708)) $ (-588 (-999))) 42)) (-3624 (((-1081 |#2|) $) 58)) (-3145 (((-3 (-999) "failed") $) 39)) (-3114 (((-2 (|:| -1353 $) (|:| -3421 $)) $ (-708)) 69)) (-1858 (($ $) 195)) (-3802 (($) 118)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 181)) (-3729 (((-393 (-1081 $)) (-1081 $)) 87)) (-3495 (((-393 (-1081 $)) (-1081 $)) 85)) (-1916 (((-393 $) $) 105)) (-2289 (($ $ (-588 (-270 $))) 38) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-999) |#2|) 31) (($ $ (-588 (-999)) (-588 |#2|)) 28) (($ $ (-999) $) 25) (($ $ (-588 (-999)) (-588 $)) 23)) (-3730 (((-708) $) 187)) (-2545 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-382 $) (-382 $) (-382 $)) 146) ((|#2| (-382 $) |#2|) 186) (((-382 $) $ (-382 $)) 168)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 190)) (-2157 (($ $ (-999)) 139) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) 137) (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) 136) (($ $ (-1 |#2| |#2|) $) 133)) (-2793 (((-708) $) NIL) (((-708) $ (-999)) 16) (((-588 (-708)) $ (-588 (-999))) 20)) (-2255 ((|#2| $) NIL) (($ $ (-999)) 124)) (-3097 (((-3 $ "failed") $ $) 160) (((-3 (-382 $) "failed") (-382 $) $) 156)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) NIL) (($ (-999)) 50) (($ (-382 (-522))) NIL) (($ $) NIL)))
-(((-1141 |#1| |#2|) (-10 -8 (-15 -2190 (|#1| |#1|)) (-15 -1307 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))) (-15 -3450 ((-393 |#1|) |#1|)) (-15 -3119 (|#1| |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -3802 (|#1|)) (-15 -3004 ((-3 |#1| "failed") |#1|)) (-15 -2545 ((-382 |#1|) |#1| (-382 |#1|))) (-15 -3730 ((-708) |#1|)) (-15 -2752 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -1858 (|#1| |#1|)) (-15 -2545 (|#2| (-382 |#1|) |#2|)) (-15 -1441 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -1541 ((-2 (|:| -2977 |#2|) (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -4152 (|#1| |#1| |#1|)) (-15 -3097 ((-3 (-382 |#1|) "failed") (-382 |#1|) |#1|)) (-15 -3097 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3714 ((-708) |#1| |#1|)) (-15 -2545 ((-382 |#1|) (-382 |#1|) (-382 |#1|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -2272 (|#1| |#1| (-708))) (-15 -3242 (|#1| |#1| (-708))) (-15 -3114 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| (-708))) (-15 -3793 (|#1| (-1081 |#2|))) (-15 -3624 ((-1081 |#2|) |#1|)) (-15 -3960 ((-1166 |#2|) |#1| (-708))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2545 (|#1| |#1| |#1|)) (-15 -2545 (|#2| |#1| |#2|)) (-15 -1916 ((-393 |#1|) |#1|)) (-15 -1565 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -3495 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -3729 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -1473 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -2255 (|#1| |#1| (-999))) (-15 -4090 ((-588 (-999)) |#1|)) (-15 -3781 ((-708) |#1| (-588 (-999)))) (-15 -3781 ((-708) |#1|)) (-15 -4049 (|#1| |#1| (-588 (-999)) (-588 (-708)))) (-15 -4049 (|#1| |#1| (-999) (-708))) (-15 -2925 ((-588 (-708)) |#1| (-588 (-999)))) (-15 -2925 ((-708) |#1| (-999))) (-15 -3145 ((-3 (-999) "failed") |#1|)) (-15 -2793 ((-588 (-708)) |#1| (-588 (-999)))) (-15 -2793 ((-708) |#1| (-999))) (-15 -1484 ((-999) |#1|)) (-15 -1297 ((-3 (-999) "failed") |#1|)) (-15 -2190 (|#1| (-999))) (-15 -2289 (|#1| |#1| (-588 (-999)) (-588 |#1|))) (-15 -2289 (|#1| |#1| (-999) |#1|)) (-15 -2289 (|#1| |#1| (-588 (-999)) (-588 |#2|))) (-15 -2289 (|#1| |#1| (-999) |#2|)) (-15 -2289 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#1| |#1|)) (-15 -2289 (|#1| |#1| (-270 |#1|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2793 ((-708) |#1|)) (-15 -4049 (|#1| |#2| (-708))) (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -2925 ((-708) |#1|)) (-15 -2255 (|#2| |#1|)) (-15 -2157 (|#1| |#1| (-588 (-999)) (-588 (-708)))) (-15 -2157 (|#1| |#1| (-999) (-708))) (-15 -2157 (|#1| |#1| (-588 (-999)))) (-15 -2157 (|#1| |#1| (-999))) (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|))) (-1142 |#2|) (-971)) (T -1141))
-NIL
-(-10 -8 (-15 -2190 (|#1| |#1|)) (-15 -1307 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))) (-15 -3450 ((-393 |#1|) |#1|)) (-15 -3119 (|#1| |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -3802 (|#1|)) (-15 -3004 ((-3 |#1| "failed") |#1|)) (-15 -2545 ((-382 |#1|) |#1| (-382 |#1|))) (-15 -3730 ((-708) |#1|)) (-15 -2752 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -1858 (|#1| |#1|)) (-15 -2545 (|#2| (-382 |#1|) |#2|)) (-15 -1441 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -1541 ((-2 (|:| -2977 |#2|) (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| |#1|)) (-15 -4152 (|#1| |#1| |#1|)) (-15 -3097 ((-3 (-382 |#1|) "failed") (-382 |#1|) |#1|)) (-15 -3097 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3714 ((-708) |#1| |#1|)) (-15 -2545 ((-382 |#1|) (-382 |#1|) (-382 |#1|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -2272 (|#1| |#1| (-708))) (-15 -3242 (|#1| |#1| (-708))) (-15 -3114 ((-2 (|:| -1353 |#1|) (|:| -3421 |#1|)) |#1| (-708))) (-15 -3793 (|#1| (-1081 |#2|))) (-15 -3624 ((-1081 |#2|) |#1|)) (-15 -3960 ((-1166 |#2|) |#1| (-708))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2157 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2157 (|#1| |#1| (-1085) (-708))) (-15 -2157 (|#1| |#1| (-588 (-1085)))) (-15 -2157 (|#1| |#1| (-1085))) (-15 -2157 (|#1| |#1|)) (-15 -2157 (|#1| |#1| (-708))) (-15 -2545 (|#1| |#1| |#1|)) (-15 -2545 (|#2| |#1| |#2|)) (-15 -1916 ((-393 |#1|) |#1|)) (-15 -1565 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -3495 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -3729 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -1473 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -2255 (|#1| |#1| (-999))) (-15 -4090 ((-588 (-999)) |#1|)) (-15 -3781 ((-708) |#1| (-588 (-999)))) (-15 -3781 ((-708) |#1|)) (-15 -4049 (|#1| |#1| (-588 (-999)) (-588 (-708)))) (-15 -4049 (|#1| |#1| (-999) (-708))) (-15 -2925 ((-588 (-708)) |#1| (-588 (-999)))) (-15 -2925 ((-708) |#1| (-999))) (-15 -3145 ((-3 (-999) "failed") |#1|)) (-15 -2793 ((-588 (-708)) |#1| (-588 (-999)))) (-15 -2793 ((-708) |#1| (-999))) (-15 -1484 ((-999) |#1|)) (-15 -1297 ((-3 (-999) "failed") |#1|)) (-15 -2190 (|#1| (-999))) (-15 -2289 (|#1| |#1| (-588 (-999)) (-588 |#1|))) (-15 -2289 (|#1| |#1| (-999) |#1|)) (-15 -2289 (|#1| |#1| (-588 (-999)) (-588 |#2|))) (-15 -2289 (|#1| |#1| (-999) |#2|)) (-15 -2289 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2289 (|#1| |#1| |#1| |#1|)) (-15 -2289 (|#1| |#1| (-270 |#1|))) (-15 -2289 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2793 ((-708) |#1|)) (-15 -4049 (|#1| |#2| (-708))) (-15 -1484 ((-522) |#1|)) (-15 -1297 ((-3 (-522) "failed") |#1|)) (-15 -1484 ((-382 (-522)) |#1|)) (-15 -1297 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2190 (|#1| |#2|)) (-15 -1297 ((-3 |#2| "failed") |#1|)) (-15 -1484 (|#2| |#1|)) (-15 -2925 ((-708) |#1|)) (-15 -2255 (|#2| |#1|)) (-15 -2157 (|#1| |#1| (-588 (-999)) (-588 (-708)))) (-15 -2157 (|#1| |#1| (-999) (-708))) (-15 -2157 (|#1| |#1| (-588 (-999)))) (-15 -2157 (|#1| |#1| (-999))) (-15 -2190 (|#1| (-522))) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-3960 (((-1166 |#1|) $ (-708)) 238)) (-4090 (((-588 (-999)) $) 110)) (-3793 (($ (-1081 |#1|)) 236)) (-1282 (((-1081 $) $ (-999)) 125) (((-1081 |#1|) $) 124)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 87 (|has| |#1| (-514)))) (-2022 (($ $) 88 (|has| |#1| (-514)))) (-3739 (((-108) $) 90 (|has| |#1| (-514)))) (-3781 (((-708) $) 112) (((-708) $ (-588 (-999))) 111)) (-1233 (((-3 $ "failed") $ $) 19)) (-3984 (($ $ $) 223 (|has| |#1| (-514)))) (-1565 (((-393 (-1081 $)) (-1081 $)) 100 (|has| |#1| (-838)))) (-3119 (($ $) 98 (|has| |#1| (-426)))) (-3450 (((-393 $) $) 97 (|has| |#1| (-426)))) (-1473 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 103 (|has| |#1| (-838)))) (-1687 (((-108) $ $) 208 (|has| |#1| (-338)))) (-3242 (($ $ (-708)) 231)) (-2272 (($ $ (-708)) 230)) (-1441 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 218 (|has| |#1| (-426)))) (-3175 (($) 17 T CONST)) (-1297 (((-3 |#1| "failed") $) 164) (((-3 (-382 (-522)) "failed") $) 162 (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) 160 (|has| |#1| (-962 (-522)))) (((-3 (-999) "failed") $) 136)) (-1484 ((|#1| $) 165) (((-382 (-522)) $) 161 (|has| |#1| (-962 (-382 (-522))))) (((-522) $) 159 (|has| |#1| (-962 (-522)))) (((-999) $) 135)) (-1950 (($ $ $ (-999)) 108 (|has| |#1| (-157))) ((|#1| $ $) 226 (|has| |#1| (-157)))) (-2277 (($ $ $) 212 (|has| |#1| (-338)))) (-3156 (($ $) 154)) (-2096 (((-628 (-522)) (-628 $)) 134 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 133 (|has| |#1| (-584 (-522)))) (((-2 (|:| -1222 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 132) (((-628 |#1|) (-628 $)) 131)) (-2682 (((-3 $ "failed") $) 34)) (-2254 (($ $ $) 211 (|has| |#1| (-338)))) (-2052 (($ $ $) 229)) (-4152 (($ $ $) 220 (|has| |#1| (-514)))) (-1541 (((-2 (|:| -2977 |#1|) (|:| -1353 $) (|:| -3421 $)) $ $) 219 (|has| |#1| (-514)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 206 (|has| |#1| (-338)))) (-2071 (($ $) 176 (|has| |#1| (-426))) (($ $ (-999)) 105 (|has| |#1| (-426)))) (-3147 (((-588 $) $) 109)) (-2813 (((-108) $) 96 (|has| |#1| (-838)))) (-2671 (($ $ |#1| (-708) $) 172)) (-4011 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 84 (-12 (|has| (-999) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 83 (-12 (|has| (-999) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3714 (((-708) $ $) 224 (|has| |#1| (-514)))) (-2782 (((-108) $) 31)) (-2112 (((-708) $) 169)) (-3004 (((-3 $ "failed") $) 204 (|has| |#1| (-1061)))) (-4073 (($ (-1081 |#1|) (-999)) 117) (($ (-1081 $) (-999)) 116)) (-2073 (($ $ (-708)) 235)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 215 (|has| |#1| (-338)))) (-4052 (((-588 $) $) 126)) (-3340 (((-108) $) 152)) (-4049 (($ |#1| (-708)) 153) (($ $ (-999) (-708)) 119) (($ $ (-588 (-999)) (-588 (-708))) 118)) (-2478 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $ (-999)) 120) (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 233)) (-2925 (((-708) $) 170) (((-708) $ (-999)) 122) (((-588 (-708)) $ (-588 (-999))) 121)) (-2814 (($ $ $) 79 (|has| |#1| (-784)))) (-2446 (($ $ $) 78 (|has| |#1| (-784)))) (-3861 (($ (-1 (-708) (-708)) $) 171)) (-1391 (($ (-1 |#1| |#1|) $) 151)) (-3624 (((-1081 |#1|) $) 237)) (-3145 (((-3 (-999) "failed") $) 123)) (-3128 (($ $) 149)) (-3138 ((|#1| $) 148)) (-2224 (($ (-588 $)) 94 (|has| |#1| (-426))) (($ $ $) 93 (|has| |#1| (-426)))) (-2385 (((-1068) $) 9)) (-3114 (((-2 (|:| -1353 $) (|:| -3421 $)) $ (-708)) 232)) (-2462 (((-3 (-588 $) "failed") $) 114)) (-4193 (((-3 (-588 $) "failed") $) 115)) (-3285 (((-3 (-2 (|:| |var| (-999)) (|:| -1400 (-708))) "failed") $) 113)) (-1858 (($ $) 216 (|has| |#1| (-37 (-382 (-522)))))) (-3802 (($) 203 (|has| |#1| (-1061)) CONST)) (-4151 (((-1032) $) 10)) (-3108 (((-108) $) 166)) (-3118 ((|#1| $) 167)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 95 (|has| |#1| (-426)))) (-2259 (($ (-588 $)) 92 (|has| |#1| (-426))) (($ $ $) 91 (|has| |#1| (-426)))) (-3729 (((-393 (-1081 $)) (-1081 $)) 102 (|has| |#1| (-838)))) (-3495 (((-393 (-1081 $)) (-1081 $)) 101 (|has| |#1| (-838)))) (-1916 (((-393 $) $) 99 (|has| |#1| (-838)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 214 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 213 (|has| |#1| (-338)))) (-2232 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 207 (|has| |#1| (-338)))) (-2289 (($ $ (-588 (-270 $))) 145) (($ $ (-270 $)) 144) (($ $ $ $) 143) (($ $ (-588 $) (-588 $)) 142) (($ $ (-999) |#1|) 141) (($ $ (-588 (-999)) (-588 |#1|)) 140) (($ $ (-999) $) 139) (($ $ (-588 (-999)) (-588 $)) 138)) (-3730 (((-708) $) 209 (|has| |#1| (-338)))) (-2545 ((|#1| $ |#1|) 256) (($ $ $) 255) (((-382 $) (-382 $) (-382 $)) 225 (|has| |#1| (-514))) ((|#1| (-382 $) |#1|) 217 (|has| |#1| (-338))) (((-382 $) $ (-382 $)) 205 (|has| |#1| (-514)))) (-4158 (((-3 $ "failed") $ (-708)) 234)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 210 (|has| |#1| (-338)))) (-2769 (($ $ (-999)) 107 (|has| |#1| (-157))) ((|#1| $) 227 (|has| |#1| (-157)))) (-2157 (($ $ (-999)) 42) (($ $ (-588 (-999))) 41) (($ $ (-999) (-708)) 40) (($ $ (-588 (-999)) (-588 (-708))) 39) (($ $ (-708)) 253) (($ $) 251) (($ $ (-1085)) 250 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 249 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 248 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 247 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 240) (($ $ (-1 |#1| |#1|)) 239) (($ $ (-1 |#1| |#1|) $) 228)) (-2793 (((-708) $) 150) (((-708) $ (-999)) 130) (((-588 (-708)) $ (-588 (-999))) 129)) (-1431 (((-821 (-354)) $) 82 (-12 (|has| (-999) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) 81 (-12 (|has| (-999) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) 80 (-12 (|has| (-999) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2255 ((|#1| $) 175 (|has| |#1| (-426))) (($ $ (-999)) 106 (|has| |#1| (-426)))) (-2412 (((-3 (-1166 $) "failed") (-628 $)) 104 (-4015 (|has| $ (-133)) (|has| |#1| (-838))))) (-3097 (((-3 $ "failed") $ $) 222 (|has| |#1| (-514))) (((-3 (-382 $) "failed") (-382 $) $) 221 (|has| |#1| (-514)))) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 163) (($ (-999)) 137) (($ (-382 (-522))) 72 (-3708 (|has| |#1| (-962 (-382 (-522)))) (|has| |#1| (-37 (-382 (-522)))))) (($ $) 85 (|has| |#1| (-514)))) (-3916 (((-588 |#1|) $) 168)) (-3243 ((|#1| $ (-708)) 155) (($ $ (-999) (-708)) 128) (($ $ (-588 (-999)) (-588 (-708))) 127)) (-2143 (((-3 $ "failed") $) 73 (-3708 (-4015 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2323 (((-708)) 29)) (-3632 (($ $ $ (-708)) 173 (|has| |#1| (-157)))) (-3958 (((-108) $ $) 89 (|has| |#1| (-514)))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-999)) 38) (($ $ (-588 (-999))) 37) (($ $ (-999) (-708)) 36) (($ $ (-588 (-999)) (-588 (-708))) 35) (($ $ (-708)) 254) (($ $) 252) (($ $ (-1085)) 246 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 245 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 244 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 243 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 242) (($ $ (-1 |#1| |#1|)) 241)) (-1574 (((-108) $ $) 76 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 75 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 6)) (-1566 (((-108) $ $) 77 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 74 (|has| |#1| (-784)))) (-1620 (($ $ |#1|) 156 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 158 (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) 157 (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3049 (((-1158 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-283)) (|has| |#1| (-338))))) (-3533 (((-588 (-999)) $) NIL)) (-1660 (((-1085) $) 10)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-2298 (($ $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-3007 (((-108) $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-3495 (($ $ (-522)) NIL) (($ $ (-522) (-522)) NIL)) (-3024 (((-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|))) $) NIL)) (-1201 (((-1158 |#1| |#2| |#3|) $) NIL)) (-1413 (((-3 (-1158 |#1| |#2| |#3|) "failed") $) NIL)) (-3162 (((-1158 |#1| |#2| |#3|) $) NIL)) (-3044 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-2961 (($ $) NIL (|has| |#1| (-338)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-338)))) (-2016 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-3023 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3355 (((-522) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-1270 (($ (-1066 (-2 (|:| |k| (-522)) (|:| |c| |#1|)))) NIL)) (-3066 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-1158 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1085) "failed") $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-1085))) (|has| |#1| (-338)))) (((-3 (-382 (-522)) "failed") $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338)))) (((-3 (-522) "failed") $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338))))) (-1478 (((-1158 |#1| |#2| |#3|) $) NIL) (((-1085) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-1085))) (|has| |#1| (-338)))) (((-382 (-522)) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338)))) (((-522) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338))))) (-3734 (($ $) NIL) (($ (-522) $) NIL)) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-3241 (($ $) NIL)) (-1226 (((-628 (-1158 |#1| |#2| |#3|)) (-628 $)) NIL (|has| |#1| (-338))) (((-2 (|:| -2149 (-628 (-1158 |#1| |#2| |#3|))) (|:| |vec| (-1166 (-1158 |#1| |#2| |#3|)))) (-628 $) (-1166 $)) NIL (|has| |#1| (-338))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-584 (-522))) (|has| |#1| (-338)))) (((-628 (-522)) (-628 $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-584 (-522))) (|has| |#1| (-338))))) (-3920 (((-3 $ "failed") $) NIL)) (-1749 (((-382 (-881 |#1|)) $ (-522)) NIL (|has| |#1| (-514))) (((-382 (-881 |#1|)) $ (-522) (-522)) NIL (|has| |#1| (-514)))) (-3344 (($) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-507)) (|has| |#1| (-338))))) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2725 (((-108) $) NIL (|has| |#1| (-338)))) (-3603 (((-108) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-3672 (((-108) $) NIL)) (-2980 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3738 (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-815 (-522))) (|has| |#1| (-338)))) (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-815 (-354))) (|has| |#1| (-338))))) (-3872 (((-522) $) NIL) (((-522) $ (-522)) NIL)) (-2859 (((-108) $) NIL)) (-1558 (($ $) NIL (|has| |#1| (-338)))) (-2947 (((-1158 |#1| |#2| |#3|) $) NIL (|has| |#1| (-338)))) (-1811 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-4208 (((-3 $ "failed") $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-1061)) (|has| |#1| (-338))))) (-3740 (((-108) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-2895 (($ $ (-850)) NIL)) (-1332 (($ (-1 |#1| (-522)) $) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-522)) 17) (($ $ (-999) (-522)) NIL) (($ $ (-588 (-999)) (-588 (-522))) NIL)) (-1308 (($ $ $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-2524 (($ $ $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-338)))) (-1238 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-3170 (($ (-522) (-1158 |#1| |#2| |#3|)) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL (|has| |#1| (-338)))) (-2611 (($ $) 25 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) NIL (-3844 (-12 (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 26 (|has| |#1| (-37 (-382 (-522)))))) (-3937 (($) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-1061)) (|has| |#1| (-338))) CONST)) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-4194 (($ $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-283)) (|has| |#1| (-338))))) (-3592 (((-1158 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-507)) (|has| |#1| (-338))))) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-2006 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-3934 (($ $ (-522)) NIL)) (-2276 (((-3 $ "failed") $ $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3357 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-522))))) (($ $ (-1085) (-1158 |#1| |#2| |#3|)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-483 (-1085) (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-588 (-1085)) (-588 (-1158 |#1| |#2| |#3|))) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-483 (-1085) (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-588 (-270 (-1158 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-285 (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-270 (-1158 |#1| |#2| |#3|))) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-285 (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-285 (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338)))) (($ $ (-588 (-1158 |#1| |#2| |#3|)) (-588 (-1158 |#1| |#2| |#3|))) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-285 (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338))))) (-4031 (((-708) $) NIL (|has| |#1| (-338)))) (-2683 ((|#1| $ (-522)) NIL) (($ $ $) NIL (|has| (-522) (-1026))) (($ $ (-1158 |#1| |#2| |#3|)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-262 (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|))) (|has| |#1| (-338))))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-2731 (($ $ (-1 (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|))) NIL (|has| |#1| (-338))) (($ $ (-1 (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|)) (-708)) NIL (|has| |#1| (-338))) (($ $ (-1162 |#2|)) 24) (($ $ (-708)) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) 23 (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085) (-708)) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-588 (-1085))) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085)) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))) (-2762 (($ $) NIL (|has| |#1| (-338)))) (-2959 (((-1158 |#1| |#2| |#3|) $) NIL (|has| |#1| (-338)))) (-2487 (((-522) $) NIL)) (-1831 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3873 (((-498) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-563 (-498))) (|has| |#1| (-338)))) (((-354) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-947)) (|has| |#1| (-338)))) (((-202) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-947)) (|has| |#1| (-338)))) (((-821 (-354)) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-563 (-821 (-354)))) (|has| |#1| (-338)))) (((-821 (-522)) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-563 (-821 (-522)))) (|has| |#1| (-338))))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))))) (-1944 (($ $) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ (-1158 |#1| |#2| |#3|)) NIL) (($ (-1162 |#2|)) 22) (($ (-1085)) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-1085))) (|has| |#1| (-338)))) (($ $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514)))) (($ (-382 (-522))) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-962 (-522))) (|has| |#1| (-338))) (|has| |#1| (-37 (-382 (-522))))))) (-1643 ((|#1| $ (-522)) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-133)) (|has| |#1| (-338))) (|has| |#1| (-133))))) (-2742 (((-708)) NIL)) (-1980 ((|#1| $) 11)) (-1379 (((-1158 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-507)) (|has| |#1| (-338))))) (-1856 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-838)) (|has| |#1| (-338))) (|has| |#1| (-514))))) (-1839 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-522)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-522)))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-4126 (($ $) NIL (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3697 (($) 19 T CONST)) (-3709 (($) 15 T CONST)) (-2252 (($ $ (-1 (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|))) NIL (|has| |#1| (-338))) (($ $ (-1 (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|)) (-708)) NIL (|has| |#1| (-338))) (($ $ (-708)) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-210)) (|has| |#1| (-338))) (|has| |#1| (-15 * (|#1| (-522) |#1|))))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085) (-708)) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-588 (-1085))) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085)))))) (($ $ (-1085)) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-829 (-1085))) (|has| |#1| (-338))) (-12 (|has| |#1| (-15 * (|#1| (-522) |#1|))) (|has| |#1| (-829 (-1085))))))) (-1623 (((-108) $ $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1597 (((-108) $ $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1587 (((-108) $ $) NIL (-3844 (-12 (|has| (-1158 |#1| |#2| |#3|) (-757)) (|has| |#1| (-338))) (-12 (|has| (-1158 |#1| |#2| |#3|) (-784)) (|has| |#1| (-338)))))) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338))) (($ (-1158 |#1| |#2| |#3|) (-1158 |#1| |#2| |#3|)) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 20)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1158 |#1| |#2| |#3|)) NIL (|has| |#1| (-338))) (($ (-1158 |#1| |#2| |#3|) $) NIL (|has| |#1| (-338))) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+(((-1130 |#1| |#2| |#3|) (-13 (-1128 |#1| (-1158 |#1| |#2| |#3|)) (-10 -8 (-15 -2217 ($ (-1162 |#2|))) (-15 -2731 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -1130))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1130 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1130 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2611 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1130 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
+(-13 (-1128 |#1| (-1158 |#1| |#2| |#3|)) (-10 -8 (-15 -2217 ($ (-1162 |#2|))) (-15 -2731 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|)))
+((-3306 (((-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| |#1|) (|:| -4160 (-522)))))) |#1| (-108)) 10)) (-3903 (((-393 |#1|) |#1|) 21)) (-2006 (((-393 |#1|) |#1|) 20)))
+(((-1131 |#1|) (-10 -7 (-15 -2006 ((-393 |#1|) |#1|)) (-15 -3903 ((-393 |#1|) |#1|)) (-15 -3306 ((-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| |#1|) (|:| -4160 (-522)))))) |#1| (-108)))) (-1142 (-522))) (T -1131))
+((-3306 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-5 *2 (-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| *3) (|:| -4160 (-522))))))) (-5 *1 (-1131 *3)) (-4 *3 (-1142 (-522))))) (-3903 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-1131 *3)) (-4 *3 (-1142 (-522))))) (-2006 (*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-1131 *3)) (-4 *3 (-1142 (-522))))))
+(-10 -7 (-15 -2006 ((-393 |#1|) |#1|)) (-15 -3903 ((-393 |#1|) |#1|)) (-15 -3306 ((-2 (|:| |contp| (-522)) (|:| -4045 (-588 (-2 (|:| |irr| |#1|) (|:| -4160 (-522)))))) |#1| (-108))))
+((-3810 (((-1066 |#2|) (-1 |#2| |#1|) (-1133 |#1|)) 23 (|has| |#1| (-782))) (((-1133 |#2|) (-1 |#2| |#1|) (-1133 |#1|)) 17)))
+(((-1132 |#1| |#2|) (-10 -7 (-15 -3810 ((-1133 |#2|) (-1 |#2| |#1|) (-1133 |#1|))) (IF (|has| |#1| (-782)) (-15 -3810 ((-1066 |#2|) (-1 |#2| |#1|) (-1133 |#1|))) |%noBranch|)) (-1120) (-1120)) (T -1132))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1133 *5)) (-4 *5 (-782)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1066 *6)) (-5 *1 (-1132 *5 *6)))) (-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1133 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1133 *6)) (-5 *1 (-1132 *5 *6)))))
+(-10 -7 (-15 -3810 ((-1133 |#2|) (-1 |#2| |#1|) (-1133 |#1|))) (IF (|has| |#1| (-782)) (-15 -3810 ((-1066 |#2|) (-1 |#2| |#1|) (-1133 |#1|))) |%noBranch|))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1572 (($ |#1| |#1|) 9) (($ |#1|) 8)) (-3810 (((-1066 |#1|) (-1 |#1| |#1|) $) 41 (|has| |#1| (-782)))) (-2430 ((|#1| $) 14)) (-1451 ((|#1| $) 10)) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1463 (((-522) $) 18)) (-3636 ((|#1| $) 17)) (-1476 ((|#1| $) 11)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2436 (((-108) $) 16)) (-1663 (((-1066 |#1|) $) 38 (|has| |#1| (-782))) (((-1066 |#1|) (-588 $)) 37 (|has| |#1| (-782)))) (-3873 (($ |#1|) 25)) (-2217 (($ (-1009 |#1|)) 24) (((-792) $) 34 (|has| |#1| (-1014)))) (-1752 (($ |#1| |#1|) 20) (($ |#1|) 19)) (-1327 (($ $ (-522)) 13)) (-1562 (((-108) $ $) 27 (|has| |#1| (-1014)))))
+(((-1133 |#1|) (-13 (-1008 |#1|) (-10 -8 (-15 -1752 ($ |#1|)) (-15 -1572 ($ |#1|)) (-15 -2217 ($ (-1009 |#1|))) (-15 -2436 ((-108) $)) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-1010 |#1| (-1066 |#1|))) |%noBranch|))) (-1120)) (T -1133))
+((-1752 (*1 *1 *2) (-12 (-5 *1 (-1133 *2)) (-4 *2 (-1120)))) (-1572 (*1 *1 *2) (-12 (-5 *1 (-1133 *2)) (-4 *2 (-1120)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1009 *3)) (-4 *3 (-1120)) (-5 *1 (-1133 *3)))) (-2436 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1133 *3)) (-4 *3 (-1120)))))
+(-13 (-1008 |#1|) (-10 -8 (-15 -1752 ($ |#1|)) (-15 -1572 ($ |#1|)) (-15 -2217 ($ (-1009 |#1|))) (-15 -2436 ((-108) $)) (IF (|has| |#1| (-1014)) (-6 (-1014)) |%noBranch|) (IF (|has| |#1| (-782)) (-6 (-1010 |#1| (-1066 |#1|))) |%noBranch|)))
+((-3810 (((-1139 |#3| |#4|) (-1 |#4| |#2|) (-1139 |#1| |#2|)) 15)))
+(((-1134 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3810 ((-1139 |#3| |#4|) (-1 |#4| |#2|) (-1139 |#1| |#2|)))) (-1085) (-971) (-1085) (-971)) (T -1134))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1139 *5 *6)) (-14 *5 (-1085)) (-4 *6 (-971)) (-4 *8 (-971)) (-5 *2 (-1139 *7 *8)) (-5 *1 (-1134 *5 *6 *7 *8)) (-14 *7 (-1085)))))
+(-10 -7 (-15 -3810 ((-1139 |#3| |#4|) (-1 |#4| |#2|) (-1139 |#1| |#2|))))
+((-2567 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-2460 ((|#1| |#3|) 13)) (-2508 ((|#3| |#3|) 19)))
+(((-1135 |#1| |#2| |#3|) (-10 -7 (-15 -2460 (|#1| |#3|)) (-15 -2508 (|#3| |#3|)) (-15 -2567 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-514) (-919 |#1|) (-1142 |#2|)) (T -1135))
+((-2567 (*1 *2 *3) (-12 (-4 *4 (-514)) (-4 *5 (-919 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1135 *4 *5 *3)) (-4 *3 (-1142 *5)))) (-2508 (*1 *2 *2) (-12 (-4 *3 (-514)) (-4 *4 (-919 *3)) (-5 *1 (-1135 *3 *4 *2)) (-4 *2 (-1142 *4)))) (-2460 (*1 *2 *3) (-12 (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-1135 *2 *4 *3)) (-4 *3 (-1142 *4)))))
+(-10 -7 (-15 -2460 (|#1| |#3|)) (-15 -2508 (|#3| |#3|)) (-15 -2567 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-2520 (((-3 |#2| "failed") |#2| (-708) |#1|) 29)) (-3313 (((-3 |#2| "failed") |#2| (-708)) 30)) (-3198 (((-3 (-2 (|:| -1993 |#2|) (|:| -2002 |#2|)) "failed") |#2|) 43)) (-3493 (((-588 |#2|) |#2|) 45)) (-3446 (((-3 |#2| "failed") |#2| |#2|) 40)))
+(((-1136 |#1| |#2|) (-10 -7 (-15 -3313 ((-3 |#2| "failed") |#2| (-708))) (-15 -2520 ((-3 |#2| "failed") |#2| (-708) |#1|)) (-15 -3446 ((-3 |#2| "failed") |#2| |#2|)) (-15 -3198 ((-3 (-2 (|:| -1993 |#2|) (|:| -2002 |#2|)) "failed") |#2|)) (-15 -3493 ((-588 |#2|) |#2|))) (-13 (-514) (-135)) (-1142 |#1|)) (T -1136))
+((-3493 (*1 *2 *3) (-12 (-4 *4 (-13 (-514) (-135))) (-5 *2 (-588 *3)) (-5 *1 (-1136 *4 *3)) (-4 *3 (-1142 *4)))) (-3198 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-514) (-135))) (-5 *2 (-2 (|:| -1993 *3) (|:| -2002 *3))) (-5 *1 (-1136 *4 *3)) (-4 *3 (-1142 *4)))) (-3446 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-1136 *3 *2)) (-4 *2 (-1142 *3)))) (-2520 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-708)) (-4 *4 (-13 (-514) (-135))) (-5 *1 (-1136 *4 *2)) (-4 *2 (-1142 *4)))) (-3313 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-708)) (-4 *4 (-13 (-514) (-135))) (-5 *1 (-1136 *4 *2)) (-4 *2 (-1142 *4)))))
+(-10 -7 (-15 -3313 ((-3 |#2| "failed") |#2| (-708))) (-15 -2520 ((-3 |#2| "failed") |#2| (-708) |#1|)) (-15 -3446 ((-3 |#2| "failed") |#2| |#2|)) (-15 -3198 ((-3 (-2 (|:| -1993 |#2|) (|:| -2002 |#2|)) "failed") |#2|)) (-15 -3493 ((-588 |#2|) |#2|)))
+((-3259 (((-3 (-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) "failed") |#2| |#2|) 32)))
+(((-1137 |#1| |#2|) (-10 -7 (-15 -3259 ((-3 (-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) "failed") |#2| |#2|))) (-514) (-1142 |#1|)) (T -1137))
+((-3259 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-514)) (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-1137 *4 *3)) (-4 *3 (-1142 *4)))))
+(-10 -7 (-15 -3259 ((-3 (-2 (|:| -3450 |#2|) (|:| -4002 |#2|)) "failed") |#2| |#2|)))
+((-1507 ((|#2| |#2| |#2|) 19)) (-3998 ((|#2| |#2| |#2|) 30)) (-1283 ((|#2| |#2| |#2| (-708) (-708)) 36)))
+(((-1138 |#1| |#2|) (-10 -7 (-15 -1507 (|#2| |#2| |#2|)) (-15 -3998 (|#2| |#2| |#2|)) (-15 -1283 (|#2| |#2| |#2| (-708) (-708)))) (-971) (-1142 |#1|)) (T -1138))
+((-1283 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-708)) (-4 *4 (-971)) (-5 *1 (-1138 *4 *2)) (-4 *2 (-1142 *4)))) (-3998 (*1 *2 *2 *2) (-12 (-4 *3 (-971)) (-5 *1 (-1138 *3 *2)) (-4 *2 (-1142 *3)))) (-1507 (*1 *2 *2 *2) (-12 (-4 *3 (-971)) (-5 *1 (-1138 *3 *2)) (-4 *2 (-1142 *3)))))
+(-10 -7 (-15 -1507 (|#2| |#2| |#2|)) (-15 -3998 (|#2| |#2| |#2|)) (-15 -1283 (|#2| |#2| |#2| (-708) (-708))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-1428 (((-1166 |#2|) $ (-708)) NIL)) (-3533 (((-588 (-999)) $) NIL)) (-2264 (($ (-1081 |#2|)) NIL)) (-1264 (((-1081 $) $ (-999)) NIL) (((-1081 |#2|) $) NIL)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#2| (-514)))) (-2298 (($ $) NIL (|has| |#2| (-514)))) (-3007 (((-108) $) NIL (|has| |#2| (-514)))) (-3358 (((-708) $) NIL) (((-708) $ (-588 (-999))) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3485 (($ $ $) NIL (|has| |#2| (-514)))) (-3543 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2961 (($ $) NIL (|has| |#2| (-426)))) (-3133 (((-393 $) $) NIL (|has| |#2| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2805 (((-108) $ $) NIL (|has| |#2| (-338)))) (-1633 (($ $ (-708)) NIL)) (-2165 (($ $ (-708)) NIL)) (-2458 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-426)))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#2| "failed") $) NIL) (((-3 (-382 (-522)) "failed") $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) NIL (|has| |#2| (-962 (-522)))) (((-3 (-999) "failed") $) NIL)) (-1478 ((|#2| $) NIL) (((-382 (-522)) $) NIL (|has| |#2| (-962 (-382 (-522))))) (((-522) $) NIL (|has| |#2| (-962 (-522)))) (((-999) $) NIL)) (-2908 (($ $ $ (-999)) NIL (|has| |#2| (-157))) ((|#2| $ $) NIL (|has| |#2| (-157)))) (-2333 (($ $ $) NIL (|has| |#2| (-338)))) (-3241 (($ $) NIL)) (-1226 (((-628 (-522)) (-628 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) NIL (|has| |#2| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#2|)) (|:| |vec| (-1166 |#2|))) (-628 $) (-1166 $)) NIL) (((-628 |#2|) (-628 $)) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2303 (($ $ $) NIL (|has| |#2| (-338)))) (-2659 (($ $ $) NIL)) (-2830 (($ $ $) NIL (|has| |#2| (-514)))) (-3370 (((-2 (|:| -3112 |#2|) (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#2| (-514)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#2| (-338)))) (-2883 (($ $) NIL (|has| |#2| (-426))) (($ $ (-999)) NIL (|has| |#2| (-426)))) (-3232 (((-588 $) $) NIL)) (-2725 (((-108) $) NIL (|has| |#2| (-838)))) (-3792 (($ $ |#2| (-708) $) NIL)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) NIL (-12 (|has| (-999) (-815 (-354))) (|has| |#2| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) NIL (-12 (|has| (-999) (-815 (-522))) (|has| |#2| (-815 (-522)))))) (-3872 (((-708) $ $) NIL (|has| |#2| (-514)))) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-4208 (((-3 $ "failed") $) NIL (|has| |#2| (-1061)))) (-3520 (($ (-1081 |#2|) (-999)) NIL) (($ (-1081 $) (-999)) NIL)) (-2895 (($ $ (-708)) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#2| (-338)))) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-3500 (($ |#2| (-708)) 17) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ (-999)) NIL) (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL)) (-3564 (((-708) $) NIL) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-1308 (($ $ $) NIL (|has| |#2| (-784)))) (-2524 (($ $ $) NIL (|has| |#2| (-784)))) (-1723 (($ (-1 (-708) (-708)) $) NIL)) (-3810 (($ (-1 |#2| |#2|) $) NIL)) (-4178 (((-1081 |#2|) $) NIL)) (-3155 (((-3 (-999) "failed") $) NIL)) (-3216 (($ $) NIL)) (-3224 ((|#2| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-2311 (((-1068) $) NIL)) (-2927 (((-2 (|:| -3450 $) (|:| -4002 $)) $ (-708)) NIL)) (-2760 (((-3 (-588 $) "failed") $) NIL)) (-1919 (((-3 (-588 $) "failed") $) NIL)) (-2024 (((-3 (-2 (|:| |var| (-999)) (|:| -3858 (-708))) "failed") $) NIL)) (-2611 (($ $) NIL (|has| |#2| (-37 (-382 (-522)))))) (-3937 (($) NIL (|has| |#2| (-1061)) CONST)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) NIL)) (-3207 ((|#2| $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#2| (-426)))) (-2308 (($ (-588 $)) NIL (|has| |#2| (-426))) (($ $ $) NIL (|has| |#2| (-426)))) (-1953 (($ $ (-708) |#2| $) NIL)) (-4022 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) NIL (|has| |#2| (-838)))) (-2006 (((-393 $) $) NIL (|has| |#2| (-838)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#2| (-338)))) (-2276 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-514))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#2| (-338)))) (-2330 (($ $ (-588 (-270 $))) NIL) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-999) |#2|) NIL) (($ $ (-588 (-999)) (-588 |#2|)) NIL) (($ $ (-999) $) NIL) (($ $ (-588 (-999)) (-588 $)) NIL)) (-4031 (((-708) $) NIL (|has| |#2| (-338)))) (-2683 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-382 $) (-382 $) (-382 $)) NIL (|has| |#2| (-514))) ((|#2| (-382 $) |#2|) NIL (|has| |#2| (-338))) (((-382 $) $ (-382 $)) NIL (|has| |#2| (-514)))) (-2877 (((-3 $ "failed") $ (-708)) NIL)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#2| (-338)))) (-1615 (($ $ (-999)) NIL (|has| |#2| (-157))) ((|#2| $) NIL (|has| |#2| (-157)))) (-2731 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-2487 (((-708) $) NIL) (((-708) $ (-999)) NIL) (((-588 (-708)) $ (-588 (-999))) NIL)) (-3873 (((-821 (-354)) $) NIL (-12 (|has| (-999) (-563 (-821 (-354)))) (|has| |#2| (-563 (-821 (-354)))))) (((-821 (-522)) $) NIL (-12 (|has| (-999) (-563 (-821 (-522)))) (|has| |#2| (-563 (-821 (-522)))))) (((-498) $) NIL (-12 (|has| (-999) (-563 (-498))) (|has| |#2| (-563 (-498)))))) (-2988 ((|#2| $) NIL (|has| |#2| (-426))) (($ $ (-999)) NIL (|has| |#2| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) NIL (-12 (|has| $ (-133)) (|has| |#2| (-838))))) (-3884 (((-3 $ "failed") $ $) NIL (|has| |#2| (-514))) (((-3 (-382 $) "failed") (-382 $) $) NIL (|has| |#2| (-514)))) (-2217 (((-792) $) 13) (($ (-522)) NIL) (($ |#2|) NIL) (($ (-999)) NIL) (($ (-1162 |#1|)) 19) (($ (-382 (-522))) NIL (-3844 (|has| |#2| (-37 (-382 (-522)))) (|has| |#2| (-962 (-382 (-522)))))) (($ $) NIL (|has| |#2| (-514)))) (-2180 (((-588 |#2|) $) NIL)) (-1643 ((|#2| $ (-708)) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-3040 (((-3 $ "failed") $) NIL (-3844 (-12 (|has| $ (-133)) (|has| |#2| (-838))) (|has| |#2| (-133))))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| |#2| (-157)))) (-1407 (((-108) $ $) NIL (|has| |#2| (-514)))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3709 (($) 14 T CONST)) (-2252 (($ $ (-999)) NIL) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) NIL) (($ $ (-1085)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1085) (-708)) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) NIL (|has| |#2| (-829 (-1085)))) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1623 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1562 (((-108) $ $) NIL)) (-1609 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#2| (-784)))) (-1682 (($ $ |#2|) NIL (|has| |#2| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-382 (-522))) NIL (|has| |#2| (-37 (-382 (-522))))) (($ (-382 (-522)) $) NIL (|has| |#2| (-37 (-382 (-522))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-1139 |#1| |#2|) (-13 (-1142 |#2|) (-10 -8 (-15 -2217 ($ (-1162 |#1|))) (-15 -1953 ($ $ (-708) |#2| $)))) (-1085) (-971)) (T -1139))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1162 *3)) (-14 *3 (-1085)) (-5 *1 (-1139 *3 *4)) (-4 *4 (-971)))) (-1953 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1139 *4 *3)) (-14 *4 (-1085)) (-4 *3 (-971)))))
+(-13 (-1142 |#2|) (-10 -8 (-15 -2217 ($ (-1162 |#1|))) (-15 -1953 ($ $ (-708) |#2| $))))
+((-3810 ((|#4| (-1 |#3| |#1|) |#2|) 23)))
+(((-1140 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3810 (|#4| (-1 |#3| |#1|) |#2|))) (-971) (-1142 |#1|) (-971) (-1142 |#3|)) (T -1140))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-4 *2 (-1142 *6)) (-5 *1 (-1140 *5 *4 *6 *2)) (-4 *4 (-1142 *5)))))
+(-10 -7 (-15 -3810 (|#4| (-1 |#3| |#1|) |#2|)))
+((-1428 (((-1166 |#2|) $ (-708)) 113)) (-3533 (((-588 (-999)) $) 15)) (-2264 (($ (-1081 |#2|)) 66)) (-3358 (((-708) $) NIL) (((-708) $ (-588 (-999))) 18)) (-3543 (((-393 (-1081 $)) (-1081 $)) 184)) (-2961 (($ $) 174)) (-3133 (((-393 $) $) 172)) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 81)) (-1633 (($ $ (-708)) 70)) (-2165 (($ $ (-708)) 72)) (-2458 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 129)) (-3700 (((-3 |#2| "failed") $) 116) (((-3 (-382 (-522)) "failed") $) NIL) (((-3 (-522) "failed") $) NIL) (((-3 (-999) "failed") $) NIL)) (-1478 ((|#2| $) 114) (((-382 (-522)) $) NIL) (((-522) $) NIL) (((-999) $) NIL)) (-2830 (($ $ $) 150)) (-3370 (((-2 (|:| -3112 |#2|) (|:| -3450 $) (|:| -4002 $)) $ $) 152)) (-3872 (((-708) $ $) 169)) (-4208 (((-3 $ "failed") $) 122)) (-3500 (($ |#2| (-708)) NIL) (($ $ (-999) (-708)) 46) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-3564 (((-708) $) NIL) (((-708) $ (-999)) 41) (((-588 (-708)) $ (-588 (-999))) 42)) (-4178 (((-1081 |#2|) $) 58)) (-3155 (((-3 (-999) "failed") $) 39)) (-2927 (((-2 (|:| -3450 $) (|:| -4002 $)) $ (-708)) 69)) (-2611 (($ $) 195)) (-3937 (($) 118)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 181)) (-4022 (((-393 (-1081 $)) (-1081 $)) 87)) (-2313 (((-393 (-1081 $)) (-1081 $)) 85)) (-2006 (((-393 $) $) 105)) (-2330 (($ $ (-588 (-270 $))) 38) (($ $ (-270 $)) NIL) (($ $ $ $) NIL) (($ $ (-588 $) (-588 $)) NIL) (($ $ (-999) |#2|) 31) (($ $ (-588 (-999)) (-588 |#2|)) 28) (($ $ (-999) $) 25) (($ $ (-588 (-999)) (-588 $)) 23)) (-4031 (((-708) $) 187)) (-2683 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-382 $) (-382 $) (-382 $)) 146) ((|#2| (-382 $) |#2|) 186) (((-382 $) $ (-382 $)) 168)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 190)) (-2731 (($ $ (-999)) 139) (($ $ (-588 (-999))) NIL) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL) (($ $ (-708)) NIL) (($ $) 137) (($ $ (-1085)) NIL) (($ $ (-588 (-1085))) NIL) (($ $ (-1085) (-708)) NIL) (($ $ (-588 (-1085)) (-588 (-708))) NIL) (($ $ (-1 |#2| |#2|) (-708)) NIL) (($ $ (-1 |#2| |#2|)) 136) (($ $ (-1 |#2| |#2|) $) 133)) (-2487 (((-708) $) NIL) (((-708) $ (-999)) 16) (((-588 (-708)) $ (-588 (-999))) 20)) (-2988 ((|#2| $) NIL) (($ $ (-999)) 124)) (-3884 (((-3 $ "failed") $ $) 160) (((-3 (-382 $) "failed") (-382 $) $) 156)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#2|) NIL) (($ (-999)) 50) (($ (-382 (-522))) NIL) (($ $) NIL)))
+(((-1141 |#1| |#2|) (-10 -8 (-15 -2217 (|#1| |#1|)) (-15 -1789 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))) (-15 -3133 ((-393 |#1|) |#1|)) (-15 -2961 (|#1| |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -3937 (|#1|)) (-15 -4208 ((-3 |#1| "failed") |#1|)) (-15 -2683 ((-382 |#1|) |#1| (-382 |#1|))) (-15 -4031 ((-708) |#1|)) (-15 -4164 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -2611 (|#1| |#1|)) (-15 -2683 (|#2| (-382 |#1|) |#2|)) (-15 -2458 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3370 ((-2 (|:| -3112 |#2|) (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -2830 (|#1| |#1| |#1|)) (-15 -3884 ((-3 (-382 |#1|) "failed") (-382 |#1|) |#1|)) (-15 -3884 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3872 ((-708) |#1| |#1|)) (-15 -2683 ((-382 |#1|) (-382 |#1|) (-382 |#1|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -2165 (|#1| |#1| (-708))) (-15 -1633 (|#1| |#1| (-708))) (-15 -2927 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| (-708))) (-15 -2264 (|#1| (-1081 |#2|))) (-15 -4178 ((-1081 |#2|) |#1|)) (-15 -1428 ((-1166 |#2|) |#1| (-708))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2683 (|#1| |#1| |#1|)) (-15 -2683 (|#2| |#1| |#2|)) (-15 -2006 ((-393 |#1|) |#1|)) (-15 -3543 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -2313 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -4022 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -2800 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -2988 (|#1| |#1| (-999))) (-15 -3533 ((-588 (-999)) |#1|)) (-15 -3358 ((-708) |#1| (-588 (-999)))) (-15 -3358 ((-708) |#1|)) (-15 -3500 (|#1| |#1| (-588 (-999)) (-588 (-708)))) (-15 -3500 (|#1| |#1| (-999) (-708))) (-15 -3564 ((-588 (-708)) |#1| (-588 (-999)))) (-15 -3564 ((-708) |#1| (-999))) (-15 -3155 ((-3 (-999) "failed") |#1|)) (-15 -2487 ((-588 (-708)) |#1| (-588 (-999)))) (-15 -2487 ((-708) |#1| (-999))) (-15 -1478 ((-999) |#1|)) (-15 -3700 ((-3 (-999) "failed") |#1|)) (-15 -2217 (|#1| (-999))) (-15 -2330 (|#1| |#1| (-588 (-999)) (-588 |#1|))) (-15 -2330 (|#1| |#1| (-999) |#1|)) (-15 -2330 (|#1| |#1| (-588 (-999)) (-588 |#2|))) (-15 -2330 (|#1| |#1| (-999) |#2|)) (-15 -2330 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#1| |#1|)) (-15 -2330 (|#1| |#1| (-270 |#1|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2487 ((-708) |#1|)) (-15 -3500 (|#1| |#2| (-708))) (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3564 ((-708) |#1|)) (-15 -2988 (|#2| |#1|)) (-15 -2731 (|#1| |#1| (-588 (-999)) (-588 (-708)))) (-15 -2731 (|#1| |#1| (-999) (-708))) (-15 -2731 (|#1| |#1| (-588 (-999)))) (-15 -2731 (|#1| |#1| (-999))) (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|))) (-1142 |#2|) (-971)) (T -1141))
+NIL
+(-10 -8 (-15 -2217 (|#1| |#1|)) (-15 -1789 ((-1081 |#1|) (-1081 |#1|) (-1081 |#1|))) (-15 -3133 ((-393 |#1|) |#1|)) (-15 -2961 (|#1| |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -3937 (|#1|)) (-15 -4208 ((-3 |#1| "failed") |#1|)) (-15 -2683 ((-382 |#1|) |#1| (-382 |#1|))) (-15 -4031 ((-708) |#1|)) (-15 -4164 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -2611 (|#1| |#1|)) (-15 -2683 (|#2| (-382 |#1|) |#2|)) (-15 -2458 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3370 ((-2 (|:| -3112 |#2|) (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| |#1|)) (-15 -2830 (|#1| |#1| |#1|)) (-15 -3884 ((-3 (-382 |#1|) "failed") (-382 |#1|) |#1|)) (-15 -3884 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3872 ((-708) |#1| |#1|)) (-15 -2683 ((-382 |#1|) (-382 |#1|) (-382 |#1|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -2165 (|#1| |#1| (-708))) (-15 -1633 (|#1| |#1| (-708))) (-15 -2927 ((-2 (|:| -3450 |#1|) (|:| -4002 |#1|)) |#1| (-708))) (-15 -2264 (|#1| (-1081 |#2|))) (-15 -4178 ((-1081 |#2|) |#1|)) (-15 -1428 ((-1166 |#2|) |#1| (-708))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2731 (|#1| |#1| (-1 |#2| |#2|) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)) (-588 (-708)))) (-15 -2731 (|#1| |#1| (-1085) (-708))) (-15 -2731 (|#1| |#1| (-588 (-1085)))) (-15 -2731 (|#1| |#1| (-1085))) (-15 -2731 (|#1| |#1|)) (-15 -2731 (|#1| |#1| (-708))) (-15 -2683 (|#1| |#1| |#1|)) (-15 -2683 (|#2| |#1| |#2|)) (-15 -2006 ((-393 |#1|) |#1|)) (-15 -3543 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -2313 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -4022 ((-393 (-1081 |#1|)) (-1081 |#1|))) (-15 -2800 ((-3 (-588 (-1081 |#1|)) "failed") (-588 (-1081 |#1|)) (-1081 |#1|))) (-15 -2988 (|#1| |#1| (-999))) (-15 -3533 ((-588 (-999)) |#1|)) (-15 -3358 ((-708) |#1| (-588 (-999)))) (-15 -3358 ((-708) |#1|)) (-15 -3500 (|#1| |#1| (-588 (-999)) (-588 (-708)))) (-15 -3500 (|#1| |#1| (-999) (-708))) (-15 -3564 ((-588 (-708)) |#1| (-588 (-999)))) (-15 -3564 ((-708) |#1| (-999))) (-15 -3155 ((-3 (-999) "failed") |#1|)) (-15 -2487 ((-588 (-708)) |#1| (-588 (-999)))) (-15 -2487 ((-708) |#1| (-999))) (-15 -1478 ((-999) |#1|)) (-15 -3700 ((-3 (-999) "failed") |#1|)) (-15 -2217 (|#1| (-999))) (-15 -2330 (|#1| |#1| (-588 (-999)) (-588 |#1|))) (-15 -2330 (|#1| |#1| (-999) |#1|)) (-15 -2330 (|#1| |#1| (-588 (-999)) (-588 |#2|))) (-15 -2330 (|#1| |#1| (-999) |#2|)) (-15 -2330 (|#1| |#1| (-588 |#1|) (-588 |#1|))) (-15 -2330 (|#1| |#1| |#1| |#1|)) (-15 -2330 (|#1| |#1| (-270 |#1|))) (-15 -2330 (|#1| |#1| (-588 (-270 |#1|)))) (-15 -2487 ((-708) |#1|)) (-15 -3500 (|#1| |#2| (-708))) (-15 -1478 ((-522) |#1|)) (-15 -3700 ((-3 (-522) "failed") |#1|)) (-15 -1478 ((-382 (-522)) |#1|)) (-15 -3700 ((-3 (-382 (-522)) "failed") |#1|)) (-15 -2217 (|#1| |#2|)) (-15 -3700 ((-3 |#2| "failed") |#1|)) (-15 -1478 (|#2| |#1|)) (-15 -3564 ((-708) |#1|)) (-15 -2988 (|#2| |#1|)) (-15 -2731 (|#1| |#1| (-588 (-999)) (-588 (-708)))) (-15 -2731 (|#1| |#1| (-999) (-708))) (-15 -2731 (|#1| |#1| (-588 (-999)))) (-15 -2731 (|#1| |#1| (-999))) (-15 -2217 (|#1| (-522))) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-1428 (((-1166 |#1|) $ (-708)) 238)) (-3533 (((-588 (-999)) $) 110)) (-2264 (($ (-1081 |#1|)) 236)) (-1264 (((-1081 $) $ (-999)) 125) (((-1081 |#1|) $) 124)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 87 (|has| |#1| (-514)))) (-2298 (($ $) 88 (|has| |#1| (-514)))) (-3007 (((-108) $) 90 (|has| |#1| (-514)))) (-3358 (((-708) $) 112) (((-708) $ (-588 (-999))) 111)) (-2265 (((-3 $ "failed") $ $) 19)) (-3485 (($ $ $) 223 (|has| |#1| (-514)))) (-3543 (((-393 (-1081 $)) (-1081 $)) 100 (|has| |#1| (-838)))) (-2961 (($ $) 98 (|has| |#1| (-426)))) (-3133 (((-393 $) $) 97 (|has| |#1| (-426)))) (-2800 (((-3 (-588 (-1081 $)) "failed") (-588 (-1081 $)) (-1081 $)) 103 (|has| |#1| (-838)))) (-2805 (((-108) $ $) 208 (|has| |#1| (-338)))) (-1633 (($ $ (-708)) 231)) (-2165 (($ $ (-708)) 230)) (-2458 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 218 (|has| |#1| (-426)))) (-3367 (($) 17 T CONST)) (-3700 (((-3 |#1| "failed") $) 164) (((-3 (-382 (-522)) "failed") $) 162 (|has| |#1| (-962 (-382 (-522))))) (((-3 (-522) "failed") $) 160 (|has| |#1| (-962 (-522)))) (((-3 (-999) "failed") $) 136)) (-1478 ((|#1| $) 165) (((-382 (-522)) $) 161 (|has| |#1| (-962 (-382 (-522))))) (((-522) $) 159 (|has| |#1| (-962 (-522)))) (((-999) $) 135)) (-2908 (($ $ $ (-999)) 108 (|has| |#1| (-157))) ((|#1| $ $) 226 (|has| |#1| (-157)))) (-2333 (($ $ $) 212 (|has| |#1| (-338)))) (-3241 (($ $) 154)) (-1226 (((-628 (-522)) (-628 $)) 134 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 (-522))) (|:| |vec| (-1166 (-522)))) (-628 $) (-1166 $)) 133 (|has| |#1| (-584 (-522)))) (((-2 (|:| -2149 (-628 |#1|)) (|:| |vec| (-1166 |#1|))) (-628 $) (-1166 $)) 132) (((-628 |#1|) (-628 $)) 131)) (-3920 (((-3 $ "failed") $) 34)) (-2303 (($ $ $) 211 (|has| |#1| (-338)))) (-2659 (($ $ $) 229)) (-2830 (($ $ $) 220 (|has| |#1| (-514)))) (-3370 (((-2 (|:| -3112 |#1|) (|:| -3450 $) (|:| -4002 $)) $ $) 219 (|has| |#1| (-514)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 206 (|has| |#1| (-338)))) (-2883 (($ $) 176 (|has| |#1| (-426))) (($ $ (-999)) 105 (|has| |#1| (-426)))) (-3232 (((-588 $) $) 109)) (-2725 (((-108) $) 96 (|has| |#1| (-838)))) (-3792 (($ $ |#1| (-708) $) 172)) (-3738 (((-818 (-354) $) $ (-821 (-354)) (-818 (-354) $)) 84 (-12 (|has| (-999) (-815 (-354))) (|has| |#1| (-815 (-354))))) (((-818 (-522) $) $ (-821 (-522)) (-818 (-522) $)) 83 (-12 (|has| (-999) (-815 (-522))) (|has| |#1| (-815 (-522)))))) (-3872 (((-708) $ $) 224 (|has| |#1| (-514)))) (-2859 (((-108) $) 31)) (-1391 (((-708) $) 169)) (-4208 (((-3 $ "failed") $) 204 (|has| |#1| (-1061)))) (-3520 (($ (-1081 |#1|) (-999)) 117) (($ (-1081 $) (-999)) 116)) (-2895 (($ $ (-708)) 235)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 215 (|has| |#1| (-338)))) (-3038 (((-588 $) $) 126)) (-1374 (((-108) $) 152)) (-3500 (($ |#1| (-708)) 153) (($ $ (-999) (-708)) 119) (($ $ (-588 (-999)) (-588 (-708))) 118)) (-3058 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $ (-999)) 120) (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 233)) (-3564 (((-708) $) 170) (((-708) $ (-999)) 122) (((-588 (-708)) $ (-588 (-999))) 121)) (-1308 (($ $ $) 79 (|has| |#1| (-784)))) (-2524 (($ $ $) 78 (|has| |#1| (-784)))) (-1723 (($ (-1 (-708) (-708)) $) 171)) (-3810 (($ (-1 |#1| |#1|) $) 151)) (-4178 (((-1081 |#1|) $) 237)) (-3155 (((-3 (-999) "failed") $) 123)) (-3216 (($ $) 149)) (-3224 ((|#1| $) 148)) (-2267 (($ (-588 $)) 94 (|has| |#1| (-426))) (($ $ $) 93 (|has| |#1| (-426)))) (-2311 (((-1068) $) 9)) (-2927 (((-2 (|:| -3450 $) (|:| -4002 $)) $ (-708)) 232)) (-2760 (((-3 (-588 $) "failed") $) 114)) (-1919 (((-3 (-588 $) "failed") $) 115)) (-2024 (((-3 (-2 (|:| |var| (-999)) (|:| -3858 (-708))) "failed") $) 113)) (-2611 (($ $) 216 (|has| |#1| (-37 (-382 (-522)))))) (-3937 (($) 203 (|has| |#1| (-1061)) CONST)) (-4174 (((-1032) $) 10)) (-3199 (((-108) $) 166)) (-3207 ((|#1| $) 167)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 95 (|has| |#1| (-426)))) (-2308 (($ (-588 $)) 92 (|has| |#1| (-426))) (($ $ $) 91 (|has| |#1| (-426)))) (-4022 (((-393 (-1081 $)) (-1081 $)) 102 (|has| |#1| (-838)))) (-2313 (((-393 (-1081 $)) (-1081 $)) 101 (|has| |#1| (-838)))) (-2006 (((-393 $) $) 99 (|has| |#1| (-838)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 214 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 213 (|has| |#1| (-338)))) (-2276 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-514))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 207 (|has| |#1| (-338)))) (-2330 (($ $ (-588 (-270 $))) 145) (($ $ (-270 $)) 144) (($ $ $ $) 143) (($ $ (-588 $) (-588 $)) 142) (($ $ (-999) |#1|) 141) (($ $ (-588 (-999)) (-588 |#1|)) 140) (($ $ (-999) $) 139) (($ $ (-588 (-999)) (-588 $)) 138)) (-4031 (((-708) $) 209 (|has| |#1| (-338)))) (-2683 ((|#1| $ |#1|) 256) (($ $ $) 255) (((-382 $) (-382 $) (-382 $)) 225 (|has| |#1| (-514))) ((|#1| (-382 $) |#1|) 217 (|has| |#1| (-338))) (((-382 $) $ (-382 $)) 205 (|has| |#1| (-514)))) (-2877 (((-3 $ "failed") $ (-708)) 234)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 210 (|has| |#1| (-338)))) (-1615 (($ $ (-999)) 107 (|has| |#1| (-157))) ((|#1| $) 227 (|has| |#1| (-157)))) (-2731 (($ $ (-999)) 42) (($ $ (-588 (-999))) 41) (($ $ (-999) (-708)) 40) (($ $ (-588 (-999)) (-588 (-708))) 39) (($ $ (-708)) 253) (($ $) 251) (($ $ (-1085)) 250 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 249 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 248 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 247 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 240) (($ $ (-1 |#1| |#1|)) 239) (($ $ (-1 |#1| |#1|) $) 228)) (-2487 (((-708) $) 150) (((-708) $ (-999)) 130) (((-588 (-708)) $ (-588 (-999))) 129)) (-3873 (((-821 (-354)) $) 82 (-12 (|has| (-999) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354)))))) (((-821 (-522)) $) 81 (-12 (|has| (-999) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522)))))) (((-498) $) 80 (-12 (|has| (-999) (-563 (-498))) (|has| |#1| (-563 (-498)))))) (-2988 ((|#1| $) 175 (|has| |#1| (-426))) (($ $ (-999)) 106 (|has| |#1| (-426)))) (-2583 (((-3 (-1166 $) "failed") (-628 $)) 104 (-4079 (|has| $ (-133)) (|has| |#1| (-838))))) (-3884 (((-3 $ "failed") $ $) 222 (|has| |#1| (-514))) (((-3 (-382 $) "failed") (-382 $) $) 221 (|has| |#1| (-514)))) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 163) (($ (-999)) 137) (($ (-382 (-522))) 72 (-3844 (|has| |#1| (-962 (-382 (-522)))) (|has| |#1| (-37 (-382 (-522)))))) (($ $) 85 (|has| |#1| (-514)))) (-2180 (((-588 |#1|) $) 168)) (-1643 ((|#1| $ (-708)) 155) (($ $ (-999) (-708)) 128) (($ $ (-588 (-999)) (-588 (-708))) 127)) (-3040 (((-3 $ "failed") $) 73 (-3844 (-4079 (|has| $ (-133)) (|has| |#1| (-838))) (|has| |#1| (-133))))) (-2742 (((-708)) 29)) (-1225 (($ $ $ (-708)) 173 (|has| |#1| (-157)))) (-1407 (((-108) $ $) 89 (|has| |#1| (-514)))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-999)) 38) (($ $ (-588 (-999))) 37) (($ $ (-999) (-708)) 36) (($ $ (-588 (-999)) (-588 (-708))) 35) (($ $ (-708)) 254) (($ $) 252) (($ $ (-1085)) 246 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085))) 245 (|has| |#1| (-829 (-1085)))) (($ $ (-1085) (-708)) 244 (|has| |#1| (-829 (-1085)))) (($ $ (-588 (-1085)) (-588 (-708))) 243 (|has| |#1| (-829 (-1085)))) (($ $ (-1 |#1| |#1|) (-708)) 242) (($ $ (-1 |#1| |#1|)) 241)) (-1623 (((-108) $ $) 76 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 75 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 6)) (-1609 (((-108) $ $) 77 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 74 (|has| |#1| (-784)))) (-1682 (($ $ |#1|) 156 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 158 (|has| |#1| (-37 (-382 (-522))))) (($ (-382 (-522)) $) 157 (|has| |#1| (-37 (-382 (-522))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
(((-1142 |#1|) (-1197) (-971)) (T -1142))
-((-3960 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-1142 *4)) (-4 *4 (-971)) (-5 *2 (-1166 *4)))) (-3624 (*1 *2 *1) (-12 (-4 *1 (-1142 *3)) (-4 *3 (-971)) (-5 *2 (-1081 *3)))) (-3793 (*1 *1 *2) (-12 (-5 *2 (-1081 *3)) (-4 *3 (-971)) (-4 *1 (-1142 *3)))) (-2073 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))) (-4158 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))) (-2478 (*1 *2 *1 *1) (-12 (-4 *3 (-971)) (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-1142 *3)))) (-3114 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *4 (-971)) (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-1142 *4)))) (-3242 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))) (-2272 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))) (-2052 (*1 *1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)))) (-2157 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))) (-2769 (*1 *2 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-157)))) (-1950 (*1 *2 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-157)))) (-2545 (*1 *2 *2 *2) (-12 (-5 *2 (-382 *1)) (-4 *1 (-1142 *3)) (-4 *3 (-971)) (-4 *3 (-514)))) (-3714 (*1 *2 *1 *1) (-12 (-4 *1 (-1142 *3)) (-4 *3 (-971)) (-4 *3 (-514)) (-5 *2 (-708)))) (-3984 (*1 *1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-514)))) (-3097 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-514)))) (-3097 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-382 *1)) (-4 *1 (-1142 *3)) (-4 *3 (-971)) (-4 *3 (-514)))) (-4152 (*1 *1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-514)))) (-1541 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-5 *2 (-2 (|:| -2977 *3) (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-1142 *3)))) (-1441 (*1 *2 *1 *1) (-12 (-4 *3 (-426)) (-4 *3 (-971)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1142 *3)))) (-2545 (*1 *2 *3 *2) (-12 (-5 *3 (-382 *1)) (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-1858 (*1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522)))))))
-(-13 (-878 |t#1| (-708) (-999)) (-262 |t#1| |t#1|) (-262 $ $) (-210) (-208 |t#1|) (-10 -8 (-15 -3960 ((-1166 |t#1|) $ (-708))) (-15 -3624 ((-1081 |t#1|) $)) (-15 -3793 ($ (-1081 |t#1|))) (-15 -2073 ($ $ (-708))) (-15 -4158 ((-3 $ "failed") $ (-708))) (-15 -2478 ((-2 (|:| -1353 $) (|:| -3421 $)) $ $)) (-15 -3114 ((-2 (|:| -1353 $) (|:| -3421 $)) $ (-708))) (-15 -3242 ($ $ (-708))) (-15 -2272 ($ $ (-708))) (-15 -2052 ($ $ $)) (-15 -2157 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1061)) (-6 (-1061)) |%noBranch|) (IF (|has| |t#1| (-157)) (PROGN (-15 -2769 (|t#1| $)) (-15 -1950 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-514)) (PROGN (-6 (-262 (-382 $) (-382 $))) (-15 -2545 ((-382 $) (-382 $) (-382 $))) (-15 -3714 ((-708) $ $)) (-15 -3984 ($ $ $)) (-15 -3097 ((-3 $ "failed") $ $)) (-15 -3097 ((-3 (-382 $) "failed") (-382 $) $)) (-15 -4152 ($ $ $)) (-15 -1541 ((-2 (|:| -2977 |t#1|) (|:| -1353 $) (|:| -3421 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-426)) (-15 -1441 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-338)) (PROGN (-6 (-283)) (-6 -4234) (-15 -2545 (|t#1| (-382 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-37 (-382 (-522)))) (-15 -1858 ($ $)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-708)) . T) ((-25) . T) ((-37 #1=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338))) ((-97) . T) ((-107 #1# #1#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-563 (-498)) -12 (|has| (-999) (-563 (-498))) (|has| |#1| (-563 (-498)))) ((-563 (-821 (-354))) -12 (|has| (-999) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354))))) ((-563 (-821 (-522))) -12 (|has| (-999) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522))))) ((-208 |#1|) . T) ((-210) . T) ((-262 (-382 $) (-382 $)) |has| |#1| (-514)) ((-262 |#1| |#1|) . T) ((-262 $ $) . T) ((-266) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338))) ((-283) |has| |#1| (-338)) ((-285 $) . T) ((-301 |#1| #0#) . T) ((-352 |#1|) . T) ((-386 |#1|) . T) ((-426) -3708 (|has| |#1| (-838)) (|has| |#1| (-426)) (|has| |#1| (-338))) ((-483 #2=(-999) |#1|) . T) ((-483 #2# $) . T) ((-483 $ $) . T) ((-514) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338))) ((-590 #1#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #1#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338))) ((-664) . T) ((-784) |has| |#1| (-784)) ((-829 #2#) . T) ((-829 (-1085)) |has| |#1| (-829 (-1085))) ((-815 (-354)) -12 (|has| (-999) (-815 (-354))) (|has| |#1| (-815 (-354)))) ((-815 (-522)) -12 (|has| (-999) (-815 (-522))) (|has| |#1| (-815 (-522)))) ((-878 |#1| #0# #2#) . T) ((-838) |has| |#1| (-838)) ((-849) |has| |#1| (-338)) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 #2#) . T) ((-962 |#1|) . T) ((-977 #1#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) |has| |#1| (-1061)) ((-1124) |has| |#1| (-838)))
-((-4090 (((-588 (-999)) $) 28)) (-3156 (($ $) 25)) (-4049 (($ |#2| |#3|) NIL) (($ $ (-999) |#3|) 22) (($ $ (-588 (-999)) (-588 |#3|)) 20)) (-3128 (($ $) 14)) (-3138 ((|#2| $) 12)) (-2793 ((|#3| $) 10)))
-(((-1143 |#1| |#2| |#3|) (-10 -8 (-15 -4090 ((-588 (-999)) |#1|)) (-15 -4049 (|#1| |#1| (-588 (-999)) (-588 |#3|))) (-15 -4049 (|#1| |#1| (-999) |#3|)) (-15 -3156 (|#1| |#1|)) (-15 -4049 (|#1| |#2| |#3|)) (-15 -2793 (|#3| |#1|)) (-15 -3128 (|#1| |#1|)) (-15 -3138 (|#2| |#1|))) (-1144 |#2| |#3|) (-971) (-729)) (T -1143))
-NIL
-(-10 -8 (-15 -4090 ((-588 (-999)) |#1|)) (-15 -4049 (|#1| |#1| (-588 (-999)) (-588 |#3|))) (-15 -4049 (|#1| |#1| (-999) |#3|)) (-15 -3156 (|#1| |#1|)) (-15 -4049 (|#1| |#2| |#3|)) (-15 -2793 (|#3| |#1|)) (-15 -3128 (|#1| |#1|)) (-15 -3138 (|#2| |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4090 (((-588 (-999)) $) 74)) (-1611 (((-1085) $) 103)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2022 (($ $) 52 (|has| |#1| (-514)))) (-3739 (((-108) $) 54 (|has| |#1| (-514)))) (-2789 (($ $ |#2|) 98) (($ $ |#2| |#2|) 97)) (-2258 (((-1066 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 105)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-3156 (($ $) 60)) (-2682 (((-3 $ "failed") $) 34)) (-3390 (((-108) $) 73)) (-3714 ((|#2| $) 100) ((|#2| $ |#2|) 99)) (-2782 (((-108) $) 31)) (-2073 (($ $ (-850)) 101)) (-3340 (((-108) $) 62)) (-4049 (($ |#1| |#2|) 61) (($ $ (-999) |#2|) 76) (($ $ (-588 (-999)) (-588 |#2|)) 75)) (-1391 (($ (-1 |#1| |#1|) $) 63)) (-3128 (($ $) 65)) (-3138 ((|#1| $) 66)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-3719 (($ $ |#2|) 95)) (-2232 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-2289 (((-1066 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-2545 ((|#1| $ |#2|) 104) (($ $ $) 81 (|has| |#2| (-1026)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) 89 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1085) (-708)) 88 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-588 (-1085))) 87 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1085)) 86 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-708)) 84 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-2793 ((|#2| $) 64)) (-1522 (($ $) 72)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514))) (($ |#1|) 47 (|has| |#1| (-157)))) (-3243 ((|#1| $ |#2|) 59)) (-2143 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-1893 ((|#1| $) 102)) (-3958 (((-108) $ $) 53 (|has| |#1| (-514)))) (-3898 ((|#1| $ |#2|) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) 93 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1085) (-708)) 92 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-588 (-1085))) 91 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1085)) 90 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-708)) 85 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#1|) 58 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
+((-1428 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-1142 *4)) (-4 *4 (-971)) (-5 *2 (-1166 *4)))) (-4178 (*1 *2 *1) (-12 (-4 *1 (-1142 *3)) (-4 *3 (-971)) (-5 *2 (-1081 *3)))) (-2264 (*1 *1 *2) (-12 (-5 *2 (-1081 *3)) (-4 *3 (-971)) (-4 *1 (-1142 *3)))) (-2895 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))) (-2877 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))) (-3058 (*1 *2 *1 *1) (-12 (-4 *3 (-971)) (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-1142 *3)))) (-2927 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *4 (-971)) (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-1142 *4)))) (-1633 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))) (-2165 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))) (-2659 (*1 *1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)))) (-2731 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))) (-1615 (*1 *2 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-157)))) (-2908 (*1 *2 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-157)))) (-2683 (*1 *2 *2 *2) (-12 (-5 *2 (-382 *1)) (-4 *1 (-1142 *3)) (-4 *3 (-971)) (-4 *3 (-514)))) (-3872 (*1 *2 *1 *1) (-12 (-4 *1 (-1142 *3)) (-4 *3 (-971)) (-4 *3 (-514)) (-5 *2 (-708)))) (-3485 (*1 *1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-514)))) (-3884 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-514)))) (-3884 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-382 *1)) (-4 *1 (-1142 *3)) (-4 *3 (-971)) (-4 *3 (-514)))) (-2830 (*1 *1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-514)))) (-3370 (*1 *2 *1 *1) (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-5 *2 (-2 (|:| -3112 *3) (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-1142 *3)))) (-2458 (*1 *2 *1 *1) (-12 (-4 *3 (-426)) (-4 *3 (-971)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1142 *3)))) (-2683 (*1 *2 *3 *2) (-12 (-5 *3 (-382 *1)) (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-2611 (*1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522)))))))
+(-13 (-878 |t#1| (-708) (-999)) (-262 |t#1| |t#1|) (-262 $ $) (-210) (-208 |t#1|) (-10 -8 (-15 -1428 ((-1166 |t#1|) $ (-708))) (-15 -4178 ((-1081 |t#1|) $)) (-15 -2264 ($ (-1081 |t#1|))) (-15 -2895 ($ $ (-708))) (-15 -2877 ((-3 $ "failed") $ (-708))) (-15 -3058 ((-2 (|:| -3450 $) (|:| -4002 $)) $ $)) (-15 -2927 ((-2 (|:| -3450 $) (|:| -4002 $)) $ (-708))) (-15 -1633 ($ $ (-708))) (-15 -2165 ($ $ (-708))) (-15 -2659 ($ $ $)) (-15 -2731 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1061)) (-6 (-1061)) |%noBranch|) (IF (|has| |t#1| (-157)) (PROGN (-15 -1615 (|t#1| $)) (-15 -2908 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-514)) (PROGN (-6 (-262 (-382 $) (-382 $))) (-15 -2683 ((-382 $) (-382 $) (-382 $))) (-15 -3872 ((-708) $ $)) (-15 -3485 ($ $ $)) (-15 -3884 ((-3 $ "failed") $ $)) (-15 -3884 ((-3 (-382 $) "failed") (-382 $) $)) (-15 -2830 ($ $ $)) (-15 -3370 ((-2 (|:| -3112 |t#1|) (|:| -3450 $) (|:| -4002 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-426)) (-15 -2458 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-338)) (PROGN (-6 (-283)) (-6 -4234) (-15 -2683 (|t#1| (-382 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-37 (-382 (-522)))) (-15 -2611 ($ $)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-708)) . T) ((-25) . T) ((-37 #1=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338))) ((-97) . T) ((-107 #1# #1#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-563 (-498)) -12 (|has| (-999) (-563 (-498))) (|has| |#1| (-563 (-498)))) ((-563 (-821 (-354))) -12 (|has| (-999) (-563 (-821 (-354)))) (|has| |#1| (-563 (-821 (-354))))) ((-563 (-821 (-522))) -12 (|has| (-999) (-563 (-821 (-522)))) (|has| |#1| (-563 (-821 (-522))))) ((-208 |#1|) . T) ((-210) . T) ((-262 (-382 $) (-382 $)) |has| |#1| (-514)) ((-262 |#1| |#1|) . T) ((-262 $ $) . T) ((-266) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338))) ((-283) |has| |#1| (-338)) ((-285 $) . T) ((-301 |#1| #0#) . T) ((-352 |#1|) . T) ((-386 |#1|) . T) ((-426) -3844 (|has| |#1| (-838)) (|has| |#1| (-426)) (|has| |#1| (-338))) ((-483 #2=(-999) |#1|) . T) ((-483 #2# $) . T) ((-483 $ $) . T) ((-514) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338))) ((-590 #1#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-584 (-522)) |has| |#1| (-584 (-522))) ((-584 |#1|) . T) ((-655 #1#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338))) ((-664) . T) ((-784) |has| |#1| (-784)) ((-829 #2#) . T) ((-829 (-1085)) |has| |#1| (-829 (-1085))) ((-815 (-354)) -12 (|has| (-999) (-815 (-354))) (|has| |#1| (-815 (-354)))) ((-815 (-522)) -12 (|has| (-999) (-815 (-522))) (|has| |#1| (-815 (-522)))) ((-878 |#1| #0# #2#) . T) ((-838) |has| |#1| (-838)) ((-849) |has| |#1| (-338)) ((-962 (-382 (-522))) |has| |#1| (-962 (-382 (-522)))) ((-962 (-522)) |has| |#1| (-962 (-522))) ((-962 #2#) . T) ((-962 |#1|) . T) ((-977 #1#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-838)) (|has| |#1| (-514)) (|has| |#1| (-426)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1061) |has| |#1| (-1061)) ((-1124) |has| |#1| (-838)))
+((-3533 (((-588 (-999)) $) 28)) (-3241 (($ $) 25)) (-3500 (($ |#2| |#3|) NIL) (($ $ (-999) |#3|) 22) (($ $ (-588 (-999)) (-588 |#3|)) 20)) (-3216 (($ $) 14)) (-3224 ((|#2| $) 12)) (-2487 ((|#3| $) 10)))
+(((-1143 |#1| |#2| |#3|) (-10 -8 (-15 -3533 ((-588 (-999)) |#1|)) (-15 -3500 (|#1| |#1| (-588 (-999)) (-588 |#3|))) (-15 -3500 (|#1| |#1| (-999) |#3|)) (-15 -3241 (|#1| |#1|)) (-15 -3500 (|#1| |#2| |#3|)) (-15 -2487 (|#3| |#1|)) (-15 -3216 (|#1| |#1|)) (-15 -3224 (|#2| |#1|))) (-1144 |#2| |#3|) (-971) (-729)) (T -1143))
+NIL
+(-10 -8 (-15 -3533 ((-588 (-999)) |#1|)) (-15 -3500 (|#1| |#1| (-588 (-999)) (-588 |#3|))) (-15 -3500 (|#1| |#1| (-999) |#3|)) (-15 -3241 (|#1| |#1|)) (-15 -3500 (|#1| |#2| |#3|)) (-15 -2487 (|#3| |#1|)) (-15 -3216 (|#1| |#1|)) (-15 -3224 (|#2| |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3533 (((-588 (-999)) $) 74)) (-1660 (((-1085) $) 103)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2298 (($ $) 52 (|has| |#1| (-514)))) (-3007 (((-108) $) 54 (|has| |#1| (-514)))) (-3495 (($ $ |#2|) 98) (($ $ |#2| |#2|) 97)) (-3024 (((-1066 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 105)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3241 (($ $) 60)) (-3920 (((-3 $ "failed") $) 34)) (-3672 (((-108) $) 73)) (-3872 ((|#2| $) 100) ((|#2| $ |#2|) 99)) (-2859 (((-108) $) 31)) (-2895 (($ $ (-850)) 101)) (-1374 (((-108) $) 62)) (-3500 (($ |#1| |#2|) 61) (($ $ (-999) |#2|) 76) (($ $ (-588 (-999)) (-588 |#2|)) 75)) (-3810 (($ (-1 |#1| |#1|) $) 63)) (-3216 (($ $) 65)) (-3224 ((|#1| $) 66)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-3934 (($ $ |#2|) 95)) (-2276 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-2330 (((-1066 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-2683 ((|#1| $ |#2|) 104) (($ $ $) 81 (|has| |#2| (-1026)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) 89 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1085) (-708)) 88 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-588 (-1085))) 87 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1085)) 86 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-708)) 84 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-2487 ((|#2| $) 64)) (-1944 (($ $) 72)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514))) (($ |#1|) 47 (|has| |#1| (-157)))) (-1643 ((|#1| $ |#2|) 59)) (-3040 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-1980 ((|#1| $) 102)) (-1407 (((-108) $ $) 53 (|has| |#1| (-514)))) (-3996 ((|#1| $ |#2|) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) 93 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1085) (-708)) 92 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-588 (-1085))) 91 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1085)) 90 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-708)) 85 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#1|) 58 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
(((-1144 |#1| |#2|) (-1197) (-971) (-729)) (T -1144))
-((-2258 (*1 *2 *1) (-12 (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-5 *2 (-1066 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-2545 (*1 *2 *1 *3) (-12 (-4 *1 (-1144 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)))) (-1611 (*1 *2 *1) (-12 (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-5 *2 (-1085)))) (-1893 (*1 *2 *1) (-12 (-4 *1 (-1144 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)))) (-2073 (*1 *1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)))) (-3714 (*1 *2 *1) (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-3714 (*1 *2 *1 *2) (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-2789 (*1 *1 *1 *2) (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-2789 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-3898 (*1 *2 *1 *3) (-12 (-4 *1 (-1144 *2 *3)) (-4 *3 (-729)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -2190 (*2 (-1085)))) (-4 *2 (-971)))) (-3719 (*1 *1 *1 *2) (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-2289 (*1 *2 *1 *3) (-12 (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1066 *3)))))
-(-13 (-900 |t#1| |t#2| (-999)) (-10 -8 (-15 -2258 ((-1066 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -2545 (|t#1| $ |t#2|)) (-15 -1611 ((-1085) $)) (-15 -1893 (|t#1| $)) (-15 -2073 ($ $ (-850))) (-15 -3714 (|t#2| $)) (-15 -3714 (|t#2| $ |t#2|)) (-15 -2789 ($ $ |t#2|)) (-15 -2789 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -2190 (|t#1| (-1085)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -3898 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -3719 ($ $ |t#2|)) (IF (|has| |t#2| (-1026)) (-6 (-262 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-210)) (IF (|has| |t#1| (-829 (-1085))) (-6 (-829 (-1085))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -2289 ((-1066 |t#1|) $ |t#1|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-210) |has| |#1| (-15 * (|#1| |#2| |#1|))) ((-262 $ $) |has| |#2| (-1026)) ((-266) |has| |#1| (-514)) ((-514) |has| |#1| (-514)) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) . T) ((-829 (-1085)) -12 (|has| |#1| (-15 * (|#1| |#2| |#1|))) (|has| |#1| (-829 (-1085)))) ((-900 |#1| |#2| (-999)) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-3119 ((|#2| |#2|) 12)) (-3450 (((-393 |#2|) |#2|) 14)) (-1324 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-522))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-522)))) 30)))
-(((-1145 |#1| |#2|) (-10 -7 (-15 -3450 ((-393 |#2|) |#2|)) (-15 -3119 (|#2| |#2|)) (-15 -1324 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-522))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-522)))))) (-514) (-13 (-1142 |#1|) (-514) (-10 -8 (-15 -2259 ($ $ $))))) (T -1145))
-((-1324 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-522)))) (-4 *4 (-13 (-1142 *3) (-514) (-10 -8 (-15 -2259 ($ $ $))))) (-4 *3 (-514)) (-5 *1 (-1145 *3 *4)))) (-3119 (*1 *2 *2) (-12 (-4 *3 (-514)) (-5 *1 (-1145 *3 *2)) (-4 *2 (-13 (-1142 *3) (-514) (-10 -8 (-15 -2259 ($ $ $))))))) (-3450 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-393 *3)) (-5 *1 (-1145 *4 *3)) (-4 *3 (-13 (-1142 *4) (-514) (-10 -8 (-15 -2259 ($ $ $))))))))
-(-10 -7 (-15 -3450 ((-393 |#2|) |#2|)) (-15 -3119 (|#2| |#2|)) (-15 -1324 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-522))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-522))))))
-((-1391 (((-1151 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1151 |#1| |#3| |#5|)) 23)))
-(((-1146 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1391 ((-1151 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1151 |#1| |#3| |#5|)))) (-971) (-971) (-1085) (-1085) |#1| |#2|) (T -1146))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1151 *5 *7 *9)) (-4 *5 (-971)) (-4 *6 (-971)) (-14 *7 (-1085)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1151 *6 *8 *10)) (-5 *1 (-1146 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1085)))))
-(-10 -7 (-15 -1391 ((-1151 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1151 |#1| |#3| |#5|))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4090 (((-588 (-999)) $) 74)) (-1611 (((-1085) $) 103)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2022 (($ $) 52 (|has| |#1| (-514)))) (-3739 (((-108) $) 54 (|has| |#1| (-514)))) (-2789 (($ $ (-382 (-522))) 98) (($ $ (-382 (-522)) (-382 (-522))) 97)) (-2258 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) 105)) (-2908 (($ $) 135 (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) 118 (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 162 (|has| |#1| (-338)))) (-3450 (((-393 $) $) 163 (|has| |#1| (-338)))) (-1929 (($ $) 117 (|has| |#1| (-37 (-382 (-522)))))) (-1687 (((-108) $ $) 153 (|has| |#1| (-338)))) (-2884 (($ $) 134 (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) 119 (|has| |#1| (-37 (-382 (-522)))))) (-2773 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) 172)) (-2930 (($ $) 133 (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) 120 (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) 17 T CONST)) (-2277 (($ $ $) 157 (|has| |#1| (-338)))) (-3156 (($ $) 60)) (-2682 (((-3 $ "failed") $) 34)) (-2254 (($ $ $) 156 (|has| |#1| (-338)))) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 151 (|has| |#1| (-338)))) (-2813 (((-108) $) 164 (|has| |#1| (-338)))) (-3390 (((-108) $) 73)) (-2838 (($) 145 (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-382 (-522)) $) 100) (((-382 (-522)) $ (-382 (-522))) 99)) (-2782 (((-108) $) 31)) (-1504 (($ $ (-522)) 116 (|has| |#1| (-37 (-382 (-522)))))) (-2073 (($ $ (-850)) 101) (($ $ (-382 (-522))) 171)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 160 (|has| |#1| (-338)))) (-3340 (((-108) $) 62)) (-4049 (($ |#1| (-382 (-522))) 61) (($ $ (-999) (-382 (-522))) 76) (($ $ (-588 (-999)) (-588 (-382 (-522)))) 75)) (-1391 (($ (-1 |#1| |#1|) $) 63)) (-1254 (($ $) 142 (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) 65)) (-3138 ((|#1| $) 66)) (-2224 (($ (-588 $)) 149 (|has| |#1| (-338))) (($ $ $) 148 (|has| |#1| (-338)))) (-2385 (((-1068) $) 9)) (-3098 (($ $) 165 (|has| |#1| (-338)))) (-1858 (($ $) 170 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 169 (-3708 (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-887)) (|has| |#1| (-1106)) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-37 (-382 (-522)))))))) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 150 (|has| |#1| (-338)))) (-2259 (($ (-588 $)) 147 (|has| |#1| (-338))) (($ $ $) 146 (|has| |#1| (-338)))) (-1916 (((-393 $) $) 161 (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 158 (|has| |#1| (-338)))) (-3719 (($ $ (-382 (-522))) 95)) (-2232 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 152 (|has| |#1| (-338)))) (-3266 (($ $) 143 (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-3730 (((-708) $) 154 (|has| |#1| (-338)))) (-2545 ((|#1| $ (-382 (-522))) 104) (($ $ $) 81 (|has| (-382 (-522)) (-1026)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 155 (|has| |#1| (-338)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) 89 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085) (-708)) 88 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-588 (-1085))) 87 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085)) 86 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-708)) 84 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-2793 (((-382 (-522)) $) 64)) (-1738 (($ $) 132 (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) 121 (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) 131 (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) 122 (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) 130 (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) 123 (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) 72)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 47 (|has| |#1| (-157))) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514)))) (-3243 ((|#1| $ (-382 (-522))) 59)) (-2143 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-1893 ((|#1| $) 102)) (-1759 (($ $) 141 (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) 129 (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) 53 (|has| |#1| (-514)))) (-1745 (($ $) 140 (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) 128 (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) 139 (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) 127 (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-382 (-522))) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) 138 (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) 126 (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) 137 (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) 125 (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) 136 (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) 124 (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 166 (|has| |#1| (-338)))) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) 93 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085) (-708)) 92 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-588 (-1085))) 91 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085)) 90 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-708)) 85 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#1|) 58 (|has| |#1| (-338))) (($ $ $) 168 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 167 (|has| |#1| (-338))) (($ $ $) 144 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 115 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
+((-3024 (*1 *2 *1) (-12 (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-5 *2 (-1066 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-2683 (*1 *2 *1 *3) (-12 (-4 *1 (-1144 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)))) (-1660 (*1 *2 *1) (-12 (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (-5 *2 (-1085)))) (-1980 (*1 *2 *1) (-12 (-4 *1 (-1144 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)))) (-2895 (*1 *1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)))) (-3872 (*1 *2 *1) (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-3872 (*1 *2 *1 *2) (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-3495 (*1 *1 *1 *2) (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-3495 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-3996 (*1 *2 *1 *3) (-12 (-4 *1 (-1144 *2 *3)) (-4 *3 (-729)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -2217 (*2 (-1085)))) (-4 *2 (-971)))) (-3934 (*1 *1 *1 *2) (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))) (-2330 (*1 *2 *1 *3) (-12 (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1066 *3)))))
+(-13 (-900 |t#1| |t#2| (-999)) (-10 -8 (-15 -3024 ((-1066 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -2683 (|t#1| $ |t#2|)) (-15 -1660 ((-1085) $)) (-15 -1980 (|t#1| $)) (-15 -2895 ($ $ (-850))) (-15 -3872 (|t#2| $)) (-15 -3872 (|t#2| $ |t#2|)) (-15 -3495 ($ $ |t#2|)) (-15 -3495 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -2217 (|t#1| (-1085)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -3996 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -3934 ($ $ |t#2|)) (IF (|has| |t#2| (-1026)) (-6 (-262 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-210)) (IF (|has| |t#1| (-829 (-1085))) (-6 (-829 (-1085))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -2330 ((-1066 |t#1|) $ |t#1|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| |#2|) . T) ((-25) . T) ((-37 #0=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-97) . T) ((-107 #0# #0#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-210) |has| |#1| (-15 * (|#1| |#2| |#1|))) ((-262 $ $) |has| |#2| (-1026)) ((-266) |has| |#1| (-514)) ((-514) |has| |#1| (-514)) ((-590 #0#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #0#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) . T) ((-829 (-1085)) -12 (|has| |#1| (-15 * (|#1| |#2| |#1|))) (|has| |#1| (-829 (-1085)))) ((-900 |#1| |#2| (-999)) . T) ((-977 #0#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
+((-2961 ((|#2| |#2|) 12)) (-3133 (((-393 |#2|) |#2|) 14)) (-1927 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-522))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-522)))) 30)))
+(((-1145 |#1| |#2|) (-10 -7 (-15 -3133 ((-393 |#2|) |#2|)) (-15 -2961 (|#2| |#2|)) (-15 -1927 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-522))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-522)))))) (-514) (-13 (-1142 |#1|) (-514) (-10 -8 (-15 -2308 ($ $ $))))) (T -1145))
+((-1927 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-522)))) (-4 *4 (-13 (-1142 *3) (-514) (-10 -8 (-15 -2308 ($ $ $))))) (-4 *3 (-514)) (-5 *1 (-1145 *3 *4)))) (-2961 (*1 *2 *2) (-12 (-4 *3 (-514)) (-5 *1 (-1145 *3 *2)) (-4 *2 (-13 (-1142 *3) (-514) (-10 -8 (-15 -2308 ($ $ $))))))) (-3133 (*1 *2 *3) (-12 (-4 *4 (-514)) (-5 *2 (-393 *3)) (-5 *1 (-1145 *4 *3)) (-4 *3 (-13 (-1142 *4) (-514) (-10 -8 (-15 -2308 ($ $ $))))))))
+(-10 -7 (-15 -3133 ((-393 |#2|) |#2|)) (-15 -2961 (|#2| |#2|)) (-15 -1927 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-522))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-522))))))
+((-3810 (((-1151 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1151 |#1| |#3| |#5|)) 23)))
+(((-1146 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3810 ((-1151 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1151 |#1| |#3| |#5|)))) (-971) (-971) (-1085) (-1085) |#1| |#2|) (T -1146))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1151 *5 *7 *9)) (-4 *5 (-971)) (-4 *6 (-971)) (-14 *7 (-1085)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1151 *6 *8 *10)) (-5 *1 (-1146 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1085)))))
+(-10 -7 (-15 -3810 ((-1151 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1151 |#1| |#3| |#5|))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3533 (((-588 (-999)) $) 74)) (-1660 (((-1085) $) 103)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2298 (($ $) 52 (|has| |#1| (-514)))) (-3007 (((-108) $) 54 (|has| |#1| (-514)))) (-3495 (($ $ (-382 (-522))) 98) (($ $ (-382 (-522)) (-382 (-522))) 97)) (-3024 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) 105)) (-3044 (($ $) 135 (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) 118 (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 162 (|has| |#1| (-338)))) (-3133 (((-393 $) $) 163 (|has| |#1| (-338)))) (-2016 (($ $) 117 (|has| |#1| (-37 (-382 (-522)))))) (-2805 (((-108) $ $) 153 (|has| |#1| (-338)))) (-3023 (($ $) 134 (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) 119 (|has| |#1| (-37 (-382 (-522)))))) (-1270 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) 172)) (-3066 (($ $) 133 (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) 120 (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) 17 T CONST)) (-2333 (($ $ $) 157 (|has| |#1| (-338)))) (-3241 (($ $) 60)) (-3920 (((-3 $ "failed") $) 34)) (-2303 (($ $ $) 156 (|has| |#1| (-338)))) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 151 (|has| |#1| (-338)))) (-2725 (((-108) $) 164 (|has| |#1| (-338)))) (-3672 (((-108) $) 73)) (-2980 (($) 145 (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-382 (-522)) $) 100) (((-382 (-522)) $ (-382 (-522))) 99)) (-2859 (((-108) $) 31)) (-1811 (($ $ (-522)) 116 (|has| |#1| (-37 (-382 (-522)))))) (-2895 (($ $ (-850)) 101) (($ $ (-382 (-522))) 171)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 160 (|has| |#1| (-338)))) (-1374 (((-108) $) 62)) (-3500 (($ |#1| (-382 (-522))) 61) (($ $ (-999) (-382 (-522))) 76) (($ $ (-588 (-999)) (-588 (-382 (-522)))) 75)) (-3810 (($ (-1 |#1| |#1|) $) 63)) (-1238 (($ $) 142 (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) 65)) (-3224 ((|#1| $) 66)) (-2267 (($ (-588 $)) 149 (|has| |#1| (-338))) (($ $ $) 148 (|has| |#1| (-338)))) (-2311 (((-1068) $) 9)) (-3193 (($ $) 165 (|has| |#1| (-338)))) (-2611 (($ $) 170 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 169 (-3844 (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-887)) (|has| |#1| (-1106)) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-37 (-382 (-522)))))))) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 150 (|has| |#1| (-338)))) (-2308 (($ (-588 $)) 147 (|has| |#1| (-338))) (($ $ $) 146 (|has| |#1| (-338)))) (-2006 (((-393 $) $) 161 (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 158 (|has| |#1| (-338)))) (-3934 (($ $ (-382 (-522))) 95)) (-2276 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 152 (|has| |#1| (-338)))) (-3357 (($ $) 143 (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-4031 (((-708) $) 154 (|has| |#1| (-338)))) (-2683 ((|#1| $ (-382 (-522))) 104) (($ $ $) 81 (|has| (-382 (-522)) (-1026)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 155 (|has| |#1| (-338)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) 89 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085) (-708)) 88 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-588 (-1085))) 87 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085)) 86 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-708)) 84 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-2487 (((-382 (-522)) $) 64)) (-1831 (($ $) 132 (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) 121 (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) 131 (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) 122 (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) 130 (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) 123 (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) 72)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 47 (|has| |#1| (-157))) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514)))) (-1643 ((|#1| $ (-382 (-522))) 59)) (-3040 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-1980 ((|#1| $) 102)) (-1856 (($ $) 141 (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) 129 (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) 53 (|has| |#1| (-514)))) (-1839 (($ $) 140 (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) 128 (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) 139 (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) 127 (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-382 (-522))) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) 138 (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) 126 (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) 137 (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) 125 (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) 136 (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) 124 (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 166 (|has| |#1| (-338)))) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) 93 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085) (-708)) 92 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-588 (-1085))) 91 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085)) 90 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-708)) 85 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#1|) 58 (|has| |#1| (-338))) (($ $ $) 168 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 167 (|has| |#1| (-338))) (($ $ $) 144 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 115 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
(((-1147 |#1|) (-1197) (-971)) (T -1147))
-((-2773 (*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *3 (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| *4)))) (-4 *4 (-971)) (-4 *1 (-1147 *4)))) (-2073 (*1 *1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-4 *1 (-1147 *3)) (-4 *3 (-971)))) (-1858 (*1 *1 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522)))))) (-1858 (*1 *1 *1 *2) (-3708 (-12 (-5 *2 (-1085)) (-4 *1 (-1147 *3)) (-4 *3 (-971)) (-12 (-4 *3 (-29 (-522))) (-4 *3 (-887)) (-4 *3 (-1106)) (-4 *3 (-37 (-382 (-522)))))) (-12 (-5 *2 (-1085)) (-4 *1 (-1147 *3)) (-4 *3 (-971)) (-12 (|has| *3 (-15 -4090 ((-588 *2) *3))) (|has| *3 (-15 -1858 (*3 *3 *2))) (-4 *3 (-37 (-382 (-522)))))))))
-(-13 (-1144 |t#1| (-382 (-522))) (-10 -8 (-15 -2773 ($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |t#1|))))) (-15 -2073 ($ $ (-382 (-522)))) (IF (|has| |t#1| (-37 (-382 (-522)))) (PROGN (-15 -1858 ($ $)) (IF (|has| |t#1| (-15 -1858 (|t#1| |t#1| (-1085)))) (IF (|has| |t#1| (-15 -4090 ((-588 (-1085)) |t#1|))) (-15 -1858 ($ $ (-1085))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1106)) (IF (|has| |t#1| (-887)) (IF (|has| |t#1| (-29 (-522))) (-15 -1858 ($ $ (-1085))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-928)) (-6 (-1106))) |%noBranch|) (IF (|has| |t#1| (-338)) (-6 (-338)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-382 (-522))) . T) ((-25) . T) ((-37 #1=(-382 (-522))) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-34) |has| |#1| (-37 (-382 (-522)))) ((-91) |has| |#1| (-37 (-382 (-522)))) ((-97) . T) ((-107 #1# #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-210) |has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) ((-220) |has| |#1| (-338)) ((-260) |has| |#1| (-37 (-382 (-522)))) ((-262 $ $) |has| (-382 (-522)) (-1026)) ((-266) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-283) |has| |#1| (-338)) ((-338) |has| |#1| (-338)) ((-426) |has| |#1| (-338)) ((-463) |has| |#1| (-37 (-382 (-522)))) ((-514) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-590 #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-664) . T) ((-829 (-1085)) -12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085)))) ((-900 |#1| #0# (-999)) . T) ((-849) |has| |#1| (-338)) ((-928) |has| |#1| (-37 (-382 (-522)))) ((-977 #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1106) |has| |#1| (-37 (-382 (-522)))) ((-1109) |has| |#1| (-37 (-382 (-522)))) ((-1124) |has| |#1| (-338)) ((-1144 |#1| #0#) . T))
-((-2250 (((-108) $) 12)) (-1297 (((-3 |#3| "failed") $) 17)) (-1484 ((|#3| $) 14)))
-(((-1148 |#1| |#2| |#3|) (-10 -8 (-15 -1484 (|#3| |#1|)) (-15 -1297 ((-3 |#3| "failed") |#1|)) (-15 -2250 ((-108) |#1|))) (-1149 |#2| |#3|) (-971) (-1126 |#2|)) (T -1148))
-NIL
-(-10 -8 (-15 -1484 (|#3| |#1|)) (-15 -1297 ((-3 |#3| "failed") |#1|)) (-15 -2250 ((-108) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4090 (((-588 (-999)) $) 74)) (-1611 (((-1085) $) 103)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2022 (($ $) 52 (|has| |#1| (-514)))) (-3739 (((-108) $) 54 (|has| |#1| (-514)))) (-2789 (($ $ (-382 (-522))) 98) (($ $ (-382 (-522)) (-382 (-522))) 97)) (-2258 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) 105)) (-2908 (($ $) 135 (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) 118 (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 162 (|has| |#1| (-338)))) (-3450 (((-393 $) $) 163 (|has| |#1| (-338)))) (-1929 (($ $) 117 (|has| |#1| (-37 (-382 (-522)))))) (-1687 (((-108) $ $) 153 (|has| |#1| (-338)))) (-2884 (($ $) 134 (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) 119 (|has| |#1| (-37 (-382 (-522)))))) (-2773 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) 172)) (-2930 (($ $) 133 (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) 120 (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) 17 T CONST)) (-1297 (((-3 |#2| "failed") $) 183)) (-1484 ((|#2| $) 182)) (-2277 (($ $ $) 157 (|has| |#1| (-338)))) (-3156 (($ $) 60)) (-2682 (((-3 $ "failed") $) 34)) (-3987 (((-382 (-522)) $) 180)) (-2254 (($ $ $) 156 (|has| |#1| (-338)))) (-3079 (($ (-382 (-522)) |#2|) 181)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 151 (|has| |#1| (-338)))) (-2813 (((-108) $) 164 (|has| |#1| (-338)))) (-3390 (((-108) $) 73)) (-2838 (($) 145 (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-382 (-522)) $) 100) (((-382 (-522)) $ (-382 (-522))) 99)) (-2782 (((-108) $) 31)) (-1504 (($ $ (-522)) 116 (|has| |#1| (-37 (-382 (-522)))))) (-2073 (($ $ (-850)) 101) (($ $ (-382 (-522))) 171)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 160 (|has| |#1| (-338)))) (-3340 (((-108) $) 62)) (-4049 (($ |#1| (-382 (-522))) 61) (($ $ (-999) (-382 (-522))) 76) (($ $ (-588 (-999)) (-588 (-382 (-522)))) 75)) (-1391 (($ (-1 |#1| |#1|) $) 63)) (-1254 (($ $) 142 (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) 65)) (-3138 ((|#1| $) 66)) (-2224 (($ (-588 $)) 149 (|has| |#1| (-338))) (($ $ $) 148 (|has| |#1| (-338)))) (-2440 ((|#2| $) 179)) (-4020 (((-3 |#2| "failed") $) 177)) (-3068 ((|#2| $) 178)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 165 (|has| |#1| (-338)))) (-1858 (($ $) 170 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 169 (-3708 (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-887)) (|has| |#1| (-1106)) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-37 (-382 (-522)))))))) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 150 (|has| |#1| (-338)))) (-2259 (($ (-588 $)) 147 (|has| |#1| (-338))) (($ $ $) 146 (|has| |#1| (-338)))) (-1916 (((-393 $) $) 161 (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 158 (|has| |#1| (-338)))) (-3719 (($ $ (-382 (-522))) 95)) (-2232 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 152 (|has| |#1| (-338)))) (-3266 (($ $) 143 (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-3730 (((-708) $) 154 (|has| |#1| (-338)))) (-2545 ((|#1| $ (-382 (-522))) 104) (($ $ $) 81 (|has| (-382 (-522)) (-1026)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 155 (|has| |#1| (-338)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) 89 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085) (-708)) 88 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-588 (-1085))) 87 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085)) 86 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-708)) 84 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-2793 (((-382 (-522)) $) 64)) (-1738 (($ $) 132 (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) 121 (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) 131 (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) 122 (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) 130 (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) 123 (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) 72)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 47 (|has| |#1| (-157))) (($ |#2|) 184) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514)))) (-3243 ((|#1| $ (-382 (-522))) 59)) (-2143 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-1893 ((|#1| $) 102)) (-1759 (($ $) 141 (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) 129 (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) 53 (|has| |#1| (-514)))) (-1745 (($ $) 140 (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) 128 (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) 139 (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) 127 (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-382 (-522))) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) 138 (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) 126 (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) 137 (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) 125 (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) 136 (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) 124 (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 166 (|has| |#1| (-338)))) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) 93 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085) (-708)) 92 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-588 (-1085))) 91 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085)) 90 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-708)) 85 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#1|) 58 (|has| |#1| (-338))) (($ $ $) 168 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 167 (|has| |#1| (-338))) (($ $ $) 144 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 115 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
+((-1270 (*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *3 (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| *4)))) (-4 *4 (-971)) (-4 *1 (-1147 *4)))) (-2895 (*1 *1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-4 *1 (-1147 *3)) (-4 *3 (-971)))) (-2611 (*1 *1 *1) (-12 (-4 *1 (-1147 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522)))))) (-2611 (*1 *1 *1 *2) (-3844 (-12 (-5 *2 (-1085)) (-4 *1 (-1147 *3)) (-4 *3 (-971)) (-12 (-4 *3 (-29 (-522))) (-4 *3 (-887)) (-4 *3 (-1106)) (-4 *3 (-37 (-382 (-522)))))) (-12 (-5 *2 (-1085)) (-4 *1 (-1147 *3)) (-4 *3 (-971)) (-12 (|has| *3 (-15 -3533 ((-588 *2) *3))) (|has| *3 (-15 -2611 (*3 *3 *2))) (-4 *3 (-37 (-382 (-522)))))))))
+(-13 (-1144 |t#1| (-382 (-522))) (-10 -8 (-15 -1270 ($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |t#1|))))) (-15 -2895 ($ $ (-382 (-522)))) (IF (|has| |t#1| (-37 (-382 (-522)))) (PROGN (-15 -2611 ($ $)) (IF (|has| |t#1| (-15 -2611 (|t#1| |t#1| (-1085)))) (IF (|has| |t#1| (-15 -3533 ((-588 (-1085)) |t#1|))) (-15 -2611 ($ $ (-1085))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1106)) (IF (|has| |t#1| (-887)) (IF (|has| |t#1| (-29 (-522))) (-15 -2611 ($ $ (-1085))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-928)) (-6 (-1106))) |%noBranch|) (IF (|has| |t#1| (-338)) (-6 (-338)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-382 (-522))) . T) ((-25) . T) ((-37 #1=(-382 (-522))) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-34) |has| |#1| (-37 (-382 (-522)))) ((-91) |has| |#1| (-37 (-382 (-522)))) ((-97) . T) ((-107 #1# #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-210) |has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) ((-220) |has| |#1| (-338)) ((-260) |has| |#1| (-37 (-382 (-522)))) ((-262 $ $) |has| (-382 (-522)) (-1026)) ((-266) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-283) |has| |#1| (-338)) ((-338) |has| |#1| (-338)) ((-426) |has| |#1| (-338)) ((-463) |has| |#1| (-37 (-382 (-522)))) ((-514) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-590 #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-664) . T) ((-829 (-1085)) -12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085)))) ((-900 |#1| #0# (-999)) . T) ((-849) |has| |#1| (-338)) ((-928) |has| |#1| (-37 (-382 (-522)))) ((-977 #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1106) |has| |#1| (-37 (-382 (-522)))) ((-1109) |has| |#1| (-37 (-382 (-522)))) ((-1124) |has| |#1| (-338)) ((-1144 |#1| #0#) . T))
+((-2944 (((-108) $) 12)) (-3700 (((-3 |#3| "failed") $) 17)) (-1478 ((|#3| $) 14)))
+(((-1148 |#1| |#2| |#3|) (-10 -8 (-15 -1478 (|#3| |#1|)) (-15 -3700 ((-3 |#3| "failed") |#1|)) (-15 -2944 ((-108) |#1|))) (-1149 |#2| |#3|) (-971) (-1126 |#2|)) (T -1148))
+NIL
+(-10 -8 (-15 -1478 (|#3| |#1|)) (-15 -3700 ((-3 |#3| "failed") |#1|)) (-15 -2944 ((-108) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3533 (((-588 (-999)) $) 74)) (-1660 (((-1085) $) 103)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2298 (($ $) 52 (|has| |#1| (-514)))) (-3007 (((-108) $) 54 (|has| |#1| (-514)))) (-3495 (($ $ (-382 (-522))) 98) (($ $ (-382 (-522)) (-382 (-522))) 97)) (-3024 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) 105)) (-3044 (($ $) 135 (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) 118 (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 162 (|has| |#1| (-338)))) (-3133 (((-393 $) $) 163 (|has| |#1| (-338)))) (-2016 (($ $) 117 (|has| |#1| (-37 (-382 (-522)))))) (-2805 (((-108) $ $) 153 (|has| |#1| (-338)))) (-3023 (($ $) 134 (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) 119 (|has| |#1| (-37 (-382 (-522)))))) (-1270 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) 172)) (-3066 (($ $) 133 (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) 120 (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) 17 T CONST)) (-3700 (((-3 |#2| "failed") $) 183)) (-1478 ((|#2| $) 182)) (-2333 (($ $ $) 157 (|has| |#1| (-338)))) (-3241 (($ $) 60)) (-3920 (((-3 $ "failed") $) 34)) (-3515 (((-382 (-522)) $) 180)) (-2303 (($ $ $) 156 (|has| |#1| (-338)))) (-3178 (($ (-382 (-522)) |#2|) 181)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 151 (|has| |#1| (-338)))) (-2725 (((-108) $) 164 (|has| |#1| (-338)))) (-3672 (((-108) $) 73)) (-2980 (($) 145 (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-382 (-522)) $) 100) (((-382 (-522)) $ (-382 (-522))) 99)) (-2859 (((-108) $) 31)) (-1811 (($ $ (-522)) 116 (|has| |#1| (-37 (-382 (-522)))))) (-2895 (($ $ (-850)) 101) (($ $ (-382 (-522))) 171)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 160 (|has| |#1| (-338)))) (-1374 (((-108) $) 62)) (-3500 (($ |#1| (-382 (-522))) 61) (($ $ (-999) (-382 (-522))) 76) (($ $ (-588 (-999)) (-588 (-382 (-522)))) 75)) (-3810 (($ (-1 |#1| |#1|) $) 63)) (-1238 (($ $) 142 (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) 65)) (-3224 ((|#1| $) 66)) (-2267 (($ (-588 $)) 149 (|has| |#1| (-338))) (($ $ $) 148 (|has| |#1| (-338)))) (-3602 ((|#2| $) 179)) (-3830 (((-3 |#2| "failed") $) 177)) (-3170 ((|#2| $) 178)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 165 (|has| |#1| (-338)))) (-2611 (($ $) 170 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 169 (-3844 (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-887)) (|has| |#1| (-1106)) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-37 (-382 (-522)))))))) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 150 (|has| |#1| (-338)))) (-2308 (($ (-588 $)) 147 (|has| |#1| (-338))) (($ $ $) 146 (|has| |#1| (-338)))) (-2006 (((-393 $) $) 161 (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 159 (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 158 (|has| |#1| (-338)))) (-3934 (($ $ (-382 (-522))) 95)) (-2276 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 152 (|has| |#1| (-338)))) (-3357 (($ $) 143 (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-4031 (((-708) $) 154 (|has| |#1| (-338)))) (-2683 ((|#1| $ (-382 (-522))) 104) (($ $ $) 81 (|has| (-382 (-522)) (-1026)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 155 (|has| |#1| (-338)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) 89 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085) (-708)) 88 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-588 (-1085))) 87 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085)) 86 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-708)) 84 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-2487 (((-382 (-522)) $) 64)) (-1831 (($ $) 132 (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) 121 (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) 131 (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) 122 (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) 130 (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) 123 (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) 72)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 47 (|has| |#1| (-157))) (($ |#2|) 184) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514)))) (-1643 ((|#1| $ (-382 (-522))) 59)) (-3040 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-1980 ((|#1| $) 102)) (-1856 (($ $) 141 (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) 129 (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) 53 (|has| |#1| (-514)))) (-1839 (($ $) 140 (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) 128 (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) 139 (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) 127 (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-382 (-522))) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) 138 (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) 126 (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) 137 (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) 125 (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) 136 (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) 124 (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 166 (|has| |#1| (-338)))) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) 93 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085) (-708)) 92 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-588 (-1085))) 91 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-1085)) 90 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (($ $ (-708)) 85 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#1|) 58 (|has| |#1| (-338))) (($ $ $) 168 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 167 (|has| |#1| (-338))) (($ $ $) 144 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 115 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
(((-1149 |#1| |#2|) (-1197) (-971) (-1126 |t#1|)) (T -1149))
-((-2793 (*1 *2 *1) (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1126 *3)) (-5 *2 (-382 (-522))))) (-2190 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *1 (-1149 *3 *2)) (-4 *2 (-1126 *3)))) (-3079 (*1 *1 *2 *3) (-12 (-5 *2 (-382 (-522))) (-4 *4 (-971)) (-4 *1 (-1149 *4 *3)) (-4 *3 (-1126 *4)))) (-3987 (*1 *2 *1) (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1126 *3)) (-5 *2 (-382 (-522))))) (-2440 (*1 *2 *1) (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1126 *3)))) (-3068 (*1 *2 *1) (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1126 *3)))) (-4020 (*1 *2 *1) (|partial| -12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1126 *3)))))
-(-13 (-1147 |t#1|) (-962 |t#2|) (-10 -8 (-15 -3079 ($ (-382 (-522)) |t#2|)) (-15 -3987 ((-382 (-522)) $)) (-15 -2440 (|t#2| $)) (-15 -2793 ((-382 (-522)) $)) (-15 -2190 ($ |t#2|)) (-15 -3068 (|t#2| $)) (-15 -4020 ((-3 |t#2| "failed") $))))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-382 (-522))) . T) ((-25) . T) ((-37 #1=(-382 (-522))) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-34) |has| |#1| (-37 (-382 (-522)))) ((-91) |has| |#1| (-37 (-382 (-522)))) ((-97) . T) ((-107 #1# #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-210) |has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) ((-220) |has| |#1| (-338)) ((-260) |has| |#1| (-37 (-382 (-522)))) ((-262 $ $) |has| (-382 (-522)) (-1026)) ((-266) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-283) |has| |#1| (-338)) ((-338) |has| |#1| (-338)) ((-426) |has| |#1| (-338)) ((-463) |has| |#1| (-37 (-382 (-522)))) ((-514) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-590 #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-664) . T) ((-829 (-1085)) -12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085)))) ((-900 |#1| #0# (-999)) . T) ((-849) |has| |#1| (-338)) ((-928) |has| |#1| (-37 (-382 (-522)))) ((-962 |#2|) . T) ((-977 #1#) -3708 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1106) |has| |#1| (-37 (-382 (-522)))) ((-1109) |has| |#1| (-37 (-382 (-522)))) ((-1124) |has| |#1| (-338)) ((-1144 |#1| #0#) . T) ((-1147 |#1|) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4090 (((-588 (-999)) $) NIL)) (-1611 (((-1085) $) 96)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-2789 (($ $ (-382 (-522))) 106) (($ $ (-382 (-522)) (-382 (-522))) 108)) (-2258 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) 51)) (-2908 (($ $) 179 (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) 155 (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL (|has| |#1| (-338)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1929 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-2884 (($ $) 175 (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) 151 (|has| |#1| (-37 (-382 (-522)))))) (-2773 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) 61)) (-2930 (($ $) 183 (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) 159 (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#2| "failed") $) NIL)) (-1484 ((|#2| $) NIL)) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) 79)) (-3987 (((-382 (-522)) $) 12)) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-3079 (($ (-382 (-522)) |#2|) 10)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2813 (((-108) $) NIL (|has| |#1| (-338)))) (-3390 (((-108) $) 68)) (-2838 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-382 (-522)) $) 103) (((-382 (-522)) $ (-382 (-522))) 104)) (-2782 (((-108) $) NIL)) (-1504 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2073 (($ $ (-850)) 120) (($ $ (-382 (-522))) 118)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-382 (-522))) 31) (($ $ (-999) (-382 (-522))) NIL) (($ $ (-588 (-999)) (-588 (-382 (-522)))) NIL)) (-1391 (($ (-1 |#1| |#1|) $) 115)) (-1254 (($ $) 149 (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2440 ((|#2| $) 11)) (-4020 (((-3 |#2| "failed") $) 41)) (-3068 ((|#2| $) 42)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) 93 (|has| |#1| (-338)))) (-1858 (($ $) 135 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 140 (-3708 (-12 (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106)))))) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3719 (($ $ (-382 (-522))) 112)) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3266 (($ $) 147 (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) 90 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-3730 (((-708) $) NIL (|has| |#1| (-338)))) (-2545 ((|#1| $ (-382 (-522))) 100) (($ $ $) 86 (|has| (-382 (-522)) (-1026)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) 127 (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 124 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-2793 (((-382 (-522)) $) 16)) (-1738 (($ $) 185 (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) 161 (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) 181 (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) 157 (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) 177 (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) 153 (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) 110)) (-2190 (((-792) $) NIL) (($ (-522)) 35) (($ |#1|) 27 (|has| |#1| (-157))) (($ |#2|) 32) (($ (-382 (-522))) 128 (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514)))) (-3243 ((|#1| $ (-382 (-522))) 99)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) 117)) (-1893 ((|#1| $) 98)) (-1759 (($ $) 191 (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) 167 (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1745 (($ $) 187 (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) 163 (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) 195 (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) 171 (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-382 (-522))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) 197 (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) 173 (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) 193 (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) 169 (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) 189 (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) 165 (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3566 (($) 21 T CONST)) (-3577 (($) 17 T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1531 (((-108) $ $) 66)) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) 92 (|has| |#1| (-338)))) (-1612 (($ $) 131) (($ $ $) 72)) (-1602 (($ $ $) 70)) (** (($ $ (-850)) NIL) (($ $ (-708)) 76) (($ $ (-522)) 144 (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 145 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 74) (($ $ |#1|) NIL) (($ |#1| $) 126) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+((-2487 (*1 *2 *1) (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1126 *3)) (-5 *2 (-382 (-522))))) (-2217 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *1 (-1149 *3 *2)) (-4 *2 (-1126 *3)))) (-3178 (*1 *1 *2 *3) (-12 (-5 *2 (-382 (-522))) (-4 *4 (-971)) (-4 *1 (-1149 *4 *3)) (-4 *3 (-1126 *4)))) (-3515 (*1 *2 *1) (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1126 *3)) (-5 *2 (-382 (-522))))) (-3602 (*1 *2 *1) (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1126 *3)))) (-3170 (*1 *2 *1) (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1126 *3)))) (-3830 (*1 *2 *1) (|partial| -12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1126 *3)))))
+(-13 (-1147 |t#1|) (-962 |t#2|) (-10 -8 (-15 -3178 ($ (-382 (-522)) |t#2|)) (-15 -3515 ((-382 (-522)) $)) (-15 -3602 (|t#2| $)) (-15 -2487 ((-382 (-522)) $)) (-15 -2217 ($ |t#2|)) (-15 -3170 (|t#2| $)) (-15 -3830 ((-3 |t#2| "failed") $))))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-382 (-522))) . T) ((-25) . T) ((-37 #1=(-382 (-522))) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-34) |has| |#1| (-37 (-382 (-522)))) ((-91) |has| |#1| (-37 (-382 (-522)))) ((-97) . T) ((-107 #1# #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-210) |has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) ((-220) |has| |#1| (-338)) ((-260) |has| |#1| (-37 (-382 (-522)))) ((-262 $ $) |has| (-382 (-522)) (-1026)) ((-266) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-283) |has| |#1| (-338)) ((-338) |has| |#1| (-338)) ((-426) |has| |#1| (-338)) ((-463) |has| |#1| (-37 (-382 (-522)))) ((-514) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-590 #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338))) ((-664) . T) ((-829 (-1085)) -12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085)))) ((-900 |#1| #0# (-999)) . T) ((-849) |has| |#1| (-338)) ((-928) |has| |#1| (-37 (-382 (-522)))) ((-962 |#2|) . T) ((-977 #1#) -3844 (|has| |#1| (-338)) (|has| |#1| (-37 (-382 (-522))))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-338)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1106) |has| |#1| (-37 (-382 (-522)))) ((-1109) |has| |#1| (-37 (-382 (-522)))) ((-1124) |has| |#1| (-338)) ((-1144 |#1| #0#) . T) ((-1147 |#1|) . T))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3533 (((-588 (-999)) $) NIL)) (-1660 (((-1085) $) 96)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3495 (($ $ (-382 (-522))) 106) (($ $ (-382 (-522)) (-382 (-522))) 108)) (-3024 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) 51)) (-3044 (($ $) 179 (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) 155 (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL (|has| |#1| (-338)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-338)))) (-2016 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-3023 (($ $) 175 (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) 151 (|has| |#1| (-37 (-382 (-522)))))) (-1270 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) 61)) (-3066 (($ $) 183 (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) 159 (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#2| "failed") $) NIL)) (-1478 ((|#2| $) NIL)) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) 79)) (-3515 (((-382 (-522)) $) 12)) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-3178 (($ (-382 (-522)) |#2|) 10)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2725 (((-108) $) NIL (|has| |#1| (-338)))) (-3672 (((-108) $) 68)) (-2980 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-382 (-522)) $) 103) (((-382 (-522)) $ (-382 (-522))) 104)) (-2859 (((-108) $) NIL)) (-1811 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2895 (($ $ (-850)) 120) (($ $ (-382 (-522))) 118)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-382 (-522))) 31) (($ $ (-999) (-382 (-522))) NIL) (($ $ (-588 (-999)) (-588 (-382 (-522)))) NIL)) (-3810 (($ (-1 |#1| |#1|) $) 115)) (-1238 (($ $) 149 (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-3602 ((|#2| $) 11)) (-3830 (((-3 |#2| "failed") $) 41)) (-3170 ((|#2| $) 42)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) 93 (|has| |#1| (-338)))) (-2611 (($ $) 135 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 140 (-3844 (-12 (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106)))))) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-3934 (($ $ (-382 (-522))) 112)) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3357 (($ $) 147 (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) 90 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-4031 (((-708) $) NIL (|has| |#1| (-338)))) (-2683 ((|#1| $ (-382 (-522))) 100) (($ $ $) 86 (|has| (-382 (-522)) (-1026)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) 127 (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 124 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-2487 (((-382 (-522)) $) 16)) (-1831 (($ $) 185 (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) 161 (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) 181 (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) 157 (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) 177 (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) 153 (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) 110)) (-2217 (((-792) $) NIL) (($ (-522)) 35) (($ |#1|) 27 (|has| |#1| (-157))) (($ |#2|) 32) (($ (-382 (-522))) 128 (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514)))) (-1643 ((|#1| $ (-382 (-522))) 99)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) 117)) (-1980 ((|#1| $) 98)) (-1856 (($ $) 191 (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) 167 (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1839 (($ $) 187 (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) 163 (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) 195 (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) 171 (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-382 (-522))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) 197 (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) 173 (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) 193 (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) 169 (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) 189 (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) 165 (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3697 (($) 21 T CONST)) (-3709 (($) 17 T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1562 (((-108) $ $) 66)) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) 92 (|has| |#1| (-338)))) (-1672 (($ $) 131) (($ $ $) 72)) (-1661 (($ $ $) 70)) (** (($ $ (-850)) NIL) (($ $ (-708)) 76) (($ $ (-522)) 144 (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 145 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 74) (($ $ |#1|) NIL) (($ |#1| $) 126) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
(((-1150 |#1| |#2|) (-1149 |#1| |#2|) (-971) (-1126 |#1|)) (T -1150))
NIL
(-1149 |#1| |#2|)
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4090 (((-588 (-999)) $) NIL)) (-1611 (((-1085) $) 11)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) NIL (|has| |#1| (-514)))) (-2789 (($ $ (-382 (-522))) NIL) (($ $ (-382 (-522)) (-382 (-522))) NIL)) (-2258 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) NIL)) (-2908 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-3119 (($ $) NIL (|has| |#1| (-338)))) (-3450 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1929 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1687 (((-108) $ $) NIL (|has| |#1| (-338)))) (-2884 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2773 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) NIL)) (-2930 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-1130 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1158 |#1| |#2| |#3|) "failed") $) 22)) (-1484 (((-1130 |#1| |#2| |#3|) $) NIL) (((-1158 |#1| |#2| |#3|) $) NIL)) (-2277 (($ $ $) NIL (|has| |#1| (-338)))) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3987 (((-382 (-522)) $) 57)) (-2254 (($ $ $) NIL (|has| |#1| (-338)))) (-3079 (($ (-382 (-522)) (-1130 |#1| |#2| |#3|)) NIL)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2813 (((-108) $) NIL (|has| |#1| (-338)))) (-3390 (((-108) $) NIL)) (-2838 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-382 (-522)) $) NIL) (((-382 (-522)) $ (-382 (-522))) NIL)) (-2782 (((-108) $) NIL)) (-1504 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2073 (($ $ (-850)) NIL) (($ $ (-382 (-522))) NIL)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-382 (-522))) 29) (($ $ (-999) (-382 (-522))) NIL) (($ $ (-588 (-999)) (-588 (-382 (-522)))) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-1254 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2224 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2440 (((-1130 |#1| |#2| |#3|) $) 60)) (-4020 (((-3 (-1130 |#1| |#2| |#3|) "failed") $) NIL)) (-3068 (((-1130 |#1| |#2| |#3|) $) NIL)) (-2385 (((-1068) $) NIL)) (-3098 (($ $) NIL (|has| |#1| (-338)))) (-1858 (($ $) 38 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) NIL (-3708 (-12 (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 39 (|has| |#1| (-37 (-382 (-522)))))) (-4151 (((-1032) $) NIL)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2259 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1916 (((-393 $) $) NIL (|has| |#1| (-338)))) (-3885 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) NIL (|has| |#1| (-338)))) (-3719 (($ $ (-382 (-522))) NIL)) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-2553 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3266 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-3730 (((-708) $) NIL (|has| |#1| (-338)))) (-2545 ((|#1| $ (-382 (-522))) NIL) (($ $ $) NIL (|has| (-382 (-522)) (-1026)))) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) NIL (|has| |#1| (-338)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 36 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $ (-1162 |#2|)) 37)) (-2793 (((-382 (-522)) $) NIL)) (-1738 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) NIL)) (-2190 (((-792) $) 88) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ (-1130 |#1| |#2| |#3|)) 16) (($ (-1158 |#1| |#2| |#3|)) 17) (($ (-1162 |#2|)) 35) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514)))) (-3243 ((|#1| $ (-382 (-522))) NIL)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-1893 ((|#1| $) 12)) (-1759 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1745 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-382 (-522))) 62 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3566 (($) 31 T CONST)) (-3577 (($) 26 T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 33)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
-(((-1151 |#1| |#2| |#3|) (-13 (-1149 |#1| (-1130 |#1| |#2| |#3|)) (-962 (-1158 |#1| |#2| |#3|)) (-10 -8 (-15 -2190 ($ (-1162 |#2|))) (-15 -2157 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -1151))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1151 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1151 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-1858 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1151 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
-(-13 (-1149 |#1| (-1130 |#1| |#2| |#3|)) (-962 (-1158 |#1| |#2| |#3|)) (-10 -8 (-15 -2190 ($ (-1162 |#2|))) (-15 -2157 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 32)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2022 (($ $) NIL)) (-3739 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 (-522) "failed") $) NIL (|has| (-1151 |#2| |#3| |#4|) (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-1151 |#2| |#3| |#4|) (-962 (-382 (-522))))) (((-3 (-1151 |#2| |#3| |#4|) "failed") $) 20)) (-1484 (((-522) $) NIL (|has| (-1151 |#2| |#3| |#4|) (-962 (-522)))) (((-382 (-522)) $) NIL (|has| (-1151 |#2| |#3| |#4|) (-962 (-382 (-522))))) (((-1151 |#2| |#3| |#4|) $) NIL)) (-3156 (($ $) 33)) (-2682 (((-3 $ "failed") $) 25)) (-2071 (($ $) NIL (|has| (-1151 |#2| |#3| |#4|) (-426)))) (-2671 (($ $ (-1151 |#2| |#3| |#4|) (-294 |#2| |#3| |#4|) $) NIL)) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) 11)) (-3340 (((-108) $) NIL)) (-4049 (($ (-1151 |#2| |#3| |#4|) (-294 |#2| |#3| |#4|)) 23)) (-2925 (((-294 |#2| |#3| |#4|) $) NIL)) (-3861 (($ (-1 (-294 |#2| |#3| |#4|) (-294 |#2| |#3| |#4|)) $) NIL)) (-1391 (($ (-1 (-1151 |#2| |#3| |#4|) (-1151 |#2| |#3| |#4|)) $) NIL)) (-4064 (((-3 (-777 |#2|) "failed") $) 73)) (-3128 (($ $) NIL)) (-3138 (((-1151 |#2| |#3| |#4|) $) 18)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-3108 (((-108) $) NIL)) (-3118 (((-1151 |#2| |#3| |#4|) $) NIL)) (-2232 (((-3 $ "failed") $ (-1151 |#2| |#3| |#4|)) NIL (|has| (-1151 |#2| |#3| |#4|) (-514))) (((-3 $ "failed") $ $) NIL)) (-2648 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1151 |#2| |#3| |#4|)) (|:| |%expon| (-294 |#2| |#3| |#4|)) (|:| |%expTerms| (-588 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#2|)))))) (|:| |%type| (-1068))) "failed") $) 56)) (-2793 (((-294 |#2| |#3| |#4|) $) 14)) (-2255 (((-1151 |#2| |#3| |#4|) $) NIL (|has| (-1151 |#2| |#3| |#4|) (-426)))) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ (-1151 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL (-3708 (|has| (-1151 |#2| |#3| |#4|) (-37 (-382 (-522)))) (|has| (-1151 |#2| |#3| |#4|) (-962 (-382 (-522))))))) (-3916 (((-588 (-1151 |#2| |#3| |#4|)) $) NIL)) (-3243 (((-1151 |#2| |#3| |#4|) $ (-294 |#2| |#3| |#4|)) NIL)) (-2143 (((-3 $ "failed") $) NIL (|has| (-1151 |#2| |#3| |#4|) (-133)))) (-2323 (((-708)) NIL)) (-3632 (($ $ $ (-708)) NIL (|has| (-1151 |#2| |#3| |#4|) (-157)))) (-3958 (((-108) $ $) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 61 T CONST)) (-3577 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ (-1151 |#2| |#3| |#4|)) NIL (|has| (-1151 |#2| |#3| |#4|) (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-1151 |#2| |#3| |#4|)) NIL) (($ (-1151 |#2| |#3| |#4|) $) NIL) (($ (-382 (-522)) $) NIL (|has| (-1151 |#2| |#3| |#4|) (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| (-1151 |#2| |#3| |#4|) (-37 (-382 (-522)))))))
-(((-1152 |#1| |#2| |#3| |#4|) (-13 (-301 (-1151 |#2| |#3| |#4|) (-294 |#2| |#3| |#4|)) (-514) (-10 -8 (-15 -4064 ((-3 (-777 |#2|) "failed") $)) (-15 -2648 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1151 |#2| |#3| |#4|)) (|:| |%expon| (-294 |#2| |#3| |#4|)) (|:| |%expTerms| (-588 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#2|)))))) (|:| |%type| (-1068))) "failed") $)))) (-13 (-784) (-962 (-522)) (-584 (-522)) (-426)) (-13 (-27) (-1106) (-405 |#1|)) (-1085) |#2|) (T -1152))
-((-4064 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426))) (-5 *2 (-777 *4)) (-5 *1 (-1152 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1106) (-405 *3))) (-14 *5 (-1085)) (-14 *6 *4))) (-2648 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1151 *4 *5 *6)) (|:| |%expon| (-294 *4 *5 *6)) (|:| |%expTerms| (-588 (-2 (|:| |k| (-382 (-522))) (|:| |c| *4)))))) (|:| |%type| (-1068)))) (-5 *1 (-1152 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1106) (-405 *3))) (-14 *5 (-1085)) (-14 *6 *4))))
-(-13 (-301 (-1151 |#2| |#3| |#4|) (-294 |#2| |#3| |#4|)) (-514) (-10 -8 (-15 -4064 ((-3 (-777 |#2|) "failed") $)) (-15 -2648 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1151 |#2| |#3| |#4|)) (|:| |%expon| (-294 |#2| |#3| |#4|)) (|:| |%expTerms| (-588 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#2|)))))) (|:| |%type| (-1068))) "failed") $))))
-((-3435 ((|#2| $) 29)) (-2093 ((|#2| $) 18)) (-3835 (($ $) 36)) (-3487 (($ $ (-522)) 64)) (-4141 (((-108) $ (-708)) 33)) (-3628 ((|#2| $ |#2|) 61)) (-2049 ((|#2| $ |#2|) 59)) (-2379 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 52) (($ $ "rest" $) 56) ((|#2| $ "last" |#2|) 54)) (-1268 (($ $ (-588 $)) 60)) (-2081 ((|#2| $) 17)) (-2306 (($ $) NIL) (($ $ (-708)) 42)) (-4138 (((-588 $) $) 26)) (-2030 (((-108) $ $) 50)) (-3352 (((-108) $ (-708)) 32)) (-2720 (((-108) $ (-708)) 31)) (-1754 (((-108) $) 28)) (-1442 ((|#2| $) 24) (($ $ (-708)) 46)) (-2545 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-3042 (((-108) $) 22)) (-3107 (($ $) 39)) (-2646 (($ $) 65)) (-2393 (((-708) $) 41)) (-2122 (($ $) 40)) (-4165 (($ $ $) 58) (($ |#2| $) NIL)) (-1749 (((-588 $) $) 27)) (-1531 (((-108) $ $) 48)) (-3480 (((-708) $) 35)))
-(((-1153 |#1| |#2|) (-10 -8 (-15 -3487 (|#1| |#1| (-522))) (-15 -2379 (|#2| |#1| "last" |#2|)) (-15 -2049 (|#2| |#1| |#2|)) (-15 -2379 (|#1| |#1| "rest" |#1|)) (-15 -2379 (|#2| |#1| "first" |#2|)) (-15 -2646 (|#1| |#1|)) (-15 -3107 (|#1| |#1|)) (-15 -2393 ((-708) |#1|)) (-15 -2122 (|#1| |#1|)) (-15 -2093 (|#2| |#1|)) (-15 -2081 (|#2| |#1|)) (-15 -3835 (|#1| |#1|)) (-15 -1442 (|#1| |#1| (-708))) (-15 -2545 (|#2| |#1| "last")) (-15 -1442 (|#2| |#1|)) (-15 -2306 (|#1| |#1| (-708))) (-15 -2545 (|#1| |#1| "rest")) (-15 -2306 (|#1| |#1|)) (-15 -2545 (|#2| |#1| "first")) (-15 -4165 (|#1| |#2| |#1|)) (-15 -4165 (|#1| |#1| |#1|)) (-15 -3628 (|#2| |#1| |#2|)) (-15 -2379 (|#2| |#1| "value" |#2|)) (-15 -1268 (|#1| |#1| (-588 |#1|))) (-15 -2030 ((-108) |#1| |#1|)) (-15 -3042 ((-108) |#1|)) (-15 -2545 (|#2| |#1| "value")) (-15 -3435 (|#2| |#1|)) (-15 -1754 ((-108) |#1|)) (-15 -4138 ((-588 |#1|) |#1|)) (-15 -1749 ((-588 |#1|) |#1|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -3480 ((-708) |#1|)) (-15 -4141 ((-108) |#1| (-708))) (-15 -3352 ((-108) |#1| (-708))) (-15 -2720 ((-108) |#1| (-708)))) (-1154 |#2|) (-1120)) (T -1153))
-NIL
-(-10 -8 (-15 -3487 (|#1| |#1| (-522))) (-15 -2379 (|#2| |#1| "last" |#2|)) (-15 -2049 (|#2| |#1| |#2|)) (-15 -2379 (|#1| |#1| "rest" |#1|)) (-15 -2379 (|#2| |#1| "first" |#2|)) (-15 -2646 (|#1| |#1|)) (-15 -3107 (|#1| |#1|)) (-15 -2393 ((-708) |#1|)) (-15 -2122 (|#1| |#1|)) (-15 -2093 (|#2| |#1|)) (-15 -2081 (|#2| |#1|)) (-15 -3835 (|#1| |#1|)) (-15 -1442 (|#1| |#1| (-708))) (-15 -2545 (|#2| |#1| "last")) (-15 -1442 (|#2| |#1|)) (-15 -2306 (|#1| |#1| (-708))) (-15 -2545 (|#1| |#1| "rest")) (-15 -2306 (|#1| |#1|)) (-15 -2545 (|#2| |#1| "first")) (-15 -4165 (|#1| |#2| |#1|)) (-15 -4165 (|#1| |#1| |#1|)) (-15 -3628 (|#2| |#1| |#2|)) (-15 -2379 (|#2| |#1| "value" |#2|)) (-15 -1268 (|#1| |#1| (-588 |#1|))) (-15 -2030 ((-108) |#1| |#1|)) (-15 -3042 ((-108) |#1|)) (-15 -2545 (|#2| |#1| "value")) (-15 -3435 (|#2| |#1|)) (-15 -1754 ((-108) |#1|)) (-15 -4138 ((-588 |#1|) |#1|)) (-15 -1749 ((-588 |#1|) |#1|)) (-15 -1531 ((-108) |#1| |#1|)) (-15 -3480 ((-708) |#1|)) (-15 -4141 ((-108) |#1| (-708))) (-15 -3352 ((-108) |#1| (-708))) (-15 -2720 ((-108) |#1| (-708))))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3435 ((|#1| $) 48)) (-2093 ((|#1| $) 65)) (-3835 (($ $) 67)) (-3487 (($ $ (-522)) 52 (|has| $ (-6 -4239)))) (-4141 (((-108) $ (-708)) 8)) (-3628 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-1243 (($ $ $) 56 (|has| $ (-6 -4239)))) (-2049 ((|#1| $ |#1|) 54 (|has| $ (-6 -4239)))) (-1346 ((|#1| $ |#1|) 58 (|has| $ (-6 -4239)))) (-2379 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4239))) (($ $ "rest" $) 55 (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4239)))) (-1268 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-2081 ((|#1| $) 66)) (-3175 (($) 7 T CONST)) (-2306 (($ $) 73) (($ $ (-708)) 71)) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-4138 (((-588 $) $) 50)) (-2030 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-3352 (((-108) $ (-708)) 9)) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35)) (-2720 (((-108) $ (-708)) 10)) (-1279 (((-588 |#1|) $) 45)) (-1754 (((-108) $) 49)) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1442 ((|#1| $) 70) (($ $ (-708)) 68)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2294 ((|#1| $) 76) (($ $ (-708)) 74)) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69)) (-2011 (((-522) $ $) 44)) (-3042 (((-108) $) 46)) (-3107 (($ $) 62)) (-2646 (($ $) 59 (|has| $ (-6 -4239)))) (-2393 (((-708) $) 63)) (-2122 (($ $) 64)) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2404 (($ $) 13)) (-2630 (($ $ $) 61 (|has| $ (-6 -4239))) (($ $ |#1|) 60 (|has| $ (-6 -4239)))) (-4165 (($ $ $) 78) (($ |#1| $) 77)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1749 (((-588 $) $) 51)) (-2425 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3533 (((-588 (-999)) $) NIL)) (-1660 (((-1085) $) 11)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) NIL (|has| |#1| (-514)))) (-3495 (($ $ (-382 (-522))) NIL) (($ $ (-382 (-522)) (-382 (-522))) NIL)) (-3024 (((-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|))) $) NIL)) (-3044 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2961 (($ $) NIL (|has| |#1| (-338)))) (-3133 (((-393 $) $) NIL (|has| |#1| (-338)))) (-2016 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2805 (((-108) $ $) NIL (|has| |#1| (-338)))) (-3023 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1270 (($ (-708) (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#1|)))) NIL)) (-3066 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-1130 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1158 |#1| |#2| |#3|) "failed") $) 22)) (-1478 (((-1130 |#1| |#2| |#3|) $) NIL) (((-1158 |#1| |#2| |#3|) $) NIL)) (-2333 (($ $ $) NIL (|has| |#1| (-338)))) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-3515 (((-382 (-522)) $) 57)) (-2303 (($ $ $) NIL (|has| |#1| (-338)))) (-3178 (($ (-382 (-522)) (-1130 |#1| |#2| |#3|)) NIL)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) NIL (|has| |#1| (-338)))) (-2725 (((-108) $) NIL (|has| |#1| (-338)))) (-3672 (((-108) $) NIL)) (-2980 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-382 (-522)) $) NIL) (((-382 (-522)) $ (-382 (-522))) NIL)) (-2859 (((-108) $) NIL)) (-1811 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2895 (($ $ (-850)) NIL) (($ $ (-382 (-522))) NIL)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-382 (-522))) 29) (($ $ (-999) (-382 (-522))) NIL) (($ $ (-588 (-999)) (-588 (-382 (-522)))) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-1238 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2267 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-3602 (((-1130 |#1| |#2| |#3|) $) 60)) (-3830 (((-3 (-1130 |#1| |#2| |#3|) "failed") $) NIL)) (-3170 (((-1130 |#1| |#2| |#3|) $) NIL)) (-2311 (((-1068) $) NIL)) (-3193 (($ $) NIL (|has| |#1| (-338)))) (-2611 (($ $) 38 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) NIL (-3844 (-12 (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 39 (|has| |#1| (-37 (-382 (-522)))))) (-4174 (((-1032) $) NIL)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) NIL (|has| |#1| (-338)))) (-2308 (($ (-588 $)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-2006 (((-393 $) $) NIL (|has| |#1| (-338)))) (-1915 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-338))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) NIL (|has| |#1| (-338)))) (-3934 (($ $ (-382 (-522))) NIL)) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3716 (((-3 (-588 $) "failed") (-588 $) $) NIL (|has| |#1| (-338)))) (-3357 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))))) (-4031 (((-708) $) NIL (|has| |#1| (-338)))) (-2683 ((|#1| $ (-382 (-522))) NIL) (($ $ $) NIL (|has| (-382 (-522)) (-1026)))) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) NIL (|has| |#1| (-338)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) 36 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $ (-1162 |#2|)) 37)) (-2487 (((-382 (-522)) $) NIL)) (-1831 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) NIL)) (-2217 (((-792) $) 88) (($ (-522)) NIL) (($ |#1|) NIL (|has| |#1| (-157))) (($ (-1130 |#1| |#2| |#3|)) 16) (($ (-1158 |#1| |#2| |#3|)) 17) (($ (-1162 |#2|)) 35) (($ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514)))) (-1643 ((|#1| $ (-382 (-522))) NIL)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-1980 ((|#1| $) 12)) (-1856 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1839 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-382 (-522))) 62 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-382 (-522))))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338)))) (-3697 (($) 31 T CONST)) (-3709 (($) 26 T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-382 (-522)) |#1|))))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 33)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ (-522)) NIL (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+(((-1151 |#1| |#2| |#3|) (-13 (-1149 |#1| (-1130 |#1| |#2| |#3|)) (-962 (-1158 |#1| |#2| |#3|)) (-10 -8 (-15 -2217 ($ (-1162 |#2|))) (-15 -2731 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -1151))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1151 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1151 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2611 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1151 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
+(-13 (-1149 |#1| (-1130 |#1| |#2| |#3|)) (-962 (-1158 |#1| |#2| |#3|)) (-10 -8 (-15 -2217 ($ (-1162 |#2|))) (-15 -2731 ($ $ (-1162 |#2|))) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 32)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL)) (-2298 (($ $) NIL)) (-3007 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 (-522) "failed") $) NIL (|has| (-1151 |#2| |#3| |#4|) (-962 (-522)))) (((-3 (-382 (-522)) "failed") $) NIL (|has| (-1151 |#2| |#3| |#4|) (-962 (-382 (-522))))) (((-3 (-1151 |#2| |#3| |#4|) "failed") $) 20)) (-1478 (((-522) $) NIL (|has| (-1151 |#2| |#3| |#4|) (-962 (-522)))) (((-382 (-522)) $) NIL (|has| (-1151 |#2| |#3| |#4|) (-962 (-382 (-522))))) (((-1151 |#2| |#3| |#4|) $) NIL)) (-3241 (($ $) 33)) (-3920 (((-3 $ "failed") $) 25)) (-2883 (($ $) NIL (|has| (-1151 |#2| |#3| |#4|) (-426)))) (-3792 (($ $ (-1151 |#2| |#3| |#4|) (-294 |#2| |#3| |#4|) $) NIL)) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) 11)) (-1374 (((-108) $) NIL)) (-3500 (($ (-1151 |#2| |#3| |#4|) (-294 |#2| |#3| |#4|)) 23)) (-3564 (((-294 |#2| |#3| |#4|) $) NIL)) (-1723 (($ (-1 (-294 |#2| |#3| |#4|) (-294 |#2| |#3| |#4|)) $) NIL)) (-3810 (($ (-1 (-1151 |#2| |#3| |#4|) (-1151 |#2| |#3| |#4|)) $) NIL)) (-3134 (((-3 (-777 |#2|) "failed") $) 73)) (-3216 (($ $) NIL)) (-3224 (((-1151 |#2| |#3| |#4|) $) 18)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3199 (((-108) $) NIL)) (-3207 (((-1151 |#2| |#3| |#4|) $) NIL)) (-2276 (((-3 $ "failed") $ (-1151 |#2| |#3| |#4|)) NIL (|has| (-1151 |#2| |#3| |#4|) (-514))) (((-3 $ "failed") $ $) NIL)) (-1689 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1151 |#2| |#3| |#4|)) (|:| |%expon| (-294 |#2| |#3| |#4|)) (|:| |%expTerms| (-588 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#2|)))))) (|:| |%type| (-1068))) "failed") $) 56)) (-2487 (((-294 |#2| |#3| |#4|) $) 14)) (-2988 (((-1151 |#2| |#3| |#4|) $) NIL (|has| (-1151 |#2| |#3| |#4|) (-426)))) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ (-1151 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-382 (-522))) NIL (-3844 (|has| (-1151 |#2| |#3| |#4|) (-37 (-382 (-522)))) (|has| (-1151 |#2| |#3| |#4|) (-962 (-382 (-522))))))) (-2180 (((-588 (-1151 |#2| |#3| |#4|)) $) NIL)) (-1643 (((-1151 |#2| |#3| |#4|) $ (-294 |#2| |#3| |#4|)) NIL)) (-3040 (((-3 $ "failed") $) NIL (|has| (-1151 |#2| |#3| |#4|) (-133)))) (-2742 (((-708)) NIL)) (-1225 (($ $ $ (-708)) NIL (|has| (-1151 |#2| |#3| |#4|) (-157)))) (-1407 (((-108) $ $) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 61 T CONST)) (-3709 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ (-1151 |#2| |#3| |#4|)) NIL (|has| (-1151 |#2| |#3| |#4|) (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ (-1151 |#2| |#3| |#4|)) NIL) (($ (-1151 |#2| |#3| |#4|) $) NIL) (($ (-382 (-522)) $) NIL (|has| (-1151 |#2| |#3| |#4|) (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| (-1151 |#2| |#3| |#4|) (-37 (-382 (-522)))))))
+(((-1152 |#1| |#2| |#3| |#4|) (-13 (-301 (-1151 |#2| |#3| |#4|) (-294 |#2| |#3| |#4|)) (-514) (-10 -8 (-15 -3134 ((-3 (-777 |#2|) "failed") $)) (-15 -1689 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1151 |#2| |#3| |#4|)) (|:| |%expon| (-294 |#2| |#3| |#4|)) (|:| |%expTerms| (-588 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#2|)))))) (|:| |%type| (-1068))) "failed") $)))) (-13 (-784) (-962 (-522)) (-584 (-522)) (-426)) (-13 (-27) (-1106) (-405 |#1|)) (-1085) |#2|) (T -1152))
+((-3134 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426))) (-5 *2 (-777 *4)) (-5 *1 (-1152 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1106) (-405 *3))) (-14 *5 (-1085)) (-14 *6 *4))) (-1689 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1151 *4 *5 *6)) (|:| |%expon| (-294 *4 *5 *6)) (|:| |%expTerms| (-588 (-2 (|:| |k| (-382 (-522))) (|:| |c| *4)))))) (|:| |%type| (-1068)))) (-5 *1 (-1152 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1106) (-405 *3))) (-14 *5 (-1085)) (-14 *6 *4))))
+(-13 (-301 (-1151 |#2| |#3| |#4|) (-294 |#2| |#3| |#4|)) (-514) (-10 -8 (-15 -3134 ((-3 (-777 |#2|) "failed") $)) (-15 -1689 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1151 |#2| |#3| |#4|)) (|:| |%expon| (-294 |#2| |#3| |#4|)) (|:| |%expTerms| (-588 (-2 (|:| |k| (-382 (-522))) (|:| |c| |#2|)))))) (|:| |%type| (-1068))) "failed") $))))
+((-3526 ((|#2| $) 29)) (-2126 ((|#2| $) 18)) (-3961 (($ $) 36)) (-2211 (($ $ (-522)) 64)) (-2717 (((-108) $ (-708)) 33)) (-1198 ((|#2| $ |#2|) 61)) (-2631 ((|#2| $ |#2|) 59)) (-2437 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 52) (($ $ "rest" $) 56) ((|#2| $ "last" |#2|) 54)) (-2684 (($ $ (-588 $)) 60)) (-2116 ((|#2| $) 17)) (-2352 (($ $) NIL) (($ $ (-708)) 42)) (-2674 (((-588 $) $) 26)) (-2402 (((-108) $ $) 50)) (-1480 (((-108) $ (-708)) 32)) (-3309 (((-108) $ (-708)) 31)) (-3394 (((-108) $) 28)) (-1442 ((|#2| $) 24) (($ $ (-708)) 46)) (-2683 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-3395 (((-108) $) 22)) (-2885 (($ $) 39)) (-1668 (($ $) 65)) (-1321 (((-708) $) 41)) (-1502 (($ $) 40)) (-4170 (($ $ $) 58) (($ |#2| $) NIL)) (-1515 (((-588 $) $) 27)) (-1562 (((-108) $ $) 48)) (-3591 (((-708) $) 35)))
+(((-1153 |#1| |#2|) (-10 -8 (-15 -2211 (|#1| |#1| (-522))) (-15 -2437 (|#2| |#1| "last" |#2|)) (-15 -2631 (|#2| |#1| |#2|)) (-15 -2437 (|#1| |#1| "rest" |#1|)) (-15 -2437 (|#2| |#1| "first" |#2|)) (-15 -1668 (|#1| |#1|)) (-15 -2885 (|#1| |#1|)) (-15 -1321 ((-708) |#1|)) (-15 -1502 (|#1| |#1|)) (-15 -2126 (|#2| |#1|)) (-15 -2116 (|#2| |#1|)) (-15 -3961 (|#1| |#1|)) (-15 -1442 (|#1| |#1| (-708))) (-15 -2683 (|#2| |#1| "last")) (-15 -1442 (|#2| |#1|)) (-15 -2352 (|#1| |#1| (-708))) (-15 -2683 (|#1| |#1| "rest")) (-15 -2352 (|#1| |#1|)) (-15 -2683 (|#2| |#1| "first")) (-15 -4170 (|#1| |#2| |#1|)) (-15 -4170 (|#1| |#1| |#1|)) (-15 -1198 (|#2| |#1| |#2|)) (-15 -2437 (|#2| |#1| "value" |#2|)) (-15 -2684 (|#1| |#1| (-588 |#1|))) (-15 -2402 ((-108) |#1| |#1|)) (-15 -3395 ((-108) |#1|)) (-15 -2683 (|#2| |#1| "value")) (-15 -3526 (|#2| |#1|)) (-15 -3394 ((-108) |#1|)) (-15 -2674 ((-588 |#1|) |#1|)) (-15 -1515 ((-588 |#1|) |#1|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -3591 ((-708) |#1|)) (-15 -2717 ((-108) |#1| (-708))) (-15 -1480 ((-108) |#1| (-708))) (-15 -3309 ((-108) |#1| (-708)))) (-1154 |#2|) (-1120)) (T -1153))
+NIL
+(-10 -8 (-15 -2211 (|#1| |#1| (-522))) (-15 -2437 (|#2| |#1| "last" |#2|)) (-15 -2631 (|#2| |#1| |#2|)) (-15 -2437 (|#1| |#1| "rest" |#1|)) (-15 -2437 (|#2| |#1| "first" |#2|)) (-15 -1668 (|#1| |#1|)) (-15 -2885 (|#1| |#1|)) (-15 -1321 ((-708) |#1|)) (-15 -1502 (|#1| |#1|)) (-15 -2126 (|#2| |#1|)) (-15 -2116 (|#2| |#1|)) (-15 -3961 (|#1| |#1|)) (-15 -1442 (|#1| |#1| (-708))) (-15 -2683 (|#2| |#1| "last")) (-15 -1442 (|#2| |#1|)) (-15 -2352 (|#1| |#1| (-708))) (-15 -2683 (|#1| |#1| "rest")) (-15 -2352 (|#1| |#1|)) (-15 -2683 (|#2| |#1| "first")) (-15 -4170 (|#1| |#2| |#1|)) (-15 -4170 (|#1| |#1| |#1|)) (-15 -1198 (|#2| |#1| |#2|)) (-15 -2437 (|#2| |#1| "value" |#2|)) (-15 -2684 (|#1| |#1| (-588 |#1|))) (-15 -2402 ((-108) |#1| |#1|)) (-15 -3395 ((-108) |#1|)) (-15 -2683 (|#2| |#1| "value")) (-15 -3526 (|#2| |#1|)) (-15 -3394 ((-108) |#1|)) (-15 -2674 ((-588 |#1|) |#1|)) (-15 -1515 ((-588 |#1|) |#1|)) (-15 -1562 ((-108) |#1| |#1|)) (-15 -3591 ((-708) |#1|)) (-15 -2717 ((-108) |#1| (-708))) (-15 -1480 ((-108) |#1| (-708))) (-15 -3309 ((-108) |#1| (-708))))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3526 ((|#1| $) 48)) (-2126 ((|#1| $) 65)) (-3961 (($ $) 67)) (-2211 (($ $ (-522)) 52 (|has| $ (-6 -4239)))) (-2717 (((-108) $ (-708)) 8)) (-1198 ((|#1| $ |#1|) 39 (|has| $ (-6 -4239)))) (-2398 (($ $ $) 56 (|has| $ (-6 -4239)))) (-2631 ((|#1| $ |#1|) 54 (|has| $ (-6 -4239)))) (-3393 ((|#1| $ |#1|) 58 (|has| $ (-6 -4239)))) (-2437 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4239))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4239))) (($ $ "rest" $) 55 (|has| $ (-6 -4239))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4239)))) (-2684 (($ $ (-588 $)) 41 (|has| $ (-6 -4239)))) (-2116 ((|#1| $) 66)) (-3367 (($) 7 T CONST)) (-2352 (($ $) 73) (($ $ (-708)) 71)) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-2674 (((-588 $) $) 50)) (-2402 (((-108) $ $) 42 (|has| |#1| (-1014)))) (-1480 (((-108) $ (-708)) 9)) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-108) $ (-708)) 10)) (-2548 (((-588 |#1|) $) 45)) (-3394 (((-108) $) 49)) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1442 ((|#1| $) 70) (($ $ (-708)) 68)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2337 ((|#1| $) 76) (($ $ (-708)) 74)) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69)) (-3381 (((-522) $ $) 44)) (-3395 (((-108) $) 46)) (-2885 (($ $) 62)) (-1668 (($ $) 59 (|has| $ (-6 -4239)))) (-1321 (((-708) $) 63)) (-1502 (($ $) 64)) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2463 (($ $) 13)) (-2335 (($ $ $) 61 (|has| $ (-6 -4239))) (($ $ |#1|) 60 (|has| $ (-6 -4239)))) (-4170 (($ $ $) 78) (($ |#1| $) 77)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1515 (((-588 $) $) 51)) (-3294 (((-108) $ $) 43 (|has| |#1| (-1014)))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-1154 |#1|) (-1197) (-1120)) (T -1154))
-((-4165 (*1 *1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-4165 (*1 *1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2294 (*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2545 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2294 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1154 *3)) (-4 *3 (-1120)))) (-2306 (*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2545 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1154 *3)) (-4 *3 (-1120)))) (-2306 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1154 *3)) (-4 *3 (-1120)))) (-1442 (*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2545 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-1442 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1154 *3)) (-4 *3 (-1120)))) (-3835 (*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2081 (*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2093 (*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2122 (*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2393 (*1 *2 *1) (-12 (-4 *1 (-1154 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))) (-3107 (*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2630 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2630 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2646 (*1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-1346 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2379 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-1243 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2379 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4239)) (-4 *1 (-1154 *3)) (-4 *3 (-1120)))) (-2049 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2379 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-3487 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (|has| *1 (-6 -4239)) (-4 *1 (-1154 *3)) (-4 *3 (-1120)))))
-(-13 (-936 |t#1|) (-10 -8 (-15 -4165 ($ $ $)) (-15 -4165 ($ |t#1| $)) (-15 -2294 (|t#1| $)) (-15 -2545 (|t#1| $ "first")) (-15 -2294 ($ $ (-708))) (-15 -2306 ($ $)) (-15 -2545 ($ $ "rest")) (-15 -2306 ($ $ (-708))) (-15 -1442 (|t#1| $)) (-15 -2545 (|t#1| $ "last")) (-15 -1442 ($ $ (-708))) (-15 -3835 ($ $)) (-15 -2081 (|t#1| $)) (-15 -2093 (|t#1| $)) (-15 -2122 ($ $)) (-15 -2393 ((-708) $)) (-15 -3107 ($ $)) (IF (|has| $ (-6 -4239)) (PROGN (-15 -2630 ($ $ $)) (-15 -2630 ($ $ |t#1|)) (-15 -2646 ($ $)) (-15 -1346 (|t#1| $ |t#1|)) (-15 -2379 (|t#1| $ "first" |t#1|)) (-15 -1243 ($ $ $)) (-15 -2379 ($ $ "rest" $)) (-15 -2049 (|t#1| $ |t#1|)) (-15 -2379 (|t#1| $ "last" |t#1|)) (-15 -3487 ($ $ (-522)))) |%noBranch|)))
-(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-936 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
-((-1391 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
-(((-1155 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1391 (|#4| (-1 |#2| |#1|) |#3|))) (-971) (-971) (-1157 |#1|) (-1157 |#2|)) (T -1155))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-4 *2 (-1157 *6)) (-5 *1 (-1155 *5 *6 *4 *2)) (-4 *4 (-1157 *5)))))
-(-10 -7 (-15 -1391 (|#4| (-1 |#2| |#1|) |#3|)))
-((-2250 (((-108) $) 15)) (-2908 (($ $) 91)) (-2772 (($ $) 67)) (-2884 (($ $) 87)) (-2748 (($ $) 63)) (-2930 (($ $) 95)) (-2794 (($ $) 71)) (-1254 (($ $) 61)) (-3266 (($ $) 59)) (-1738 (($ $) 97)) (-2804 (($ $) 73)) (-2919 (($ $) 93)) (-2784 (($ $) 69)) (-2896 (($ $) 89)) (-2761 (($ $) 65)) (-2190 (((-792) $) 47) (($ (-522)) NIL) (($ (-382 (-522))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-1759 (($ $) 103)) (-2836 (($ $) 79)) (-1745 (($ $) 99)) (-2815 (($ $) 75)) (-1776 (($ $) 107)) (-2860 (($ $) 83)) (-3924 (($ $) 109)) (-2872 (($ $) 85)) (-1768 (($ $) 105)) (-2848 (($ $) 81)) (-1752 (($ $) 101)) (-2825 (($ $) 77)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ |#2|) 51) (($ $ $) 54) (($ $ (-382 (-522))) 57)))
-(((-1156 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-382 (-522)))) (-15 -2772 (|#1| |#1|)) (-15 -2748 (|#1| |#1|)) (-15 -2794 (|#1| |#1|)) (-15 -2804 (|#1| |#1|)) (-15 -2784 (|#1| |#1|)) (-15 -2761 (|#1| |#1|)) (-15 -2825 (|#1| |#1|)) (-15 -2848 (|#1| |#1|)) (-15 -2872 (|#1| |#1|)) (-15 -2860 (|#1| |#1|)) (-15 -2815 (|#1| |#1|)) (-15 -2836 (|#1| |#1|)) (-15 -2896 (|#1| |#1|)) (-15 -2919 (|#1| |#1|)) (-15 -1738 (|#1| |#1|)) (-15 -2930 (|#1| |#1|)) (-15 -2884 (|#1| |#1|)) (-15 -2908 (|#1| |#1|)) (-15 -1752 (|#1| |#1|)) (-15 -1768 (|#1| |#1|)) (-15 -3924 (|#1| |#1|)) (-15 -1776 (|#1| |#1|)) (-15 -1745 (|#1| |#1|)) (-15 -1759 (|#1| |#1|)) (-15 -1254 (|#1| |#1|)) (-15 -3266 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -2190 (|#1| |#2|)) (-15 -2190 (|#1| |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 (|#1| (-522))) (-15 ** (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-850))) (-15 -2250 ((-108) |#1|)) (-15 -2190 ((-792) |#1|))) (-1157 |#2|) (-971)) (T -1156))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-382 (-522)))) (-15 -2772 (|#1| |#1|)) (-15 -2748 (|#1| |#1|)) (-15 -2794 (|#1| |#1|)) (-15 -2804 (|#1| |#1|)) (-15 -2784 (|#1| |#1|)) (-15 -2761 (|#1| |#1|)) (-15 -2825 (|#1| |#1|)) (-15 -2848 (|#1| |#1|)) (-15 -2872 (|#1| |#1|)) (-15 -2860 (|#1| |#1|)) (-15 -2815 (|#1| |#1|)) (-15 -2836 (|#1| |#1|)) (-15 -2896 (|#1| |#1|)) (-15 -2919 (|#1| |#1|)) (-15 -1738 (|#1| |#1|)) (-15 -2930 (|#1| |#1|)) (-15 -2884 (|#1| |#1|)) (-15 -2908 (|#1| |#1|)) (-15 -1752 (|#1| |#1|)) (-15 -1768 (|#1| |#1|)) (-15 -3924 (|#1| |#1|)) (-15 -1776 (|#1| |#1|)) (-15 -1745 (|#1| |#1|)) (-15 -1759 (|#1| |#1|)) (-15 -1254 (|#1| |#1|)) (-15 -3266 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -2190 (|#1| |#2|)) (-15 -2190 (|#1| |#1|)) (-15 -2190 (|#1| (-382 (-522)))) (-15 -2190 (|#1| (-522))) (-15 ** (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-850))) (-15 -2250 ((-108) |#1|)) (-15 -2190 ((-792) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4090 (((-588 (-999)) $) 74)) (-1611 (((-1085) $) 103)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2022 (($ $) 52 (|has| |#1| (-514)))) (-3739 (((-108) $) 54 (|has| |#1| (-514)))) (-2789 (($ $ (-708)) 98) (($ $ (-708) (-708)) 97)) (-2258 (((-1066 (-2 (|:| |k| (-708)) (|:| |c| |#1|))) $) 105)) (-2908 (($ $) 135 (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) 118 (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) 19)) (-1929 (($ $) 117 (|has| |#1| (-37 (-382 (-522)))))) (-2884 (($ $) 134 (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) 119 (|has| |#1| (-37 (-382 (-522)))))) (-2773 (($ (-1066 (-2 (|:| |k| (-708)) (|:| |c| |#1|)))) 155) (($ (-1066 |#1|)) 153)) (-2930 (($ $) 133 (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) 120 (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) 17 T CONST)) (-3156 (($ $) 60)) (-2682 (((-3 $ "failed") $) 34)) (-3546 (($ $) 152)) (-2199 (((-881 |#1|) $ (-708)) 150) (((-881 |#1|) $ (-708) (-708)) 149)) (-3390 (((-108) $) 73)) (-2838 (($) 145 (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-708) $) 100) (((-708) $ (-708)) 99)) (-2782 (((-108) $) 31)) (-1504 (($ $ (-522)) 116 (|has| |#1| (-37 (-382 (-522)))))) (-2073 (($ $ (-850)) 101)) (-3950 (($ (-1 |#1| (-522)) $) 151)) (-3340 (((-108) $) 62)) (-4049 (($ |#1| (-708)) 61) (($ $ (-999) (-708)) 76) (($ $ (-588 (-999)) (-588 (-708))) 75)) (-1391 (($ (-1 |#1| |#1|) $) 63)) (-1254 (($ $) 142 (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) 65)) (-3138 ((|#1| $) 66)) (-2385 (((-1068) $) 9)) (-1858 (($ $) 147 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 146 (-3708 (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-887)) (|has| |#1| (-1106)) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-37 (-382 (-522)))))))) (-4151 (((-1032) $) 10)) (-3719 (($ $ (-708)) 95)) (-2232 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-3266 (($ $) 143 (|has| |#1| (-37 (-382 (-522)))))) (-2289 (((-1066 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-708)))))) (-2545 ((|#1| $ (-708)) 104) (($ $ $) 81 (|has| (-708) (-1026)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) 89 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-1085) (-708)) 88 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-588 (-1085))) 87 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-1085)) 86 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-708)) 84 (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (-2793 (((-708) $) 64)) (-1738 (($ $) 132 (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) 121 (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) 131 (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) 122 (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) 130 (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) 123 (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) 72)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514))) (($ |#1|) 47 (|has| |#1| (-157)))) (-3916 (((-1066 |#1|) $) 154)) (-3243 ((|#1| $ (-708)) 59)) (-2143 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2323 (((-708)) 29)) (-1893 ((|#1| $) 102)) (-1759 (($ $) 141 (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) 129 (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) 53 (|has| |#1| (-514)))) (-1745 (($ $) 140 (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) 128 (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) 139 (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) 127 (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-708)) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-708)))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) 138 (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) 126 (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) 137 (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) 125 (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) 136 (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) 124 (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) 93 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-1085) (-708)) 92 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-588 (-1085))) 91 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-1085)) 90 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-708)) 85 (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#1|) 58 (|has| |#1| (-338)))) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ |#1|) 148 (|has| |#1| (-338))) (($ $ $) 144 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 115 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
+((-4170 (*1 *1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-4170 (*1 *1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2337 (*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2683 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2337 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1154 *3)) (-4 *3 (-1120)))) (-2352 (*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2683 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1154 *3)) (-4 *3 (-1120)))) (-2352 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1154 *3)) (-4 *3 (-1120)))) (-1442 (*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2683 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-1442 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1154 *3)) (-4 *3 (-1120)))) (-3961 (*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2116 (*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2126 (*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-1502 (*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-1321 (*1 *2 *1) (-12 (-4 *1 (-1154 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))) (-2885 (*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2335 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2335 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-1668 (*1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-3393 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2437 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2398 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2437 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4239)) (-4 *1 (-1154 *3)) (-4 *3 (-1120)))) (-2631 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2437 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))) (-2211 (*1 *1 *1 *2) (-12 (-5 *2 (-522)) (|has| *1 (-6 -4239)) (-4 *1 (-1154 *3)) (-4 *3 (-1120)))))
+(-13 (-936 |t#1|) (-10 -8 (-15 -4170 ($ $ $)) (-15 -4170 ($ |t#1| $)) (-15 -2337 (|t#1| $)) (-15 -2683 (|t#1| $ "first")) (-15 -2337 ($ $ (-708))) (-15 -2352 ($ $)) (-15 -2683 ($ $ "rest")) (-15 -2352 ($ $ (-708))) (-15 -1442 (|t#1| $)) (-15 -2683 (|t#1| $ "last")) (-15 -1442 ($ $ (-708))) (-15 -3961 ($ $)) (-15 -2116 (|t#1| $)) (-15 -2126 (|t#1| $)) (-15 -1502 ($ $)) (-15 -1321 ((-708) $)) (-15 -2885 ($ $)) (IF (|has| $ (-6 -4239)) (PROGN (-15 -2335 ($ $ $)) (-15 -2335 ($ $ |t#1|)) (-15 -1668 ($ $)) (-15 -3393 (|t#1| $ |t#1|)) (-15 -2437 (|t#1| $ "first" |t#1|)) (-15 -2398 ($ $ $)) (-15 -2437 ($ $ "rest" $)) (-15 -2631 (|t#1| $ |t#1|)) (-15 -2437 (|t#1| $ "last" |t#1|)) (-15 -2211 ($ $ (-522)))) |%noBranch|)))
+(((-33) . T) ((-97) |has| |#1| (-1014)) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-562 (-792)))) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-461 |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-936 |#1|) . T) ((-1014) |has| |#1| (-1014)) ((-1120) . T))
+((-3810 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
+(((-1155 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3810 (|#4| (-1 |#2| |#1|) |#3|))) (-971) (-971) (-1157 |#1|) (-1157 |#2|)) (T -1155))
+((-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-971)) (-4 *6 (-971)) (-4 *2 (-1157 *6)) (-5 *1 (-1155 *5 *6 *4 *2)) (-4 *4 (-1157 *5)))))
+(-10 -7 (-15 -3810 (|#4| (-1 |#2| |#1|) |#3|)))
+((-2944 (((-108) $) 15)) (-3044 (($ $) 91)) (-2923 (($ $) 67)) (-3023 (($ $) 87)) (-2906 (($ $) 63)) (-3066 (($ $) 95)) (-2936 (($ $) 71)) (-1238 (($ $) 61)) (-3357 (($ $) 59)) (-1831 (($ $) 97)) (-2946 (($ $) 73)) (-3054 (($ $) 93)) (-2928 (($ $) 69)) (-3035 (($ $) 89)) (-2915 (($ $) 65)) (-2217 (((-792) $) 47) (($ (-522)) NIL) (($ (-382 (-522))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-1856 (($ $) 103)) (-2976 (($ $) 79)) (-1839 (($ $) 99)) (-2957 (($ $) 75)) (-1873 (($ $) 107)) (-3001 (($ $) 83)) (-2476 (($ $) 109)) (-3011 (($ $) 85)) (-1864 (($ $) 105)) (-2989 (($ $) 81)) (-1849 (($ $) 101)) (-2966 (($ $) 77)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ |#2|) 51) (($ $ $) 54) (($ $ (-382 (-522))) 57)))
+(((-1156 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-382 (-522)))) (-15 -2923 (|#1| |#1|)) (-15 -2906 (|#1| |#1|)) (-15 -2936 (|#1| |#1|)) (-15 -2946 (|#1| |#1|)) (-15 -2928 (|#1| |#1|)) (-15 -2915 (|#1| |#1|)) (-15 -2966 (|#1| |#1|)) (-15 -2989 (|#1| |#1|)) (-15 -3011 (|#1| |#1|)) (-15 -3001 (|#1| |#1|)) (-15 -2957 (|#1| |#1|)) (-15 -2976 (|#1| |#1|)) (-15 -3035 (|#1| |#1|)) (-15 -3054 (|#1| |#1|)) (-15 -1831 (|#1| |#1|)) (-15 -3066 (|#1| |#1|)) (-15 -3023 (|#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -1849 (|#1| |#1|)) (-15 -1864 (|#1| |#1|)) (-15 -2476 (|#1| |#1|)) (-15 -1873 (|#1| |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -1856 (|#1| |#1|)) (-15 -1238 (|#1| |#1|)) (-15 -3357 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -2217 (|#1| |#2|)) (-15 -2217 (|#1| |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 (|#1| (-522))) (-15 ** (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-850))) (-15 -2944 ((-108) |#1|)) (-15 -2217 ((-792) |#1|))) (-1157 |#2|) (-971)) (T -1156))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-382 (-522)))) (-15 -2923 (|#1| |#1|)) (-15 -2906 (|#1| |#1|)) (-15 -2936 (|#1| |#1|)) (-15 -2946 (|#1| |#1|)) (-15 -2928 (|#1| |#1|)) (-15 -2915 (|#1| |#1|)) (-15 -2966 (|#1| |#1|)) (-15 -2989 (|#1| |#1|)) (-15 -3011 (|#1| |#1|)) (-15 -3001 (|#1| |#1|)) (-15 -2957 (|#1| |#1|)) (-15 -2976 (|#1| |#1|)) (-15 -3035 (|#1| |#1|)) (-15 -3054 (|#1| |#1|)) (-15 -1831 (|#1| |#1|)) (-15 -3066 (|#1| |#1|)) (-15 -3023 (|#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -1849 (|#1| |#1|)) (-15 -1864 (|#1| |#1|)) (-15 -2476 (|#1| |#1|)) (-15 -1873 (|#1| |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -1856 (|#1| |#1|)) (-15 -1238 (|#1| |#1|)) (-15 -3357 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -2217 (|#1| |#2|)) (-15 -2217 (|#1| |#1|)) (-15 -2217 (|#1| (-382 (-522)))) (-15 -2217 (|#1| (-522))) (-15 ** (|#1| |#1| (-708))) (-15 ** (|#1| |#1| (-850))) (-15 -2944 ((-108) |#1|)) (-15 -2217 ((-792) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3533 (((-588 (-999)) $) 74)) (-1660 (((-1085) $) 103)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 51 (|has| |#1| (-514)))) (-2298 (($ $) 52 (|has| |#1| (-514)))) (-3007 (((-108) $) 54 (|has| |#1| (-514)))) (-3495 (($ $ (-708)) 98) (($ $ (-708) (-708)) 97)) (-3024 (((-1066 (-2 (|:| |k| (-708)) (|:| |c| |#1|))) $) 105)) (-3044 (($ $) 135 (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) 118 (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) 19)) (-2016 (($ $) 117 (|has| |#1| (-37 (-382 (-522)))))) (-3023 (($ $) 134 (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) 119 (|has| |#1| (-37 (-382 (-522)))))) (-1270 (($ (-1066 (-2 (|:| |k| (-708)) (|:| |c| |#1|)))) 155) (($ (-1066 |#1|)) 153)) (-3066 (($ $) 133 (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) 120 (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) 17 T CONST)) (-3241 (($ $) 60)) (-3920 (((-3 $ "failed") $) 34)) (-2889 (($ $) 152)) (-3710 (((-881 |#1|) $ (-708)) 150) (((-881 |#1|) $ (-708) (-708)) 149)) (-3672 (((-108) $) 73)) (-2980 (($) 145 (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-708) $) 100) (((-708) $ (-708)) 99)) (-2859 (((-108) $) 31)) (-1811 (($ $ (-522)) 116 (|has| |#1| (-37 (-382 (-522)))))) (-2895 (($ $ (-850)) 101)) (-1332 (($ (-1 |#1| (-522)) $) 151)) (-1374 (((-108) $) 62)) (-3500 (($ |#1| (-708)) 61) (($ $ (-999) (-708)) 76) (($ $ (-588 (-999)) (-588 (-708))) 75)) (-3810 (($ (-1 |#1| |#1|) $) 63)) (-1238 (($ $) 142 (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) 65)) (-3224 ((|#1| $) 66)) (-2311 (((-1068) $) 9)) (-2611 (($ $) 147 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 146 (-3844 (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-887)) (|has| |#1| (-1106)) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-37 (-382 (-522)))))))) (-4174 (((-1032) $) 10)) (-3934 (($ $ (-708)) 95)) (-2276 (((-3 $ "failed") $ $) 50 (|has| |#1| (-514)))) (-3357 (($ $) 143 (|has| |#1| (-37 (-382 (-522)))))) (-2330 (((-1066 |#1|) $ |#1|) 94 (|has| |#1| (-15 ** (|#1| |#1| (-708)))))) (-2683 ((|#1| $ (-708)) 104) (($ $ $) 81 (|has| (-708) (-1026)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) 89 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-1085) (-708)) 88 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-588 (-1085))) 87 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-1085)) 86 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-708)) 84 (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $) 82 (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (-2487 (((-708) $) 64)) (-1831 (($ $) 132 (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) 121 (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) 131 (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) 122 (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) 130 (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) 123 (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) 72)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ (-382 (-522))) 57 (|has| |#1| (-37 (-382 (-522))))) (($ $) 49 (|has| |#1| (-514))) (($ |#1|) 47 (|has| |#1| (-157)))) (-2180 (((-1066 |#1|) $) 154)) (-1643 ((|#1| $ (-708)) 59)) (-3040 (((-3 $ "failed") $) 48 (|has| |#1| (-133)))) (-2742 (((-708)) 29)) (-1980 ((|#1| $) 102)) (-1856 (($ $) 141 (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) 129 (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) 53 (|has| |#1| (-514)))) (-1839 (($ $) 140 (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) 128 (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) 139 (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) 127 (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-708)) 96 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-708)))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) 138 (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) 126 (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) 137 (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) 125 (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) 136 (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) 124 (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) 93 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-1085) (-708)) 92 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-588 (-1085))) 91 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-1085)) 90 (-12 (|has| |#1| (-829 (-1085))) (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (($ $ (-708)) 85 (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $) 83 (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#1|) 58 (|has| |#1| (-338)))) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ |#1|) 148 (|has| |#1| (-338))) (($ $ $) 144 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 115 (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 68) (($ |#1| $) 67) (($ (-382 (-522)) $) 56 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) 55 (|has| |#1| (-37 (-382 (-522)))))))
(((-1157 |#1|) (-1197) (-971)) (T -1157))
-((-2773 (*1 *1 *2) (-12 (-5 *2 (-1066 (-2 (|:| |k| (-708)) (|:| |c| *3)))) (-4 *3 (-971)) (-4 *1 (-1157 *3)))) (-3916 (*1 *2 *1) (-12 (-4 *1 (-1157 *3)) (-4 *3 (-971)) (-5 *2 (-1066 *3)))) (-2773 (*1 *1 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-4 *1 (-1157 *3)))) (-3546 (*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-971)))) (-3950 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-522))) (-4 *1 (-1157 *3)) (-4 *3 (-971)))) (-2199 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-1157 *4)) (-4 *4 (-971)) (-5 *2 (-881 *4)))) (-2199 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-708)) (-4 *1 (-1157 *4)) (-4 *4 (-971)) (-5 *2 (-881 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-1858 (*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522)))))) (-1858 (*1 *1 *1 *2) (-3708 (-12 (-5 *2 (-1085)) (-4 *1 (-1157 *3)) (-4 *3 (-971)) (-12 (-4 *3 (-29 (-522))) (-4 *3 (-887)) (-4 *3 (-1106)) (-4 *3 (-37 (-382 (-522)))))) (-12 (-5 *2 (-1085)) (-4 *1 (-1157 *3)) (-4 *3 (-971)) (-12 (|has| *3 (-15 -4090 ((-588 *2) *3))) (|has| *3 (-15 -1858 (*3 *3 *2))) (-4 *3 (-37 (-382 (-522)))))))))
-(-13 (-1144 |t#1| (-708)) (-10 -8 (-15 -2773 ($ (-1066 (-2 (|:| |k| (-708)) (|:| |c| |t#1|))))) (-15 -3916 ((-1066 |t#1|) $)) (-15 -2773 ($ (-1066 |t#1|))) (-15 -3546 ($ $)) (-15 -3950 ($ (-1 |t#1| (-522)) $)) (-15 -2199 ((-881 |t#1|) $ (-708))) (-15 -2199 ((-881 |t#1|) $ (-708) (-708))) (IF (|has| |t#1| (-338)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-37 (-382 (-522)))) (PROGN (-15 -1858 ($ $)) (IF (|has| |t#1| (-15 -1858 (|t#1| |t#1| (-1085)))) (IF (|has| |t#1| (-15 -4090 ((-588 (-1085)) |t#1|))) (-15 -1858 ($ $ (-1085))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1106)) (IF (|has| |t#1| (-887)) (IF (|has| |t#1| (-29 (-522))) (-15 -1858 ($ $ (-1085))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-928)) (-6 (-1106))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-708)) . T) ((-25) . T) ((-37 #1=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-34) |has| |#1| (-37 (-382 (-522)))) ((-91) |has| |#1| (-37 (-382 (-522)))) ((-97) . T) ((-107 #1# #1#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-210) |has| |#1| (-15 * (|#1| (-708) |#1|))) ((-260) |has| |#1| (-37 (-382 (-522)))) ((-262 $ $) |has| (-708) (-1026)) ((-266) |has| |#1| (-514)) ((-463) |has| |#1| (-37 (-382 (-522)))) ((-514) |has| |#1| (-514)) ((-590 #1#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #1#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) . T) ((-829 (-1085)) -12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085)))) ((-900 |#1| #0# (-999)) . T) ((-928) |has| |#1| (-37 (-382 (-522)))) ((-977 #1#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3708 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1106) |has| |#1| (-37 (-382 (-522)))) ((-1109) |has| |#1| (-37 (-382 (-522)))) ((-1144 |#1| #0#) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4090 (((-588 (-999)) $) NIL)) (-1611 (((-1085) $) 87)) (-2549 (((-1139 |#2| |#1|) $ (-708)) 73)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2022 (($ $) NIL (|has| |#1| (-514)))) (-3739 (((-108) $) 136 (|has| |#1| (-514)))) (-2789 (($ $ (-708)) 121) (($ $ (-708) (-708)) 123)) (-2258 (((-1066 (-2 (|:| |k| (-708)) (|:| |c| |#1|))) $) 42)) (-2908 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2772 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1233 (((-3 $ "failed") $ $) NIL)) (-1929 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2884 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2748 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2773 (($ (-1066 (-2 (|:| |k| (-708)) (|:| |c| |#1|)))) 53) (($ (-1066 |#1|)) NIL)) (-2930 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2794 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3175 (($) NIL T CONST)) (-1867 (($ $) 127)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3546 (($ $) 134)) (-2199 (((-881 |#1|) $ (-708)) 63) (((-881 |#1|) $ (-708) (-708)) 65)) (-3390 (((-108) $) NIL)) (-2838 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3714 (((-708) $) NIL) (((-708) $ (-708)) NIL)) (-2782 (((-108) $) NIL)) (-1773 (($ $) 111)) (-1504 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3814 (($ (-522) (-522) $) 129)) (-2073 (($ $ (-850)) 133)) (-3950 (($ (-1 |#1| (-522)) $) 105)) (-3340 (((-108) $) NIL)) (-4049 (($ |#1| (-708)) 15) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-1391 (($ (-1 |#1| |#1|) $) 93)) (-1254 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3128 (($ $) NIL)) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-1511 (($ $) 109)) (-2358 (($ $) 107)) (-1958 (($ (-522) (-522) $) 131)) (-1858 (($ $) 144 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 150 (-3708 (-12 (|has| |#1| (-15 -1858 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -4090 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 145 (|has| |#1| (-37 (-382 (-522)))))) (-4151 (((-1032) $) NIL)) (-1310 (($ $ (-522) (-522)) 115)) (-3719 (($ $ (-708)) 117)) (-2232 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3266 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3755 (($ $) 113)) (-2289 (((-1066 |#1|) $ |#1|) 95 (|has| |#1| (-15 ** (|#1| |#1| (-708)))))) (-2545 ((|#1| $ (-708)) 90) (($ $ $) 125 (|has| (-708) (-1026)))) (-2157 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) 102 (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $) 97 (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $ (-1162 |#2|)) 98)) (-2793 (((-708) $) NIL)) (-1738 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2804 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2919 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2784 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2896 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2761 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1522 (($ $) 119)) (-2190 (((-792) $) NIL) (($ (-522)) 24) (($ (-382 (-522))) 142 (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514))) (($ |#1|) 23 (|has| |#1| (-157))) (($ (-1139 |#2| |#1|)) 80) (($ (-1162 |#2|)) 20)) (-3916 (((-1066 |#1|) $) NIL)) (-3243 ((|#1| $ (-708)) 89)) (-2143 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2323 (((-708)) NIL)) (-1893 ((|#1| $) 88)) (-1759 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2836 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3958 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1745 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2815 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1776 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2860 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3898 ((|#1| $ (-708)) 86 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-708)))) (|has| |#1| (-15 -2190 (|#1| (-1085))))))) (-3924 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2872 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1768 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2848 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1752 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2825 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 17 T CONST)) (-3577 (($) 13 T CONST)) (-2213 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (-1531 (((-108) $ $) NIL)) (-1620 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) 101)) (-1602 (($ $ $) 18)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ |#1|) 139 (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 100) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
-(((-1158 |#1| |#2| |#3|) (-13 (-1157 |#1|) (-10 -8 (-15 -2190 ($ (-1139 |#2| |#1|))) (-15 -2549 ((-1139 |#2| |#1|) $ (-708))) (-15 -2190 ($ (-1162 |#2|))) (-15 -2157 ($ $ (-1162 |#2|))) (-15 -2358 ($ $)) (-15 -1511 ($ $)) (-15 -1773 ($ $)) (-15 -3755 ($ $)) (-15 -1310 ($ $ (-522) (-522))) (-15 -1867 ($ $)) (-15 -3814 ($ (-522) (-522) $)) (-15 -1958 ($ (-522) (-522) $)) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -1158))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-1139 *4 *3)) (-4 *3 (-971)) (-14 *4 (-1085)) (-14 *5 *3) (-5 *1 (-1158 *3 *4 *5)))) (-2549 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1139 *5 *4)) (-5 *1 (-1158 *4 *5 *6)) (-4 *4 (-971)) (-14 *5 (-1085)) (-14 *6 *4))) (-2190 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2157 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2358 (*1 *1 *1) (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085)) (-14 *4 *2))) (-1511 (*1 *1 *1) (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085)) (-14 *4 *2))) (-1773 (*1 *1 *1) (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085)) (-14 *4 *2))) (-3755 (*1 *1 *1) (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085)) (-14 *4 *2))) (-1310 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971)) (-14 *4 (-1085)) (-14 *5 *3))) (-1867 (*1 *1 *1) (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085)) (-14 *4 *2))) (-3814 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971)) (-14 *4 (-1085)) (-14 *5 *3))) (-1958 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971)) (-14 *4 (-1085)) (-14 *5 *3))) (-1858 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
-(-13 (-1157 |#1|) (-10 -8 (-15 -2190 ($ (-1139 |#2| |#1|))) (-15 -2549 ((-1139 |#2| |#1|) $ (-708))) (-15 -2190 ($ (-1162 |#2|))) (-15 -2157 ($ $ (-1162 |#2|))) (-15 -2358 ($ $)) (-15 -1511 ($ $)) (-15 -1773 ($ $)) (-15 -3755 ($ $)) (-15 -1310 ($ $ (-522) (-522))) (-15 -1867 ($ $)) (-15 -3814 ($ (-522) (-522) $)) (-15 -1958 ($ (-522) (-522) $)) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -1858 ($ $ (-1162 |#2|))) |%noBranch|)))
-((-1688 (((-1 (-1066 |#1|) (-588 (-1066 |#1|))) (-1 |#2| (-588 |#2|))) 24)) (-3339 (((-1 (-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-3529 (((-1 (-1066 |#1|) (-1066 |#1|)) (-1 |#2| |#2|)) 13)) (-3567 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-3583 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-2223 ((|#2| (-1 |#2| (-588 |#2|)) (-588 |#1|)) 54)) (-3678 (((-588 |#2|) (-588 |#1|) (-588 (-1 |#2| (-588 |#2|)))) 61)) (-1951 ((|#2| |#2| |#2|) 43)))
-(((-1159 |#1| |#2|) (-10 -7 (-15 -3529 ((-1 (-1066 |#1|) (-1066 |#1|)) (-1 |#2| |#2|))) (-15 -3339 ((-1 (-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -1688 ((-1 (-1066 |#1|) (-588 (-1066 |#1|))) (-1 |#2| (-588 |#2|)))) (-15 -1951 (|#2| |#2| |#2|)) (-15 -3583 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -3567 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2223 (|#2| (-1 |#2| (-588 |#2|)) (-588 |#1|))) (-15 -3678 ((-588 |#2|) (-588 |#1|) (-588 (-1 |#2| (-588 |#2|)))))) (-37 (-382 (-522))) (-1157 |#1|)) (T -1159))
-((-3678 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *5)) (-5 *4 (-588 (-1 *6 (-588 *6)))) (-4 *5 (-37 (-382 (-522)))) (-4 *6 (-1157 *5)) (-5 *2 (-588 *6)) (-5 *1 (-1159 *5 *6)))) (-2223 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-588 *2))) (-5 *4 (-588 *5)) (-4 *5 (-37 (-382 (-522)))) (-4 *2 (-1157 *5)) (-5 *1 (-1159 *5 *2)))) (-3567 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1157 *4)) (-5 *1 (-1159 *4 *2)) (-4 *4 (-37 (-382 (-522)))))) (-3583 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1157 *4)) (-5 *1 (-1159 *4 *2)) (-4 *4 (-37 (-382 (-522)))))) (-1951 (*1 *2 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1159 *3 *2)) (-4 *2 (-1157 *3)))) (-1688 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-588 *5))) (-4 *5 (-1157 *4)) (-4 *4 (-37 (-382 (-522)))) (-5 *2 (-1 (-1066 *4) (-588 (-1066 *4)))) (-5 *1 (-1159 *4 *5)))) (-3339 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1157 *4)) (-4 *4 (-37 (-382 (-522)))) (-5 *2 (-1 (-1066 *4) (-1066 *4) (-1066 *4))) (-5 *1 (-1159 *4 *5)))) (-3529 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1157 *4)) (-4 *4 (-37 (-382 (-522)))) (-5 *2 (-1 (-1066 *4) (-1066 *4))) (-5 *1 (-1159 *4 *5)))))
-(-10 -7 (-15 -3529 ((-1 (-1066 |#1|) (-1066 |#1|)) (-1 |#2| |#2|))) (-15 -3339 ((-1 (-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -1688 ((-1 (-1066 |#1|) (-588 (-1066 |#1|))) (-1 |#2| (-588 |#2|)))) (-15 -1951 (|#2| |#2| |#2|)) (-15 -3583 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -3567 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2223 (|#2| (-1 |#2| (-588 |#2|)) (-588 |#1|))) (-15 -3678 ((-588 |#2|) (-588 |#1|) (-588 (-1 |#2| (-588 |#2|))))))
-((-2719 ((|#2| |#4| (-708)) 30)) (-1645 ((|#4| |#2|) 25)) (-3842 ((|#4| (-382 |#2|)) 51 (|has| |#1| (-514)))) (-3851 (((-1 |#4| (-588 |#4|)) |#3|) 45)))
-(((-1160 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1645 (|#4| |#2|)) (-15 -2719 (|#2| |#4| (-708))) (-15 -3851 ((-1 |#4| (-588 |#4|)) |#3|)) (IF (|has| |#1| (-514)) (-15 -3842 (|#4| (-382 |#2|))) |%noBranch|)) (-971) (-1142 |#1|) (-598 |#2|) (-1157 |#1|)) (T -1160))
-((-3842 (*1 *2 *3) (-12 (-5 *3 (-382 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-514)) (-4 *4 (-971)) (-4 *2 (-1157 *4)) (-5 *1 (-1160 *4 *5 *6 *2)) (-4 *6 (-598 *5)))) (-3851 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *5 (-1142 *4)) (-5 *2 (-1 *6 (-588 *6))) (-5 *1 (-1160 *4 *5 *3 *6)) (-4 *3 (-598 *5)) (-4 *6 (-1157 *4)))) (-2719 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-971)) (-4 *2 (-1142 *5)) (-5 *1 (-1160 *5 *2 *6 *3)) (-4 *6 (-598 *2)) (-4 *3 (-1157 *5)))) (-1645 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *3 (-1142 *4)) (-4 *2 (-1157 *4)) (-5 *1 (-1160 *4 *3 *5 *2)) (-4 *5 (-598 *3)))))
-(-10 -7 (-15 -1645 (|#4| |#2|)) (-15 -2719 (|#2| |#4| (-708))) (-15 -3851 ((-1 |#4| (-588 |#4|)) |#3|)) (IF (|has| |#1| (-514)) (-15 -3842 (|#4| (-382 |#2|))) |%noBranch|))
+((-1270 (*1 *1 *2) (-12 (-5 *2 (-1066 (-2 (|:| |k| (-708)) (|:| |c| *3)))) (-4 *3 (-971)) (-4 *1 (-1157 *3)))) (-2180 (*1 *2 *1) (-12 (-4 *1 (-1157 *3)) (-4 *3 (-971)) (-5 *2 (-1066 *3)))) (-1270 (*1 *1 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-4 *1 (-1157 *3)))) (-2889 (*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-971)))) (-1332 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-522))) (-4 *1 (-1157 *3)) (-4 *3 (-971)))) (-3710 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-1157 *4)) (-4 *4 (-971)) (-5 *2 (-881 *4)))) (-3710 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-708)) (-4 *1 (-1157 *4)) (-4 *4 (-971)) (-5 *2 (-881 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-971)) (-4 *2 (-338)))) (-2611 (*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522)))))) (-2611 (*1 *1 *1 *2) (-3844 (-12 (-5 *2 (-1085)) (-4 *1 (-1157 *3)) (-4 *3 (-971)) (-12 (-4 *3 (-29 (-522))) (-4 *3 (-887)) (-4 *3 (-1106)) (-4 *3 (-37 (-382 (-522)))))) (-12 (-5 *2 (-1085)) (-4 *1 (-1157 *3)) (-4 *3 (-971)) (-12 (|has| *3 (-15 -3533 ((-588 *2) *3))) (|has| *3 (-15 -2611 (*3 *3 *2))) (-4 *3 (-37 (-382 (-522)))))))))
+(-13 (-1144 |t#1| (-708)) (-10 -8 (-15 -1270 ($ (-1066 (-2 (|:| |k| (-708)) (|:| |c| |t#1|))))) (-15 -2180 ((-1066 |t#1|) $)) (-15 -1270 ($ (-1066 |t#1|))) (-15 -2889 ($ $)) (-15 -1332 ($ (-1 |t#1| (-522)) $)) (-15 -3710 ((-881 |t#1|) $ (-708))) (-15 -3710 ((-881 |t#1|) $ (-708) (-708))) (IF (|has| |t#1| (-338)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-37 (-382 (-522)))) (PROGN (-15 -2611 ($ $)) (IF (|has| |t#1| (-15 -2611 (|t#1| |t#1| (-1085)))) (IF (|has| |t#1| (-15 -3533 ((-588 (-1085)) |t#1|))) (-15 -2611 ($ $ (-1085))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1106)) (IF (|has| |t#1| (-887)) (IF (|has| |t#1| (-29 (-522))) (-15 -2611 ($ $ (-1085))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-928)) (-6 (-1106))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-46 |#1| #0=(-708)) . T) ((-25) . T) ((-37 #1=(-382 (-522))) |has| |#1| (-37 (-382 (-522)))) ((-37 |#1|) |has| |#1| (-157)) ((-37 $) |has| |#1| (-514)) ((-34) |has| |#1| (-37 (-382 (-522)))) ((-91) |has| |#1| (-37 (-382 (-522)))) ((-97) . T) ((-107 #1# #1#) |has| |#1| (-37 (-382 (-522)))) ((-107 |#1| |#1|) . T) ((-107 $ $) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-124) . T) ((-133) |has| |#1| (-133)) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-210) |has| |#1| (-15 * (|#1| (-708) |#1|))) ((-260) |has| |#1| (-37 (-382 (-522)))) ((-262 $ $) |has| (-708) (-1026)) ((-266) |has| |#1| (-514)) ((-463) |has| |#1| (-37 (-382 (-522)))) ((-514) |has| |#1| (-514)) ((-590 #1#) |has| |#1| (-37 (-382 (-522)))) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #1#) |has| |#1| (-37 (-382 (-522)))) ((-655 |#1|) |has| |#1| (-157)) ((-655 $) |has| |#1| (-514)) ((-664) . T) ((-829 (-1085)) -12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085)))) ((-900 |#1| #0# (-999)) . T) ((-928) |has| |#1| (-37 (-382 (-522)))) ((-977 #1#) |has| |#1| (-37 (-382 (-522)))) ((-977 |#1|) . T) ((-977 $) -3844 (|has| |#1| (-514)) (|has| |#1| (-157))) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1106) |has| |#1| (-37 (-382 (-522)))) ((-1109) |has| |#1| (-37 (-382 (-522)))) ((-1144 |#1| #0#) . T))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-3533 (((-588 (-999)) $) NIL)) (-1660 (((-1085) $) 87)) (-3610 (((-1139 |#2| |#1|) $ (-708)) 73)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) NIL (|has| |#1| (-514)))) (-2298 (($ $) NIL (|has| |#1| (-514)))) (-3007 (((-108) $) 136 (|has| |#1| (-514)))) (-3495 (($ $ (-708)) 121) (($ $ (-708) (-708)) 123)) (-3024 (((-1066 (-2 (|:| |k| (-708)) (|:| |c| |#1|))) $) 42)) (-3044 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2923 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2265 (((-3 $ "failed") $ $) NIL)) (-2016 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3023 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2906 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1270 (($ (-1066 (-2 (|:| |k| (-708)) (|:| |c| |#1|)))) 53) (($ (-1066 |#1|)) NIL)) (-3066 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2936 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3367 (($) NIL T CONST)) (-2706 (($ $) 127)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2889 (($ $) 134)) (-3710 (((-881 |#1|) $ (-708)) 63) (((-881 |#1|) $ (-708) (-708)) 65)) (-3672 (((-108) $) NIL)) (-2980 (($) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3872 (((-708) $) NIL) (((-708) $ (-708)) NIL)) (-2859 (((-108) $) NIL)) (-3550 (($ $) 111)) (-1811 (($ $ (-522)) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2515 (($ (-522) (-522) $) 129)) (-2895 (($ $ (-850)) 133)) (-1332 (($ (-1 |#1| (-522)) $) 105)) (-1374 (((-108) $) NIL)) (-3500 (($ |#1| (-708)) 15) (($ $ (-999) (-708)) NIL) (($ $ (-588 (-999)) (-588 (-708))) NIL)) (-3810 (($ (-1 |#1| |#1|) $) 93)) (-1238 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3216 (($ $) NIL)) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-1843 (($ $) 109)) (-1962 (($ $) 107)) (-2968 (($ (-522) (-522) $) 131)) (-2611 (($ $) 144 (|has| |#1| (-37 (-382 (-522))))) (($ $ (-1085)) 150 (-3844 (-12 (|has| |#1| (-15 -2611 (|#1| |#1| (-1085)))) (|has| |#1| (-15 -3533 ((-588 (-1085)) |#1|))) (|has| |#1| (-37 (-382 (-522))))) (-12 (|has| |#1| (-29 (-522))) (|has| |#1| (-37 (-382 (-522)))) (|has| |#1| (-887)) (|has| |#1| (-1106))))) (($ $ (-1162 |#2|)) 145 (|has| |#1| (-37 (-382 (-522)))))) (-4174 (((-1032) $) NIL)) (-1815 (($ $ (-522) (-522)) 115)) (-3934 (($ $ (-708)) 117)) (-2276 (((-3 $ "failed") $ $) NIL (|has| |#1| (-514)))) (-3357 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3143 (($ $) 113)) (-2330 (((-1066 |#1|) $ |#1|) 95 (|has| |#1| (-15 ** (|#1| |#1| (-708)))))) (-2683 ((|#1| $ (-708)) 90) (($ $ $) 125 (|has| (-708) (-1026)))) (-2731 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) 102 (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $) 97 (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $ (-1162 |#2|)) 98)) (-2487 (((-708) $) NIL)) (-1831 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2946 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3054 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2928 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3035 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2915 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1944 (($ $) 119)) (-2217 (((-792) $) NIL) (($ (-522)) 24) (($ (-382 (-522))) 142 (|has| |#1| (-37 (-382 (-522))))) (($ $) NIL (|has| |#1| (-514))) (($ |#1|) 23 (|has| |#1| (-157))) (($ (-1139 |#2| |#1|)) 80) (($ (-1162 |#2|)) 20)) (-2180 (((-1066 |#1|) $) NIL)) (-1643 ((|#1| $ (-708)) 89)) (-3040 (((-3 $ "failed") $) NIL (|has| |#1| (-133)))) (-2742 (((-708)) NIL)) (-1980 ((|#1| $) 88)) (-1856 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2976 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1407 (((-108) $ $) NIL (|has| |#1| (-514)))) (-1839 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2957 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1873 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3001 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3996 ((|#1| $ (-708)) 86 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-708)))) (|has| |#1| (-15 -2217 (|#1| (-1085))))))) (-2476 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3011 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1864 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2989 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-1849 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-2966 (($ $) NIL (|has| |#1| (-37 (-382 (-522)))))) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 17 T CONST)) (-3709 (($) 13 T CONST)) (-2252 (($ $ (-588 (-1085)) (-588 (-708))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085) (-708)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-588 (-1085))) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-1085)) NIL (-12 (|has| |#1| (-15 * (|#1| (-708) |#1|))) (|has| |#1| (-829 (-1085))))) (($ $ (-708)) NIL (|has| |#1| (-15 * (|#1| (-708) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-708) |#1|))))) (-1562 (((-108) $ $) NIL)) (-1682 (($ $ |#1|) NIL (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) 101)) (-1661 (($ $ $) 18)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL) (($ $ |#1|) 139 (|has| |#1| (-338))) (($ $ $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 100) (($ (-382 (-522)) $) NIL (|has| |#1| (-37 (-382 (-522))))) (($ $ (-382 (-522))) NIL (|has| |#1| (-37 (-382 (-522)))))))
+(((-1158 |#1| |#2| |#3|) (-13 (-1157 |#1|) (-10 -8 (-15 -2217 ($ (-1139 |#2| |#1|))) (-15 -3610 ((-1139 |#2| |#1|) $ (-708))) (-15 -2217 ($ (-1162 |#2|))) (-15 -2731 ($ $ (-1162 |#2|))) (-15 -1962 ($ $)) (-15 -1843 ($ $)) (-15 -3550 ($ $)) (-15 -3143 ($ $)) (-15 -1815 ($ $ (-522) (-522))) (-15 -2706 ($ $)) (-15 -2515 ($ (-522) (-522) $)) (-15 -2968 ($ (-522) (-522) $)) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|))) (-971) (-1085) |#1|) (T -1158))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-1139 *4 *3)) (-4 *3 (-971)) (-14 *4 (-1085)) (-14 *5 *3) (-5 *1 (-1158 *3 *4 *5)))) (-3610 (*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1139 *5 *4)) (-5 *1 (-1158 *4 *5 *6)) (-4 *4 (-971)) (-14 *5 (-1085)) (-14 *6 *4))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-2731 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971)) (-14 *5 *3))) (-1962 (*1 *1 *1) (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085)) (-14 *4 *2))) (-1843 (*1 *1 *1) (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085)) (-14 *4 *2))) (-3550 (*1 *1 *1) (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085)) (-14 *4 *2))) (-3143 (*1 *1 *1) (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085)) (-14 *4 *2))) (-1815 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971)) (-14 *4 (-1085)) (-14 *5 *3))) (-2706 (*1 *1 *1) (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085)) (-14 *4 *2))) (-2515 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971)) (-14 *4 (-1085)) (-14 *5 *3))) (-2968 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971)) (-14 *4 (-1085)) (-14 *5 *3))) (-2611 (*1 *1 *1 *2) (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
+(-13 (-1157 |#1|) (-10 -8 (-15 -2217 ($ (-1139 |#2| |#1|))) (-15 -3610 ((-1139 |#2| |#1|) $ (-708))) (-15 -2217 ($ (-1162 |#2|))) (-15 -2731 ($ $ (-1162 |#2|))) (-15 -1962 ($ $)) (-15 -1843 ($ $)) (-15 -3550 ($ $)) (-15 -3143 ($ $)) (-15 -1815 ($ $ (-522) (-522))) (-15 -2706 ($ $)) (-15 -2515 ($ (-522) (-522) $)) (-15 -2968 ($ (-522) (-522) $)) (IF (|has| |#1| (-37 (-382 (-522)))) (-15 -2611 ($ $ (-1162 |#2|))) |%noBranch|)))
+((-2816 (((-1 (-1066 |#1|) (-588 (-1066 |#1|))) (-1 |#2| (-588 |#2|))) 24)) (-1363 (((-1 (-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-2701 (((-1 (-1066 |#1|) (-1066 |#1|)) (-1 |#2| |#2|)) 13)) (-1833 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-1969 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-3949 ((|#2| (-1 |#2| (-588 |#2|)) (-588 |#1|)) 54)) (-3521 (((-588 |#2|) (-588 |#1|) (-588 (-1 |#2| (-588 |#2|)))) 61)) (-2917 ((|#2| |#2| |#2|) 43)))
+(((-1159 |#1| |#2|) (-10 -7 (-15 -2701 ((-1 (-1066 |#1|) (-1066 |#1|)) (-1 |#2| |#2|))) (-15 -1363 ((-1 (-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2816 ((-1 (-1066 |#1|) (-588 (-1066 |#1|))) (-1 |#2| (-588 |#2|)))) (-15 -2917 (|#2| |#2| |#2|)) (-15 -1969 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -1833 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3949 (|#2| (-1 |#2| (-588 |#2|)) (-588 |#1|))) (-15 -3521 ((-588 |#2|) (-588 |#1|) (-588 (-1 |#2| (-588 |#2|)))))) (-37 (-382 (-522))) (-1157 |#1|)) (T -1159))
+((-3521 (*1 *2 *3 *4) (-12 (-5 *3 (-588 *5)) (-5 *4 (-588 (-1 *6 (-588 *6)))) (-4 *5 (-37 (-382 (-522)))) (-4 *6 (-1157 *5)) (-5 *2 (-588 *6)) (-5 *1 (-1159 *5 *6)))) (-3949 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-588 *2))) (-5 *4 (-588 *5)) (-4 *5 (-37 (-382 (-522)))) (-4 *2 (-1157 *5)) (-5 *1 (-1159 *5 *2)))) (-1833 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1157 *4)) (-5 *1 (-1159 *4 *2)) (-4 *4 (-37 (-382 (-522)))))) (-1969 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1157 *4)) (-5 *1 (-1159 *4 *2)) (-4 *4 (-37 (-382 (-522)))))) (-2917 (*1 *2 *2 *2) (-12 (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1159 *3 *2)) (-4 *2 (-1157 *3)))) (-2816 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-588 *5))) (-4 *5 (-1157 *4)) (-4 *4 (-37 (-382 (-522)))) (-5 *2 (-1 (-1066 *4) (-588 (-1066 *4)))) (-5 *1 (-1159 *4 *5)))) (-1363 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1157 *4)) (-4 *4 (-37 (-382 (-522)))) (-5 *2 (-1 (-1066 *4) (-1066 *4) (-1066 *4))) (-5 *1 (-1159 *4 *5)))) (-2701 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1157 *4)) (-4 *4 (-37 (-382 (-522)))) (-5 *2 (-1 (-1066 *4) (-1066 *4))) (-5 *1 (-1159 *4 *5)))))
+(-10 -7 (-15 -2701 ((-1 (-1066 |#1|) (-1066 |#1|)) (-1 |#2| |#2|))) (-15 -1363 ((-1 (-1066 |#1|) (-1066 |#1|) (-1066 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2816 ((-1 (-1066 |#1|) (-588 (-1066 |#1|))) (-1 |#2| (-588 |#2|)))) (-15 -2917 (|#2| |#2| |#2|)) (-15 -1969 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -1833 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3949 (|#2| (-1 |#2| (-588 |#2|)) (-588 |#1|))) (-15 -3521 ((-588 |#2|) (-588 |#1|) (-588 (-1 |#2| (-588 |#2|))))))
+((-3300 ((|#2| |#4| (-708)) 30)) (-2325 ((|#4| |#2|) 25)) (-2814 ((|#4| (-382 |#2|)) 51 (|has| |#1| (-514)))) (-2887 (((-1 |#4| (-588 |#4|)) |#3|) 45)))
+(((-1160 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2325 (|#4| |#2|)) (-15 -3300 (|#2| |#4| (-708))) (-15 -2887 ((-1 |#4| (-588 |#4|)) |#3|)) (IF (|has| |#1| (-514)) (-15 -2814 (|#4| (-382 |#2|))) |%noBranch|)) (-971) (-1142 |#1|) (-598 |#2|) (-1157 |#1|)) (T -1160))
+((-2814 (*1 *2 *3) (-12 (-5 *3 (-382 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-514)) (-4 *4 (-971)) (-4 *2 (-1157 *4)) (-5 *1 (-1160 *4 *5 *6 *2)) (-4 *6 (-598 *5)))) (-2887 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *5 (-1142 *4)) (-5 *2 (-1 *6 (-588 *6))) (-5 *1 (-1160 *4 *5 *3 *6)) (-4 *3 (-598 *5)) (-4 *6 (-1157 *4)))) (-3300 (*1 *2 *3 *4) (-12 (-5 *4 (-708)) (-4 *5 (-971)) (-4 *2 (-1142 *5)) (-5 *1 (-1160 *5 *2 *6 *3)) (-4 *6 (-598 *2)) (-4 *3 (-1157 *5)))) (-2325 (*1 *2 *3) (-12 (-4 *4 (-971)) (-4 *3 (-1142 *4)) (-4 *2 (-1157 *4)) (-5 *1 (-1160 *4 *3 *5 *2)) (-4 *5 (-598 *3)))))
+(-10 -7 (-15 -2325 (|#4| |#2|)) (-15 -3300 (|#2| |#4| (-708))) (-15 -2887 ((-1 |#4| (-588 |#4|)) |#3|)) (IF (|has| |#1| (-514)) (-15 -2814 (|#4| (-382 |#2|))) |%noBranch|))
NIL
(((-1161) (-1197)) (T -1161))
NIL
-(-13 (-10 -7 (-6 -2047)))
-((-1416 (((-108) $ $) NIL)) (-1611 (((-1085)) 12)) (-2385 (((-1068) $) 17)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 11) (((-1085) $) 8)) (-1531 (((-108) $ $) 14)))
-(((-1162 |#1|) (-13 (-1014) (-562 (-1085)) (-10 -8 (-15 -2190 ((-1085) $)) (-15 -1611 ((-1085))))) (-1085)) (T -1162))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1162 *3)) (-14 *3 *2))) (-1611 (*1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1162 *3)) (-14 *3 *2))))
-(-13 (-1014) (-562 (-1085)) (-10 -8 (-15 -2190 ((-1085) $)) (-15 -1611 ((-1085)))))
-((-3483 (($ (-708)) 16)) (-3957 (((-628 |#2|) $ $) 37)) (-2845 ((|#2| $) 46)) (-2517 ((|#2| $) 45)) (-1883 ((|#2| $ $) 33)) (-3230 (($ $ $) 42)) (-1612 (($ $) 20) (($ $ $) 26)) (-1602 (($ $ $) 13)) (* (($ (-522) $) 23) (($ |#2| $) 29) (($ $ |#2|) 28)))
-(((-1163 |#1| |#2|) (-10 -8 (-15 -2845 (|#2| |#1|)) (-15 -2517 (|#2| |#1|)) (-15 -3230 (|#1| |#1| |#1|)) (-15 -3957 ((-628 |#2|) |#1| |#1|)) (-15 -1883 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 -3483 (|#1| (-708))) (-15 -1602 (|#1| |#1| |#1|))) (-1164 |#2|) (-1120)) (T -1163))
+(-13 (-10 -7 (-6 -2088)))
+((-1419 (((-108) $ $) NIL)) (-1660 (((-1085)) 12)) (-2311 (((-1068) $) 17)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 11) (((-1085) $) 8)) (-1562 (((-108) $ $) 14)))
+(((-1162 |#1|) (-13 (-1014) (-562 (-1085)) (-10 -8 (-15 -2217 ((-1085) $)) (-15 -1660 ((-1085))))) (-1085)) (T -1162))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1162 *3)) (-14 *3 *2))) (-1660 (*1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1162 *3)) (-14 *3 *2))))
+(-13 (-1014) (-562 (-1085)) (-10 -8 (-15 -2217 ((-1085) $)) (-15 -1660 ((-1085)))))
+((-1785 (($ (-708)) 16)) (-4043 (((-628 |#2|) $ $) 37)) (-4113 ((|#2| $) 46)) (-4030 ((|#2| $) 45)) (-4024 ((|#2| $ $) 33)) (-2791 (($ $ $) 42)) (-1672 (($ $) 20) (($ $ $) 26)) (-1661 (($ $ $) 13)) (* (($ (-522) $) 23) (($ |#2| $) 29) (($ $ |#2|) 28)))
+(((-1163 |#1| |#2|) (-10 -8 (-15 -4113 (|#2| |#1|)) (-15 -4030 (|#2| |#1|)) (-15 -2791 (|#1| |#1| |#1|)) (-15 -4043 ((-628 |#2|) |#1| |#1|)) (-15 -4024 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 -1785 (|#1| (-708))) (-15 -1661 (|#1| |#1| |#1|))) (-1164 |#2|) (-1120)) (T -1163))
NIL
-(-10 -8 (-15 -2845 (|#2| |#1|)) (-15 -2517 (|#2| |#1|)) (-15 -3230 (|#1| |#1| |#1|)) (-15 -3957 ((-628 |#2|) |#1| |#1|)) (-15 -1883 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1612 (|#1| |#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 -3483 (|#1| (-708))) (-15 -1602 (|#1| |#1| |#1|)))
-((-1416 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-3483 (($ (-708)) 112 (|has| |#1| (-23)))) (-2679 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-784)))) (-3537 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4239))) (($ $) 88 (-12 (|has| |#1| (-784)) (|has| $ (-6 -4239))))) (-3216 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-784)))) (-4141 (((-108) $ (-708)) 8)) (-2379 ((|#1| $ (-522) |#1|) 52 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 58 (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4238)))) (-3175 (($) 7 T CONST)) (-3509 (($ $) 90 (|has| $ (-6 -4239)))) (-1862 (($ $) 100)) (-2333 (($ $) 78 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1423 (($ |#1| $) 77 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) 51)) (-3238 (((-522) (-1 (-108) |#1|) $) 97) (((-522) |#1| $) 96 (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) 95 (|has| |#1| (-1014)))) (-3837 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-3957 (((-628 |#1|) $ $) 105 (|has| |#1| (-971)))) (-1811 (($ (-708) |#1|) 69)) (-3352 (((-108) $ (-708)) 9)) (-1359 (((-522) $) 43 (|has| (-522) (-784)))) (-2814 (($ $ $) 87 (|has| |#1| (-784)))) (-2160 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2014 (((-522) $) 44 (|has| (-522) (-784)))) (-2446 (($ $ $) 86 (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2845 ((|#1| $) 102 (-12 (|has| |#1| (-971)) (|has| |#1| (-928))))) (-2720 (((-108) $ (-708)) 10)) (-2517 ((|#1| $) 103 (-12 (|has| |#1| (-971)) (|has| |#1| (-928))))) (-2385 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1661 (($ |#1| $ (-522)) 60) (($ $ $ (-522)) 59)) (-3604 (((-588 (-522)) $) 46)) (-1405 (((-108) (-522) $) 47)) (-4151 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2294 ((|#1| $) 42 (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-2602 (($ $ |#1|) 41 (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) 14)) (-1758 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) 48)) (-3985 (((-108) $) 11)) (-3775 (($) 12)) (-2545 ((|#1| $ (-522) |#1|) 50) ((|#1| $ (-522)) 49) (($ $ (-1133 (-522))) 63)) (-1883 ((|#1| $ $) 106 (|has| |#1| (-971)))) (-3696 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-3230 (($ $ $) 104 (|has| |#1| (-971)))) (-4168 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1577 (($ $ $ (-522)) 91 (|has| $ (-6 -4239)))) (-2404 (($ $) 13)) (-1431 (((-498) $) 79 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 70)) (-4165 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2190 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) 84 (|has| |#1| (-784)))) (-1558 (((-108) $ $) 83 (|has| |#1| (-784)))) (-1531 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-1566 (((-108) $ $) 85 (|has| |#1| (-784)))) (-1549 (((-108) $ $) 82 (|has| |#1| (-784)))) (-1612 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-1602 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-522) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-664))) (($ $ |#1|) 107 (|has| |#1| (-664)))) (-3480 (((-708) $) 6 (|has| $ (-6 -4238)))))
+(-10 -8 (-15 -4113 (|#2| |#1|)) (-15 -4030 (|#2| |#1|)) (-15 -2791 (|#1| |#1| |#1|)) (-15 -4043 ((-628 |#2|) |#1| |#1|)) (-15 -4024 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-522) |#1|)) (-15 -1672 (|#1| |#1| |#1|)) (-15 -1672 (|#1| |#1|)) (-15 -1785 (|#1| (-708))) (-15 -1661 (|#1| |#1| |#1|)))
+((-1419 (((-108) $ $) 19 (|has| |#1| (-1014)))) (-1785 (($ (-708)) 112 (|has| |#1| (-23)))) (-3883 (((-1171) $ (-522) (-522)) 40 (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) |#1| |#1|) $) 98) (((-108) $) 92 (|has| |#1| (-784)))) (-2806 (($ (-1 (-108) |#1| |#1|) $) 89 (|has| $ (-6 -4239))) (($ $) 88 (-12 (|has| |#1| (-784)) (|has| $ (-6 -4239))))) (-3296 (($ (-1 (-108) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-784)))) (-2717 (((-108) $ (-708)) 8)) (-2437 ((|#1| $ (-522) |#1|) 52 (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) 58 (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) 75 (|has| $ (-6 -4238)))) (-3367 (($) 7 T CONST)) (-2465 (($ $) 90 (|has| $ (-6 -4239)))) (-1939 (($ $) 100)) (-2379 (($ $) 78 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-1424 (($ |#1| $) 77 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) (($ (-1 (-108) |#1|) $) 74 (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) 53 (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) 51)) (-3314 (((-522) (-1 (-108) |#1|) $) 97) (((-522) |#1| $) 96 (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) 95 (|has| |#1| (-1014)))) (-2395 (((-588 |#1|) $) 30 (|has| $ (-6 -4238)))) (-4043 (((-628 |#1|) $ $) 105 (|has| |#1| (-971)))) (-1893 (($ (-708) |#1|) 69)) (-1480 (((-108) $ (-708)) 9)) (-3496 (((-522) $) 43 (|has| (-522) (-784)))) (-1308 (($ $ $) 87 (|has| |#1| (-784)))) (-3164 (($ (-1 (-108) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) 27 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-2201 (((-522) $) 44 (|has| (-522) (-784)))) (-2524 (($ $ $) 86 (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4113 ((|#1| $) 102 (-12 (|has| |#1| (-971)) (|has| |#1| (-928))))) (-3309 (((-108) $ (-708)) 10)) (-4030 ((|#1| $) 103 (-12 (|has| |#1| (-971)) (|has| |#1| (-928))))) (-2311 (((-1068) $) 22 (|has| |#1| (-1014)))) (-1731 (($ |#1| $ (-522)) 60) (($ $ $ (-522)) 59)) (-2130 (((-588 (-522)) $) 46)) (-2103 (((-108) (-522) $) 47)) (-4174 (((-1032) $) 21 (|has| |#1| (-1014)))) (-2337 ((|#1| $) 42 (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) 71)) (-1972 (($ $ |#1|) 41 (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#1|) $) 32 (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) 26 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) 25 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) 23 (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) 14)) (-3434 (((-108) |#1| $) 45 (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) 48)) (-3494 (((-108) $) 11)) (-3298 (($) 12)) (-2683 ((|#1| $ (-522) |#1|) 50) ((|#1| $ (-522)) 49) (($ $ (-1133 (-522))) 63)) (-4024 ((|#1| $ $) 106 (|has| |#1| (-971)))) (-3835 (($ $ (-522)) 62) (($ $ (-1133 (-522))) 61)) (-2791 (($ $ $) 104 (|has| |#1| (-971)))) (-4187 (((-708) (-1 (-108) |#1|) $) 31 (|has| $ (-6 -4238))) (((-708) |#1| $) 28 (-12 (|has| |#1| (-1014)) (|has| $ (-6 -4238))))) (-3629 (($ $ $ (-522)) 91 (|has| $ (-6 -4239)))) (-2463 (($ $) 13)) (-3873 (((-498) $) 79 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 70)) (-4170 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-588 $)) 65)) (-2217 (((-792) $) 18 (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) 33 (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) 84 (|has| |#1| (-784)))) (-1597 (((-108) $ $) 83 (|has| |#1| (-784)))) (-1562 (((-108) $ $) 20 (|has| |#1| (-1014)))) (-1609 (((-108) $ $) 85 (|has| |#1| (-784)))) (-1587 (((-108) $ $) 82 (|has| |#1| (-784)))) (-1672 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-1661 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-522) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-664))) (($ $ |#1|) 107 (|has| |#1| (-664)))) (-3591 (((-708) $) 6 (|has| $ (-6 -4238)))))
(((-1164 |#1|) (-1197) (-1120)) (T -1164))
-((-1602 (*1 *1 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-25)))) (-3483 (*1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1164 *3)) (-4 *3 (-23)) (-4 *3 (-1120)))) (-1612 (*1 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-21)))) (-1612 (*1 *1 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-4 *1 (-1164 *3)) (-4 *3 (-1120)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-664)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-664)))) (-1883 (*1 *2 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-971)))) (-3957 (*1 *2 *1 *1) (-12 (-4 *1 (-1164 *3)) (-4 *3 (-1120)) (-4 *3 (-971)) (-5 *2 (-628 *3)))) (-3230 (*1 *1 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-971)))) (-2517 (*1 *2 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-928)) (-4 *2 (-971)))) (-2845 (*1 *2 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-928)) (-4 *2 (-971)))))
-(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -1602 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -3483 ($ (-708))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -1612 ($ $)) (-15 -1612 ($ $ $)) (-15 * ($ (-522) $))) |%noBranch|) (IF (|has| |t#1| (-664)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-971)) (PROGN (-15 -1883 (|t#1| $ $)) (-15 -3957 ((-628 |t#1|) $ $)) (-15 -3230 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-928)) (IF (|has| |t#1| (-971)) (PROGN (-15 -2517 (|t#1| $)) (-15 -2845 (|t#1| $))) |%noBranch|) |%noBranch|)))
-(((-33) . T) ((-97) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-562 (-792)) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-348 |#1|) . T) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-19 |#1|) . T) ((-784) |has| |#1| (-784)) ((-1014) -3708 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-1120) . T))
-((-3690 (((-1166 |#2|) (-1 |#2| |#1| |#2|) (-1166 |#1|) |#2|) 13)) (-3864 ((|#2| (-1 |#2| |#1| |#2|) (-1166 |#1|) |#2|) 15)) (-1391 (((-3 (-1166 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1166 |#1|)) 28) (((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|)) 18)))
-(((-1165 |#1| |#2|) (-10 -7 (-15 -3690 ((-1166 |#2|) (-1 |#2| |#1| |#2|) (-1166 |#1|) |#2|)) (-15 -3864 (|#2| (-1 |#2| |#1| |#2|) (-1166 |#1|) |#2|)) (-15 -1391 ((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|))) (-15 -1391 ((-3 (-1166 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1166 |#1|)))) (-1120) (-1120)) (T -1165))
-((-1391 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1166 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1166 *6)) (-5 *1 (-1165 *5 *6)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1166 *6)) (-5 *1 (-1165 *5 *6)))) (-3864 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1166 *5)) (-4 *5 (-1120)) (-4 *2 (-1120)) (-5 *1 (-1165 *5 *2)))) (-3690 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1166 *6)) (-4 *6 (-1120)) (-4 *5 (-1120)) (-5 *2 (-1166 *5)) (-5 *1 (-1165 *6 *5)))))
-(-10 -7 (-15 -3690 ((-1166 |#2|) (-1 |#2| |#1| |#2|) (-1166 |#1|) |#2|)) (-15 -3864 (|#2| (-1 |#2| |#1| |#2|) (-1166 |#1|) |#2|)) (-15 -1391 ((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|))) (-15 -1391 ((-3 (-1166 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1166 |#1|))))
-((-1416 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-3483 (($ (-708)) NIL (|has| |#1| (-23)))) (-2146 (($ (-588 |#1|)) 9)) (-2679 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-4187 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-3537 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3216 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-4141 (((-108) $ (-708)) NIL)) (-2379 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1628 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3175 (($) NIL T CONST)) (-3509 (($ $) NIL (|has| $ (-6 -4239)))) (-1862 (($ $) NIL)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1423 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3864 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-3854 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-3631 ((|#1| $ (-522)) NIL)) (-3238 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-3837 (((-588 |#1|) $) 15 (|has| $ (-6 -4238)))) (-3957 (((-628 |#1|) $ $) NIL (|has| |#1| (-971)))) (-1811 (($ (-708) |#1|) NIL)) (-3352 (((-108) $ (-708)) NIL)) (-1359 (((-522) $) NIL (|has| (-522) (-784)))) (-2814 (($ $ $) NIL (|has| |#1| (-784)))) (-2160 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-3308 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-2246 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2014 (((-522) $) NIL (|has| (-522) (-784)))) (-2446 (($ $ $) NIL (|has| |#1| (-784)))) (-3838 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2845 ((|#1| $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-971))))) (-2720 (((-108) $ (-708)) NIL)) (-2517 ((|#1| $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-971))))) (-2385 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1661 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-3604 (((-588 (-522)) $) NIL)) (-1405 (((-108) (-522) $) NIL)) (-4151 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2294 ((|#1| $) NIL (|has| (-522) (-784)))) (-1414 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-2602 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-3053 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-1536 (((-108) $ $) NIL)) (-1758 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1525 (((-588 |#1|) $) NIL)) (-3985 (((-108) $) NIL)) (-3775 (($) NIL)) (-2545 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-1883 ((|#1| $ $) NIL (|has| |#1| (-971)))) (-3696 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-3230 (($ $ $) NIL (|has| |#1| (-971)))) (-4168 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1577 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) 19 (|has| |#1| (-563 (-498))))) (-2201 (($ (-588 |#1|)) 8)) (-4165 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2190 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-3648 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1574 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1558 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1531 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1566 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1549 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1612 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1602 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-522) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-664))) (($ $ |#1|) NIL (|has| |#1| (-664)))) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-1166 |#1|) (-13 (-1164 |#1|) (-10 -8 (-15 -2146 ($ (-588 |#1|))))) (-1120)) (T -1166))
-((-2146 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1166 *3)))))
-(-13 (-1164 |#1|) (-10 -8 (-15 -2146 ($ (-588 |#1|)))))
-((-1416 (((-108) $ $) NIL)) (-3969 (((-1068) $ (-1068)) 87) (((-1068) $ (-1068) (-1068)) 85) (((-1068) $ (-1068) (-588 (-1068))) 84)) (-2859 (($) 56)) (-3183 (((-1171) $ (-442) (-850)) 42)) (-1968 (((-1171) $ (-850) (-1068)) 70) (((-1171) $ (-850) (-803)) 71)) (-2469 (((-1171) $ (-850) (-354) (-354)) 45)) (-2955 (((-1171) $ (-1068)) 66)) (-1845 (((-1171) $ (-850) (-1068)) 75)) (-3091 (((-1171) $ (-850) (-354) (-354)) 46)) (-1434 (((-1171) $ (-850) (-850)) 43)) (-3943 (((-1171) $) 67)) (-3290 (((-1171) $ (-850) (-1068)) 74)) (-2979 (((-1171) $ (-442) (-850)) 30)) (-3398 (((-1171) $ (-850) (-1068)) 73)) (-2537 (((-588 (-239)) $) 22) (($ $ (-588 (-239))) 23)) (-2799 (((-1171) $ (-708) (-708)) 40)) (-1502 (($ $) 57) (($ (-442) (-588 (-239))) 58)) (-2385 (((-1068) $) NIL)) (-2530 (((-522) $) 37)) (-4151 (((-1032) $) NIL)) (-4210 (((-1166 (-3 (-442) "undefined")) $) 36)) (-1520 (((-1166 (-2 (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)) (|:| -3398 (-522)) (|:| -1235 (-522)) (|:| |spline| (-522)) (|:| -2640 (-522)) (|:| |axesColor| (-803)) (|:| -1968 (-522)) (|:| |unitsColor| (-803)) (|:| |showing| (-522)))) $) 35)) (-2293 (((-1171) $ (-850) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-803) (-522) (-803) (-522)) 65)) (-1440 (((-588 (-872 (-202))) $) NIL)) (-2997 (((-442) $ (-850)) 32)) (-2985 (((-1171) $ (-708) (-708) (-850) (-850)) 39)) (-1256 (((-1171) $ (-1068)) 76)) (-1235 (((-1171) $ (-850) (-1068)) 72)) (-2190 (((-792) $) 82)) (-1650 (((-1171) $) 77)) (-2640 (((-1171) $ (-850) (-1068)) 68) (((-1171) $ (-850) (-803)) 69)) (-1531 (((-108) $ $) NIL)))
-(((-1167) (-13 (-1014) (-10 -8 (-15 -1440 ((-588 (-872 (-202))) $)) (-15 -2859 ($)) (-15 -1502 ($ $)) (-15 -2537 ((-588 (-239)) $)) (-15 -2537 ($ $ (-588 (-239)))) (-15 -1502 ($ (-442) (-588 (-239)))) (-15 -2293 ((-1171) $ (-850) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-803) (-522) (-803) (-522))) (-15 -1520 ((-1166 (-2 (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)) (|:| -3398 (-522)) (|:| -1235 (-522)) (|:| |spline| (-522)) (|:| -2640 (-522)) (|:| |axesColor| (-803)) (|:| -1968 (-522)) (|:| |unitsColor| (-803)) (|:| |showing| (-522)))) $)) (-15 -4210 ((-1166 (-3 (-442) "undefined")) $)) (-15 -2955 ((-1171) $ (-1068))) (-15 -2979 ((-1171) $ (-442) (-850))) (-15 -2997 ((-442) $ (-850))) (-15 -2640 ((-1171) $ (-850) (-1068))) (-15 -2640 ((-1171) $ (-850) (-803))) (-15 -1968 ((-1171) $ (-850) (-1068))) (-15 -1968 ((-1171) $ (-850) (-803))) (-15 -3398 ((-1171) $ (-850) (-1068))) (-15 -3290 ((-1171) $ (-850) (-1068))) (-15 -1235 ((-1171) $ (-850) (-1068))) (-15 -1256 ((-1171) $ (-1068))) (-15 -1650 ((-1171) $)) (-15 -2985 ((-1171) $ (-708) (-708) (-850) (-850))) (-15 -3091 ((-1171) $ (-850) (-354) (-354))) (-15 -2469 ((-1171) $ (-850) (-354) (-354))) (-15 -1845 ((-1171) $ (-850) (-1068))) (-15 -2799 ((-1171) $ (-708) (-708))) (-15 -3183 ((-1171) $ (-442) (-850))) (-15 -1434 ((-1171) $ (-850) (-850))) (-15 -3969 ((-1068) $ (-1068))) (-15 -3969 ((-1068) $ (-1068) (-1068))) (-15 -3969 ((-1068) $ (-1068) (-588 (-1068)))) (-15 -3943 ((-1171) $)) (-15 -2530 ((-522) $)) (-15 -2190 ((-792) $))))) (T -1167))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-1167)))) (-1440 (*1 *2 *1) (-12 (-5 *2 (-588 (-872 (-202)))) (-5 *1 (-1167)))) (-2859 (*1 *1) (-5 *1 (-1167))) (-1502 (*1 *1 *1) (-5 *1 (-1167))) (-2537 (*1 *2 *1) (-12 (-5 *2 (-588 (-239))) (-5 *1 (-1167)))) (-2537 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-239))) (-5 *1 (-1167)))) (-1502 (*1 *1 *2 *3) (-12 (-5 *2 (-442)) (-5 *3 (-588 (-239))) (-5 *1 (-1167)))) (-2293 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-850)) (-5 *4 (-202)) (-5 *5 (-522)) (-5 *6 (-803)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-1520 (*1 *2 *1) (-12 (-5 *2 (-1166 (-2 (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)) (|:| -3398 (-522)) (|:| -1235 (-522)) (|:| |spline| (-522)) (|:| -2640 (-522)) (|:| |axesColor| (-803)) (|:| -1968 (-522)) (|:| |unitsColor| (-803)) (|:| |showing| (-522))))) (-5 *1 (-1167)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-1166 (-3 (-442) "undefined"))) (-5 *1 (-1167)))) (-2955 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2979 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-442)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2997 (*1 *2 *1 *3) (-12 (-5 *3 (-850)) (-5 *2 (-442)) (-5 *1 (-1167)))) (-2640 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2640 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-803)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-1968 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-1968 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-803)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-3398 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-3290 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-1235 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-1256 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-1650 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2985 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-708)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-3091 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-850)) (-5 *4 (-354)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2469 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-850)) (-5 *4 (-354)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-1845 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2799 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-3183 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-442)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-1434 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-3969 (*1 *2 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1167)))) (-3969 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1167)))) (-3969 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1068)) (-5 *1 (-1167)))) (-3943 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2530 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1167)))))
-(-13 (-1014) (-10 -8 (-15 -1440 ((-588 (-872 (-202))) $)) (-15 -2859 ($)) (-15 -1502 ($ $)) (-15 -2537 ((-588 (-239)) $)) (-15 -2537 ($ $ (-588 (-239)))) (-15 -1502 ($ (-442) (-588 (-239)))) (-15 -2293 ((-1171) $ (-850) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-803) (-522) (-803) (-522))) (-15 -1520 ((-1166 (-2 (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)) (|:| -3398 (-522)) (|:| -1235 (-522)) (|:| |spline| (-522)) (|:| -2640 (-522)) (|:| |axesColor| (-803)) (|:| -1968 (-522)) (|:| |unitsColor| (-803)) (|:| |showing| (-522)))) $)) (-15 -4210 ((-1166 (-3 (-442) "undefined")) $)) (-15 -2955 ((-1171) $ (-1068))) (-15 -2979 ((-1171) $ (-442) (-850))) (-15 -2997 ((-442) $ (-850))) (-15 -2640 ((-1171) $ (-850) (-1068))) (-15 -2640 ((-1171) $ (-850) (-803))) (-15 -1968 ((-1171) $ (-850) (-1068))) (-15 -1968 ((-1171) $ (-850) (-803))) (-15 -3398 ((-1171) $ (-850) (-1068))) (-15 -3290 ((-1171) $ (-850) (-1068))) (-15 -1235 ((-1171) $ (-850) (-1068))) (-15 -1256 ((-1171) $ (-1068))) (-15 -1650 ((-1171) $)) (-15 -2985 ((-1171) $ (-708) (-708) (-850) (-850))) (-15 -3091 ((-1171) $ (-850) (-354) (-354))) (-15 -2469 ((-1171) $ (-850) (-354) (-354))) (-15 -1845 ((-1171) $ (-850) (-1068))) (-15 -2799 ((-1171) $ (-708) (-708))) (-15 -3183 ((-1171) $ (-442) (-850))) (-15 -1434 ((-1171) $ (-850) (-850))) (-15 -3969 ((-1068) $ (-1068))) (-15 -3969 ((-1068) $ (-1068) (-1068))) (-15 -3969 ((-1068) $ (-1068) (-588 (-1068)))) (-15 -3943 ((-1171) $)) (-15 -2530 ((-522) $)) (-15 -2190 ((-792) $))))
-((-1416 (((-108) $ $) NIL)) (-1879 (((-1171) $ (-354)) 138) (((-1171) $ (-354) (-354) (-354)) 139)) (-3969 (((-1068) $ (-1068)) 146) (((-1068) $ (-1068) (-1068)) 144) (((-1068) $ (-1068) (-588 (-1068))) 143)) (-1406 (($) 49)) (-1908 (((-1171) $ (-354) (-354) (-354) (-354) (-354)) 114) (((-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))) $) 112) (((-1171) $ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) 113) (((-1171) $ (-522) (-522) (-354) (-354) (-354)) 115) (((-1171) $ (-354) (-354)) 116) (((-1171) $ (-354) (-354) (-354)) 123)) (-2866 (((-354)) 96) (((-354) (-354)) 97)) (-2725 (((-354)) 91) (((-354) (-354)) 93)) (-3534 (((-354)) 94) (((-354) (-354)) 95)) (-3980 (((-354)) 100) (((-354) (-354)) 101)) (-2310 (((-354)) 98) (((-354) (-354)) 99)) (-2469 (((-1171) $ (-354) (-354)) 140)) (-2955 (((-1171) $ (-1068)) 124)) (-3974 (((-1045 (-202)) $) 50) (($ $ (-1045 (-202))) 51)) (-1816 (((-1171) $ (-1068)) 152)) (-1227 (((-1171) $ (-1068)) 153)) (-1713 (((-1171) $ (-354) (-354)) 122) (((-1171) $ (-522) (-522)) 137)) (-1434 (((-1171) $ (-850) (-850)) 130)) (-3943 (((-1171) $) 110)) (-2771 (((-1171) $ (-1068)) 151)) (-2178 (((-1171) $ (-1068)) 107)) (-2537 (((-588 (-239)) $) 52) (($ $ (-588 (-239))) 53)) (-2799 (((-1171) $ (-708) (-708)) 129)) (-3756 (((-1171) $ (-708) (-872 (-202))) 158)) (-2807 (($ $) 56) (($ (-1045 (-202)) (-1068)) 57) (($ (-1045 (-202)) (-588 (-239))) 58)) (-3670 (((-1171) $ (-354) (-354) (-354)) 104)) (-2385 (((-1068) $) NIL)) (-2530 (((-522) $) 102)) (-2200 (((-1171) $ (-354)) 141)) (-4181 (((-1171) $ (-354)) 156)) (-4151 (((-1032) $) NIL)) (-3691 (((-1171) $ (-354)) 155)) (-3472 (((-1171) $ (-1068)) 109)) (-2985 (((-1171) $ (-708) (-708) (-850) (-850)) 128)) (-3948 (((-1171) $ (-1068)) 106)) (-1256 (((-1171) $ (-1068)) 108)) (-2019 (((-1171) $ (-143) (-143)) 127)) (-2190 (((-792) $) 135)) (-1650 (((-1171) $) 111)) (-1709 (((-1171) $ (-1068)) 154)) (-2640 (((-1171) $ (-1068)) 105)) (-1531 (((-108) $ $) NIL)))
-(((-1168) (-13 (-1014) (-10 -8 (-15 -2725 ((-354))) (-15 -2725 ((-354) (-354))) (-15 -3534 ((-354))) (-15 -3534 ((-354) (-354))) (-15 -2866 ((-354))) (-15 -2866 ((-354) (-354))) (-15 -2310 ((-354))) (-15 -2310 ((-354) (-354))) (-15 -3980 ((-354))) (-15 -3980 ((-354) (-354))) (-15 -1406 ($)) (-15 -2807 ($ $)) (-15 -2807 ($ (-1045 (-202)) (-1068))) (-15 -2807 ($ (-1045 (-202)) (-588 (-239)))) (-15 -3974 ((-1045 (-202)) $)) (-15 -3974 ($ $ (-1045 (-202)))) (-15 -3756 ((-1171) $ (-708) (-872 (-202)))) (-15 -2537 ((-588 (-239)) $)) (-15 -2537 ($ $ (-588 (-239)))) (-15 -2799 ((-1171) $ (-708) (-708))) (-15 -1434 ((-1171) $ (-850) (-850))) (-15 -2955 ((-1171) $ (-1068))) (-15 -2985 ((-1171) $ (-708) (-708) (-850) (-850))) (-15 -1908 ((-1171) $ (-354) (-354) (-354) (-354) (-354))) (-15 -1908 ((-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))) $)) (-15 -1908 ((-1171) $ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))) (-15 -1908 ((-1171) $ (-522) (-522) (-354) (-354) (-354))) (-15 -1908 ((-1171) $ (-354) (-354))) (-15 -1908 ((-1171) $ (-354) (-354) (-354))) (-15 -1256 ((-1171) $ (-1068))) (-15 -2640 ((-1171) $ (-1068))) (-15 -3948 ((-1171) $ (-1068))) (-15 -2178 ((-1171) $ (-1068))) (-15 -3472 ((-1171) $ (-1068))) (-15 -1713 ((-1171) $ (-354) (-354))) (-15 -1713 ((-1171) $ (-522) (-522))) (-15 -1879 ((-1171) $ (-354))) (-15 -1879 ((-1171) $ (-354) (-354) (-354))) (-15 -2469 ((-1171) $ (-354) (-354))) (-15 -2771 ((-1171) $ (-1068))) (-15 -3691 ((-1171) $ (-354))) (-15 -4181 ((-1171) $ (-354))) (-15 -1816 ((-1171) $ (-1068))) (-15 -1227 ((-1171) $ (-1068))) (-15 -1709 ((-1171) $ (-1068))) (-15 -3670 ((-1171) $ (-354) (-354) (-354))) (-15 -2200 ((-1171) $ (-354))) (-15 -3943 ((-1171) $)) (-15 -2019 ((-1171) $ (-143) (-143))) (-15 -3969 ((-1068) $ (-1068))) (-15 -3969 ((-1068) $ (-1068) (-1068))) (-15 -3969 ((-1068) $ (-1068) (-588 (-1068)))) (-15 -1650 ((-1171) $)) (-15 -2530 ((-522) $))))) (T -1168))
-((-2725 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-2725 (*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-3534 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-3534 (*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-2866 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-2866 (*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-2310 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-2310 (*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-3980 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-3980 (*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-1406 (*1 *1) (-5 *1 (-1168))) (-2807 (*1 *1 *1) (-5 *1 (-1168))) (-2807 (*1 *1 *2 *3) (-12 (-5 *2 (-1045 (-202))) (-5 *3 (-1068)) (-5 *1 (-1168)))) (-2807 (*1 *1 *2 *3) (-12 (-5 *2 (-1045 (-202))) (-5 *3 (-588 (-239))) (-5 *1 (-1168)))) (-3974 (*1 *2 *1) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-1168)))) (-3974 (*1 *1 *1 *2) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-1168)))) (-3756 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-708)) (-5 *4 (-872 (-202))) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2537 (*1 *2 *1) (-12 (-5 *2 (-588 (-239))) (-5 *1 (-1168)))) (-2537 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-239))) (-5 *1 (-1168)))) (-2799 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1434 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2955 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2985 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-708)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1908 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1908 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) (-5 *1 (-1168)))) (-1908 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1908 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-522)) (-5 *4 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1908 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1908 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1256 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2640 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-3948 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2178 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-3472 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1713 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1713 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1879 (*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1879 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2469 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2771 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-3691 (*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-4181 (*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1816 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1227 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1709 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-3670 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2200 (*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-3943 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2019 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-143)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-3969 (*1 *2 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1168)))) (-3969 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1168)))) (-3969 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1068)) (-5 *1 (-1168)))) (-1650 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2530 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1168)))))
-(-13 (-1014) (-10 -8 (-15 -2725 ((-354))) (-15 -2725 ((-354) (-354))) (-15 -3534 ((-354))) (-15 -3534 ((-354) (-354))) (-15 -2866 ((-354))) (-15 -2866 ((-354) (-354))) (-15 -2310 ((-354))) (-15 -2310 ((-354) (-354))) (-15 -3980 ((-354))) (-15 -3980 ((-354) (-354))) (-15 -1406 ($)) (-15 -2807 ($ $)) (-15 -2807 ($ (-1045 (-202)) (-1068))) (-15 -2807 ($ (-1045 (-202)) (-588 (-239)))) (-15 -3974 ((-1045 (-202)) $)) (-15 -3974 ($ $ (-1045 (-202)))) (-15 -3756 ((-1171) $ (-708) (-872 (-202)))) (-15 -2537 ((-588 (-239)) $)) (-15 -2537 ($ $ (-588 (-239)))) (-15 -2799 ((-1171) $ (-708) (-708))) (-15 -1434 ((-1171) $ (-850) (-850))) (-15 -2955 ((-1171) $ (-1068))) (-15 -2985 ((-1171) $ (-708) (-708) (-850) (-850))) (-15 -1908 ((-1171) $ (-354) (-354) (-354) (-354) (-354))) (-15 -1908 ((-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))) $)) (-15 -1908 ((-1171) $ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))) (-15 -1908 ((-1171) $ (-522) (-522) (-354) (-354) (-354))) (-15 -1908 ((-1171) $ (-354) (-354))) (-15 -1908 ((-1171) $ (-354) (-354) (-354))) (-15 -1256 ((-1171) $ (-1068))) (-15 -2640 ((-1171) $ (-1068))) (-15 -3948 ((-1171) $ (-1068))) (-15 -2178 ((-1171) $ (-1068))) (-15 -3472 ((-1171) $ (-1068))) (-15 -1713 ((-1171) $ (-354) (-354))) (-15 -1713 ((-1171) $ (-522) (-522))) (-15 -1879 ((-1171) $ (-354))) (-15 -1879 ((-1171) $ (-354) (-354) (-354))) (-15 -2469 ((-1171) $ (-354) (-354))) (-15 -2771 ((-1171) $ (-1068))) (-15 -3691 ((-1171) $ (-354))) (-15 -4181 ((-1171) $ (-354))) (-15 -1816 ((-1171) $ (-1068))) (-15 -1227 ((-1171) $ (-1068))) (-15 -1709 ((-1171) $ (-1068))) (-15 -3670 ((-1171) $ (-354) (-354) (-354))) (-15 -2200 ((-1171) $ (-354))) (-15 -3943 ((-1171) $)) (-15 -2019 ((-1171) $ (-143) (-143))) (-15 -3969 ((-1068) $ (-1068))) (-15 -3969 ((-1068) $ (-1068) (-1068))) (-15 -3969 ((-1068) $ (-1068) (-588 (-1068)))) (-15 -1650 ((-1171) $)) (-15 -2530 ((-522) $))))
-((-3647 (((-588 (-1068)) (-588 (-1068))) 94) (((-588 (-1068))) 89)) (-3432 (((-588 (-1068))) 87)) (-3662 (((-588 (-850)) (-588 (-850))) 62) (((-588 (-850))) 59)) (-2110 (((-588 (-708)) (-588 (-708))) 56) (((-588 (-708))) 52)) (-1287 (((-1171)) 64)) (-1485 (((-850) (-850)) 80) (((-850)) 79)) (-3070 (((-850) (-850)) 78) (((-850)) 77)) (-2701 (((-803) (-803)) 74) (((-803)) 73)) (-2001 (((-202)) 84) (((-202) (-354)) 86)) (-3994 (((-850)) 81) (((-850) (-850)) 82)) (-1298 (((-850) (-850)) 76) (((-850)) 75)) (-2940 (((-803) (-803)) 68) (((-803)) 66)) (-2053 (((-803) (-803)) 70) (((-803)) 69)) (-2251 (((-803) (-803)) 72) (((-803)) 71)))
-(((-1169) (-10 -7 (-15 -2940 ((-803))) (-15 -2940 ((-803) (-803))) (-15 -2053 ((-803))) (-15 -2053 ((-803) (-803))) (-15 -2251 ((-803))) (-15 -2251 ((-803) (-803))) (-15 -2701 ((-803))) (-15 -2701 ((-803) (-803))) (-15 -1298 ((-850))) (-15 -1298 ((-850) (-850))) (-15 -2110 ((-588 (-708)))) (-15 -2110 ((-588 (-708)) (-588 (-708)))) (-15 -3662 ((-588 (-850)))) (-15 -3662 ((-588 (-850)) (-588 (-850)))) (-15 -1287 ((-1171))) (-15 -3647 ((-588 (-1068)))) (-15 -3647 ((-588 (-1068)) (-588 (-1068)))) (-15 -3432 ((-588 (-1068)))) (-15 -3070 ((-850))) (-15 -1485 ((-850))) (-15 -3070 ((-850) (-850))) (-15 -1485 ((-850) (-850))) (-15 -3994 ((-850) (-850))) (-15 -3994 ((-850))) (-15 -2001 ((-202) (-354))) (-15 -2001 ((-202))))) (T -1169))
-((-2001 (*1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-1169)))) (-2001 (*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-202)) (-5 *1 (-1169)))) (-3994 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-3994 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-1485 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-3070 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-1485 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-3070 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-3432 (*1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1169)))) (-3647 (*1 *2 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1169)))) (-3647 (*1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1169)))) (-1287 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1169)))) (-3662 (*1 *2 *2) (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1169)))) (-3662 (*1 *2) (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1169)))) (-2110 (*1 *2 *2) (-12 (-5 *2 (-588 (-708))) (-5 *1 (-1169)))) (-2110 (*1 *2) (-12 (-5 *2 (-588 (-708))) (-5 *1 (-1169)))) (-1298 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-1298 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-2701 (*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-2701 (*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-2251 (*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-2251 (*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-2053 (*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-2053 (*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-2940 (*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-2940 (*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))))
-(-10 -7 (-15 -2940 ((-803))) (-15 -2940 ((-803) (-803))) (-15 -2053 ((-803))) (-15 -2053 ((-803) (-803))) (-15 -2251 ((-803))) (-15 -2251 ((-803) (-803))) (-15 -2701 ((-803))) (-15 -2701 ((-803) (-803))) (-15 -1298 ((-850))) (-15 -1298 ((-850) (-850))) (-15 -2110 ((-588 (-708)))) (-15 -2110 ((-588 (-708)) (-588 (-708)))) (-15 -3662 ((-588 (-850)))) (-15 -3662 ((-588 (-850)) (-588 (-850)))) (-15 -1287 ((-1171))) (-15 -3647 ((-588 (-1068)))) (-15 -3647 ((-588 (-1068)) (-588 (-1068)))) (-15 -3432 ((-588 (-1068)))) (-15 -3070 ((-850))) (-15 -1485 ((-850))) (-15 -3070 ((-850) (-850))) (-15 -1485 ((-850) (-850))) (-15 -3994 ((-850) (-850))) (-15 -3994 ((-850))) (-15 -2001 ((-202) (-354))) (-15 -2001 ((-202))))
-((-2593 (((-442) (-588 (-588 (-872 (-202)))) (-588 (-239))) 17) (((-442) (-588 (-588 (-872 (-202))))) 16) (((-442) (-588 (-588 (-872 (-202)))) (-803) (-803) (-850) (-588 (-239))) 15)) (-2820 (((-1167) (-588 (-588 (-872 (-202)))) (-588 (-239))) 23) (((-1167) (-588 (-588 (-872 (-202)))) (-803) (-803) (-850) (-588 (-239))) 22)) (-2190 (((-1167) (-442)) 34)))
-(((-1170) (-10 -7 (-15 -2593 ((-442) (-588 (-588 (-872 (-202)))) (-803) (-803) (-850) (-588 (-239)))) (-15 -2593 ((-442) (-588 (-588 (-872 (-202)))))) (-15 -2593 ((-442) (-588 (-588 (-872 (-202)))) (-588 (-239)))) (-15 -2820 ((-1167) (-588 (-588 (-872 (-202)))) (-803) (-803) (-850) (-588 (-239)))) (-15 -2820 ((-1167) (-588 (-588 (-872 (-202)))) (-588 (-239)))) (-15 -2190 ((-1167) (-442))))) (T -1170))
-((-2190 (*1 *2 *3) (-12 (-5 *3 (-442)) (-5 *2 (-1167)) (-5 *1 (-1170)))) (-2820 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-1170)))) (-2820 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-803)) (-5 *5 (-850)) (-5 *6 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-1170)))) (-2593 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-588 (-239))) (-5 *2 (-442)) (-5 *1 (-1170)))) (-2593 (*1 *2 *3) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *2 (-442)) (-5 *1 (-1170)))) (-2593 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-803)) (-5 *5 (-850)) (-5 *6 (-588 (-239))) (-5 *2 (-442)) (-5 *1 (-1170)))))
-(-10 -7 (-15 -2593 ((-442) (-588 (-588 (-872 (-202)))) (-803) (-803) (-850) (-588 (-239)))) (-15 -2593 ((-442) (-588 (-588 (-872 (-202)))))) (-15 -2593 ((-442) (-588 (-588 (-872 (-202)))) (-588 (-239)))) (-15 -2820 ((-1167) (-588 (-588 (-872 (-202)))) (-803) (-803) (-850) (-588 (-239)))) (-15 -2820 ((-1167) (-588 (-588 (-872 (-202)))) (-588 (-239)))) (-15 -2190 ((-1167) (-442))))
-((-1367 (($) 7)) (-2190 (((-792) $) 10)))
-(((-1171) (-10 -8 (-15 -1367 ($)) (-15 -2190 ((-792) $)))) (T -1171))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-1171)))) (-1367 (*1 *1) (-5 *1 (-1171))))
-(-10 -8 (-15 -1367 ($)) (-15 -2190 ((-792) $)))
-((-1620 (($ $ |#2|) 10)))
-(((-1172 |#1| |#2|) (-10 -8 (-15 -1620 (|#1| |#1| |#2|))) (-1173 |#2|) (-338)) (T -1172))
-NIL
-(-10 -8 (-15 -1620 (|#1| |#1| |#2|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-4078 (((-126)) 28)) (-2190 (((-792) $) 11)) (-3566 (($) 18 T CONST)) (-1531 (((-108) $ $) 6)) (-1620 (($ $ |#1|) 29)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+((-1661 (*1 *1 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-25)))) (-1785 (*1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1164 *3)) (-4 *3 (-23)) (-4 *3 (-1120)))) (-1672 (*1 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-21)))) (-1672 (*1 *1 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-4 *1 (-1164 *3)) (-4 *3 (-1120)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-664)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-664)))) (-4024 (*1 *2 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-971)))) (-4043 (*1 *2 *1 *1) (-12 (-4 *1 (-1164 *3)) (-4 *3 (-1120)) (-4 *3 (-971)) (-5 *2 (-628 *3)))) (-2791 (*1 *1 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-971)))) (-4030 (*1 *2 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-928)) (-4 *2 (-971)))) (-4113 (*1 *2 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-928)) (-4 *2 (-971)))))
+(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -1661 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -1785 ($ (-708))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -1672 ($ $)) (-15 -1672 ($ $ $)) (-15 * ($ (-522) $))) |%noBranch|) (IF (|has| |t#1| (-664)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-971)) (PROGN (-15 -4024 (|t#1| $ $)) (-15 -4043 ((-628 |t#1|) $ $)) (-15 -2791 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-928)) (IF (|has| |t#1| (-971)) (PROGN (-15 -4030 (|t#1| $)) (-15 -4113 (|t#1| $))) |%noBranch|) |%noBranch|)))
+(((-33) . T) ((-97) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-562 (-792)) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784)) (|has| |#1| (-562 (-792)))) ((-139 |#1|) . T) ((-563 (-498)) |has| |#1| (-563 (-498))) ((-262 #0=(-522) |#1|) . T) ((-264 #0# |#1|) . T) ((-285 |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-348 |#1|) . T) ((-461 |#1|) . T) ((-555 #0# |#1|) . T) ((-483 |#1| |#1|) -12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))) ((-593 |#1|) . T) ((-19 |#1|) . T) ((-784) |has| |#1| (-784)) ((-1014) -3844 (|has| |#1| (-1014)) (|has| |#1| (-784))) ((-1120) . T))
+((-3639 (((-1166 |#2|) (-1 |#2| |#1| |#2|) (-1166 |#1|) |#2|) 13)) (-2153 ((|#2| (-1 |#2| |#1| |#2|) (-1166 |#1|) |#2|) 15)) (-3810 (((-3 (-1166 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1166 |#1|)) 28) (((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|)) 18)))
+(((-1165 |#1| |#2|) (-10 -7 (-15 -3639 ((-1166 |#2|) (-1 |#2| |#1| |#2|) (-1166 |#1|) |#2|)) (-15 -2153 (|#2| (-1 |#2| |#1| |#2|) (-1166 |#1|) |#2|)) (-15 -3810 ((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|))) (-15 -3810 ((-3 (-1166 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1166 |#1|)))) (-1120) (-1120)) (T -1165))
+((-3810 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1166 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1166 *6)) (-5 *1 (-1165 *5 *6)))) (-3810 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1166 *6)) (-5 *1 (-1165 *5 *6)))) (-2153 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1166 *5)) (-4 *5 (-1120)) (-4 *2 (-1120)) (-5 *1 (-1165 *5 *2)))) (-3639 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1166 *6)) (-4 *6 (-1120)) (-4 *5 (-1120)) (-5 *2 (-1166 *5)) (-5 *1 (-1165 *6 *5)))))
+(-10 -7 (-15 -3639 ((-1166 |#2|) (-1 |#2| |#1| |#2|) (-1166 |#1|) |#2|)) (-15 -2153 (|#2| (-1 |#2| |#1| |#2|) (-1166 |#1|) |#2|)) (-15 -3810 ((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|))) (-15 -3810 ((-3 (-1166 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1166 |#1|))))
+((-1419 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1785 (($ (-708)) NIL (|has| |#1| (-23)))) (-2713 (($ (-588 |#1|)) 9)) (-3883 (((-1171) $ (-522) (-522)) NIL (|has| $ (-6 -4239)))) (-1866 (((-108) (-1 (-108) |#1| |#1|) $) NIL) (((-108) $) NIL (|has| |#1| (-784)))) (-2806 (($ (-1 (-108) |#1| |#1|) $) NIL (|has| $ (-6 -4239))) (($ $) NIL (-12 (|has| $ (-6 -4239)) (|has| |#1| (-784))))) (-3296 (($ (-1 (-108) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-784)))) (-2717 (((-108) $ (-708)) NIL)) (-2437 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239))) ((|#1| $ (-1133 (-522)) |#1|) NIL (|has| $ (-6 -4239)))) (-1696 (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-3367 (($) NIL T CONST)) (-2465 (($ $) NIL (|has| $ (-6 -4239)))) (-1939 (($ $) NIL)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1424 (($ |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) (($ (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2153 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4238))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4238)))) (-2411 ((|#1| $ (-522) |#1|) NIL (|has| $ (-6 -4239)))) (-2186 ((|#1| $ (-522)) NIL)) (-3314 (((-522) (-1 (-108) |#1|) $) NIL) (((-522) |#1| $) NIL (|has| |#1| (-1014))) (((-522) |#1| $ (-522)) NIL (|has| |#1| (-1014)))) (-2395 (((-588 |#1|) $) 15 (|has| $ (-6 -4238)))) (-4043 (((-628 |#1|) $ $) NIL (|has| |#1| (-971)))) (-1893 (($ (-708) |#1|) NIL)) (-1480 (((-108) $ (-708)) NIL)) (-3496 (((-522) $) NIL (|has| (-522) (-784)))) (-1308 (($ $ $) NIL (|has| |#1| (-784)))) (-3164 (($ (-1 (-108) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-784)))) (-4084 (((-588 |#1|) $) NIL (|has| $ (-6 -4238)))) (-4176 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-2201 (((-522) $) NIL (|has| (-522) (-784)))) (-2524 (($ $ $) NIL (|has| |#1| (-784)))) (-2397 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4113 ((|#1| $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-971))))) (-3309 (((-108) $ (-708)) NIL)) (-4030 ((|#1| $) NIL (-12 (|has| |#1| (-928)) (|has| |#1| (-971))))) (-2311 (((-1068) $) NIL (|has| |#1| (-1014)))) (-1731 (($ |#1| $ (-522)) NIL) (($ $ $ (-522)) NIL)) (-2130 (((-588 (-522)) $) NIL)) (-2103 (((-108) (-522) $) NIL)) (-4174 (((-1032) $) NIL (|has| |#1| (-1014)))) (-2337 ((|#1| $) NIL (|has| (-522) (-784)))) (-2187 (((-3 |#1| "failed") (-1 (-108) |#1|) $) NIL)) (-1972 (($ $ |#1|) NIL (|has| $ (-6 -4239)))) (-3487 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 (-270 |#1|))) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-270 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014)))) (($ $ (-588 |#1|) (-588 |#1|)) NIL (-12 (|has| |#1| (-285 |#1|)) (|has| |#1| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3434 (((-108) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-1973 (((-588 |#1|) $) NIL)) (-3494 (((-108) $) NIL)) (-3298 (($) NIL)) (-2683 ((|#1| $ (-522) |#1|) NIL) ((|#1| $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-4024 ((|#1| $ $) NIL (|has| |#1| (-971)))) (-3835 (($ $ (-522)) NIL) (($ $ (-1133 (-522))) NIL)) (-2791 (($ $ $) NIL (|has| |#1| (-971)))) (-4187 (((-708) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238))) (((-708) |#1| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#1| (-1014))))) (-3629 (($ $ $ (-522)) NIL (|has| $ (-6 -4239)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) 19 (|has| |#1| (-563 (-498))))) (-2227 (($ (-588 |#1|)) 8)) (-4170 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-588 $)) NIL)) (-2217 (((-792) $) NIL (|has| |#1| (-562 (-792))))) (-1381 (((-108) (-1 (-108) |#1|) $) NIL (|has| $ (-6 -4238)))) (-1623 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1597 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1562 (((-108) $ $) NIL (|has| |#1| (-1014)))) (-1609 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1587 (((-108) $ $) NIL (|has| |#1| (-784)))) (-1672 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1661 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-522) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-664))) (($ $ |#1|) NIL (|has| |#1| (-664)))) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-1166 |#1|) (-13 (-1164 |#1|) (-10 -8 (-15 -2713 ($ (-588 |#1|))))) (-1120)) (T -1166))
+((-2713 (*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1166 *3)))))
+(-13 (-1164 |#1|) (-10 -8 (-15 -2713 ($ (-588 |#1|)))))
+((-1419 (((-108) $ $) NIL)) (-4048 (((-1068) $ (-1068)) 87) (((-1068) $ (-1068) (-1068)) 85) (((-1068) $ (-1068) (-588 (-1068))) 84)) (-1211 (($) 56)) (-3257 (((-1171) $ (-442) (-850)) 42)) (-2035 (((-1171) $ (-850) (-1068)) 70) (((-1171) $ (-850) (-803)) 71)) (-2555 (((-1171) $ (-850) (-354) (-354)) 45)) (-3082 (((-1171) $ (-1068)) 66)) (-1922 (((-1171) $ (-850) (-1068)) 75)) (-3808 (((-1171) $ (-850) (-354) (-354)) 46)) (-2360 (((-1171) $ (-850) (-850)) 43)) (-4032 (((-1171) $) 67)) (-2067 (((-1171) $ (-850) (-1068)) 74)) (-4063 (((-1171) $ (-442) (-850)) 30)) (-3748 (((-1171) $ (-850) (-1068)) 73)) (-2654 (((-588 (-239)) $) 22) (($ $ (-588 (-239))) 23)) (-2560 (((-1171) $ (-708) (-708)) 40)) (-1793 (($ $) 57) (($ (-442) (-588 (-239))) 58)) (-2311 (((-1068) $) NIL)) (-2644 (((-522) $) 37)) (-4174 (((-1032) $) NIL)) (-2083 (((-1166 (-3 (-442) "undefined")) $) 36)) (-1923 (((-1166 (-2 (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)) (|:| -3748 (-522)) (|:| -2294 (-522)) (|:| |spline| (-522)) (|:| -1605 (-522)) (|:| |axesColor| (-803)) (|:| -2035 (-522)) (|:| |unitsColor| (-803)) (|:| |showing| (-522)))) $) 35)) (-2521 (((-1171) $ (-850) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-803) (-522) (-803) (-522)) 65)) (-2445 (((-588 (-872 (-202))) $) NIL)) (-4125 (((-442) $ (-850)) 32)) (-4021 (((-1171) $ (-708) (-708) (-850) (-850)) 39)) (-2532 (((-1171) $ (-1068)) 76)) (-2294 (((-1171) $ (-850) (-1068)) 72)) (-2217 (((-792) $) 82)) (-1720 (((-1171) $) 77)) (-1605 (((-1171) $ (-850) (-1068)) 68) (((-1171) $ (-850) (-803)) 69)) (-1562 (((-108) $ $) NIL)))
+(((-1167) (-13 (-1014) (-10 -8 (-15 -2445 ((-588 (-872 (-202))) $)) (-15 -1211 ($)) (-15 -1793 ($ $)) (-15 -2654 ((-588 (-239)) $)) (-15 -2654 ($ $ (-588 (-239)))) (-15 -1793 ($ (-442) (-588 (-239)))) (-15 -2521 ((-1171) $ (-850) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-803) (-522) (-803) (-522))) (-15 -1923 ((-1166 (-2 (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)) (|:| -3748 (-522)) (|:| -2294 (-522)) (|:| |spline| (-522)) (|:| -1605 (-522)) (|:| |axesColor| (-803)) (|:| -2035 (-522)) (|:| |unitsColor| (-803)) (|:| |showing| (-522)))) $)) (-15 -2083 ((-1166 (-3 (-442) "undefined")) $)) (-15 -3082 ((-1171) $ (-1068))) (-15 -4063 ((-1171) $ (-442) (-850))) (-15 -4125 ((-442) $ (-850))) (-15 -1605 ((-1171) $ (-850) (-1068))) (-15 -1605 ((-1171) $ (-850) (-803))) (-15 -2035 ((-1171) $ (-850) (-1068))) (-15 -2035 ((-1171) $ (-850) (-803))) (-15 -3748 ((-1171) $ (-850) (-1068))) (-15 -2067 ((-1171) $ (-850) (-1068))) (-15 -2294 ((-1171) $ (-850) (-1068))) (-15 -2532 ((-1171) $ (-1068))) (-15 -1720 ((-1171) $)) (-15 -4021 ((-1171) $ (-708) (-708) (-850) (-850))) (-15 -3808 ((-1171) $ (-850) (-354) (-354))) (-15 -2555 ((-1171) $ (-850) (-354) (-354))) (-15 -1922 ((-1171) $ (-850) (-1068))) (-15 -2560 ((-1171) $ (-708) (-708))) (-15 -3257 ((-1171) $ (-442) (-850))) (-15 -2360 ((-1171) $ (-850) (-850))) (-15 -4048 ((-1068) $ (-1068))) (-15 -4048 ((-1068) $ (-1068) (-1068))) (-15 -4048 ((-1068) $ (-1068) (-588 (-1068)))) (-15 -4032 ((-1171) $)) (-15 -2644 ((-522) $)) (-15 -2217 ((-792) $))))) (T -1167))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-1167)))) (-2445 (*1 *2 *1) (-12 (-5 *2 (-588 (-872 (-202)))) (-5 *1 (-1167)))) (-1211 (*1 *1) (-5 *1 (-1167))) (-1793 (*1 *1 *1) (-5 *1 (-1167))) (-2654 (*1 *2 *1) (-12 (-5 *2 (-588 (-239))) (-5 *1 (-1167)))) (-2654 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-239))) (-5 *1 (-1167)))) (-1793 (*1 *1 *2 *3) (-12 (-5 *2 (-442)) (-5 *3 (-588 (-239))) (-5 *1 (-1167)))) (-2521 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-850)) (-5 *4 (-202)) (-5 *5 (-522)) (-5 *6 (-803)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-1923 (*1 *2 *1) (-12 (-5 *2 (-1166 (-2 (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)) (|:| -3748 (-522)) (|:| -2294 (-522)) (|:| |spline| (-522)) (|:| -1605 (-522)) (|:| |axesColor| (-803)) (|:| -2035 (-522)) (|:| |unitsColor| (-803)) (|:| |showing| (-522))))) (-5 *1 (-1167)))) (-2083 (*1 *2 *1) (-12 (-5 *2 (-1166 (-3 (-442) "undefined"))) (-5 *1 (-1167)))) (-3082 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-4063 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-442)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-4125 (*1 *2 *1 *3) (-12 (-5 *3 (-850)) (-5 *2 (-442)) (-5 *1 (-1167)))) (-1605 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-1605 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-803)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2035 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2035 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-803)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-3748 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2067 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2294 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2532 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-1720 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1167)))) (-4021 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-708)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-3808 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-850)) (-5 *4 (-354)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2555 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-850)) (-5 *4 (-354)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-1922 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2560 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-3257 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-442)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2360 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167)))) (-4048 (*1 *2 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1167)))) (-4048 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1167)))) (-4048 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1068)) (-5 *1 (-1167)))) (-4032 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1167)))) (-2644 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1167)))))
+(-13 (-1014) (-10 -8 (-15 -2445 ((-588 (-872 (-202))) $)) (-15 -1211 ($)) (-15 -1793 ($ $)) (-15 -2654 ((-588 (-239)) $)) (-15 -2654 ($ $ (-588 (-239)))) (-15 -1793 ($ (-442) (-588 (-239)))) (-15 -2521 ((-1171) $ (-850) (-202) (-202) (-202) (-202) (-522) (-522) (-522) (-522) (-803) (-522) (-803) (-522))) (-15 -1923 ((-1166 (-2 (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)) (|:| -3748 (-522)) (|:| -2294 (-522)) (|:| |spline| (-522)) (|:| -1605 (-522)) (|:| |axesColor| (-803)) (|:| -2035 (-522)) (|:| |unitsColor| (-803)) (|:| |showing| (-522)))) $)) (-15 -2083 ((-1166 (-3 (-442) "undefined")) $)) (-15 -3082 ((-1171) $ (-1068))) (-15 -4063 ((-1171) $ (-442) (-850))) (-15 -4125 ((-442) $ (-850))) (-15 -1605 ((-1171) $ (-850) (-1068))) (-15 -1605 ((-1171) $ (-850) (-803))) (-15 -2035 ((-1171) $ (-850) (-1068))) (-15 -2035 ((-1171) $ (-850) (-803))) (-15 -3748 ((-1171) $ (-850) (-1068))) (-15 -2067 ((-1171) $ (-850) (-1068))) (-15 -2294 ((-1171) $ (-850) (-1068))) (-15 -2532 ((-1171) $ (-1068))) (-15 -1720 ((-1171) $)) (-15 -4021 ((-1171) $ (-708) (-708) (-850) (-850))) (-15 -3808 ((-1171) $ (-850) (-354) (-354))) (-15 -2555 ((-1171) $ (-850) (-354) (-354))) (-15 -1922 ((-1171) $ (-850) (-1068))) (-15 -2560 ((-1171) $ (-708) (-708))) (-15 -3257 ((-1171) $ (-442) (-850))) (-15 -2360 ((-1171) $ (-850) (-850))) (-15 -4048 ((-1068) $ (-1068))) (-15 -4048 ((-1068) $ (-1068) (-1068))) (-15 -4048 ((-1068) $ (-1068) (-588 (-1068)))) (-15 -4032 ((-1171) $)) (-15 -2644 ((-522) $)) (-15 -2217 ((-792) $))))
+((-1419 (((-108) $ $) NIL)) (-2843 (((-1171) $ (-354)) 138) (((-1171) $ (-354) (-354) (-354)) 139)) (-4048 (((-1068) $ (-1068)) 146) (((-1068) $ (-1068) (-1068)) 144) (((-1068) $ (-1068) (-588 (-1068))) 143)) (-2112 (($) 49)) (-1210 (((-1171) $ (-354) (-354) (-354) (-354) (-354)) 114) (((-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))) $) 112) (((-1171) $ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) 113) (((-1171) $ (-522) (-522) (-354) (-354) (-354)) 115) (((-1171) $ (-354) (-354)) 116) (((-1171) $ (-354) (-354) (-354)) 123)) (-1253 (((-354)) 96) (((-354) (-354)) 97)) (-3437 (((-354)) 91) (((-354) (-354)) 93)) (-2775 (((-354)) 94) (((-354) (-354)) 95)) (-1635 (((-354)) 100) (((-354) (-354)) 101)) (-2809 (((-354)) 98) (((-354) (-354)) 99)) (-2555 (((-1171) $ (-354) (-354)) 140)) (-3082 (((-1171) $ (-1068)) 124)) (-1584 (((-1045 (-202)) $) 50) (($ $ (-1045 (-202))) 51)) (-3933 (((-1171) $ (-1068)) 152)) (-2199 (((-1171) $ (-1068)) 153)) (-4209 (((-1171) $ (-354) (-354)) 122) (((-1171) $ (-522) (-522)) 137)) (-2360 (((-1171) $ (-850) (-850)) 130)) (-4032 (((-1171) $) 110)) (-1639 (((-1171) $ (-1068)) 151)) (-3289 (((-1171) $ (-1068)) 107)) (-2654 (((-588 (-239)) $) 52) (($ $ (-588 (-239))) 53)) (-2560 (((-1171) $ (-708) (-708)) 129)) (-3151 (((-1171) $ (-708) (-872 (-202))) 158)) (-2637 (($ $) 56) (($ (-1045 (-202)) (-1068)) 57) (($ (-1045 (-202)) (-588 (-239))) 58)) (-1627 (((-1171) $ (-354) (-354) (-354)) 104)) (-2311 (((-1068) $) NIL)) (-2644 (((-522) $) 102)) (-2292 (((-1171) $ (-354)) 141)) (-1817 (((-1171) $ (-354)) 156)) (-4174 (((-1032) $) NIL)) (-3650 (((-1171) $ (-354)) 155)) (-3303 (((-1171) $ (-1068)) 109)) (-4021 (((-1171) $ (-708) (-708) (-850) (-850)) 128)) (-1312 (((-1171) $ (-1068)) 106)) (-2532 (((-1171) $ (-1068)) 108)) (-2258 (((-1171) $ (-143) (-143)) 127)) (-2217 (((-792) $) 135)) (-1720 (((-1171) $) 111)) (-4161 (((-1171) $ (-1068)) 154)) (-1605 (((-1171) $ (-1068)) 105)) (-1562 (((-108) $ $) NIL)))
+(((-1168) (-13 (-1014) (-10 -8 (-15 -3437 ((-354))) (-15 -3437 ((-354) (-354))) (-15 -2775 ((-354))) (-15 -2775 ((-354) (-354))) (-15 -1253 ((-354))) (-15 -1253 ((-354) (-354))) (-15 -2809 ((-354))) (-15 -2809 ((-354) (-354))) (-15 -1635 ((-354))) (-15 -1635 ((-354) (-354))) (-15 -2112 ($)) (-15 -2637 ($ $)) (-15 -2637 ($ (-1045 (-202)) (-1068))) (-15 -2637 ($ (-1045 (-202)) (-588 (-239)))) (-15 -1584 ((-1045 (-202)) $)) (-15 -1584 ($ $ (-1045 (-202)))) (-15 -3151 ((-1171) $ (-708) (-872 (-202)))) (-15 -2654 ((-588 (-239)) $)) (-15 -2654 ($ $ (-588 (-239)))) (-15 -2560 ((-1171) $ (-708) (-708))) (-15 -2360 ((-1171) $ (-850) (-850))) (-15 -3082 ((-1171) $ (-1068))) (-15 -4021 ((-1171) $ (-708) (-708) (-850) (-850))) (-15 -1210 ((-1171) $ (-354) (-354) (-354) (-354) (-354))) (-15 -1210 ((-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))) $)) (-15 -1210 ((-1171) $ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))) (-15 -1210 ((-1171) $ (-522) (-522) (-354) (-354) (-354))) (-15 -1210 ((-1171) $ (-354) (-354))) (-15 -1210 ((-1171) $ (-354) (-354) (-354))) (-15 -2532 ((-1171) $ (-1068))) (-15 -1605 ((-1171) $ (-1068))) (-15 -1312 ((-1171) $ (-1068))) (-15 -3289 ((-1171) $ (-1068))) (-15 -3303 ((-1171) $ (-1068))) (-15 -4209 ((-1171) $ (-354) (-354))) (-15 -4209 ((-1171) $ (-522) (-522))) (-15 -2843 ((-1171) $ (-354))) (-15 -2843 ((-1171) $ (-354) (-354) (-354))) (-15 -2555 ((-1171) $ (-354) (-354))) (-15 -1639 ((-1171) $ (-1068))) (-15 -3650 ((-1171) $ (-354))) (-15 -1817 ((-1171) $ (-354))) (-15 -3933 ((-1171) $ (-1068))) (-15 -2199 ((-1171) $ (-1068))) (-15 -4161 ((-1171) $ (-1068))) (-15 -1627 ((-1171) $ (-354) (-354) (-354))) (-15 -2292 ((-1171) $ (-354))) (-15 -4032 ((-1171) $)) (-15 -2258 ((-1171) $ (-143) (-143))) (-15 -4048 ((-1068) $ (-1068))) (-15 -4048 ((-1068) $ (-1068) (-1068))) (-15 -4048 ((-1068) $ (-1068) (-588 (-1068)))) (-15 -1720 ((-1171) $)) (-15 -2644 ((-522) $))))) (T -1168))
+((-3437 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-3437 (*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-2775 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-2775 (*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-1253 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-1253 (*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-2809 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-2809 (*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-1635 (*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-1635 (*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))) (-2112 (*1 *1) (-5 *1 (-1168))) (-2637 (*1 *1 *1) (-5 *1 (-1168))) (-2637 (*1 *1 *2 *3) (-12 (-5 *2 (-1045 (-202))) (-5 *3 (-1068)) (-5 *1 (-1168)))) (-2637 (*1 *1 *2 *3) (-12 (-5 *2 (-1045 (-202))) (-5 *3 (-588 (-239))) (-5 *1 (-1168)))) (-1584 (*1 *2 *1) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-1168)))) (-1584 (*1 *1 *1 *2) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-1168)))) (-3151 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-708)) (-5 *4 (-872 (-202))) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2654 (*1 *2 *1) (-12 (-5 *2 (-588 (-239))) (-5 *1 (-1168)))) (-2654 (*1 *1 *1 *2) (-12 (-5 *2 (-588 (-239))) (-5 *1 (-1168)))) (-2560 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2360 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-3082 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-4021 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-708)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1210 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1210 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) (-5 *1 (-1168)))) (-1210 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202)))) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1210 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-522)) (-5 *4 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1210 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1210 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2532 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1605 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1312 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-3289 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-3303 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-4209 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-4209 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2843 (*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2843 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2555 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1639 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-3650 (*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1817 (*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-3933 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2199 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-4161 (*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-1627 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2292 (*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-4032 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2258 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-143)) (-5 *2 (-1171)) (-5 *1 (-1168)))) (-4048 (*1 *2 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1168)))) (-4048 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1168)))) (-4048 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1068)) (-5 *1 (-1168)))) (-1720 (*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1168)))) (-2644 (*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1168)))))
+(-13 (-1014) (-10 -8 (-15 -3437 ((-354))) (-15 -3437 ((-354) (-354))) (-15 -2775 ((-354))) (-15 -2775 ((-354) (-354))) (-15 -1253 ((-354))) (-15 -1253 ((-354) (-354))) (-15 -2809 ((-354))) (-15 -2809 ((-354) (-354))) (-15 -1635 ((-354))) (-15 -1635 ((-354) (-354))) (-15 -2112 ($)) (-15 -2637 ($ $)) (-15 -2637 ($ (-1045 (-202)) (-1068))) (-15 -2637 ($ (-1045 (-202)) (-588 (-239)))) (-15 -1584 ((-1045 (-202)) $)) (-15 -1584 ($ $ (-1045 (-202)))) (-15 -3151 ((-1171) $ (-708) (-872 (-202)))) (-15 -2654 ((-588 (-239)) $)) (-15 -2654 ($ $ (-588 (-239)))) (-15 -2560 ((-1171) $ (-708) (-708))) (-15 -2360 ((-1171) $ (-850) (-850))) (-15 -3082 ((-1171) $ (-1068))) (-15 -4021 ((-1171) $ (-708) (-708) (-850) (-850))) (-15 -1210 ((-1171) $ (-354) (-354) (-354) (-354) (-354))) (-15 -1210 ((-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))) $)) (-15 -1210 ((-1171) $ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202)) (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202)) (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))) (-15 -1210 ((-1171) $ (-522) (-522) (-354) (-354) (-354))) (-15 -1210 ((-1171) $ (-354) (-354))) (-15 -1210 ((-1171) $ (-354) (-354) (-354))) (-15 -2532 ((-1171) $ (-1068))) (-15 -1605 ((-1171) $ (-1068))) (-15 -1312 ((-1171) $ (-1068))) (-15 -3289 ((-1171) $ (-1068))) (-15 -3303 ((-1171) $ (-1068))) (-15 -4209 ((-1171) $ (-354) (-354))) (-15 -4209 ((-1171) $ (-522) (-522))) (-15 -2843 ((-1171) $ (-354))) (-15 -2843 ((-1171) $ (-354) (-354) (-354))) (-15 -2555 ((-1171) $ (-354) (-354))) (-15 -1639 ((-1171) $ (-1068))) (-15 -3650 ((-1171) $ (-354))) (-15 -1817 ((-1171) $ (-354))) (-15 -3933 ((-1171) $ (-1068))) (-15 -2199 ((-1171) $ (-1068))) (-15 -4161 ((-1171) $ (-1068))) (-15 -1627 ((-1171) $ (-354) (-354) (-354))) (-15 -2292 ((-1171) $ (-354))) (-15 -4032 ((-1171) $)) (-15 -2258 ((-1171) $ (-143) (-143))) (-15 -4048 ((-1068) $ (-1068))) (-15 -4048 ((-1068) $ (-1068) (-1068))) (-15 -4048 ((-1068) $ (-1068) (-588 (-1068)))) (-15 -1720 ((-1171) $)) (-15 -2644 ((-522) $))))
+((-1371 (((-588 (-1068)) (-588 (-1068))) 94) (((-588 (-1068))) 89)) (-2981 (((-588 (-1068))) 87)) (-1543 (((-588 (-850)) (-588 (-850))) 62) (((-588 (-850))) 59)) (-1370 (((-588 (-708)) (-588 (-708))) 56) (((-588 (-708))) 52)) (-1586 (((-1171)) 64)) (-1631 (((-850) (-850)) 80) (((-850)) 79)) (-3626 (((-850) (-850)) 78) (((-850)) 77)) (-3662 (((-803) (-803)) 74) (((-803)) 73)) (-3304 (((-202)) 84) (((-202) (-354)) 86)) (-3575 (((-850)) 81) (((-850) (-850)) 82)) (-1694 (((-850) (-850)) 76) (((-850)) 75)) (-3718 (((-803) (-803)) 68) (((-803)) 66)) (-2673 (((-803) (-803)) 70) (((-803)) 69)) (-2958 (((-803) (-803)) 72) (((-803)) 71)))
+(((-1169) (-10 -7 (-15 -3718 ((-803))) (-15 -3718 ((-803) (-803))) (-15 -2673 ((-803))) (-15 -2673 ((-803) (-803))) (-15 -2958 ((-803))) (-15 -2958 ((-803) (-803))) (-15 -3662 ((-803))) (-15 -3662 ((-803) (-803))) (-15 -1694 ((-850))) (-15 -1694 ((-850) (-850))) (-15 -1370 ((-588 (-708)))) (-15 -1370 ((-588 (-708)) (-588 (-708)))) (-15 -1543 ((-588 (-850)))) (-15 -1543 ((-588 (-850)) (-588 (-850)))) (-15 -1586 ((-1171))) (-15 -1371 ((-588 (-1068)))) (-15 -1371 ((-588 (-1068)) (-588 (-1068)))) (-15 -2981 ((-588 (-1068)))) (-15 -3626 ((-850))) (-15 -1631 ((-850))) (-15 -3626 ((-850) (-850))) (-15 -1631 ((-850) (-850))) (-15 -3575 ((-850) (-850))) (-15 -3575 ((-850))) (-15 -3304 ((-202) (-354))) (-15 -3304 ((-202))))) (T -1169))
+((-3304 (*1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-1169)))) (-3304 (*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-202)) (-5 *1 (-1169)))) (-3575 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-3575 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-1631 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-3626 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-1631 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-3626 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-2981 (*1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1169)))) (-1371 (*1 *2 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1169)))) (-1371 (*1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1169)))) (-1586 (*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1169)))) (-1543 (*1 *2 *2) (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1169)))) (-1543 (*1 *2) (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1169)))) (-1370 (*1 *2 *2) (-12 (-5 *2 (-588 (-708))) (-5 *1 (-1169)))) (-1370 (*1 *2) (-12 (-5 *2 (-588 (-708))) (-5 *1 (-1169)))) (-1694 (*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-1694 (*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))) (-3662 (*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-3662 (*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-2958 (*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-2958 (*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-2673 (*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-2673 (*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-3718 (*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))) (-3718 (*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))))
+(-10 -7 (-15 -3718 ((-803))) (-15 -3718 ((-803) (-803))) (-15 -2673 ((-803))) (-15 -2673 ((-803) (-803))) (-15 -2958 ((-803))) (-15 -2958 ((-803) (-803))) (-15 -3662 ((-803))) (-15 -3662 ((-803) (-803))) (-15 -1694 ((-850))) (-15 -1694 ((-850) (-850))) (-15 -1370 ((-588 (-708)))) (-15 -1370 ((-588 (-708)) (-588 (-708)))) (-15 -1543 ((-588 (-850)))) (-15 -1543 ((-588 (-850)) (-588 (-850)))) (-15 -1586 ((-1171))) (-15 -1371 ((-588 (-1068)))) (-15 -1371 ((-588 (-1068)) (-588 (-1068)))) (-15 -2981 ((-588 (-1068)))) (-15 -3626 ((-850))) (-15 -1631 ((-850))) (-15 -3626 ((-850) (-850))) (-15 -1631 ((-850) (-850))) (-15 -3575 ((-850) (-850))) (-15 -3575 ((-850))) (-15 -3304 ((-202) (-354))) (-15 -3304 ((-202))))
+((-3096 (((-442) (-588 (-588 (-872 (-202)))) (-588 (-239))) 17) (((-442) (-588 (-588 (-872 (-202))))) 16) (((-442) (-588 (-588 (-872 (-202)))) (-803) (-803) (-850) (-588 (-239))) 15)) (-2781 (((-1167) (-588 (-588 (-872 (-202)))) (-588 (-239))) 23) (((-1167) (-588 (-588 (-872 (-202)))) (-803) (-803) (-850) (-588 (-239))) 22)) (-2217 (((-1167) (-442)) 34)))
+(((-1170) (-10 -7 (-15 -3096 ((-442) (-588 (-588 (-872 (-202)))) (-803) (-803) (-850) (-588 (-239)))) (-15 -3096 ((-442) (-588 (-588 (-872 (-202)))))) (-15 -3096 ((-442) (-588 (-588 (-872 (-202)))) (-588 (-239)))) (-15 -2781 ((-1167) (-588 (-588 (-872 (-202)))) (-803) (-803) (-850) (-588 (-239)))) (-15 -2781 ((-1167) (-588 (-588 (-872 (-202)))) (-588 (-239)))) (-15 -2217 ((-1167) (-442))))) (T -1170))
+((-2217 (*1 *2 *3) (-12 (-5 *3 (-442)) (-5 *2 (-1167)) (-5 *1 (-1170)))) (-2781 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-1170)))) (-2781 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-803)) (-5 *5 (-850)) (-5 *6 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-1170)))) (-3096 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-588 (-239))) (-5 *2 (-442)) (-5 *1 (-1170)))) (-3096 (*1 *2 *3) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *2 (-442)) (-5 *1 (-1170)))) (-3096 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-803)) (-5 *5 (-850)) (-5 *6 (-588 (-239))) (-5 *2 (-442)) (-5 *1 (-1170)))))
+(-10 -7 (-15 -3096 ((-442) (-588 (-588 (-872 (-202)))) (-803) (-803) (-850) (-588 (-239)))) (-15 -3096 ((-442) (-588 (-588 (-872 (-202)))))) (-15 -3096 ((-442) (-588 (-588 (-872 (-202)))) (-588 (-239)))) (-15 -2781 ((-1167) (-588 (-588 (-872 (-202)))) (-803) (-803) (-850) (-588 (-239)))) (-15 -2781 ((-1167) (-588 (-588 (-872 (-202)))) (-588 (-239)))) (-15 -2217 ((-1167) (-442))))
+((-1350 (($) 7)) (-2217 (((-792) $) 10)))
+(((-1171) (-10 -8 (-15 -1350 ($)) (-15 -2217 ((-792) $)))) (T -1171))
+((-2217 (*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-1171)))) (-1350 (*1 *1) (-5 *1 (-1171))))
+(-10 -8 (-15 -1350 ($)) (-15 -2217 ((-792) $)))
+((-1682 (($ $ |#2|) 10)))
+(((-1172 |#1| |#2|) (-10 -8 (-15 -1682 (|#1| |#1| |#2|))) (-1173 |#2|) (-338)) (T -1172))
+NIL
+(-10 -8 (-15 -1682 (|#1| |#1| |#2|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-3222 (((-126)) 28)) (-2217 (((-792) $) 11)) (-3697 (($) 18 T CONST)) (-1562 (((-108) $ $) 6)) (-1682 (($ $ |#1|) 29)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
(((-1173 |#1|) (-1197) (-338)) (T -1173))
-((-1620 (*1 *1 *1 *2) (-12 (-4 *1 (-1173 *2)) (-4 *2 (-338)))) (-4078 (*1 *2) (-12 (-4 *1 (-1173 *3)) (-4 *3 (-338)) (-5 *2 (-126)))))
-(-13 (-655 |t#1|) (-10 -8 (-15 -1620 ($ $ |t#1|)) (-15 -4078 ((-126)))))
+((-1682 (*1 *1 *1 *2) (-12 (-4 *1 (-1173 *2)) (-4 *2 (-338)))) (-3222 (*1 *2) (-12 (-4 *1 (-1173 *3)) (-4 *3 (-338)) (-5 *2 (-126)))))
+(-13 (-655 |t#1|) (-10 -8 (-15 -1682 ($ $ |t#1|)) (-15 -3222 ((-126)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#1|) . T) ((-655 |#1|) . T) ((-977 |#1|) . T) ((-1014) . T))
-((-4154 (((-588 (-1115 |#1|)) (-1085) (-1115 |#1|)) 78)) (-3638 (((-1066 (-1066 (-881 |#1|))) (-1085) (-1066 (-881 |#1|))) 57)) (-2247 (((-1 (-1066 (-1115 |#1|)) (-1066 (-1115 |#1|))) (-708) (-1115 |#1|) (-1066 (-1115 |#1|))) 68)) (-2194 (((-1 (-1066 (-881 |#1|)) (-1066 (-881 |#1|))) (-708)) 59)) (-2551 (((-1 (-1081 (-881 |#1|)) (-881 |#1|)) (-1085)) 27)) (-2721 (((-1 (-1066 (-881 |#1|)) (-1066 (-881 |#1|))) (-708)) 58)))
-(((-1174 |#1|) (-10 -7 (-15 -2194 ((-1 (-1066 (-881 |#1|)) (-1066 (-881 |#1|))) (-708))) (-15 -2721 ((-1 (-1066 (-881 |#1|)) (-1066 (-881 |#1|))) (-708))) (-15 -3638 ((-1066 (-1066 (-881 |#1|))) (-1085) (-1066 (-881 |#1|)))) (-15 -2551 ((-1 (-1081 (-881 |#1|)) (-881 |#1|)) (-1085))) (-15 -4154 ((-588 (-1115 |#1|)) (-1085) (-1115 |#1|))) (-15 -2247 ((-1 (-1066 (-1115 |#1|)) (-1066 (-1115 |#1|))) (-708) (-1115 |#1|) (-1066 (-1115 |#1|))))) (-338)) (T -1174))
-((-2247 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-708)) (-4 *6 (-338)) (-5 *4 (-1115 *6)) (-5 *2 (-1 (-1066 *4) (-1066 *4))) (-5 *1 (-1174 *6)) (-5 *5 (-1066 *4)))) (-4154 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-4 *5 (-338)) (-5 *2 (-588 (-1115 *5))) (-5 *1 (-1174 *5)) (-5 *4 (-1115 *5)))) (-2551 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1 (-1081 (-881 *4)) (-881 *4))) (-5 *1 (-1174 *4)) (-4 *4 (-338)))) (-3638 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-4 *5 (-338)) (-5 *2 (-1066 (-1066 (-881 *5)))) (-5 *1 (-1174 *5)) (-5 *4 (-1066 (-881 *5))))) (-2721 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-1066 (-881 *4)) (-1066 (-881 *4)))) (-5 *1 (-1174 *4)) (-4 *4 (-338)))) (-2194 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-1066 (-881 *4)) (-1066 (-881 *4)))) (-5 *1 (-1174 *4)) (-4 *4 (-338)))))
-(-10 -7 (-15 -2194 ((-1 (-1066 (-881 |#1|)) (-1066 (-881 |#1|))) (-708))) (-15 -2721 ((-1 (-1066 (-881 |#1|)) (-1066 (-881 |#1|))) (-708))) (-15 -3638 ((-1066 (-1066 (-881 |#1|))) (-1085) (-1066 (-881 |#1|)))) (-15 -2551 ((-1 (-1081 (-881 |#1|)) (-881 |#1|)) (-1085))) (-15 -4154 ((-588 (-1115 |#1|)) (-1085) (-1115 |#1|))) (-15 -2247 ((-1 (-1066 (-1115 |#1|)) (-1066 (-1115 |#1|))) (-708) (-1115 |#1|) (-1066 (-1115 |#1|)))))
-((-3784 (((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) |#2|) 74)) (-3882 (((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) 73)))
-(((-1175 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3882 ((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))))) (-15 -3784 ((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) |#2|))) (-324) (-1142 |#1|) (-1142 |#2|) (-384 |#2| |#3|)) (T -1175))
-((-3784 (*1 *2 *3) (-12 (-4 *4 (-324)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 *3)) (-5 *2 (-2 (|:| -3855 (-628 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-628 *3)))) (-5 *1 (-1175 *4 *3 *5 *6)) (-4 *6 (-384 *3 *5)))) (-3882 (*1 *2) (-12 (-4 *3 (-324)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| -3855 (-628 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-628 *4)))) (-5 *1 (-1175 *3 *4 *5 *6)) (-4 *6 (-384 *4 *5)))))
-(-10 -7 (-15 -3882 ((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))))) (-15 -3784 ((-2 (|:| -3855 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) |#2|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 42)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) NIL)) (-2782 (((-108) $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2190 (((-792) $) 63) (($ (-522)) NIL) ((|#4| $) 53) (($ |#4|) 48) (($ |#1|) NIL (|has| |#1| (-157)))) (-2323 (((-708)) NIL)) (-1809 (((-1171) (-708)) 16)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 27 T CONST)) (-3577 (($) 66 T CONST)) (-1531 (((-108) $ $) 68)) (-1620 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-1612 (($ $) 70) (($ $ $) NIL)) (-1602 (($ $ $) 46)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 72) (($ |#1| $) NIL (|has| |#1| (-157))) (($ $ |#1|) NIL (|has| |#1| (-157)))))
-(((-1176 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-971) (-10 -8 (IF (|has| |#1| (-157)) (-6 (-37 |#1|)) |%noBranch|) (-15 -2190 (|#4| $)) (IF (|has| |#1| (-338)) (-15 -1620 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2190 ($ |#4|)) (-15 -1809 ((-1171) (-708))))) (-971) (-784) (-730) (-878 |#1| |#3| |#2|) (-588 |#2|) (-588 (-708)) (-708)) (T -1176))
-((-2190 (*1 *2 *1) (-12 (-4 *2 (-878 *3 *5 *4)) (-5 *1 (-1176 *3 *4 *5 *2 *6 *7 *8)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-730)) (-14 *6 (-588 *4)) (-14 *7 (-588 (-708))) (-14 *8 (-708)))) (-1620 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-338)) (-4 *2 (-971)) (-4 *3 (-784)) (-4 *4 (-730)) (-14 *6 (-588 *3)) (-5 *1 (-1176 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-878 *2 *4 *3)) (-14 *7 (-588 (-708))) (-14 *8 (-708)))) (-2190 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-730)) (-14 *6 (-588 *4)) (-5 *1 (-1176 *3 *4 *5 *2 *6 *7 *8)) (-4 *2 (-878 *3 *5 *4)) (-14 *7 (-588 (-708))) (-14 *8 (-708)))) (-1809 (*1 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-971)) (-4 *5 (-784)) (-4 *6 (-730)) (-14 *8 (-588 *5)) (-5 *2 (-1171)) (-5 *1 (-1176 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-878 *4 *6 *5)) (-14 *9 (-588 *3)) (-14 *10 *3))))
-(-13 (-971) (-10 -8 (IF (|has| |#1| (-157)) (-6 (-37 |#1|)) |%noBranch|) (-15 -2190 (|#4| $)) (IF (|has| |#1| (-338)) (-15 -1620 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2190 ($ |#4|)) (-15 -1809 ((-1171) (-708)))))
-((-1416 (((-108) $ $) NIL)) (-2950 (((-588 (-2 (|:| -1650 $) (|:| -1544 (-588 |#4|)))) (-588 |#4|)) NIL)) (-4125 (((-588 $) (-588 |#4|)) 88)) (-4090 (((-588 |#3|) $) NIL)) (-2690 (((-108) $) NIL)) (-4140 (((-108) $) NIL (|has| |#1| (-514)))) (-3575 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-3607 ((|#4| |#4| $) NIL)) (-3216 (((-2 (|:| |under| $) (|:| -3686 $) (|:| |upper| $)) $ |#3|) NIL)) (-4141 (((-108) $ (-708)) NIL)) (-1628 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3175 (($) NIL T CONST)) (-3639 (((-108) $) NIL (|has| |#1| (-514)))) (-3982 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3996 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3538 (((-108) $) NIL (|has| |#1| (-514)))) (-2149 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 28)) (-3050 (((-588 |#4|) (-588 |#4|) $) 25 (|has| |#1| (-514)))) (-1787 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-1297 (((-3 $ "failed") (-588 |#4|)) NIL)) (-1484 (($ (-588 |#4|)) NIL)) (-2306 (((-3 $ "failed") $) 70)) (-2806 ((|#4| |#4| $) 75)) (-2333 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-1423 (($ |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-3421 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-1934 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-4164 ((|#4| |#4| $) NIL)) (-3864 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2091 (((-2 (|:| -1650 (-588 |#4|)) (|:| -1544 (-588 |#4|))) $) NIL)) (-3837 (((-588 |#4|) $) NIL (|has| $ (-6 -4238)))) (-3341 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1521 ((|#3| $) 76)) (-3352 (((-108) $ (-708)) NIL)) (-3308 (((-588 |#4|) $) 29 (|has| $ (-6 -4238)))) (-2246 (((-108) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-3310 (((-3 $ "failed") (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 32) (((-3 $ "failed") (-588 |#4|)) 35)) (-3838 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4239)))) (-1391 (($ (-1 |#4| |#4|) $) NIL)) (-2458 (((-588 |#3|) $) NIL)) (-1606 (((-108) |#3| $) NIL)) (-2720 (((-108) $ (-708)) NIL)) (-2385 (((-1068) $) NIL)) (-1442 (((-3 |#4| "failed") $) NIL)) (-2242 (((-588 |#4|) $) 50)) (-3409 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1451 ((|#4| |#4| $) 74)) (-2123 (((-108) $ $) 85)) (-2039 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-2230 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2680 ((|#4| |#4| $) NIL)) (-4151 (((-1032) $) NIL)) (-2294 (((-3 |#4| "failed") $) 69)) (-1414 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-3307 (((-3 $ "failed") $ |#4|) NIL)) (-3719 (($ $ |#4|) NIL)) (-3053 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2289 (($ $ (-588 |#4|) (-588 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-1536 (((-108) $ $) NIL)) (-3985 (((-108) $) 67)) (-3775 (($) 42)) (-2793 (((-708) $) NIL)) (-4168 (((-708) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (((-708) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2404 (($ $) NIL)) (-1431 (((-498) $) NIL (|has| |#4| (-563 (-498))))) (-2201 (($ (-588 |#4|)) NIL)) (-2020 (($ $ |#3|) NIL)) (-3606 (($ $ |#3|) NIL)) (-3968 (($ $) NIL)) (-2463 (($ $ |#3|) NIL)) (-2190 (((-792) $) NIL) (((-588 |#4|) $) 57)) (-1974 (((-708) $) NIL (|has| |#3| (-343)))) (-1569 (((-3 $ "failed") (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 40) (((-3 $ "failed") (-588 |#4|)) 41)) (-1820 (((-588 $) (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 65) (((-588 $) (-588 |#4|)) 66)) (-3989 (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) 24) (((-3 (-2 (|:| |bas| $) (|:| -1355 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-4212 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) NIL)) (-3648 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2360 (((-588 |#3|) $) NIL)) (-2351 (((-108) |#3| $) NIL)) (-1531 (((-108) $ $) NIL)) (-3480 (((-708) $) NIL (|has| $ (-6 -4238)))))
-(((-1177 |#1| |#2| |#3| |#4|) (-13 (-1114 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3310 ((-3 $ "failed") (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3310 ((-3 $ "failed") (-588 |#4|))) (-15 -1569 ((-3 $ "failed") (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1569 ((-3 $ "failed") (-588 |#4|))) (-15 -1820 ((-588 $) (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1820 ((-588 $) (-588 |#4|))))) (-514) (-730) (-784) (-985 |#1| |#2| |#3|)) (T -1177))
-((-3310 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-588 *8)) (-5 *3 (-1 (-108) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1177 *5 *6 *7 *8)))) (-3310 (*1 *1 *2) (|partial| -12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-1177 *3 *4 *5 *6)))) (-1569 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-588 *8)) (-5 *3 (-1 (-108) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1177 *5 *6 *7 *8)))) (-1569 (*1 *1 *2) (|partial| -12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-1177 *3 *4 *5 *6)))) (-1820 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 *9)) (-5 *4 (-1 (-108) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-985 *6 *7 *8)) (-4 *6 (-514)) (-4 *7 (-730)) (-4 *8 (-784)) (-5 *2 (-588 (-1177 *6 *7 *8 *9))) (-5 *1 (-1177 *6 *7 *8 *9)))) (-1820 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 (-1177 *4 *5 *6 *7))) (-5 *1 (-1177 *4 *5 *6 *7)))))
-(-13 (-1114 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3310 ((-3 $ "failed") (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3310 ((-3 $ "failed") (-588 |#4|))) (-15 -1569 ((-3 $ "failed") (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1569 ((-3 $ "failed") (-588 |#4|))) (-15 -1820 ((-588 $) (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1820 ((-588 $) (-588 |#4|)))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-1233 (((-3 $ "failed") $ $) 19)) (-3175 (($) 17 T CONST)) (-2682 (((-3 $ "failed") $) 34)) (-2782 (((-108) $) 31)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 38)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-2850 (((-588 (-1115 |#1|)) (-1085) (-1115 |#1|)) 78)) (-1289 (((-1066 (-1066 (-881 |#1|))) (-1085) (-1066 (-881 |#1|))) 57)) (-4189 (((-1 (-1066 (-1115 |#1|)) (-1066 (-1115 |#1|))) (-708) (-1115 |#1|) (-1066 (-1115 |#1|))) 68)) (-3436 (((-1 (-1066 (-881 |#1|)) (-1066 (-881 |#1|))) (-708)) 59)) (-3694 (((-1 (-1081 (-881 |#1|)) (-881 |#1|)) (-1085)) 27)) (-3399 (((-1 (-1066 (-881 |#1|)) (-1066 (-881 |#1|))) (-708)) 58)))
+(((-1174 |#1|) (-10 -7 (-15 -3436 ((-1 (-1066 (-881 |#1|)) (-1066 (-881 |#1|))) (-708))) (-15 -3399 ((-1 (-1066 (-881 |#1|)) (-1066 (-881 |#1|))) (-708))) (-15 -1289 ((-1066 (-1066 (-881 |#1|))) (-1085) (-1066 (-881 |#1|)))) (-15 -3694 ((-1 (-1081 (-881 |#1|)) (-881 |#1|)) (-1085))) (-15 -2850 ((-588 (-1115 |#1|)) (-1085) (-1115 |#1|))) (-15 -4189 ((-1 (-1066 (-1115 |#1|)) (-1066 (-1115 |#1|))) (-708) (-1115 |#1|) (-1066 (-1115 |#1|))))) (-338)) (T -1174))
+((-4189 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-708)) (-4 *6 (-338)) (-5 *4 (-1115 *6)) (-5 *2 (-1 (-1066 *4) (-1066 *4))) (-5 *1 (-1174 *6)) (-5 *5 (-1066 *4)))) (-2850 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-4 *5 (-338)) (-5 *2 (-588 (-1115 *5))) (-5 *1 (-1174 *5)) (-5 *4 (-1115 *5)))) (-3694 (*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1 (-1081 (-881 *4)) (-881 *4))) (-5 *1 (-1174 *4)) (-4 *4 (-338)))) (-1289 (*1 *2 *3 *4) (-12 (-5 *3 (-1085)) (-4 *5 (-338)) (-5 *2 (-1066 (-1066 (-881 *5)))) (-5 *1 (-1174 *5)) (-5 *4 (-1066 (-881 *5))))) (-3399 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-1066 (-881 *4)) (-1066 (-881 *4)))) (-5 *1 (-1174 *4)) (-4 *4 (-338)))) (-3436 (*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-1066 (-881 *4)) (-1066 (-881 *4)))) (-5 *1 (-1174 *4)) (-4 *4 (-338)))))
+(-10 -7 (-15 -3436 ((-1 (-1066 (-881 |#1|)) (-1066 (-881 |#1|))) (-708))) (-15 -3399 ((-1 (-1066 (-881 |#1|)) (-1066 (-881 |#1|))) (-708))) (-15 -1289 ((-1066 (-1066 (-881 |#1|))) (-1085) (-1066 (-881 |#1|)))) (-15 -3694 ((-1 (-1081 (-881 |#1|)) (-881 |#1|)) (-1085))) (-15 -2850 ((-588 (-1115 |#1|)) (-1085) (-1115 |#1|))) (-15 -4189 ((-1 (-1066 (-1115 |#1|)) (-1066 (-1115 |#1|))) (-708) (-1115 |#1|) (-1066 (-1115 |#1|)))))
+((-3387 (((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) |#2|) 74)) (-1886 (((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|)))) 73)))
+(((-1175 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1886 ((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))))) (-15 -3387 ((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) |#2|))) (-324) (-1142 |#1|) (-1142 |#2|) (-384 |#2| |#3|)) (T -1175))
+((-3387 (*1 *2 *3) (-12 (-4 *4 (-324)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 *3)) (-5 *2 (-2 (|:| -2905 (-628 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-628 *3)))) (-5 *1 (-1175 *4 *3 *5 *6)) (-4 *6 (-384 *3 *5)))) (-1886 (*1 *2) (-12 (-4 *3 (-324)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 *4)) (-5 *2 (-2 (|:| -2905 (-628 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-628 *4)))) (-5 *1 (-1175 *3 *4 *5 *6)) (-4 *6 (-384 *4 *5)))))
+(-10 -7 (-15 -1886 ((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))))) (-15 -3387 ((-2 (|:| -2905 (-628 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-628 |#2|))) |#2|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 42)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) NIL)) (-2859 (((-108) $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2217 (((-792) $) 63) (($ (-522)) NIL) ((|#4| $) 53) (($ |#4|) 48) (($ |#1|) NIL (|has| |#1| (-157)))) (-2742 (((-708)) NIL)) (-3860 (((-1171) (-708)) 16)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 27 T CONST)) (-3709 (($) 66 T CONST)) (-1562 (((-108) $ $) 68)) (-1682 (((-3 $ "failed") $ $) NIL (|has| |#1| (-338)))) (-1672 (($ $) 70) (($ $ $) NIL)) (-1661 (($ $ $) 46)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 72) (($ |#1| $) NIL (|has| |#1| (-157))) (($ $ |#1|) NIL (|has| |#1| (-157)))))
+(((-1176 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-971) (-10 -8 (IF (|has| |#1| (-157)) (-6 (-37 |#1|)) |%noBranch|) (-15 -2217 (|#4| $)) (IF (|has| |#1| (-338)) (-15 -1682 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2217 ($ |#4|)) (-15 -3860 ((-1171) (-708))))) (-971) (-784) (-730) (-878 |#1| |#3| |#2|) (-588 |#2|) (-588 (-708)) (-708)) (T -1176))
+((-2217 (*1 *2 *1) (-12 (-4 *2 (-878 *3 *5 *4)) (-5 *1 (-1176 *3 *4 *5 *2 *6 *7 *8)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-730)) (-14 *6 (-588 *4)) (-14 *7 (-588 (-708))) (-14 *8 (-708)))) (-1682 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-338)) (-4 *2 (-971)) (-4 *3 (-784)) (-4 *4 (-730)) (-14 *6 (-588 *3)) (-5 *1 (-1176 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-878 *2 *4 *3)) (-14 *7 (-588 (-708))) (-14 *8 (-708)))) (-2217 (*1 *1 *2) (-12 (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-730)) (-14 *6 (-588 *4)) (-5 *1 (-1176 *3 *4 *5 *2 *6 *7 *8)) (-4 *2 (-878 *3 *5 *4)) (-14 *7 (-588 (-708))) (-14 *8 (-708)))) (-3860 (*1 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-971)) (-4 *5 (-784)) (-4 *6 (-730)) (-14 *8 (-588 *5)) (-5 *2 (-1171)) (-5 *1 (-1176 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-878 *4 *6 *5)) (-14 *9 (-588 *3)) (-14 *10 *3))))
+(-13 (-971) (-10 -8 (IF (|has| |#1| (-157)) (-6 (-37 |#1|)) |%noBranch|) (-15 -2217 (|#4| $)) (IF (|has| |#1| (-338)) (-15 -1682 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2217 ($ |#4|)) (-15 -3860 ((-1171) (-708)))))
+((-1419 (((-108) $ $) NIL)) (-3829 (((-588 (-2 (|:| -1720 $) (|:| -1566 (-588 |#4|)))) (-588 |#4|)) NIL)) (-2510 (((-588 $) (-588 |#4|)) 88)) (-3533 (((-588 |#3|) $) NIL)) (-2161 (((-108) $) NIL)) (-2702 (((-108) $) NIL (|has| |#1| (-514)))) (-1900 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2163 ((|#4| |#4| $) NIL)) (-3296 (((-2 (|:| |under| $) (|:| -3592 $) (|:| |upper| $)) $ |#3|) NIL)) (-2717 (((-108) $ (-708)) NIL)) (-1696 (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3367 (($) NIL T CONST)) (-1298 (((-108) $) NIL (|has| |#1| (-514)))) (-1657 (((-108) $ $) NIL (|has| |#1| (-514)))) (-3598 (((-108) $ $) NIL (|has| |#1| (-514)))) (-2818 (((-108) $) NIL (|has| |#1| (-514)))) (-3090 (((-588 |#4|) (-588 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) 28)) (-3461 (((-588 |#4|) (-588 |#4|) $) 25 (|has| |#1| (-514)))) (-3668 (((-588 |#4|) (-588 |#4|) $) NIL (|has| |#1| (-514)))) (-3700 (((-3 $ "failed") (-588 |#4|)) NIL)) (-1478 (($ (-588 |#4|)) NIL)) (-2352 (((-3 $ "failed") $) 70)) (-2625 ((|#4| |#4| $) 75)) (-2379 (($ $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-1424 (($ |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (($ (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-4002 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-1426 (((-108) |#4| $ (-1 (-108) |#4| |#4|)) NIL)) (-2918 ((|#4| |#4| $) NIL)) (-2153 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4238))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4238))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-1199 (((-2 (|:| -1720 (-588 |#4|)) (|:| -1566 (-588 |#4|))) $) NIL)) (-2395 (((-588 |#4|) $) NIL (|has| $ (-6 -4238)))) (-1384 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-1933 ((|#3| $) 76)) (-1480 (((-108) $ (-708)) NIL)) (-4084 (((-588 |#4|) $) 29 (|has| $ (-6 -4238)))) (-4176 (((-108) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014))))) (-4103 (((-3 $ "failed") (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 32) (((-3 $ "failed") (-588 |#4|)) 35)) (-2397 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4239)))) (-3810 (($ (-1 |#4| |#4|) $) NIL)) (-2714 (((-588 |#3|) $) NIL)) (-3826 (((-108) |#3| $) NIL)) (-3309 (((-108) $ (-708)) NIL)) (-2311 (((-1068) $) NIL)) (-1442 (((-3 |#4| "failed") $) NIL)) (-4138 (((-588 |#4|) $) 50)) (-3864 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-2556 ((|#4| |#4| $) 74)) (-1517 (((-108) $ $) 85)) (-2507 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-514)))) (-3060 (((-108) |#4| $) NIL) (((-108) $) NIL)) (-3896 ((|#4| |#4| $) NIL)) (-4174 (((-1032) $) NIL)) (-2337 (((-3 |#4| "failed") $) 69)) (-2187 (((-3 |#4| "failed") (-1 (-108) |#4|) $) NIL)) (-4078 (((-3 $ "failed") $ |#4|) NIL)) (-3934 (($ $ |#4|) NIL)) (-3487 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2330 (($ $ (-588 |#4|) (-588 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-270 |#4|)) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014)))) (($ $ (-588 (-270 |#4|))) NIL (-12 (|has| |#4| (-285 |#4|)) (|has| |#4| (-1014))))) (-2065 (((-108) $ $) NIL)) (-3494 (((-108) $) 67)) (-3298 (($) 42)) (-2487 (((-708) $) NIL)) (-4187 (((-708) |#4| $) NIL (-12 (|has| $ (-6 -4238)) (|has| |#4| (-1014)))) (((-708) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-2463 (($ $) NIL)) (-3873 (((-498) $) NIL (|has| |#4| (-563 (-498))))) (-2227 (($ (-588 |#4|)) NIL)) (-2271 (($ $ |#3|) NIL)) (-2154 (($ $ |#3|) NIL)) (-1524 (($ $) NIL)) (-2773 (($ $ |#3|) NIL)) (-2217 (((-792) $) NIL) (((-588 |#4|) $) 57)) (-3111 (((-708) $) NIL (|has| |#3| (-343)))) (-3571 (((-3 $ "failed") (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 40) (((-3 $ "failed") (-588 |#4|)) 41)) (-3978 (((-588 $) (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|)) 65) (((-588 $) (-588 |#4|)) 66)) (-3538 (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4| |#4|)) 24) (((-3 (-2 (|:| |bas| $) (|:| -1322 (-588 |#4|))) "failed") (-588 |#4|) (-1 (-108) |#4|) (-1 (-108) |#4| |#4|)) NIL)) (-2102 (((-108) $ (-1 (-108) |#4| (-588 |#4|))) NIL)) (-1381 (((-108) (-1 (-108) |#4|) $) NIL (|has| $ (-6 -4238)))) (-1982 (((-588 |#3|) $) NIL)) (-1711 (((-108) |#3| $) NIL)) (-1562 (((-108) $ $) NIL)) (-3591 (((-708) $) NIL (|has| $ (-6 -4238)))))
+(((-1177 |#1| |#2| |#3| |#4|) (-13 (-1114 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4103 ((-3 $ "failed") (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -4103 ((-3 $ "failed") (-588 |#4|))) (-15 -3571 ((-3 $ "failed") (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3571 ((-3 $ "failed") (-588 |#4|))) (-15 -3978 ((-588 $) (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3978 ((-588 $) (-588 |#4|))))) (-514) (-730) (-784) (-985 |#1| |#2| |#3|)) (T -1177))
+((-4103 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-588 *8)) (-5 *3 (-1 (-108) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1177 *5 *6 *7 *8)))) (-4103 (*1 *1 *2) (|partial| -12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-1177 *3 *4 *5 *6)))) (-3571 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-588 *8)) (-5 *3 (-1 (-108) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1177 *5 *6 *7 *8)))) (-3571 (*1 *1 *2) (|partial| -12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-1177 *3 *4 *5 *6)))) (-3978 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-588 *9)) (-5 *4 (-1 (-108) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-985 *6 *7 *8)) (-4 *6 (-514)) (-4 *7 (-730)) (-4 *8 (-784)) (-5 *2 (-588 (-1177 *6 *7 *8 *9))) (-5 *1 (-1177 *6 *7 *8 *9)))) (-3978 (*1 *2 *3) (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 (-1177 *4 *5 *6 *7))) (-5 *1 (-1177 *4 *5 *6 *7)))))
+(-13 (-1114 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4103 ((-3 $ "failed") (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -4103 ((-3 $ "failed") (-588 |#4|))) (-15 -3571 ((-3 $ "failed") (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3571 ((-3 $ "failed") (-588 |#4|))) (-15 -3978 ((-588 $) (-588 |#4|) (-1 (-108) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3978 ((-588 $) (-588 |#4|)))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-2265 (((-3 $ "failed") $ $) 19)) (-3367 (($) 17 T CONST)) (-3920 (((-3 $ "failed") $) 34)) (-2859 (((-108) $) 31)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#1|) 38)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-1178 |#1|) (-1197) (-971)) (T -1178))
-((-2190 (*1 *1 *2) (-12 (-4 *1 (-1178 *2)) (-4 *2 (-971)))))
-(-13 (-971) (-107 |t#1| |t#1|) (-10 -8 (-15 -2190 ($ |t#1|)) (IF (|has| |t#1| (-157)) (-6 (-37 |t#1|)) |%noBranch|)))
+((-2217 (*1 *1 *2) (-12 (-4 *1 (-1178 *2)) (-4 *2 (-971)))))
+(-13 (-971) (-107 |t#1| |t#1|) (-10 -8 (-15 -2217 ($ |t#1|)) (IF (|has| |t#1| (-157)) (-6 (-37 |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#1|) |has| |#1| (-157)) ((-97) . T) ((-107 |#1| |#1|) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-655 |#1|) |has| |#1| (-157)) ((-664) . T) ((-977 |#1|) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4106 (((-588 |#1|) $) 45)) (-2613 (($ $ (-708)) 39)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3961 (($ $ (-708)) 17 (|has| |#2| (-157))) (($ $ $) 18 (|has| |#2| (-157)))) (-3175 (($) NIL T CONST)) (-1200 (($ $ $) 62) (($ $ (-756 |#1|)) 49) (($ $ |#1|) 53)) (-1297 (((-3 (-756 |#1|) "failed") $) NIL)) (-1484 (((-756 |#1|) $) NIL)) (-3156 (($ $) 32)) (-2682 (((-3 $ "failed") $) NIL)) (-3221 (((-108) $) NIL)) (-3154 (($ $) NIL)) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-2518 (($ (-756 |#1|) |#2|) 31)) (-1225 (($ $) 33)) (-1748 (((-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|)) $) 11)) (-2451 (((-756 |#1|) $) NIL)) (-3295 (((-756 |#1|) $) 34)) (-1391 (($ (-1 |#2| |#2|) $) NIL)) (-2987 (($ $ $) 61) (($ $ (-756 |#1|)) 51) (($ $ |#1|) 55)) (-2834 (((-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3128 (((-756 |#1|) $) 28)) (-3138 ((|#2| $) 30)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-2793 (((-708) $) 36)) (-1328 (((-108) $) 40)) (-2677 ((|#2| $) NIL)) (-2190 (((-792) $) NIL) (($ (-756 |#1|)) 24) (($ |#1|) 25) (($ |#2|) NIL) (($ (-522)) NIL)) (-3916 (((-588 |#2|) $) NIL)) (-3243 ((|#2| $ (-756 |#1|)) NIL)) (-2977 ((|#2| $ $) 64) ((|#2| $ (-756 |#1|)) NIL)) (-2323 (((-708)) NIL)) (-3510 (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3566 (($) 12 T CONST)) (-3577 (($) 14 T CONST)) (-2238 (((-588 (-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1531 (((-108) $ $) 38)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 21)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#2| $) 20) (($ $ |#2|) 60) (($ |#2| (-756 |#1|)) NIL) (($ |#1| $) 27) (($ $ $) NIL)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-4127 (((-588 |#1|) $) 45)) (-3331 (($ $ (-708)) 39)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1437 (($ $ (-708)) 17 (|has| |#2| (-157))) (($ $ $) 18 (|has| |#2| (-157)))) (-3367 (($) NIL T CONST)) (-1745 (($ $ $) 62) (($ $ (-756 |#1|)) 49) (($ $ |#1|) 53)) (-3700 (((-3 (-756 |#1|) "failed") $) NIL)) (-1478 (((-756 |#1|) $) NIL)) (-3241 (($ $) 32)) (-3920 (((-3 $ "failed") $) NIL)) (-2664 (((-108) $) NIL)) (-3208 (($ $) NIL)) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-2623 (($ (-756 |#1|) |#2|) 31)) (-2182 (($ $) 33)) (-1500 (((-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|)) $) 11)) (-2565 (((-756 |#1|) $) NIL)) (-2114 (((-756 |#1|) $) 34)) (-3810 (($ (-1 |#2| |#2|) $) NIL)) (-4038 (($ $ $) 61) (($ $ (-756 |#1|)) 51) (($ $ |#1|) 55)) (-2893 (((-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3216 (((-756 |#1|) $) 28)) (-3224 ((|#2| $) 30)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-2487 (((-708) $) 36)) (-1967 (((-108) $) 40)) (-2855 ((|#2| $) NIL)) (-2217 (((-792) $) NIL) (($ (-756 |#1|)) 24) (($ |#1|) 25) (($ |#2|) NIL) (($ (-522)) NIL)) (-2180 (((-588 |#2|) $) NIL)) (-1643 ((|#2| $ (-756 |#1|)) NIL)) (-3112 ((|#2| $ $) 64) ((|#2| $ (-756 |#1|)) NIL)) (-2742 (((-708)) NIL)) (-3622 (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (-3697 (($) 12 T CONST)) (-3709 (($) 14 T CONST)) (-1738 (((-588 (-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1562 (((-108) $ $) 38)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 21)) (** (($ $ (-708)) NIL) (($ $ (-850)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ |#2| $) 20) (($ $ |#2|) 60) (($ |#2| (-756 |#1|)) NIL) (($ |#1| $) 27) (($ $ $) NIL)))
(((-1179 |#1| |#2|) (-13 (-357 |#2| (-756 |#1|)) (-1185 |#1| |#2|)) (-784) (-971)) (T -1179))
NIL
(-13 (-357 |#2| (-756 |#1|)) (-1185 |#1| |#2|))
-((-1254 ((|#3| |#3| (-708)) 23)) (-3266 ((|#3| |#3| (-708)) 28)) (-3143 ((|#3| |#3| |#3| (-708)) 29)))
-(((-1180 |#1| |#2| |#3|) (-10 -7 (-15 -3266 (|#3| |#3| (-708))) (-15 -1254 (|#3| |#3| (-708))) (-15 -3143 (|#3| |#3| |#3| (-708)))) (-13 (-971) (-655 (-382 (-522)))) (-784) (-1185 |#2| |#1|)) (T -1180))
-((-3143 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-13 (-971) (-655 (-382 (-522))))) (-4 *5 (-784)) (-5 *1 (-1180 *4 *5 *2)) (-4 *2 (-1185 *5 *4)))) (-1254 (*1 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-13 (-971) (-655 (-382 (-522))))) (-4 *5 (-784)) (-5 *1 (-1180 *4 *5 *2)) (-4 *2 (-1185 *5 *4)))) (-3266 (*1 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-13 (-971) (-655 (-382 (-522))))) (-4 *5 (-784)) (-5 *1 (-1180 *4 *5 *2)) (-4 *2 (-1185 *5 *4)))))
-(-10 -7 (-15 -3266 (|#3| |#3| (-708))) (-15 -1254 (|#3| |#3| (-708))) (-15 -3143 (|#3| |#3| |#3| (-708))))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4106 (((-588 |#1|) $) 40)) (-1233 (((-3 $ "failed") $ $) 19)) (-3961 (($ $ $) 43 (|has| |#2| (-157))) (($ $ (-708)) 42 (|has| |#2| (-157)))) (-3175 (($) 17 T CONST)) (-1200 (($ $ |#1|) 54) (($ $ (-756 |#1|)) 53) (($ $ $) 52)) (-1297 (((-3 (-756 |#1|) "failed") $) 64)) (-1484 (((-756 |#1|) $) 63)) (-2682 (((-3 $ "failed") $) 34)) (-3221 (((-108) $) 45)) (-3154 (($ $) 44)) (-2782 (((-108) $) 31)) (-3340 (((-108) $) 50)) (-2518 (($ (-756 |#1|) |#2|) 51)) (-1225 (($ $) 49)) (-1748 (((-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|)) $) 60)) (-2451 (((-756 |#1|) $) 61)) (-1391 (($ (-1 |#2| |#2|) $) 41)) (-2987 (($ $ |#1|) 57) (($ $ (-756 |#1|)) 56) (($ $ $) 55)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-1328 (((-108) $) 47)) (-2677 ((|#2| $) 46)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#2|) 68) (($ (-756 |#1|)) 65) (($ |#1|) 48)) (-2977 ((|#2| $ (-756 |#1|)) 59) ((|#2| $ $) 58)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ |#2| $) 67) (($ $ |#2|) 66) (($ |#1| $) 62)))
+((-1238 ((|#3| |#3| (-708)) 23)) (-3357 ((|#3| |#3| (-708)) 28)) (-3141 ((|#3| |#3| |#3| (-708)) 29)))
+(((-1180 |#1| |#2| |#3|) (-10 -7 (-15 -3357 (|#3| |#3| (-708))) (-15 -1238 (|#3| |#3| (-708))) (-15 -3141 (|#3| |#3| |#3| (-708)))) (-13 (-971) (-655 (-382 (-522)))) (-784) (-1185 |#2| |#1|)) (T -1180))
+((-3141 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-13 (-971) (-655 (-382 (-522))))) (-4 *5 (-784)) (-5 *1 (-1180 *4 *5 *2)) (-4 *2 (-1185 *5 *4)))) (-1238 (*1 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-13 (-971) (-655 (-382 (-522))))) (-4 *5 (-784)) (-5 *1 (-1180 *4 *5 *2)) (-4 *2 (-1185 *5 *4)))) (-3357 (*1 *2 *2 *3) (-12 (-5 *3 (-708)) (-4 *4 (-13 (-971) (-655 (-382 (-522))))) (-4 *5 (-784)) (-5 *1 (-1180 *4 *5 *2)) (-4 *2 (-1185 *5 *4)))))
+(-10 -7 (-15 -3357 (|#3| |#3| (-708))) (-15 -1238 (|#3| |#3| (-708))) (-15 -3141 (|#3| |#3| |#3| (-708))))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-4127 (((-588 |#1|) $) 40)) (-2265 (((-3 $ "failed") $ $) 19)) (-1437 (($ $ $) 43 (|has| |#2| (-157))) (($ $ (-708)) 42 (|has| |#2| (-157)))) (-3367 (($) 17 T CONST)) (-1745 (($ $ |#1|) 54) (($ $ (-756 |#1|)) 53) (($ $ $) 52)) (-3700 (((-3 (-756 |#1|) "failed") $) 64)) (-1478 (((-756 |#1|) $) 63)) (-3920 (((-3 $ "failed") $) 34)) (-2664 (((-108) $) 45)) (-3208 (($ $) 44)) (-2859 (((-108) $) 31)) (-1374 (((-108) $) 50)) (-2623 (($ (-756 |#1|) |#2|) 51)) (-2182 (($ $) 49)) (-1500 (((-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|)) $) 60)) (-2565 (((-756 |#1|) $) 61)) (-3810 (($ (-1 |#2| |#2|) $) 41)) (-4038 (($ $ |#1|) 57) (($ $ (-756 |#1|)) 56) (($ $ $) 55)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-1967 (((-108) $) 47)) (-2855 ((|#2| $) 46)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#2|) 68) (($ (-756 |#1|)) 65) (($ |#1|) 48)) (-3112 ((|#2| $ (-756 |#1|)) 59) ((|#2| $ $) 58)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ |#2| $) 67) (($ $ |#2|) 66) (($ |#1| $) 62)))
(((-1181 |#1| |#2|) (-1197) (-784) (-971)) (T -1181))
-((* (*1 *1 *1 *2) (-12 (-4 *1 (-1181 *3 *2)) (-4 *3 (-784)) (-4 *2 (-971)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-2451 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-756 *3)))) (-1748 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-2 (|:| |k| (-756 *3)) (|:| |c| *4))))) (-2977 (*1 *2 *1 *3) (-12 (-5 *3 (-756 *4)) (-4 *1 (-1181 *4 *2)) (-4 *4 (-784)) (-4 *2 (-971)))) (-2977 (*1 *2 *1 *1) (-12 (-4 *1 (-1181 *3 *2)) (-4 *3 (-784)) (-4 *2 (-971)))) (-2987 (*1 *1 *1 *2) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-2987 (*1 *1 *1 *2) (-12 (-5 *2 (-756 *3)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))) (-2987 (*1 *1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-1200 (*1 *1 *1 *2) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-1200 (*1 *1 *1 *2) (-12 (-5 *2 (-756 *3)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))) (-1200 (*1 *1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-2518 (*1 *1 *2 *3) (-12 (-5 *2 (-756 *4)) (-4 *4 (-784)) (-4 *1 (-1181 *4 *3)) (-4 *3 (-971)))) (-3340 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-108)))) (-1225 (*1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-2190 (*1 *1 *2) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-1328 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-108)))) (-2677 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *2)) (-4 *3 (-784)) (-4 *2 (-971)))) (-3221 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-108)))) (-3154 (*1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-3961 (*1 *1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)) (-4 *3 (-157)))) (-3961 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-4 *4 (-157)))) (-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))) (-4106 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-588 *3)))))
-(-13 (-971) (-1178 |t#2|) (-962 (-756 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -2451 ((-756 |t#1|) $)) (-15 -1748 ((-2 (|:| |k| (-756 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -2977 (|t#2| $ (-756 |t#1|))) (-15 -2977 (|t#2| $ $)) (-15 -2987 ($ $ |t#1|)) (-15 -2987 ($ $ (-756 |t#1|))) (-15 -2987 ($ $ $)) (-15 -1200 ($ $ |t#1|)) (-15 -1200 ($ $ (-756 |t#1|))) (-15 -1200 ($ $ $)) (-15 -2518 ($ (-756 |t#1|) |t#2|)) (-15 -3340 ((-108) $)) (-15 -1225 ($ $)) (-15 -2190 ($ |t#1|)) (-15 -1328 ((-108) $)) (-15 -2677 (|t#2| $)) (-15 -3221 ((-108) $)) (-15 -3154 ($ $)) (IF (|has| |t#2| (-157)) (PROGN (-15 -3961 ($ $ $)) (-15 -3961 ($ $ (-708)))) |%noBranch|) (-15 -1391 ($ (-1 |t#2| |t#2|) $)) (-15 -4106 ((-588 |t#1|) $)) (IF (|has| |t#2| (-6 -4231)) (-6 -4231) |%noBranch|)))
+((* (*1 *1 *1 *2) (-12 (-4 *1 (-1181 *3 *2)) (-4 *3 (-784)) (-4 *2 (-971)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-2565 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-756 *3)))) (-1500 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-2 (|:| |k| (-756 *3)) (|:| |c| *4))))) (-3112 (*1 *2 *1 *3) (-12 (-5 *3 (-756 *4)) (-4 *1 (-1181 *4 *2)) (-4 *4 (-784)) (-4 *2 (-971)))) (-3112 (*1 *2 *1 *1) (-12 (-4 *1 (-1181 *3 *2)) (-4 *3 (-784)) (-4 *2 (-971)))) (-4038 (*1 *1 *1 *2) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-4038 (*1 *1 *1 *2) (-12 (-5 *2 (-756 *3)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))) (-4038 (*1 *1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-1745 (*1 *1 *1 *2) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-1745 (*1 *1 *1 *2) (-12 (-5 *2 (-756 *3)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))) (-1745 (*1 *1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-2623 (*1 *1 *2 *3) (-12 (-5 *2 (-756 *4)) (-4 *4 (-784)) (-4 *1 (-1181 *4 *3)) (-4 *3 (-971)))) (-1374 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-108)))) (-2182 (*1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-2217 (*1 *1 *2) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-1967 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-108)))) (-2855 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *2)) (-4 *3 (-784)) (-4 *2 (-971)))) (-2664 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-108)))) (-3208 (*1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))) (-1437 (*1 *1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)) (-4 *3 (-157)))) (-1437 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-4 *4 (-157)))) (-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))) (-4127 (*1 *2 *1) (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-588 *3)))))
+(-13 (-971) (-1178 |t#2|) (-962 (-756 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -2565 ((-756 |t#1|) $)) (-15 -1500 ((-2 (|:| |k| (-756 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -3112 (|t#2| $ (-756 |t#1|))) (-15 -3112 (|t#2| $ $)) (-15 -4038 ($ $ |t#1|)) (-15 -4038 ($ $ (-756 |t#1|))) (-15 -4038 ($ $ $)) (-15 -1745 ($ $ |t#1|)) (-15 -1745 ($ $ (-756 |t#1|))) (-15 -1745 ($ $ $)) (-15 -2623 ($ (-756 |t#1|) |t#2|)) (-15 -1374 ((-108) $)) (-15 -2182 ($ $)) (-15 -2217 ($ |t#1|)) (-15 -1967 ((-108) $)) (-15 -2855 (|t#2| $)) (-15 -2664 ((-108) $)) (-15 -3208 ($ $)) (IF (|has| |t#2| (-157)) (PROGN (-15 -1437 ($ $ $)) (-15 -1437 ($ $ (-708)))) |%noBranch|) (-15 -3810 ($ (-1 |t#2| |t#2|) $)) (-15 -4127 ((-588 |t#1|) $)) (IF (|has| |t#2| (-6 -4231)) (-6 -4231) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#2|) |has| |#2| (-157)) ((-97) . T) ((-107 |#2| |#2|) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#2|) . T) ((-590 $) . T) ((-655 |#2|) |has| |#2| (-157)) ((-664) . T) ((-962 (-756 |#1|)) . T) ((-977 |#2|) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1178 |#2|) . T))
-((-1651 (((-108) $) 14)) (-2351 (((-108) $) 13)) (-3428 (($ $) 18) (($ $ (-708)) 19)))
-(((-1182 |#1| |#2|) (-10 -8 (-15 -3428 (|#1| |#1| (-708))) (-15 -3428 (|#1| |#1|)) (-15 -1651 ((-108) |#1|)) (-15 -2351 ((-108) |#1|))) (-1183 |#2|) (-338)) (T -1182))
+((-2400 (((-108) $) 14)) (-1711 (((-108) $) 13)) (-2938 (($ $) 18) (($ $ (-708)) 19)))
+(((-1182 |#1| |#2|) (-10 -8 (-15 -2938 (|#1| |#1| (-708))) (-15 -2938 (|#1| |#1|)) (-15 -2400 ((-108) |#1|)) (-15 -1711 ((-108) |#1|))) (-1183 |#2|) (-338)) (T -1182))
NIL
-(-10 -8 (-15 -3428 (|#1| |#1| (-708))) (-15 -3428 (|#1| |#1|)) (-15 -1651 ((-108) |#1|)) (-15 -2351 ((-108) |#1|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-2013 (((-2 (|:| -3210 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2022 (($ $) 40)) (-3739 (((-108) $) 38)) (-1651 (((-108) $) 94)) (-2219 (((-708)) 90)) (-1233 (((-3 $ "failed") $ $) 19)) (-3119 (($ $) 73)) (-3450 (((-393 $) $) 72)) (-1687 (((-108) $ $) 59)) (-3175 (($) 17 T CONST)) (-1297 (((-3 |#1| "failed") $) 101)) (-1484 ((|#1| $) 100)) (-2277 (($ $ $) 55)) (-2682 (((-3 $ "failed") $) 34)) (-2254 (($ $ $) 56)) (-3297 (((-2 (|:| -2977 (-588 $)) (|:| -1383 $)) (-588 $)) 51)) (-2111 (($ $ (-708)) 87 (-3708 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) 86 (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2813 (((-108) $) 71)) (-3714 (((-770 (-850)) $) 84 (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2782 (((-108) $) 31)) (-3317 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2224 (($ $ $) 46) (($ (-588 $)) 45)) (-2385 (((-1068) $) 9)) (-3098 (($ $) 70)) (-2822 (((-108) $) 93)) (-4151 (((-1032) $) 10)) (-1307 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2259 (($ $ $) 48) (($ (-588 $)) 47)) (-1916 (((-393 $) $) 74)) (-2621 (((-770 (-850))) 91)) (-3885 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1383 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2232 (((-3 $ "failed") $ $) 42)) (-2553 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-3730 (((-708) $) 58)) (-2752 (((-2 (|:| -1353 $) (|:| -3421 $)) $ $) 57)) (-3018 (((-3 (-708) "failed") $ $) 85 (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-4078 (((-126)) 99)) (-2793 (((-770 (-850)) $) 92)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65) (($ |#1|) 102)) (-2143 (((-3 $ "failed") $) 83 (-3708 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2323 (((-708)) 29)) (-3958 (((-108) $ $) 39)) (-2351 (((-108) $) 95)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-3428 (($ $) 89 (|has| |#1| (-343))) (($ $ (-708)) 88 (|has| |#1| (-343)))) (-1531 (((-108) $ $) 6)) (-1620 (($ $ $) 64) (($ $ |#1|) 98)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66) (($ $ |#1|) 97) (($ |#1| $) 96)))
+(-10 -8 (-15 -2938 (|#1| |#1| (-708))) (-15 -2938 (|#1| |#1|)) (-15 -2400 ((-108) |#1|)) (-15 -1711 ((-108) |#1|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-3401 (((-2 (|:| -2541 $) (|:| -4225 $) (|:| |associate| $)) $) 41)) (-2298 (($ $) 40)) (-3007 (((-108) $) 38)) (-2400 (((-108) $) 94)) (-1593 (((-708)) 90)) (-2265 (((-3 $ "failed") $ $) 19)) (-2961 (($ $) 73)) (-3133 (((-393 $) $) 72)) (-2805 (((-108) $ $) 59)) (-3367 (($) 17 T CONST)) (-3700 (((-3 |#1| "failed") $) 101)) (-1478 ((|#1| $) 100)) (-2333 (($ $ $) 55)) (-3920 (((-3 $ "failed") $) 34)) (-2303 (($ $ $) 56)) (-2135 (((-2 (|:| -3112 (-588 $)) (|:| -1368 $)) (-588 $)) 51)) (-1380 (($ $ (-708)) 87 (-3844 (|has| |#1| (-133)) (|has| |#1| (-343)))) (($ $) 86 (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2725 (((-108) $) 71)) (-3872 (((-770 (-850)) $) 84 (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2859 (((-108) $) 31)) (-4180 (((-3 (-588 $) "failed") (-588 $) $) 52)) (-2267 (($ $ $) 46) (($ (-588 $)) 45)) (-2311 (((-1068) $) 9)) (-3193 (($ $) 70)) (-2804 (((-108) $) 93)) (-4174 (((-1032) $) 10)) (-1789 (((-1081 $) (-1081 $) (-1081 $)) 44)) (-2308 (($ $ $) 48) (($ (-588 $)) 47)) (-2006 (((-393 $) $) 74)) (-1713 (((-770 (-850))) 91)) (-1915 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -1368 $)) $ $) 54) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 53)) (-2276 (((-3 $ "failed") $ $) 42)) (-3716 (((-3 (-588 $) "failed") (-588 $) $) 50)) (-4031 (((-708) $) 58)) (-4164 (((-2 (|:| -3450 $) (|:| -4002 $)) $ $) 57)) (-1304 (((-3 (-708) "failed") $ $) 85 (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-3222 (((-126)) 99)) (-2487 (((-770 (-850)) $) 92)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ $) 43) (($ (-382 (-522))) 65) (($ |#1|) 102)) (-3040 (((-3 $ "failed") $) 83 (-3844 (|has| |#1| (-133)) (|has| |#1| (-343))))) (-2742 (((-708)) 29)) (-1407 (((-108) $ $) 39)) (-1711 (((-108) $) 95)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33) (($ $ (-522)) 69)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-2938 (($ $) 89 (|has| |#1| (-343))) (($ $ (-708)) 88 (|has| |#1| (-343)))) (-1562 (((-108) $ $) 6)) (-1682 (($ $ $) 64) (($ $ |#1|) 98)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32) (($ $ (-522)) 68)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ $ (-382 (-522))) 67) (($ (-382 (-522)) $) 66) (($ $ |#1|) 97) (($ |#1| $) 96)))
(((-1183 |#1|) (-1197) (-338)) (T -1183))
-((-2351 (*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-108)))) (-1651 (*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-108)))) (-2822 (*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-108)))) (-2793 (*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-770 (-850))))) (-2621 (*1 *2) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-770 (-850))))) (-2219 (*1 *2) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-708)))) (-3428 (*1 *1 *1) (-12 (-4 *1 (-1183 *2)) (-4 *2 (-338)) (-4 *2 (-343)))) (-3428 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-4 *3 (-343)))))
-(-13 (-338) (-962 |t#1|) (-1173 |t#1|) (-10 -8 (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-377)) |%noBranch|) (-15 -2351 ((-108) $)) (-15 -1651 ((-108) $)) (-15 -2822 ((-108) $)) (-15 -2793 ((-770 (-850)) $)) (-15 -2621 ((-770 (-850)))) (-15 -2219 ((-708))) (IF (|has| |t#1| (-343)) (PROGN (-6 (-377)) (-15 -3428 ($ $)) (-15 -3428 ($ $ (-708)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-133) -3708 (|has| |#1| (-343)) (|has| |#1| (-133))) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) . T) ((-220) . T) ((-266) . T) ((-283) . T) ((-338) . T) ((-377) -3708 (|has| |#1| (-343)) (|has| |#1| (-133))) ((-426) . T) ((-514) . T) ((-590 #0#) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #0#) . T) ((-655 |#1|) . T) ((-655 $) . T) ((-664) . T) ((-849) . T) ((-962 |#1|) . T) ((-977 #0#) . T) ((-977 |#1|) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) . T) ((-1173 |#1|) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4106 (((-588 |#1|) $) 85)) (-2613 (($ $ (-708)) 88)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3961 (($ $ $) NIL (|has| |#2| (-157))) (($ $ (-708)) NIL (|has| |#2| (-157)))) (-3175 (($) NIL T CONST)) (-1200 (($ $ |#1|) NIL) (($ $ (-756 |#1|)) NIL) (($ $ $) NIL)) (-1297 (((-3 (-756 |#1|) "failed") $) NIL) (((-3 (-822 |#1|) "failed") $) NIL)) (-1484 (((-756 |#1|) $) NIL) (((-822 |#1|) $) NIL)) (-3156 (($ $) 87)) (-2682 (((-3 $ "failed") $) NIL)) (-3221 (((-108) $) 76)) (-3154 (($ $) 80)) (-1372 (($ $ $ (-708)) 89)) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-2518 (($ (-756 |#1|) |#2|) NIL) (($ (-822 |#1|) |#2|) 26)) (-1225 (($ $) 102)) (-1748 (((-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2451 (((-756 |#1|) $) NIL)) (-3295 (((-756 |#1|) $) NIL)) (-1391 (($ (-1 |#2| |#2|) $) NIL)) (-2987 (($ $ |#1|) NIL) (($ $ (-756 |#1|)) NIL) (($ $ $) NIL)) (-1254 (($ $ (-708)) 96 (|has| |#2| (-655 (-382 (-522)))))) (-2834 (((-2 (|:| |k| (-822 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3128 (((-822 |#1|) $) 70)) (-3138 ((|#2| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-3266 (($ $ (-708)) 93 (|has| |#2| (-655 (-382 (-522)))))) (-2793 (((-708) $) 86)) (-1328 (((-108) $) 71)) (-2677 ((|#2| $) 75)) (-2190 (((-792) $) 57) (($ (-522)) NIL) (($ |#2|) 51) (($ (-756 |#1|)) NIL) (($ |#1|) 59) (($ (-822 |#1|)) NIL) (($ (-606 |#1| |#2|)) 43) (((-1179 |#1| |#2|) $) 64) (((-1188 |#1| |#2|) $) 69)) (-3916 (((-588 |#2|) $) NIL)) (-3243 ((|#2| $ (-822 |#1|)) NIL)) (-2977 ((|#2| $ (-756 |#1|)) NIL) ((|#2| $ $) NIL)) (-2323 (((-708)) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 21 T CONST)) (-3577 (($) 25 T CONST)) (-2238 (((-588 (-2 (|:| |k| (-822 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1373 (((-3 (-606 |#1| |#2|) "failed") $) 101)) (-1531 (((-108) $ $) 65)) (-1612 (($ $) 95) (($ $ $) 94)) (-1602 (($ $ $) 20)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 44) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-822 |#1|)) NIL)))
-(((-1184 |#1| |#2|) (-13 (-1185 |#1| |#2|) (-357 |#2| (-822 |#1|)) (-10 -8 (-15 -2190 ($ (-606 |#1| |#2|))) (-15 -2190 ((-1179 |#1| |#2|) $)) (-15 -2190 ((-1188 |#1| |#2|) $)) (-15 -1373 ((-3 (-606 |#1| |#2|) "failed") $)) (-15 -1372 ($ $ $ (-708))) (IF (|has| |#2| (-655 (-382 (-522)))) (PROGN (-15 -3266 ($ $ (-708))) (-15 -1254 ($ $ (-708)))) |%noBranch|))) (-784) (-157)) (T -1184))
-((-2190 (*1 *1 *2) (-12 (-5 *2 (-606 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)) (-5 *1 (-1184 *3 *4)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-1179 *3 *4)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-2190 (*1 *2 *1) (-12 (-5 *2 (-1188 *3 *4)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-1373 (*1 *2 *1) (|partial| -12 (-5 *2 (-606 *3 *4)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-1372 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-3266 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-1184 *3 *4)) (-4 *4 (-655 (-382 (-522)))) (-4 *3 (-784)) (-4 *4 (-157)))) (-1254 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-1184 *3 *4)) (-4 *4 (-655 (-382 (-522)))) (-4 *3 (-784)) (-4 *4 (-157)))))
-(-13 (-1185 |#1| |#2|) (-357 |#2| (-822 |#1|)) (-10 -8 (-15 -2190 ($ (-606 |#1| |#2|))) (-15 -2190 ((-1179 |#1| |#2|) $)) (-15 -2190 ((-1188 |#1| |#2|) $)) (-15 -1373 ((-3 (-606 |#1| |#2|) "failed") $)) (-15 -1372 ($ $ $ (-708))) (IF (|has| |#2| (-655 (-382 (-522)))) (PROGN (-15 -3266 ($ $ (-708))) (-15 -1254 ($ $ (-708)))) |%noBranch|)))
-((-1416 (((-108) $ $) 7)) (-2250 (((-108) $) 16)) (-4106 (((-588 |#1|) $) 40)) (-2613 (($ $ (-708)) 73)) (-1233 (((-3 $ "failed") $ $) 19)) (-3961 (($ $ $) 43 (|has| |#2| (-157))) (($ $ (-708)) 42 (|has| |#2| (-157)))) (-3175 (($) 17 T CONST)) (-1200 (($ $ |#1|) 54) (($ $ (-756 |#1|)) 53) (($ $ $) 52)) (-1297 (((-3 (-756 |#1|) "failed") $) 64)) (-1484 (((-756 |#1|) $) 63)) (-2682 (((-3 $ "failed") $) 34)) (-3221 (((-108) $) 45)) (-3154 (($ $) 44)) (-2782 (((-108) $) 31)) (-3340 (((-108) $) 50)) (-2518 (($ (-756 |#1|) |#2|) 51)) (-1225 (($ $) 49)) (-1748 (((-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|)) $) 60)) (-2451 (((-756 |#1|) $) 61)) (-3295 (((-756 |#1|) $) 75)) (-1391 (($ (-1 |#2| |#2|) $) 41)) (-2987 (($ $ |#1|) 57) (($ $ (-756 |#1|)) 56) (($ $ $) 55)) (-2385 (((-1068) $) 9)) (-4151 (((-1032) $) 10)) (-2793 (((-708) $) 74)) (-1328 (((-108) $) 47)) (-2677 ((|#2| $) 46)) (-2190 (((-792) $) 11) (($ (-522)) 28) (($ |#2|) 68) (($ (-756 |#1|)) 65) (($ |#1|) 48)) (-2977 ((|#2| $ (-756 |#1|)) 59) ((|#2| $ $) 58)) (-2323 (((-708)) 29)) (-3510 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3566 (($) 18 T CONST)) (-3577 (($) 30 T CONST)) (-1531 (((-108) $ $) 6)) (-1612 (($ $) 22) (($ $ $) 21)) (-1602 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ |#2| $) 67) (($ $ |#2|) 66) (($ |#1| $) 62)))
+((-1711 (*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-108)))) (-2400 (*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-108)))) (-2804 (*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-108)))) (-2487 (*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-770 (-850))))) (-1713 (*1 *2) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-770 (-850))))) (-1593 (*1 *2) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-708)))) (-2938 (*1 *1 *1) (-12 (-4 *1 (-1183 *2)) (-4 *2 (-338)) (-4 *2 (-343)))) (-2938 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-4 *3 (-343)))))
+(-13 (-338) (-962 |t#1|) (-1173 |t#1|) (-10 -8 (IF (|has| |t#1| (-135)) (-6 (-135)) |%noBranch|) (IF (|has| |t#1| (-133)) (-6 (-377)) |%noBranch|) (-15 -1711 ((-108) $)) (-15 -2400 ((-108) $)) (-15 -2804 ((-108) $)) (-15 -2487 ((-770 (-850)) $)) (-15 -1713 ((-770 (-850)))) (-15 -1593 ((-708))) (IF (|has| |t#1| (-343)) (PROGN (-6 (-377)) (-15 -2938 ($ $)) (-15 -2938 ($ $ (-708)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-37 #0=(-382 (-522))) . T) ((-37 $) . T) ((-97) . T) ((-107 #0# #0#) . T) ((-107 |#1| |#1|) . T) ((-107 $ $) . T) ((-124) . T) ((-133) -3844 (|has| |#1| (-343)) (|has| |#1| (-133))) ((-135) |has| |#1| (-135)) ((-562 (-792)) . T) ((-157) . T) ((-220) . T) ((-266) . T) ((-283) . T) ((-338) . T) ((-377) -3844 (|has| |#1| (-343)) (|has| |#1| (-133))) ((-426) . T) ((-514) . T) ((-590 #0#) . T) ((-590 |#1|) . T) ((-590 $) . T) ((-655 #0#) . T) ((-655 |#1|) . T) ((-655 $) . T) ((-664) . T) ((-849) . T) ((-962 |#1|) . T) ((-977 #0#) . T) ((-977 |#1|) . T) ((-977 $) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1124) . T) ((-1173 |#1|) . T))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-4127 (((-588 |#1|) $) 85)) (-3331 (($ $ (-708)) 88)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1437 (($ $ $) NIL (|has| |#2| (-157))) (($ $ (-708)) NIL (|has| |#2| (-157)))) (-3367 (($) NIL T CONST)) (-1745 (($ $ |#1|) NIL) (($ $ (-756 |#1|)) NIL) (($ $ $) NIL)) (-3700 (((-3 (-756 |#1|) "failed") $) NIL) (((-3 (-822 |#1|) "failed") $) NIL)) (-1478 (((-756 |#1|) $) NIL) (((-822 |#1|) $) NIL)) (-3241 (($ $) 87)) (-3920 (((-3 $ "failed") $) NIL)) (-2664 (((-108) $) 76)) (-3208 (($ $) 80)) (-3589 (($ $ $ (-708)) 89)) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-2623 (($ (-756 |#1|) |#2|) NIL) (($ (-822 |#1|) |#2|) 26)) (-2182 (($ $) 102)) (-1500 (((-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2565 (((-756 |#1|) $) NIL)) (-2114 (((-756 |#1|) $) NIL)) (-3810 (($ (-1 |#2| |#2|) $) NIL)) (-4038 (($ $ |#1|) NIL) (($ $ (-756 |#1|)) NIL) (($ $ $) NIL)) (-1238 (($ $ (-708)) 96 (|has| |#2| (-655 (-382 (-522)))))) (-2893 (((-2 (|:| |k| (-822 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3216 (((-822 |#1|) $) 70)) (-3224 ((|#2| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-3357 (($ $ (-708)) 93 (|has| |#2| (-655 (-382 (-522)))))) (-2487 (((-708) $) 86)) (-1967 (((-108) $) 71)) (-2855 ((|#2| $) 75)) (-2217 (((-792) $) 57) (($ (-522)) NIL) (($ |#2|) 51) (($ (-756 |#1|)) NIL) (($ |#1|) 59) (($ (-822 |#1|)) NIL) (($ (-606 |#1| |#2|)) 43) (((-1179 |#1| |#2|) $) 64) (((-1188 |#1| |#2|) $) 69)) (-2180 (((-588 |#2|) $) NIL)) (-1643 ((|#2| $ (-822 |#1|)) NIL)) (-3112 ((|#2| $ (-756 |#1|)) NIL) ((|#2| $ $) NIL)) (-2742 (((-708)) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 21 T CONST)) (-3709 (($) 25 T CONST)) (-1738 (((-588 (-2 (|:| |k| (-822 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3600 (((-3 (-606 |#1| |#2|) "failed") $) 101)) (-1562 (((-108) $ $) 65)) (-1672 (($ $) 95) (($ $ $) 94)) (-1661 (($ $ $) 20)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 44) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-822 |#1|)) NIL)))
+(((-1184 |#1| |#2|) (-13 (-1185 |#1| |#2|) (-357 |#2| (-822 |#1|)) (-10 -8 (-15 -2217 ($ (-606 |#1| |#2|))) (-15 -2217 ((-1179 |#1| |#2|) $)) (-15 -2217 ((-1188 |#1| |#2|) $)) (-15 -3600 ((-3 (-606 |#1| |#2|) "failed") $)) (-15 -3589 ($ $ $ (-708))) (IF (|has| |#2| (-655 (-382 (-522)))) (PROGN (-15 -3357 ($ $ (-708))) (-15 -1238 ($ $ (-708)))) |%noBranch|))) (-784) (-157)) (T -1184))
+((-2217 (*1 *1 *2) (-12 (-5 *2 (-606 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)) (-5 *1 (-1184 *3 *4)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-1179 *3 *4)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-2217 (*1 *2 *1) (-12 (-5 *2 (-1188 *3 *4)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-3600 (*1 *2 *1) (|partial| -12 (-5 *2 (-606 *3 *4)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-3589 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157)))) (-3357 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-1184 *3 *4)) (-4 *4 (-655 (-382 (-522)))) (-4 *3 (-784)) (-4 *4 (-157)))) (-1238 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-1184 *3 *4)) (-4 *4 (-655 (-382 (-522)))) (-4 *3 (-784)) (-4 *4 (-157)))))
+(-13 (-1185 |#1| |#2|) (-357 |#2| (-822 |#1|)) (-10 -8 (-15 -2217 ($ (-606 |#1| |#2|))) (-15 -2217 ((-1179 |#1| |#2|) $)) (-15 -2217 ((-1188 |#1| |#2|) $)) (-15 -3600 ((-3 (-606 |#1| |#2|) "failed") $)) (-15 -3589 ($ $ $ (-708))) (IF (|has| |#2| (-655 (-382 (-522)))) (PROGN (-15 -3357 ($ $ (-708))) (-15 -1238 ($ $ (-708)))) |%noBranch|)))
+((-1419 (((-108) $ $) 7)) (-2944 (((-108) $) 16)) (-4127 (((-588 |#1|) $) 40)) (-3331 (($ $ (-708)) 73)) (-2265 (((-3 $ "failed") $ $) 19)) (-1437 (($ $ $) 43 (|has| |#2| (-157))) (($ $ (-708)) 42 (|has| |#2| (-157)))) (-3367 (($) 17 T CONST)) (-1745 (($ $ |#1|) 54) (($ $ (-756 |#1|)) 53) (($ $ $) 52)) (-3700 (((-3 (-756 |#1|) "failed") $) 64)) (-1478 (((-756 |#1|) $) 63)) (-3920 (((-3 $ "failed") $) 34)) (-2664 (((-108) $) 45)) (-3208 (($ $) 44)) (-2859 (((-108) $) 31)) (-1374 (((-108) $) 50)) (-2623 (($ (-756 |#1|) |#2|) 51)) (-2182 (($ $) 49)) (-1500 (((-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|)) $) 60)) (-2565 (((-756 |#1|) $) 61)) (-2114 (((-756 |#1|) $) 75)) (-3810 (($ (-1 |#2| |#2|) $) 41)) (-4038 (($ $ |#1|) 57) (($ $ (-756 |#1|)) 56) (($ $ $) 55)) (-2311 (((-1068) $) 9)) (-4174 (((-1032) $) 10)) (-2487 (((-708) $) 74)) (-1967 (((-108) $) 47)) (-2855 ((|#2| $) 46)) (-2217 (((-792) $) 11) (($ (-522)) 28) (($ |#2|) 68) (($ (-756 |#1|)) 65) (($ |#1|) 48)) (-3112 ((|#2| $ (-756 |#1|)) 59) ((|#2| $ $) 58)) (-2742 (((-708)) 29)) (-3622 (($ $ (-850)) 26) (($ $ (-708)) 33)) (-3697 (($) 18 T CONST)) (-3709 (($) 30 T CONST)) (-1562 (((-108) $ $) 6)) (-1672 (($ $) 22) (($ $ $) 21)) (-1661 (($ $ $) 14)) (** (($ $ (-850)) 25) (($ $ (-708)) 32)) (* (($ (-850) $) 13) (($ (-708) $) 15) (($ (-522) $) 20) (($ $ $) 24) (($ |#2| $) 67) (($ $ |#2|) 66) (($ |#1| $) 62)))
(((-1185 |#1| |#2|) (-1197) (-784) (-971)) (T -1185))
-((-3295 (*1 *2 *1) (-12 (-4 *1 (-1185 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-756 *3)))) (-2793 (*1 *2 *1) (-12 (-4 *1 (-1185 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-708)))) (-2613 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1185 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))))
-(-13 (-1181 |t#1| |t#2|) (-10 -8 (-15 -3295 ((-756 |t#1|) $)) (-15 -2793 ((-708) $)) (-15 -2613 ($ $ (-708)))))
+((-2114 (*1 *2 *1) (-12 (-4 *1 (-1185 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-756 *3)))) (-2487 (*1 *2 *1) (-12 (-4 *1 (-1185 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *2 (-708)))) (-3331 (*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1185 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))))
+(-13 (-1181 |t#1| |t#2|) (-10 -8 (-15 -2114 ((-756 |t#1|) $)) (-15 -2487 ((-708) $)) (-15 -3331 ($ $ (-708)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-37 |#2|) |has| |#2| (-157)) ((-97) . T) ((-107 |#2| |#2|) . T) ((-124) . T) ((-562 (-792)) . T) ((-590 |#2|) . T) ((-590 $) . T) ((-655 |#2|) |has| |#2| (-157)) ((-664) . T) ((-962 (-756 |#1|)) . T) ((-977 |#2|) . T) ((-971) . T) ((-978) . T) ((-1026) . T) ((-1014) . T) ((-1178 |#2|) . T) ((-1181 |#1| |#2|) . T))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4106 (((-588 (-1085)) $) NIL)) (-1393 (($ (-1179 (-1085) |#1|)) NIL)) (-2613 (($ $ (-708)) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3961 (($ $ $) NIL (|has| |#1| (-157))) (($ $ (-708)) NIL (|has| |#1| (-157)))) (-3175 (($) NIL T CONST)) (-1200 (($ $ (-1085)) NIL) (($ $ (-756 (-1085))) NIL) (($ $ $) NIL)) (-1297 (((-3 (-756 (-1085)) "failed") $) NIL)) (-1484 (((-756 (-1085)) $) NIL)) (-2682 (((-3 $ "failed") $) NIL)) (-3221 (((-108) $) NIL)) (-3154 (($ $) NIL)) (-2782 (((-108) $) NIL)) (-3340 (((-108) $) NIL)) (-2518 (($ (-756 (-1085)) |#1|) NIL)) (-1225 (($ $) NIL)) (-1748 (((-2 (|:| |k| (-756 (-1085))) (|:| |c| |#1|)) $) NIL)) (-2451 (((-756 (-1085)) $) NIL)) (-3295 (((-756 (-1085)) $) NIL)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2987 (($ $ (-1085)) NIL) (($ $ (-756 (-1085))) NIL) (($ $ $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1604 (((-1179 (-1085) |#1|) $) NIL)) (-2793 (((-708) $) NIL)) (-1328 (((-108) $) NIL)) (-2677 ((|#1| $) NIL)) (-2190 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-756 (-1085))) NIL) (($ (-1085)) NIL)) (-2977 ((|#1| $ (-756 (-1085))) NIL) ((|#1| $ $) NIL)) (-2323 (((-708)) NIL)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) NIL T CONST)) (-1347 (((-588 (-2 (|:| |k| (-1085)) (|:| |c| $))) $) NIL)) (-3577 (($) NIL T CONST)) (-1531 (((-108) $ $) NIL)) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1085) $) NIL)))
-(((-1186 |#1|) (-13 (-1185 (-1085) |#1|) (-10 -8 (-15 -1604 ((-1179 (-1085) |#1|) $)) (-15 -1393 ($ (-1179 (-1085) |#1|))) (-15 -1347 ((-588 (-2 (|:| |k| (-1085)) (|:| |c| $))) $)))) (-971)) (T -1186))
-((-1604 (*1 *2 *1) (-12 (-5 *2 (-1179 (-1085) *3)) (-5 *1 (-1186 *3)) (-4 *3 (-971)))) (-1393 (*1 *1 *2) (-12 (-5 *2 (-1179 (-1085) *3)) (-4 *3 (-971)) (-5 *1 (-1186 *3)))) (-1347 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |k| (-1085)) (|:| |c| (-1186 *3))))) (-5 *1 (-1186 *3)) (-4 *3 (-971)))))
-(-13 (-1185 (-1085) |#1|) (-10 -8 (-15 -1604 ((-1179 (-1085) |#1|) $)) (-15 -1393 ($ (-1179 (-1085) |#1|))) (-15 -1347 ((-588 (-2 (|:| |k| (-1085)) (|:| |c| $))) $))))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3175 (($) NIL T CONST)) (-1297 (((-3 |#2| "failed") $) NIL)) (-1484 ((|#2| $) NIL)) (-3156 (($ $) NIL)) (-2682 (((-3 $ "failed") $) 35)) (-3221 (((-108) $) 30)) (-3154 (($ $) 31)) (-2782 (((-108) $) NIL)) (-2112 (((-708) $) NIL)) (-4052 (((-588 $) $) NIL)) (-3340 (((-108) $) NIL)) (-2518 (($ |#2| |#1|) NIL)) (-2451 ((|#2| $) 19)) (-3295 ((|#2| $) 16)) (-1391 (($ (-1 |#1| |#1|) $) NIL)) (-2834 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-3128 ((|#2| $) NIL)) (-3138 ((|#1| $) NIL)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1328 (((-108) $) 27)) (-2677 ((|#1| $) 28)) (-2190 (((-792) $) 54) (($ (-522)) 39) (($ |#1|) 34) (($ |#2|) NIL)) (-3916 (((-588 |#1|) $) NIL)) (-3243 ((|#1| $ |#2|) NIL)) (-2977 ((|#1| $ |#2|) 24)) (-2323 (((-708)) 14)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 25 T CONST)) (-3577 (($) 11 T CONST)) (-2238 (((-588 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-1531 (((-108) $ $) 26)) (-1620 (($ $ |#1|) 56 (|has| |#1| (-338)))) (-1612 (($ $) NIL) (($ $ $) NIL)) (-1602 (($ $ $) 43)) (** (($ $ (-850)) NIL) (($ $ (-708)) 45)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 44) (($ |#1| $) 40) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-3480 (((-708) $) 15)))
-(((-1187 |#1| |#2|) (-13 (-971) (-1178 |#1|) (-357 |#1| |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3480 ((-708) $)) (-15 -2190 ($ |#2|)) (-15 -3295 (|#2| $)) (-15 -2451 (|#2| $)) (-15 -3156 ($ $)) (-15 -2977 (|#1| $ |#2|)) (-15 -1328 ((-108) $)) (-15 -2677 (|#1| $)) (-15 -3221 ((-108) $)) (-15 -3154 ($ $)) (-15 -1391 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-338)) (-15 -1620 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4231)) (-6 -4231) |%noBranch|) (IF (|has| |#1| (-6 -4235)) (-6 -4235) |%noBranch|) (IF (|has| |#1| (-6 -4236)) (-6 -4236) |%noBranch|))) (-971) (-780)) (T -1187))
-((* (*1 *1 *1 *2) (-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-971)) (-4 *3 (-780)))) (-3156 (*1 *1 *1) (-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-971)) (-4 *3 (-780)))) (-1391 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-1187 *3 *4)) (-4 *4 (-780)))) (-2190 (*1 *1 *2) (-12 (-5 *1 (-1187 *3 *2)) (-4 *3 (-971)) (-4 *2 (-780)))) (-3480 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-971)) (-4 *4 (-780)))) (-3295 (*1 *2 *1) (-12 (-4 *2 (-780)) (-5 *1 (-1187 *3 *2)) (-4 *3 (-971)))) (-2451 (*1 *2 *1) (-12 (-4 *2 (-780)) (-5 *1 (-1187 *3 *2)) (-4 *3 (-971)))) (-2977 (*1 *2 *1 *3) (-12 (-4 *2 (-971)) (-5 *1 (-1187 *2 *3)) (-4 *3 (-780)))) (-1328 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-971)) (-4 *4 (-780)))) (-2677 (*1 *2 *1) (-12 (-4 *2 (-971)) (-5 *1 (-1187 *2 *3)) (-4 *3 (-780)))) (-3221 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-971)) (-4 *4 (-780)))) (-3154 (*1 *1 *1) (-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-971)) (-4 *3 (-780)))) (-1620 (*1 *1 *1 *2) (-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-338)) (-4 *2 (-971)) (-4 *3 (-780)))))
-(-13 (-971) (-1178 |#1|) (-357 |#1| |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3480 ((-708) $)) (-15 -2190 ($ |#2|)) (-15 -3295 (|#2| $)) (-15 -2451 (|#2| $)) (-15 -3156 ($ $)) (-15 -2977 (|#1| $ |#2|)) (-15 -1328 ((-108) $)) (-15 -2677 (|#1| $)) (-15 -3221 ((-108) $)) (-15 -3154 ($ $)) (-15 -1391 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-338)) (-15 -1620 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4231)) (-6 -4231) |%noBranch|) (IF (|has| |#1| (-6 -4235)) (-6 -4235) |%noBranch|) (IF (|has| |#1| (-6 -4236)) (-6 -4236) |%noBranch|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) NIL)) (-4106 (((-588 |#1|) $) 120)) (-1393 (($ (-1179 |#1| |#2|)) 44)) (-2613 (($ $ (-708)) 32)) (-1233 (((-3 $ "failed") $ $) NIL)) (-3961 (($ $ $) 48 (|has| |#2| (-157))) (($ $ (-708)) 46 (|has| |#2| (-157)))) (-3175 (($) NIL T CONST)) (-1200 (($ $ |#1|) 102) (($ $ (-756 |#1|)) 103) (($ $ $) 25)) (-1297 (((-3 (-756 |#1|) "failed") $) NIL)) (-1484 (((-756 |#1|) $) NIL)) (-2682 (((-3 $ "failed") $) 110)) (-3221 (((-108) $) 105)) (-3154 (($ $) 106)) (-2782 (((-108) $) NIL)) (-3340 (((-108) $) NIL)) (-2518 (($ (-756 |#1|) |#2|) 19)) (-1225 (($ $) NIL)) (-1748 (((-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2451 (((-756 |#1|) $) 111)) (-3295 (((-756 |#1|) $) 114)) (-1391 (($ (-1 |#2| |#2|) $) 119)) (-2987 (($ $ |#1|) 100) (($ $ (-756 |#1|)) 101) (($ $ $) 56)) (-2385 (((-1068) $) NIL)) (-4151 (((-1032) $) NIL)) (-1604 (((-1179 |#1| |#2|) $) 84)) (-2793 (((-708) $) 117)) (-1328 (((-108) $) 70)) (-2677 ((|#2| $) 28)) (-2190 (((-792) $) 63) (($ (-522)) 77) (($ |#2|) 74) (($ (-756 |#1|)) 17) (($ |#1|) 73)) (-2977 ((|#2| $ (-756 |#1|)) 104) ((|#2| $ $) 27)) (-2323 (((-708)) 108)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 14 T CONST)) (-1347 (((-588 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 53)) (-3577 (($) 29 T CONST)) (-1531 (((-108) $ $) 13)) (-1612 (($ $) 88) (($ $ $) 91)) (-1602 (($ $ $) 55)) (** (($ $ (-850)) NIL) (($ $ (-708)) 49)) (* (($ (-850) $) NIL) (($ (-708) $) 47) (($ (-522) $) 94) (($ $ $) 21) (($ |#2| $) 18) (($ $ |#2|) 20) (($ |#1| $) 82)))
-(((-1188 |#1| |#2|) (-13 (-1185 |#1| |#2|) (-10 -8 (-15 -1604 ((-1179 |#1| |#2|) $)) (-15 -1393 ($ (-1179 |#1| |#2|))) (-15 -1347 ((-588 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-784) (-971)) (T -1188))
-((-1604 (*1 *2 *1) (-12 (-5 *2 (-1179 *3 *4)) (-5 *1 (-1188 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))) (-1393 (*1 *1 *2) (-12 (-5 *2 (-1179 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *1 (-1188 *3 *4)))) (-1347 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |k| *3) (|:| |c| (-1188 *3 *4))))) (-5 *1 (-1188 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))))
-(-13 (-1185 |#1| |#2|) (-10 -8 (-15 -1604 ((-1179 |#1| |#2|) $)) (-15 -1393 ($ (-1179 |#1| |#2|))) (-15 -1347 ((-588 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
-((-1352 (((-588 (-1066 |#1|)) (-1 (-588 (-1066 |#1|)) (-588 (-1066 |#1|))) (-522)) 15) (((-1066 |#1|) (-1 (-1066 |#1|) (-1066 |#1|))) 11)))
-(((-1189 |#1|) (-10 -7 (-15 -1352 ((-1066 |#1|) (-1 (-1066 |#1|) (-1066 |#1|)))) (-15 -1352 ((-588 (-1066 |#1|)) (-1 (-588 (-1066 |#1|)) (-588 (-1066 |#1|))) (-522)))) (-1120)) (T -1189))
-((-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-588 (-1066 *5)) (-588 (-1066 *5)))) (-5 *4 (-522)) (-5 *2 (-588 (-1066 *5))) (-5 *1 (-1189 *5)) (-4 *5 (-1120)))) (-1352 (*1 *2 *3) (-12 (-5 *3 (-1 (-1066 *4) (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1189 *4)) (-4 *4 (-1120)))))
-(-10 -7 (-15 -1352 ((-1066 |#1|) (-1 (-1066 |#1|) (-1066 |#1|)))) (-15 -1352 ((-588 (-1066 |#1|)) (-1 (-588 (-1066 |#1|)) (-588 (-1066 |#1|))) (-522))))
-((-1402 (((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|))) 146) (((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108)) 145) (((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108)) 144) (((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108) (-108)) 143) (((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-968 |#1| |#2|)) 128)) (-1513 (((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|))) 71) (((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)) (-108)) 70) (((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)) (-108) (-108)) 69)) (-3450 (((-588 (-1056 |#1| (-494 (-794 |#3|)) (-794 |#3|) (-717 |#1| (-794 |#3|)))) (-968 |#1| |#2|)) 60)) (-3866 (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|))) 113) (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108)) 112) (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108)) 111) (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108) (-108)) 110) (((-588 (-588 (-949 (-382 |#1|)))) (-968 |#1| |#2|)) 105)) (-2098 (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|))) 118) (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108)) 117) (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108)) 116) (((-588 (-588 (-949 (-382 |#1|)))) (-968 |#1| |#2|)) 115)) (-1431 (((-588 (-717 |#1| (-794 |#3|))) (-1056 |#1| (-494 (-794 |#3|)) (-794 |#3|) (-717 |#1| (-794 |#3|)))) 97) (((-1081 (-949 (-382 |#1|))) (-1081 |#1|)) 88) (((-881 (-949 (-382 |#1|))) (-717 |#1| (-794 |#3|))) 95) (((-881 (-949 (-382 |#1|))) (-881 |#1|)) 93) (((-717 |#1| (-794 |#3|)) (-717 |#1| (-794 |#2|))) 33)))
-(((-1190 |#1| |#2| |#3|) (-10 -7 (-15 -1513 ((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)) (-108) (-108))) (-15 -1513 ((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)) (-108))) (-15 -1513 ((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)))) (-15 -1402 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-968 |#1| |#2|))) (-15 -1402 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108) (-108))) (-15 -1402 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108))) (-15 -1402 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108))) (-15 -1402 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)))) (-15 -3866 ((-588 (-588 (-949 (-382 |#1|)))) (-968 |#1| |#2|))) (-15 -3866 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108) (-108))) (-15 -3866 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108))) (-15 -3866 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108))) (-15 -3866 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)))) (-15 -2098 ((-588 (-588 (-949 (-382 |#1|)))) (-968 |#1| |#2|))) (-15 -2098 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108))) (-15 -2098 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108))) (-15 -2098 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)))) (-15 -3450 ((-588 (-1056 |#1| (-494 (-794 |#3|)) (-794 |#3|) (-717 |#1| (-794 |#3|)))) (-968 |#1| |#2|))) (-15 -1431 ((-717 |#1| (-794 |#3|)) (-717 |#1| (-794 |#2|)))) (-15 -1431 ((-881 (-949 (-382 |#1|))) (-881 |#1|))) (-15 -1431 ((-881 (-949 (-382 |#1|))) (-717 |#1| (-794 |#3|)))) (-15 -1431 ((-1081 (-949 (-382 |#1|))) (-1081 |#1|))) (-15 -1431 ((-588 (-717 |#1| (-794 |#3|))) (-1056 |#1| (-494 (-794 |#3|)) (-794 |#3|) (-717 |#1| (-794 |#3|)))))) (-13 (-782) (-283) (-135) (-947)) (-588 (-1085)) (-588 (-1085))) (T -1190))
-((-1431 (*1 *2 *3) (-12 (-5 *3 (-1056 *4 (-494 (-794 *6)) (-794 *6) (-717 *4 (-794 *6)))) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-717 *4 (-794 *6)))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))))) (-1431 (*1 *2 *3) (-12 (-5 *3 (-1081 *4)) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-1081 (-949 (-382 *4)))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))) (-1431 (*1 *2 *3) (-12 (-5 *3 (-717 *4 (-794 *6))) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *6 (-588 (-1085))) (-5 *2 (-881 (-949 (-382 *4)))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))))) (-1431 (*1 *2 *3) (-12 (-5 *3 (-881 *4)) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-881 (-949 (-382 *4)))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))) (-1431 (*1 *2 *3) (-12 (-5 *3 (-717 *4 (-794 *5))) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *5 (-588 (-1085))) (-5 *2 (-717 *4 (-794 *6))) (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085))))) (-3450 (*1 *2 *3) (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *5 (-588 (-1085))) (-5 *2 (-588 (-1056 *4 (-494 (-794 *6)) (-794 *6) (-717 *4 (-794 *6))))) (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085))))) (-2098 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *4))))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))) (-2098 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-2098 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-2098 (*1 *2 *3) (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *5 (-588 (-1085))) (-5 *2 (-588 (-588 (-949 (-382 *4))))) (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085))))) (-3866 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *4))))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))) (-3866 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-3866 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-3866 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-3866 (*1 *2 *3) (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *5 (-588 (-1085))) (-5 *2 (-588 (-588 (-949 (-382 *4))))) (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085))))) (-1402 (*1 *2 *3) (-12 (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-2 (|:| -2559 (-1081 *4)) (|:| -3677 (-588 (-881 *4)))))) (-5 *1 (-1190 *4 *5 *6)) (-5 *3 (-588 (-881 *4))) (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))) (-1402 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-2 (|:| -2559 (-1081 *5)) (|:| -3677 (-588 (-881 *5)))))) (-5 *1 (-1190 *5 *6 *7)) (-5 *3 (-588 (-881 *5))) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-1402 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-2 (|:| -2559 (-1081 *5)) (|:| -3677 (-588 (-881 *5)))))) (-5 *1 (-1190 *5 *6 *7)) (-5 *3 (-588 (-881 *5))) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-1402 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-2 (|:| -2559 (-1081 *5)) (|:| -3677 (-588 (-881 *5)))))) (-5 *1 (-1190 *5 *6 *7)) (-5 *3 (-588 (-881 *5))) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-1402 (*1 *2 *3) (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *5 (-588 (-1085))) (-5 *2 (-588 (-2 (|:| -2559 (-1081 *4)) (|:| -3677 (-588 (-881 *4)))))) (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085))))) (-1513 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-968 *4 *5))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))) (-1513 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-1513 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))))
-(-10 -7 (-15 -1513 ((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)) (-108) (-108))) (-15 -1513 ((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)) (-108))) (-15 -1513 ((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)))) (-15 -1402 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-968 |#1| |#2|))) (-15 -1402 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108) (-108))) (-15 -1402 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108))) (-15 -1402 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108))) (-15 -1402 ((-588 (-2 (|:| -2559 (-1081 |#1|)) (|:| -3677 (-588 (-881 |#1|))))) (-588 (-881 |#1|)))) (-15 -3866 ((-588 (-588 (-949 (-382 |#1|)))) (-968 |#1| |#2|))) (-15 -3866 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108) (-108))) (-15 -3866 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108))) (-15 -3866 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108))) (-15 -3866 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)))) (-15 -2098 ((-588 (-588 (-949 (-382 |#1|)))) (-968 |#1| |#2|))) (-15 -2098 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108))) (-15 -2098 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108))) (-15 -2098 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)))) (-15 -3450 ((-588 (-1056 |#1| (-494 (-794 |#3|)) (-794 |#3|) (-717 |#1| (-794 |#3|)))) (-968 |#1| |#2|))) (-15 -1431 ((-717 |#1| (-794 |#3|)) (-717 |#1| (-794 |#2|)))) (-15 -1431 ((-881 (-949 (-382 |#1|))) (-881 |#1|))) (-15 -1431 ((-881 (-949 (-382 |#1|))) (-717 |#1| (-794 |#3|)))) (-15 -1431 ((-1081 (-949 (-382 |#1|))) (-1081 |#1|))) (-15 -1431 ((-588 (-717 |#1| (-794 |#3|))) (-1056 |#1| (-494 (-794 |#3|)) (-794 |#3|) (-717 |#1| (-794 |#3|))))))
-((-1551 (((-3 (-1166 (-382 (-522))) "failed") (-1166 |#1|) |#1|) 17)) (-2202 (((-108) (-1166 |#1|)) 11)) (-3754 (((-3 (-1166 (-522)) "failed") (-1166 |#1|)) 14)))
-(((-1191 |#1|) (-10 -7 (-15 -2202 ((-108) (-1166 |#1|))) (-15 -3754 ((-3 (-1166 (-522)) "failed") (-1166 |#1|))) (-15 -1551 ((-3 (-1166 (-382 (-522))) "failed") (-1166 |#1|) |#1|))) (-584 (-522))) (T -1191))
-((-1551 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 (-522))) (-5 *2 (-1166 (-382 (-522)))) (-5 *1 (-1191 *4)))) (-3754 (*1 *2 *3) (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 (-522))) (-5 *2 (-1166 (-522))) (-5 *1 (-1191 *4)))) (-2202 (*1 *2 *3) (-12 (-5 *3 (-1166 *4)) (-4 *4 (-584 (-522))) (-5 *2 (-108)) (-5 *1 (-1191 *4)))))
-(-10 -7 (-15 -2202 ((-108) (-1166 |#1|))) (-15 -3754 ((-3 (-1166 (-522)) "failed") (-1166 |#1|))) (-15 -1551 ((-3 (-1166 (-382 (-522))) "failed") (-1166 |#1|) |#1|)))
-((-1416 (((-108) $ $) NIL)) (-2250 (((-108) $) 11)) (-1233 (((-3 $ "failed") $ $) NIL)) (-1629 (((-708)) 8)) (-3175 (($) NIL T CONST)) (-2682 (((-3 $ "failed") $) 43)) (-3255 (($) 36)) (-2782 (((-108) $) NIL)) (-3004 (((-3 $ "failed") $) 29)) (-2120 (((-850) $) 15)) (-2385 (((-1068) $) NIL)) (-3802 (($) 25 T CONST)) (-2717 (($ (-850)) 37)) (-4151 (((-1032) $) NIL)) (-1431 (((-522) $) 13)) (-2190 (((-792) $) 22) (($ (-522)) 19)) (-2323 (((-708)) 9)) (-3510 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3566 (($) 23 T CONST)) (-3577 (($) 24 T CONST)) (-1531 (((-108) $ $) 27)) (-1612 (($ $) 38) (($ $ $) 35)) (-1602 (($ $ $) 26)) (** (($ $ (-850)) NIL) (($ $ (-708)) 40)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 32) (($ $ $) 31)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-4127 (((-588 (-1085)) $) NIL)) (-3772 (($ (-1179 (-1085) |#1|)) NIL)) (-3331 (($ $ (-708)) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1437 (($ $ $) NIL (|has| |#1| (-157))) (($ $ (-708)) NIL (|has| |#1| (-157)))) (-3367 (($) NIL T CONST)) (-1745 (($ $ (-1085)) NIL) (($ $ (-756 (-1085))) NIL) (($ $ $) NIL)) (-3700 (((-3 (-756 (-1085)) "failed") $) NIL)) (-1478 (((-756 (-1085)) $) NIL)) (-3920 (((-3 $ "failed") $) NIL)) (-2664 (((-108) $) NIL)) (-3208 (($ $) NIL)) (-2859 (((-108) $) NIL)) (-1374 (((-108) $) NIL)) (-2623 (($ (-756 (-1085)) |#1|) NIL)) (-2182 (($ $) NIL)) (-1500 (((-2 (|:| |k| (-756 (-1085))) (|:| |c| |#1|)) $) NIL)) (-2565 (((-756 (-1085)) $) NIL)) (-2114 (((-756 (-1085)) $) NIL)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-4038 (($ $ (-1085)) NIL) (($ $ (-756 (-1085))) NIL) (($ $ $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1663 (((-1179 (-1085) |#1|) $) NIL)) (-2487 (((-708) $) NIL)) (-1967 (((-108) $) NIL)) (-2855 ((|#1| $) NIL)) (-2217 (((-792) $) NIL) (($ (-522)) NIL) (($ |#1|) NIL) (($ (-756 (-1085))) NIL) (($ (-1085)) NIL)) (-3112 ((|#1| $ (-756 (-1085))) NIL) ((|#1| $ $) NIL)) (-2742 (((-708)) NIL)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) NIL T CONST)) (-3405 (((-588 (-2 (|:| |k| (-1085)) (|:| |c| $))) $) NIL)) (-3709 (($) NIL T CONST)) (-1562 (((-108) $ $) NIL)) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) NIL)) (** (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1085) $) NIL)))
+(((-1186 |#1|) (-13 (-1185 (-1085) |#1|) (-10 -8 (-15 -1663 ((-1179 (-1085) |#1|) $)) (-15 -3772 ($ (-1179 (-1085) |#1|))) (-15 -3405 ((-588 (-2 (|:| |k| (-1085)) (|:| |c| $))) $)))) (-971)) (T -1186))
+((-1663 (*1 *2 *1) (-12 (-5 *2 (-1179 (-1085) *3)) (-5 *1 (-1186 *3)) (-4 *3 (-971)))) (-3772 (*1 *1 *2) (-12 (-5 *2 (-1179 (-1085) *3)) (-4 *3 (-971)) (-5 *1 (-1186 *3)))) (-3405 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |k| (-1085)) (|:| |c| (-1186 *3))))) (-5 *1 (-1186 *3)) (-4 *3 (-971)))))
+(-13 (-1185 (-1085) |#1|) (-10 -8 (-15 -1663 ((-1179 (-1085) |#1|) $)) (-15 -3772 ($ (-1179 (-1085) |#1|))) (-15 -3405 ((-588 (-2 (|:| |k| (-1085)) (|:| |c| $))) $))))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-2265 (((-3 $ "failed") $ $) NIL)) (-3367 (($) NIL T CONST)) (-3700 (((-3 |#2| "failed") $) NIL)) (-1478 ((|#2| $) NIL)) (-3241 (($ $) NIL)) (-3920 (((-3 $ "failed") $) 35)) (-2664 (((-108) $) 30)) (-3208 (($ $) 31)) (-2859 (((-108) $) NIL)) (-1391 (((-708) $) NIL)) (-3038 (((-588 $) $) NIL)) (-1374 (((-108) $) NIL)) (-2623 (($ |#2| |#1|) NIL)) (-2565 ((|#2| $) 19)) (-2114 ((|#2| $) 16)) (-3810 (($ (-1 |#1| |#1|) $) NIL)) (-2893 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-3216 ((|#2| $) NIL)) (-3224 ((|#1| $) NIL)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1967 (((-108) $) 27)) (-2855 ((|#1| $) 28)) (-2217 (((-792) $) 54) (($ (-522)) 39) (($ |#1|) 34) (($ |#2|) NIL)) (-2180 (((-588 |#1|) $) NIL)) (-1643 ((|#1| $ |#2|) NIL)) (-3112 ((|#1| $ |#2|) 24)) (-2742 (((-708)) 14)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 25 T CONST)) (-3709 (($) 11 T CONST)) (-1738 (((-588 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-1562 (((-108) $ $) 26)) (-1682 (($ $ |#1|) 56 (|has| |#1| (-338)))) (-1672 (($ $) NIL) (($ $ $) NIL)) (-1661 (($ $ $) 43)) (** (($ $ (-850)) NIL) (($ $ (-708)) 45)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) NIL) (($ $ $) 44) (($ |#1| $) 40) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-3591 (((-708) $) 15)))
+(((-1187 |#1| |#2|) (-13 (-971) (-1178 |#1|) (-357 |#1| |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3591 ((-708) $)) (-15 -2217 ($ |#2|)) (-15 -2114 (|#2| $)) (-15 -2565 (|#2| $)) (-15 -3241 ($ $)) (-15 -3112 (|#1| $ |#2|)) (-15 -1967 ((-108) $)) (-15 -2855 (|#1| $)) (-15 -2664 ((-108) $)) (-15 -3208 ($ $)) (-15 -3810 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-338)) (-15 -1682 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4231)) (-6 -4231) |%noBranch|) (IF (|has| |#1| (-6 -4235)) (-6 -4235) |%noBranch|) (IF (|has| |#1| (-6 -4236)) (-6 -4236) |%noBranch|))) (-971) (-780)) (T -1187))
+((* (*1 *1 *1 *2) (-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-971)) (-4 *3 (-780)))) (-3241 (*1 *1 *1) (-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-971)) (-4 *3 (-780)))) (-3810 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-1187 *3 *4)) (-4 *4 (-780)))) (-2217 (*1 *1 *2) (-12 (-5 *1 (-1187 *3 *2)) (-4 *3 (-971)) (-4 *2 (-780)))) (-3591 (*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-971)) (-4 *4 (-780)))) (-2114 (*1 *2 *1) (-12 (-4 *2 (-780)) (-5 *1 (-1187 *3 *2)) (-4 *3 (-971)))) (-2565 (*1 *2 *1) (-12 (-4 *2 (-780)) (-5 *1 (-1187 *3 *2)) (-4 *3 (-971)))) (-3112 (*1 *2 *1 *3) (-12 (-4 *2 (-971)) (-5 *1 (-1187 *2 *3)) (-4 *3 (-780)))) (-1967 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-971)) (-4 *4 (-780)))) (-2855 (*1 *2 *1) (-12 (-4 *2 (-971)) (-5 *1 (-1187 *2 *3)) (-4 *3 (-780)))) (-2664 (*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-971)) (-4 *4 (-780)))) (-3208 (*1 *1 *1) (-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-971)) (-4 *3 (-780)))) (-1682 (*1 *1 *1 *2) (-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-338)) (-4 *2 (-971)) (-4 *3 (-780)))))
+(-13 (-971) (-1178 |#1|) (-357 |#1| |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3591 ((-708) $)) (-15 -2217 ($ |#2|)) (-15 -2114 (|#2| $)) (-15 -2565 (|#2| $)) (-15 -3241 ($ $)) (-15 -3112 (|#1| $ |#2|)) (-15 -1967 ((-108) $)) (-15 -2855 (|#1| $)) (-15 -2664 ((-108) $)) (-15 -3208 ($ $)) (-15 -3810 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-338)) (-15 -1682 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4231)) (-6 -4231) |%noBranch|) (IF (|has| |#1| (-6 -4235)) (-6 -4235) |%noBranch|) (IF (|has| |#1| (-6 -4236)) (-6 -4236) |%noBranch|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) NIL)) (-4127 (((-588 |#1|) $) 120)) (-3772 (($ (-1179 |#1| |#2|)) 44)) (-3331 (($ $ (-708)) 32)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1437 (($ $ $) 48 (|has| |#2| (-157))) (($ $ (-708)) 46 (|has| |#2| (-157)))) (-3367 (($) NIL T CONST)) (-1745 (($ $ |#1|) 102) (($ $ (-756 |#1|)) 103) (($ $ $) 25)) (-3700 (((-3 (-756 |#1|) "failed") $) NIL)) (-1478 (((-756 |#1|) $) NIL)) (-3920 (((-3 $ "failed") $) 110)) (-2664 (((-108) $) 105)) (-3208 (($ $) 106)) (-2859 (((-108) $) NIL)) (-1374 (((-108) $) NIL)) (-2623 (($ (-756 |#1|) |#2|) 19)) (-2182 (($ $) NIL)) (-1500 (((-2 (|:| |k| (-756 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2565 (((-756 |#1|) $) 111)) (-2114 (((-756 |#1|) $) 114)) (-3810 (($ (-1 |#2| |#2|) $) 119)) (-4038 (($ $ |#1|) 100) (($ $ (-756 |#1|)) 101) (($ $ $) 56)) (-2311 (((-1068) $) NIL)) (-4174 (((-1032) $) NIL)) (-1663 (((-1179 |#1| |#2|) $) 84)) (-2487 (((-708) $) 117)) (-1967 (((-108) $) 70)) (-2855 ((|#2| $) 28)) (-2217 (((-792) $) 63) (($ (-522)) 77) (($ |#2|) 74) (($ (-756 |#1|)) 17) (($ |#1|) 73)) (-3112 ((|#2| $ (-756 |#1|)) 104) ((|#2| $ $) 27)) (-2742 (((-708)) 108)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 14 T CONST)) (-3405 (((-588 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 53)) (-3709 (($) 29 T CONST)) (-1562 (((-108) $ $) 13)) (-1672 (($ $) 88) (($ $ $) 91)) (-1661 (($ $ $) 55)) (** (($ $ (-850)) NIL) (($ $ (-708)) 49)) (* (($ (-850) $) NIL) (($ (-708) $) 47) (($ (-522) $) 94) (($ $ $) 21) (($ |#2| $) 18) (($ $ |#2|) 20) (($ |#1| $) 82)))
+(((-1188 |#1| |#2|) (-13 (-1185 |#1| |#2|) (-10 -8 (-15 -1663 ((-1179 |#1| |#2|) $)) (-15 -3772 ($ (-1179 |#1| |#2|))) (-15 -3405 ((-588 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-784) (-971)) (T -1188))
+((-1663 (*1 *2 *1) (-12 (-5 *2 (-1179 *3 *4)) (-5 *1 (-1188 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))) (-3772 (*1 *1 *2) (-12 (-5 *2 (-1179 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)) (-5 *1 (-1188 *3 *4)))) (-3405 (*1 *2 *1) (-12 (-5 *2 (-588 (-2 (|:| |k| *3) (|:| |c| (-1188 *3 *4))))) (-5 *1 (-1188 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))))
+(-13 (-1185 |#1| |#2|) (-10 -8 (-15 -1663 ((-1179 |#1| |#2|) $)) (-15 -3772 ($ (-1179 |#1| |#2|))) (-15 -3405 ((-588 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
+((-1330 (((-588 (-1066 |#1|)) (-1 (-588 (-1066 |#1|)) (-588 (-1066 |#1|))) (-522)) 15) (((-1066 |#1|) (-1 (-1066 |#1|) (-1066 |#1|))) 11)))
+(((-1189 |#1|) (-10 -7 (-15 -1330 ((-1066 |#1|) (-1 (-1066 |#1|) (-1066 |#1|)))) (-15 -1330 ((-588 (-1066 |#1|)) (-1 (-588 (-1066 |#1|)) (-588 (-1066 |#1|))) (-522)))) (-1120)) (T -1189))
+((-1330 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-588 (-1066 *5)) (-588 (-1066 *5)))) (-5 *4 (-522)) (-5 *2 (-588 (-1066 *5))) (-5 *1 (-1189 *5)) (-4 *5 (-1120)))) (-1330 (*1 *2 *3) (-12 (-5 *3 (-1 (-1066 *4) (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1189 *4)) (-4 *4 (-1120)))))
+(-10 -7 (-15 -1330 ((-1066 |#1|) (-1 (-1066 |#1|) (-1066 |#1|)))) (-15 -1330 ((-588 (-1066 |#1|)) (-1 (-588 (-1066 |#1|)) (-588 (-1066 |#1|))) (-522))))
+((-3881 (((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|))) 146) (((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108)) 145) (((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108)) 144) (((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108) (-108)) 143) (((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-968 |#1| |#2|)) 128)) (-1860 (((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|))) 71) (((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)) (-108)) 70) (((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)) (-108) (-108)) 69)) (-3133 (((-588 (-1056 |#1| (-494 (-794 |#3|)) (-794 |#3|) (-717 |#1| (-794 |#3|)))) (-968 |#1| |#2|)) 60)) (-1760 (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|))) 113) (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108)) 112) (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108)) 111) (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108) (-108)) 110) (((-588 (-588 (-949 (-382 |#1|)))) (-968 |#1| |#2|)) 105)) (-1248 (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|))) 118) (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108)) 117) (((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108)) 116) (((-588 (-588 (-949 (-382 |#1|)))) (-968 |#1| |#2|)) 115)) (-3873 (((-588 (-717 |#1| (-794 |#3|))) (-1056 |#1| (-494 (-794 |#3|)) (-794 |#3|) (-717 |#1| (-794 |#3|)))) 97) (((-1081 (-949 (-382 |#1|))) (-1081 |#1|)) 88) (((-881 (-949 (-382 |#1|))) (-717 |#1| (-794 |#3|))) 95) (((-881 (-949 (-382 |#1|))) (-881 |#1|)) 93) (((-717 |#1| (-794 |#3|)) (-717 |#1| (-794 |#2|))) 33)))
+(((-1190 |#1| |#2| |#3|) (-10 -7 (-15 -1860 ((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)) (-108) (-108))) (-15 -1860 ((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)) (-108))) (-15 -1860 ((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)))) (-15 -3881 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-968 |#1| |#2|))) (-15 -3881 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108) (-108))) (-15 -3881 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108))) (-15 -3881 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108))) (-15 -3881 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)))) (-15 -1760 ((-588 (-588 (-949 (-382 |#1|)))) (-968 |#1| |#2|))) (-15 -1760 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108) (-108))) (-15 -1760 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108))) (-15 -1760 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108))) (-15 -1760 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)))) (-15 -1248 ((-588 (-588 (-949 (-382 |#1|)))) (-968 |#1| |#2|))) (-15 -1248 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108))) (-15 -1248 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108))) (-15 -1248 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)))) (-15 -3133 ((-588 (-1056 |#1| (-494 (-794 |#3|)) (-794 |#3|) (-717 |#1| (-794 |#3|)))) (-968 |#1| |#2|))) (-15 -3873 ((-717 |#1| (-794 |#3|)) (-717 |#1| (-794 |#2|)))) (-15 -3873 ((-881 (-949 (-382 |#1|))) (-881 |#1|))) (-15 -3873 ((-881 (-949 (-382 |#1|))) (-717 |#1| (-794 |#3|)))) (-15 -3873 ((-1081 (-949 (-382 |#1|))) (-1081 |#1|))) (-15 -3873 ((-588 (-717 |#1| (-794 |#3|))) (-1056 |#1| (-494 (-794 |#3|)) (-794 |#3|) (-717 |#1| (-794 |#3|)))))) (-13 (-782) (-283) (-135) (-947)) (-588 (-1085)) (-588 (-1085))) (T -1190))
+((-3873 (*1 *2 *3) (-12 (-5 *3 (-1056 *4 (-494 (-794 *6)) (-794 *6) (-717 *4 (-794 *6)))) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-717 *4 (-794 *6)))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))))) (-3873 (*1 *2 *3) (-12 (-5 *3 (-1081 *4)) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-1081 (-949 (-382 *4)))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))) (-3873 (*1 *2 *3) (-12 (-5 *3 (-717 *4 (-794 *6))) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *6 (-588 (-1085))) (-5 *2 (-881 (-949 (-382 *4)))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))))) (-3873 (*1 *2 *3) (-12 (-5 *3 (-881 *4)) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-881 (-949 (-382 *4)))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))) (-3873 (*1 *2 *3) (-12 (-5 *3 (-717 *4 (-794 *5))) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *5 (-588 (-1085))) (-5 *2 (-717 *4 (-794 *6))) (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085))))) (-3133 (*1 *2 *3) (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *5 (-588 (-1085))) (-5 *2 (-588 (-1056 *4 (-494 (-794 *6)) (-794 *6) (-717 *4 (-794 *6))))) (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085))))) (-1248 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *4))))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))) (-1248 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-1248 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-1248 (*1 *2 *3) (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *5 (-588 (-1085))) (-5 *2 (-588 (-588 (-949 (-382 *4))))) (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085))))) (-1760 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *4))))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))) (-1760 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-1760 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-1760 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-1760 (*1 *2 *3) (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *5 (-588 (-1085))) (-5 *2 (-588 (-588 (-949 (-382 *4))))) (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085))))) (-3881 (*1 *2 *3) (-12 (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-2 (|:| -3769 (-1081 *4)) (|:| -3510 (-588 (-881 *4)))))) (-5 *1 (-1190 *4 *5 *6)) (-5 *3 (-588 (-881 *4))) (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))) (-3881 (*1 *2 *3 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-2 (|:| -3769 (-1081 *5)) (|:| -3510 (-588 (-881 *5)))))) (-5 *1 (-1190 *5 *6 *7)) (-5 *3 (-588 (-881 *5))) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-3881 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-2 (|:| -3769 (-1081 *5)) (|:| -3510 (-588 (-881 *5)))))) (-5 *1 (-1190 *5 *6 *7)) (-5 *3 (-588 (-881 *5))) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-3881 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-2 (|:| -3769 (-1081 *5)) (|:| -3510 (-588 (-881 *5)))))) (-5 *1 (-1190 *5 *6 *7)) (-5 *3 (-588 (-881 *5))) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-3881 (*1 *2 *3) (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *5 (-588 (-1085))) (-5 *2 (-588 (-2 (|:| -3769 (-1081 *4)) (|:| -3510 (-588 (-881 *4)))))) (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085))))) (-1860 (*1 *2 *3) (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-968 *4 *5))) (-5 *1 (-1190 *4 *5 *6)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))) (-1860 (*1 *2 *3 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))) (-1860 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947))) (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-1190 *5 *6 *7)) (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085))))))
+(-10 -7 (-15 -1860 ((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)) (-108) (-108))) (-15 -1860 ((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)) (-108))) (-15 -1860 ((-588 (-968 |#1| |#2|)) (-588 (-881 |#1|)))) (-15 -3881 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-968 |#1| |#2|))) (-15 -3881 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108) (-108))) (-15 -3881 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108) (-108))) (-15 -3881 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)) (-108))) (-15 -3881 ((-588 (-2 (|:| -3769 (-1081 |#1|)) (|:| -3510 (-588 (-881 |#1|))))) (-588 (-881 |#1|)))) (-15 -1760 ((-588 (-588 (-949 (-382 |#1|)))) (-968 |#1| |#2|))) (-15 -1760 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108) (-108))) (-15 -1760 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108))) (-15 -1760 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108))) (-15 -1760 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)))) (-15 -1248 ((-588 (-588 (-949 (-382 |#1|)))) (-968 |#1| |#2|))) (-15 -1248 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108) (-108))) (-15 -1248 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)) (-108))) (-15 -1248 ((-588 (-588 (-949 (-382 |#1|)))) (-588 (-881 |#1|)))) (-15 -3133 ((-588 (-1056 |#1| (-494 (-794 |#3|)) (-794 |#3|) (-717 |#1| (-794 |#3|)))) (-968 |#1| |#2|))) (-15 -3873 ((-717 |#1| (-794 |#3|)) (-717 |#1| (-794 |#2|)))) (-15 -3873 ((-881 (-949 (-382 |#1|))) (-881 |#1|))) (-15 -3873 ((-881 (-949 (-382 |#1|))) (-717 |#1| (-794 |#3|)))) (-15 -3873 ((-1081 (-949 (-382 |#1|))) (-1081 |#1|))) (-15 -3873 ((-588 (-717 |#1| (-794 |#3|))) (-1056 |#1| (-494 (-794 |#3|)) (-794 |#3|) (-717 |#1| (-794 |#3|))))))
+((-3438 (((-3 (-1166 (-382 (-522))) "failed") (-1166 |#1|) |#1|) 17)) (-2306 (((-108) (-1166 |#1|)) 11)) (-3137 (((-3 (-1166 (-522)) "failed") (-1166 |#1|)) 14)))
+(((-1191 |#1|) (-10 -7 (-15 -2306 ((-108) (-1166 |#1|))) (-15 -3137 ((-3 (-1166 (-522)) "failed") (-1166 |#1|))) (-15 -3438 ((-3 (-1166 (-382 (-522))) "failed") (-1166 |#1|) |#1|))) (-584 (-522))) (T -1191))
+((-3438 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 (-522))) (-5 *2 (-1166 (-382 (-522)))) (-5 *1 (-1191 *4)))) (-3137 (*1 *2 *3) (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 (-522))) (-5 *2 (-1166 (-522))) (-5 *1 (-1191 *4)))) (-2306 (*1 *2 *3) (-12 (-5 *3 (-1166 *4)) (-4 *4 (-584 (-522))) (-5 *2 (-108)) (-5 *1 (-1191 *4)))))
+(-10 -7 (-15 -2306 ((-108) (-1166 |#1|))) (-15 -3137 ((-3 (-1166 (-522)) "failed") (-1166 |#1|))) (-15 -3438 ((-3 (-1166 (-382 (-522))) "failed") (-1166 |#1|) |#1|)))
+((-1419 (((-108) $ $) NIL)) (-2944 (((-108) $) 11)) (-2265 (((-3 $ "failed") $ $) NIL)) (-1685 (((-708)) 8)) (-3367 (($) NIL T CONST)) (-3920 (((-3 $ "failed") $) 43)) (-3344 (($) 36)) (-2859 (((-108) $) NIL)) (-4208 (((-3 $ "failed") $) 29)) (-1475 (((-850) $) 15)) (-2311 (((-1068) $) NIL)) (-3937 (($) 25 T CONST)) (-2882 (($ (-850)) 37)) (-4174 (((-1032) $) NIL)) (-3873 (((-522) $) 13)) (-2217 (((-792) $) 22) (($ (-522)) 19)) (-2742 (((-708)) 9)) (-3622 (($ $ (-850)) NIL) (($ $ (-708)) NIL)) (-3697 (($) 23 T CONST)) (-3709 (($) 24 T CONST)) (-1562 (((-108) $ $) 27)) (-1672 (($ $) 38) (($ $ $) 35)) (-1661 (($ $ $) 26)) (** (($ $ (-850)) NIL) (($ $ (-708)) 40)) (* (($ (-850) $) NIL) (($ (-708) $) NIL) (($ (-522) $) 32) (($ $ $) 31)))
(((-1192 |#1|) (-13 (-157) (-343) (-563 (-522)) (-1061)) (-850)) (T -1192))
NIL
(-13 (-157) (-343) (-563 (-522)) (-1061))
@@ -4900,4 +4900,4 @@ NIL
NIL
NIL
NIL
-((-1197 3137810 3137815 3137820 "NIL" NIL T NIL (NIL) NIL NIL NIL) (-3 3137795 3137800 3137805 "NIL" NIL NIL NIL (NIL) -8 NIL NIL) (-2 3137780 3137785 3137790 "NIL" NIL NIL NIL (NIL) -8 NIL NIL) (-1 3137765 3137770 3137775 "NIL" NIL NIL NIL (NIL) -8 NIL NIL) (0 3137750 3137755 3137760 "NIL" NIL NIL NIL (NIL) -8 NIL NIL) (-1192 3136880 3137625 3137702 "ZMOD" 3137707 NIL ZMOD (NIL NIL) -8 NIL NIL) (-1191 3135990 3136154 3136363 "ZLINDEP" 3136712 NIL ZLINDEP (NIL T) -7 NIL NIL) (-1190 3125394 3127139 3129091 "ZDSOLVE" 3134139 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL) (-1189 3124640 3124781 3124970 "YSTREAM" 3125240 NIL YSTREAM (NIL T) -7 NIL NIL) (-1188 3122408 3123945 3124148 "XRPOLY" 3124483 NIL XRPOLY (NIL T T) -8 NIL NIL) (-1187 3118870 3120199 3120781 "XPR" 3121872 NIL XPR (NIL T T) -8 NIL NIL) (-1186 3116584 3118205 3118408 "XPOLY" 3118701 NIL XPOLY (NIL T) -8 NIL NIL) (-1185 3114397 3115775 3115830 "XPOLYC" 3116115 NIL XPOLYC (NIL T T) -9 NIL 3116228) (-1184 3110769 3112914 3113302 "XPBWPOLY" 3114055 NIL XPBWPOLY (NIL T T) -8 NIL NIL) (-1183 3106696 3109009 3109052 "XF" 3109673 NIL XF (NIL T) -9 NIL 3110072) (-1182 3106317 3106405 3106574 "XF-" 3106579 NIL XF- (NIL T T) -8 NIL NIL) (-1181 3101696 3102995 3103050 "XFALG" 3105198 NIL XFALG (NIL T T) -9 NIL 3105985) (-1180 3100833 3100937 3101141 "XEXPPKG" 3101588 NIL XEXPPKG (NIL T T T) -7 NIL NIL) (-1179 3098931 3100684 3100779 "XDPOLY" 3100784 NIL XDPOLY (NIL T T) -8 NIL NIL) (-1178 3097809 3098419 3098462 "XALG" 3098524 NIL XALG (NIL T) -9 NIL 3098643) (-1177 3091285 3095793 3096286 "WUTSET" 3097401 NIL WUTSET (NIL T T T T) -8 NIL NIL) (-1176 3089097 3089904 3090255 "WP" 3091067 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL) (-1175 3087983 3088181 3088476 "WFFINTBS" 3088894 NIL WFFINTBS (NIL T T T T) -7 NIL NIL) (-1174 3085887 3086314 3086776 "WEIER" 3087555 NIL WEIER (NIL T) -7 NIL NIL) (-1173 3085035 3085459 3085502 "VSPACE" 3085638 NIL VSPACE (NIL T) -9 NIL 3085712) (-1172 3084873 3084900 3084991 "VSPACE-" 3084996 NIL VSPACE- (NIL T T) -8 NIL NIL) (-1171 3084619 3084662 3084733 "VOID" 3084824 T VOID (NIL) -8 NIL NIL) (-1170 3082755 3083114 3083520 "VIEW" 3084235 T VIEW (NIL) -7 NIL NIL) (-1169 3079180 3079818 3080555 "VIEWDEF" 3082040 T VIEWDEF (NIL) -7 NIL NIL) (-1168 3068519 3070728 3072901 "VIEW3D" 3077029 T VIEW3D (NIL) -8 NIL NIL) (-1167 3060801 3062430 3064009 "VIEW2D" 3066962 T VIEW2D (NIL) -8 NIL NIL) (-1166 3056210 3060571 3060663 "VECTOR" 3060744 NIL VECTOR (NIL T) -8 NIL NIL) (-1165 3054787 3055046 3055364 "VECTOR2" 3055940 NIL VECTOR2 (NIL T T) -7 NIL NIL) (-1164 3048326 3052578 3052622 "VECTCAT" 3053610 NIL VECTCAT (NIL T) -9 NIL 3054194) (-1163 3047340 3047594 3047984 "VECTCAT-" 3047989 NIL VECTCAT- (NIL T T) -8 NIL NIL) (-1162 3046821 3046991 3047111 "VARIABLE" 3047255 NIL VARIABLE (NIL NIL) -8 NIL NIL) (-1161 3046753 3046758 3046789 "UTYPE" 3046794 T UTYPE (NIL) -9 NIL NIL) (-1160 3045588 3045742 3046003 "UTSODETL" 3046579 NIL UTSODETL (NIL T T T T) -7 NIL NIL) (-1159 3043028 3043488 3044012 "UTSODE" 3045129 NIL UTSODE (NIL T T) -7 NIL NIL) (-1158 3034875 3040668 3041156 "UTS" 3042597 NIL UTS (NIL T NIL NIL) -8 NIL NIL) (-1157 3026223 3031585 3031628 "UTSCAT" 3032729 NIL UTSCAT (NIL T) -9 NIL 3033486) (-1156 3023579 3024294 3025282 "UTSCAT-" 3025287 NIL UTSCAT- (NIL T T) -8 NIL NIL) (-1155 3023210 3023253 3023384 "UTS2" 3023530 NIL UTS2 (NIL T T T T) -7 NIL NIL) (-1154 3017485 3020050 3020094 "URAGG" 3022164 NIL URAGG (NIL T) -9 NIL 3022886) (-1153 3014424 3015287 3016410 "URAGG-" 3016415 NIL URAGG- (NIL T T) -8 NIL NIL) (-1152 3010110 3013041 3013512 "UPXSSING" 3014088 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL) (-1151 3002004 3009231 3009511 "UPXS" 3009887 NIL UPXS (NIL T NIL NIL) -8 NIL NIL) (-1150 2995036 3001909 3001980 "UPXSCONS" 3001985 NIL UPXSCONS (NIL T T) -8 NIL NIL) (-1149 2985328 2992155 2992217 "UPXSCCA" 2992866 NIL UPXSCCA (NIL T T) -9 NIL 2993107) (-1148 2984967 2985052 2985225 "UPXSCCA-" 2985230 NIL UPXSCCA- (NIL T T T) -8 NIL NIL) (-1147 2975181 2981781 2981824 "UPXSCAT" 2982467 NIL UPXSCAT (NIL T) -9 NIL 2983075) (-1146 2974615 2974694 2974871 "UPXS2" 2975096 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL) (-1145 2973269 2973522 2973873 "UPSQFREE" 2974358 NIL UPSQFREE (NIL T T) -7 NIL NIL) (-1144 2967164 2970216 2970271 "UPSCAT" 2971420 NIL UPSCAT (NIL T T) -9 NIL 2972193) (-1143 2966378 2966582 2966905 "UPSCAT-" 2966910 NIL UPSCAT- (NIL T T T) -8 NIL NIL) (-1142 2952510 2960507 2960550 "UPOLYC" 2962628 NIL UPOLYC (NIL T) -9 NIL 2963848) (-1141 2943903 2946307 2949432 "UPOLYC-" 2949437 NIL UPOLYC- (NIL T T) -8 NIL NIL) (-1140 2943534 2943577 2943708 "UPOLYC2" 2943854 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL) (-1139 2934993 2943103 2943240 "UP" 2943444 NIL UP (NIL NIL T) -8 NIL NIL) (-1138 2934336 2934443 2934606 "UPMP" 2934882 NIL UPMP (NIL T T) -7 NIL NIL) (-1137 2933889 2933970 2934109 "UPDIVP" 2934249 NIL UPDIVP (NIL T T) -7 NIL NIL) (-1136 2932457 2932706 2933022 "UPDECOMP" 2933638 NIL UPDECOMP (NIL T T) -7 NIL NIL) (-1135 2931692 2931804 2931989 "UPCDEN" 2932341 NIL UPCDEN (NIL T T T) -7 NIL NIL) (-1134 2931215 2931284 2931431 "UP2" 2931617 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL) (-1133 2929732 2930419 2930696 "UNISEG" 2930973 NIL UNISEG (NIL T) -8 NIL NIL) (-1132 2928947 2929074 2929279 "UNISEG2" 2929575 NIL UNISEG2 (NIL T T) -7 NIL NIL) (-1131 2928007 2928187 2928413 "UNIFACT" 2928763 NIL UNIFACT (NIL T) -7 NIL NIL) (-1130 2911906 2927188 2927438 "ULS" 2927814 NIL ULS (NIL T NIL NIL) -8 NIL NIL) (-1129 2899874 2911811 2911882 "ULSCONS" 2911887 NIL ULSCONS (NIL T T) -8 NIL NIL) (-1128 2882627 2894637 2894699 "ULSCCAT" 2895411 NIL ULSCCAT (NIL T T) -9 NIL 2895707) (-1127 2881678 2881923 2882310 "ULSCCAT-" 2882315 NIL ULSCCAT- (NIL T T T) -8 NIL NIL) (-1126 2871671 2878185 2878228 "ULSCAT" 2879084 NIL ULSCAT (NIL T) -9 NIL 2879814) (-1125 2871105 2871184 2871361 "ULS2" 2871586 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL) (-1124 2869502 2870469 2870500 "UFD" 2870712 T UFD (NIL) -9 NIL 2870826) (-1123 2869296 2869342 2869437 "UFD-" 2869442 NIL UFD- (NIL T) -8 NIL NIL) (-1122 2868378 2868561 2868777 "UDVO" 2869102 T UDVO (NIL) -7 NIL NIL) (-1121 2866194 2866603 2867074 "UDPO" 2867942 NIL UDPO (NIL T) -7 NIL NIL) (-1120 2866126 2866131 2866162 "TYPE" 2866167 T TYPE (NIL) -9 NIL NIL) (-1119 2865097 2865299 2865539 "TWOFACT" 2865920 NIL TWOFACT (NIL T) -7 NIL NIL) (-1118 2864035 2864372 2864635 "TUPLE" 2864869 NIL TUPLE (NIL T) -8 NIL NIL) (-1117 2861726 2862245 2862784 "TUBETOOL" 2863518 T TUBETOOL (NIL) -7 NIL NIL) (-1116 2860575 2860780 2861021 "TUBE" 2861519 NIL TUBE (NIL T) -8 NIL NIL) (-1115 2855299 2859553 2859835 "TS" 2860327 NIL TS (NIL T) -8 NIL NIL) (-1114 2844002 2848094 2848191 "TSETCAT" 2853425 NIL TSETCAT (NIL T T T T) -9 NIL 2854956) (-1113 2838737 2840335 2842225 "TSETCAT-" 2842230 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL) (-1112 2833000 2833846 2834788 "TRMANIP" 2837873 NIL TRMANIP (NIL T T) -7 NIL NIL) (-1111 2832441 2832504 2832667 "TRIMAT" 2832932 NIL TRIMAT (NIL T T T T) -7 NIL NIL) (-1110 2830247 2830484 2830847 "TRIGMNIP" 2832190 NIL TRIGMNIP (NIL T T) -7 NIL NIL) (-1109 2829766 2829879 2829910 "TRIGCAT" 2830123 T TRIGCAT (NIL) -9 NIL NIL) (-1108 2829435 2829514 2829655 "TRIGCAT-" 2829660 NIL TRIGCAT- (NIL T) -8 NIL NIL) (-1107 2826334 2828295 2828575 "TREE" 2829190 NIL TREE (NIL T) -8 NIL NIL) (-1106 2825607 2826135 2826166 "TRANFUN" 2826201 T TRANFUN (NIL) -9 NIL 2826267) (-1105 2824886 2825077 2825357 "TRANFUN-" 2825362 NIL TRANFUN- (NIL T) -8 NIL NIL) (-1104 2824690 2824722 2824783 "TOPSP" 2824847 T TOPSP (NIL) -7 NIL NIL) (-1103 2824042 2824157 2824310 "TOOLSIGN" 2824571 NIL TOOLSIGN (NIL T) -7 NIL NIL) (-1102 2822703 2823219 2823458 "TEXTFILE" 2823825 T TEXTFILE (NIL) -8 NIL NIL) (-1101 2820568 2821082 2821520 "TEX" 2822287 T TEX (NIL) -8 NIL NIL) (-1100 2820349 2820380 2820452 "TEX1" 2820531 NIL TEX1 (NIL T) -7 NIL NIL) (-1099 2819997 2820060 2820150 "TEMUTL" 2820281 T TEMUTL (NIL) -7 NIL NIL) (-1098 2818151 2818431 2818756 "TBCMPPK" 2819720 NIL TBCMPPK (NIL T T) -7 NIL NIL) (-1097 2810039 2816311 2816368 "TBAGG" 2816768 NIL TBAGG (NIL T T) -9 NIL 2816979) (-1096 2805109 2806597 2808351 "TBAGG-" 2808356 NIL TBAGG- (NIL T T T) -8 NIL NIL) (-1095 2804493 2804600 2804745 "TANEXP" 2804998 NIL TANEXP (NIL T) -7 NIL NIL) (-1094 2797994 2804350 2804443 "TABLE" 2804448 NIL TABLE (NIL T T) -8 NIL NIL) (-1093 2797407 2797505 2797643 "TABLEAU" 2797891 NIL TABLEAU (NIL T) -8 NIL NIL) (-1092 2792015 2793235 2794483 "TABLBUMP" 2796193 NIL TABLBUMP (NIL T) -7 NIL NIL) (-1091 2788478 2789173 2789956 "SYSSOLP" 2791266 NIL SYSSOLP (NIL T) -7 NIL NIL) (-1090 2784769 2785477 2786211 "SYNTAX" 2787766 T SYNTAX (NIL) -8 NIL NIL) (-1089 2781903 2782511 2783149 "SYMTAB" 2784153 T SYMTAB (NIL) -8 NIL NIL) (-1088 2777152 2778054 2779037 "SYMS" 2780942 T SYMS (NIL) -8 NIL NIL) (-1087 2774385 2776612 2776841 "SYMPOLY" 2776957 NIL SYMPOLY (NIL T) -8 NIL NIL) (-1086 2773905 2773980 2774102 "SYMFUNC" 2774297 NIL SYMFUNC (NIL T) -7 NIL NIL) (-1085 2769883 2771142 2771964 "SYMBOL" 2773105 T SYMBOL (NIL) -8 NIL NIL) (-1084 2763422 2765111 2766831 "SWITCH" 2768185 T SWITCH (NIL) -8 NIL NIL) (-1083 2756655 2762249 2762551 "SUTS" 2763177 NIL SUTS (NIL T NIL NIL) -8 NIL NIL) (-1082 2748548 2755776 2756056 "SUPXS" 2756432 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL) (-1081 2740080 2748169 2748294 "SUP" 2748457 NIL SUP (NIL T) -8 NIL NIL) (-1080 2739239 2739366 2739583 "SUPFRACF" 2739948 NIL SUPFRACF (NIL T T T T) -7 NIL NIL) (-1079 2738864 2738923 2739034 "SUP2" 2739174 NIL SUP2 (NIL T T) -7 NIL NIL) (-1078 2737282 2737556 2737918 "SUMRF" 2738563 NIL SUMRF (NIL T) -7 NIL NIL) (-1077 2736599 2736665 2736863 "SUMFS" 2737203 NIL SUMFS (NIL T T) -7 NIL NIL) (-1076 2720538 2735780 2736030 "SULS" 2736406 NIL SULS (NIL T NIL NIL) -8 NIL NIL) (-1075 2719860 2720063 2720203 "SUCH" 2720446 NIL SUCH (NIL T T) -8 NIL NIL) (-1074 2713787 2714799 2715757 "SUBSPACE" 2718948 NIL SUBSPACE (NIL NIL T) -8 NIL NIL) (-1073 2713217 2713307 2713471 "SUBRESP" 2713675 NIL SUBRESP (NIL T T) -7 NIL NIL) (-1072 2706586 2707882 2709193 "STTF" 2711953 NIL STTF (NIL T) -7 NIL NIL) (-1071 2700759 2701879 2703026 "STTFNC" 2705486 NIL STTFNC (NIL T) -7 NIL NIL) (-1070 2692110 2693977 2695770 "STTAYLOR" 2699000 NIL STTAYLOR (NIL T) -7 NIL NIL) (-1069 2685354 2691974 2692057 "STRTBL" 2692062 NIL STRTBL (NIL T) -8 NIL NIL) (-1068 2680745 2685309 2685340 "STRING" 2685345 T STRING (NIL) -8 NIL NIL) (-1067 2675633 2680118 2680149 "STRICAT" 2680208 T STRICAT (NIL) -9 NIL 2680270) (-1066 2668349 2673156 2673776 "STREAM" 2675048 NIL STREAM (NIL T) -8 NIL NIL) (-1065 2667859 2667936 2668080 "STREAM3" 2668266 NIL STREAM3 (NIL T T T) -7 NIL NIL) (-1064 2666841 2667024 2667259 "STREAM2" 2667672 NIL STREAM2 (NIL T T) -7 NIL NIL) (-1063 2666529 2666581 2666674 "STREAM1" 2666783 NIL STREAM1 (NIL T) -7 NIL NIL) (-1062 2665545 2665726 2665957 "STINPROD" 2666345 NIL STINPROD (NIL T) -7 NIL NIL) (-1061 2665123 2665307 2665338 "STEP" 2665418 T STEP (NIL) -9 NIL 2665496) (-1060 2658666 2665022 2665099 "STBL" 2665104 NIL STBL (NIL T T NIL) -8 NIL NIL) (-1059 2653841 2657888 2657932 "STAGG" 2658085 NIL STAGG (NIL T) -9 NIL 2658174) (-1058 2651543 2652145 2653017 "STAGG-" 2653022 NIL STAGG- (NIL T T) -8 NIL NIL) (-1057 2649738 2651313 2651405 "STACK" 2651486 NIL STACK (NIL T) -8 NIL NIL) (-1056 2642469 2647885 2648340 "SREGSET" 2649368 NIL SREGSET (NIL T T T T) -8 NIL NIL) (-1055 2634909 2636277 2637789 "SRDCMPK" 2641075 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL) (-1054 2627876 2632349 2632380 "SRAGG" 2633683 T SRAGG (NIL) -9 NIL 2634291) (-1053 2626893 2627148 2627527 "SRAGG-" 2627532 NIL SRAGG- (NIL T) -8 NIL NIL) (-1052 2621342 2625812 2626239 "SQMATRIX" 2626512 NIL SQMATRIX (NIL NIL T) -8 NIL NIL) (-1051 2615094 2618062 2618788 "SPLTREE" 2620688 NIL SPLTREE (NIL T T) -8 NIL NIL) (-1050 2611084 2611750 2612396 "SPLNODE" 2614520 NIL SPLNODE (NIL T T) -8 NIL NIL) (-1049 2610130 2610363 2610394 "SPFCAT" 2610838 T SPFCAT (NIL) -9 NIL NIL) (-1048 2608867 2609077 2609341 "SPECOUT" 2609888 T SPECOUT (NIL) -7 NIL NIL) (-1047 2608628 2608668 2608737 "SPADPRSR" 2608820 T SPADPRSR (NIL) -7 NIL NIL) (-1046 2600650 2602397 2602440 "SPACEC" 2606763 NIL SPACEC (NIL T) -9 NIL 2608579) (-1045 2598822 2600583 2600631 "SPACE3" 2600636 NIL SPACE3 (NIL T) -8 NIL NIL) (-1044 2597574 2597745 2598036 "SORTPAK" 2598627 NIL SORTPAK (NIL T T) -7 NIL NIL) (-1043 2595630 2595933 2596351 "SOLVETRA" 2597238 NIL SOLVETRA (NIL T) -7 NIL NIL) (-1042 2594641 2594863 2595137 "SOLVESER" 2595403 NIL SOLVESER (NIL T) -7 NIL NIL) (-1041 2589861 2590742 2591744 "SOLVERAD" 2593693 NIL SOLVERAD (NIL T) -7 NIL NIL) (-1040 2585676 2586285 2587014 "SOLVEFOR" 2589228 NIL SOLVEFOR (NIL T T) -7 NIL NIL) (-1039 2579975 2585027 2585124 "SNTSCAT" 2585129 NIL SNTSCAT (NIL T T T T) -9 NIL 2585199) (-1038 2574080 2578306 2578696 "SMTS" 2579665 NIL SMTS (NIL T T T) -8 NIL NIL) (-1037 2568491 2573969 2574045 "SMP" 2574050 NIL SMP (NIL T T) -8 NIL NIL) (-1036 2566650 2566951 2567349 "SMITH" 2568188 NIL SMITH (NIL T T T T) -7 NIL NIL) (-1035 2559614 2563810 2563913 "SMATCAT" 2565253 NIL SMATCAT (NIL NIL T T T) -9 NIL 2565802) (-1034 2556555 2557378 2558555 "SMATCAT-" 2558560 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL) (-1033 2554268 2555791 2555835 "SKAGG" 2556096 NIL SKAGG (NIL T) -9 NIL 2556231) (-1032 2550326 2553372 2553650 "SINT" 2554012 T SINT (NIL) -8 NIL NIL) (-1031 2550098 2550136 2550202 "SIMPAN" 2550282 T SIMPAN (NIL) -7 NIL NIL) (-1030 2548936 2549157 2549432 "SIGNRF" 2549857 NIL SIGNRF (NIL T) -7 NIL NIL) (-1029 2547745 2547896 2548186 "SIGNEF" 2548765 NIL SIGNEF (NIL T T) -7 NIL NIL) (-1028 2545435 2545889 2546395 "SHP" 2547286 NIL SHP (NIL T NIL) -7 NIL NIL) (-1027 2539288 2545336 2545412 "SHDP" 2545417 NIL SHDP (NIL NIL NIL T) -8 NIL NIL) (-1026 2538777 2538969 2539000 "SGROUP" 2539152 T SGROUP (NIL) -9 NIL 2539239) (-1025 2538547 2538599 2538703 "SGROUP-" 2538708 NIL SGROUP- (NIL T) -8 NIL NIL) (-1024 2535383 2536080 2536803 "SGCF" 2537846 T SGCF (NIL) -7 NIL NIL) (-1023 2529781 2534833 2534930 "SFRTCAT" 2534935 NIL SFRTCAT (NIL T T T T) -9 NIL 2534973) (-1022 2523241 2524256 2525390 "SFRGCD" 2528764 NIL SFRGCD (NIL T T T T T) -7 NIL NIL) (-1021 2516407 2517478 2518662 "SFQCMPK" 2522174 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL) (-1020 2516029 2516118 2516228 "SFORT" 2516348 NIL SFORT (NIL T T) -8 NIL NIL) (-1019 2515174 2515869 2515990 "SEXOF" 2515995 NIL SEXOF (NIL T T T T T) -8 NIL NIL) (-1018 2514308 2515055 2515123 "SEX" 2515128 T SEX (NIL) -8 NIL NIL) (-1017 2509084 2509773 2509869 "SEXCAT" 2513640 NIL SEXCAT (NIL T T T T T) -9 NIL 2514259) (-1016 2506264 2509018 2509066 "SET" 2509071 NIL SET (NIL T) -8 NIL NIL) (-1015 2504515 2504977 2505282 "SETMN" 2506005 NIL SETMN (NIL NIL NIL) -8 NIL NIL) (-1014 2504122 2504248 2504279 "SETCAT" 2504396 T SETCAT (NIL) -9 NIL 2504480) (-1013 2503902 2503954 2504053 "SETCAT-" 2504058 NIL SETCAT- (NIL T) -8 NIL NIL) (-1012 2500289 2502363 2502407 "SETAGG" 2503277 NIL SETAGG (NIL T) -9 NIL 2503617) (-1011 2499747 2499863 2500100 "SETAGG-" 2500105 NIL SETAGG- (NIL T T) -8 NIL NIL) (-1010 2498950 2499243 2499305 "SEGXCAT" 2499591 NIL SEGXCAT (NIL T T) -9 NIL 2499711) (-1009 2498006 2498616 2498798 "SEG" 2498803 NIL SEG (NIL T) -8 NIL NIL) (-1008 2496912 2497125 2497169 "SEGCAT" 2497751 NIL SEGCAT (NIL T) -9 NIL 2497989) (-1007 2495961 2496291 2496491 "SEGBIND" 2496747 NIL SEGBIND (NIL T) -8 NIL NIL) (-1006 2495582 2495641 2495754 "SEGBIND2" 2495896 NIL SEGBIND2 (NIL T T) -7 NIL NIL) (-1005 2494801 2494927 2495131 "SEG2" 2495426 NIL SEG2 (NIL T T) -7 NIL NIL) (-1004 2494238 2494736 2494783 "SDVAR" 2494788 NIL SDVAR (NIL T) -8 NIL NIL) (-1003 2486490 2494011 2494139 "SDPOL" 2494144 NIL SDPOL (NIL T) -8 NIL NIL) (-1002 2485083 2485349 2485668 "SCPKG" 2486205 NIL SCPKG (NIL T) -7 NIL NIL) (-1001 2484220 2484399 2484599 "SCOPE" 2484905 T SCOPE (NIL) -8 NIL NIL) (-1000 2483441 2483574 2483753 "SCACHE" 2484075 NIL SCACHE (NIL T) -7 NIL NIL) (-999 2482884 2483205 2483288 "SAOS" 2483378 T SAOS (NIL) -8 NIL NIL) (-998 2482452 2482487 2482658 "SAERFFC" 2482843 NIL SAERFFC (NIL T T T) -7 NIL NIL) (-997 2476348 2482351 2482429 "SAE" 2482434 NIL SAE (NIL T T NIL) -8 NIL NIL) (-996 2475944 2475979 2476136 "SAEFACT" 2476307 NIL SAEFACT (NIL T T T) -7 NIL NIL) (-995 2474270 2474584 2474983 "RURPK" 2475610 NIL RURPK (NIL T NIL) -7 NIL NIL) (-994 2472923 2473200 2473507 "RULESET" 2474106 NIL RULESET (NIL T T T) -8 NIL NIL) (-993 2470131 2470634 2471095 "RULE" 2472605 NIL RULE (NIL T T T) -8 NIL NIL) (-992 2469773 2469928 2470009 "RULECOLD" 2470083 NIL RULECOLD (NIL NIL) -8 NIL NIL) (-991 2464665 2465459 2466375 "RSETGCD" 2468972 NIL RSETGCD (NIL T T T T T) -7 NIL NIL) (-990 2453979 2459031 2459126 "RSETCAT" 2463191 NIL RSETCAT (NIL T T T T) -9 NIL 2464288) (-989 2451910 2452449 2453269 "RSETCAT-" 2453274 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL) (-988 2444340 2445715 2447231 "RSDCMPK" 2450509 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL) (-987 2442357 2442798 2442871 "RRCC" 2443947 NIL RRCC (NIL T T) -9 NIL 2444291) (-986 2441711 2441885 2442161 "RRCC-" 2442166 NIL RRCC- (NIL T T T) -8 NIL NIL) (-985 2416077 2425702 2425767 "RPOLCAT" 2436269 NIL RPOLCAT (NIL T T T) -9 NIL 2439427) (-984 2407581 2409919 2413037 "RPOLCAT-" 2413042 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL) (-983 2398647 2405811 2406291 "ROUTINE" 2407121 T ROUTINE (NIL) -8 NIL NIL) (-982 2395352 2398203 2398350 "ROMAN" 2398520 T ROMAN (NIL) -8 NIL NIL) (-981 2393638 2394223 2394480 "ROIRC" 2395158 NIL ROIRC (NIL T T) -8 NIL NIL) (-980 2390042 2392346 2392375 "RNS" 2392671 T RNS (NIL) -9 NIL 2392941) (-979 2388556 2388939 2389470 "RNS-" 2389543 NIL RNS- (NIL T) -8 NIL NIL) (-978 2387981 2388389 2388418 "RNG" 2388423 T RNG (NIL) -9 NIL 2388444) (-977 2387378 2387740 2387781 "RMODULE" 2387841 NIL RMODULE (NIL T) -9 NIL 2387883) (-976 2386230 2386324 2386654 "RMCAT2" 2387279 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL) (-975 2382944 2385413 2385734 "RMATRIX" 2385965 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL) (-974 2375940 2378174 2378287 "RMATCAT" 2381596 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2382578) (-973 2375319 2375466 2375769 "RMATCAT-" 2375774 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL) (-972 2374889 2374964 2375090 "RINTERP" 2375238 NIL RINTERP (NIL NIL T) -7 NIL NIL) (-971 2373939 2374503 2374532 "RING" 2374642 T RING (NIL) -9 NIL 2374736) (-970 2373734 2373778 2373872 "RING-" 2373877 NIL RING- (NIL T) -8 NIL NIL) (-969 2372582 2372819 2373075 "RIDIST" 2373498 T RIDIST (NIL) -7 NIL NIL) (-968 2363904 2372056 2372259 "RGCHAIN" 2372431 NIL RGCHAIN (NIL T NIL) -8 NIL NIL) (-967 2360909 2361523 2362191 "RF" 2363268 NIL RF (NIL T) -7 NIL NIL) (-966 2360558 2360621 2360722 "RFFACTOR" 2360840 NIL RFFACTOR (NIL T) -7 NIL NIL) (-965 2360286 2360321 2360416 "RFFACT" 2360517 NIL RFFACT (NIL T) -7 NIL NIL) (-964 2358416 2358780 2359160 "RFDIST" 2359926 T RFDIST (NIL) -7 NIL NIL) (-963 2357874 2357966 2358126 "RETSOL" 2358318 NIL RETSOL (NIL T T) -7 NIL NIL) (-962 2357466 2357546 2357588 "RETRACT" 2357778 NIL RETRACT (NIL T) -9 NIL NIL) (-961 2357318 2357343 2357427 "RETRACT-" 2357432 NIL RETRACT- (NIL T T) -8 NIL NIL) (-960 2350176 2356975 2357100 "RESULT" 2357213 T RESULT (NIL) -8 NIL NIL) (-959 2348761 2349450 2349647 "RESRING" 2350079 NIL RESRING (NIL T T T T NIL) -8 NIL NIL) (-958 2348401 2348450 2348546 "RESLATC" 2348698 NIL RESLATC (NIL T) -7 NIL NIL) (-957 2348110 2348144 2348249 "REPSQ" 2348360 NIL REPSQ (NIL T) -7 NIL NIL) (-956 2345541 2346121 2346721 "REP" 2347530 T REP (NIL) -7 NIL NIL) (-955 2345242 2345276 2345385 "REPDB" 2345500 NIL REPDB (NIL T) -7 NIL NIL) (-954 2339187 2340566 2341786 "REP2" 2344054 NIL REP2 (NIL T) -7 NIL NIL) (-953 2335593 2336274 2337079 "REP1" 2338414 NIL REP1 (NIL T) -7 NIL NIL) (-952 2328339 2333754 2334206 "REGSET" 2335224 NIL REGSET (NIL T T T T) -8 NIL NIL) (-951 2327160 2327495 2327743 "REF" 2328124 NIL REF (NIL T) -8 NIL NIL) (-950 2326541 2326644 2326809 "REDORDER" 2327044 NIL REDORDER (NIL T T) -7 NIL NIL) (-949 2322510 2325775 2325996 "RECLOS" 2326372 NIL RECLOS (NIL T) -8 NIL NIL) (-948 2321567 2321748 2321961 "REALSOLV" 2322317 T REALSOLV (NIL) -7 NIL NIL) (-947 2321414 2321455 2321484 "REAL" 2321489 T REAL (NIL) -9 NIL 2321524) (-946 2317905 2318707 2319589 "REAL0Q" 2320579 NIL REAL0Q (NIL T) -7 NIL NIL) (-945 2313516 2314504 2315563 "REAL0" 2316886 NIL REAL0 (NIL T) -7 NIL NIL) (-944 2312924 2312996 2313201 "RDIV" 2313438 NIL RDIV (NIL T T T T T) -7 NIL NIL) (-943 2311997 2312171 2312382 "RDIST" 2312746 NIL RDIST (NIL T) -7 NIL NIL) (-942 2310601 2310888 2311257 "RDETRS" 2311705 NIL RDETRS (NIL T T) -7 NIL NIL) (-941 2308422 2308876 2309411 "RDETR" 2310143 NIL RDETR (NIL T T) -7 NIL NIL) (-940 2307038 2307316 2307717 "RDEEFS" 2308138 NIL RDEEFS (NIL T T) -7 NIL NIL) (-939 2305538 2305844 2306273 "RDEEF" 2306726 NIL RDEEF (NIL T T) -7 NIL NIL) (-938 2299822 2302754 2302783 "RCFIELD" 2304060 T RCFIELD (NIL) -9 NIL 2304790) (-937 2297891 2298395 2299088 "RCFIELD-" 2299161 NIL RCFIELD- (NIL T) -8 NIL NIL) (-936 2294222 2296007 2296049 "RCAGG" 2297120 NIL RCAGG (NIL T) -9 NIL 2297585) (-935 2293853 2293947 2294107 "RCAGG-" 2294112 NIL RCAGG- (NIL T T) -8 NIL NIL) (-934 2293198 2293309 2293471 "RATRET" 2293737 NIL RATRET (NIL T) -7 NIL NIL) (-933 2292755 2292822 2292941 "RATFACT" 2293126 NIL RATFACT (NIL T) -7 NIL NIL) (-932 2292070 2292190 2292340 "RANDSRC" 2292625 T RANDSRC (NIL) -7 NIL NIL) (-931 2291807 2291851 2291922 "RADUTIL" 2292019 T RADUTIL (NIL) -7 NIL NIL) (-930 2284814 2290550 2290867 "RADIX" 2291522 NIL RADIX (NIL NIL) -8 NIL NIL) (-929 2276384 2284658 2284786 "RADFF" 2284791 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL) (-928 2276035 2276110 2276139 "RADCAT" 2276296 T RADCAT (NIL) -9 NIL NIL) (-927 2275820 2275868 2275965 "RADCAT-" 2275970 NIL RADCAT- (NIL T) -8 NIL NIL) (-926 2273971 2275595 2275684 "QUEUE" 2275764 NIL QUEUE (NIL T) -8 NIL NIL) (-925 2270468 2273908 2273953 "QUAT" 2273958 NIL QUAT (NIL T) -8 NIL NIL) (-924 2270106 2270149 2270276 "QUATCT2" 2270419 NIL QUATCT2 (NIL T T T T) -7 NIL NIL) (-923 2263899 2267279 2267320 "QUATCAT" 2268099 NIL QUATCAT (NIL T) -9 NIL 2268864) (-922 2260043 2261080 2262467 "QUATCAT-" 2262561 NIL QUATCAT- (NIL T T) -8 NIL NIL) (-921 2257563 2259127 2259169 "QUAGG" 2259544 NIL QUAGG (NIL T) -9 NIL 2259719) (-920 2256488 2256961 2257133 "QFORM" 2257435 NIL QFORM (NIL NIL T) -8 NIL NIL) (-919 2247784 2253042 2253083 "QFCAT" 2253741 NIL QFCAT (NIL T) -9 NIL 2254734) (-918 2243356 2244557 2246148 "QFCAT-" 2246242 NIL QFCAT- (NIL T T) -8 NIL NIL) (-917 2242994 2243037 2243164 "QFCAT2" 2243307 NIL QFCAT2 (NIL T T T T) -7 NIL NIL) (-916 2242454 2242564 2242694 "QEQUAT" 2242884 T QEQUAT (NIL) -8 NIL NIL) (-915 2235640 2236711 2237893 "QCMPACK" 2241387 NIL QCMPACK (NIL T T T T T) -7 NIL NIL) (-914 2233216 2233637 2234065 "QALGSET" 2235295 NIL QALGSET (NIL T T T T) -8 NIL NIL) (-913 2232461 2232635 2232867 "QALGSET2" 2233036 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL) (-912 2231152 2231375 2231692 "PWFFINTB" 2232234 NIL PWFFINTB (NIL T T T T) -7 NIL NIL) (-911 2229340 2229508 2229861 "PUSHVAR" 2230966 NIL PUSHVAR (NIL T T T T) -7 NIL NIL) (-910 2225257 2226311 2226353 "PTRANFN" 2228237 NIL PTRANFN (NIL T) -9 NIL NIL) (-909 2223669 2223960 2224281 "PTPACK" 2224968 NIL PTPACK (NIL T) -7 NIL NIL) (-908 2223305 2223362 2223469 "PTFUNC2" 2223606 NIL PTFUNC2 (NIL T T) -7 NIL NIL) (-907 2217781 2222122 2222163 "PTCAT" 2222531 NIL PTCAT (NIL T) -9 NIL 2222693) (-906 2217439 2217474 2217598 "PSQFR" 2217740 NIL PSQFR (NIL T T T T) -7 NIL NIL) (-905 2216034 2216332 2216666 "PSEUDLIN" 2217137 NIL PSEUDLIN (NIL T) -7 NIL NIL) (-904 2202842 2205206 2207529 "PSETPK" 2213794 NIL PSETPK (NIL T T T T) -7 NIL NIL) (-903 2195928 2198642 2198737 "PSETCAT" 2201718 NIL PSETCAT (NIL T T T T) -9 NIL 2202532) (-902 2193766 2194400 2195219 "PSETCAT-" 2195224 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL) (-901 2193114 2193279 2193308 "PSCURVE" 2193576 T PSCURVE (NIL) -9 NIL 2193743) (-900 2189565 2191091 2191156 "PSCAT" 2191992 NIL PSCAT (NIL T T T) -9 NIL 2192232) (-899 2188629 2188845 2189244 "PSCAT-" 2189249 NIL PSCAT- (NIL T T T T) -8 NIL NIL) (-898 2187282 2187914 2188128 "PRTITION" 2188435 T PRTITION (NIL) -8 NIL NIL) (-897 2176380 2178586 2180774 "PRS" 2185144 NIL PRS (NIL T T) -7 NIL NIL) (-896 2174238 2175730 2175771 "PRQAGG" 2175954 NIL PRQAGG (NIL T) -9 NIL 2176056) (-895 2173808 2173910 2173939 "PROPLOG" 2174124 T PROPLOG (NIL) -9 NIL NIL) (-894 2170931 2171496 2172023 "PROPFRML" 2173313 NIL PROPFRML (NIL T) -8 NIL NIL) (-893 2170391 2170501 2170631 "PROPERTY" 2170821 T PROPERTY (NIL) -8 NIL NIL) (-892 2164165 2168557 2169377 "PRODUCT" 2169617 NIL PRODUCT (NIL T T) -8 NIL NIL) (-891 2161441 2163625 2163858 "PR" 2163976 NIL PR (NIL T T) -8 NIL NIL) (-890 2161237 2161269 2161328 "PRINT" 2161402 T PRINT (NIL) -7 NIL NIL) (-889 2160577 2160694 2160846 "PRIMES" 2161117 NIL PRIMES (NIL T) -7 NIL NIL) (-888 2158642 2159043 2159509 "PRIMELT" 2160156 NIL PRIMELT (NIL T) -7 NIL NIL) (-887 2158370 2158419 2158448 "PRIMCAT" 2158572 T PRIMCAT (NIL) -9 NIL NIL) (-886 2154531 2158308 2158353 "PRIMARR" 2158358 NIL PRIMARR (NIL T) -8 NIL NIL) (-885 2153538 2153716 2153944 "PRIMARR2" 2154349 NIL PRIMARR2 (NIL T T) -7 NIL NIL) (-884 2153181 2153237 2153348 "PREASSOC" 2153476 NIL PREASSOC (NIL T T) -7 NIL NIL) (-883 2152655 2152788 2152817 "PPCURVE" 2153022 T PPCURVE (NIL) -9 NIL 2153158) (-882 2150014 2150413 2151005 "POLYROOT" 2152236 NIL POLYROOT (NIL T T T T T) -7 NIL NIL) (-881 2143920 2149620 2149779 "POLY" 2149887 NIL POLY (NIL T) -8 NIL NIL) (-880 2143305 2143363 2143596 "POLYLIFT" 2143856 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL) (-879 2139590 2140039 2140667 "POLYCATQ" 2142850 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL) (-878 2126630 2132027 2132092 "POLYCAT" 2135577 NIL POLYCAT (NIL T T T) -9 NIL 2137504) (-877 2120081 2121942 2124325 "POLYCAT-" 2124330 NIL POLYCAT- (NIL T T T T) -8 NIL NIL) (-876 2119670 2119738 2119857 "POLY2UP" 2120007 NIL POLY2UP (NIL NIL T) -7 NIL NIL) (-875 2119306 2119363 2119470 "POLY2" 2119607 NIL POLY2 (NIL T T) -7 NIL NIL) (-874 2117991 2118230 2118506 "POLUTIL" 2119080 NIL POLUTIL (NIL T T) -7 NIL NIL) (-873 2116353 2116630 2116960 "POLTOPOL" 2117713 NIL POLTOPOL (NIL NIL T) -7 NIL NIL) (-872 2111876 2116290 2116335 "POINT" 2116340 NIL POINT (NIL T) -8 NIL NIL) (-871 2110063 2110420 2110795 "PNTHEORY" 2111521 T PNTHEORY (NIL) -7 NIL NIL) (-870 2108491 2108788 2109197 "PMTOOLS" 2109761 NIL PMTOOLS (NIL T T T) -7 NIL NIL) (-869 2108084 2108162 2108279 "PMSYM" 2108407 NIL PMSYM (NIL T) -7 NIL NIL) (-868 2107594 2107663 2107837 "PMQFCAT" 2108009 NIL PMQFCAT (NIL T T T) -7 NIL NIL) (-867 2106949 2107059 2107215 "PMPRED" 2107471 NIL PMPRED (NIL T) -7 NIL NIL) (-866 2106345 2106431 2106592 "PMPREDFS" 2106850 NIL PMPREDFS (NIL T T T) -7 NIL NIL) (-865 2104991 2105199 2105583 "PMPLCAT" 2106107 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL) (-864 2104523 2104602 2104754 "PMLSAGG" 2104906 NIL PMLSAGG (NIL T T T) -7 NIL NIL) (-863 2104000 2104076 2104256 "PMKERNEL" 2104441 NIL PMKERNEL (NIL T T) -7 NIL NIL) (-862 2103617 2103692 2103805 "PMINS" 2103919 NIL PMINS (NIL T) -7 NIL NIL) (-861 2103047 2103116 2103331 "PMFS" 2103542 NIL PMFS (NIL T T T) -7 NIL NIL) (-860 2102278 2102396 2102600 "PMDOWN" 2102924 NIL PMDOWN (NIL T T T) -7 NIL NIL) (-859 2101441 2101600 2101782 "PMASS" 2102116 T PMASS (NIL) -7 NIL NIL) (-858 2100715 2100826 2100989 "PMASSFS" 2101327 NIL PMASSFS (NIL T T) -7 NIL NIL) (-857 2100370 2100438 2100532 "PLOTTOOL" 2100641 T PLOTTOOL (NIL) -7 NIL NIL) (-856 2094992 2096181 2097329 "PLOT" 2099242 T PLOT (NIL) -8 NIL NIL) (-855 2090806 2091840 2092761 "PLOT3D" 2094091 T PLOT3D (NIL) -8 NIL NIL) (-854 2089718 2089895 2090130 "PLOT1" 2090610 NIL PLOT1 (NIL T) -7 NIL NIL) (-853 2065113 2069784 2074635 "PLEQN" 2084984 NIL PLEQN (NIL T T T T) -7 NIL NIL) (-852 2064431 2064553 2064733 "PINTERP" 2064978 NIL PINTERP (NIL NIL T) -7 NIL NIL) (-851 2064124 2064171 2064274 "PINTERPA" 2064378 NIL PINTERPA (NIL T T) -7 NIL NIL) (-850 2063351 2063918 2064011 "PI" 2064051 T PI (NIL) -8 NIL NIL) (-849 2061742 2062727 2062756 "PID" 2062938 T PID (NIL) -9 NIL 2063072) (-848 2061467 2061504 2061592 "PICOERCE" 2061699 NIL PICOERCE (NIL T) -7 NIL NIL) (-847 2060788 2060926 2061102 "PGROEB" 2061323 NIL PGROEB (NIL T) -7 NIL NIL) (-846 2056375 2057189 2058094 "PGE" 2059903 T PGE (NIL) -7 NIL NIL) (-845 2054499 2054745 2055111 "PGCD" 2056092 NIL PGCD (NIL T T T T) -7 NIL NIL) (-844 2053837 2053940 2054101 "PFRPAC" 2054383 NIL PFRPAC (NIL T) -7 NIL NIL) (-843 2050452 2052385 2052738 "PFR" 2053516 NIL PFR (NIL T) -8 NIL NIL) (-842 2048841 2049085 2049410 "PFOTOOLS" 2050199 NIL PFOTOOLS (NIL T T) -7 NIL NIL) (-841 2047374 2047613 2047964 "PFOQ" 2048598 NIL PFOQ (NIL T T T) -7 NIL NIL) (-840 2045851 2046063 2046425 "PFO" 2047158 NIL PFO (NIL T T T T T) -7 NIL NIL) (-839 2042374 2045740 2045809 "PF" 2045814 NIL PF (NIL NIL) -8 NIL NIL) (-838 2039802 2041083 2041112 "PFECAT" 2041697 T PFECAT (NIL) -9 NIL 2042081) (-837 2039247 2039401 2039615 "PFECAT-" 2039620 NIL PFECAT- (NIL T) -8 NIL NIL) (-836 2037851 2038102 2038403 "PFBRU" 2038996 NIL PFBRU (NIL T T) -7 NIL NIL) (-835 2035718 2036069 2036501 "PFBR" 2037502 NIL PFBR (NIL T T T T) -7 NIL NIL) (-834 2031570 2033094 2033770 "PERM" 2035075 NIL PERM (NIL T) -8 NIL NIL) (-833 2026836 2027777 2028647 "PERMGRP" 2030733 NIL PERMGRP (NIL T) -8 NIL NIL) (-832 2024906 2025899 2025941 "PERMCAT" 2026387 NIL PERMCAT (NIL T) -9 NIL 2026692) (-831 2024561 2024602 2024725 "PERMAN" 2024859 NIL PERMAN (NIL NIL T) -7 NIL NIL) (-830 2022001 2024130 2024261 "PENDTREE" 2024463 NIL PENDTREE (NIL T) -8 NIL NIL) (-829 2020073 2020851 2020893 "PDRING" 2021550 NIL PDRING (NIL T) -9 NIL 2021835) (-828 2019176 2019394 2019756 "PDRING-" 2019761 NIL PDRING- (NIL T T) -8 NIL NIL) (-827 2016318 2017068 2017759 "PDEPROB" 2018505 T PDEPROB (NIL) -8 NIL NIL) (-826 2013889 2014385 2014934 "PDEPACK" 2015789 T PDEPACK (NIL) -7 NIL NIL) (-825 2012801 2012991 2013242 "PDECOMP" 2013688 NIL PDECOMP (NIL T T) -7 NIL NIL) (-824 2010412 2011227 2011256 "PDECAT" 2012041 T PDECAT (NIL) -9 NIL 2012752) (-823 2010165 2010198 2010287 "PCOMP" 2010373 NIL PCOMP (NIL T T) -7 NIL NIL) (-822 2008372 2008968 2009264 "PBWLB" 2009895 NIL PBWLB (NIL T) -8 NIL NIL) (-821 2000881 2002449 2003785 "PATTERN" 2007057 NIL PATTERN (NIL T) -8 NIL NIL) (-820 2000513 2000570 2000679 "PATTERN2" 2000818 NIL PATTERN2 (NIL T T) -7 NIL NIL) (-819 1998270 1998658 1999115 "PATTERN1" 2000102 NIL PATTERN1 (NIL T T) -7 NIL NIL) (-818 1995665 1996219 1996700 "PATRES" 1997835 NIL PATRES (NIL T T) -8 NIL NIL) (-817 1995229 1995296 1995428 "PATRES2" 1995592 NIL PATRES2 (NIL T T T) -7 NIL NIL) (-816 1993126 1993526 1993931 "PATMATCH" 1994898 NIL PATMATCH (NIL T T T) -7 NIL NIL) (-815 1992662 1992845 1992887 "PATMAB" 1992994 NIL PATMAB (NIL T) -9 NIL 1993077) (-814 1991207 1991516 1991774 "PATLRES" 1992467 NIL PATLRES (NIL T T T) -8 NIL NIL) (-813 1990752 1990875 1990917 "PATAB" 1990922 NIL PATAB (NIL T) -9 NIL 1991094) (-812 1988233 1988765 1989338 "PARTPERM" 1990199 T PARTPERM (NIL) -7 NIL NIL) (-811 1987854 1987917 1988019 "PARSURF" 1988164 NIL PARSURF (NIL T) -8 NIL NIL) (-810 1987486 1987543 1987652 "PARSU2" 1987791 NIL PARSU2 (NIL T T) -7 NIL NIL) (-809 1987250 1987290 1987357 "PARSER" 1987439 T PARSER (NIL) -7 NIL NIL) (-808 1986871 1986934 1987036 "PARSCURV" 1987181 NIL PARSCURV (NIL T) -8 NIL NIL) (-807 1986503 1986560 1986669 "PARSC2" 1986808 NIL PARSC2 (NIL T T) -7 NIL NIL) (-806 1986142 1986200 1986297 "PARPCURV" 1986439 NIL PARPCURV (NIL T) -8 NIL NIL) (-805 1985774 1985831 1985940 "PARPC2" 1986079 NIL PARPC2 (NIL T T) -7 NIL NIL) (-804 1985294 1985380 1985499 "PAN2EXPR" 1985675 T PAN2EXPR (NIL) -7 NIL NIL) (-803 1984100 1984415 1984643 "PALETTE" 1985086 T PALETTE (NIL) -8 NIL NIL) (-802 1982568 1983105 1983465 "PAIR" 1983786 NIL PAIR (NIL T T) -8 NIL NIL) (-801 1976418 1981827 1982021 "PADICRC" 1982423 NIL PADICRC (NIL NIL T) -8 NIL NIL) (-800 1969626 1975764 1975948 "PADICRAT" 1976266 NIL PADICRAT (NIL NIL) -8 NIL NIL) (-799 1967930 1969563 1969608 "PADIC" 1969613 NIL PADIC (NIL NIL) -8 NIL NIL) (-798 1965134 1966708 1966749 "PADICCT" 1967330 NIL PADICCT (NIL NIL) -9 NIL 1967612) (-797 1964091 1964291 1964559 "PADEPAC" 1964921 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL) (-796 1963303 1963436 1963642 "PADE" 1963953 NIL PADE (NIL T T T) -7 NIL NIL) (-795 1961314 1962146 1962461 "OWP" 1963071 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL) (-794 1960423 1960919 1961091 "OVAR" 1961182 NIL OVAR (NIL NIL) -8 NIL NIL) (-793 1959687 1959808 1959969 "OUT" 1960282 T OUT (NIL) -7 NIL NIL) (-792 1948733 1950912 1953082 "OUTFORM" 1957537 T OUTFORM (NIL) -8 NIL NIL) (-791 1948141 1948462 1948551 "OSI" 1948664 T OSI (NIL) -8 NIL NIL) (-790 1946886 1947113 1947398 "ORTHPOL" 1947888 NIL ORTHPOL (NIL T) -7 NIL NIL) (-789 1944257 1946547 1946685 "OREUP" 1946829 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL) (-788 1941653 1943950 1944076 "ORESUP" 1944199 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL) (-787 1939188 1939688 1940248 "OREPCTO" 1941142 NIL OREPCTO (NIL T T) -7 NIL NIL) (-786 1933097 1935303 1935344 "OREPCAT" 1937665 NIL OREPCAT (NIL T) -9 NIL 1938768) (-785 1930245 1931027 1932084 "OREPCAT-" 1932089 NIL OREPCAT- (NIL T T) -8 NIL NIL) (-784 1929422 1929694 1929723 "ORDSET" 1930032 T ORDSET (NIL) -9 NIL 1930196) (-783 1928941 1929063 1929256 "ORDSET-" 1929261 NIL ORDSET- (NIL T) -8 NIL NIL) (-782 1927554 1928355 1928384 "ORDRING" 1928586 T ORDRING (NIL) -9 NIL 1928710) (-781 1927199 1927293 1927437 "ORDRING-" 1927442 NIL ORDRING- (NIL T) -8 NIL NIL) (-780 1926574 1927055 1927084 "ORDMON" 1927089 T ORDMON (NIL) -9 NIL 1927110) (-779 1925736 1925883 1926078 "ORDFUNS" 1926423 NIL ORDFUNS (NIL NIL T) -7 NIL NIL) (-778 1925247 1925606 1925635 "ORDFIN" 1925640 T ORDFIN (NIL) -9 NIL 1925661) (-777 1921759 1923833 1924242 "ORDCOMP" 1924871 NIL ORDCOMP (NIL T) -8 NIL NIL) (-776 1921025 1921152 1921338 "ORDCOMP2" 1921619 NIL ORDCOMP2 (NIL T T) -7 NIL NIL) (-775 1917533 1918415 1919252 "OPTPROB" 1920208 T OPTPROB (NIL) -8 NIL NIL) (-774 1914375 1915004 1915698 "OPTPACK" 1916859 T OPTPACK (NIL) -7 NIL NIL) (-773 1912100 1912836 1912865 "OPTCAT" 1913680 T OPTCAT (NIL) -9 NIL 1914326) (-772 1911868 1911907 1911973 "OPQUERY" 1912054 T OPQUERY (NIL) -7 NIL NIL) (-771 1909004 1910195 1910695 "OP" 1911400 NIL OP (NIL T) -8 NIL NIL) (-770 1905769 1907801 1908170 "ONECOMP" 1908668 NIL ONECOMP (NIL T) -8 NIL NIL) (-769 1905074 1905189 1905363 "ONECOMP2" 1905641 NIL ONECOMP2 (NIL T T) -7 NIL NIL) (-768 1904493 1904599 1904729 "OMSERVER" 1904964 T OMSERVER (NIL) -7 NIL NIL) (-767 1901381 1903933 1903974 "OMSAGG" 1904035 NIL OMSAGG (NIL T) -9 NIL 1904099) (-766 1900004 1900267 1900549 "OMPKG" 1901119 T OMPKG (NIL) -7 NIL NIL) (-765 1899433 1899536 1899565 "OM" 1899864 T OM (NIL) -9 NIL NIL) (-764 1897972 1898985 1899153 "OMLO" 1899314 NIL OMLO (NIL T T) -8 NIL NIL) (-763 1896902 1897049 1897275 "OMEXPR" 1897798 NIL OMEXPR (NIL T) -7 NIL NIL) (-762 1896220 1896448 1896584 "OMERR" 1896786 T OMERR (NIL) -8 NIL NIL) (-761 1895398 1895641 1895801 "OMERRK" 1896080 T OMERRK (NIL) -8 NIL NIL) (-760 1894876 1895075 1895183 "OMENC" 1895310 T OMENC (NIL) -8 NIL NIL) (-759 1888771 1889956 1891127 "OMDEV" 1893725 T OMDEV (NIL) -8 NIL NIL) (-758 1887840 1888011 1888205 "OMCONN" 1888597 T OMCONN (NIL) -8 NIL NIL) (-757 1886455 1887441 1887470 "OINTDOM" 1887475 T OINTDOM (NIL) -9 NIL 1887496) (-756 1882217 1883447 1884162 "OFMONOID" 1885772 NIL OFMONOID (NIL T) -8 NIL NIL) (-755 1881655 1882154 1882199 "ODVAR" 1882204 NIL ODVAR (NIL T) -8 NIL NIL) (-754 1878780 1881152 1881337 "ODR" 1881530 NIL ODR (NIL T T NIL) -8 NIL NIL) (-753 1871086 1878559 1878683 "ODPOL" 1878688 NIL ODPOL (NIL T) -8 NIL NIL) (-752 1864909 1870958 1871063 "ODP" 1871068 NIL ODP (NIL NIL T NIL) -8 NIL NIL) (-751 1863675 1863890 1864165 "ODETOOLS" 1864683 NIL ODETOOLS (NIL T T) -7 NIL NIL) (-750 1860644 1861300 1862016 "ODESYS" 1863008 NIL ODESYS (NIL T T) -7 NIL NIL) (-749 1855548 1856456 1857479 "ODERTRIC" 1859719 NIL ODERTRIC (NIL T T) -7 NIL NIL) (-748 1854974 1855056 1855250 "ODERED" 1855460 NIL ODERED (NIL T T T T T) -7 NIL NIL) (-747 1851876 1852424 1853099 "ODERAT" 1854397 NIL ODERAT (NIL T T) -7 NIL NIL) (-746 1848844 1849308 1849904 "ODEPRRIC" 1851405 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL) (-745 1846715 1847282 1847791 "ODEPROB" 1848355 T ODEPROB (NIL) -8 NIL NIL) (-744 1843247 1843730 1844376 "ODEPRIM" 1846194 NIL ODEPRIM (NIL T T T T) -7 NIL NIL) (-743 1842500 1842602 1842860 "ODEPAL" 1843139 NIL ODEPAL (NIL T T T T) -7 NIL NIL) (-742 1838702 1839483 1840337 "ODEPACK" 1841666 T ODEPACK (NIL) -7 NIL NIL) (-741 1837739 1837846 1838074 "ODEINT" 1838591 NIL ODEINT (NIL T T) -7 NIL NIL) (-740 1831840 1833265 1834712 "ODEIFTBL" 1836312 T ODEIFTBL (NIL) -8 NIL NIL) (-739 1827184 1827970 1828928 "ODEEF" 1830999 NIL ODEEF (NIL T T) -7 NIL NIL) (-738 1826521 1826610 1826839 "ODECONST" 1827089 NIL ODECONST (NIL T T T) -7 NIL NIL) (-737 1824678 1825311 1825340 "ODECAT" 1825943 T ODECAT (NIL) -9 NIL 1826472) (-736 1821550 1824390 1824509 "OCT" 1824591 NIL OCT (NIL T) -8 NIL NIL) (-735 1821188 1821231 1821358 "OCTCT2" 1821501 NIL OCTCT2 (NIL T T T T) -7 NIL NIL) (-734 1816021 1818459 1818500 "OC" 1819596 NIL OC (NIL T) -9 NIL 1820453) (-733 1813248 1813996 1814986 "OC-" 1815080 NIL OC- (NIL T T) -8 NIL NIL) (-732 1812626 1813068 1813097 "OCAMON" 1813102 T OCAMON (NIL) -9 NIL 1813123) (-731 1812079 1812486 1812515 "OASGP" 1812520 T OASGP (NIL) -9 NIL 1812540) (-730 1811366 1811829 1811858 "OAMONS" 1811898 T OAMONS (NIL) -9 NIL 1811941) (-729 1810806 1811213 1811242 "OAMON" 1811247 T OAMON (NIL) -9 NIL 1811267) (-728 1810110 1810602 1810631 "OAGROUP" 1810636 T OAGROUP (NIL) -9 NIL 1810656) (-727 1809800 1809850 1809938 "NUMTUBE" 1810054 NIL NUMTUBE (NIL T) -7 NIL NIL) (-726 1803373 1804891 1806427 "NUMQUAD" 1808284 T NUMQUAD (NIL) -7 NIL NIL) (-725 1799129 1800117 1801142 "NUMODE" 1802368 T NUMODE (NIL) -7 NIL NIL) (-724 1796532 1797378 1797407 "NUMINT" 1798324 T NUMINT (NIL) -9 NIL 1799080) (-723 1795480 1795677 1795895 "NUMFMT" 1796334 T NUMFMT (NIL) -7 NIL NIL) (-722 1781862 1784796 1787326 "NUMERIC" 1792989 NIL NUMERIC (NIL T) -7 NIL NIL) (-721 1776262 1781314 1781409 "NTSCAT" 1781414 NIL NTSCAT (NIL T T T T) -9 NIL 1781452) (-720 1775456 1775621 1775814 "NTPOLFN" 1776101 NIL NTPOLFN (NIL T) -7 NIL NIL) (-719 1763312 1772298 1773108 "NSUP" 1774678 NIL NSUP (NIL T) -8 NIL NIL) (-718 1762948 1763005 1763112 "NSUP2" 1763249 NIL NSUP2 (NIL T T) -7 NIL NIL) (-717 1752910 1762727 1762857 "NSMP" 1762862 NIL NSMP (NIL T T) -8 NIL NIL) (-716 1751342 1751643 1752000 "NREP" 1752598 NIL NREP (NIL T) -7 NIL NIL) (-715 1749933 1750185 1750543 "NPCOEF" 1751085 NIL NPCOEF (NIL T T T T T) -7 NIL NIL) (-714 1748999 1749114 1749330 "NORMRETR" 1749814 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL) (-713 1747052 1747342 1747749 "NORMPK" 1748707 NIL NORMPK (NIL T T T T T) -7 NIL NIL) (-712 1746737 1746765 1746889 "NORMMA" 1747018 NIL NORMMA (NIL T T T T) -7 NIL NIL) (-711 1746564 1746694 1746723 "NONE" 1746728 T NONE (NIL) -8 NIL NIL) (-710 1746353 1746382 1746451 "NONE1" 1746528 NIL NONE1 (NIL T) -7 NIL NIL) (-709 1745838 1745900 1746085 "NODE1" 1746285 NIL NODE1 (NIL T T) -7 NIL NIL) (-708 1744131 1745001 1745256 "NNI" 1745603 T NNI (NIL) -8 NIL NIL) (-707 1742551 1742864 1743228 "NLINSOL" 1743799 NIL NLINSOL (NIL T) -7 NIL NIL) (-706 1738719 1739686 1740608 "NIPROB" 1741649 T NIPROB (NIL) -8 NIL NIL) (-705 1737476 1737710 1738012 "NFINTBAS" 1738481 NIL NFINTBAS (NIL T T) -7 NIL NIL) (-704 1736184 1736415 1736696 "NCODIV" 1737244 NIL NCODIV (NIL T T) -7 NIL NIL) (-703 1735946 1735983 1736058 "NCNTFRAC" 1736141 NIL NCNTFRAC (NIL T) -7 NIL NIL) (-702 1734126 1734490 1734910 "NCEP" 1735571 NIL NCEP (NIL T) -7 NIL NIL) (-701 1733037 1733776 1733805 "NASRING" 1733915 T NASRING (NIL) -9 NIL 1733989) (-700 1732832 1732876 1732970 "NASRING-" 1732975 NIL NASRING- (NIL T) -8 NIL NIL) (-699 1731985 1732484 1732513 "NARNG" 1732630 T NARNG (NIL) -9 NIL 1732721) (-698 1731677 1731744 1731878 "NARNG-" 1731883 NIL NARNG- (NIL T) -8 NIL NIL) (-697 1730556 1730763 1730998 "NAGSP" 1731462 T NAGSP (NIL) -7 NIL NIL) (-696 1721980 1723626 1725261 "NAGS" 1728941 T NAGS (NIL) -7 NIL NIL) (-695 1720544 1720848 1721175 "NAGF07" 1721673 T NAGF07 (NIL) -7 NIL NIL) (-694 1715126 1716406 1717702 "NAGF04" 1719268 T NAGF04 (NIL) -7 NIL NIL) (-693 1708158 1709756 1711373 "NAGF02" 1713529 T NAGF02 (NIL) -7 NIL NIL) (-692 1703422 1704512 1705619 "NAGF01" 1707071 T NAGF01 (NIL) -7 NIL NIL) (-691 1697082 1698640 1700217 "NAGE04" 1701865 T NAGE04 (NIL) -7 NIL NIL) (-690 1688323 1690426 1692538 "NAGE02" 1694990 T NAGE02 (NIL) -7 NIL NIL) (-689 1684316 1685253 1686207 "NAGE01" 1687389 T NAGE01 (NIL) -7 NIL NIL) (-688 1682123 1682654 1683209 "NAGD03" 1683781 T NAGD03 (NIL) -7 NIL NIL) (-687 1673909 1675828 1677773 "NAGD02" 1680198 T NAGD02 (NIL) -7 NIL NIL) (-686 1667768 1669181 1670609 "NAGD01" 1672501 T NAGD01 (NIL) -7 NIL NIL) (-685 1664025 1664835 1665660 "NAGC06" 1666963 T NAGC06 (NIL) -7 NIL NIL) (-684 1662502 1662831 1663184 "NAGC05" 1663692 T NAGC05 (NIL) -7 NIL NIL) (-683 1661886 1662003 1662145 "NAGC02" 1662380 T NAGC02 (NIL) -7 NIL NIL) (-682 1660947 1661504 1661545 "NAALG" 1661624 NIL NAALG (NIL T) -9 NIL 1661685) (-681 1660782 1660811 1660901 "NAALG-" 1660906 NIL NAALG- (NIL T T) -8 NIL NIL) (-680 1654732 1655840 1657027 "MULTSQFR" 1659678 NIL MULTSQFR (NIL T T T T) -7 NIL NIL) (-679 1654051 1654126 1654310 "MULTFACT" 1654644 NIL MULTFACT (NIL T T T T) -7 NIL NIL) (-678 1647244 1651155 1651208 "MTSCAT" 1652268 NIL MTSCAT (NIL T T) -9 NIL 1652782) (-677 1646956 1647010 1647102 "MTHING" 1647184 NIL MTHING (NIL T) -7 NIL NIL) (-676 1646748 1646781 1646841 "MSYSCMD" 1646916 T MSYSCMD (NIL) -7 NIL NIL) (-675 1642860 1645503 1645823 "MSET" 1646461 NIL MSET (NIL T) -8 NIL NIL) (-674 1639955 1642421 1642463 "MSETAGG" 1642468 NIL MSETAGG (NIL T) -9 NIL 1642502) (-673 1635811 1637353 1638094 "MRING" 1639258 NIL MRING (NIL T T) -8 NIL NIL) (-672 1635381 1635448 1635577 "MRF2" 1635738 NIL MRF2 (NIL T T T) -7 NIL NIL) (-671 1634999 1635034 1635178 "MRATFAC" 1635340 NIL MRATFAC (NIL T T T T) -7 NIL NIL) (-670 1632611 1632906 1633337 "MPRFF" 1634704 NIL MPRFF (NIL T T T T) -7 NIL NIL) (-669 1626631 1632466 1632562 "MPOLY" 1632567 NIL MPOLY (NIL NIL T) -8 NIL NIL) (-668 1626121 1626156 1626364 "MPCPF" 1626590 NIL MPCPF (NIL T T T T) -7 NIL NIL) (-667 1625637 1625680 1625863 "MPC3" 1626072 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL) (-666 1624838 1624919 1625138 "MPC2" 1625552 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL) (-665 1623139 1623476 1623866 "MONOTOOL" 1624498 NIL MONOTOOL (NIL T T) -7 NIL NIL) (-664 1622263 1622598 1622627 "MONOID" 1622904 T MONOID (NIL) -9 NIL 1623076) (-663 1621641 1621804 1622047 "MONOID-" 1622052 NIL MONOID- (NIL T) -8 NIL NIL) (-662 1612621 1618607 1618667 "MONOGEN" 1619341 NIL MONOGEN (NIL T T) -9 NIL 1619797) (-661 1609839 1610574 1611574 "MONOGEN-" 1611693 NIL MONOGEN- (NIL T T T) -8 NIL NIL) (-660 1608698 1609118 1609147 "MONADWU" 1609539 T MONADWU (NIL) -9 NIL 1609777) (-659 1608070 1608229 1608477 "MONADWU-" 1608482 NIL MONADWU- (NIL T) -8 NIL NIL) (-658 1607455 1607673 1607702 "MONAD" 1607909 T MONAD (NIL) -9 NIL 1608021) (-657 1607140 1607218 1607350 "MONAD-" 1607355 NIL MONAD- (NIL T) -8 NIL NIL) (-656 1605391 1606053 1606332 "MOEBIUS" 1606893 NIL MOEBIUS (NIL T) -8 NIL NIL) (-655 1604784 1605162 1605203 "MODULE" 1605208 NIL MODULE (NIL T) -9 NIL 1605234) (-654 1604352 1604448 1604638 "MODULE-" 1604643 NIL MODULE- (NIL T T) -8 NIL NIL) (-653 1602023 1602718 1603044 "MODRING" 1604177 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL) (-652 1598979 1600144 1600661 "MODOP" 1601555 NIL MODOP (NIL T T) -8 NIL NIL) (-651 1597166 1597618 1597959 "MODMONOM" 1598778 NIL MODMONOM (NIL T T NIL) -8 NIL NIL) (-650 1586884 1595370 1595792 "MODMON" 1596794 NIL MODMON (NIL T T) -8 NIL NIL) (-649 1584010 1585728 1586004 "MODFIELD" 1586759 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL) (-648 1583536 1583579 1583758 "MMAP" 1583961 NIL MMAP (NIL T T T T T T) -7 NIL NIL) (-647 1581772 1582549 1582590 "MLO" 1583007 NIL MLO (NIL T) -9 NIL 1583248) (-646 1579139 1579654 1580256 "MLIFT" 1581253 NIL MLIFT (NIL T T T T) -7 NIL NIL) (-645 1578530 1578614 1578768 "MKUCFUNC" 1579050 NIL MKUCFUNC (NIL T T T) -7 NIL NIL) (-644 1578129 1578199 1578322 "MKRECORD" 1578453 NIL MKRECORD (NIL T T) -7 NIL NIL) (-643 1577177 1577338 1577566 "MKFUNC" 1577940 NIL MKFUNC (NIL T) -7 NIL NIL) (-642 1576565 1576669 1576825 "MKFLCFN" 1577060 NIL MKFLCFN (NIL T) -7 NIL NIL) (-641 1575991 1576358 1576447 "MKCHSET" 1576509 NIL MKCHSET (NIL T) -8 NIL NIL) (-640 1575268 1575370 1575555 "MKBCFUNC" 1575884 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL) (-639 1571952 1574822 1574958 "MINT" 1575152 T MINT (NIL) -8 NIL NIL) (-638 1570764 1571007 1571284 "MHROWRED" 1571707 NIL MHROWRED (NIL T) -7 NIL NIL) (-637 1566035 1569209 1569633 "MFLOAT" 1570360 T MFLOAT (NIL) -8 NIL NIL) (-636 1565392 1565468 1565639 "MFINFACT" 1565947 NIL MFINFACT (NIL T T T T) -7 NIL NIL) (-635 1561707 1562555 1563439 "MESH" 1564528 T MESH (NIL) -7 NIL NIL) (-634 1560097 1560409 1560762 "MDDFACT" 1561394 NIL MDDFACT (NIL T) -7 NIL NIL) (-633 1556939 1559256 1559298 "MDAGG" 1559553 NIL MDAGG (NIL T) -9 NIL 1559696) (-632 1546637 1556232 1556439 "MCMPLX" 1556752 T MCMPLX (NIL) -8 NIL NIL) (-631 1545778 1545924 1546124 "MCDEN" 1546486 NIL MCDEN (NIL T T) -7 NIL NIL) (-630 1543668 1543938 1544318 "MCALCFN" 1545508 NIL MCALCFN (NIL T T T T) -7 NIL NIL) (-629 1541290 1541813 1542374 "MATSTOR" 1543139 NIL MATSTOR (NIL T) -7 NIL NIL) (-628 1537298 1540665 1540912 "MATRIX" 1541075 NIL MATRIX (NIL T) -8 NIL NIL) (-627 1533068 1533771 1534507 "MATLIN" 1536655 NIL MATLIN (NIL T T T T) -7 NIL NIL) (-626 1523265 1526403 1526480 "MATCAT" 1531318 NIL MATCAT (NIL T T T) -9 NIL 1532735) (-625 1519630 1520643 1521998 "MATCAT-" 1522003 NIL MATCAT- (NIL T T T T) -8 NIL NIL) (-624 1518232 1518385 1518716 "MATCAT2" 1519465 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL) (-623 1516344 1516668 1517052 "MAPPKG3" 1517907 NIL MAPPKG3 (NIL T T T) -7 NIL NIL) (-622 1515325 1515498 1515720 "MAPPKG2" 1516168 NIL MAPPKG2 (NIL T T) -7 NIL NIL) (-621 1513824 1514108 1514435 "MAPPKG1" 1515031 NIL MAPPKG1 (NIL T) -7 NIL NIL) (-620 1513435 1513493 1513616 "MAPHACK3" 1513760 NIL MAPHACK3 (NIL T T T) -7 NIL NIL) (-619 1513027 1513088 1513202 "MAPHACK2" 1513367 NIL MAPHACK2 (NIL T T) -7 NIL NIL) (-618 1512465 1512568 1512710 "MAPHACK1" 1512918 NIL MAPHACK1 (NIL T) -7 NIL NIL) (-617 1510573 1511167 1511470 "MAGMA" 1512194 NIL MAGMA (NIL T) -8 NIL NIL) (-616 1507047 1508817 1509277 "M3D" 1510146 NIL M3D (NIL T) -8 NIL NIL) (-615 1501202 1505417 1505459 "LZSTAGG" 1506241 NIL LZSTAGG (NIL T) -9 NIL 1506536) (-614 1497175 1498333 1499790 "LZSTAGG-" 1499795 NIL LZSTAGG- (NIL T T) -8 NIL NIL) (-613 1494291 1495068 1495554 "LWORD" 1496721 NIL LWORD (NIL T) -8 NIL NIL) (-612 1487451 1494062 1494196 "LSQM" 1494201 NIL LSQM (NIL NIL T) -8 NIL NIL) (-611 1486675 1486814 1487042 "LSPP" 1487306 NIL LSPP (NIL T T T T) -7 NIL NIL) (-610 1484487 1484788 1485244 "LSMP" 1486364 NIL LSMP (NIL T T T T) -7 NIL NIL) (-609 1481266 1481940 1482670 "LSMP1" 1483789 NIL LSMP1 (NIL T) -7 NIL NIL) (-608 1475192 1480434 1480476 "LSAGG" 1480538 NIL LSAGG (NIL T) -9 NIL 1480616) (-607 1471887 1472811 1474024 "LSAGG-" 1474029 NIL LSAGG- (NIL T T) -8 NIL NIL) (-606 1469513 1471031 1471280 "LPOLY" 1471682 NIL LPOLY (NIL T T) -8 NIL NIL) (-605 1469095 1469180 1469303 "LPEFRAC" 1469422 NIL LPEFRAC (NIL T) -7 NIL NIL) (-604 1467442 1468189 1468442 "LO" 1468927 NIL LO (NIL T T T) -8 NIL NIL) (-603 1467095 1467207 1467236 "LOGIC" 1467347 T LOGIC (NIL) -9 NIL 1467427) (-602 1466957 1466980 1467051 "LOGIC-" 1467056 NIL LOGIC- (NIL T) -8 NIL NIL) (-601 1466150 1466290 1466483 "LODOOPS" 1466813 NIL LODOOPS (NIL T T) -7 NIL NIL) (-600 1463568 1466067 1466132 "LODO" 1466137 NIL LODO (NIL T NIL) -8 NIL NIL) (-599 1462114 1462349 1462700 "LODOF" 1463315 NIL LODOF (NIL T T) -7 NIL NIL) (-598 1458533 1460969 1461010 "LODOCAT" 1461442 NIL LODOCAT (NIL T) -9 NIL 1461653) (-597 1458267 1458325 1458451 "LODOCAT-" 1458456 NIL LODOCAT- (NIL T T) -8 NIL NIL) (-596 1455581 1458108 1458226 "LODO2" 1458231 NIL LODO2 (NIL T T) -8 NIL NIL) (-595 1453010 1455518 1455563 "LODO1" 1455568 NIL LODO1 (NIL T) -8 NIL NIL) (-594 1451873 1452038 1452349 "LODEEF" 1452833 NIL LODEEF (NIL T T T) -7 NIL NIL) (-593 1447159 1450003 1450045 "LNAGG" 1450992 NIL LNAGG (NIL T) -9 NIL 1451436) (-592 1446306 1446520 1446862 "LNAGG-" 1446867 NIL LNAGG- (NIL T T) -8 NIL NIL) (-591 1442471 1443233 1443871 "LMOPS" 1445722 NIL LMOPS (NIL T T NIL) -8 NIL NIL) (-590 1441868 1442230 1442271 "LMODULE" 1442331 NIL LMODULE (NIL T) -9 NIL 1442373) (-589 1439114 1441513 1441636 "LMDICT" 1441778 NIL LMDICT (NIL T) -8 NIL NIL) (-588 1432341 1438060 1438358 "LIST" 1438849 NIL LIST (NIL T) -8 NIL NIL) (-587 1431866 1431940 1432079 "LIST3" 1432261 NIL LIST3 (NIL T T T) -7 NIL NIL) (-586 1430873 1431051 1431279 "LIST2" 1431684 NIL LIST2 (NIL T T) -7 NIL NIL) (-585 1429007 1429319 1429718 "LIST2MAP" 1430520 NIL LIST2MAP (NIL T T) -7 NIL NIL) (-584 1427719 1428399 1428440 "LINEXP" 1428693 NIL LINEXP (NIL T) -9 NIL 1428841) (-583 1426366 1426626 1426923 "LINDEP" 1427471 NIL LINDEP (NIL T T) -7 NIL NIL) (-582 1423133 1423852 1424629 "LIMITRF" 1425621 NIL LIMITRF (NIL T) -7 NIL NIL) (-581 1421413 1421708 1422123 "LIMITPS" 1422828 NIL LIMITPS (NIL T T) -7 NIL NIL) (-580 1415868 1420924 1421152 "LIE" 1421234 NIL LIE (NIL T T) -8 NIL NIL) (-579 1414918 1415361 1415402 "LIECAT" 1415542 NIL LIECAT (NIL T) -9 NIL 1415693) (-578 1414759 1414786 1414874 "LIECAT-" 1414879 NIL LIECAT- (NIL T T) -8 NIL NIL) (-577 1407371 1414208 1414373 "LIB" 1414614 T LIB (NIL) -8 NIL NIL) (-576 1403008 1403889 1404824 "LGROBP" 1406488 NIL LGROBP (NIL NIL T) -7 NIL NIL) (-575 1400874 1401148 1401510 "LF" 1402729 NIL LF (NIL T T) -7 NIL NIL) (-574 1399713 1400405 1400434 "LFCAT" 1400641 T LFCAT (NIL) -9 NIL 1400780) (-573 1396625 1397251 1397937 "LEXTRIPK" 1399079 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL) (-572 1393331 1394195 1394698 "LEXP" 1396205 NIL LEXP (NIL T T NIL) -8 NIL NIL) (-571 1391729 1392042 1392443 "LEADCDET" 1393013 NIL LEADCDET (NIL T T T T) -7 NIL NIL) (-570 1390925 1390999 1391226 "LAZM3PK" 1391650 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL) (-569 1385841 1389004 1389541 "LAUPOL" 1390438 NIL LAUPOL (NIL T T) -8 NIL NIL) (-568 1385408 1385452 1385619 "LAPLACE" 1385791 NIL LAPLACE (NIL T T) -7 NIL NIL) (-567 1383336 1384509 1384760 "LA" 1385241 NIL LA (NIL T T T) -8 NIL NIL) (-566 1382398 1382992 1383033 "LALG" 1383094 NIL LALG (NIL T) -9 NIL 1383152) (-565 1382113 1382172 1382307 "LALG-" 1382312 NIL LALG- (NIL T T) -8 NIL NIL) (-564 1381023 1381210 1381507 "KOVACIC" 1381913 NIL KOVACIC (NIL T T) -7 NIL NIL) (-563 1380857 1380881 1380923 "KONVERT" 1380985 NIL KONVERT (NIL T) -9 NIL NIL) (-562 1380691 1380715 1380757 "KOERCE" 1380819 NIL KOERCE (NIL T) -9 NIL NIL) (-561 1378425 1379185 1379578 "KERNEL" 1380330 NIL KERNEL (NIL T) -8 NIL NIL) (-560 1377927 1378008 1378138 "KERNEL2" 1378339 NIL KERNEL2 (NIL T T) -7 NIL NIL) (-559 1371778 1376466 1376521 "KDAGG" 1376898 NIL KDAGG (NIL T T) -9 NIL 1377104) (-558 1371307 1371431 1371636 "KDAGG-" 1371641 NIL KDAGG- (NIL T T T) -8 NIL NIL) (-557 1364482 1370968 1371123 "KAFILE" 1371185 NIL KAFILE (NIL T) -8 NIL NIL) (-556 1358937 1363993 1364221 "JORDAN" 1364303 NIL JORDAN (NIL T T) -8 NIL NIL) (-555 1355236 1357142 1357197 "IXAGG" 1358126 NIL IXAGG (NIL T T) -9 NIL 1358585) (-554 1354155 1354461 1354880 "IXAGG-" 1354885 NIL IXAGG- (NIL T T T) -8 NIL NIL) (-553 1349740 1354077 1354136 "IVECTOR" 1354141 NIL IVECTOR (NIL T NIL) -8 NIL NIL) (-552 1348506 1348743 1349009 "ITUPLE" 1349507 NIL ITUPLE (NIL T) -8 NIL NIL) (-551 1346942 1347119 1347425 "ITRIGMNP" 1348328 NIL ITRIGMNP (NIL T T T) -7 NIL NIL) (-550 1345687 1345891 1346174 "ITFUN3" 1346718 NIL ITFUN3 (NIL T T T) -7 NIL NIL) (-549 1345319 1345376 1345485 "ITFUN2" 1345624 NIL ITFUN2 (NIL T T) -7 NIL NIL) (-548 1343121 1344192 1344489 "ITAYLOR" 1345054 NIL ITAYLOR (NIL T) -8 NIL NIL) (-547 1332112 1337307 1338466 "ISUPS" 1341994 NIL ISUPS (NIL T) -8 NIL NIL) (-546 1331216 1331356 1331592 "ISUMP" 1331959 NIL ISUMP (NIL T T T T) -7 NIL NIL) (-545 1326480 1331017 1331096 "ISTRING" 1331169 NIL ISTRING (NIL NIL) -8 NIL NIL) (-544 1325693 1325774 1325989 "IRURPK" 1326394 NIL IRURPK (NIL T T T T T) -7 NIL NIL) (-543 1324629 1324830 1325070 "IRSN" 1325473 T IRSN (NIL) -7 NIL NIL) (-542 1322664 1323019 1323454 "IRRF2F" 1324267 NIL IRRF2F (NIL T) -7 NIL NIL) (-541 1322411 1322449 1322525 "IRREDFFX" 1322620 NIL IRREDFFX (NIL T) -7 NIL NIL) (-540 1321026 1321285 1321584 "IROOT" 1322144 NIL IROOT (NIL T) -7 NIL NIL) (-539 1317664 1318715 1319405 "IR" 1320368 NIL IR (NIL T) -8 NIL NIL) (-538 1315277 1315772 1316338 "IR2" 1317142 NIL IR2 (NIL T T) -7 NIL NIL) (-537 1314353 1314466 1314686 "IR2F" 1315160 NIL IR2F (NIL T T) -7 NIL NIL) (-536 1314144 1314178 1314238 "IPRNTPK" 1314313 T IPRNTPK (NIL) -7 NIL NIL) (-535 1310698 1314033 1314102 "IPF" 1314107 NIL IPF (NIL NIL) -8 NIL NIL) (-534 1309015 1310623 1310680 "IPADIC" 1310685 NIL IPADIC (NIL NIL NIL) -8 NIL NIL) (-533 1308514 1308572 1308761 "INVLAPLA" 1308951 NIL INVLAPLA (NIL T T) -7 NIL NIL) (-532 1298163 1300516 1302902 "INTTR" 1306178 NIL INTTR (NIL T T) -7 NIL NIL) (-531 1294511 1295252 1296115 "INTTOOLS" 1297349 NIL INTTOOLS (NIL T T) -7 NIL NIL) (-530 1294097 1294188 1294305 "INTSLPE" 1294414 T INTSLPE (NIL) -7 NIL NIL) (-529 1292047 1294020 1294079 "INTRVL" 1294084 NIL INTRVL (NIL T) -8 NIL NIL) (-528 1289654 1290166 1290740 "INTRF" 1291532 NIL INTRF (NIL T) -7 NIL NIL) (-527 1289069 1289166 1289307 "INTRET" 1289552 NIL INTRET (NIL T) -7 NIL NIL) (-526 1287071 1287460 1287929 "INTRAT" 1288677 NIL INTRAT (NIL T T) -7 NIL NIL) (-525 1284304 1284887 1285512 "INTPM" 1286556 NIL INTPM (NIL T T) -7 NIL NIL) (-524 1281013 1281612 1282356 "INTPAF" 1283690 NIL INTPAF (NIL T T T) -7 NIL NIL) (-523 1276256 1277202 1278237 "INTPACK" 1279998 T INTPACK (NIL) -7 NIL NIL) (-522 1273110 1275985 1276112 "INT" 1276149 T INT (NIL) -8 NIL NIL) (-521 1272362 1272514 1272722 "INTHERTR" 1272952 NIL INTHERTR (NIL T T) -7 NIL NIL) (-520 1271801 1271881 1272069 "INTHERAL" 1272276 NIL INTHERAL (NIL T T T T) -7 NIL NIL) (-519 1269647 1270090 1270547 "INTHEORY" 1271364 T INTHEORY (NIL) -7 NIL NIL) (-518 1260970 1262590 1264368 "INTG0" 1267999 NIL INTG0 (NIL T T T) -7 NIL NIL) (-517 1241543 1246333 1251143 "INTFTBL" 1256180 T INTFTBL (NIL) -8 NIL NIL) (-516 1240792 1240930 1241103 "INTFACT" 1241402 NIL INTFACT (NIL T) -7 NIL NIL) (-515 1238183 1238629 1239192 "INTEF" 1240346 NIL INTEF (NIL T T) -7 NIL NIL) (-514 1236644 1237393 1237422 "INTDOM" 1237723 T INTDOM (NIL) -9 NIL 1237930) (-513 1236013 1236187 1236429 "INTDOM-" 1236434 NIL INTDOM- (NIL T) -8 NIL NIL) (-512 1232505 1234437 1234492 "INTCAT" 1235291 NIL INTCAT (NIL T) -9 NIL 1235610) (-511 1231978 1232080 1232208 "INTBIT" 1232397 T INTBIT (NIL) -7 NIL NIL) (-510 1230653 1230807 1231120 "INTALG" 1231823 NIL INTALG (NIL T T T T T) -7 NIL NIL) (-509 1230110 1230200 1230370 "INTAF" 1230557 NIL INTAF (NIL T T) -7 NIL NIL) (-508 1223564 1229920 1230060 "INTABL" 1230065 NIL INTABL (NIL T T T) -8 NIL NIL) (-507 1218514 1221243 1221272 "INS" 1222240 T INS (NIL) -9 NIL 1222921) (-506 1215754 1216525 1217499 "INS-" 1217572 NIL INS- (NIL T) -8 NIL NIL) (-505 1214533 1214760 1215057 "INPSIGN" 1215507 NIL INPSIGN (NIL T T) -7 NIL NIL) (-504 1213651 1213768 1213965 "INPRODPF" 1214413 NIL INPRODPF (NIL T T) -7 NIL NIL) (-503 1212545 1212662 1212899 "INPRODFF" 1213531 NIL INPRODFF (NIL T T T T) -7 NIL NIL) (-502 1211545 1211697 1211957 "INNMFACT" 1212381 NIL INNMFACT (NIL T T T T) -7 NIL NIL) (-501 1210742 1210839 1211027 "INMODGCD" 1211444 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL) (-500 1209251 1209495 1209819 "INFSP" 1210487 NIL INFSP (NIL T T T) -7 NIL NIL) (-499 1208435 1208552 1208735 "INFPROD0" 1209131 NIL INFPROD0 (NIL T T) -7 NIL NIL) (-498 1205445 1206604 1207095 "INFORM" 1207952 T INFORM (NIL) -8 NIL NIL) (-497 1205055 1205115 1205213 "INFORM1" 1205380 NIL INFORM1 (NIL T) -7 NIL NIL) (-496 1204578 1204667 1204781 "INFINITY" 1204961 T INFINITY (NIL) -7 NIL NIL) (-495 1203196 1203444 1203765 "INEP" 1204326 NIL INEP (NIL T T T) -7 NIL NIL) (-494 1202472 1203093 1203158 "INDE" 1203163 NIL INDE (NIL T) -8 NIL NIL) (-493 1202036 1202104 1202221 "INCRMAPS" 1202399 NIL INCRMAPS (NIL T) -7 NIL NIL) (-492 1197347 1198272 1199216 "INBFF" 1201124 NIL INBFF (NIL T) -7 NIL NIL) (-491 1193842 1197192 1197295 "IMATRIX" 1197300 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL) (-490 1192554 1192677 1192992 "IMATQF" 1193698 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL) (-489 1190774 1191001 1191338 "IMATLIN" 1192310 NIL IMATLIN (NIL T T T T) -7 NIL NIL) (-488 1185400 1190698 1190756 "ILIST" 1190761 NIL ILIST (NIL T NIL) -8 NIL NIL) (-487 1183353 1185260 1185373 "IIARRAY2" 1185378 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL) (-486 1178721 1183264 1183328 "IFF" 1183333 NIL IFF (NIL NIL NIL) -8 NIL NIL) (-485 1173764 1178013 1178201 "IFARRAY" 1178578 NIL IFARRAY (NIL T NIL) -8 NIL NIL) (-484 1172971 1173668 1173741 "IFAMON" 1173746 NIL IFAMON (NIL T T NIL) -8 NIL NIL) (-483 1172554 1172619 1172674 "IEVALAB" 1172881 NIL IEVALAB (NIL T T) -9 NIL NIL) (-482 1172229 1172297 1172457 "IEVALAB-" 1172462 NIL IEVALAB- (NIL T T T) -8 NIL NIL) (-481 1171887 1172143 1172206 "IDPO" 1172211 NIL IDPO (NIL T T) -8 NIL NIL) (-480 1171164 1171776 1171851 "IDPOAMS" 1171856 NIL IDPOAMS (NIL T T) -8 NIL NIL) (-479 1170498 1171053 1171128 "IDPOAM" 1171133 NIL IDPOAM (NIL T T) -8 NIL NIL) (-478 1169583 1169833 1169887 "IDPC" 1170300 NIL IDPC (NIL T T) -9 NIL 1170449) (-477 1169079 1169475 1169548 "IDPAM" 1169553 NIL IDPAM (NIL T T) -8 NIL NIL) (-476 1168482 1168971 1169044 "IDPAG" 1169049 NIL IDPAG (NIL T T) -8 NIL NIL) (-475 1164737 1165585 1166480 "IDECOMP" 1167639 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL) (-474 1157611 1158660 1159707 "IDEAL" 1163773 NIL IDEAL (NIL T T T T) -8 NIL NIL) (-473 1156775 1156887 1157086 "ICDEN" 1157495 NIL ICDEN (NIL T T T T) -7 NIL NIL) (-472 1155874 1156255 1156402 "ICARD" 1156648 T ICARD (NIL) -8 NIL NIL) (-471 1153946 1154259 1154662 "IBPTOOLS" 1155551 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL) (-470 1149560 1153566 1153679 "IBITS" 1153865 NIL IBITS (NIL NIL) -8 NIL NIL) (-469 1146283 1146859 1147554 "IBATOOL" 1148977 NIL IBATOOL (NIL T T T) -7 NIL NIL) (-468 1144063 1144524 1145057 "IBACHIN" 1145818 NIL IBACHIN (NIL T T T) -7 NIL NIL) (-467 1141940 1143909 1144012 "IARRAY2" 1144017 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL) (-466 1138093 1141866 1141923 "IARRAY1" 1141928 NIL IARRAY1 (NIL T NIL) -8 NIL NIL) (-465 1132032 1136511 1136989 "IAN" 1137635 T IAN (NIL) -8 NIL NIL) (-464 1131543 1131600 1131773 "IALGFACT" 1131969 NIL IALGFACT (NIL T T T T) -7 NIL NIL) (-463 1131070 1131183 1131212 "HYPCAT" 1131419 T HYPCAT (NIL) -9 NIL NIL) (-462 1130608 1130725 1130911 "HYPCAT-" 1130916 NIL HYPCAT- (NIL T) -8 NIL NIL) (-461 1127287 1128618 1128660 "HOAGG" 1129641 NIL HOAGG (NIL T) -9 NIL 1130320) (-460 1125881 1126280 1126806 "HOAGG-" 1126811 NIL HOAGG- (NIL T T) -8 NIL NIL) (-459 1119712 1125322 1125488 "HEXADEC" 1125735 T HEXADEC (NIL) -8 NIL NIL) (-458 1118460 1118682 1118945 "HEUGCD" 1119489 NIL HEUGCD (NIL T) -7 NIL NIL) (-457 1117563 1118297 1118427 "HELLFDIV" 1118432 NIL HELLFDIV (NIL T T T T) -8 NIL NIL) (-456 1115791 1117340 1117428 "HEAP" 1117507 NIL HEAP (NIL T) -8 NIL NIL) (-455 1109658 1115706 1115768 "HDP" 1115773 NIL HDP (NIL NIL T) -8 NIL NIL) (-454 1103370 1109295 1109446 "HDMP" 1109559 NIL HDMP (NIL NIL T) -8 NIL NIL) (-453 1102695 1102834 1102998 "HB" 1103226 T HB (NIL) -7 NIL NIL) (-452 1096192 1102541 1102645 "HASHTBL" 1102650 NIL HASHTBL (NIL T T NIL) -8 NIL NIL) (-451 1093945 1095820 1095999 "HACKPI" 1096033 T HACKPI (NIL) -8 NIL NIL) (-450 1089641 1093799 1093911 "GTSET" 1093916 NIL GTSET (NIL T T T T) -8 NIL NIL) (-449 1083167 1089519 1089617 "GSTBL" 1089622 NIL GSTBL (NIL T T T NIL) -8 NIL NIL) (-448 1075403 1082203 1082467 "GSERIES" 1082958 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL) (-447 1074425 1074878 1074907 "GROUP" 1075168 T GROUP (NIL) -9 NIL 1075327) (-446 1073541 1073764 1074108 "GROUP-" 1074113 NIL GROUP- (NIL T) -8 NIL NIL) (-445 1071910 1072229 1072616 "GROEBSOL" 1073218 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL) (-444 1070850 1071112 1071164 "GRMOD" 1071693 NIL GRMOD (NIL T T) -9 NIL 1071861) (-443 1070618 1070654 1070782 "GRMOD-" 1070787 NIL GRMOD- (NIL T T T) -8 NIL NIL) (-442 1065946 1066972 1067972 "GRIMAGE" 1069638 T GRIMAGE (NIL) -8 NIL NIL) (-441 1064413 1064673 1064997 "GRDEF" 1065642 T GRDEF (NIL) -7 NIL NIL) (-440 1063857 1063973 1064114 "GRAY" 1064292 T GRAY (NIL) -7 NIL NIL) (-439 1063090 1063470 1063522 "GRALG" 1063675 NIL GRALG (NIL T T) -9 NIL 1063767) (-438 1062751 1062824 1062987 "GRALG-" 1062992 NIL GRALG- (NIL T T T) -8 NIL NIL) (-437 1059559 1062340 1062516 "GPOLSET" 1062658 NIL GPOLSET (NIL T T T T) -8 NIL NIL) (-436 1058915 1058972 1059229 "GOSPER" 1059496 NIL GOSPER (NIL T T T T T) -7 NIL NIL) (-435 1054674 1055353 1055879 "GMODPOL" 1058614 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL) (-434 1053679 1053863 1054101 "GHENSEL" 1054486 NIL GHENSEL (NIL T T) -7 NIL NIL) (-433 1047745 1048588 1049614 "GENUPS" 1052763 NIL GENUPS (NIL T T) -7 NIL NIL) (-432 1047442 1047493 1047582 "GENUFACT" 1047688 NIL GENUFACT (NIL T) -7 NIL NIL) (-431 1046854 1046931 1047096 "GENPGCD" 1047360 NIL GENPGCD (NIL T T T T) -7 NIL NIL) (-430 1046328 1046363 1046576 "GENMFACT" 1046813 NIL GENMFACT (NIL T T T T T) -7 NIL NIL) (-429 1044896 1045151 1045458 "GENEEZ" 1046071 NIL GENEEZ (NIL T T) -7 NIL NIL) (-428 1038770 1044509 1044670 "GDMP" 1044819 NIL GDMP (NIL NIL T T) -8 NIL NIL) (-427 1028152 1032541 1033647 "GCNAALG" 1037753 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL) (-426 1026573 1027445 1027474 "GCDDOM" 1027729 T GCDDOM (NIL) -9 NIL 1027886) (-425 1026043 1026170 1026385 "GCDDOM-" 1026390 NIL GCDDOM- (NIL T) -8 NIL NIL) (-424 1024715 1024900 1025204 "GB" 1025822 NIL GB (NIL T T T T) -7 NIL NIL) (-423 1013335 1015661 1018053 "GBINTERN" 1022406 NIL GBINTERN (NIL T T T T) -7 NIL NIL) (-422 1011172 1011464 1011885 "GBF" 1013010 NIL GBF (NIL T T T T) -7 NIL NIL) (-421 1009953 1010118 1010385 "GBEUCLID" 1010988 NIL GBEUCLID (NIL T T T T) -7 NIL NIL) (-420 1009302 1009427 1009576 "GAUSSFAC" 1009824 T GAUSSFAC (NIL) -7 NIL NIL) (-419 1007679 1007981 1008294 "GALUTIL" 1009021 NIL GALUTIL (NIL T) -7 NIL NIL) (-418 1005996 1006270 1006593 "GALPOLYU" 1007406 NIL GALPOLYU (NIL T T) -7 NIL NIL) (-417 1003385 1003675 1004080 "GALFACTU" 1005693 NIL GALFACTU (NIL T T T) -7 NIL NIL) (-416 995191 996690 998298 "GALFACT" 1001817 NIL GALFACT (NIL T) -7 NIL NIL) (-415 992578 993236 993265 "FVFUN" 994421 T FVFUN (NIL) -9 NIL 995141) (-414 991843 992025 992054 "FVC" 992345 T FVC (NIL) -9 NIL 992528) (-413 991485 991640 991721 "FUNCTION" 991795 NIL FUNCTION (NIL NIL) -8 NIL NIL) (-412 989155 989706 990195 "FT" 991016 T FT (NIL) -8 NIL NIL) (-411 987973 988456 988659 "FTEM" 988972 T FTEM (NIL) -8 NIL NIL) (-410 986238 986526 986928 "FSUPFACT" 987665 NIL FSUPFACT (NIL T T T) -7 NIL NIL) (-409 984635 984924 985256 "FST" 985926 T FST (NIL) -8 NIL NIL) (-408 983810 983916 984110 "FSRED" 984517 NIL FSRED (NIL T T) -7 NIL NIL) (-407 982489 982744 983098 "FSPRMELT" 983525 NIL FSPRMELT (NIL T T) -7 NIL NIL) (-406 979574 980012 980511 "FSPECF" 982052 NIL FSPECF (NIL T T) -7 NIL NIL) (-405 961947 970504 970545 "FS" 974383 NIL FS (NIL T) -9 NIL 976665) (-404 950597 953587 957643 "FS-" 957940 NIL FS- (NIL T T) -8 NIL NIL) (-403 950113 950167 950343 "FSINT" 950538 NIL FSINT (NIL T T) -7 NIL NIL) (-402 948394 949106 949409 "FSERIES" 949892 NIL FSERIES (NIL T T) -8 NIL NIL) (-401 947412 947528 947758 "FSCINT" 948274 NIL FSCINT (NIL T T) -7 NIL NIL) (-400 943646 946356 946398 "FSAGG" 946768 NIL FSAGG (NIL T) -9 NIL 947027) (-399 941408 942009 942805 "FSAGG-" 942900 NIL FSAGG- (NIL T T) -8 NIL NIL) (-398 940450 940593 940820 "FSAGG2" 941261 NIL FSAGG2 (NIL T T T T) -7 NIL NIL) (-397 938109 938388 938941 "FS2UPS" 940168 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL) (-396 937695 937738 937891 "FS2" 938060 NIL FS2 (NIL T T T T) -7 NIL NIL) (-395 936555 936726 937034 "FS2EXPXP" 937520 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL) (-394 935981 936096 936248 "FRUTIL" 936435 NIL FRUTIL (NIL T) -7 NIL NIL) (-393 927402 931480 932836 "FR" 934657 NIL FR (NIL T) -8 NIL NIL) (-392 922478 925121 925162 "FRNAALG" 926558 NIL FRNAALG (NIL T) -9 NIL 927165) (-391 918157 919227 920502 "FRNAALG-" 921252 NIL FRNAALG- (NIL T T) -8 NIL NIL) (-390 917795 917838 917965 "FRNAAF2" 918108 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL) (-389 916160 916652 916946 "FRMOD" 917608 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL) (-388 913883 914551 914867 "FRIDEAL" 915951 NIL FRIDEAL (NIL T T T T) -8 NIL NIL) (-387 913082 913169 913456 "FRIDEAL2" 913790 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL) (-386 912339 912747 912789 "FRETRCT" 912794 NIL FRETRCT (NIL T) -9 NIL 912965) (-385 911451 911682 912033 "FRETRCT-" 912038 NIL FRETRCT- (NIL T T) -8 NIL NIL) (-384 908660 909880 909940 "FRAMALG" 910822 NIL FRAMALG (NIL T T) -9 NIL 911114) (-383 906793 907249 907879 "FRAMALG-" 908102 NIL FRAMALG- (NIL T T T) -8 NIL NIL) (-382 900695 906268 906544 "FRAC" 906549 NIL FRAC (NIL T) -8 NIL NIL) (-381 900331 900388 900495 "FRAC2" 900632 NIL FRAC2 (NIL T T) -7 NIL NIL) (-380 899967 900024 900131 "FR2" 900268 NIL FR2 (NIL T T) -7 NIL NIL) (-379 894640 897553 897582 "FPS" 898701 T FPS (NIL) -9 NIL 899257) (-378 894089 894198 894362 "FPS-" 894508 NIL FPS- (NIL T) -8 NIL NIL) (-377 891537 893234 893263 "FPC" 893488 T FPC (NIL) -9 NIL 893630) (-376 891330 891370 891467 "FPC-" 891472 NIL FPC- (NIL T) -8 NIL NIL) (-375 890208 890818 890860 "FPATMAB" 890865 NIL FPATMAB (NIL T) -9 NIL 891017) (-374 887908 888384 888810 "FPARFRAC" 889845 NIL FPARFRAC (NIL T T) -8 NIL NIL) (-373 883303 883800 884482 "FORTRAN" 887340 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL) (-372 881019 881519 882058 "FORT" 882784 T FORT (NIL) -7 NIL NIL) (-371 878694 879256 879285 "FORTFN" 880345 T FORTFN (NIL) -9 NIL 880969) (-370 878457 878507 878536 "FORTCAT" 878595 T FORTCAT (NIL) -9 NIL 878657) (-369 876517 877000 877399 "FORMULA" 878078 T FORMULA (NIL) -8 NIL NIL) (-368 876305 876335 876404 "FORMULA1" 876481 NIL FORMULA1 (NIL T) -7 NIL NIL) (-367 875828 875880 876053 "FORDER" 876247 NIL FORDER (NIL T T T T) -7 NIL NIL) (-366 874924 875088 875281 "FOP" 875655 T FOP (NIL) -7 NIL NIL) (-365 873532 874204 874378 "FNLA" 874806 NIL FNLA (NIL NIL NIL T) -8 NIL NIL) (-364 872200 872589 872618 "FNCAT" 873190 T FNCAT (NIL) -9 NIL 873483) (-363 871766 872159 872187 "FNAME" 872192 T FNAME (NIL) -8 NIL NIL) (-362 870425 871398 871427 "FMTC" 871432 T FMTC (NIL) -9 NIL 871467) (-361 866743 867950 868578 "FMONOID" 869830 NIL FMONOID (NIL T) -8 NIL NIL) (-360 865963 866486 866634 "FM" 866639 NIL FM (NIL T T) -8 NIL NIL) (-359 863386 864032 864061 "FMFUN" 865205 T FMFUN (NIL) -9 NIL 865913) (-358 862654 862835 862864 "FMC" 863154 T FMC (NIL) -9 NIL 863336) (-357 859883 860717 860771 "FMCAT" 861953 NIL FMCAT (NIL T T) -9 NIL 862447) (-356 858778 859651 859750 "FM1" 859828 NIL FM1 (NIL T T) -8 NIL NIL) (-355 856552 856968 857462 "FLOATRP" 858329 NIL FLOATRP (NIL T) -7 NIL NIL) (-354 850038 854208 854838 "FLOAT" 855942 T FLOAT (NIL) -8 NIL NIL) (-353 847476 847976 848554 "FLOATCP" 849505 NIL FLOATCP (NIL T) -7 NIL NIL) (-352 846264 847112 847153 "FLINEXP" 847158 NIL FLINEXP (NIL T) -9 NIL 847251) (-351 845419 845654 845981 "FLINEXP-" 845986 NIL FLINEXP- (NIL T T) -8 NIL NIL) (-350 844495 844639 844863 "FLASORT" 845271 NIL FLASORT (NIL T T) -7 NIL NIL) (-349 841713 842555 842608 "FLALG" 843835 NIL FLALG (NIL T T) -9 NIL 844302) (-348 835497 839199 839241 "FLAGG" 840503 NIL FLAGG (NIL T) -9 NIL 841155) (-347 834223 834562 835052 "FLAGG-" 835057 NIL FLAGG- (NIL T T) -8 NIL NIL) (-346 833265 833408 833635 "FLAGG2" 834076 NIL FLAGG2 (NIL T T T T) -7 NIL NIL) (-345 830237 831255 831315 "FINRALG" 832443 NIL FINRALG (NIL T T) -9 NIL 832951) (-344 829397 829626 829965 "FINRALG-" 829970 NIL FINRALG- (NIL T T T) -8 NIL NIL) (-343 828803 829016 829045 "FINITE" 829241 T FINITE (NIL) -9 NIL 829348) (-342 821262 823423 823464 "FINAALG" 827131 NIL FINAALG (NIL T) -9 NIL 828584) (-341 816603 817644 818788 "FINAALG-" 820167 NIL FINAALG- (NIL T T) -8 NIL NIL) (-340 815998 816358 816461 "FILE" 816533 NIL FILE (NIL T) -8 NIL NIL) (-339 814682 814994 815049 "FILECAT" 815733 NIL FILECAT (NIL T T) -9 NIL 815949) (-338 812544 814100 814129 "FIELD" 814169 T FIELD (NIL) -9 NIL 814249) (-337 811164 811549 812060 "FIELD-" 812065 NIL FIELD- (NIL T) -8 NIL NIL) (-336 808979 809801 810147 "FGROUP" 810851 NIL FGROUP (NIL T) -8 NIL NIL) (-335 808069 808233 808453 "FGLMICPK" 808811 NIL FGLMICPK (NIL T NIL) -7 NIL NIL) (-334 803871 807994 808051 "FFX" 808056 NIL FFX (NIL T NIL) -8 NIL NIL) (-333 803472 803533 803668 "FFSLPE" 803804 NIL FFSLPE (NIL T T T) -7 NIL NIL) (-332 799467 800244 801040 "FFPOLY" 802708 NIL FFPOLY (NIL T) -7 NIL NIL) (-331 798971 799007 799216 "FFPOLY2" 799425 NIL FFPOLY2 (NIL T T) -7 NIL NIL) (-330 794793 798890 798953 "FFP" 798958 NIL FFP (NIL T NIL) -8 NIL NIL) (-329 790161 794704 794768 "FF" 794773 NIL FF (NIL NIL NIL) -8 NIL NIL) (-328 785257 789504 789694 "FFNBX" 790015 NIL FFNBX (NIL T NIL) -8 NIL NIL) (-327 780167 784392 784650 "FFNBP" 785111 NIL FFNBP (NIL T NIL) -8 NIL NIL) (-326 774770 779451 779662 "FFNB" 780000 NIL FFNB (NIL NIL NIL) -8 NIL NIL) (-325 773602 773800 774115 "FFINTBAS" 774567 NIL FFINTBAS (NIL T T T) -7 NIL NIL) (-324 769825 772065 772094 "FFIELDC" 772714 T FFIELDC (NIL) -9 NIL 773090) (-323 768488 768858 769355 "FFIELDC-" 769360 NIL FFIELDC- (NIL T) -8 NIL NIL) (-322 768058 768103 768227 "FFHOM" 768430 NIL FFHOM (NIL T T T) -7 NIL NIL) (-321 765756 766240 766757 "FFF" 767573 NIL FFF (NIL T) -7 NIL NIL) (-320 761344 765498 765599 "FFCGX" 765699 NIL FFCGX (NIL T NIL) -8 NIL NIL) (-319 756946 761076 761183 "FFCGP" 761287 NIL FFCGP (NIL T NIL) -8 NIL NIL) (-318 752099 756673 756781 "FFCG" 756882 NIL FFCG (NIL NIL NIL) -8 NIL NIL) (-317 734044 743167 743254 "FFCAT" 748419 NIL FFCAT (NIL T T T) -9 NIL 749906) (-316 729242 730289 731603 "FFCAT-" 732833 NIL FFCAT- (NIL T T T T) -8 NIL NIL) (-315 728653 728696 728931 "FFCAT2" 729193 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL) (-314 717853 721643 722860 "FEXPR" 727508 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL) (-313 716852 717287 717329 "FEVALAB" 717413 NIL FEVALAB (NIL T) -9 NIL 717674) (-312 716011 716221 716559 "FEVALAB-" 716564 NIL FEVALAB- (NIL T T) -8 NIL NIL) (-311 714604 715394 715597 "FDIV" 715910 NIL FDIV (NIL T T T T) -8 NIL NIL) (-310 711670 712385 712501 "FDIVCAT" 714069 NIL FDIVCAT (NIL T T T T) -9 NIL 714506) (-309 711432 711459 711629 "FDIVCAT-" 711634 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL) (-308 710652 710739 711016 "FDIV2" 711339 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL) (-307 709338 709597 709886 "FCPAK1" 710383 T FCPAK1 (NIL) -7 NIL NIL) (-306 708466 708838 708979 "FCOMP" 709229 NIL FCOMP (NIL T) -8 NIL NIL) (-305 692094 695509 699072 "FC" 704923 T FC (NIL) -8 NIL NIL) (-304 684689 688735 688776 "FAXF" 690578 NIL FAXF (NIL T) -9 NIL 691269) (-303 681968 682623 683448 "FAXF-" 683913 NIL FAXF- (NIL T T) -8 NIL NIL) (-302 677068 681344 681520 "FARRAY" 681825 NIL FARRAY (NIL T) -8 NIL NIL) (-301 672458 674529 674582 "FAMR" 675594 NIL FAMR (NIL T T) -9 NIL 676054) (-300 671349 671651 672085 "FAMR-" 672090 NIL FAMR- (NIL T T T) -8 NIL NIL) (-299 670545 671271 671324 "FAMONOID" 671329 NIL FAMONOID (NIL T) -8 NIL NIL) (-298 668377 669061 669115 "FAMONC" 670056 NIL FAMONC (NIL T T) -9 NIL 670441) (-297 667069 668131 668268 "FAGROUP" 668273 NIL FAGROUP (NIL T) -8 NIL NIL) (-296 664872 665191 665593 "FACUTIL" 666750 NIL FACUTIL (NIL T T T T) -7 NIL NIL) (-295 663971 664156 664378 "FACTFUNC" 664682 NIL FACTFUNC (NIL T) -7 NIL NIL) (-294 656294 663222 663434 "EXPUPXS" 663827 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL) (-293 653777 654317 654903 "EXPRTUBE" 655728 T EXPRTUBE (NIL) -7 NIL NIL) (-292 649971 650563 651300 "EXPRODE" 653116 NIL EXPRODE (NIL T T) -7 NIL NIL) (-291 635130 648630 649056 "EXPR" 649577 NIL EXPR (NIL T) -8 NIL NIL) (-290 629558 630145 630957 "EXPR2UPS" 634428 NIL EXPR2UPS (NIL T T) -7 NIL NIL) (-289 629194 629251 629358 "EXPR2" 629495 NIL EXPR2 (NIL T T) -7 NIL NIL) (-288 620548 628331 628626 "EXPEXPAN" 629032 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL) (-287 620375 620505 620534 "EXIT" 620539 T EXIT (NIL) -8 NIL NIL) (-286 620002 620064 620177 "EVALCYC" 620307 NIL EVALCYC (NIL T) -7 NIL NIL) (-285 619542 619660 619702 "EVALAB" 619872 NIL EVALAB (NIL T) -9 NIL 619976) (-284 619023 619145 619366 "EVALAB-" 619371 NIL EVALAB- (NIL T T) -8 NIL NIL) (-283 616485 617797 617826 "EUCDOM" 618381 T EUCDOM (NIL) -9 NIL 618731) (-282 614890 615332 615922 "EUCDOM-" 615927 NIL EUCDOM- (NIL T) -8 NIL NIL) (-281 602468 605216 607956 "ESTOOLS" 612170 T ESTOOLS (NIL) -7 NIL NIL) (-280 602104 602161 602268 "ESTOOLS2" 602405 NIL ESTOOLS2 (NIL T T) -7 NIL NIL) (-279 601855 601897 601977 "ESTOOLS1" 602056 NIL ESTOOLS1 (NIL T) -7 NIL NIL) (-278 595792 597516 597545 "ES" 600309 T ES (NIL) -9 NIL 601715) (-277 590740 592026 593843 "ES-" 594007 NIL ES- (NIL T) -8 NIL NIL) (-276 587115 587875 588655 "ESCONT" 589980 T ESCONT (NIL) -7 NIL NIL) (-275 586860 586892 586974 "ESCONT1" 587077 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL) (-274 586535 586585 586685 "ES2" 586804 NIL ES2 (NIL T T) -7 NIL NIL) (-273 586165 586223 586332 "ES1" 586471 NIL ES1 (NIL T T) -7 NIL NIL) (-272 585381 585510 585686 "ERROR" 586009 T ERROR (NIL) -7 NIL NIL) (-271 578884 585240 585331 "EQTBL" 585336 NIL EQTBL (NIL T T) -8 NIL NIL) (-270 571321 574202 575649 "EQ" 577470 NIL -3087 (NIL T) -8 NIL NIL) (-269 570953 571010 571119 "EQ2" 571258 NIL EQ2 (NIL T T) -7 NIL NIL) (-268 566245 567291 568384 "EP" 569892 NIL EP (NIL T) -7 NIL NIL) (-267 564828 565128 565445 "ENV" 565948 T ENV (NIL) -8 NIL NIL) (-266 563987 564551 564580 "ENTIRER" 564585 T ENTIRER (NIL) -9 NIL 564630) (-265 560443 561942 562312 "EMR" 563786 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL) (-264 559586 559771 559826 "ELTAGG" 560206 NIL ELTAGG (NIL T T) -9 NIL 560417) (-263 559305 559367 559508 "ELTAGG-" 559513 NIL ELTAGG- (NIL T T T) -8 NIL NIL) (-262 559093 559122 559177 "ELTAB" 559261 NIL ELTAB (NIL T T) -9 NIL NIL) (-261 558219 558365 558564 "ELFUTS" 558944 NIL ELFUTS (NIL T T) -7 NIL NIL) (-260 557960 558016 558045 "ELEMFUN" 558150 T ELEMFUN (NIL) -9 NIL NIL) (-259 557830 557851 557919 "ELEMFUN-" 557924 NIL ELEMFUN- (NIL T) -8 NIL NIL) (-258 552721 555930 555972 "ELAGG" 556912 NIL ELAGG (NIL T) -9 NIL 557375) (-257 551006 551440 552103 "ELAGG-" 552108 NIL ELAGG- (NIL T T) -8 NIL NIL) (-256 549662 549943 550238 "ELABEXPR" 550731 T ELABEXPR (NIL) -8 NIL NIL) (-255 542530 544329 545156 "EFUPXS" 548938 NIL EFUPXS (NIL T T T T) -8 NIL NIL) (-254 535980 537781 538591 "EFULS" 541806 NIL EFULS (NIL T T T) -8 NIL NIL) (-253 533411 533769 534247 "EFSTRUC" 535612 NIL EFSTRUC (NIL T T) -7 NIL NIL) (-252 522483 524048 525608 "EF" 531926 NIL EF (NIL T T) -7 NIL NIL) (-251 521584 521968 522117 "EAB" 522354 T EAB (NIL) -8 NIL NIL) (-250 520797 521543 521571 "E04UCFA" 521576 T E04UCFA (NIL) -8 NIL NIL) (-249 520010 520756 520784 "E04NAFA" 520789 T E04NAFA (NIL) -8 NIL NIL) (-248 519223 519969 519997 "E04MBFA" 520002 T E04MBFA (NIL) -8 NIL NIL) (-247 518436 519182 519210 "E04JAFA" 519215 T E04JAFA (NIL) -8 NIL NIL) (-246 517651 518395 518423 "E04GCFA" 518428 T E04GCFA (NIL) -8 NIL NIL) (-245 516866 517610 517638 "E04FDFA" 517643 T E04FDFA (NIL) -8 NIL NIL) (-244 516079 516825 516853 "E04DGFA" 516858 T E04DGFA (NIL) -8 NIL NIL) (-243 510264 511609 512971 "E04AGNT" 514737 T E04AGNT (NIL) -7 NIL NIL) (-242 508990 509470 509511 "DVARCAT" 509986 NIL DVARCAT (NIL T) -9 NIL 510184) (-241 508194 508406 508720 "DVARCAT-" 508725 NIL DVARCAT- (NIL T T) -8 NIL NIL) (-240 501056 507996 508123 "DSMP" 508128 NIL DSMP (NIL T T T) -8 NIL NIL) (-239 495866 497001 498069 "DROPT" 500008 T DROPT (NIL) -8 NIL NIL) (-238 495531 495590 495688 "DROPT1" 495801 NIL DROPT1 (NIL T) -7 NIL NIL) (-237 490646 491772 492909 "DROPT0" 494414 T DROPT0 (NIL) -7 NIL NIL) (-236 488991 489316 489702 "DRAWPT" 490280 T DRAWPT (NIL) -7 NIL NIL) (-235 483578 484501 485580 "DRAW" 487965 NIL DRAW (NIL T) -7 NIL NIL) (-234 483211 483264 483382 "DRAWHACK" 483519 NIL DRAWHACK (NIL T) -7 NIL NIL) (-233 481942 482211 482502 "DRAWCX" 482940 T DRAWCX (NIL) -7 NIL NIL) (-232 481460 481528 481678 "DRAWCURV" 481868 NIL DRAWCURV (NIL T T) -7 NIL NIL) (-231 471932 473890 476005 "DRAWCFUN" 479365 T DRAWCFUN (NIL) -7 NIL NIL) (-230 468745 470627 470669 "DQAGG" 471298 NIL DQAGG (NIL T) -9 NIL 471571) (-229 457251 463989 464072 "DPOLCAT" 465910 NIL DPOLCAT (NIL T T T T) -9 NIL 466454) (-228 452091 453437 455394 "DPOLCAT-" 455399 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL) (-227 446175 451953 452050 "DPMO" 452055 NIL DPMO (NIL NIL T T) -8 NIL NIL) (-226 440162 445956 446122 "DPMM" 446127 NIL DPMM (NIL NIL T T T) -8 NIL NIL) (-225 439675 439773 439893 "DOMAIN" 440062 T DOMAIN (NIL) -8 NIL NIL) (-224 433387 439312 439463 "DMP" 439576 NIL DMP (NIL NIL T) -8 NIL NIL) (-223 432987 433043 433187 "DLP" 433325 NIL DLP (NIL T) -7 NIL NIL) (-222 426631 432088 432315 "DLIST" 432792 NIL DLIST (NIL T) -8 NIL NIL) (-221 423477 425486 425528 "DLAGG" 426078 NIL DLAGG (NIL T) -9 NIL 426307) (-220 422186 422878 422907 "DIVRING" 423057 T DIVRING (NIL) -9 NIL 423165) (-219 421174 421427 421820 "DIVRING-" 421825 NIL DIVRING- (NIL T) -8 NIL NIL) (-218 419276 419633 420039 "DISPLAY" 420788 T DISPLAY (NIL) -7 NIL NIL) (-217 413165 419190 419253 "DIRPROD" 419258 NIL DIRPROD (NIL NIL T) -8 NIL NIL) (-216 412013 412216 412481 "DIRPROD2" 412958 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL) (-215 401643 407648 407702 "DIRPCAT" 408110 NIL DIRPCAT (NIL NIL T) -9 NIL 408937) (-214 398969 399611 400492 "DIRPCAT-" 400829 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL) (-213 398256 398416 398602 "DIOSP" 398803 T DIOSP (NIL) -7 NIL NIL) (-212 394958 397168 397210 "DIOPS" 397644 NIL DIOPS (NIL T) -9 NIL 397873) (-211 394507 394621 394812 "DIOPS-" 394817 NIL DIOPS- (NIL T T) -8 NIL NIL) (-210 393378 394016 394045 "DIFRING" 394232 T DIFRING (NIL) -9 NIL 394341) (-209 393024 393101 393253 "DIFRING-" 393258 NIL DIFRING- (NIL T) -8 NIL NIL) (-208 390813 392095 392136 "DIFEXT" 392495 NIL DIFEXT (NIL T) -9 NIL 392788) (-207 389099 389527 390192 "DIFEXT-" 390197 NIL DIFEXT- (NIL T T) -8 NIL NIL) (-206 386421 388631 388673 "DIAGG" 388678 NIL DIAGG (NIL T) -9 NIL 388698) (-205 385805 385962 386214 "DIAGG-" 386219 NIL DIAGG- (NIL T T) -8 NIL NIL) (-204 381270 384764 385041 "DHMATRIX" 385574 NIL DHMATRIX (NIL T) -8 NIL NIL) (-203 376882 377791 378801 "DFSFUN" 380280 T DFSFUN (NIL) -7 NIL NIL) (-202 371668 375596 375961 "DFLOAT" 376537 T DFLOAT (NIL) -8 NIL NIL) (-201 369901 370182 370577 "DFINTTLS" 371376 NIL DFINTTLS (NIL T T) -7 NIL NIL) (-200 366934 367936 368334 "DERHAM" 369568 NIL DERHAM (NIL T NIL) -8 NIL NIL) (-199 364783 366709 366798 "DEQUEUE" 366878 NIL DEQUEUE (NIL T) -8 NIL NIL) (-198 364001 364134 364329 "DEGRED" 364645 NIL DEGRED (NIL T T) -7 NIL NIL) (-197 360401 361146 361998 "DEFINTRF" 363229 NIL DEFINTRF (NIL T) -7 NIL NIL) (-196 357932 358401 358999 "DEFINTEF" 359920 NIL DEFINTEF (NIL T T) -7 NIL NIL) (-195 351763 357373 357539 "DECIMAL" 357786 T DECIMAL (NIL) -8 NIL NIL) (-194 349275 349733 350239 "DDFACT" 351307 NIL DDFACT (NIL T T) -7 NIL NIL) (-193 348871 348914 349065 "DBLRESP" 349226 NIL DBLRESP (NIL T T T T) -7 NIL NIL) (-192 346581 346915 347284 "DBASE" 348629 NIL DBASE (NIL T) -8 NIL NIL) (-191 345716 346540 346568 "D03FAFA" 346573 T D03FAFA (NIL) -8 NIL NIL) (-190 344852 345675 345703 "D03EEFA" 345708 T D03EEFA (NIL) -8 NIL NIL) (-189 342802 343268 343757 "D03AGNT" 344383 T D03AGNT (NIL) -7 NIL NIL) (-188 342120 342761 342789 "D02EJFA" 342794 T D02EJFA (NIL) -8 NIL NIL) (-187 341438 342079 342107 "D02CJFA" 342112 T D02CJFA (NIL) -8 NIL NIL) (-186 340756 341397 341425 "D02BHFA" 341430 T D02BHFA (NIL) -8 NIL NIL) (-185 340074 340715 340743 "D02BBFA" 340748 T D02BBFA (NIL) -8 NIL NIL) (-184 333272 334860 336466 "D02AGNT" 338488 T D02AGNT (NIL) -7 NIL NIL) (-183 331041 331563 332109 "D01WGTS" 332746 T D01WGTS (NIL) -7 NIL NIL) (-182 330144 331000 331028 "D01TRNS" 331033 T D01TRNS (NIL) -8 NIL NIL) (-181 329247 330103 330131 "D01GBFA" 330136 T D01GBFA (NIL) -8 NIL NIL) (-180 328350 329206 329234 "D01FCFA" 329239 T D01FCFA (NIL) -8 NIL NIL) (-179 327453 328309 328337 "D01ASFA" 328342 T D01ASFA (NIL) -8 NIL NIL) (-178 326556 327412 327440 "D01AQFA" 327445 T D01AQFA (NIL) -8 NIL NIL) (-177 325659 326515 326543 "D01APFA" 326548 T D01APFA (NIL) -8 NIL NIL) (-176 324762 325618 325646 "D01ANFA" 325651 T D01ANFA (NIL) -8 NIL NIL) (-175 323865 324721 324749 "D01AMFA" 324754 T D01AMFA (NIL) -8 NIL NIL) (-174 322968 323824 323852 "D01ALFA" 323857 T D01ALFA (NIL) -8 NIL NIL) (-173 322071 322927 322955 "D01AKFA" 322960 T D01AKFA (NIL) -8 NIL NIL) (-172 321174 322030 322058 "D01AJFA" 322063 T D01AJFA (NIL) -8 NIL NIL) (-171 314478 316027 317586 "D01AGNT" 319635 T D01AGNT (NIL) -7 NIL NIL) (-170 313815 313943 314095 "CYCLOTOM" 314346 T CYCLOTOM (NIL) -7 NIL NIL) (-169 310550 311263 311990 "CYCLES" 313108 T CYCLES (NIL) -7 NIL NIL) (-168 309862 309996 310167 "CVMP" 310411 NIL CVMP (NIL T) -7 NIL NIL) (-167 307644 307901 308276 "CTRIGMNP" 309590 NIL CTRIGMNP (NIL T T) -7 NIL NIL) (-166 307249 307332 307437 "CTORCALL" 307559 T CTORCALL (NIL) -8 NIL NIL) (-165 306623 306722 306875 "CSTTOOLS" 307146 NIL CSTTOOLS (NIL T T) -7 NIL NIL) (-164 302422 303079 303837 "CRFP" 305935 NIL CRFP (NIL T T) -7 NIL NIL) (-163 301469 301654 301882 "CRAPACK" 302226 NIL CRAPACK (NIL T) -7 NIL NIL) (-162 300853 300954 301158 "CPMATCH" 301345 NIL CPMATCH (NIL T T T) -7 NIL NIL) (-161 300578 300606 300712 "CPIMA" 300819 NIL CPIMA (NIL T T T) -7 NIL NIL) (-160 296942 297614 298332 "COORDSYS" 299913 NIL COORDSYS (NIL T) -7 NIL NIL) (-159 296326 296455 296605 "CONTOUR" 296812 T CONTOUR (NIL) -8 NIL NIL) (-158 292187 294329 294821 "CONTFRAC" 295866 NIL CONTFRAC (NIL T) -8 NIL NIL) (-157 291340 291904 291933 "COMRING" 291938 T COMRING (NIL) -9 NIL 291989) (-156 290421 290698 290882 "COMPPROP" 291176 T COMPPROP (NIL) -8 NIL NIL) (-155 290082 290117 290245 "COMPLPAT" 290380 NIL COMPLPAT (NIL T T T) -7 NIL NIL) (-154 280063 289891 290000 "COMPLEX" 290005 NIL COMPLEX (NIL T) -8 NIL NIL) (-153 279699 279756 279863 "COMPLEX2" 280000 NIL COMPLEX2 (NIL T T) -7 NIL NIL) (-152 279417 279452 279550 "COMPFACT" 279658 NIL COMPFACT (NIL T T) -7 NIL NIL) (-151 263751 274045 274086 "COMPCAT" 275088 NIL COMPCAT (NIL T) -9 NIL 276481) (-150 253266 256190 259817 "COMPCAT-" 260173 NIL COMPCAT- (NIL T T) -8 NIL NIL) (-149 252997 253025 253127 "COMMUPC" 253232 NIL COMMUPC (NIL T T T) -7 NIL NIL) (-148 252792 252825 252884 "COMMONOP" 252958 T COMMONOP (NIL) -7 NIL NIL) (-147 252375 252543 252630 "COMM" 252725 T COMM (NIL) -8 NIL NIL) (-146 251623 251817 251846 "COMBOPC" 252184 T COMBOPC (NIL) -9 NIL 252359) (-145 250519 250729 250971 "COMBINAT" 251413 NIL COMBINAT (NIL T) -7 NIL NIL) (-144 246717 247290 247930 "COMBF" 249941 NIL COMBF (NIL T T) -7 NIL NIL) (-143 245503 245833 246068 "COLOR" 246502 T COLOR (NIL) -8 NIL NIL) (-142 245143 245190 245315 "CMPLXRT" 245450 NIL CMPLXRT (NIL T T) -7 NIL NIL) (-141 240645 241673 242753 "CLIP" 244083 T CLIP (NIL) -7 NIL NIL) (-140 238983 239753 239991 "CLIF" 240473 NIL CLIF (NIL NIL T NIL) -8 NIL NIL) (-139 235205 237129 237171 "CLAGG" 238100 NIL CLAGG (NIL T) -9 NIL 238636) (-138 233627 234084 234667 "CLAGG-" 234672 NIL CLAGG- (NIL T T) -8 NIL NIL) (-137 233171 233256 233396 "CINTSLPE" 233536 NIL CINTSLPE (NIL T T) -7 NIL NIL) (-136 230672 231143 231691 "CHVAR" 232699 NIL CHVAR (NIL T T T) -7 NIL NIL) (-135 229894 230458 230487 "CHARZ" 230492 T CHARZ (NIL) -9 NIL 230506) (-134 229648 229688 229766 "CHARPOL" 229848 NIL CHARPOL (NIL T) -7 NIL NIL) (-133 228754 229351 229380 "CHARNZ" 229427 T CHARNZ (NIL) -9 NIL 229482) (-132 226777 227444 227779 "CHAR" 228439 T CHAR (NIL) -8 NIL NIL) (-131 226502 226563 226592 "CFCAT" 226703 T CFCAT (NIL) -9 NIL NIL) (-130 225747 225858 226040 "CDEN" 226386 NIL CDEN (NIL T T T) -7 NIL NIL) (-129 221739 224900 225180 "CCLASS" 225487 T CCLASS (NIL) -8 NIL NIL) (-128 216792 217768 218521 "CARTEN" 221042 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL) (-127 215900 216048 216269 "CARTEN2" 216639 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL) (-126 214197 215052 215308 "CARD" 215664 T CARD (NIL) -8 NIL NIL) (-125 213569 213897 213926 "CACHSET" 214058 T CACHSET (NIL) -9 NIL 214135) (-124 213065 213361 213390 "CABMON" 213440 T CABMON (NIL) -9 NIL 213496) (-123 210622 212757 212864 "BTREE" 212991 NIL BTREE (NIL T) -8 NIL NIL) (-122 208120 210270 210392 "BTOURN" 210532 NIL BTOURN (NIL T) -8 NIL NIL) (-121 205538 207591 207633 "BTCAT" 207701 NIL BTCAT (NIL T) -9 NIL 207778) (-120 205205 205285 205434 "BTCAT-" 205439 NIL BTCAT- (NIL T T) -8 NIL NIL) (-119 200425 204296 204325 "BTAGG" 204581 T BTAGG (NIL) -9 NIL 204760) (-118 199848 199992 200222 "BTAGG-" 200227 NIL BTAGG- (NIL T) -8 NIL NIL) (-117 196892 199126 199341 "BSTREE" 199665 NIL BSTREE (NIL T) -8 NIL NIL) (-116 196030 196156 196340 "BRILL" 196748 NIL BRILL (NIL T) -7 NIL NIL) (-115 192731 194758 194800 "BRAGG" 195449 NIL BRAGG (NIL T) -9 NIL 195706) (-114 191260 191666 192221 "BRAGG-" 192226 NIL BRAGG- (NIL T T) -8 NIL NIL) (-113 184468 190606 190790 "BPADICRT" 191108 NIL BPADICRT (NIL NIL) -8 NIL NIL) (-112 182772 184405 184450 "BPADIC" 184455 NIL BPADIC (NIL NIL) -8 NIL NIL) (-111 182472 182502 182615 "BOUNDZRO" 182736 NIL BOUNDZRO (NIL T T) -7 NIL NIL) (-110 177987 179078 179945 "BOP" 181625 T BOP (NIL) -8 NIL NIL) (-109 175608 176052 176572 "BOP1" 177500 NIL BOP1 (NIL T) -7 NIL NIL) (-108 174227 174938 175161 "BOOLEAN" 175405 T BOOLEAN (NIL) -8 NIL NIL) (-107 173593 173971 174024 "BMODULE" 174029 NIL BMODULE (NIL T T) -9 NIL 174093) (-106 169403 173391 173464 "BITS" 173540 T BITS (NIL) -8 NIL NIL) (-105 168500 168935 169087 "BINFILE" 169271 T BINFILE (NIL) -8 NIL NIL) (-104 167912 168034 168176 "BINDING" 168378 T BINDING (NIL) -8 NIL NIL) (-103 161747 167356 167521 "BINARY" 167767 T BINARY (NIL) -8 NIL NIL) (-102 159574 161002 161044 "BGAGG" 161304 NIL BGAGG (NIL T) -9 NIL 161441) (-101 159405 159437 159528 "BGAGG-" 159533 NIL BGAGG- (NIL T T) -8 NIL NIL) (-100 158503 158789 158994 "BFUNCT" 159220 T BFUNCT (NIL) -8 NIL NIL) (-99 157204 157382 157667 "BEZOUT" 158327 NIL BEZOUT (NIL T T T T T) -7 NIL NIL) (-98 153729 156064 156392 "BBTREE" 156907 NIL BBTREE (NIL T) -8 NIL NIL) (-97 153466 153519 153546 "BASTYPE" 153663 T BASTYPE (NIL) -9 NIL NIL) (-96 153321 153350 153420 "BASTYPE-" 153425 NIL BASTYPE- (NIL T) -8 NIL NIL) (-95 152759 152835 152985 "BALFACT" 153232 NIL BALFACT (NIL T T) -7 NIL NIL) (-94 151581 152178 152363 "AUTOMOR" 152604 NIL AUTOMOR (NIL T) -8 NIL NIL) (-93 151306 151311 151338 "ATTREG" 151343 T ATTREG (NIL) -9 NIL NIL) (-92 149585 150003 150355 "ATTRBUT" 150972 T ATTRBUT (NIL) -8 NIL NIL) (-91 149120 149233 149260 "ATRIG" 149461 T ATRIG (NIL) -9 NIL NIL) (-90 148929 148970 149057 "ATRIG-" 149062 NIL ATRIG- (NIL T) -8 NIL NIL) (-89 147126 148705 148793 "ASTACK" 148872 NIL ASTACK (NIL T) -8 NIL NIL) (-88 145631 145928 146293 "ASSOCEQ" 146808 NIL ASSOCEQ (NIL T T) -7 NIL NIL) (-87 144663 145290 145414 "ASP9" 145538 NIL ASP9 (NIL NIL) -8 NIL NIL) (-86 144427 144611 144650 "ASP8" 144655 NIL ASP8 (NIL NIL) -8 NIL NIL) (-85 143297 144032 144174 "ASP80" 144316 NIL ASP80 (NIL NIL) -8 NIL NIL) (-84 142196 142932 143064 "ASP7" 143196 NIL ASP7 (NIL NIL) -8 NIL NIL) (-83 141152 141873 141991 "ASP78" 142109 NIL ASP78 (NIL NIL) -8 NIL NIL) (-82 140123 140832 140949 "ASP77" 141066 NIL ASP77 (NIL NIL) -8 NIL NIL) (-81 139038 139761 139892 "ASP74" 140023 NIL ASP74 (NIL NIL) -8 NIL NIL) (-80 137939 138673 138805 "ASP73" 138937 NIL ASP73 (NIL NIL) -8 NIL NIL) (-79 136894 137616 137734 "ASP6" 137852 NIL ASP6 (NIL NIL) -8 NIL NIL) (-78 135843 136571 136689 "ASP55" 136807 NIL ASP55 (NIL NIL) -8 NIL NIL) (-77 134793 135517 135636 "ASP50" 135755 NIL ASP50 (NIL NIL) -8 NIL NIL) (-76 133881 134494 134604 "ASP4" 134714 NIL ASP4 (NIL NIL) -8 NIL NIL) (-75 132969 133582 133692 "ASP49" 133802 NIL ASP49 (NIL NIL) -8 NIL NIL) (-74 131754 132508 132676 "ASP42" 132858 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL) (-73 130532 131287 131457 "ASP41" 131641 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL) (-72 129484 130209 130327 "ASP35" 130445 NIL ASP35 (NIL NIL) -8 NIL NIL) (-71 129249 129432 129471 "ASP34" 129476 NIL ASP34 (NIL NIL) -8 NIL NIL) (-70 128986 129053 129129 "ASP33" 129204 NIL ASP33 (NIL NIL) -8 NIL NIL) (-69 127882 128621 128753 "ASP31" 128885 NIL ASP31 (NIL NIL) -8 NIL NIL) (-68 127647 127830 127869 "ASP30" 127874 NIL ASP30 (NIL NIL) -8 NIL NIL) (-67 127382 127451 127527 "ASP29" 127602 NIL ASP29 (NIL NIL) -8 NIL NIL) (-66 127147 127330 127369 "ASP28" 127374 NIL ASP28 (NIL NIL) -8 NIL NIL) (-65 126912 127095 127134 "ASP27" 127139 NIL ASP27 (NIL NIL) -8 NIL NIL) (-64 125996 126610 126721 "ASP24" 126832 NIL ASP24 (NIL NIL) -8 NIL NIL) (-63 124913 125637 125767 "ASP20" 125897 NIL ASP20 (NIL NIL) -8 NIL NIL) (-62 124001 124614 124724 "ASP1" 124834 NIL ASP1 (NIL NIL) -8 NIL NIL) (-61 122945 123675 123794 "ASP19" 123913 NIL ASP19 (NIL NIL) -8 NIL NIL) (-60 122682 122749 122825 "ASP12" 122900 NIL ASP12 (NIL NIL) -8 NIL NIL) (-59 121535 122281 122425 "ASP10" 122569 NIL ASP10 (NIL NIL) -8 NIL NIL) (-58 119434 121379 121470 "ARRAY2" 121475 NIL ARRAY2 (NIL T) -8 NIL NIL) (-57 115250 119082 119196 "ARRAY1" 119351 NIL ARRAY1 (NIL T) -8 NIL NIL) (-56 114282 114455 114676 "ARRAY12" 115073 NIL ARRAY12 (NIL T T) -7 NIL NIL) (-55 108641 110512 110588 "ARR2CAT" 113218 NIL ARR2CAT (NIL T T T) -9 NIL 113976) (-54 106075 106819 107773 "ARR2CAT-" 107778 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL) (-53 104835 104985 105288 "APPRULE" 105913 NIL APPRULE (NIL T T T) -7 NIL NIL) (-52 104488 104536 104654 "APPLYORE" 104781 NIL APPLYORE (NIL T T T) -7 NIL NIL) (-51 103462 103753 103948 "ANY" 104311 T ANY (NIL) -8 NIL NIL) (-50 102740 102863 103020 "ANY1" 103336 NIL ANY1 (NIL T) -7 NIL NIL) (-49 100272 101190 101515 "ANTISYM" 102465 NIL ANTISYM (NIL T NIL) -8 NIL NIL) (-48 100099 100231 100258 "ANON" 100263 T ANON (NIL) -8 NIL NIL) (-47 94176 98644 99095 "AN" 99666 T AN (NIL) -8 NIL NIL) (-46 90529 91927 91978 "AMR" 92717 NIL AMR (NIL T T) -9 NIL 93316) (-45 89642 89863 90225 "AMR-" 90230 NIL AMR- (NIL T T T) -8 NIL NIL) (-44 74192 89559 89620 "ALIST" 89625 NIL ALIST (NIL T T) -8 NIL NIL) (-43 71029 73786 73955 "ALGSC" 74110 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL) (-42 67585 68139 68746 "ALGPKG" 70469 NIL ALGPKG (NIL T T) -7 NIL NIL) (-41 66862 66963 67147 "ALGMFACT" 67471 NIL ALGMFACT (NIL T T T) -7 NIL NIL) (-40 62612 63292 63946 "ALGMANIP" 66386 NIL ALGMANIP (NIL T T) -7 NIL NIL) (-39 53931 62238 62388 "ALGFF" 62545 NIL ALGFF (NIL T T T NIL) -8 NIL NIL) (-38 53127 53258 53437 "ALGFACT" 53789 NIL ALGFACT (NIL T) -7 NIL NIL) (-37 52117 52727 52766 "ALGEBRA" 52826 NIL ALGEBRA (NIL T) -9 NIL 52884) (-36 51835 51894 52026 "ALGEBRA-" 52031 NIL ALGEBRA- (NIL T T) -8 NIL NIL) (-35 34095 49838 49891 "ALAGG" 50027 NIL ALAGG (NIL T T) -9 NIL 50188) (-34 33630 33743 33770 "AHYP" 33971 T AHYP (NIL) -9 NIL NIL) (-33 32560 32808 32835 "AGG" 33334 T AGG (NIL) -9 NIL 33613) (-32 31994 32156 32370 "AGG-" 32375 NIL AGG- (NIL T) -8 NIL NIL) (-31 29681 30099 30516 "AF" 31637 NIL AF (NIL T T) -7 NIL NIL) (-30 28950 29208 29364 "ACPLOT" 29543 T ACPLOT (NIL) -8 NIL NIL) (-29 18416 26362 26414 "ACFS" 27125 NIL ACFS (NIL T) -9 NIL 27364) (-28 16430 16920 17695 "ACFS-" 17700 NIL ACFS- (NIL T T) -8 NIL NIL) (-27 12697 14653 14680 "ACF" 15559 T ACF (NIL) -9 NIL 15971) (-26 11401 11735 12228 "ACF-" 12233 NIL ACF- (NIL T) -8 NIL NIL) (-25 10999 11168 11195 "ABELSG" 11287 T ABELSG (NIL) -9 NIL 11352) (-24 10866 10891 10957 "ABELSG-" 10962 NIL ABELSG- (NIL T) -8 NIL NIL) (-23 10235 10496 10523 "ABELMON" 10693 T ABELMON (NIL) -9 NIL 10805) (-22 9899 9983 10121 "ABELMON-" 10126 NIL ABELMON- (NIL T) -8 NIL NIL) (-21 9233 9579 9606 "ABELGRP" 9731 T ABELGRP (NIL) -9 NIL 9813) (-20 8696 8825 9041 "ABELGRP-" 9046 NIL ABELGRP- (NIL T) -8 NIL NIL) (-19 4333 8035 8075 "A1AGG" 8080 NIL A1AGG (NIL T) -9 NIL 8120) (-18 30 1251 2813 "A1AGG-" 2818 NIL A1AGG- (NIL T T) -8 NIL NIL)) \ No newline at end of file
+((-1197 3137810 3137815 3137820 "NIL" NIL T NIL (NIL) NIL NIL NIL) (-3 3137795 3137800 3137805 "NIL" NIL NIL NIL (NIL) -8 NIL NIL) (-2 3137780 3137785 3137790 "NIL" NIL NIL NIL (NIL) -8 NIL NIL) (-1 3137765 3137770 3137775 "NIL" NIL NIL NIL (NIL) -8 NIL NIL) (0 3137750 3137755 3137760 "NIL" NIL NIL NIL (NIL) -8 NIL NIL) (-1192 3136880 3137625 3137702 "ZMOD" 3137707 NIL ZMOD (NIL NIL) -8 NIL NIL) (-1191 3135990 3136154 3136363 "ZLINDEP" 3136712 NIL ZLINDEP (NIL T) -7 NIL NIL) (-1190 3125394 3127139 3129091 "ZDSOLVE" 3134139 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL) (-1189 3124640 3124781 3124970 "YSTREAM" 3125240 NIL YSTREAM (NIL T) -7 NIL NIL) (-1188 3122408 3123945 3124148 "XRPOLY" 3124483 NIL XRPOLY (NIL T T) -8 NIL NIL) (-1187 3118870 3120199 3120781 "XPR" 3121872 NIL XPR (NIL T T) -8 NIL NIL) (-1186 3116584 3118205 3118408 "XPOLY" 3118701 NIL XPOLY (NIL T) -8 NIL NIL) (-1185 3114397 3115775 3115830 "XPOLYC" 3116115 NIL XPOLYC (NIL T T) -9 NIL 3116228) (-1184 3110769 3112914 3113302 "XPBWPOLY" 3114055 NIL XPBWPOLY (NIL T T) -8 NIL NIL) (-1183 3106696 3109009 3109052 "XF" 3109673 NIL XF (NIL T) -9 NIL 3110072) (-1182 3106317 3106405 3106574 "XF-" 3106579 NIL XF- (NIL T T) -8 NIL NIL) (-1181 3101696 3102995 3103050 "XFALG" 3105198 NIL XFALG (NIL T T) -9 NIL 3105985) (-1180 3100833 3100937 3101141 "XEXPPKG" 3101588 NIL XEXPPKG (NIL T T T) -7 NIL NIL) (-1179 3098931 3100684 3100779 "XDPOLY" 3100784 NIL XDPOLY (NIL T T) -8 NIL NIL) (-1178 3097809 3098419 3098462 "XALG" 3098524 NIL XALG (NIL T) -9 NIL 3098643) (-1177 3091285 3095793 3096286 "WUTSET" 3097401 NIL WUTSET (NIL T T T T) -8 NIL NIL) (-1176 3089097 3089904 3090255 "WP" 3091067 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL) (-1175 3087983 3088181 3088476 "WFFINTBS" 3088894 NIL WFFINTBS (NIL T T T T) -7 NIL NIL) (-1174 3085887 3086314 3086776 "WEIER" 3087555 NIL WEIER (NIL T) -7 NIL NIL) (-1173 3085035 3085459 3085502 "VSPACE" 3085638 NIL VSPACE (NIL T) -9 NIL 3085712) (-1172 3084873 3084900 3084991 "VSPACE-" 3084996 NIL VSPACE- (NIL T T) -8 NIL NIL) (-1171 3084619 3084662 3084733 "VOID" 3084824 T VOID (NIL) -8 NIL NIL) (-1170 3082755 3083114 3083520 "VIEW" 3084235 T VIEW (NIL) -7 NIL NIL) (-1169 3079180 3079818 3080555 "VIEWDEF" 3082040 T VIEWDEF (NIL) -7 NIL NIL) (-1168 3068519 3070728 3072901 "VIEW3D" 3077029 T VIEW3D (NIL) -8 NIL NIL) (-1167 3060801 3062430 3064009 "VIEW2D" 3066962 T VIEW2D (NIL) -8 NIL NIL) (-1166 3056210 3060571 3060663 "VECTOR" 3060744 NIL VECTOR (NIL T) -8 NIL NIL) (-1165 3054787 3055046 3055364 "VECTOR2" 3055940 NIL VECTOR2 (NIL T T) -7 NIL NIL) (-1164 3048326 3052578 3052622 "VECTCAT" 3053610 NIL VECTCAT (NIL T) -9 NIL 3054194) (-1163 3047340 3047594 3047984 "VECTCAT-" 3047989 NIL VECTCAT- (NIL T T) -8 NIL NIL) (-1162 3046821 3046991 3047111 "VARIABLE" 3047255 NIL VARIABLE (NIL NIL) -8 NIL NIL) (-1161 3046753 3046758 3046789 "UTYPE" 3046794 T UTYPE (NIL) -9 NIL NIL) (-1160 3045588 3045742 3046003 "UTSODETL" 3046579 NIL UTSODETL (NIL T T T T) -7 NIL NIL) (-1159 3043028 3043488 3044012 "UTSODE" 3045129 NIL UTSODE (NIL T T) -7 NIL NIL) (-1158 3034875 3040668 3041156 "UTS" 3042597 NIL UTS (NIL T NIL NIL) -8 NIL NIL) (-1157 3026223 3031585 3031628 "UTSCAT" 3032729 NIL UTSCAT (NIL T) -9 NIL 3033486) (-1156 3023579 3024294 3025282 "UTSCAT-" 3025287 NIL UTSCAT- (NIL T T) -8 NIL NIL) (-1155 3023210 3023253 3023384 "UTS2" 3023530 NIL UTS2 (NIL T T T T) -7 NIL NIL) (-1154 3017485 3020050 3020094 "URAGG" 3022164 NIL URAGG (NIL T) -9 NIL 3022886) (-1153 3014424 3015287 3016410 "URAGG-" 3016415 NIL URAGG- (NIL T T) -8 NIL NIL) (-1152 3010110 3013041 3013512 "UPXSSING" 3014088 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL) (-1151 3002004 3009231 3009511 "UPXS" 3009887 NIL UPXS (NIL T NIL NIL) -8 NIL NIL) (-1150 2995036 3001909 3001980 "UPXSCONS" 3001985 NIL UPXSCONS (NIL T T) -8 NIL NIL) (-1149 2985328 2992155 2992217 "UPXSCCA" 2992866 NIL UPXSCCA (NIL T T) -9 NIL 2993107) (-1148 2984967 2985052 2985225 "UPXSCCA-" 2985230 NIL UPXSCCA- (NIL T T T) -8 NIL NIL) (-1147 2975181 2981781 2981824 "UPXSCAT" 2982467 NIL UPXSCAT (NIL T) -9 NIL 2983075) (-1146 2974615 2974694 2974871 "UPXS2" 2975096 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL) (-1145 2973269 2973522 2973873 "UPSQFREE" 2974358 NIL UPSQFREE (NIL T T) -7 NIL NIL) (-1144 2967164 2970216 2970271 "UPSCAT" 2971420 NIL UPSCAT (NIL T T) -9 NIL 2972193) (-1143 2966378 2966582 2966905 "UPSCAT-" 2966910 NIL UPSCAT- (NIL T T T) -8 NIL NIL) (-1142 2952510 2960507 2960550 "UPOLYC" 2962628 NIL UPOLYC (NIL T) -9 NIL 2963848) (-1141 2943903 2946307 2949432 "UPOLYC-" 2949437 NIL UPOLYC- (NIL T T) -8 NIL NIL) (-1140 2943534 2943577 2943708 "UPOLYC2" 2943854 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL) (-1139 2934993 2943103 2943240 "UP" 2943444 NIL UP (NIL NIL T) -8 NIL NIL) (-1138 2934336 2934443 2934606 "UPMP" 2934882 NIL UPMP (NIL T T) -7 NIL NIL) (-1137 2933889 2933970 2934109 "UPDIVP" 2934249 NIL UPDIVP (NIL T T) -7 NIL NIL) (-1136 2932457 2932706 2933022 "UPDECOMP" 2933638 NIL UPDECOMP (NIL T T) -7 NIL NIL) (-1135 2931692 2931804 2931989 "UPCDEN" 2932341 NIL UPCDEN (NIL T T T) -7 NIL NIL) (-1134 2931215 2931284 2931431 "UP2" 2931617 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL) (-1133 2929732 2930419 2930696 "UNISEG" 2930973 NIL UNISEG (NIL T) -8 NIL NIL) (-1132 2928947 2929074 2929279 "UNISEG2" 2929575 NIL UNISEG2 (NIL T T) -7 NIL NIL) (-1131 2928007 2928187 2928413 "UNIFACT" 2928763 NIL UNIFACT (NIL T) -7 NIL NIL) (-1130 2911906 2927188 2927438 "ULS" 2927814 NIL ULS (NIL T NIL NIL) -8 NIL NIL) (-1129 2899874 2911811 2911882 "ULSCONS" 2911887 NIL ULSCONS (NIL T T) -8 NIL NIL) (-1128 2882627 2894637 2894699 "ULSCCAT" 2895411 NIL ULSCCAT (NIL T T) -9 NIL 2895707) (-1127 2881678 2881923 2882310 "ULSCCAT-" 2882315 NIL ULSCCAT- (NIL T T T) -8 NIL NIL) (-1126 2871671 2878185 2878228 "ULSCAT" 2879084 NIL ULSCAT (NIL T) -9 NIL 2879814) (-1125 2871105 2871184 2871361 "ULS2" 2871586 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL) (-1124 2869502 2870469 2870500 "UFD" 2870712 T UFD (NIL) -9 NIL 2870826) (-1123 2869296 2869342 2869437 "UFD-" 2869442 NIL UFD- (NIL T) -8 NIL NIL) (-1122 2868378 2868561 2868777 "UDVO" 2869102 T UDVO (NIL) -7 NIL NIL) (-1121 2866194 2866603 2867074 "UDPO" 2867942 NIL UDPO (NIL T) -7 NIL NIL) (-1120 2866126 2866131 2866162 "TYPE" 2866167 T TYPE (NIL) -9 NIL NIL) (-1119 2865097 2865299 2865539 "TWOFACT" 2865920 NIL TWOFACT (NIL T) -7 NIL NIL) (-1118 2864035 2864372 2864635 "TUPLE" 2864869 NIL TUPLE (NIL T) -8 NIL NIL) (-1117 2861726 2862245 2862784 "TUBETOOL" 2863518 T TUBETOOL (NIL) -7 NIL NIL) (-1116 2860575 2860780 2861021 "TUBE" 2861519 NIL TUBE (NIL T) -8 NIL NIL) (-1115 2855299 2859553 2859835 "TS" 2860327 NIL TS (NIL T) -8 NIL NIL) (-1114 2844002 2848094 2848191 "TSETCAT" 2853425 NIL TSETCAT (NIL T T T T) -9 NIL 2854956) (-1113 2838737 2840335 2842225 "TSETCAT-" 2842230 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL) (-1112 2833000 2833846 2834788 "TRMANIP" 2837873 NIL TRMANIP (NIL T T) -7 NIL NIL) (-1111 2832441 2832504 2832667 "TRIMAT" 2832932 NIL TRIMAT (NIL T T T T) -7 NIL NIL) (-1110 2830247 2830484 2830847 "TRIGMNIP" 2832190 NIL TRIGMNIP (NIL T T) -7 NIL NIL) (-1109 2829766 2829879 2829910 "TRIGCAT" 2830123 T TRIGCAT (NIL) -9 NIL NIL) (-1108 2829435 2829514 2829655 "TRIGCAT-" 2829660 NIL TRIGCAT- (NIL T) -8 NIL NIL) (-1107 2826334 2828295 2828575 "TREE" 2829190 NIL TREE (NIL T) -8 NIL NIL) (-1106 2825607 2826135 2826166 "TRANFUN" 2826201 T TRANFUN (NIL) -9 NIL 2826267) (-1105 2824886 2825077 2825357 "TRANFUN-" 2825362 NIL TRANFUN- (NIL T) -8 NIL NIL) (-1104 2824690 2824722 2824783 "TOPSP" 2824847 T TOPSP (NIL) -7 NIL NIL) (-1103 2824042 2824157 2824310 "TOOLSIGN" 2824571 NIL TOOLSIGN (NIL T) -7 NIL NIL) (-1102 2822703 2823219 2823458 "TEXTFILE" 2823825 T TEXTFILE (NIL) -8 NIL NIL) (-1101 2820568 2821082 2821520 "TEX" 2822287 T TEX (NIL) -8 NIL NIL) (-1100 2820349 2820380 2820452 "TEX1" 2820531 NIL TEX1 (NIL T) -7 NIL NIL) (-1099 2819997 2820060 2820150 "TEMUTL" 2820281 T TEMUTL (NIL) -7 NIL NIL) (-1098 2818151 2818431 2818756 "TBCMPPK" 2819720 NIL TBCMPPK (NIL T T) -7 NIL NIL) (-1097 2810039 2816311 2816368 "TBAGG" 2816768 NIL TBAGG (NIL T T) -9 NIL 2816979) (-1096 2805109 2806597 2808351 "TBAGG-" 2808356 NIL TBAGG- (NIL T T T) -8 NIL NIL) (-1095 2804493 2804600 2804745 "TANEXP" 2804998 NIL TANEXP (NIL T) -7 NIL NIL) (-1094 2797994 2804350 2804443 "TABLE" 2804448 NIL TABLE (NIL T T) -8 NIL NIL) (-1093 2797407 2797505 2797643 "TABLEAU" 2797891 NIL TABLEAU (NIL T) -8 NIL NIL) (-1092 2792015 2793235 2794483 "TABLBUMP" 2796193 NIL TABLBUMP (NIL T) -7 NIL NIL) (-1091 2788478 2789173 2789956 "SYSSOLP" 2791266 NIL SYSSOLP (NIL T) -7 NIL NIL) (-1090 2784769 2785477 2786211 "SYNTAX" 2787766 T SYNTAX (NIL) -8 NIL NIL) (-1089 2781903 2782511 2783149 "SYMTAB" 2784153 T SYMTAB (NIL) -8 NIL NIL) (-1088 2777152 2778054 2779037 "SYMS" 2780942 T SYMS (NIL) -8 NIL NIL) (-1087 2774385 2776612 2776841 "SYMPOLY" 2776957 NIL SYMPOLY (NIL T) -8 NIL NIL) (-1086 2773905 2773980 2774102 "SYMFUNC" 2774297 NIL SYMFUNC (NIL T) -7 NIL NIL) (-1085 2769883 2771142 2771964 "SYMBOL" 2773105 T SYMBOL (NIL) -8 NIL NIL) (-1084 2763422 2765111 2766831 "SWITCH" 2768185 T SWITCH (NIL) -8 NIL NIL) (-1083 2756655 2762249 2762551 "SUTS" 2763177 NIL SUTS (NIL T NIL NIL) -8 NIL NIL) (-1082 2748548 2755776 2756056 "SUPXS" 2756432 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL) (-1081 2740080 2748169 2748294 "SUP" 2748457 NIL SUP (NIL T) -8 NIL NIL) (-1080 2739239 2739366 2739583 "SUPFRACF" 2739948 NIL SUPFRACF (NIL T T T T) -7 NIL NIL) (-1079 2738864 2738923 2739034 "SUP2" 2739174 NIL SUP2 (NIL T T) -7 NIL NIL) (-1078 2737282 2737556 2737918 "SUMRF" 2738563 NIL SUMRF (NIL T) -7 NIL NIL) (-1077 2736599 2736665 2736863 "SUMFS" 2737203 NIL SUMFS (NIL T T) -7 NIL NIL) (-1076 2720538 2735780 2736030 "SULS" 2736406 NIL SULS (NIL T NIL NIL) -8 NIL NIL) (-1075 2719860 2720063 2720203 "SUCH" 2720446 NIL SUCH (NIL T T) -8 NIL NIL) (-1074 2713787 2714799 2715757 "SUBSPACE" 2718948 NIL SUBSPACE (NIL NIL T) -8 NIL NIL) (-1073 2713217 2713307 2713471 "SUBRESP" 2713675 NIL SUBRESP (NIL T T) -7 NIL NIL) (-1072 2706586 2707882 2709193 "STTF" 2711953 NIL STTF (NIL T) -7 NIL NIL) (-1071 2700759 2701879 2703026 "STTFNC" 2705486 NIL STTFNC (NIL T) -7 NIL NIL) (-1070 2692110 2693977 2695770 "STTAYLOR" 2699000 NIL STTAYLOR (NIL T) -7 NIL NIL) (-1069 2685354 2691974 2692057 "STRTBL" 2692062 NIL STRTBL (NIL T) -8 NIL NIL) (-1068 2680745 2685309 2685340 "STRING" 2685345 T STRING (NIL) -8 NIL NIL) (-1067 2675633 2680118 2680149 "STRICAT" 2680208 T STRICAT (NIL) -9 NIL 2680270) (-1066 2668349 2673156 2673776 "STREAM" 2675048 NIL STREAM (NIL T) -8 NIL NIL) (-1065 2667859 2667936 2668080 "STREAM3" 2668266 NIL STREAM3 (NIL T T T) -7 NIL NIL) (-1064 2666841 2667024 2667259 "STREAM2" 2667672 NIL STREAM2 (NIL T T) -7 NIL NIL) (-1063 2666529 2666581 2666674 "STREAM1" 2666783 NIL STREAM1 (NIL T) -7 NIL NIL) (-1062 2665545 2665726 2665957 "STINPROD" 2666345 NIL STINPROD (NIL T) -7 NIL NIL) (-1061 2665123 2665307 2665338 "STEP" 2665418 T STEP (NIL) -9 NIL 2665496) (-1060 2658666 2665022 2665099 "STBL" 2665104 NIL STBL (NIL T T NIL) -8 NIL NIL) (-1059 2653841 2657888 2657932 "STAGG" 2658085 NIL STAGG (NIL T) -9 NIL 2658174) (-1058 2651543 2652145 2653017 "STAGG-" 2653022 NIL STAGG- (NIL T T) -8 NIL NIL) (-1057 2649738 2651313 2651405 "STACK" 2651486 NIL STACK (NIL T) -8 NIL NIL) (-1056 2642469 2647885 2648340 "SREGSET" 2649368 NIL SREGSET (NIL T T T T) -8 NIL NIL) (-1055 2634909 2636277 2637789 "SRDCMPK" 2641075 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL) (-1054 2627876 2632349 2632380 "SRAGG" 2633683 T SRAGG (NIL) -9 NIL 2634291) (-1053 2626893 2627148 2627527 "SRAGG-" 2627532 NIL SRAGG- (NIL T) -8 NIL NIL) (-1052 2621342 2625812 2626239 "SQMATRIX" 2626512 NIL SQMATRIX (NIL NIL T) -8 NIL NIL) (-1051 2615094 2618062 2618788 "SPLTREE" 2620688 NIL SPLTREE (NIL T T) -8 NIL NIL) (-1050 2611084 2611750 2612396 "SPLNODE" 2614520 NIL SPLNODE (NIL T T) -8 NIL NIL) (-1049 2610130 2610363 2610394 "SPFCAT" 2610838 T SPFCAT (NIL) -9 NIL NIL) (-1048 2608867 2609077 2609341 "SPECOUT" 2609888 T SPECOUT (NIL) -7 NIL NIL) (-1047 2608628 2608668 2608737 "SPADPRSR" 2608820 T SPADPRSR (NIL) -7 NIL NIL) (-1046 2600650 2602397 2602440 "SPACEC" 2606763 NIL SPACEC (NIL T) -9 NIL 2608579) (-1045 2598822 2600583 2600631 "SPACE3" 2600636 NIL SPACE3 (NIL T) -8 NIL NIL) (-1044 2597574 2597745 2598036 "SORTPAK" 2598627 NIL SORTPAK (NIL T T) -7 NIL NIL) (-1043 2595630 2595933 2596351 "SOLVETRA" 2597238 NIL SOLVETRA (NIL T) -7 NIL NIL) (-1042 2594641 2594863 2595137 "SOLVESER" 2595403 NIL SOLVESER (NIL T) -7 NIL NIL) (-1041 2589861 2590742 2591744 "SOLVERAD" 2593693 NIL SOLVERAD (NIL T) -7 NIL NIL) (-1040 2585676 2586285 2587014 "SOLVEFOR" 2589228 NIL SOLVEFOR (NIL T T) -7 NIL NIL) (-1039 2579975 2585027 2585124 "SNTSCAT" 2585129 NIL SNTSCAT (NIL T T T T) -9 NIL 2585199) (-1038 2574080 2578306 2578696 "SMTS" 2579665 NIL SMTS (NIL T T T) -8 NIL NIL) (-1037 2568491 2573969 2574045 "SMP" 2574050 NIL SMP (NIL T T) -8 NIL NIL) (-1036 2566650 2566951 2567349 "SMITH" 2568188 NIL SMITH (NIL T T T T) -7 NIL NIL) (-1035 2559614 2563810 2563913 "SMATCAT" 2565253 NIL SMATCAT (NIL NIL T T T) -9 NIL 2565802) (-1034 2556555 2557378 2558555 "SMATCAT-" 2558560 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL) (-1033 2554268 2555791 2555835 "SKAGG" 2556096 NIL SKAGG (NIL T) -9 NIL 2556231) (-1032 2550326 2553372 2553650 "SINT" 2554012 T SINT (NIL) -8 NIL NIL) (-1031 2550098 2550136 2550202 "SIMPAN" 2550282 T SIMPAN (NIL) -7 NIL NIL) (-1030 2548936 2549157 2549432 "SIGNRF" 2549857 NIL SIGNRF (NIL T) -7 NIL NIL) (-1029 2547745 2547896 2548186 "SIGNEF" 2548765 NIL SIGNEF (NIL T T) -7 NIL NIL) (-1028 2545435 2545889 2546395 "SHP" 2547286 NIL SHP (NIL T NIL) -7 NIL NIL) (-1027 2539288 2545336 2545412 "SHDP" 2545417 NIL SHDP (NIL NIL NIL T) -8 NIL NIL) (-1026 2538777 2538969 2539000 "SGROUP" 2539152 T SGROUP (NIL) -9 NIL 2539239) (-1025 2538547 2538599 2538703 "SGROUP-" 2538708 NIL SGROUP- (NIL T) -8 NIL NIL) (-1024 2535383 2536080 2536803 "SGCF" 2537846 T SGCF (NIL) -7 NIL NIL) (-1023 2529781 2534833 2534930 "SFRTCAT" 2534935 NIL SFRTCAT (NIL T T T T) -9 NIL 2534973) (-1022 2523241 2524256 2525390 "SFRGCD" 2528764 NIL SFRGCD (NIL T T T T T) -7 NIL NIL) (-1021 2516407 2517478 2518662 "SFQCMPK" 2522174 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL) (-1020 2516029 2516118 2516228 "SFORT" 2516348 NIL SFORT (NIL T T) -8 NIL NIL) (-1019 2515174 2515869 2515990 "SEXOF" 2515995 NIL SEXOF (NIL T T T T T) -8 NIL NIL) (-1018 2514308 2515055 2515123 "SEX" 2515128 T SEX (NIL) -8 NIL NIL) (-1017 2509084 2509773 2509869 "SEXCAT" 2513640 NIL SEXCAT (NIL T T T T T) -9 NIL 2514259) (-1016 2506264 2509018 2509066 "SET" 2509071 NIL SET (NIL T) -8 NIL NIL) (-1015 2504515 2504977 2505282 "SETMN" 2506005 NIL SETMN (NIL NIL NIL) -8 NIL NIL) (-1014 2504122 2504248 2504279 "SETCAT" 2504396 T SETCAT (NIL) -9 NIL 2504480) (-1013 2503902 2503954 2504053 "SETCAT-" 2504058 NIL SETCAT- (NIL T) -8 NIL NIL) (-1012 2500289 2502363 2502407 "SETAGG" 2503277 NIL SETAGG (NIL T) -9 NIL 2503617) (-1011 2499747 2499863 2500100 "SETAGG-" 2500105 NIL SETAGG- (NIL T T) -8 NIL NIL) (-1010 2498950 2499243 2499305 "SEGXCAT" 2499591 NIL SEGXCAT (NIL T T) -9 NIL 2499711) (-1009 2498006 2498616 2498798 "SEG" 2498803 NIL SEG (NIL T) -8 NIL NIL) (-1008 2496912 2497125 2497169 "SEGCAT" 2497751 NIL SEGCAT (NIL T) -9 NIL 2497989) (-1007 2495961 2496291 2496491 "SEGBIND" 2496747 NIL SEGBIND (NIL T) -8 NIL NIL) (-1006 2495582 2495641 2495754 "SEGBIND2" 2495896 NIL SEGBIND2 (NIL T T) -7 NIL NIL) (-1005 2494801 2494927 2495131 "SEG2" 2495426 NIL SEG2 (NIL T T) -7 NIL NIL) (-1004 2494238 2494736 2494783 "SDVAR" 2494788 NIL SDVAR (NIL T) -8 NIL NIL) (-1003 2486490 2494011 2494139 "SDPOL" 2494144 NIL SDPOL (NIL T) -8 NIL NIL) (-1002 2485083 2485349 2485668 "SCPKG" 2486205 NIL SCPKG (NIL T) -7 NIL NIL) (-1001 2484220 2484399 2484599 "SCOPE" 2484905 T SCOPE (NIL) -8 NIL NIL) (-1000 2483441 2483574 2483753 "SCACHE" 2484075 NIL SCACHE (NIL T) -7 NIL NIL) (-999 2482884 2483205 2483288 "SAOS" 2483378 T SAOS (NIL) -8 NIL NIL) (-998 2482452 2482487 2482658 "SAERFFC" 2482843 NIL SAERFFC (NIL T T T) -7 NIL NIL) (-997 2476348 2482351 2482429 "SAE" 2482434 NIL SAE (NIL T T NIL) -8 NIL NIL) (-996 2475944 2475979 2476136 "SAEFACT" 2476307 NIL SAEFACT (NIL T T T) -7 NIL NIL) (-995 2474270 2474584 2474983 "RURPK" 2475610 NIL RURPK (NIL T NIL) -7 NIL NIL) (-994 2472923 2473200 2473507 "RULESET" 2474106 NIL RULESET (NIL T T T) -8 NIL NIL) (-993 2470131 2470634 2471095 "RULE" 2472605 NIL RULE (NIL T T T) -8 NIL NIL) (-992 2469773 2469928 2470009 "RULECOLD" 2470083 NIL RULECOLD (NIL NIL) -8 NIL NIL) (-991 2464665 2465459 2466375 "RSETGCD" 2468972 NIL RSETGCD (NIL T T T T T) -7 NIL NIL) (-990 2453979 2459031 2459126 "RSETCAT" 2463191 NIL RSETCAT (NIL T T T T) -9 NIL 2464288) (-989 2451910 2452449 2453269 "RSETCAT-" 2453274 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL) (-988 2444340 2445715 2447231 "RSDCMPK" 2450509 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL) (-987 2442357 2442798 2442871 "RRCC" 2443947 NIL RRCC (NIL T T) -9 NIL 2444291) (-986 2441711 2441885 2442161 "RRCC-" 2442166 NIL RRCC- (NIL T T T) -8 NIL NIL) (-985 2416077 2425702 2425767 "RPOLCAT" 2436269 NIL RPOLCAT (NIL T T T) -9 NIL 2439427) (-984 2407581 2409919 2413037 "RPOLCAT-" 2413042 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL) (-983 2398647 2405811 2406291 "ROUTINE" 2407121 T ROUTINE (NIL) -8 NIL NIL) (-982 2395352 2398203 2398350 "ROMAN" 2398520 T ROMAN (NIL) -8 NIL NIL) (-981 2393638 2394223 2394480 "ROIRC" 2395158 NIL ROIRC (NIL T T) -8 NIL NIL) (-980 2390042 2392346 2392375 "RNS" 2392671 T RNS (NIL) -9 NIL 2392941) (-979 2388556 2388939 2389470 "RNS-" 2389543 NIL RNS- (NIL T) -8 NIL NIL) (-978 2387981 2388389 2388418 "RNG" 2388423 T RNG (NIL) -9 NIL 2388444) (-977 2387378 2387740 2387781 "RMODULE" 2387841 NIL RMODULE (NIL T) -9 NIL 2387883) (-976 2386230 2386324 2386654 "RMCAT2" 2387279 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL) (-975 2382944 2385413 2385734 "RMATRIX" 2385965 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL) (-974 2375940 2378174 2378287 "RMATCAT" 2381596 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2382578) (-973 2375319 2375466 2375769 "RMATCAT-" 2375774 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL) (-972 2374889 2374964 2375090 "RINTERP" 2375238 NIL RINTERP (NIL NIL T) -7 NIL NIL) (-971 2373939 2374503 2374532 "RING" 2374642 T RING (NIL) -9 NIL 2374736) (-970 2373734 2373778 2373872 "RING-" 2373877 NIL RING- (NIL T) -8 NIL NIL) (-969 2372582 2372819 2373075 "RIDIST" 2373498 T RIDIST (NIL) -7 NIL NIL) (-968 2363904 2372056 2372259 "RGCHAIN" 2372431 NIL RGCHAIN (NIL T NIL) -8 NIL NIL) (-967 2360909 2361523 2362191 "RF" 2363268 NIL RF (NIL T) -7 NIL NIL) (-966 2360558 2360621 2360722 "RFFACTOR" 2360840 NIL RFFACTOR (NIL T) -7 NIL NIL) (-965 2360286 2360321 2360416 "RFFACT" 2360517 NIL RFFACT (NIL T) -7 NIL NIL) (-964 2358416 2358780 2359160 "RFDIST" 2359926 T RFDIST (NIL) -7 NIL NIL) (-963 2357874 2357966 2358126 "RETSOL" 2358318 NIL RETSOL (NIL T T) -7 NIL NIL) (-962 2357466 2357546 2357588 "RETRACT" 2357778 NIL RETRACT (NIL T) -9 NIL NIL) (-961 2357318 2357343 2357427 "RETRACT-" 2357432 NIL RETRACT- (NIL T T) -8 NIL NIL) (-960 2350176 2356975 2357100 "RESULT" 2357213 T RESULT (NIL) -8 NIL NIL) (-959 2348761 2349450 2349647 "RESRING" 2350079 NIL RESRING (NIL T T T T NIL) -8 NIL NIL) (-958 2348401 2348450 2348546 "RESLATC" 2348698 NIL RESLATC (NIL T) -7 NIL NIL) (-957 2348110 2348144 2348249 "REPSQ" 2348360 NIL REPSQ (NIL T) -7 NIL NIL) (-956 2345541 2346121 2346721 "REP" 2347530 T REP (NIL) -7 NIL NIL) (-955 2345242 2345276 2345385 "REPDB" 2345500 NIL REPDB (NIL T) -7 NIL NIL) (-954 2339187 2340566 2341786 "REP2" 2344054 NIL REP2 (NIL T) -7 NIL NIL) (-953 2335593 2336274 2337079 "REP1" 2338414 NIL REP1 (NIL T) -7 NIL NIL) (-952 2328339 2333754 2334206 "REGSET" 2335224 NIL REGSET (NIL T T T T) -8 NIL NIL) (-951 2327160 2327495 2327743 "REF" 2328124 NIL REF (NIL T) -8 NIL NIL) (-950 2326541 2326644 2326809 "REDORDER" 2327044 NIL REDORDER (NIL T T) -7 NIL NIL) (-949 2322510 2325775 2325996 "RECLOS" 2326372 NIL RECLOS (NIL T) -8 NIL NIL) (-948 2321567 2321748 2321961 "REALSOLV" 2322317 T REALSOLV (NIL) -7 NIL NIL) (-947 2321414 2321455 2321484 "REAL" 2321489 T REAL (NIL) -9 NIL 2321524) (-946 2317905 2318707 2319589 "REAL0Q" 2320579 NIL REAL0Q (NIL T) -7 NIL NIL) (-945 2313516 2314504 2315563 "REAL0" 2316886 NIL REAL0 (NIL T) -7 NIL NIL) (-944 2312924 2312996 2313201 "RDIV" 2313438 NIL RDIV (NIL T T T T T) -7 NIL NIL) (-943 2311997 2312171 2312382 "RDIST" 2312746 NIL RDIST (NIL T) -7 NIL NIL) (-942 2310601 2310888 2311257 "RDETRS" 2311705 NIL RDETRS (NIL T T) -7 NIL NIL) (-941 2308422 2308876 2309411 "RDETR" 2310143 NIL RDETR (NIL T T) -7 NIL NIL) (-940 2307038 2307316 2307717 "RDEEFS" 2308138 NIL RDEEFS (NIL T T) -7 NIL NIL) (-939 2305538 2305844 2306273 "RDEEF" 2306726 NIL RDEEF (NIL T T) -7 NIL NIL) (-938 2299822 2302754 2302783 "RCFIELD" 2304060 T RCFIELD (NIL) -9 NIL 2304790) (-937 2297891 2298395 2299088 "RCFIELD-" 2299161 NIL RCFIELD- (NIL T) -8 NIL NIL) (-936 2294222 2296007 2296049 "RCAGG" 2297120 NIL RCAGG (NIL T) -9 NIL 2297585) (-935 2293853 2293947 2294107 "RCAGG-" 2294112 NIL RCAGG- (NIL T T) -8 NIL NIL) (-934 2293198 2293309 2293471 "RATRET" 2293737 NIL RATRET (NIL T) -7 NIL NIL) (-933 2292755 2292822 2292941 "RATFACT" 2293126 NIL RATFACT (NIL T) -7 NIL NIL) (-932 2292070 2292190 2292340 "RANDSRC" 2292625 T RANDSRC (NIL) -7 NIL NIL) (-931 2291807 2291851 2291922 "RADUTIL" 2292019 T RADUTIL (NIL) -7 NIL NIL) (-930 2284814 2290550 2290867 "RADIX" 2291522 NIL RADIX (NIL NIL) -8 NIL NIL) (-929 2276384 2284658 2284786 "RADFF" 2284791 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL) (-928 2276035 2276110 2276139 "RADCAT" 2276296 T RADCAT (NIL) -9 NIL NIL) (-927 2275820 2275868 2275965 "RADCAT-" 2275970 NIL RADCAT- (NIL T) -8 NIL NIL) (-926 2273971 2275595 2275684 "QUEUE" 2275764 NIL QUEUE (NIL T) -8 NIL NIL) (-925 2270468 2273908 2273953 "QUAT" 2273958 NIL QUAT (NIL T) -8 NIL NIL) (-924 2270106 2270149 2270276 "QUATCT2" 2270419 NIL QUATCT2 (NIL T T T T) -7 NIL NIL) (-923 2263899 2267279 2267320 "QUATCAT" 2268099 NIL QUATCAT (NIL T) -9 NIL 2268864) (-922 2260043 2261080 2262467 "QUATCAT-" 2262561 NIL QUATCAT- (NIL T T) -8 NIL NIL) (-921 2257563 2259127 2259169 "QUAGG" 2259544 NIL QUAGG (NIL T) -9 NIL 2259719) (-920 2256488 2256961 2257133 "QFORM" 2257435 NIL QFORM (NIL NIL T) -8 NIL NIL) (-919 2247784 2253042 2253083 "QFCAT" 2253741 NIL QFCAT (NIL T) -9 NIL 2254734) (-918 2243356 2244557 2246148 "QFCAT-" 2246242 NIL QFCAT- (NIL T T) -8 NIL NIL) (-917 2242994 2243037 2243164 "QFCAT2" 2243307 NIL QFCAT2 (NIL T T T T) -7 NIL NIL) (-916 2242454 2242564 2242694 "QEQUAT" 2242884 T QEQUAT (NIL) -8 NIL NIL) (-915 2235640 2236711 2237893 "QCMPACK" 2241387 NIL QCMPACK (NIL T T T T T) -7 NIL NIL) (-914 2233216 2233637 2234065 "QALGSET" 2235295 NIL QALGSET (NIL T T T T) -8 NIL NIL) (-913 2232461 2232635 2232867 "QALGSET2" 2233036 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL) (-912 2231152 2231375 2231692 "PWFFINTB" 2232234 NIL PWFFINTB (NIL T T T T) -7 NIL NIL) (-911 2229340 2229508 2229861 "PUSHVAR" 2230966 NIL PUSHVAR (NIL T T T T) -7 NIL NIL) (-910 2225257 2226311 2226353 "PTRANFN" 2228237 NIL PTRANFN (NIL T) -9 NIL NIL) (-909 2223669 2223960 2224281 "PTPACK" 2224968 NIL PTPACK (NIL T) -7 NIL NIL) (-908 2223305 2223362 2223469 "PTFUNC2" 2223606 NIL PTFUNC2 (NIL T T) -7 NIL NIL) (-907 2217781 2222122 2222163 "PTCAT" 2222531 NIL PTCAT (NIL T) -9 NIL 2222693) (-906 2217439 2217474 2217598 "PSQFR" 2217740 NIL PSQFR (NIL T T T T) -7 NIL NIL) (-905 2216034 2216332 2216666 "PSEUDLIN" 2217137 NIL PSEUDLIN (NIL T) -7 NIL NIL) (-904 2202842 2205206 2207529 "PSETPK" 2213794 NIL PSETPK (NIL T T T T) -7 NIL NIL) (-903 2195928 2198642 2198737 "PSETCAT" 2201718 NIL PSETCAT (NIL T T T T) -9 NIL 2202532) (-902 2193766 2194400 2195219 "PSETCAT-" 2195224 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL) (-901 2193114 2193279 2193308 "PSCURVE" 2193576 T PSCURVE (NIL) -9 NIL 2193743) (-900 2189565 2191091 2191156 "PSCAT" 2191992 NIL PSCAT (NIL T T T) -9 NIL 2192232) (-899 2188629 2188845 2189244 "PSCAT-" 2189249 NIL PSCAT- (NIL T T T T) -8 NIL NIL) (-898 2187282 2187914 2188128 "PRTITION" 2188435 T PRTITION (NIL) -8 NIL NIL) (-897 2176380 2178586 2180774 "PRS" 2185144 NIL PRS (NIL T T) -7 NIL NIL) (-896 2174238 2175730 2175771 "PRQAGG" 2175954 NIL PRQAGG (NIL T) -9 NIL 2176056) (-895 2173808 2173910 2173939 "PROPLOG" 2174124 T PROPLOG (NIL) -9 NIL NIL) (-894 2170931 2171496 2172023 "PROPFRML" 2173313 NIL PROPFRML (NIL T) -8 NIL NIL) (-893 2170391 2170501 2170631 "PROPERTY" 2170821 T PROPERTY (NIL) -8 NIL NIL) (-892 2164165 2168557 2169377 "PRODUCT" 2169617 NIL PRODUCT (NIL T T) -8 NIL NIL) (-891 2161441 2163625 2163858 "PR" 2163976 NIL PR (NIL T T) -8 NIL NIL) (-890 2161237 2161269 2161328 "PRINT" 2161402 T PRINT (NIL) -7 NIL NIL) (-889 2160577 2160694 2160846 "PRIMES" 2161117 NIL PRIMES (NIL T) -7 NIL NIL) (-888 2158642 2159043 2159509 "PRIMELT" 2160156 NIL PRIMELT (NIL T) -7 NIL NIL) (-887 2158370 2158419 2158448 "PRIMCAT" 2158572 T PRIMCAT (NIL) -9 NIL NIL) (-886 2154531 2158308 2158353 "PRIMARR" 2158358 NIL PRIMARR (NIL T) -8 NIL NIL) (-885 2153538 2153716 2153944 "PRIMARR2" 2154349 NIL PRIMARR2 (NIL T T) -7 NIL NIL) (-884 2153181 2153237 2153348 "PREASSOC" 2153476 NIL PREASSOC (NIL T T) -7 NIL NIL) (-883 2152655 2152788 2152817 "PPCURVE" 2153022 T PPCURVE (NIL) -9 NIL 2153158) (-882 2150014 2150413 2151005 "POLYROOT" 2152236 NIL POLYROOT (NIL T T T T T) -7 NIL NIL) (-881 2143920 2149620 2149779 "POLY" 2149887 NIL POLY (NIL T) -8 NIL NIL) (-880 2143305 2143363 2143596 "POLYLIFT" 2143856 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL) (-879 2139590 2140039 2140667 "POLYCATQ" 2142850 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL) (-878 2126630 2132027 2132092 "POLYCAT" 2135577 NIL POLYCAT (NIL T T T) -9 NIL 2137504) (-877 2120081 2121942 2124325 "POLYCAT-" 2124330 NIL POLYCAT- (NIL T T T T) -8 NIL NIL) (-876 2119670 2119738 2119857 "POLY2UP" 2120007 NIL POLY2UP (NIL NIL T) -7 NIL NIL) (-875 2119306 2119363 2119470 "POLY2" 2119607 NIL POLY2 (NIL T T) -7 NIL NIL) (-874 2117991 2118230 2118506 "POLUTIL" 2119080 NIL POLUTIL (NIL T T) -7 NIL NIL) (-873 2116353 2116630 2116960 "POLTOPOL" 2117713 NIL POLTOPOL (NIL NIL T) -7 NIL NIL) (-872 2111876 2116290 2116335 "POINT" 2116340 NIL POINT (NIL T) -8 NIL NIL) (-871 2110063 2110420 2110795 "PNTHEORY" 2111521 T PNTHEORY (NIL) -7 NIL NIL) (-870 2108491 2108788 2109197 "PMTOOLS" 2109761 NIL PMTOOLS (NIL T T T) -7 NIL NIL) (-869 2108084 2108162 2108279 "PMSYM" 2108407 NIL PMSYM (NIL T) -7 NIL NIL) (-868 2107594 2107663 2107837 "PMQFCAT" 2108009 NIL PMQFCAT (NIL T T T) -7 NIL NIL) (-867 2106949 2107059 2107215 "PMPRED" 2107471 NIL PMPRED (NIL T) -7 NIL NIL) (-866 2106345 2106431 2106592 "PMPREDFS" 2106850 NIL PMPREDFS (NIL T T T) -7 NIL NIL) (-865 2104991 2105199 2105583 "PMPLCAT" 2106107 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL) (-864 2104523 2104602 2104754 "PMLSAGG" 2104906 NIL PMLSAGG (NIL T T T) -7 NIL NIL) (-863 2104000 2104076 2104256 "PMKERNEL" 2104441 NIL PMKERNEL (NIL T T) -7 NIL NIL) (-862 2103617 2103692 2103805 "PMINS" 2103919 NIL PMINS (NIL T) -7 NIL NIL) (-861 2103047 2103116 2103331 "PMFS" 2103542 NIL PMFS (NIL T T T) -7 NIL NIL) (-860 2102278 2102396 2102600 "PMDOWN" 2102924 NIL PMDOWN (NIL T T T) -7 NIL NIL) (-859 2101441 2101600 2101782 "PMASS" 2102116 T PMASS (NIL) -7 NIL NIL) (-858 2100715 2100826 2100989 "PMASSFS" 2101327 NIL PMASSFS (NIL T T) -7 NIL NIL) (-857 2100370 2100438 2100532 "PLOTTOOL" 2100641 T PLOTTOOL (NIL) -7 NIL NIL) (-856 2094992 2096181 2097329 "PLOT" 2099242 T PLOT (NIL) -8 NIL NIL) (-855 2090806 2091840 2092761 "PLOT3D" 2094091 T PLOT3D (NIL) -8 NIL NIL) (-854 2089718 2089895 2090130 "PLOT1" 2090610 NIL PLOT1 (NIL T) -7 NIL NIL) (-853 2065113 2069784 2074635 "PLEQN" 2084984 NIL PLEQN (NIL T T T T) -7 NIL NIL) (-852 2064431 2064553 2064733 "PINTERP" 2064978 NIL PINTERP (NIL NIL T) -7 NIL NIL) (-851 2064124 2064171 2064274 "PINTERPA" 2064378 NIL PINTERPA (NIL T T) -7 NIL NIL) (-850 2063351 2063918 2064011 "PI" 2064051 T PI (NIL) -8 NIL NIL) (-849 2061742 2062727 2062756 "PID" 2062938 T PID (NIL) -9 NIL 2063072) (-848 2061467 2061504 2061592 "PICOERCE" 2061699 NIL PICOERCE (NIL T) -7 NIL NIL) (-847 2060788 2060926 2061102 "PGROEB" 2061323 NIL PGROEB (NIL T) -7 NIL NIL) (-846 2056375 2057189 2058094 "PGE" 2059903 T PGE (NIL) -7 NIL NIL) (-845 2054499 2054745 2055111 "PGCD" 2056092 NIL PGCD (NIL T T T T) -7 NIL NIL) (-844 2053837 2053940 2054101 "PFRPAC" 2054383 NIL PFRPAC (NIL T) -7 NIL NIL) (-843 2050452 2052385 2052738 "PFR" 2053516 NIL PFR (NIL T) -8 NIL NIL) (-842 2048841 2049085 2049410 "PFOTOOLS" 2050199 NIL PFOTOOLS (NIL T T) -7 NIL NIL) (-841 2047374 2047613 2047964 "PFOQ" 2048598 NIL PFOQ (NIL T T T) -7 NIL NIL) (-840 2045851 2046063 2046425 "PFO" 2047158 NIL PFO (NIL T T T T T) -7 NIL NIL) (-839 2042374 2045740 2045809 "PF" 2045814 NIL PF (NIL NIL) -8 NIL NIL) (-838 2039802 2041083 2041112 "PFECAT" 2041697 T PFECAT (NIL) -9 NIL 2042081) (-837 2039247 2039401 2039615 "PFECAT-" 2039620 NIL PFECAT- (NIL T) -8 NIL NIL) (-836 2037851 2038102 2038403 "PFBRU" 2038996 NIL PFBRU (NIL T T) -7 NIL NIL) (-835 2035718 2036069 2036501 "PFBR" 2037502 NIL PFBR (NIL T T T T) -7 NIL NIL) (-834 2031570 2033094 2033770 "PERM" 2035075 NIL PERM (NIL T) -8 NIL NIL) (-833 2026836 2027777 2028647 "PERMGRP" 2030733 NIL PERMGRP (NIL T) -8 NIL NIL) (-832 2024906 2025899 2025941 "PERMCAT" 2026387 NIL PERMCAT (NIL T) -9 NIL 2026692) (-831 2024561 2024602 2024725 "PERMAN" 2024859 NIL PERMAN (NIL NIL T) -7 NIL NIL) (-830 2022001 2024130 2024261 "PENDTREE" 2024463 NIL PENDTREE (NIL T) -8 NIL NIL) (-829 2020073 2020851 2020893 "PDRING" 2021550 NIL PDRING (NIL T) -9 NIL 2021835) (-828 2019176 2019394 2019756 "PDRING-" 2019761 NIL PDRING- (NIL T T) -8 NIL NIL) (-827 2016318 2017068 2017759 "PDEPROB" 2018505 T PDEPROB (NIL) -8 NIL NIL) (-826 2013889 2014385 2014934 "PDEPACK" 2015789 T PDEPACK (NIL) -7 NIL NIL) (-825 2012801 2012991 2013242 "PDECOMP" 2013688 NIL PDECOMP (NIL T T) -7 NIL NIL) (-824 2010412 2011227 2011256 "PDECAT" 2012041 T PDECAT (NIL) -9 NIL 2012752) (-823 2010165 2010198 2010287 "PCOMP" 2010373 NIL PCOMP (NIL T T) -7 NIL NIL) (-822 2008372 2008968 2009264 "PBWLB" 2009895 NIL PBWLB (NIL T) -8 NIL NIL) (-821 2000881 2002449 2003785 "PATTERN" 2007057 NIL PATTERN (NIL T) -8 NIL NIL) (-820 2000513 2000570 2000679 "PATTERN2" 2000818 NIL PATTERN2 (NIL T T) -7 NIL NIL) (-819 1998270 1998658 1999115 "PATTERN1" 2000102 NIL PATTERN1 (NIL T T) -7 NIL NIL) (-818 1995665 1996219 1996700 "PATRES" 1997835 NIL PATRES (NIL T T) -8 NIL NIL) (-817 1995229 1995296 1995428 "PATRES2" 1995592 NIL PATRES2 (NIL T T T) -7 NIL NIL) (-816 1993126 1993526 1993931 "PATMATCH" 1994898 NIL PATMATCH (NIL T T T) -7 NIL NIL) (-815 1992662 1992845 1992887 "PATMAB" 1992994 NIL PATMAB (NIL T) -9 NIL 1993077) (-814 1991207 1991516 1991774 "PATLRES" 1992467 NIL PATLRES (NIL T T T) -8 NIL NIL) (-813 1990752 1990875 1990917 "PATAB" 1990922 NIL PATAB (NIL T) -9 NIL 1991094) (-812 1988233 1988765 1989338 "PARTPERM" 1990199 T PARTPERM (NIL) -7 NIL NIL) (-811 1987854 1987917 1988019 "PARSURF" 1988164 NIL PARSURF (NIL T) -8 NIL NIL) (-810 1987486 1987543 1987652 "PARSU2" 1987791 NIL PARSU2 (NIL T T) -7 NIL NIL) (-809 1987250 1987290 1987357 "PARSER" 1987439 T PARSER (NIL) -7 NIL NIL) (-808 1986871 1986934 1987036 "PARSCURV" 1987181 NIL PARSCURV (NIL T) -8 NIL NIL) (-807 1986503 1986560 1986669 "PARSC2" 1986808 NIL PARSC2 (NIL T T) -7 NIL NIL) (-806 1986142 1986200 1986297 "PARPCURV" 1986439 NIL PARPCURV (NIL T) -8 NIL NIL) (-805 1985774 1985831 1985940 "PARPC2" 1986079 NIL PARPC2 (NIL T T) -7 NIL NIL) (-804 1985294 1985380 1985499 "PAN2EXPR" 1985675 T PAN2EXPR (NIL) -7 NIL NIL) (-803 1984100 1984415 1984643 "PALETTE" 1985086 T PALETTE (NIL) -8 NIL NIL) (-802 1982568 1983105 1983465 "PAIR" 1983786 NIL PAIR (NIL T T) -8 NIL NIL) (-801 1976418 1981827 1982021 "PADICRC" 1982423 NIL PADICRC (NIL NIL T) -8 NIL NIL) (-800 1969626 1975764 1975948 "PADICRAT" 1976266 NIL PADICRAT (NIL NIL) -8 NIL NIL) (-799 1967930 1969563 1969608 "PADIC" 1969613 NIL PADIC (NIL NIL) -8 NIL NIL) (-798 1965134 1966708 1966749 "PADICCT" 1967330 NIL PADICCT (NIL NIL) -9 NIL 1967612) (-797 1964091 1964291 1964559 "PADEPAC" 1964921 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL) (-796 1963303 1963436 1963642 "PADE" 1963953 NIL PADE (NIL T T T) -7 NIL NIL) (-795 1961314 1962146 1962461 "OWP" 1963071 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL) (-794 1960423 1960919 1961091 "OVAR" 1961182 NIL OVAR (NIL NIL) -8 NIL NIL) (-793 1959687 1959808 1959969 "OUT" 1960282 T OUT (NIL) -7 NIL NIL) (-792 1948733 1950912 1953082 "OUTFORM" 1957537 T OUTFORM (NIL) -8 NIL NIL) (-791 1948141 1948462 1948551 "OSI" 1948664 T OSI (NIL) -8 NIL NIL) (-790 1946886 1947113 1947398 "ORTHPOL" 1947888 NIL ORTHPOL (NIL T) -7 NIL NIL) (-789 1944257 1946547 1946685 "OREUP" 1946829 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL) (-788 1941653 1943950 1944076 "ORESUP" 1944199 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL) (-787 1939188 1939688 1940248 "OREPCTO" 1941142 NIL OREPCTO (NIL T T) -7 NIL NIL) (-786 1933097 1935303 1935344 "OREPCAT" 1937665 NIL OREPCAT (NIL T) -9 NIL 1938768) (-785 1930245 1931027 1932084 "OREPCAT-" 1932089 NIL OREPCAT- (NIL T T) -8 NIL NIL) (-784 1929422 1929694 1929723 "ORDSET" 1930032 T ORDSET (NIL) -9 NIL 1930196) (-783 1928941 1929063 1929256 "ORDSET-" 1929261 NIL ORDSET- (NIL T) -8 NIL NIL) (-782 1927554 1928355 1928384 "ORDRING" 1928586 T ORDRING (NIL) -9 NIL 1928710) (-781 1927199 1927293 1927437 "ORDRING-" 1927442 NIL ORDRING- (NIL T) -8 NIL NIL) (-780 1926574 1927055 1927084 "ORDMON" 1927089 T ORDMON (NIL) -9 NIL 1927110) (-779 1925736 1925883 1926078 "ORDFUNS" 1926423 NIL ORDFUNS (NIL NIL T) -7 NIL NIL) (-778 1925247 1925606 1925635 "ORDFIN" 1925640 T ORDFIN (NIL) -9 NIL 1925661) (-777 1921759 1923833 1924242 "ORDCOMP" 1924871 NIL ORDCOMP (NIL T) -8 NIL NIL) (-776 1921025 1921152 1921338 "ORDCOMP2" 1921619 NIL ORDCOMP2 (NIL T T) -7 NIL NIL) (-775 1917533 1918415 1919252 "OPTPROB" 1920208 T OPTPROB (NIL) -8 NIL NIL) (-774 1914375 1915004 1915698 "OPTPACK" 1916859 T OPTPACK (NIL) -7 NIL NIL) (-773 1912100 1912836 1912865 "OPTCAT" 1913680 T OPTCAT (NIL) -9 NIL 1914326) (-772 1911868 1911907 1911973 "OPQUERY" 1912054 T OPQUERY (NIL) -7 NIL NIL) (-771 1909004 1910195 1910695 "OP" 1911400 NIL OP (NIL T) -8 NIL NIL) (-770 1905769 1907801 1908170 "ONECOMP" 1908668 NIL ONECOMP (NIL T) -8 NIL NIL) (-769 1905074 1905189 1905363 "ONECOMP2" 1905641 NIL ONECOMP2 (NIL T T) -7 NIL NIL) (-768 1904493 1904599 1904729 "OMSERVER" 1904964 T OMSERVER (NIL) -7 NIL NIL) (-767 1901381 1903933 1903974 "OMSAGG" 1904035 NIL OMSAGG (NIL T) -9 NIL 1904099) (-766 1900004 1900267 1900549 "OMPKG" 1901119 T OMPKG (NIL) -7 NIL NIL) (-765 1899433 1899536 1899565 "OM" 1899864 T OM (NIL) -9 NIL NIL) (-764 1897972 1898985 1899153 "OMLO" 1899314 NIL OMLO (NIL T T) -8 NIL NIL) (-763 1896902 1897049 1897275 "OMEXPR" 1897798 NIL OMEXPR (NIL T) -7 NIL NIL) (-762 1896220 1896448 1896584 "OMERR" 1896786 T OMERR (NIL) -8 NIL NIL) (-761 1895398 1895641 1895801 "OMERRK" 1896080 T OMERRK (NIL) -8 NIL NIL) (-760 1894876 1895075 1895183 "OMENC" 1895310 T OMENC (NIL) -8 NIL NIL) (-759 1888771 1889956 1891127 "OMDEV" 1893725 T OMDEV (NIL) -8 NIL NIL) (-758 1887840 1888011 1888205 "OMCONN" 1888597 T OMCONN (NIL) -8 NIL NIL) (-757 1886455 1887441 1887470 "OINTDOM" 1887475 T OINTDOM (NIL) -9 NIL 1887496) (-756 1882217 1883447 1884162 "OFMONOID" 1885772 NIL OFMONOID (NIL T) -8 NIL NIL) (-755 1881655 1882154 1882199 "ODVAR" 1882204 NIL ODVAR (NIL T) -8 NIL NIL) (-754 1878780 1881152 1881337 "ODR" 1881530 NIL ODR (NIL T T NIL) -8 NIL NIL) (-753 1871086 1878559 1878683 "ODPOL" 1878688 NIL ODPOL (NIL T) -8 NIL NIL) (-752 1864909 1870958 1871063 "ODP" 1871068 NIL ODP (NIL NIL T NIL) -8 NIL NIL) (-751 1863675 1863890 1864165 "ODETOOLS" 1864683 NIL ODETOOLS (NIL T T) -7 NIL NIL) (-750 1860644 1861300 1862016 "ODESYS" 1863008 NIL ODESYS (NIL T T) -7 NIL NIL) (-749 1855548 1856456 1857479 "ODERTRIC" 1859719 NIL ODERTRIC (NIL T T) -7 NIL NIL) (-748 1854974 1855056 1855250 "ODERED" 1855460 NIL ODERED (NIL T T T T T) -7 NIL NIL) (-747 1851876 1852424 1853099 "ODERAT" 1854397 NIL ODERAT (NIL T T) -7 NIL NIL) (-746 1848844 1849308 1849904 "ODEPRRIC" 1851405 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL) (-745 1846715 1847282 1847791 "ODEPROB" 1848355 T ODEPROB (NIL) -8 NIL NIL) (-744 1843247 1843730 1844376 "ODEPRIM" 1846194 NIL ODEPRIM (NIL T T T T) -7 NIL NIL) (-743 1842500 1842602 1842860 "ODEPAL" 1843139 NIL ODEPAL (NIL T T T T) -7 NIL NIL) (-742 1838702 1839483 1840337 "ODEPACK" 1841666 T ODEPACK (NIL) -7 NIL NIL) (-741 1837739 1837846 1838074 "ODEINT" 1838591 NIL ODEINT (NIL T T) -7 NIL NIL) (-740 1831840 1833265 1834712 "ODEIFTBL" 1836312 T ODEIFTBL (NIL) -8 NIL NIL) (-739 1827184 1827970 1828928 "ODEEF" 1830999 NIL ODEEF (NIL T T) -7 NIL NIL) (-738 1826521 1826610 1826839 "ODECONST" 1827089 NIL ODECONST (NIL T T T) -7 NIL NIL) (-737 1824678 1825311 1825340 "ODECAT" 1825943 T ODECAT (NIL) -9 NIL 1826472) (-736 1821550 1824390 1824509 "OCT" 1824591 NIL OCT (NIL T) -8 NIL NIL) (-735 1821188 1821231 1821358 "OCTCT2" 1821501 NIL OCTCT2 (NIL T T T T) -7 NIL NIL) (-734 1816021 1818459 1818500 "OC" 1819596 NIL OC (NIL T) -9 NIL 1820453) (-733 1813248 1813996 1814986 "OC-" 1815080 NIL OC- (NIL T T) -8 NIL NIL) (-732 1812626 1813068 1813097 "OCAMON" 1813102 T OCAMON (NIL) -9 NIL 1813123) (-731 1812079 1812486 1812515 "OASGP" 1812520 T OASGP (NIL) -9 NIL 1812540) (-730 1811366 1811829 1811858 "OAMONS" 1811898 T OAMONS (NIL) -9 NIL 1811941) (-729 1810806 1811213 1811242 "OAMON" 1811247 T OAMON (NIL) -9 NIL 1811267) (-728 1810110 1810602 1810631 "OAGROUP" 1810636 T OAGROUP (NIL) -9 NIL 1810656) (-727 1809800 1809850 1809938 "NUMTUBE" 1810054 NIL NUMTUBE (NIL T) -7 NIL NIL) (-726 1803373 1804891 1806427 "NUMQUAD" 1808284 T NUMQUAD (NIL) -7 NIL NIL) (-725 1799129 1800117 1801142 "NUMODE" 1802368 T NUMODE (NIL) -7 NIL NIL) (-724 1796532 1797378 1797407 "NUMINT" 1798324 T NUMINT (NIL) -9 NIL 1799080) (-723 1795480 1795677 1795895 "NUMFMT" 1796334 T NUMFMT (NIL) -7 NIL NIL) (-722 1781862 1784796 1787326 "NUMERIC" 1792989 NIL NUMERIC (NIL T) -7 NIL NIL) (-721 1776262 1781314 1781409 "NTSCAT" 1781414 NIL NTSCAT (NIL T T T T) -9 NIL 1781452) (-720 1775456 1775621 1775814 "NTPOLFN" 1776101 NIL NTPOLFN (NIL T) -7 NIL NIL) (-719 1763312 1772298 1773108 "NSUP" 1774678 NIL NSUP (NIL T) -8 NIL NIL) (-718 1762948 1763005 1763112 "NSUP2" 1763249 NIL NSUP2 (NIL T T) -7 NIL NIL) (-717 1752910 1762727 1762857 "NSMP" 1762862 NIL NSMP (NIL T T) -8 NIL NIL) (-716 1751342 1751643 1752000 "NREP" 1752598 NIL NREP (NIL T) -7 NIL NIL) (-715 1749933 1750185 1750543 "NPCOEF" 1751085 NIL NPCOEF (NIL T T T T T) -7 NIL NIL) (-714 1748999 1749114 1749330 "NORMRETR" 1749814 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL) (-713 1747052 1747342 1747749 "NORMPK" 1748707 NIL NORMPK (NIL T T T T T) -7 NIL NIL) (-712 1746737 1746765 1746889 "NORMMA" 1747018 NIL NORMMA (NIL T T T T) -7 NIL NIL) (-711 1746564 1746694 1746723 "NONE" 1746728 T NONE (NIL) -8 NIL NIL) (-710 1746353 1746382 1746451 "NONE1" 1746528 NIL NONE1 (NIL T) -7 NIL NIL) (-709 1745838 1745900 1746085 "NODE1" 1746285 NIL NODE1 (NIL T T) -7 NIL NIL) (-708 1744131 1745001 1745256 "NNI" 1745603 T NNI (NIL) -8 NIL NIL) (-707 1742551 1742864 1743228 "NLINSOL" 1743799 NIL NLINSOL (NIL T) -7 NIL NIL) (-706 1738719 1739686 1740608 "NIPROB" 1741649 T NIPROB (NIL) -8 NIL NIL) (-705 1737476 1737710 1738012 "NFINTBAS" 1738481 NIL NFINTBAS (NIL T T) -7 NIL NIL) (-704 1736184 1736415 1736696 "NCODIV" 1737244 NIL NCODIV (NIL T T) -7 NIL NIL) (-703 1735946 1735983 1736058 "NCNTFRAC" 1736141 NIL NCNTFRAC (NIL T) -7 NIL NIL) (-702 1734126 1734490 1734910 "NCEP" 1735571 NIL NCEP (NIL T) -7 NIL NIL) (-701 1733037 1733776 1733805 "NASRING" 1733915 T NASRING (NIL) -9 NIL 1733989) (-700 1732832 1732876 1732970 "NASRING-" 1732975 NIL NASRING- (NIL T) -8 NIL NIL) (-699 1731985 1732484 1732513 "NARNG" 1732630 T NARNG (NIL) -9 NIL 1732721) (-698 1731677 1731744 1731878 "NARNG-" 1731883 NIL NARNG- (NIL T) -8 NIL NIL) (-697 1730556 1730763 1730998 "NAGSP" 1731462 T NAGSP (NIL) -7 NIL NIL) (-696 1721980 1723626 1725261 "NAGS" 1728941 T NAGS (NIL) -7 NIL NIL) (-695 1720544 1720848 1721175 "NAGF07" 1721673 T NAGF07 (NIL) -7 NIL NIL) (-694 1715126 1716406 1717702 "NAGF04" 1719268 T NAGF04 (NIL) -7 NIL NIL) (-693 1708158 1709756 1711373 "NAGF02" 1713529 T NAGF02 (NIL) -7 NIL NIL) (-692 1703422 1704512 1705619 "NAGF01" 1707071 T NAGF01 (NIL) -7 NIL NIL) (-691 1697082 1698640 1700217 "NAGE04" 1701865 T NAGE04 (NIL) -7 NIL NIL) (-690 1688323 1690426 1692538 "NAGE02" 1694990 T NAGE02 (NIL) -7 NIL NIL) (-689 1684316 1685253 1686207 "NAGE01" 1687389 T NAGE01 (NIL) -7 NIL NIL) (-688 1682123 1682654 1683209 "NAGD03" 1683781 T NAGD03 (NIL) -7 NIL NIL) (-687 1673909 1675828 1677773 "NAGD02" 1680198 T NAGD02 (NIL) -7 NIL NIL) (-686 1667768 1669181 1670609 "NAGD01" 1672501 T NAGD01 (NIL) -7 NIL NIL) (-685 1664025 1664835 1665660 "NAGC06" 1666963 T NAGC06 (NIL) -7 NIL NIL) (-684 1662502 1662831 1663184 "NAGC05" 1663692 T NAGC05 (NIL) -7 NIL NIL) (-683 1661886 1662003 1662145 "NAGC02" 1662380 T NAGC02 (NIL) -7 NIL NIL) (-682 1660947 1661504 1661545 "NAALG" 1661624 NIL NAALG (NIL T) -9 NIL 1661685) (-681 1660782 1660811 1660901 "NAALG-" 1660906 NIL NAALG- (NIL T T) -8 NIL NIL) (-680 1654732 1655840 1657027 "MULTSQFR" 1659678 NIL MULTSQFR (NIL T T T T) -7 NIL NIL) (-679 1654051 1654126 1654310 "MULTFACT" 1654644 NIL MULTFACT (NIL T T T T) -7 NIL NIL) (-678 1647244 1651155 1651208 "MTSCAT" 1652268 NIL MTSCAT (NIL T T) -9 NIL 1652782) (-677 1646956 1647010 1647102 "MTHING" 1647184 NIL MTHING (NIL T) -7 NIL NIL) (-676 1646748 1646781 1646841 "MSYSCMD" 1646916 T MSYSCMD (NIL) -7 NIL NIL) (-675 1642860 1645503 1645823 "MSET" 1646461 NIL MSET (NIL T) -8 NIL NIL) (-674 1639955 1642421 1642463 "MSETAGG" 1642468 NIL MSETAGG (NIL T) -9 NIL 1642502) (-673 1635811 1637353 1638094 "MRING" 1639258 NIL MRING (NIL T T) -8 NIL NIL) (-672 1635381 1635448 1635577 "MRF2" 1635738 NIL MRF2 (NIL T T T) -7 NIL NIL) (-671 1634999 1635034 1635178 "MRATFAC" 1635340 NIL MRATFAC (NIL T T T T) -7 NIL NIL) (-670 1632611 1632906 1633337 "MPRFF" 1634704 NIL MPRFF (NIL T T T T) -7 NIL NIL) (-669 1626631 1632466 1632562 "MPOLY" 1632567 NIL MPOLY (NIL NIL T) -8 NIL NIL) (-668 1626121 1626156 1626364 "MPCPF" 1626590 NIL MPCPF (NIL T T T T) -7 NIL NIL) (-667 1625637 1625680 1625863 "MPC3" 1626072 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL) (-666 1624838 1624919 1625138 "MPC2" 1625552 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL) (-665 1623139 1623476 1623866 "MONOTOOL" 1624498 NIL MONOTOOL (NIL T T) -7 NIL NIL) (-664 1622263 1622598 1622627 "MONOID" 1622904 T MONOID (NIL) -9 NIL 1623076) (-663 1621641 1621804 1622047 "MONOID-" 1622052 NIL MONOID- (NIL T) -8 NIL NIL) (-662 1612621 1618607 1618667 "MONOGEN" 1619341 NIL MONOGEN (NIL T T) -9 NIL 1619797) (-661 1609839 1610574 1611574 "MONOGEN-" 1611693 NIL MONOGEN- (NIL T T T) -8 NIL NIL) (-660 1608698 1609118 1609147 "MONADWU" 1609539 T MONADWU (NIL) -9 NIL 1609777) (-659 1608070 1608229 1608477 "MONADWU-" 1608482 NIL MONADWU- (NIL T) -8 NIL NIL) (-658 1607455 1607673 1607702 "MONAD" 1607909 T MONAD (NIL) -9 NIL 1608021) (-657 1607140 1607218 1607350 "MONAD-" 1607355 NIL MONAD- (NIL T) -8 NIL NIL) (-656 1605391 1606053 1606332 "MOEBIUS" 1606893 NIL MOEBIUS (NIL T) -8 NIL NIL) (-655 1604784 1605162 1605203 "MODULE" 1605208 NIL MODULE (NIL T) -9 NIL 1605234) (-654 1604352 1604448 1604638 "MODULE-" 1604643 NIL MODULE- (NIL T T) -8 NIL NIL) (-653 1602023 1602718 1603044 "MODRING" 1604177 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL) (-652 1598979 1600144 1600661 "MODOP" 1601555 NIL MODOP (NIL T T) -8 NIL NIL) (-651 1597166 1597618 1597959 "MODMONOM" 1598778 NIL MODMONOM (NIL T T NIL) -8 NIL NIL) (-650 1586884 1595370 1595792 "MODMON" 1596794 NIL MODMON (NIL T T) -8 NIL NIL) (-649 1584010 1585728 1586004 "MODFIELD" 1586759 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL) (-648 1583536 1583579 1583758 "MMAP" 1583961 NIL MMAP (NIL T T T T T T) -7 NIL NIL) (-647 1581772 1582549 1582590 "MLO" 1583007 NIL MLO (NIL T) -9 NIL 1583248) (-646 1579139 1579654 1580256 "MLIFT" 1581253 NIL MLIFT (NIL T T T T) -7 NIL NIL) (-645 1578530 1578614 1578768 "MKUCFUNC" 1579050 NIL MKUCFUNC (NIL T T T) -7 NIL NIL) (-644 1578129 1578199 1578322 "MKRECORD" 1578453 NIL MKRECORD (NIL T T) -7 NIL NIL) (-643 1577177 1577338 1577566 "MKFUNC" 1577940 NIL MKFUNC (NIL T) -7 NIL NIL) (-642 1576565 1576669 1576825 "MKFLCFN" 1577060 NIL MKFLCFN (NIL T) -7 NIL NIL) (-641 1575991 1576358 1576447 "MKCHSET" 1576509 NIL MKCHSET (NIL T) -8 NIL NIL) (-640 1575268 1575370 1575555 "MKBCFUNC" 1575884 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL) (-639 1571952 1574822 1574958 "MINT" 1575152 T MINT (NIL) -8 NIL NIL) (-638 1570764 1571007 1571284 "MHROWRED" 1571707 NIL MHROWRED (NIL T) -7 NIL NIL) (-637 1566035 1569209 1569633 "MFLOAT" 1570360 T MFLOAT (NIL) -8 NIL NIL) (-636 1565392 1565468 1565639 "MFINFACT" 1565947 NIL MFINFACT (NIL T T T T) -7 NIL NIL) (-635 1561707 1562555 1563439 "MESH" 1564528 T MESH (NIL) -7 NIL NIL) (-634 1560097 1560409 1560762 "MDDFACT" 1561394 NIL MDDFACT (NIL T) -7 NIL NIL) (-633 1556939 1559256 1559298 "MDAGG" 1559553 NIL MDAGG (NIL T) -9 NIL 1559696) (-632 1546637 1556232 1556439 "MCMPLX" 1556752 T MCMPLX (NIL) -8 NIL NIL) (-631 1545778 1545924 1546124 "MCDEN" 1546486 NIL MCDEN (NIL T T) -7 NIL NIL) (-630 1543668 1543938 1544318 "MCALCFN" 1545508 NIL MCALCFN (NIL T T T T) -7 NIL NIL) (-629 1541290 1541813 1542374 "MATSTOR" 1543139 NIL MATSTOR (NIL T) -7 NIL NIL) (-628 1537298 1540665 1540912 "MATRIX" 1541075 NIL MATRIX (NIL T) -8 NIL NIL) (-627 1533068 1533771 1534507 "MATLIN" 1536655 NIL MATLIN (NIL T T T T) -7 NIL NIL) (-626 1523265 1526403 1526480 "MATCAT" 1531318 NIL MATCAT (NIL T T T) -9 NIL 1532735) (-625 1519630 1520643 1521998 "MATCAT-" 1522003 NIL MATCAT- (NIL T T T T) -8 NIL NIL) (-624 1518232 1518385 1518716 "MATCAT2" 1519465 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL) (-623 1516344 1516668 1517052 "MAPPKG3" 1517907 NIL MAPPKG3 (NIL T T T) -7 NIL NIL) (-622 1515325 1515498 1515720 "MAPPKG2" 1516168 NIL MAPPKG2 (NIL T T) -7 NIL NIL) (-621 1513824 1514108 1514435 "MAPPKG1" 1515031 NIL MAPPKG1 (NIL T) -7 NIL NIL) (-620 1513435 1513493 1513616 "MAPHACK3" 1513760 NIL MAPHACK3 (NIL T T T) -7 NIL NIL) (-619 1513027 1513088 1513202 "MAPHACK2" 1513367 NIL MAPHACK2 (NIL T T) -7 NIL NIL) (-618 1512465 1512568 1512710 "MAPHACK1" 1512918 NIL MAPHACK1 (NIL T) -7 NIL NIL) (-617 1510573 1511167 1511470 "MAGMA" 1512194 NIL MAGMA (NIL T) -8 NIL NIL) (-616 1507047 1508817 1509277 "M3D" 1510146 NIL M3D (NIL T) -8 NIL NIL) (-615 1501202 1505417 1505459 "LZSTAGG" 1506241 NIL LZSTAGG (NIL T) -9 NIL 1506536) (-614 1497175 1498333 1499790 "LZSTAGG-" 1499795 NIL LZSTAGG- (NIL T T) -8 NIL NIL) (-613 1494291 1495068 1495554 "LWORD" 1496721 NIL LWORD (NIL T) -8 NIL NIL) (-612 1487451 1494062 1494196 "LSQM" 1494201 NIL LSQM (NIL NIL T) -8 NIL NIL) (-611 1486675 1486814 1487042 "LSPP" 1487306 NIL LSPP (NIL T T T T) -7 NIL NIL) (-610 1484487 1484788 1485244 "LSMP" 1486364 NIL LSMP (NIL T T T T) -7 NIL NIL) (-609 1481266 1481940 1482670 "LSMP1" 1483789 NIL LSMP1 (NIL T) -7 NIL NIL) (-608 1475192 1480434 1480476 "LSAGG" 1480538 NIL LSAGG (NIL T) -9 NIL 1480616) (-607 1471887 1472811 1474024 "LSAGG-" 1474029 NIL LSAGG- (NIL T T) -8 NIL NIL) (-606 1469513 1471031 1471280 "LPOLY" 1471682 NIL LPOLY (NIL T T) -8 NIL NIL) (-605 1469095 1469180 1469303 "LPEFRAC" 1469422 NIL LPEFRAC (NIL T) -7 NIL NIL) (-604 1467442 1468189 1468442 "LO" 1468927 NIL LO (NIL T T T) -8 NIL NIL) (-603 1467095 1467207 1467236 "LOGIC" 1467347 T LOGIC (NIL) -9 NIL 1467427) (-602 1466957 1466980 1467051 "LOGIC-" 1467056 NIL LOGIC- (NIL T) -8 NIL NIL) (-601 1466150 1466290 1466483 "LODOOPS" 1466813 NIL LODOOPS (NIL T T) -7 NIL NIL) (-600 1463568 1466067 1466132 "LODO" 1466137 NIL LODO (NIL T NIL) -8 NIL NIL) (-599 1462114 1462349 1462700 "LODOF" 1463315 NIL LODOF (NIL T T) -7 NIL NIL) (-598 1458533 1460969 1461010 "LODOCAT" 1461442 NIL LODOCAT (NIL T) -9 NIL 1461653) (-597 1458267 1458325 1458451 "LODOCAT-" 1458456 NIL LODOCAT- (NIL T T) -8 NIL NIL) (-596 1455581 1458108 1458226 "LODO2" 1458231 NIL LODO2 (NIL T T) -8 NIL NIL) (-595 1453010 1455518 1455563 "LODO1" 1455568 NIL LODO1 (NIL T) -8 NIL NIL) (-594 1451873 1452038 1452349 "LODEEF" 1452833 NIL LODEEF (NIL T T T) -7 NIL NIL) (-593 1447159 1450003 1450045 "LNAGG" 1450992 NIL LNAGG (NIL T) -9 NIL 1451436) (-592 1446306 1446520 1446862 "LNAGG-" 1446867 NIL LNAGG- (NIL T T) -8 NIL NIL) (-591 1442471 1443233 1443871 "LMOPS" 1445722 NIL LMOPS (NIL T T NIL) -8 NIL NIL) (-590 1441868 1442230 1442271 "LMODULE" 1442331 NIL LMODULE (NIL T) -9 NIL 1442373) (-589 1439114 1441513 1441636 "LMDICT" 1441778 NIL LMDICT (NIL T) -8 NIL NIL) (-588 1432341 1438060 1438358 "LIST" 1438849 NIL LIST (NIL T) -8 NIL NIL) (-587 1431866 1431940 1432079 "LIST3" 1432261 NIL LIST3 (NIL T T T) -7 NIL NIL) (-586 1430873 1431051 1431279 "LIST2" 1431684 NIL LIST2 (NIL T T) -7 NIL NIL) (-585 1429007 1429319 1429718 "LIST2MAP" 1430520 NIL LIST2MAP (NIL T T) -7 NIL NIL) (-584 1427719 1428399 1428440 "LINEXP" 1428693 NIL LINEXP (NIL T) -9 NIL 1428841) (-583 1426366 1426626 1426923 "LINDEP" 1427471 NIL LINDEP (NIL T T) -7 NIL NIL) (-582 1423133 1423852 1424629 "LIMITRF" 1425621 NIL LIMITRF (NIL T) -7 NIL NIL) (-581 1421413 1421708 1422123 "LIMITPS" 1422828 NIL LIMITPS (NIL T T) -7 NIL NIL) (-580 1415868 1420924 1421152 "LIE" 1421234 NIL LIE (NIL T T) -8 NIL NIL) (-579 1414918 1415361 1415402 "LIECAT" 1415542 NIL LIECAT (NIL T) -9 NIL 1415693) (-578 1414759 1414786 1414874 "LIECAT-" 1414879 NIL LIECAT- (NIL T T) -8 NIL NIL) (-577 1407371 1414208 1414373 "LIB" 1414614 T LIB (NIL) -8 NIL NIL) (-576 1403008 1403889 1404824 "LGROBP" 1406488 NIL LGROBP (NIL NIL T) -7 NIL NIL) (-575 1400874 1401148 1401510 "LF" 1402729 NIL LF (NIL T T) -7 NIL NIL) (-574 1399713 1400405 1400434 "LFCAT" 1400641 T LFCAT (NIL) -9 NIL 1400780) (-573 1396625 1397251 1397937 "LEXTRIPK" 1399079 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL) (-572 1393331 1394195 1394698 "LEXP" 1396205 NIL LEXP (NIL T T NIL) -8 NIL NIL) (-571 1391729 1392042 1392443 "LEADCDET" 1393013 NIL LEADCDET (NIL T T T T) -7 NIL NIL) (-570 1390925 1390999 1391226 "LAZM3PK" 1391650 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL) (-569 1385841 1389004 1389541 "LAUPOL" 1390438 NIL LAUPOL (NIL T T) -8 NIL NIL) (-568 1385408 1385452 1385619 "LAPLACE" 1385791 NIL LAPLACE (NIL T T) -7 NIL NIL) (-567 1383336 1384509 1384760 "LA" 1385241 NIL LA (NIL T T T) -8 NIL NIL) (-566 1382398 1382992 1383033 "LALG" 1383094 NIL LALG (NIL T) -9 NIL 1383152) (-565 1382113 1382172 1382307 "LALG-" 1382312 NIL LALG- (NIL T T) -8 NIL NIL) (-564 1381023 1381210 1381507 "KOVACIC" 1381913 NIL KOVACIC (NIL T T) -7 NIL NIL) (-563 1380857 1380881 1380923 "KONVERT" 1380985 NIL KONVERT (NIL T) -9 NIL NIL) (-562 1380691 1380715 1380757 "KOERCE" 1380819 NIL KOERCE (NIL T) -9 NIL NIL) (-561 1378425 1379185 1379578 "KERNEL" 1380330 NIL KERNEL (NIL T) -8 NIL NIL) (-560 1377927 1378008 1378138 "KERNEL2" 1378339 NIL KERNEL2 (NIL T T) -7 NIL NIL) (-559 1371778 1376466 1376521 "KDAGG" 1376898 NIL KDAGG (NIL T T) -9 NIL 1377104) (-558 1371307 1371431 1371636 "KDAGG-" 1371641 NIL KDAGG- (NIL T T T) -8 NIL NIL) (-557 1364482 1370968 1371123 "KAFILE" 1371185 NIL KAFILE (NIL T) -8 NIL NIL) (-556 1358937 1363993 1364221 "JORDAN" 1364303 NIL JORDAN (NIL T T) -8 NIL NIL) (-555 1355236 1357142 1357197 "IXAGG" 1358126 NIL IXAGG (NIL T T) -9 NIL 1358585) (-554 1354155 1354461 1354880 "IXAGG-" 1354885 NIL IXAGG- (NIL T T T) -8 NIL NIL) (-553 1349740 1354077 1354136 "IVECTOR" 1354141 NIL IVECTOR (NIL T NIL) -8 NIL NIL) (-552 1348506 1348743 1349009 "ITUPLE" 1349507 NIL ITUPLE (NIL T) -8 NIL NIL) (-551 1346942 1347119 1347425 "ITRIGMNP" 1348328 NIL ITRIGMNP (NIL T T T) -7 NIL NIL) (-550 1345687 1345891 1346174 "ITFUN3" 1346718 NIL ITFUN3 (NIL T T T) -7 NIL NIL) (-549 1345319 1345376 1345485 "ITFUN2" 1345624 NIL ITFUN2 (NIL T T) -7 NIL NIL) (-548 1343121 1344192 1344489 "ITAYLOR" 1345054 NIL ITAYLOR (NIL T) -8 NIL NIL) (-547 1332112 1337307 1338466 "ISUPS" 1341994 NIL ISUPS (NIL T) -8 NIL NIL) (-546 1331216 1331356 1331592 "ISUMP" 1331959 NIL ISUMP (NIL T T T T) -7 NIL NIL) (-545 1326480 1331017 1331096 "ISTRING" 1331169 NIL ISTRING (NIL NIL) -8 NIL NIL) (-544 1325693 1325774 1325989 "IRURPK" 1326394 NIL IRURPK (NIL T T T T T) -7 NIL NIL) (-543 1324629 1324830 1325070 "IRSN" 1325473 T IRSN (NIL) -7 NIL NIL) (-542 1322664 1323019 1323454 "IRRF2F" 1324267 NIL IRRF2F (NIL T) -7 NIL NIL) (-541 1322411 1322449 1322525 "IRREDFFX" 1322620 NIL IRREDFFX (NIL T) -7 NIL NIL) (-540 1321026 1321285 1321584 "IROOT" 1322144 NIL IROOT (NIL T) -7 NIL NIL) (-539 1317664 1318715 1319405 "IR" 1320368 NIL IR (NIL T) -8 NIL NIL) (-538 1315277 1315772 1316338 "IR2" 1317142 NIL IR2 (NIL T T) -7 NIL NIL) (-537 1314353 1314466 1314686 "IR2F" 1315160 NIL IR2F (NIL T T) -7 NIL NIL) (-536 1314144 1314178 1314238 "IPRNTPK" 1314313 T IPRNTPK (NIL) -7 NIL NIL) (-535 1310698 1314033 1314102 "IPF" 1314107 NIL IPF (NIL NIL) -8 NIL NIL) (-534 1309015 1310623 1310680 "IPADIC" 1310685 NIL IPADIC (NIL NIL NIL) -8 NIL NIL) (-533 1308514 1308572 1308761 "INVLAPLA" 1308951 NIL INVLAPLA (NIL T T) -7 NIL NIL) (-532 1298163 1300516 1302902 "INTTR" 1306178 NIL INTTR (NIL T T) -7 NIL NIL) (-531 1294511 1295252 1296115 "INTTOOLS" 1297349 NIL INTTOOLS (NIL T T) -7 NIL NIL) (-530 1294097 1294188 1294305 "INTSLPE" 1294414 T INTSLPE (NIL) -7 NIL NIL) (-529 1292047 1294020 1294079 "INTRVL" 1294084 NIL INTRVL (NIL T) -8 NIL NIL) (-528 1289654 1290166 1290740 "INTRF" 1291532 NIL INTRF (NIL T) -7 NIL NIL) (-527 1289069 1289166 1289307 "INTRET" 1289552 NIL INTRET (NIL T) -7 NIL NIL) (-526 1287071 1287460 1287929 "INTRAT" 1288677 NIL INTRAT (NIL T T) -7 NIL NIL) (-525 1284304 1284887 1285512 "INTPM" 1286556 NIL INTPM (NIL T T) -7 NIL NIL) (-524 1281013 1281612 1282356 "INTPAF" 1283690 NIL INTPAF (NIL T T T) -7 NIL NIL) (-523 1276256 1277202 1278237 "INTPACK" 1279998 T INTPACK (NIL) -7 NIL NIL) (-522 1273110 1275985 1276112 "INT" 1276149 T INT (NIL) -8 NIL NIL) (-521 1272362 1272514 1272722 "INTHERTR" 1272952 NIL INTHERTR (NIL T T) -7 NIL NIL) (-520 1271801 1271881 1272069 "INTHERAL" 1272276 NIL INTHERAL (NIL T T T T) -7 NIL NIL) (-519 1269647 1270090 1270547 "INTHEORY" 1271364 T INTHEORY (NIL) -7 NIL NIL) (-518 1260970 1262590 1264368 "INTG0" 1267999 NIL INTG0 (NIL T T T) -7 NIL NIL) (-517 1241543 1246333 1251143 "INTFTBL" 1256180 T INTFTBL (NIL) -8 NIL NIL) (-516 1240792 1240930 1241103 "INTFACT" 1241402 NIL INTFACT (NIL T) -7 NIL NIL) (-515 1238183 1238629 1239192 "INTEF" 1240346 NIL INTEF (NIL T T) -7 NIL NIL) (-514 1236644 1237393 1237422 "INTDOM" 1237723 T INTDOM (NIL) -9 NIL 1237930) (-513 1236013 1236187 1236429 "INTDOM-" 1236434 NIL INTDOM- (NIL T) -8 NIL NIL) (-512 1232505 1234437 1234492 "INTCAT" 1235291 NIL INTCAT (NIL T) -9 NIL 1235610) (-511 1231978 1232080 1232208 "INTBIT" 1232397 T INTBIT (NIL) -7 NIL NIL) (-510 1230653 1230807 1231120 "INTALG" 1231823 NIL INTALG (NIL T T T T T) -7 NIL NIL) (-509 1230110 1230200 1230370 "INTAF" 1230557 NIL INTAF (NIL T T) -7 NIL NIL) (-508 1223564 1229920 1230060 "INTABL" 1230065 NIL INTABL (NIL T T T) -8 NIL NIL) (-507 1218514 1221243 1221272 "INS" 1222240 T INS (NIL) -9 NIL 1222921) (-506 1215754 1216525 1217499 "INS-" 1217572 NIL INS- (NIL T) -8 NIL NIL) (-505 1214533 1214760 1215057 "INPSIGN" 1215507 NIL INPSIGN (NIL T T) -7 NIL NIL) (-504 1213651 1213768 1213965 "INPRODPF" 1214413 NIL INPRODPF (NIL T T) -7 NIL NIL) (-503 1212545 1212662 1212899 "INPRODFF" 1213531 NIL INPRODFF (NIL T T T T) -7 NIL NIL) (-502 1211545 1211697 1211957 "INNMFACT" 1212381 NIL INNMFACT (NIL T T T T) -7 NIL NIL) (-501 1210742 1210839 1211027 "INMODGCD" 1211444 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL) (-500 1209251 1209495 1209819 "INFSP" 1210487 NIL INFSP (NIL T T T) -7 NIL NIL) (-499 1208435 1208552 1208735 "INFPROD0" 1209131 NIL INFPROD0 (NIL T T) -7 NIL NIL) (-498 1205445 1206604 1207095 "INFORM" 1207952 T INFORM (NIL) -8 NIL NIL) (-497 1205055 1205115 1205213 "INFORM1" 1205380 NIL INFORM1 (NIL T) -7 NIL NIL) (-496 1204578 1204667 1204781 "INFINITY" 1204961 T INFINITY (NIL) -7 NIL NIL) (-495 1203196 1203444 1203765 "INEP" 1204326 NIL INEP (NIL T T T) -7 NIL NIL) (-494 1202472 1203093 1203158 "INDE" 1203163 NIL INDE (NIL T) -8 NIL NIL) (-493 1202036 1202104 1202221 "INCRMAPS" 1202399 NIL INCRMAPS (NIL T) -7 NIL NIL) (-492 1197347 1198272 1199216 "INBFF" 1201124 NIL INBFF (NIL T) -7 NIL NIL) (-491 1193842 1197192 1197295 "IMATRIX" 1197300 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL) (-490 1192554 1192677 1192992 "IMATQF" 1193698 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL) (-489 1190774 1191001 1191338 "IMATLIN" 1192310 NIL IMATLIN (NIL T T T T) -7 NIL NIL) (-488 1185400 1190698 1190756 "ILIST" 1190761 NIL ILIST (NIL T NIL) -8 NIL NIL) (-487 1183353 1185260 1185373 "IIARRAY2" 1185378 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL) (-486 1178721 1183264 1183328 "IFF" 1183333 NIL IFF (NIL NIL NIL) -8 NIL NIL) (-485 1173764 1178013 1178201 "IFARRAY" 1178578 NIL IFARRAY (NIL T NIL) -8 NIL NIL) (-484 1172971 1173668 1173741 "IFAMON" 1173746 NIL IFAMON (NIL T T NIL) -8 NIL NIL) (-483 1172554 1172619 1172674 "IEVALAB" 1172881 NIL IEVALAB (NIL T T) -9 NIL NIL) (-482 1172229 1172297 1172457 "IEVALAB-" 1172462 NIL IEVALAB- (NIL T T T) -8 NIL NIL) (-481 1171887 1172143 1172206 "IDPO" 1172211 NIL IDPO (NIL T T) -8 NIL NIL) (-480 1171164 1171776 1171851 "IDPOAMS" 1171856 NIL IDPOAMS (NIL T T) -8 NIL NIL) (-479 1170498 1171053 1171128 "IDPOAM" 1171133 NIL IDPOAM (NIL T T) -8 NIL NIL) (-478 1169583 1169833 1169887 "IDPC" 1170300 NIL IDPC (NIL T T) -9 NIL 1170449) (-477 1169079 1169475 1169548 "IDPAM" 1169553 NIL IDPAM (NIL T T) -8 NIL NIL) (-476 1168482 1168971 1169044 "IDPAG" 1169049 NIL IDPAG (NIL T T) -8 NIL NIL) (-475 1164737 1165585 1166480 "IDECOMP" 1167639 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL) (-474 1157611 1158660 1159707 "IDEAL" 1163773 NIL IDEAL (NIL T T T T) -8 NIL NIL) (-473 1156775 1156887 1157086 "ICDEN" 1157495 NIL ICDEN (NIL T T T T) -7 NIL NIL) (-472 1155874 1156255 1156402 "ICARD" 1156648 T ICARD (NIL) -8 NIL NIL) (-471 1153946 1154259 1154662 "IBPTOOLS" 1155551 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL) (-470 1149560 1153566 1153679 "IBITS" 1153865 NIL IBITS (NIL NIL) -8 NIL NIL) (-469 1146283 1146859 1147554 "IBATOOL" 1148977 NIL IBATOOL (NIL T T T) -7 NIL NIL) (-468 1144063 1144524 1145057 "IBACHIN" 1145818 NIL IBACHIN (NIL T T T) -7 NIL NIL) (-467 1141940 1143909 1144012 "IARRAY2" 1144017 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL) (-466 1138093 1141866 1141923 "IARRAY1" 1141928 NIL IARRAY1 (NIL T NIL) -8 NIL NIL) (-465 1132032 1136511 1136989 "IAN" 1137635 T IAN (NIL) -8 NIL NIL) (-464 1131543 1131600 1131773 "IALGFACT" 1131969 NIL IALGFACT (NIL T T T T) -7 NIL NIL) (-463 1131070 1131183 1131212 "HYPCAT" 1131419 T HYPCAT (NIL) -9 NIL NIL) (-462 1130608 1130725 1130911 "HYPCAT-" 1130916 NIL HYPCAT- (NIL T) -8 NIL NIL) (-461 1127287 1128618 1128660 "HOAGG" 1129641 NIL HOAGG (NIL T) -9 NIL 1130320) (-460 1125881 1126280 1126806 "HOAGG-" 1126811 NIL HOAGG- (NIL T T) -8 NIL NIL) (-459 1119712 1125322 1125488 "HEXADEC" 1125735 T HEXADEC (NIL) -8 NIL NIL) (-458 1118460 1118682 1118945 "HEUGCD" 1119489 NIL HEUGCD (NIL T) -7 NIL NIL) (-457 1117563 1118297 1118427 "HELLFDIV" 1118432 NIL HELLFDIV (NIL T T T T) -8 NIL NIL) (-456 1115791 1117340 1117428 "HEAP" 1117507 NIL HEAP (NIL T) -8 NIL NIL) (-455 1109658 1115706 1115768 "HDP" 1115773 NIL HDP (NIL NIL T) -8 NIL NIL) (-454 1103370 1109295 1109446 "HDMP" 1109559 NIL HDMP (NIL NIL T) -8 NIL NIL) (-453 1102695 1102834 1102998 "HB" 1103226 T HB (NIL) -7 NIL NIL) (-452 1096192 1102541 1102645 "HASHTBL" 1102650 NIL HASHTBL (NIL T T NIL) -8 NIL NIL) (-451 1093945 1095820 1095999 "HACKPI" 1096033 T HACKPI (NIL) -8 NIL NIL) (-450 1089641 1093799 1093911 "GTSET" 1093916 NIL GTSET (NIL T T T T) -8 NIL NIL) (-449 1083167 1089519 1089617 "GSTBL" 1089622 NIL GSTBL (NIL T T T NIL) -8 NIL NIL) (-448 1075403 1082203 1082467 "GSERIES" 1082958 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL) (-447 1074425 1074878 1074907 "GROUP" 1075168 T GROUP (NIL) -9 NIL 1075327) (-446 1073541 1073764 1074108 "GROUP-" 1074113 NIL GROUP- (NIL T) -8 NIL NIL) (-445 1071910 1072229 1072616 "GROEBSOL" 1073218 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL) (-444 1070850 1071112 1071164 "GRMOD" 1071693 NIL GRMOD (NIL T T) -9 NIL 1071861) (-443 1070618 1070654 1070782 "GRMOD-" 1070787 NIL GRMOD- (NIL T T T) -8 NIL NIL) (-442 1065946 1066972 1067972 "GRIMAGE" 1069638 T GRIMAGE (NIL) -8 NIL NIL) (-441 1064413 1064673 1064997 "GRDEF" 1065642 T GRDEF (NIL) -7 NIL NIL) (-440 1063857 1063973 1064114 "GRAY" 1064292 T GRAY (NIL) -7 NIL NIL) (-439 1063090 1063470 1063522 "GRALG" 1063675 NIL GRALG (NIL T T) -9 NIL 1063767) (-438 1062751 1062824 1062987 "GRALG-" 1062992 NIL GRALG- (NIL T T T) -8 NIL NIL) (-437 1059559 1062340 1062516 "GPOLSET" 1062658 NIL GPOLSET (NIL T T T T) -8 NIL NIL) (-436 1058915 1058972 1059229 "GOSPER" 1059496 NIL GOSPER (NIL T T T T T) -7 NIL NIL) (-435 1054674 1055353 1055879 "GMODPOL" 1058614 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL) (-434 1053679 1053863 1054101 "GHENSEL" 1054486 NIL GHENSEL (NIL T T) -7 NIL NIL) (-433 1047745 1048588 1049614 "GENUPS" 1052763 NIL GENUPS (NIL T T) -7 NIL NIL) (-432 1047442 1047493 1047582 "GENUFACT" 1047688 NIL GENUFACT (NIL T) -7 NIL NIL) (-431 1046854 1046931 1047096 "GENPGCD" 1047360 NIL GENPGCD (NIL T T T T) -7 NIL NIL) (-430 1046328 1046363 1046576 "GENMFACT" 1046813 NIL GENMFACT (NIL T T T T T) -7 NIL NIL) (-429 1044896 1045151 1045458 "GENEEZ" 1046071 NIL GENEEZ (NIL T T) -7 NIL NIL) (-428 1038770 1044509 1044670 "GDMP" 1044819 NIL GDMP (NIL NIL T T) -8 NIL NIL) (-427 1028152 1032541 1033647 "GCNAALG" 1037753 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL) (-426 1026573 1027445 1027474 "GCDDOM" 1027729 T GCDDOM (NIL) -9 NIL 1027886) (-425 1026043 1026170 1026385 "GCDDOM-" 1026390 NIL GCDDOM- (NIL T) -8 NIL NIL) (-424 1024715 1024900 1025204 "GB" 1025822 NIL GB (NIL T T T T) -7 NIL NIL) (-423 1013335 1015661 1018053 "GBINTERN" 1022406 NIL GBINTERN (NIL T T T T) -7 NIL NIL) (-422 1011172 1011464 1011885 "GBF" 1013010 NIL GBF (NIL T T T T) -7 NIL NIL) (-421 1009953 1010118 1010385 "GBEUCLID" 1010988 NIL GBEUCLID (NIL T T T T) -7 NIL NIL) (-420 1009302 1009427 1009576 "GAUSSFAC" 1009824 T GAUSSFAC (NIL) -7 NIL NIL) (-419 1007679 1007981 1008294 "GALUTIL" 1009021 NIL GALUTIL (NIL T) -7 NIL NIL) (-418 1005996 1006270 1006593 "GALPOLYU" 1007406 NIL GALPOLYU (NIL T T) -7 NIL NIL) (-417 1003385 1003675 1004080 "GALFACTU" 1005693 NIL GALFACTU (NIL T T T) -7 NIL NIL) (-416 995191 996690 998298 "GALFACT" 1001817 NIL GALFACT (NIL T) -7 NIL NIL) (-415 992578 993236 993265 "FVFUN" 994421 T FVFUN (NIL) -9 NIL 995141) (-414 991843 992025 992054 "FVC" 992345 T FVC (NIL) -9 NIL 992528) (-413 991485 991640 991721 "FUNCTION" 991795 NIL FUNCTION (NIL NIL) -8 NIL NIL) (-412 989155 989706 990195 "FT" 991016 T FT (NIL) -8 NIL NIL) (-411 987973 988456 988659 "FTEM" 988972 T FTEM (NIL) -8 NIL NIL) (-410 986238 986526 986928 "FSUPFACT" 987665 NIL FSUPFACT (NIL T T T) -7 NIL NIL) (-409 984635 984924 985256 "FST" 985926 T FST (NIL) -8 NIL NIL) (-408 983810 983916 984110 "FSRED" 984517 NIL FSRED (NIL T T) -7 NIL NIL) (-407 982489 982744 983098 "FSPRMELT" 983525 NIL FSPRMELT (NIL T T) -7 NIL NIL) (-406 979574 980012 980511 "FSPECF" 982052 NIL FSPECF (NIL T T) -7 NIL NIL) (-405 961947 970504 970545 "FS" 974383 NIL FS (NIL T) -9 NIL 976665) (-404 950597 953587 957643 "FS-" 957940 NIL FS- (NIL T T) -8 NIL NIL) (-403 950113 950167 950343 "FSINT" 950538 NIL FSINT (NIL T T) -7 NIL NIL) (-402 948394 949106 949409 "FSERIES" 949892 NIL FSERIES (NIL T T) -8 NIL NIL) (-401 947412 947528 947758 "FSCINT" 948274 NIL FSCINT (NIL T T) -7 NIL NIL) (-400 943646 946356 946398 "FSAGG" 946768 NIL FSAGG (NIL T) -9 NIL 947027) (-399 941408 942009 942805 "FSAGG-" 942900 NIL FSAGG- (NIL T T) -8 NIL NIL) (-398 940450 940593 940820 "FSAGG2" 941261 NIL FSAGG2 (NIL T T T T) -7 NIL NIL) (-397 938109 938388 938941 "FS2UPS" 940168 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL) (-396 937695 937738 937891 "FS2" 938060 NIL FS2 (NIL T T T T) -7 NIL NIL) (-395 936555 936726 937034 "FS2EXPXP" 937520 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL) (-394 935981 936096 936248 "FRUTIL" 936435 NIL FRUTIL (NIL T) -7 NIL NIL) (-393 927402 931480 932836 "FR" 934657 NIL FR (NIL T) -8 NIL NIL) (-392 922478 925121 925162 "FRNAALG" 926558 NIL FRNAALG (NIL T) -9 NIL 927165) (-391 918157 919227 920502 "FRNAALG-" 921252 NIL FRNAALG- (NIL T T) -8 NIL NIL) (-390 917795 917838 917965 "FRNAAF2" 918108 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL) (-389 916160 916652 916946 "FRMOD" 917608 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL) (-388 913883 914551 914867 "FRIDEAL" 915951 NIL FRIDEAL (NIL T T T T) -8 NIL NIL) (-387 913082 913169 913456 "FRIDEAL2" 913790 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL) (-386 912339 912747 912789 "FRETRCT" 912794 NIL FRETRCT (NIL T) -9 NIL 912965) (-385 911451 911682 912033 "FRETRCT-" 912038 NIL FRETRCT- (NIL T T) -8 NIL NIL) (-384 908660 909880 909940 "FRAMALG" 910822 NIL FRAMALG (NIL T T) -9 NIL 911114) (-383 906793 907249 907879 "FRAMALG-" 908102 NIL FRAMALG- (NIL T T T) -8 NIL NIL) (-382 900695 906268 906544 "FRAC" 906549 NIL FRAC (NIL T) -8 NIL NIL) (-381 900331 900388 900495 "FRAC2" 900632 NIL FRAC2 (NIL T T) -7 NIL NIL) (-380 899967 900024 900131 "FR2" 900268 NIL FR2 (NIL T T) -7 NIL NIL) (-379 894640 897553 897582 "FPS" 898701 T FPS (NIL) -9 NIL 899257) (-378 894089 894198 894362 "FPS-" 894508 NIL FPS- (NIL T) -8 NIL NIL) (-377 891537 893234 893263 "FPC" 893488 T FPC (NIL) -9 NIL 893630) (-376 891330 891370 891467 "FPC-" 891472 NIL FPC- (NIL T) -8 NIL NIL) (-375 890208 890818 890860 "FPATMAB" 890865 NIL FPATMAB (NIL T) -9 NIL 891017) (-374 887908 888384 888810 "FPARFRAC" 889845 NIL FPARFRAC (NIL T T) -8 NIL NIL) (-373 883303 883800 884482 "FORTRAN" 887340 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL) (-372 881019 881519 882058 "FORT" 882784 T FORT (NIL) -7 NIL NIL) (-371 878694 879256 879285 "FORTFN" 880345 T FORTFN (NIL) -9 NIL 880969) (-370 878457 878507 878536 "FORTCAT" 878595 T FORTCAT (NIL) -9 NIL 878657) (-369 876517 877000 877399 "FORMULA" 878078 T FORMULA (NIL) -8 NIL NIL) (-368 876305 876335 876404 "FORMULA1" 876481 NIL FORMULA1 (NIL T) -7 NIL NIL) (-367 875828 875880 876053 "FORDER" 876247 NIL FORDER (NIL T T T T) -7 NIL NIL) (-366 874924 875088 875281 "FOP" 875655 T FOP (NIL) -7 NIL NIL) (-365 873532 874204 874378 "FNLA" 874806 NIL FNLA (NIL NIL NIL T) -8 NIL NIL) (-364 872200 872589 872618 "FNCAT" 873190 T FNCAT (NIL) -9 NIL 873483) (-363 871766 872159 872187 "FNAME" 872192 T FNAME (NIL) -8 NIL NIL) (-362 870425 871398 871427 "FMTC" 871432 T FMTC (NIL) -9 NIL 871467) (-361 866743 867950 868578 "FMONOID" 869830 NIL FMONOID (NIL T) -8 NIL NIL) (-360 865963 866486 866634 "FM" 866639 NIL FM (NIL T T) -8 NIL NIL) (-359 863386 864032 864061 "FMFUN" 865205 T FMFUN (NIL) -9 NIL 865913) (-358 862654 862835 862864 "FMC" 863154 T FMC (NIL) -9 NIL 863336) (-357 859883 860717 860771 "FMCAT" 861953 NIL FMCAT (NIL T T) -9 NIL 862447) (-356 858778 859651 859750 "FM1" 859828 NIL FM1 (NIL T T) -8 NIL NIL) (-355 856552 856968 857462 "FLOATRP" 858329 NIL FLOATRP (NIL T) -7 NIL NIL) (-354 850038 854208 854838 "FLOAT" 855942 T FLOAT (NIL) -8 NIL NIL) (-353 847476 847976 848554 "FLOATCP" 849505 NIL FLOATCP (NIL T) -7 NIL NIL) (-352 846264 847112 847153 "FLINEXP" 847158 NIL FLINEXP (NIL T) -9 NIL 847251) (-351 845419 845654 845981 "FLINEXP-" 845986 NIL FLINEXP- (NIL T T) -8 NIL NIL) (-350 844495 844639 844863 "FLASORT" 845271 NIL FLASORT (NIL T T) -7 NIL NIL) (-349 841713 842555 842608 "FLALG" 843835 NIL FLALG (NIL T T) -9 NIL 844302) (-348 835497 839199 839241 "FLAGG" 840503 NIL FLAGG (NIL T) -9 NIL 841155) (-347 834223 834562 835052 "FLAGG-" 835057 NIL FLAGG- (NIL T T) -8 NIL NIL) (-346 833265 833408 833635 "FLAGG2" 834076 NIL FLAGG2 (NIL T T T T) -7 NIL NIL) (-345 830237 831255 831315 "FINRALG" 832443 NIL FINRALG (NIL T T) -9 NIL 832951) (-344 829397 829626 829965 "FINRALG-" 829970 NIL FINRALG- (NIL T T T) -8 NIL NIL) (-343 828803 829016 829045 "FINITE" 829241 T FINITE (NIL) -9 NIL 829348) (-342 821262 823423 823464 "FINAALG" 827131 NIL FINAALG (NIL T) -9 NIL 828584) (-341 816603 817644 818788 "FINAALG-" 820167 NIL FINAALG- (NIL T T) -8 NIL NIL) (-340 815998 816358 816461 "FILE" 816533 NIL FILE (NIL T) -8 NIL NIL) (-339 814682 814994 815049 "FILECAT" 815733 NIL FILECAT (NIL T T) -9 NIL 815949) (-338 812544 814100 814129 "FIELD" 814169 T FIELD (NIL) -9 NIL 814249) (-337 811164 811549 812060 "FIELD-" 812065 NIL FIELD- (NIL T) -8 NIL NIL) (-336 808979 809801 810147 "FGROUP" 810851 NIL FGROUP (NIL T) -8 NIL NIL) (-335 808069 808233 808453 "FGLMICPK" 808811 NIL FGLMICPK (NIL T NIL) -7 NIL NIL) (-334 803871 807994 808051 "FFX" 808056 NIL FFX (NIL T NIL) -8 NIL NIL) (-333 803472 803533 803668 "FFSLPE" 803804 NIL FFSLPE (NIL T T T) -7 NIL NIL) (-332 799467 800244 801040 "FFPOLY" 802708 NIL FFPOLY (NIL T) -7 NIL NIL) (-331 798971 799007 799216 "FFPOLY2" 799425 NIL FFPOLY2 (NIL T T) -7 NIL NIL) (-330 794793 798890 798953 "FFP" 798958 NIL FFP (NIL T NIL) -8 NIL NIL) (-329 790161 794704 794768 "FF" 794773 NIL FF (NIL NIL NIL) -8 NIL NIL) (-328 785257 789504 789694 "FFNBX" 790015 NIL FFNBX (NIL T NIL) -8 NIL NIL) (-327 780167 784392 784650 "FFNBP" 785111 NIL FFNBP (NIL T NIL) -8 NIL NIL) (-326 774770 779451 779662 "FFNB" 780000 NIL FFNB (NIL NIL NIL) -8 NIL NIL) (-325 773602 773800 774115 "FFINTBAS" 774567 NIL FFINTBAS (NIL T T T) -7 NIL NIL) (-324 769825 772065 772094 "FFIELDC" 772714 T FFIELDC (NIL) -9 NIL 773090) (-323 768488 768858 769355 "FFIELDC-" 769360 NIL FFIELDC- (NIL T) -8 NIL NIL) (-322 768058 768103 768227 "FFHOM" 768430 NIL FFHOM (NIL T T T) -7 NIL NIL) (-321 765756 766240 766757 "FFF" 767573 NIL FFF (NIL T) -7 NIL NIL) (-320 761344 765498 765599 "FFCGX" 765699 NIL FFCGX (NIL T NIL) -8 NIL NIL) (-319 756946 761076 761183 "FFCGP" 761287 NIL FFCGP (NIL T NIL) -8 NIL NIL) (-318 752099 756673 756781 "FFCG" 756882 NIL FFCG (NIL NIL NIL) -8 NIL NIL) (-317 734044 743167 743254 "FFCAT" 748419 NIL FFCAT (NIL T T T) -9 NIL 749906) (-316 729242 730289 731603 "FFCAT-" 732833 NIL FFCAT- (NIL T T T T) -8 NIL NIL) (-315 728653 728696 728931 "FFCAT2" 729193 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL) (-314 717853 721643 722860 "FEXPR" 727508 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL) (-313 716852 717287 717329 "FEVALAB" 717413 NIL FEVALAB (NIL T) -9 NIL 717674) (-312 716011 716221 716559 "FEVALAB-" 716564 NIL FEVALAB- (NIL T T) -8 NIL NIL) (-311 714604 715394 715597 "FDIV" 715910 NIL FDIV (NIL T T T T) -8 NIL NIL) (-310 711670 712385 712501 "FDIVCAT" 714069 NIL FDIVCAT (NIL T T T T) -9 NIL 714506) (-309 711432 711459 711629 "FDIVCAT-" 711634 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL) (-308 710652 710739 711016 "FDIV2" 711339 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL) (-307 709338 709597 709886 "FCPAK1" 710383 T FCPAK1 (NIL) -7 NIL NIL) (-306 708466 708838 708979 "FCOMP" 709229 NIL FCOMP (NIL T) -8 NIL NIL) (-305 692094 695509 699072 "FC" 704923 T FC (NIL) -8 NIL NIL) (-304 684689 688735 688776 "FAXF" 690578 NIL FAXF (NIL T) -9 NIL 691269) (-303 681968 682623 683448 "FAXF-" 683913 NIL FAXF- (NIL T T) -8 NIL NIL) (-302 677068 681344 681520 "FARRAY" 681825 NIL FARRAY (NIL T) -8 NIL NIL) (-301 672458 674529 674582 "FAMR" 675594 NIL FAMR (NIL T T) -9 NIL 676054) (-300 671349 671651 672085 "FAMR-" 672090 NIL FAMR- (NIL T T T) -8 NIL NIL) (-299 670545 671271 671324 "FAMONOID" 671329 NIL FAMONOID (NIL T) -8 NIL NIL) (-298 668377 669061 669115 "FAMONC" 670056 NIL FAMONC (NIL T T) -9 NIL 670441) (-297 667069 668131 668268 "FAGROUP" 668273 NIL FAGROUP (NIL T) -8 NIL NIL) (-296 664872 665191 665593 "FACUTIL" 666750 NIL FACUTIL (NIL T T T T) -7 NIL NIL) (-295 663971 664156 664378 "FACTFUNC" 664682 NIL FACTFUNC (NIL T) -7 NIL NIL) (-294 656294 663222 663434 "EXPUPXS" 663827 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL) (-293 653777 654317 654903 "EXPRTUBE" 655728 T EXPRTUBE (NIL) -7 NIL NIL) (-292 649971 650563 651300 "EXPRODE" 653116 NIL EXPRODE (NIL T T) -7 NIL NIL) (-291 635130 648630 649056 "EXPR" 649577 NIL EXPR (NIL T) -8 NIL NIL) (-290 629558 630145 630957 "EXPR2UPS" 634428 NIL EXPR2UPS (NIL T T) -7 NIL NIL) (-289 629194 629251 629358 "EXPR2" 629495 NIL EXPR2 (NIL T T) -7 NIL NIL) (-288 620548 628331 628626 "EXPEXPAN" 629032 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL) (-287 620375 620505 620534 "EXIT" 620539 T EXIT (NIL) -8 NIL NIL) (-286 620002 620064 620177 "EVALCYC" 620307 NIL EVALCYC (NIL T) -7 NIL NIL) (-285 619542 619660 619702 "EVALAB" 619872 NIL EVALAB (NIL T) -9 NIL 619976) (-284 619023 619145 619366 "EVALAB-" 619371 NIL EVALAB- (NIL T T) -8 NIL NIL) (-283 616485 617797 617826 "EUCDOM" 618381 T EUCDOM (NIL) -9 NIL 618731) (-282 614890 615332 615922 "EUCDOM-" 615927 NIL EUCDOM- (NIL T) -8 NIL NIL) (-281 602468 605216 607956 "ESTOOLS" 612170 T ESTOOLS (NIL) -7 NIL NIL) (-280 602104 602161 602268 "ESTOOLS2" 602405 NIL ESTOOLS2 (NIL T T) -7 NIL NIL) (-279 601855 601897 601977 "ESTOOLS1" 602056 NIL ESTOOLS1 (NIL T) -7 NIL NIL) (-278 595792 597516 597545 "ES" 600309 T ES (NIL) -9 NIL 601715) (-277 590740 592026 593843 "ES-" 594007 NIL ES- (NIL T) -8 NIL NIL) (-276 587115 587875 588655 "ESCONT" 589980 T ESCONT (NIL) -7 NIL NIL) (-275 586860 586892 586974 "ESCONT1" 587077 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL) (-274 586535 586585 586685 "ES2" 586804 NIL ES2 (NIL T T) -7 NIL NIL) (-273 586165 586223 586332 "ES1" 586471 NIL ES1 (NIL T T) -7 NIL NIL) (-272 585381 585510 585686 "ERROR" 586009 T ERROR (NIL) -7 NIL NIL) (-271 578884 585240 585331 "EQTBL" 585336 NIL EQTBL (NIL T T) -8 NIL NIL) (-270 571321 574202 575649 "EQ" 577470 NIL -3185 (NIL T) -8 NIL NIL) (-269 570953 571010 571119 "EQ2" 571258 NIL EQ2 (NIL T T) -7 NIL NIL) (-268 566245 567291 568384 "EP" 569892 NIL EP (NIL T) -7 NIL NIL) (-267 564828 565128 565445 "ENV" 565948 T ENV (NIL) -8 NIL NIL) (-266 563987 564551 564580 "ENTIRER" 564585 T ENTIRER (NIL) -9 NIL 564630) (-265 560443 561942 562312 "EMR" 563786 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL) (-264 559586 559771 559826 "ELTAGG" 560206 NIL ELTAGG (NIL T T) -9 NIL 560417) (-263 559305 559367 559508 "ELTAGG-" 559513 NIL ELTAGG- (NIL T T T) -8 NIL NIL) (-262 559093 559122 559177 "ELTAB" 559261 NIL ELTAB (NIL T T) -9 NIL NIL) (-261 558219 558365 558564 "ELFUTS" 558944 NIL ELFUTS (NIL T T) -7 NIL NIL) (-260 557960 558016 558045 "ELEMFUN" 558150 T ELEMFUN (NIL) -9 NIL NIL) (-259 557830 557851 557919 "ELEMFUN-" 557924 NIL ELEMFUN- (NIL T) -8 NIL NIL) (-258 552721 555930 555972 "ELAGG" 556912 NIL ELAGG (NIL T) -9 NIL 557375) (-257 551006 551440 552103 "ELAGG-" 552108 NIL ELAGG- (NIL T T) -8 NIL NIL) (-256 549662 549943 550238 "ELABEXPR" 550731 T ELABEXPR (NIL) -8 NIL NIL) (-255 542530 544329 545156 "EFUPXS" 548938 NIL EFUPXS (NIL T T T T) -8 NIL NIL) (-254 535980 537781 538591 "EFULS" 541806 NIL EFULS (NIL T T T) -8 NIL NIL) (-253 533411 533769 534247 "EFSTRUC" 535612 NIL EFSTRUC (NIL T T) -7 NIL NIL) (-252 522483 524048 525608 "EF" 531926 NIL EF (NIL T T) -7 NIL NIL) (-251 521584 521968 522117 "EAB" 522354 T EAB (NIL) -8 NIL NIL) (-250 520797 521543 521571 "E04UCFA" 521576 T E04UCFA (NIL) -8 NIL NIL) (-249 520010 520756 520784 "E04NAFA" 520789 T E04NAFA (NIL) -8 NIL NIL) (-248 519223 519969 519997 "E04MBFA" 520002 T E04MBFA (NIL) -8 NIL NIL) (-247 518436 519182 519210 "E04JAFA" 519215 T E04JAFA (NIL) -8 NIL NIL) (-246 517651 518395 518423 "E04GCFA" 518428 T E04GCFA (NIL) -8 NIL NIL) (-245 516866 517610 517638 "E04FDFA" 517643 T E04FDFA (NIL) -8 NIL NIL) (-244 516079 516825 516853 "E04DGFA" 516858 T E04DGFA (NIL) -8 NIL NIL) (-243 510264 511609 512971 "E04AGNT" 514737 T E04AGNT (NIL) -7 NIL NIL) (-242 508990 509470 509511 "DVARCAT" 509986 NIL DVARCAT (NIL T) -9 NIL 510184) (-241 508194 508406 508720 "DVARCAT-" 508725 NIL DVARCAT- (NIL T T) -8 NIL NIL) (-240 501056 507996 508123 "DSMP" 508128 NIL DSMP (NIL T T T) -8 NIL NIL) (-239 495866 497001 498069 "DROPT" 500008 T DROPT (NIL) -8 NIL NIL) (-238 495531 495590 495688 "DROPT1" 495801 NIL DROPT1 (NIL T) -7 NIL NIL) (-237 490646 491772 492909 "DROPT0" 494414 T DROPT0 (NIL) -7 NIL NIL) (-236 488991 489316 489702 "DRAWPT" 490280 T DRAWPT (NIL) -7 NIL NIL) (-235 483578 484501 485580 "DRAW" 487965 NIL DRAW (NIL T) -7 NIL NIL) (-234 483211 483264 483382 "DRAWHACK" 483519 NIL DRAWHACK (NIL T) -7 NIL NIL) (-233 481942 482211 482502 "DRAWCX" 482940 T DRAWCX (NIL) -7 NIL NIL) (-232 481460 481528 481678 "DRAWCURV" 481868 NIL DRAWCURV (NIL T T) -7 NIL NIL) (-231 471932 473890 476005 "DRAWCFUN" 479365 T DRAWCFUN (NIL) -7 NIL NIL) (-230 468745 470627 470669 "DQAGG" 471298 NIL DQAGG (NIL T) -9 NIL 471571) (-229 457251 463989 464072 "DPOLCAT" 465910 NIL DPOLCAT (NIL T T T T) -9 NIL 466454) (-228 452091 453437 455394 "DPOLCAT-" 455399 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL) (-227 446175 451953 452050 "DPMO" 452055 NIL DPMO (NIL NIL T T) -8 NIL NIL) (-226 440162 445956 446122 "DPMM" 446127 NIL DPMM (NIL NIL T T T) -8 NIL NIL) (-225 439675 439773 439893 "DOMAIN" 440062 T DOMAIN (NIL) -8 NIL NIL) (-224 433387 439312 439463 "DMP" 439576 NIL DMP (NIL NIL T) -8 NIL NIL) (-223 432987 433043 433187 "DLP" 433325 NIL DLP (NIL T) -7 NIL NIL) (-222 426631 432088 432315 "DLIST" 432792 NIL DLIST (NIL T) -8 NIL NIL) (-221 423477 425486 425528 "DLAGG" 426078 NIL DLAGG (NIL T) -9 NIL 426307) (-220 422186 422878 422907 "DIVRING" 423057 T DIVRING (NIL) -9 NIL 423165) (-219 421174 421427 421820 "DIVRING-" 421825 NIL DIVRING- (NIL T) -8 NIL NIL) (-218 419276 419633 420039 "DISPLAY" 420788 T DISPLAY (NIL) -7 NIL NIL) (-217 413165 419190 419253 "DIRPROD" 419258 NIL DIRPROD (NIL NIL T) -8 NIL NIL) (-216 412013 412216 412481 "DIRPROD2" 412958 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL) (-215 401643 407648 407702 "DIRPCAT" 408110 NIL DIRPCAT (NIL NIL T) -9 NIL 408937) (-214 398969 399611 400492 "DIRPCAT-" 400829 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL) (-213 398256 398416 398602 "DIOSP" 398803 T DIOSP (NIL) -7 NIL NIL) (-212 394958 397168 397210 "DIOPS" 397644 NIL DIOPS (NIL T) -9 NIL 397873) (-211 394507 394621 394812 "DIOPS-" 394817 NIL DIOPS- (NIL T T) -8 NIL NIL) (-210 393378 394016 394045 "DIFRING" 394232 T DIFRING (NIL) -9 NIL 394341) (-209 393024 393101 393253 "DIFRING-" 393258 NIL DIFRING- (NIL T) -8 NIL NIL) (-208 390813 392095 392136 "DIFEXT" 392495 NIL DIFEXT (NIL T) -9 NIL 392788) (-207 389099 389527 390192 "DIFEXT-" 390197 NIL DIFEXT- (NIL T T) -8 NIL NIL) (-206 386421 388631 388673 "DIAGG" 388678 NIL DIAGG (NIL T) -9 NIL 388698) (-205 385805 385962 386214 "DIAGG-" 386219 NIL DIAGG- (NIL T T) -8 NIL NIL) (-204 381270 384764 385041 "DHMATRIX" 385574 NIL DHMATRIX (NIL T) -8 NIL NIL) (-203 376882 377791 378801 "DFSFUN" 380280 T DFSFUN (NIL) -7 NIL NIL) (-202 371668 375596 375961 "DFLOAT" 376537 T DFLOAT (NIL) -8 NIL NIL) (-201 369901 370182 370577 "DFINTTLS" 371376 NIL DFINTTLS (NIL T T) -7 NIL NIL) (-200 366934 367936 368334 "DERHAM" 369568 NIL DERHAM (NIL T NIL) -8 NIL NIL) (-199 364783 366709 366798 "DEQUEUE" 366878 NIL DEQUEUE (NIL T) -8 NIL NIL) (-198 364001 364134 364329 "DEGRED" 364645 NIL DEGRED (NIL T T) -7 NIL NIL) (-197 360401 361146 361998 "DEFINTRF" 363229 NIL DEFINTRF (NIL T) -7 NIL NIL) (-196 357932 358401 358999 "DEFINTEF" 359920 NIL DEFINTEF (NIL T T) -7 NIL NIL) (-195 351763 357373 357539 "DECIMAL" 357786 T DECIMAL (NIL) -8 NIL NIL) (-194 349275 349733 350239 "DDFACT" 351307 NIL DDFACT (NIL T T) -7 NIL NIL) (-193 348871 348914 349065 "DBLRESP" 349226 NIL DBLRESP (NIL T T T T) -7 NIL NIL) (-192 346581 346915 347284 "DBASE" 348629 NIL DBASE (NIL T) -8 NIL NIL) (-191 345716 346540 346568 "D03FAFA" 346573 T D03FAFA (NIL) -8 NIL NIL) (-190 344852 345675 345703 "D03EEFA" 345708 T D03EEFA (NIL) -8 NIL NIL) (-189 342802 343268 343757 "D03AGNT" 344383 T D03AGNT (NIL) -7 NIL NIL) (-188 342120 342761 342789 "D02EJFA" 342794 T D02EJFA (NIL) -8 NIL NIL) (-187 341438 342079 342107 "D02CJFA" 342112 T D02CJFA (NIL) -8 NIL NIL) (-186 340756 341397 341425 "D02BHFA" 341430 T D02BHFA (NIL) -8 NIL NIL) (-185 340074 340715 340743 "D02BBFA" 340748 T D02BBFA (NIL) -8 NIL NIL) (-184 333272 334860 336466 "D02AGNT" 338488 T D02AGNT (NIL) -7 NIL NIL) (-183 331041 331563 332109 "D01WGTS" 332746 T D01WGTS (NIL) -7 NIL NIL) (-182 330144 331000 331028 "D01TRNS" 331033 T D01TRNS (NIL) -8 NIL NIL) (-181 329247 330103 330131 "D01GBFA" 330136 T D01GBFA (NIL) -8 NIL NIL) (-180 328350 329206 329234 "D01FCFA" 329239 T D01FCFA (NIL) -8 NIL NIL) (-179 327453 328309 328337 "D01ASFA" 328342 T D01ASFA (NIL) -8 NIL NIL) (-178 326556 327412 327440 "D01AQFA" 327445 T D01AQFA (NIL) -8 NIL NIL) (-177 325659 326515 326543 "D01APFA" 326548 T D01APFA (NIL) -8 NIL NIL) (-176 324762 325618 325646 "D01ANFA" 325651 T D01ANFA (NIL) -8 NIL NIL) (-175 323865 324721 324749 "D01AMFA" 324754 T D01AMFA (NIL) -8 NIL NIL) (-174 322968 323824 323852 "D01ALFA" 323857 T D01ALFA (NIL) -8 NIL NIL) (-173 322071 322927 322955 "D01AKFA" 322960 T D01AKFA (NIL) -8 NIL NIL) (-172 321174 322030 322058 "D01AJFA" 322063 T D01AJFA (NIL) -8 NIL NIL) (-171 314478 316027 317586 "D01AGNT" 319635 T D01AGNT (NIL) -7 NIL NIL) (-170 313815 313943 314095 "CYCLOTOM" 314346 T CYCLOTOM (NIL) -7 NIL NIL) (-169 310550 311263 311990 "CYCLES" 313108 T CYCLES (NIL) -7 NIL NIL) (-168 309862 309996 310167 "CVMP" 310411 NIL CVMP (NIL T) -7 NIL NIL) (-167 307644 307901 308276 "CTRIGMNP" 309590 NIL CTRIGMNP (NIL T T) -7 NIL NIL) (-166 307249 307332 307437 "CTORCALL" 307559 T CTORCALL (NIL) -8 NIL NIL) (-165 306623 306722 306875 "CSTTOOLS" 307146 NIL CSTTOOLS (NIL T T) -7 NIL NIL) (-164 302422 303079 303837 "CRFP" 305935 NIL CRFP (NIL T T) -7 NIL NIL) (-163 301469 301654 301882 "CRAPACK" 302226 NIL CRAPACK (NIL T) -7 NIL NIL) (-162 300853 300954 301158 "CPMATCH" 301345 NIL CPMATCH (NIL T T T) -7 NIL NIL) (-161 300578 300606 300712 "CPIMA" 300819 NIL CPIMA (NIL T T T) -7 NIL NIL) (-160 296942 297614 298332 "COORDSYS" 299913 NIL COORDSYS (NIL T) -7 NIL NIL) (-159 296326 296455 296605 "CONTOUR" 296812 T CONTOUR (NIL) -8 NIL NIL) (-158 292187 294329 294821 "CONTFRAC" 295866 NIL CONTFRAC (NIL T) -8 NIL NIL) (-157 291340 291904 291933 "COMRING" 291938 T COMRING (NIL) -9 NIL 291989) (-156 290421 290698 290882 "COMPPROP" 291176 T COMPPROP (NIL) -8 NIL NIL) (-155 290082 290117 290245 "COMPLPAT" 290380 NIL COMPLPAT (NIL T T T) -7 NIL NIL) (-154 280063 289891 290000 "COMPLEX" 290005 NIL COMPLEX (NIL T) -8 NIL NIL) (-153 279699 279756 279863 "COMPLEX2" 280000 NIL COMPLEX2 (NIL T T) -7 NIL NIL) (-152 279417 279452 279550 "COMPFACT" 279658 NIL COMPFACT (NIL T T) -7 NIL NIL) (-151 263751 274045 274086 "COMPCAT" 275088 NIL COMPCAT (NIL T) -9 NIL 276481) (-150 253266 256190 259817 "COMPCAT-" 260173 NIL COMPCAT- (NIL T T) -8 NIL NIL) (-149 252997 253025 253127 "COMMUPC" 253232 NIL COMMUPC (NIL T T T) -7 NIL NIL) (-148 252792 252825 252884 "COMMONOP" 252958 T COMMONOP (NIL) -7 NIL NIL) (-147 252375 252543 252630 "COMM" 252725 T COMM (NIL) -8 NIL NIL) (-146 251623 251817 251846 "COMBOPC" 252184 T COMBOPC (NIL) -9 NIL 252359) (-145 250519 250729 250971 "COMBINAT" 251413 NIL COMBINAT (NIL T) -7 NIL NIL) (-144 246717 247290 247930 "COMBF" 249941 NIL COMBF (NIL T T) -7 NIL NIL) (-143 245503 245833 246068 "COLOR" 246502 T COLOR (NIL) -8 NIL NIL) (-142 245143 245190 245315 "CMPLXRT" 245450 NIL CMPLXRT (NIL T T) -7 NIL NIL) (-141 240645 241673 242753 "CLIP" 244083 T CLIP (NIL) -7 NIL NIL) (-140 238983 239753 239991 "CLIF" 240473 NIL CLIF (NIL NIL T NIL) -8 NIL NIL) (-139 235205 237129 237171 "CLAGG" 238100 NIL CLAGG (NIL T) -9 NIL 238636) (-138 233627 234084 234667 "CLAGG-" 234672 NIL CLAGG- (NIL T T) -8 NIL NIL) (-137 233171 233256 233396 "CINTSLPE" 233536 NIL CINTSLPE (NIL T T) -7 NIL NIL) (-136 230672 231143 231691 "CHVAR" 232699 NIL CHVAR (NIL T T T) -7 NIL NIL) (-135 229894 230458 230487 "CHARZ" 230492 T CHARZ (NIL) -9 NIL 230506) (-134 229648 229688 229766 "CHARPOL" 229848 NIL CHARPOL (NIL T) -7 NIL NIL) (-133 228754 229351 229380 "CHARNZ" 229427 T CHARNZ (NIL) -9 NIL 229482) (-132 226777 227444 227779 "CHAR" 228439 T CHAR (NIL) -8 NIL NIL) (-131 226502 226563 226592 "CFCAT" 226703 T CFCAT (NIL) -9 NIL NIL) (-130 225747 225858 226040 "CDEN" 226386 NIL CDEN (NIL T T T) -7 NIL NIL) (-129 221739 224900 225180 "CCLASS" 225487 T CCLASS (NIL) -8 NIL NIL) (-128 216792 217768 218521 "CARTEN" 221042 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL) (-127 215900 216048 216269 "CARTEN2" 216639 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL) (-126 214197 215052 215308 "CARD" 215664 T CARD (NIL) -8 NIL NIL) (-125 213569 213897 213926 "CACHSET" 214058 T CACHSET (NIL) -9 NIL 214135) (-124 213065 213361 213390 "CABMON" 213440 T CABMON (NIL) -9 NIL 213496) (-123 210622 212757 212864 "BTREE" 212991 NIL BTREE (NIL T) -8 NIL NIL) (-122 208120 210270 210392 "BTOURN" 210532 NIL BTOURN (NIL T) -8 NIL NIL) (-121 205538 207591 207633 "BTCAT" 207701 NIL BTCAT (NIL T) -9 NIL 207778) (-120 205205 205285 205434 "BTCAT-" 205439 NIL BTCAT- (NIL T T) -8 NIL NIL) (-119 200425 204296 204325 "BTAGG" 204581 T BTAGG (NIL) -9 NIL 204760) (-118 199848 199992 200222 "BTAGG-" 200227 NIL BTAGG- (NIL T) -8 NIL NIL) (-117 196892 199126 199341 "BSTREE" 199665 NIL BSTREE (NIL T) -8 NIL NIL) (-116 196030 196156 196340 "BRILL" 196748 NIL BRILL (NIL T) -7 NIL NIL) (-115 192731 194758 194800 "BRAGG" 195449 NIL BRAGG (NIL T) -9 NIL 195706) (-114 191260 191666 192221 "BRAGG-" 192226 NIL BRAGG- (NIL T T) -8 NIL NIL) (-113 184468 190606 190790 "BPADICRT" 191108 NIL BPADICRT (NIL NIL) -8 NIL NIL) (-112 182772 184405 184450 "BPADIC" 184455 NIL BPADIC (NIL NIL) -8 NIL NIL) (-111 182472 182502 182615 "BOUNDZRO" 182736 NIL BOUNDZRO (NIL T T) -7 NIL NIL) (-110 177987 179078 179945 "BOP" 181625 T BOP (NIL) -8 NIL NIL) (-109 175608 176052 176572 "BOP1" 177500 NIL BOP1 (NIL T) -7 NIL NIL) (-108 174227 174938 175161 "BOOLEAN" 175405 T BOOLEAN (NIL) -8 NIL NIL) (-107 173593 173971 174024 "BMODULE" 174029 NIL BMODULE (NIL T T) -9 NIL 174093) (-106 169403 173391 173464 "BITS" 173540 T BITS (NIL) -8 NIL NIL) (-105 168500 168935 169087 "BINFILE" 169271 T BINFILE (NIL) -8 NIL NIL) (-104 167912 168034 168176 "BINDING" 168378 T BINDING (NIL) -8 NIL NIL) (-103 161747 167356 167521 "BINARY" 167767 T BINARY (NIL) -8 NIL NIL) (-102 159574 161002 161044 "BGAGG" 161304 NIL BGAGG (NIL T) -9 NIL 161441) (-101 159405 159437 159528 "BGAGG-" 159533 NIL BGAGG- (NIL T T) -8 NIL NIL) (-100 158503 158789 158994 "BFUNCT" 159220 T BFUNCT (NIL) -8 NIL NIL) (-99 157204 157382 157667 "BEZOUT" 158327 NIL BEZOUT (NIL T T T T T) -7 NIL NIL) (-98 153729 156064 156392 "BBTREE" 156907 NIL BBTREE (NIL T) -8 NIL NIL) (-97 153466 153519 153546 "BASTYPE" 153663 T BASTYPE (NIL) -9 NIL NIL) (-96 153321 153350 153420 "BASTYPE-" 153425 NIL BASTYPE- (NIL T) -8 NIL NIL) (-95 152759 152835 152985 "BALFACT" 153232 NIL BALFACT (NIL T T) -7 NIL NIL) (-94 151581 152178 152363 "AUTOMOR" 152604 NIL AUTOMOR (NIL T) -8 NIL NIL) (-93 151306 151311 151338 "ATTREG" 151343 T ATTREG (NIL) -9 NIL NIL) (-92 149585 150003 150355 "ATTRBUT" 150972 T ATTRBUT (NIL) -8 NIL NIL) (-91 149120 149233 149260 "ATRIG" 149461 T ATRIG (NIL) -9 NIL NIL) (-90 148929 148970 149057 "ATRIG-" 149062 NIL ATRIG- (NIL T) -8 NIL NIL) (-89 147126 148705 148793 "ASTACK" 148872 NIL ASTACK (NIL T) -8 NIL NIL) (-88 145631 145928 146293 "ASSOCEQ" 146808 NIL ASSOCEQ (NIL T T) -7 NIL NIL) (-87 144663 145290 145414 "ASP9" 145538 NIL ASP9 (NIL NIL) -8 NIL NIL) (-86 144427 144611 144650 "ASP8" 144655 NIL ASP8 (NIL NIL) -8 NIL NIL) (-85 143297 144032 144174 "ASP80" 144316 NIL ASP80 (NIL NIL) -8 NIL NIL) (-84 142196 142932 143064 "ASP7" 143196 NIL ASP7 (NIL NIL) -8 NIL NIL) (-83 141152 141873 141991 "ASP78" 142109 NIL ASP78 (NIL NIL) -8 NIL NIL) (-82 140123 140832 140949 "ASP77" 141066 NIL ASP77 (NIL NIL) -8 NIL NIL) (-81 139038 139761 139892 "ASP74" 140023 NIL ASP74 (NIL NIL) -8 NIL NIL) (-80 137939 138673 138805 "ASP73" 138937 NIL ASP73 (NIL NIL) -8 NIL NIL) (-79 136894 137616 137734 "ASP6" 137852 NIL ASP6 (NIL NIL) -8 NIL NIL) (-78 135843 136571 136689 "ASP55" 136807 NIL ASP55 (NIL NIL) -8 NIL NIL) (-77 134793 135517 135636 "ASP50" 135755 NIL ASP50 (NIL NIL) -8 NIL NIL) (-76 133881 134494 134604 "ASP4" 134714 NIL ASP4 (NIL NIL) -8 NIL NIL) (-75 132969 133582 133692 "ASP49" 133802 NIL ASP49 (NIL NIL) -8 NIL NIL) (-74 131754 132508 132676 "ASP42" 132858 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL) (-73 130532 131287 131457 "ASP41" 131641 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL) (-72 129484 130209 130327 "ASP35" 130445 NIL ASP35 (NIL NIL) -8 NIL NIL) (-71 129249 129432 129471 "ASP34" 129476 NIL ASP34 (NIL NIL) -8 NIL NIL) (-70 128986 129053 129129 "ASP33" 129204 NIL ASP33 (NIL NIL) -8 NIL NIL) (-69 127882 128621 128753 "ASP31" 128885 NIL ASP31 (NIL NIL) -8 NIL NIL) (-68 127647 127830 127869 "ASP30" 127874 NIL ASP30 (NIL NIL) -8 NIL NIL) (-67 127382 127451 127527 "ASP29" 127602 NIL ASP29 (NIL NIL) -8 NIL NIL) (-66 127147 127330 127369 "ASP28" 127374 NIL ASP28 (NIL NIL) -8 NIL NIL) (-65 126912 127095 127134 "ASP27" 127139 NIL ASP27 (NIL NIL) -8 NIL NIL) (-64 125996 126610 126721 "ASP24" 126832 NIL ASP24 (NIL NIL) -8 NIL NIL) (-63 124913 125637 125767 "ASP20" 125897 NIL ASP20 (NIL NIL) -8 NIL NIL) (-62 124001 124614 124724 "ASP1" 124834 NIL ASP1 (NIL NIL) -8 NIL NIL) (-61 122945 123675 123794 "ASP19" 123913 NIL ASP19 (NIL NIL) -8 NIL NIL) (-60 122682 122749 122825 "ASP12" 122900 NIL ASP12 (NIL NIL) -8 NIL NIL) (-59 121535 122281 122425 "ASP10" 122569 NIL ASP10 (NIL NIL) -8 NIL NIL) (-58 119434 121379 121470 "ARRAY2" 121475 NIL ARRAY2 (NIL T) -8 NIL NIL) (-57 115250 119082 119196 "ARRAY1" 119351 NIL ARRAY1 (NIL T) -8 NIL NIL) (-56 114282 114455 114676 "ARRAY12" 115073 NIL ARRAY12 (NIL T T) -7 NIL NIL) (-55 108641 110512 110588 "ARR2CAT" 113218 NIL ARR2CAT (NIL T T T) -9 NIL 113976) (-54 106075 106819 107773 "ARR2CAT-" 107778 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL) (-53 104835 104985 105288 "APPRULE" 105913 NIL APPRULE (NIL T T T) -7 NIL NIL) (-52 104488 104536 104654 "APPLYORE" 104781 NIL APPLYORE (NIL T T T) -7 NIL NIL) (-51 103462 103753 103948 "ANY" 104311 T ANY (NIL) -8 NIL NIL) (-50 102740 102863 103020 "ANY1" 103336 NIL ANY1 (NIL T) -7 NIL NIL) (-49 100272 101190 101515 "ANTISYM" 102465 NIL ANTISYM (NIL T NIL) -8 NIL NIL) (-48 100099 100231 100258 "ANON" 100263 T ANON (NIL) -8 NIL NIL) (-47 94176 98644 99095 "AN" 99666 T AN (NIL) -8 NIL NIL) (-46 90529 91927 91978 "AMR" 92717 NIL AMR (NIL T T) -9 NIL 93316) (-45 89642 89863 90225 "AMR-" 90230 NIL AMR- (NIL T T T) -8 NIL NIL) (-44 74192 89559 89620 "ALIST" 89625 NIL ALIST (NIL T T) -8 NIL NIL) (-43 71029 73786 73955 "ALGSC" 74110 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL) (-42 67585 68139 68746 "ALGPKG" 70469 NIL ALGPKG (NIL T T) -7 NIL NIL) (-41 66862 66963 67147 "ALGMFACT" 67471 NIL ALGMFACT (NIL T T T) -7 NIL NIL) (-40 62612 63292 63946 "ALGMANIP" 66386 NIL ALGMANIP (NIL T T) -7 NIL NIL) (-39 53931 62238 62388 "ALGFF" 62545 NIL ALGFF (NIL T T T NIL) -8 NIL NIL) (-38 53127 53258 53437 "ALGFACT" 53789 NIL ALGFACT (NIL T) -7 NIL NIL) (-37 52117 52727 52766 "ALGEBRA" 52826 NIL ALGEBRA (NIL T) -9 NIL 52884) (-36 51835 51894 52026 "ALGEBRA-" 52031 NIL ALGEBRA- (NIL T T) -8 NIL NIL) (-35 34095 49838 49891 "ALAGG" 50027 NIL ALAGG (NIL T T) -9 NIL 50188) (-34 33630 33743 33770 "AHYP" 33971 T AHYP (NIL) -9 NIL NIL) (-33 32560 32808 32835 "AGG" 33334 T AGG (NIL) -9 NIL 33613) (-32 31994 32156 32370 "AGG-" 32375 NIL AGG- (NIL T) -8 NIL NIL) (-31 29681 30099 30516 "AF" 31637 NIL AF (NIL T T) -7 NIL NIL) (-30 28950 29208 29364 "ACPLOT" 29543 T ACPLOT (NIL) -8 NIL NIL) (-29 18416 26362 26414 "ACFS" 27125 NIL ACFS (NIL T) -9 NIL 27364) (-28 16430 16920 17695 "ACFS-" 17700 NIL ACFS- (NIL T T) -8 NIL NIL) (-27 12697 14653 14680 "ACF" 15559 T ACF (NIL) -9 NIL 15971) (-26 11401 11735 12228 "ACF-" 12233 NIL ACF- (NIL T) -8 NIL NIL) (-25 10999 11168 11195 "ABELSG" 11287 T ABELSG (NIL) -9 NIL 11352) (-24 10866 10891 10957 "ABELSG-" 10962 NIL ABELSG- (NIL T) -8 NIL NIL) (-23 10235 10496 10523 "ABELMON" 10693 T ABELMON (NIL) -9 NIL 10805) (-22 9899 9983 10121 "ABELMON-" 10126 NIL ABELMON- (NIL T) -8 NIL NIL) (-21 9233 9579 9606 "ABELGRP" 9731 T ABELGRP (NIL) -9 NIL 9813) (-20 8696 8825 9041 "ABELGRP-" 9046 NIL ABELGRP- (NIL T) -8 NIL NIL) (-19 4333 8035 8075 "A1AGG" 8080 NIL A1AGG (NIL T) -9 NIL 8120) (-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 3ff2fc39..7298ace0 100644
--- a/src/share/algebra/operation.daase
+++ b/src/share/algebra/operation.daase
@@ -1,274 +1,187 @@
-(725490 . 3409939479)
-(((*1 *1 *1)
- (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-311 *5 *6 *7 *8)) (-4 *5 (-405 *4)) (-4 *6 (-1142 *5))
- (-4 *7 (-1142 (-382 *6))) (-4 *8 (-317 *5 *6 *7))
- (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-108))
- (-5 *1 (-840 *4 *5 *6 *7 *8))))
+(725490 . 3410359539)
+(((*1 *2)
+ (-12
+ (-5 *2 (-2 (|:| -3636 (-588 (-1085))) (|:| -2430 (-588 (-1085)))))
+ (-5 *1 (-1122)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-806 *2)) (-4 *2 (-1120))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-808 *2)) (-4 *2 (-1120))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-811 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-588 (-881 *6))) (-5 *4 (-588 (-1085))) (-4 *6 (-426))
+ (-5 *2 (-588 (-588 *7))) (-5 *1 (-500 *6 *7 *5)) (-4 *7 (-338))
+ (-4 *5 (-13 (-338) (-782))))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-708)) (-5 *1 (-540 *2)) (-4 *2 (-507))))
((*1 *2 *3)
- (-12 (-5 *3 (-311 (-382 (-522)) *4 *5 *6))
- (-4 *4 (-1142 (-382 (-522)))) (-4 *5 (-1142 (-382 *4)))
- (-4 *6 (-317 (-382 (-522)) *4 *5)) (-5 *2 (-108))
- (-5 *1 (-841 *4 *5 *6)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-1 (-539 *3) *3 (-1085)))
- (-5 *6
- (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
- (-1085)))
- (-4 *3 (-260)) (-4 *3 (-574)) (-4 *3 (-962 *4)) (-4 *3 (-405 *7))
- (-5 *4 (-1085)) (-4 *7 (-563 (-821 (-522)))) (-4 *7 (-426))
- (-4 *7 (-815 (-522))) (-4 *7 (-784)) (-5 *2 (-539 *3))
- (-5 *1 (-531 *7 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-708)) (-5 *1 (-720 *2)) (-4 *2 (-37 (-382 (-522))))
- (-4 *2 (-157)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 (-108) *7 (-588 *7))) (-4 *1 (-1114 *4 *5 *6 *7))
- (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6))
- (-5 *2 (-108)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
- (-5 *1 (-160 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1166 (-3 (-442) "undefined"))) (-5 *1 (-1167)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 (-588 *2) *2 *2 *2)) (-4 *2 (-1014))
- (-5 *1 (-98 *2))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1014)) (-5 *1 (-98 *2)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1050 *4 *5)) (-4 *4 (-13 (-1014) (-33)))
- (-4 *5 (-13 (-1014) (-33))) (-5 *2 (-108)) (-5 *1 (-1051 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1049))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1166 *4)) (-4 *4 (-971)) (-4 *2 (-1142 *4))
- (-5 *1 (-418 *4 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-382 (-1081 (-291 *5)))) (-5 *3 (-1166 (-291 *5)))
- (-5 *4 (-522)) (-4 *5 (-13 (-514) (-784))) (-5 *1 (-1042 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
- (-4 *6 (-730)) (-4 *7 (-878 *4 *6 *5))
- (-5 *2
- (-2 (|:| |sysok| (-108)) (|:| |z0| (-588 *7)) (|:| |n0| (-588 *7))))
- (-5 *1 (-853 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-202))))
+ (-12 (-5 *2 (-2 (|:| -1897 *3) (|:| -3858 (-708)))) (-5 *1 (-540 *3))
+ (-4 *3 (-507)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1081 *7))
+ (-4 *5 (-971)) (-4 *7 (-971)) (-4 *2 (-1142 *5))
+ (-5 *1 (-471 *5 *2 *6 *7)) (-4 *6 (-1142 *2)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-336 *3)) (-4 *3 (-1014))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-202))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-354))))
+ (-12 (-5 *3 (-522)) (-5 *2 (-708)) (-5 *1 (-361 *4)) (-4 *4 (-1014))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-354)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-971)) (-4 *4 (-1142 *3)) (-5 *1 (-149 *3 *4 *2))
- (-4 *2 (-1142 *4))))
- ((*1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-1166 (-1166 (-522)))) (-5 *1 (-440)))))
-(((*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-51)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-283)) (-5 *1 (-163 *3)))))
-(((*1 *1) (-5 *1 (-983))))
+ (-12 (-5 *3 (-522)) (-4 *2 (-23)) (-5 *1 (-591 *4 *2 *5))
+ (-4 *4 (-1014)) (-14 *5 *2)))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-522)) (-5 *2 (-708)) (-5 *1 (-756 *4)) (-4 *4 (-784)))))
+(((*1 *2 *3 *4 *3 *5 *3)
+ (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522))
+ (-5 *2 (-960)) (-5 *1 (-692)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-872 *4)) (-4 *4 (-971)) (-5 *1 (-1074 *3 *4))
+ (-14 *3 (-850)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-291 (-202))) (-5 *2 (-382 (-522))) (-5 *1 (-281)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-784)) (-5 *2 (-588 *1))
- (-4 *1 (-405 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3))
- (-4 *3 (-1014))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *2 (-588 *1)) (-4 *1 (-878 *3 *4 *5))))
+ (|partial| -12 (-5 *3 (-311 *5 *6 *7 *8)) (-4 *5 (-405 *4))
+ (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6)))
+ (-4 *8 (-317 *5 *6 *7)) (-4 *4 (-13 (-784) (-514) (-962 (-522))))
+ (-5 *2 (-2 (|:| -3872 (-708)) (|:| -2138 *8)))
+ (-5 *1 (-840 *4 *5 *6 *7 *8))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971))
- (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-588 *3))
- (-5 *1 (-879 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-338)
- (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $))
- (-15 -2816 (*7 $))))))))
+ (|partial| -12 (-5 *3 (-311 (-382 (-522)) *4 *5 *6))
+ (-4 *4 (-1142 (-382 (-522)))) (-4 *5 (-1142 (-382 *4)))
+ (-4 *6 (-317 (-382 (-522)) *4 *5))
+ (-5 *2 (-2 (|:| -3872 (-708)) (|:| -2138 *6)))
+ (-5 *1 (-841 *4 *5 *6)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-1168))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *1 *1) (|partial| -4 *1 (-1061))))
+(((*1 *2 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-372)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-628 (-881 *4))) (-5 *1 (-953 *4))
- (-4 *4 (-971)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-3 (-108) (-588 *1)))
- (-4 *1 (-990 *4 *5 *6 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-792))) (-5 *2 (-1171)) (-5 *1 (-1048)))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))))
+ (-12 (-5 *3 (-628 *4)) (-4 *4 (-338)) (-5 *2 (-1081 *4))
+ (-5 *1 (-495 *4 *5 *6)) (-4 *5 (-338)) (-4 *6 (-13 (-338) (-782))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-348 *3)) (-4 *3 (-1120)) (-4 *3 (-784)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *1 (-348 *4)) (-4 *4 (-1120))
- (-5 *2 (-108)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1009 (-777 (-202)))) (-5 *1 (-281)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-305)))))
-(((*1 *1 *1) (-12 (-5 *1 (-158 *2)) (-4 *2 (-283)))))
-(((*1 *1 *1 *2 *2 *2 *2)
- (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971))
- (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-291 (-154 (-354)))) (-5 *1 (-305))))
- ((*1 *1 *2) (-12 (-5 *2 (-291 (-522))) (-5 *1 (-305))))
- ((*1 *1 *2) (-12 (-5 *2 (-291 (-354))) (-5 *1 (-305))))
- ((*1 *1 *2) (-12 (-5 *2 (-291 (-632))) (-5 *1 (-305))))
- ((*1 *1 *2) (-12 (-5 *2 (-291 (-639))) (-5 *1 (-305))))
- ((*1 *1 *2) (-12 (-5 *2 (-291 (-637))) (-5 *1 (-305))))
- ((*1 *1) (-5 *1 (-305))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-834 *4)) (-4 *4 (-1014)) (-5 *2 (-588 (-708)))
- (-5 *1 (-833 *4)))))
-(((*1 *2)
- (-12 (-4 *1 (-324))
- (-5 *2 (-588 (-2 (|:| -1916 (-522)) (|:| -1400 (-522))))))))
+ (-12 (-5 *2 (-588 (-270 *3))) (-5 *1 (-270 *3)) (-4 *3 (-514))
+ (-4 *3 (-1120)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))))
(((*1 *2)
(-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
(-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))))
-(((*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 (-305)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-892 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-818 *4 *3))
- (-4 *3 (-1014)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-110)) (-5 *4 (-708)) (-4 *5 (-426)) (-4 *5 (-784))
- (-4 *5 (-962 (-522))) (-4 *5 (-514)) (-5 *1 (-40 *5 *2))
- (-4 *2 (-405 *5))
- (-4 *2
- (-13 (-338) (-278)
- (-10 -8 (-15 -2805 ((-1037 *5 (-561 $)) $))
- (-15 -2816 ((-1037 *5 (-561 $)) $))
- (-15 -2190 ($ (-1037 *5 (-561 $))))))))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-693)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-423 *4 *5 *6 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1142 *6))
- (-4 *6 (-13 (-27) (-405 *5)))
- (-4 *5 (-13 (-784) (-514) (-962 (-522)))) (-4 *8 (-1142 (-382 *7)))
- (-5 *2 (-539 *3)) (-5 *1 (-510 *5 *6 *7 *8 *3))
- (-4 *3 (-317 *6 *7 *8)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4))
- (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-338))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-834 *3)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-850)) (-4 *4 (-343)) (-4 *4 (-338)) (-5 *2 (-1081 *1))
+ (-4 *1 (-304 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-1081 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-345 *3 *2)) (-4 *3 (-157)) (-4 *3 (-338))
+ (-4 *2 (-1142 *3))))
((*1 *2 *3)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-1068))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-80 PDEF))))
- (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-81 BNDY)))) (-5 *2 (-960))
- (-5 *1 (-688)))))
+ (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-1081 *4))
+ (-5 *1 (-492 *4)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *4 (-426)) (-4 *3 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
+ (-5 *1 (-423 *4 *3 *5 *6)) (-4 *6 (-878 *4 *3 *5)))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
+ (-4 *3 (-342 *4))))
+ ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1059 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1074 3 *3)) (-4 *3 (-971)) (-4 *1 (-1046 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971)))))
+(((*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-103))))
+ ((*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-195))))
+ ((*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-459))))
+ ((*1 *1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-283))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-382 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522))))
+ ((*1 *1 *1) (-4 *1 (-980))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *3 *4 *4 *2 *2 *2)
+ (-12 (-5 *2 (-522))
+ (-5 *3
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-708)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-730)) (-4 *4 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *7 (-784))
+ (-5 *1 (-423 *5 *6 *7 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085))
+ (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522))))
+ (-5 *2 (-2 (|:| -2441 *3) (|:| |nconst| *3))) (-5 *1 (-525 *5 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-159)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-708)) (-4 *6 (-338)) (-5 *4 (-1115 *6))
+ (-5 *2 (-1 (-1066 *4) (-1066 *4))) (-5 *1 (-1174 *6))
+ (-5 *5 (-1066 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354))))
+ ((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-354)))))
(((*1 *2 *3 *1)
(-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120))
(-4 *3 (-1014)) (-5 *2 (-708))))
((*1 *2 *3 *1)
(-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4238)) (-4 *1 (-461 *4))
(-4 *4 (-1120)) (-5 *2 (-708)))))
+(((*1 *2 *3 *4 *3 *3)
+ (-12 (-5 *3 (-270 *6)) (-5 *4 (-110)) (-4 *6 (-405 *5))
+ (-4 *5 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51))
+ (-5 *1 (-292 *5 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-270 *7)) (-5 *4 (-110)) (-5 *5 (-588 *7))
+ (-4 *7 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498))))
+ (-5 *2 (-51)) (-5 *1 (-292 *6 *7))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-588 (-270 *7))) (-5 *4 (-588 (-110))) (-5 *5 (-270 *7))
+ (-4 *7 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498))))
+ (-5 *2 (-51)) (-5 *1 (-292 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-588 (-270 *8))) (-5 *4 (-588 (-110))) (-5 *5 (-270 *8))
+ (-5 *6 (-588 *8)) (-4 *8 (-405 *7))
+ (-4 *7 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51))
+ (-5 *1 (-292 *7 *8))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-588 *7)) (-5 *4 (-588 (-110))) (-5 *5 (-270 *7))
+ (-4 *7 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498))))
+ (-5 *2 (-51)) (-5 *1 (-292 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 (-110))) (-5 *6 (-588 (-270 *8)))
+ (-4 *8 (-405 *7)) (-5 *5 (-270 *8))
+ (-4 *7 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51))
+ (-5 *1 (-292 *7 *8))))
+ ((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-270 *5)) (-5 *4 (-110)) (-4 *5 (-405 *6))
+ (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51))
+ (-5 *1 (-292 *6 *5))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-110)) (-5 *5 (-270 *3)) (-4 *3 (-405 *6))
+ (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51))
+ (-5 *1 (-292 *6 *3))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-110)) (-5 *5 (-270 *3)) (-4 *3 (-405 *6))
+ (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51))
+ (-5 *1 (-292 *6 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-110)) (-5 *5 (-270 *3)) (-5 *6 (-588 *3))
+ (-4 *3 (-405 *7)) (-4 *7 (-13 (-784) (-514) (-563 (-498))))
+ (-5 *2 (-51)) (-5 *1 (-292 *7 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
- (-5 *2 (-1171)) (-5 *1 (-1088))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1085))
- (-5 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-5 *2 (-1171))
- (-5 *1 (-1088))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *3 (-1085))
- (-5 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-5 *2 (-1171))
- (-5 *1 (-1088)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6))
- (-5 *2 (-2 (|:| |bas| (-450 *4 *5 *6 *7)) (|:| -1355 (-588 *7))))
- (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-960)) (-5 *1 (-281))))
- ((*1 *2 *3) (-12 (-5 *3 (-588 (-960))) (-5 *2 (-960)) (-5 *1 (-281))))
- ((*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-593 *3)) (-4 *3 (-1120))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1120))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1120))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1120))))
- ((*1 *1 *1 *1) (-5 *1 (-983)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1066 (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1063 *4))
- (-4 *4 (-1120))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-872 *4))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
- (-4 *4 (-971)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522))))
- (-5 *2 (-154 (-291 *4))) (-5 *1 (-167 *4 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 (-154 *4))))))
+ (-12 (-5 *3 (-561 *5)) (-4 *5 (-405 *4)) (-4 *4 (-962 (-522)))
+ (-4 *4 (-13 (-784) (-514))) (-5 *2 (-1081 *5)) (-5 *1 (-31 *4 *5))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-154 *3)) (-5 *1 (-1110 *4 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *4))))))
-(((*1 *2 *1) (-12 (-4 *1 (-278)) (-5 *2 (-588 (-110))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-514)) (-5 *1 (-40 *3 *2))
- (-4 *2
- (-13 (-338) (-278)
- (-10 -8 (-15 -2805 ((-1037 *3 (-561 $)) $))
- (-15 -2816 ((-1037 *3 (-561 $)) $))
- (-15 -2190 ($ (-1037 *3 (-561 $))))))))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))))
+ (-12 (-5 *3 (-561 *1)) (-4 *1 (-971)) (-4 *1 (-278))
+ (-5 *2 (-1081 *1)))))
+(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1085)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-834 *3)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522))
+ (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960))
+ (-5 *1 (-686)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 *8)) (-5 *4 (-708)) (-4 *8 (-878 *5 *7 *6))
- (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085))))
- (-4 *7 (-730))
- (-5 *2
- (-588
- (-2 (|:| |det| *8) (|:| |rows| (-588 (-522)))
- (|:| |cols| (-588 (-522))))))
- (-5 *1 (-853 *5 *6 *7 *8)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-2 (|:| -3435 *4) (|:| -3152 (-522)))))
- (-4 *4 (-1014)) (-5 *2 (-1 *4)) (-5 *1 (-943 *4)))))
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-971)) (-4 *7 (-971))
+ (-4 *6 (-1142 *5)) (-5 *2 (-1081 (-1081 *7)))
+ (-5 *1 (-471 *5 *6 *4 *7)) (-4 *4 (-1142 *6)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-588 *1)) (-4 *1 (-283)))))
(((*1 *2 *1) (-12 (-4 *1 (-230 *3)) (-4 *3 (-1120)) (-5 *2 (-708))))
((*1 *2 *1) (-12 (-4 *1 (-278)) (-5 *2 (-708))))
((*1 *2 *3)
@@ -278,36 +191,33 @@
((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-561 *3)) (-4 *3 (-784))))
((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792))))
((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1085)) (-4 *5 (-338)) (-5 *2 (-588 (-1115 *5)))
- (-5 *1 (-1174 *5)) (-5 *4 (-1115 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-514)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1142 *3)) (-4 *3 (-971)) (-5 *2 (-1081 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-628 *4)) (-4 *4 (-971)) (-5 *1 (-1052 *3 *4))
+ (-14 *3 (-708)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120))
+ (-4 *3 (-1014)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-834 *4)) (-4 *4 (-1014)) (-5 *2 (-108))
+ (-5 *1 (-833 *4))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-850)) (-5 *2 (-108)) (-5 *1 (-1015 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426))
+ (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-904 *3 *4 *5 *6)))))
(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-202))))
((*1 *1 *1) (-4 *1 (-507)))
((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-545 *3)) (-14 *3 *2)))
((*1 *2 *1) (-12 (-4 *1 (-1014)) (-5 *2 (-1032)))))
-(((*1 *1 *1 *1) (-4 *1 (-895))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-291 *4)) (-4 *4 (-13 (-765) (-784) (-971)))
- (-5 *2 (-1068)) (-5 *1 (-763 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-291 *5)) (-5 *4 (-108))
- (-4 *5 (-13 (-765) (-784) (-971))) (-5 *2 (-1068))
- (-5 *1 (-763 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-759)) (-5 *4 (-291 *5))
- (-4 *5 (-13 (-765) (-784) (-971))) (-5 *2 (-1171))
- (-5 *1 (-763 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-759)) (-5 *4 (-291 *6)) (-5 *5 (-108))
- (-4 *6 (-13 (-765) (-784) (-971))) (-5 *2 (-1171))
- (-5 *1 (-763 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-765)) (-5 *2 (-1068))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-765)) (-5 *3 (-108)) (-5 *2 (-1068))))
- ((*1 *2 *3 *1) (-12 (-4 *1 (-765)) (-5 *3 (-759)) (-5 *2 (-1171))))
- ((*1 *2 *3 *1 *4)
- (-12 (-4 *1 (-765)) (-5 *3 (-759)) (-5 *4 (-108)) (-5 *2 (-1171)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-971)) (-5 *1 (-418 *3 *2)) (-4 *2 (-1142 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-522)) (-4 *2 (-405 *3)) (-5 *1 (-31 *3 *2))
+ (-4 *3 (-962 *4)) (-4 *3 (-13 (-784) (-514))))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-588 *5)) (-5 *4 (-588 *6)) (-4 *5 (-1014))
(-4 *6 (-1120)) (-5 *2 (-1 *6 *5)) (-5 *1 (-585 *5 *6))))
@@ -327,184 +237,184 @@
(-12 (-5 *3 (-588 *5)) (-5 *4 (-588 *2)) (-5 *6 (-1 *2 *5))
(-4 *5 (-1014)) (-4 *2 (-1120)) (-5 *1 (-585 *5 *2))))
((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1054)) (-5 *3 (-132)) (-5 *2 (-708)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-730))
- (-4 *3 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))) (-4 *5 (-514))
- (-5 *1 (-670 *4 *3 *5 *2)) (-4 *2 (-878 (-382 (-881 *5)) *4 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *4 (-971)) (-4 *5 (-730))
- (-4 *3
- (-13 (-784)
- (-10 -8 (-15 -1431 ((-1085) $))
- (-15 -1611 ((-3 $ "failed") (-1085))))))
- (-5 *1 (-911 *4 *5 *3 *2)) (-4 *2 (-878 (-881 *4) *5 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 *6))
- (-4 *6
- (-13 (-784)
- (-10 -8 (-15 -1431 ((-1085) $))
- (-15 -1611 ((-3 $ "failed") (-1085))))))
- (-4 *4 (-971)) (-4 *5 (-730)) (-5 *1 (-911 *4 *5 *6 *2))
- (-4 *2 (-878 (-881 *4) *5 *6)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-588 (-561 *2))) (-5 *4 (-588 (-1085)))
- (-4 *2 (-13 (-405 (-154 *5)) (-928) (-1106)))
- (-4 *5 (-13 (-514) (-784))) (-5 *1 (-551 *5 *6 *2))
- (-4 *6 (-13 (-405 *5) (-928) (-1106))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4))
- (-5 *2 (-393 *3)) (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-270 *2)) (-4 *2 (-664)) (-4 *2 (-1120)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157))
- (-5 *2 (-628 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-708)) (-5 *2 (-108)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-960)) (-5 *1 (-281))))
+ ((*1 *2 *3) (-12 (-5 *3 (-588 (-960))) (-5 *2 (-960)) (-5 *1 (-281))))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-593 *3)) (-4 *3 (-1120))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *1 *1) (-5 *1 (-983)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1066 (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1063 *4))
+ (-4 *4 (-1120))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
+(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1088))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088))))
+ ((*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))))
+(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960))
+ (-5 *1 (-693)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
- (-5 *2 (-108)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-803)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))))
-(((*1 *2 *1) (-12 (-4 *3 (-1120)) (-5 *2 (-588 *1)) (-4 *1 (-936 *3)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-708)) (-4 *5 (-514))
+ (-12
(-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
- (-5 *2 (-960)) (-5 *1 (-689)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-126)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-522))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))))
+ (-588
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
+ (|:| |xpnt| (-522)))))
+ (-5 *1 (-393 *3)) (-4 *3 (-514))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-708)) (-4 *3 (-324)) (-4 *5 (-1142 *3))
+ (-5 *2 (-588 (-1081 *3))) (-5 *1 (-468 *3 *5 *6))
+ (-4 *6 (-1142 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-283))))
+ ((*1 *2 *1 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |lm| (-361 *3)) (|:| |rm| (-361 *3))))
+ (-5 *1 (-361 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3450 (-708)) (|:| -4002 (-708))))
+ (-5 *1 (-708))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+ (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7))))
+ (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
+(((*1 *1) (-5 *1 (-740))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *2)
+ (-12 (-4 *3 (-971)) (-5 *2 (-886 (-650 *3 *4))) (-5 *1 (-650 *3 *4))
+ (-4 *4 (-1142 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-302 *3)) (-4 *3 (-1120))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-485 *3 *4)) (-4 *3 (-1120))
+ (-14 *4 (-522)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-971)) (-4 *2 (-626 *4 *5 *6))
+ (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1142 *4)) (-4 *5 (-348 *4))
+ (-4 *6 (-348 *4)))))
(((*1 *2 *1)
(-12 (-5 *2 (-588 *4)) (-5 *1 (-1051 *3 *4))
(-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
-(((*1 *1) (-5 *1 (-760))))
-(((*1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-697)))))
-(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-108))
- (-5 *6 (-202)) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-66 APROD))))
- (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-71 MSOLVE))))
- (-5 *2 (-960)) (-5 *1 (-694)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
- (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 *10))
- (-5 *1 (-570 *5 *6 *7 *8 *9 *10)) (-4 *9 (-990 *5 *6 *7 *8))
- (-4 *10 (-1023 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426))
- (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-968 *5 *6)))
- (-5 *1 (-573 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426))
- (-14 *6 (-588 (-1085)))
- (-5 *2
- (-588 (-1056 *5 (-494 (-794 *6)) (-794 *6) (-717 *5 (-794 *6)))))
- (-5 *1 (-573 *5 *6))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
- (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-588 (-952 *5 *6 *7 *8))) (-5 *1 (-952 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
- (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-588 (-952 *5 *6 *7 *8))) (-5 *1 (-952 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426))
- (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-968 *5 *6)))
- (-5 *1 (-968 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
- (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 *1))
- (-4 *1 (-990 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
- (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-588 (-1056 *5 *6 *7 *8))) (-5 *1 (-1056 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
- (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-588 (-1056 *5 *6 *7 *8))) (-5 *1 (-1056 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1))
- (-4 *1 (-1114 *4 *5 *6 *7)))))
-(((*1 *2 *1 *1)
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-685)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-1024)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-756 *3)) (-4 *3 (-784)) (-5 *1 (-613 *3)))))
+(((*1 *2 *3 *2)
(-12
(-5 *2
- (-2 (|:| |lm| (-361 *3)) (|:| |mm| (-361 *3)) (|:| |rm| (-361 *3))))
- (-5 *1 (-361 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1 *1)
- (-12
+ (-588
+ (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-708)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *3 (-730)) (-4 *6 (-878 *4 *3 *5)) (-4 *4 (-426)) (-4 *5 (-784))
+ (-5 *1 (-423 *4 *3 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-393 *3)) (-4 *3 (-514))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-2 (|:| -2006 *4) (|:| -2487 (-522)))))
+ (-4 *4 (-1142 (-522))) (-5 *2 (-708)) (-5 *1 (-416 *4)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-2 (|:| |totdeg| (-708)) (|:| -1976 *4))) (-5 *5 (-708))
+ (-4 *4 (-878 *6 *7 *8)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
(-5 *2
- (-2 (|:| |lm| (-756 *3)) (|:| |mm| (-756 *3)) (|:| |rm| (-756 *3))))
- (-5 *1 (-756 *3)) (-4 *3 (-784)))))
-(((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(((*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-628 *3))
- (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $)))))
- (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))))
+ (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-5 *1 (-423 *6 *7 *8 *4)))))
+(((*1 *2)
+ (-12 (-5 *2 (-2 (|:| -2430 (-588 *3)) (|:| -3636 (-588 *3))))
+ (-5 *1 (-1121 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085))
+ (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *1 (-741 *4 *2)) (-4 *2 (-13 (-29 *4) (-1106) (-887)))))
+ ((*1 *1 *1 *1 *1) (-5 *1 (-792))) ((*1 *1 *1 *1) (-5 *1 (-792)))
+ ((*1 *1 *1) (-5 *1 (-792)))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1066 *3)) (-5 *1 (-1070 *3)) (-4 *3 (-971)))))
+(((*1 *1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *1 *2 *3 *3 *3 *4)
- (-12 (-4 *4 (-338)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 (-382 *3)))
- (-4 *1 (-310 *4 *3 *5 *2)) (-4 *2 (-317 *4 *3 *5))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *3 (-522)) (-4 *2 (-338)) (-4 *4 (-1142 *2))
- (-4 *5 (-1142 (-382 *4))) (-4 *1 (-310 *2 *4 *5 *6))
- (-4 *6 (-317 *2 *4 *5))))
- ((*1 *1 *2 *2)
- (-12 (-4 *2 (-338)) (-4 *3 (-1142 *2)) (-4 *4 (-1142 (-382 *3)))
- (-4 *1 (-310 *2 *3 *4 *5)) (-4 *5 (-317 *2 *3 *4))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4)))
- (-4 *1 (-310 *3 *4 *5 *2)) (-4 *2 (-317 *3 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-388 *4 (-382 *4) *5 *6)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5)) (-4 *3 (-338))
- (-4 *1 (-310 *3 *4 *5 *6)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-105)))))
+ (-12 (-5 *3 (-628 *2)) (-4 *4 (-1142 *2))
+ (-4 *2 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $)))))
+ (-5 *1 (-469 *2 *4 *5)) (-4 *5 (-384 *2 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2))
+ (-4 *5 (-215 *3 *2)) (-4 *2 (-971)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-108)) (-5 *1 (-766)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-588 (-270 *4))) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784))
- (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-708)) (-4 *4 (-514)) (-5 *1 (-897 *4 *2))
- (-4 *2 (-1142 *4)))))
-(((*1 *1) (-5 *1 (-412))))
-(((*1 *2 *1) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855))))
- ((*1 *2 *1) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1068))
- (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-108)) (-5 *1 (-201 *4 *5)) (-4 *5 (-13 (-1106) (-29 *4))))))
-(((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-964)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-723)))))
+ (-12 (-5 *3 (-588 *6)) (-5 *4 (-1085)) (-4 *6 (-405 *5))
+ (-4 *5 (-784)) (-5 *2 (-588 (-561 *6))) (-5 *1 (-531 *5 *6)))))
(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-72 FCN)))) (-5 *2 (-960))
- (-5 *1 (-684)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-522)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-5 *2 (-1171)) (-5 *1 (-423 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1066 *2)) (-4 *2 (-283)) (-5 *1 (-158 *2)))))
+(((*1 *1) (-5 *1 (-129))) ((*1 *1 *1) (-5 *1 (-132)))
+ ((*1 *1 *1) (-4 *1 (-1054))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-514))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-514)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *6)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-588 (-708)))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-332 *3)) (-4 *3 (-324)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *1 (-619 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -2585 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-338)) (-4 *7 (-1142 *6))
+ (-5 *2 (-2 (|:| |answer| (-539 (-382 *7))) (|:| |a0| *6)))
+ (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))))
+(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
+ (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522))
+ (-5 *2 (-960)) (-5 *1 (-694)))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12
+ (-4 *4 (-13 (-135) (-27) (-962 (-522)) (-962 (-382 (-522)))))
+ (-4 *5 (-1142 *4)) (-5 *2 (-1081 (-382 *5))) (-5 *1 (-564 *4 *5))
+ (-5 *3 (-382 *5))))
+ ((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5))
+ (-4 *5 (-13 (-135) (-27) (-962 (-522)) (-962 (-382 (-522)))))
+ (-5 *2 (-1081 (-382 *6))) (-5 *1 (-564 *5 *6)) (-5 *3 (-382 *6)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-628 *6)) (-5 *5 (-1 (-393 (-1081 *6)) (-1081 *6)))
+ (-4 *6 (-338))
+ (-5 *2
+ (-588
+ (-2 (|:| |outval| *7) (|:| |outmult| (-522))
+ (|:| |outvect| (-588 (-628 *7))))))
+ (-5 *1 (-495 *6 *7 *4)) (-4 *7 (-338)) (-4 *4 (-13 (-338) (-782))))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-960)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1098 *4 *5))
+ (-4 *4 (-1014)) (-4 *5 (-1014)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-773))
+ (-5 *3
+ (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202)))
+ (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202))))
+ (|:| |ub| (-588 (-777 (-202))))))
+ (-5 *2 (-960))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-773))
+ (-5 *3
+ (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))
+ (-5 *2 (-960)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-708)) (-5 *2 (-588 (-1085))) (-5 *1 (-189))
(-5 *3 (-1085))))
@@ -524,736 +434,275 @@
((*1 *2 *1)
(-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
(-5 *2 (-588 *3)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-14 *4 (-588 (-1085))) (-4 *2 (-157))
- (-4 *3 (-215 (-3480 *4) (-708)))
- (-14 *6
- (-1 (-108) (-2 (|:| -2717 *5) (|:| -1400 *3))
- (-2 (|:| -2717 *5) (|:| -1400 *3))))
- (-5 *1 (-435 *4 *2 *5 *3 *6 *7)) (-4 *5 (-784))
- (-4 *7 (-878 *2 *3 (-794 *4))))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-3 (-382 (-881 *6)) (-1075 (-1085) (-881 *6))))
- (-5 *5 (-708)) (-4 *6 (-426)) (-5 *2 (-588 (-628 (-382 (-881 *6)))))
- (-5 *1 (-268 *6)) (-5 *4 (-628 (-382 (-881 *6))))))
- ((*1 *2 *3 *4)
- (-12
- (-5 *3
- (-2 (|:| |eigval| (-3 (-382 (-881 *5)) (-1075 (-1085) (-881 *5))))
- (|:| |eigmult| (-708)) (|:| |eigvec| (-588 *4))))
- (-4 *5 (-426)) (-5 *2 (-588 (-628 (-382 (-881 *5)))))
- (-5 *1 (-268 *5)) (-5 *4 (-628 (-382 (-881 *5)))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)) (-4 *2 (-338))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-338)) (-5 *1 (-601 *4 *2))
- (-4 *2 (-598 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-4 *2 (-1014))
- (-5 *1 (-818 *4 *2)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-693)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *1 (-619 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
- (-4 *3 (-13 (-338) (-1106) (-928))))))
-(((*1 *1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1120))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-784))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-784))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-522)) (-4 *1 (-258 *3)) (-4 *3 (-1120))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-4 *1 (-258 *2)) (-4 *2 (-1120))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2
- (|:| -2530
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (|:| -3048
- (-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| (-1066 (-202)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -2386
- (-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 (-517))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-708)) (-4 *1 (-633 *2)) (-4 *2 (-1014))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2
- (|:| -2530
- (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
- (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
- (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
- (|:| |abserr| (-202)) (|:| |relerr| (-202))))
- (|:| -3048
- (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354))
- (|:| |expense| (-354)) (|:| |accuracy| (-354))
- (|:| |intermediateResults| (-354))))))
- (-5 *1 (-740))))
- ((*1 *2 *3 *4)
- (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-1014)))))
-(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
- (-12
- (-5 *3
- (-2 (|:| |det| *12) (|:| |rows| (-588 (-522)))
- (|:| |cols| (-588 (-522)))))
- (-5 *4 (-628 *12)) (-5 *5 (-588 (-382 (-881 *9))))
- (-5 *6 (-588 (-588 *12))) (-5 *7 (-708)) (-5 *8 (-522))
- (-4 *9 (-13 (-283) (-135))) (-4 *12 (-878 *9 *11 *10))
- (-4 *10 (-13 (-784) (-563 (-1085)))) (-4 *11 (-730))
- (-5 *2
- (-2 (|:| |eqzro| (-588 *12)) (|:| |neqzro| (-588 *12))
- (|:| |wcond| (-588 (-881 *9)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1166 (-382 (-881 *9))))
- (|:| -3855 (-588 (-1166 (-382 (-881 *9)))))))))
- (-5 *1 (-853 *9 *10 *11 *12)))))
+(((*1 *1 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)) (-4 *2 (-980))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085)))
+ (-14 *3 (-588 (-1085))) (-4 *4 (-362))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)) (-4 *2 (-980))))
+ ((*1 *1 *1) (-4 *1 (-782)))
+ ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)) (-4 *2 (-980))))
+ ((*1 *1 *1) (-4 *1 (-980))) ((*1 *1 *1) (-4 *1 (-1049))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-850)) (-5 *2 (-442)) (-5 *1 (-1167)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 (-794 *5))) (-14 *5 (-588 (-1085))) (-4 *6 (-426))
- (-5 *2 (-588 (-588 (-224 *5 *6)))) (-5 *1 (-445 *5 *6 *7))
- (-5 *3 (-588 (-224 *5 *6))) (-4 *7 (-426)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-926 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-1024)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))
- (-5 *2 (-588 (-1085))) (-5 *1 (-243))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1081 *7)) (-4 *7 (-878 *6 *4 *5)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-971)) (-5 *2 (-588 *5))
- (-5 *1 (-296 *4 *5 *6 *7))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-314 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 *2) (-4 *5 (-362))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-405 *3)) (-4 *3 (-784)) (-5 *2 (-588 (-1085)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *2 (-588 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971))
- (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-588 *5))
- (-5 *1 (-879 *4 *5 *6 *7 *3))
- (-4 *3
+ (-12 (-5 *3 (-382 (-522))) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-514)) (-4 *8 (-878 *7 *5 *6))
+ (-5 *2 (-2 (|:| -3858 (-708)) (|:| -3112 *9) (|:| |radicand| *9)))
+ (-5 *1 (-882 *5 *6 *7 *8 *9)) (-5 *4 (-708))
+ (-4 *9
(-13 (-338)
- (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $)))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1016 (-1085))) (-5 *1 (-894 *3)) (-4 *3 (-895))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-900 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-729))
- (-4 *5 (-784)) (-5 *2 (-588 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-5 *2 (-588 (-1085)))
- (-5 *1 (-967 *4)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-693)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-628 *5)) (-4 *5 (-971)) (-5 *1 (-975 *3 *4 *5))
- (-14 *3 (-708)) (-14 *4 (-708)))))
-(((*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-332 *3)) (-4 *3 (-324)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-291 (-202))) (-5 *2 (-291 (-382 (-522))))
- (-5 *1 (-281)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-588
- (-2 (|:| -3166 (-708))
- (|:| |eqns|
- (-588
- (-2 (|:| |det| *7) (|:| |rows| (-588 (-522)))
- (|:| |cols| (-588 (-522))))))
- (|:| |fgb| (-588 *7)))))
- (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135)))
- (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-708))
- (-5 *1 (-853 *4 *5 *6 *7)))))
+ (-10 -8 (-15 -2947 (*8 $)) (-15 -2959 (*8 $)) (-15 -2217 ($ *8))))))))
(((*1 *2 *2 *3)
(-12 (-5 *1 (-619 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))))
-(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441))))
- ((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441))))
- ((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-423 *4 *5 *6 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *5)) (-4 *5 (-405 *4)) (-4 *4 (-13 (-784) (-514)))
- (-5 *2 (-792)) (-5 *1 (-31 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4))))
- ((*1 *2 *3 *3 *3)
- (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))))
-(((*1 *2)
- (-12 (-14 *4 (-708)) (-4 *5 (-1120)) (-5 *2 (-126))
- (-5 *1 (-214 *3 *4 *5)) (-4 *3 (-215 *4 *5))))
- ((*1 *2)
- (-12 (-4 *4 (-338)) (-5 *2 (-126)) (-5 *1 (-303 *3 *4))
- (-4 *3 (-304 *4))))
- ((*1 *2)
- (-12 (-5 *2 (-708)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
- (-4 *5 (-157))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-522))
- (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730))
- (-5 *2 (-522)) (-5 *1 (-474 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-907 *3)) (-4 *3 (-971)) (-5 *2 (-850))))
- ((*1 *2) (-12 (-4 *1 (-1173 *3)) (-4 *3 (-338)) (-5 *2 (-126)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 *1)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5))
- (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5))
- (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-971)) (-5 *1 (-628 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 *4)) (-4 *4 (-971)) (-4 *1 (-1035 *3 *4 *5 *6))
- (-4 *5 (-215 *3 *4)) (-4 *6 (-215 *3 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-51)) (-5 *1 (-1099)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-338) (-135) (-962 (-522))))
+ (-4 *5 (-1142 *4))
+ (-5 *2 (-2 (|:| -2585 (-382 *5)) (|:| |coeff| (-382 *5))))
+ (-5 *1 (-526 *4 *5)) (-5 *3 (-382 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-782)) (-5 *1 (-279 *3)))))
(((*1 *2 *2) (|partial| -12 (-5 *2 (-291 (-202))) (-5 *1 (-281))))
((*1 *2 *1)
(|partial| -12
(-5 *2 (-2 (|:| |num| (-821 *3)) (|:| |den| (-821 *3))))
(-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1166 *5)) (-4 *5 (-729)) (-5 *2 (-108))
- (-5 *1 (-779 *4 *5)) (-14 *4 (-708)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-514) (-135)))
- (-5 *2 (-2 (|:| -1913 *3) (|:| -1924 *3))) (-5 *1 (-1136 *4 *3))
- (-4 *3 (-1142 *4)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1081 (-382 (-1081 *2)))) (-5 *4 (-561 *2))
- (-4 *2 (-13 (-405 *5) (-27) (-1106)))
- (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *1 (-518 *5 *2 *6)) (-4 *6 (-1014))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1081 *1)) (-4 *1 (-878 *4 *5 *3)) (-4 *4 (-971))
- (-4 *5 (-730)) (-4 *3 (-784))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1081 *4)) (-4 *4 (-971)) (-4 *1 (-878 *4 *5 *3))
- (-4 *5 (-730)) (-4 *3 (-784))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-1081 *2))) (-4 *5 (-730)) (-4 *4 (-784))
- (-4 *6 (-971))
- (-4 *2
- (-13 (-338)
- (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $)))))
- (-5 *1 (-879 *5 *4 *6 *7 *2)) (-4 *7 (-878 *6 *5 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-1081 (-382 (-881 *5))))) (-5 *4 (-1085))
- (-5 *2 (-382 (-881 *5))) (-5 *1 (-967 *5)) (-4 *5 (-514)))))
-(((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5))
- (-4 *5 (-13 (-338) (-135) (-962 (-522))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-382 *6)) (|:| |h| *6)
- (|:| |c1| (-382 *6)) (|:| |c2| (-382 *6)) (|:| -1639 *6)))
- (-5 *1 (-942 *5 *6)) (-5 *3 (-382 *6)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 (-522))) (-4 *3 (-971)) (-5 *1 (-94 *3))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-94 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-94 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *4)) (-4 *4 (-971)) (-5 *2 (-1166 *4))
- (-5 *1 (-1086 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-850)) (-5 *2 (-1166 *3)) (-5 *1 (-1086 *3))
- (-4 *3 (-971)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2908 *3) (|:| |coef2| (-719 *3))))
+ (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))))
+(((*1 *2 *1)
+ (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157))
+ (-14 *6
+ (-1 (-108) (-2 (|:| -2882 *5) (|:| -3858 *2))
+ (-2 (|:| -2882 *5) (|:| -3858 *2))))
+ (-4 *2 (-215 (-3591 *3) (-708))) (-5 *1 (-435 *3 *4 *5 *2 *6 *7))
+ (-4 *5 (-784)) (-4 *7 (-878 *4 *2 (-794 *3))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-928))
+ (-4 *2 (-971)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-44 (-1068) (-711))) (-5 *1 (-110)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-689)))))
+(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
+(((*1 *2 *2) (-12 (-5 *2 (-363)) (-5 *1 (-411))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-363)) (-5 *1 (-411)))))
(((*1 *1 *1 *1 *2)
(-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
(-4 *2 (-784))))
((*1 *1 *1 *1)
(-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
(-4 *4 (-784)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
- (-4 *3 (-985 *6 *7 *8))
- (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4))))
- (-5 *1 (-991 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1886 *9))))
- (-5 *5 (-108)) (-4 *8 (-985 *6 *7 *4)) (-4 *9 (-990 *6 *7 *4 *8))
- (-4 *6 (-426)) (-4 *7 (-730)) (-4 *4 (-784))
- (-5 *2 (-588 (-2 (|:| |val| *8) (|:| -1886 *9))))
- (-5 *1 (-991 *6 *7 *4 *8 *9)))))
-(((*1 *2 *3) (-12 (-5 *3 (-881 (-202))) (-5 *2 (-202)) (-5 *1 (-281)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4)))
- (-5 *2 (-2 (|:| |num| (-1166 *4)) (|:| |den| *4))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-522)) (-4 *5 (-324)) (-5 *2 (-393 (-1081 (-1081 *5))))
- (-5 *1 (-1119 *5)) (-5 *3 (-1081 (-1081 *5))))))
-(((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426)))
- (-5 *2 (-777 *4)) (-5 *1 (-288 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1106) (-405 *3))) (-14 *5 (-1085))
- (-14 *6 *4)))
- ((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426)))
- (-5 *2 (-777 *4)) (-5 *1 (-1152 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1106) (-405 *3))) (-14 *5 (-1085))
- (-14 *6 *4))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-426)) (-4 *4 (-514))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| -2776 *4))) (-5 *1 (-897 *4 *3))
- (-4 *3 (-1142 *4)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1052 *3 *4)) (-14 *3 (-850)) (-4 *4 (-338))
- (-5 *1 (-920 *3 *4)))))
(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-588
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *3)
- (|:| |polj| *3))))
- (-4 *5 (-730)) (-4 *3 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *6 (-784))
- (-5 *1 (-423 *4 *5 *6 *3)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-981 (-949 *4) (-1081 (-949 *4)))) (-5 *3 (-792))
- (-5 *1 (-949 *4)) (-4 *4 (-13 (-782) (-338) (-947))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1142 *2)) (-4 *2 (-1124)) (-5 *1 (-136 *2 *4 *3))
- (-4 *3 (-1142 (-382 *4))))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-971)))))
+ (-12 (-5 *3 (-110)) (-4 *4 (-971)) (-5 *1 (-652 *4 *2))
+ (-4 *2 (-590 *4))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-110)) (-5 *1 (-771 *2)) (-4 *2 (-971)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-51)) (-5 *1 (-766)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2))
- (-4 *4 (-13 (-784) (-514))))))
+ (-12 (-5 *2 (-522)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5))
+ (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-1177 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-588 *8)) (-5 *3 (-1 (-108) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514))
+ (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1177 *5 *6 *7 *8)))))
(((*1 *2 *3 *3)
(-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-588 (-881 *3))) (-4 *3 (-426)) (-5 *1 (-335 *3 *4))
- (-14 *4 (-588 (-1085)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-424 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6))
- (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-5 *1 (-424 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6))
- (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-5 *1 (-424 *4 *5 *6 *7))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784))
- (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-588 (-717 *3 (-794 *4)))) (-4 *3 (-426))
- (-14 *4 (-588 (-1085))) (-5 *1 (-573 *3 *4)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-409))
- (-5 *2
- (-588
- (-3 (|:| -2888 (-1085))
- (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522)))))))))
- (-5 *1 (-1089)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-588 *1))
- (-4 *1 (-357 *3 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-673 *3 *4))) (-5 *1 (-673 *3 *4)) (-4 *3 (-971))
- (-4 *4 (-664))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1))
- (-4 *1 (-878 *3 *4 *5)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-108)) (-5 *5 (-628 (-202)))
- (-5 *2 (-960)) (-5 *1 (-693)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
-(((*1 *1 *2 *3)
- (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-588 (-850))) (-5 *1 (-140 *4 *2 *5)) (-14 *4 (-850))
- (-4 *2 (-338)) (-14 *5 (-920 *4 *2))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-651 *5 *6 *7)) (-4 *5 (-784))
- (-4 *6 (-215 (-3480 *4) (-708)))
- (-14 *7
- (-1 (-108) (-2 (|:| -2717 *5) (|:| -1400 *6))
- (-2 (|:| -2717 *5) (|:| -1400 *6))))
- (-14 *4 (-588 (-1085))) (-4 *2 (-157))
- (-5 *1 (-435 *4 *2 *5 *6 *7 *8)) (-4 *8 (-878 *2 *6 (-794 *4)))))
- ((*1 *1 *2 *3)
- (-12 (-4 *1 (-478 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-784))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-522)) (-4 *2 (-514)) (-5 *1 (-569 *2 *4))
- (-4 *4 (-1142 *2))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-647 *2)) (-4 *2 (-971))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-673 *2 *3)) (-4 *2 (-971)) (-4 *3 (-664))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 *5)) (-5 *3 (-588 (-708))) (-4 *1 (-678 *4 *5))
- (-4 *4 (-971)) (-4 *5 (-784))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *2)) (-4 *4 (-971))
- (-4 *2 (-784))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-786 *2)) (-4 *2 (-971))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 *6)) (-5 *3 (-588 (-708))) (-4 *1 (-878 *4 *5 *6))
- (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-708)) (-4 *1 (-878 *4 *5 *2)) (-4 *4 (-971))
- (-4 *5 (-730)) (-4 *2 (-784))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 *6)) (-5 *3 (-588 *5)) (-4 *1 (-900 *4 *5 *6))
- (-4 *4 (-971)) (-4 *5 (-729)) (-4 *6 (-784))))
- ((*1 *1 *1 *2 *3)
- (-12 (-4 *1 (-900 *4 *3 *2)) (-4 *4 (-971)) (-4 *3 (-729))
- (-4 *2 (-784)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-283)) (-5 *1 (-429 *3 *2)) (-4 *2 (-1142 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-283)) (-5 *1 (-434 *3 *2)) (-4 *2 (-1142 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-283)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-708)))
- (-5 *1 (-501 *3 *2 *4 *5)) (-4 *2 (-1142 *3)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
+ (-5 *4 (-628 (-1081 *8))) (-4 *5 (-971)) (-4 *8 (-971))
+ (-4 *6 (-1142 *5)) (-5 *2 (-628 *6)) (-5 *1 (-471 *5 *6 *7 *8))
+ (-4 *7 (-1142 *6)))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-1095 *2)) (-4 *2 (-338)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-339 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 (-834 *3))) (-4 *3 (-1014)) (-5 *1 (-833 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-338)) (-4 *3 (-971))
- (-5 *1 (-1070 *3)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171))
- (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171))
- (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784))
- (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-588 (-708)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784))
- (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-588 (-708))))))
-(((*1 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-507)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3))))
- ((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1088)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-708)) (-5 *1 (-110)))))
+(((*1 *2 *1) (-12 (-4 *3 (-971)) (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1066 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1081 *9)) (-5 *4 (-588 *7)) (-5 *5 (-588 (-588 *8)))
- (-4 *7 (-784)) (-4 *8 (-283)) (-4 *9 (-878 *8 *6 *7)) (-4 *6 (-730))
- (-5 *2
- (-2 (|:| |upol| (-1081 *8)) (|:| |Lval| (-588 *8))
- (|:| |Lfact|
- (-588 (-2 (|:| -1916 (-1081 *8)) (|:| -1400 (-522)))))
- (|:| |ctpol| *8)))
- (-5 *1 (-680 *6 *7 *8 *9)))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-708)) (-5 *1 (-540 *2)) (-4 *2 (-507)))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
- (-4 *3 (-342 *4))))
- ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4))
- (-5 *2 (-2 (|:| -2977 (-382 *5)) (|:| |poly| *3)))
- (-5 *1 (-136 *4 *5 *3)) (-4 *3 (-1142 (-382 *5))))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1081 *1)) (-5 *3 (-1085)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-881 *1)) (-4 *1 (-27))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1085)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-784) (-514)))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-784) (-514))))))
-(((*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-108)))))
+ (|partial| -12
+ (-5 *2 (-2 (|:| -1410 (-110)) (|:| |arg| (-588 (-821 *3)))))
+ (-5 *1 (-821 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-110)) (-5 *2 (-588 (-821 *4)))
+ (-5 *1 (-821 *4)) (-4 *4 (-1014)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-784)) (-5 *1 (-1092 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1088)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))
+ (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *1) (-5 *1 (-267))))
(((*1 *2 *3)
- (-12 (-4 *4 (-283)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4))
- (-5 *2
- (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
- (-5 *1 (-1036 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-456 *3)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1085)) (-5 *6 (-588 (-561 *3)))
- (-5 *5 (-561 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *7)))
- (-4 *7 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-2 (|:| -1856 *3) (|:| |coeff| *3)))
- (-5 *1 (-515 *7 *3)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
- (-5 *2
- (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522))
- (|:| |success| (-108))))
- (-5 *1 (-726)) (-5 *5 (-522)))))
+ (-12 (-5 *3 (-588 (-1085))) (-4 *4 (-13 (-283) (-135)))
+ (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730))
+ (-5 *2 (-588 (-382 (-881 *4)))) (-5 *1 (-853 *4 *5 *6 *7))
+ (-4 *7 (-878 *4 *6 *5)))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-108))
+ (-5 *2 (-960)) (-5 *1 (-683)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-628 *4))) (-4 *4 (-157))
- (-5 *2 (-1166 (-628 (-881 *4)))) (-5 *1 (-168 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1099)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1090)))))
-(((*1 *2 *1) (-12 (-5 *2 (-761)) (-5 *1 (-762)))))
-(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1014))))
- ((*1 *1 *2) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1014)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-971))
- (-4 *2 (-1126 *3)))))
-(((*1 *2 *1 *1)
- (-12
+ (-12 (-5 *3 (-1068)) (-4 *4 (-13 (-283) (-135)))
+ (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730))
(-5 *2
- (-2 (|:| |polnum| (-719 *3)) (|:| |polden| *3) (|:| -4042 (-708))))
- (-5 *1 (-719 *3)) (-4 *3 (-971))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -4042 (-708))))
- (-4 *1 (-985 *3 *4 *5)))))
+ (-588
+ (-2 (|:| |eqzro| (-588 *7)) (|:| |neqzro| (-588 *7))
+ (|:| |wcond| (-588 (-881 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1166 (-382 (-881 *4))))
+ (|:| -2905 (-588 (-1166 (-382 (-881 *4))))))))))
+ (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3))
- (-4 *3 (-895)))))
-(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441))))
- ((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441))))
- ((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
+ (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120))
+ (-5 *2 (-588 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-675 *3)) (-4 *3 (-1014)))))
+(((*1 *1 *2 *2)
+ (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
- (-4 *3 (-13 (-338) (-1106) (-928))))))
+ (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108))
+ (-5 *1 (-31 *4 *5)) (-4 *5 (-405 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108))
+ (-5 *1 (-144 *4 *5)) (-4 *5 (-405 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108))
+ (-5 *1 (-252 *4 *5)) (-4 *5 (-13 (-405 *4) (-928)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-277 *4)) (-4 *4 (-278))))
+ ((*1 *2 *3) (-12 (-4 *1 (-278)) (-5 *3 (-110)) (-5 *2 (-108))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-110)) (-4 *5 (-784)) (-5 *2 (-108))
+ (-5 *1 (-404 *4 *5)) (-4 *4 (-405 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108))
+ (-5 *1 (-406 *4 *5)) (-4 *5 (-405 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108))
+ (-5 *1 (-575 *4 *5)) (-4 *5 (-13 (-405 *4) (-928) (-1106))))))
+(((*1 *1 *2 *3 *1 *3)
+ (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-818 *4 *3))
+ (-4 *3 (-1014)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-4 *3 (-514))
+ (-5 *2 (-1081 *3)))))
(((*1 *1 *1 *1) (-4 *1 (-119))) ((*1 *1 *1 *1) (-5 *1 (-792)))
((*1 *1 *1 *1) (-4 *1 (-895))))
-(((*1 *2 *1) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-1081 *3)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))))
(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-514)) (-4 *3 (-157)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2))
- (-4 *2 (-626 *3 *4 *5)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-818 *5 *3)) (-5 *4 (-821 *5)) (-4 *5 (-1014))
- (-4 *3 (-151 *6)) (-4 (-881 *6) (-815 *5))
- (-4 *6 (-13 (-815 *5) (-157))) (-5 *1 (-162 *5 *6 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-818 *4 *1)) (-5 *3 (-821 *4)) (-4 *1 (-815 *4))
- (-4 *4 (-1014))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-818 *5 *6)) (-5 *4 (-821 *5)) (-4 *5 (-1014))
- (-4 *6 (-13 (-1014) (-962 *3))) (-4 *3 (-815 *5))
- (-5 *1 (-860 *5 *3 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-818 *5 *3)) (-4 *5 (-1014))
- (-4 *3 (-13 (-405 *6) (-563 *4) (-815 *5) (-962 (-561 $))))
- (-5 *4 (-821 *5)) (-4 *6 (-13 (-514) (-784) (-815 *5)))
- (-5 *1 (-861 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-818 (-522) *3)) (-5 *4 (-821 (-522))) (-4 *3 (-507))
- (-5 *1 (-862 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-818 *5 *6)) (-5 *3 (-561 *6)) (-4 *5 (-1014))
- (-4 *6 (-13 (-784) (-962 (-561 $)) (-563 *4) (-815 *5)))
- (-5 *4 (-821 *5)) (-5 *1 (-863 *5 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-814 *5 *6 *3)) (-5 *4 (-821 *5)) (-4 *5 (-1014))
- (-4 *6 (-815 *5)) (-4 *3 (-608 *6)) (-5 *1 (-864 *5 *6 *3))))
- ((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *5 (-1 (-818 *6 *3) *8 (-821 *6) (-818 *6 *3)))
- (-4 *8 (-784)) (-5 *2 (-818 *6 *3)) (-5 *4 (-821 *6))
- (-4 *6 (-1014)) (-4 *3 (-13 (-878 *9 *7 *8) (-563 *4)))
- (-4 *7 (-730)) (-4 *9 (-13 (-971) (-784) (-815 *6)))
- (-5 *1 (-865 *6 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-818 *5 *3)) (-4 *5 (-1014))
- (-4 *3 (-13 (-878 *8 *6 *7) (-563 *4))) (-5 *4 (-821 *5))
- (-4 *7 (-815 *5)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *8 (-13 (-971) (-784) (-815 *5))) (-5 *1 (-865 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-818 *5 *3)) (-4 *5 (-1014)) (-4 *3 (-919 *6))
- (-4 *6 (-13 (-514) (-815 *5) (-563 *4))) (-5 *4 (-821 *5))
- (-5 *1 (-868 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-818 *5 (-1085))) (-5 *3 (-1085)) (-5 *4 (-821 *5))
- (-4 *5 (-1014)) (-5 *1 (-869 *5))))
- ((*1 *2 *3 *4 *5 *2 *6)
- (-12 (-5 *4 (-588 (-821 *7))) (-5 *5 (-1 *9 (-588 *9)))
- (-5 *6 (-1 (-818 *7 *9) *9 (-821 *7) (-818 *7 *9))) (-4 *7 (-1014))
- (-4 *9 (-13 (-971) (-563 (-821 *7)) (-962 *8))) (-5 *2 (-818 *7 *9))
- (-5 *3 (-588 *9)) (-4 *8 (-13 (-971) (-784)))
- (-5 *1 (-870 *7 *8 *9)))))
-(((*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283))
- (-5 *2 (-588 (-708))) (-5 *1 (-715 *3 *4 *5 *6 *7))
- (-4 *3 (-1142 *6)) (-4 *7 (-878 *6 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-5 *2 (-1 (-108) *5))
- (-5 *1 (-819 *4 *5)) (-4 *5 (-1120)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-507))))
-(((*1 *2)
- (-12 (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4)))
- (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)))))
-(((*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+ (-12 (-4 *3 (-971)) (-5 *1 (-650 *3 *2)) (-4 *2 (-1142 *3)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-628 *2)) (-5 *4 (-708))
+ (-4 *2 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $)))))
+ (-4 *5 (-1142 *2)) (-5 *1 (-469 *2 *5 *6)) (-4 *6 (-384 *2 *5)))))
+(((*1 *2 *1 *1 *3 *4)
+ (-12 (-5 *3 (-1 (-108) *5 *5)) (-5 *4 (-1 (-108) *6 *6))
+ (-4 *5 (-13 (-1014) (-33))) (-4 *6 (-13 (-1014) (-33)))
+ (-5 *2 (-108)) (-5 *1 (-1050 *5 *6)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-522)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-393 *2)) (-4 *2 (-514)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 (-588 (-588 *4)))) (-5 *2 (-588 (-588 *4)))
- (-4 *4 (-784)) (-5 *1 (-1092 *4)))))
+ (-12 (-4 *3 (-514)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
+ (-5 *1 (-1111 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-834 *3))) (-4 *3 (-1014)) (-5 *1 (-833 *3)))))
(((*1 *1 *1 *1) (-4 *1 (-119))) ((*1 *1 *1 *1) (-5 *1 (-792)))
((*1 *1 *1 *1) (-4 *1 (-895))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *5 (-708)) (-4 *6 (-1014)) (-4 *7 (-829 *6))
- (-5 *2 (-628 *7)) (-5 *1 (-630 *6 *7 *3 *4)) (-4 *3 (-348 *7))
- (-4 *4 (-13 (-348 *6) (-10 -7 (-6 -4238)))))))
-(((*1 *2) (-12 (-5 *2 (-1057 (-1068))) (-5 *1 (-366)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
- (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))))
-(((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169))))
- ((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-561 *1)) (-4 *1 (-278)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-693)))))
-(((*1 *1) (-5 *1 (-267))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-212 *3))))
- ((*1 *1) (-12 (-4 *1 (-212 *2)) (-4 *2 (-1014)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 (-108) *9)) (-5 *5 (-1 (-108) *9 *9))
- (-4 *9 (-985 *6 *7 *8)) (-4 *6 (-514)) (-4 *7 (-730))
- (-4 *8 (-784)) (-5 *2 (-2 (|:| |bas| *1) (|:| -1355 (-588 *9))))
- (-5 *3 (-588 *9)) (-4 *1 (-1114 *6 *7 *8 *9))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-834 (-522))) (-5 *4 (-522)) (-5 *2 (-628 *4))
+ (-5 *1 (-953 *5)) (-4 *5 (-971))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-953 *4))
+ (-4 *4 (-971))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-108) *8 *8)) (-4 *8 (-985 *5 *6 *7))
- (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-2 (|:| |bas| *1) (|:| -1355 (-588 *8))))
- (-5 *3 (-588 *8)) (-4 *1 (-1114 *5 *6 *7 *8)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-411)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1126 *3))
- (-5 *2 (-382 (-522))))))
-(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
- (|partial| -12 (-5 *2 (-588 (-1081 *13))) (-5 *3 (-1081 *13))
- (-5 *4 (-588 *12)) (-5 *5 (-588 *10)) (-5 *6 (-588 *13))
- (-5 *7 (-588 (-588 (-2 (|:| -2522 (-708)) (|:| |pcoef| *13)))))
- (-5 *8 (-588 (-708))) (-5 *9 (-1166 (-588 (-1081 *10))))
- (-4 *12 (-784)) (-4 *10 (-283)) (-4 *13 (-878 *10 *11 *12))
- (-4 *11 (-730)) (-5 *1 (-646 *11 *12 *10 *13)))))
-(((*1 *2 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)) (-5 *2 (-108))
- (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33)))
- (-4 *4 (-13 (-1014) (-33))))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-514))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-514)))))
+ (-12 (-5 *3 (-588 (-834 (-522)))) (-5 *4 (-522))
+ (-5 *2 (-588 (-628 *4))) (-5 *1 (-953 *5)) (-4 *5 (-971))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-588 (-522)))) (-5 *2 (-588 (-628 (-522))))
+ (-5 *1 (-953 *4)) (-4 *4 (-971)))))
+(((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-332 *3)) (-4 *3 (-324)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-27))
- (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-4 *5 (-1142 *4)) (-5 *2 (-588 (-595 (-382 *5))))
- (-5 *1 (-599 *4 *5)) (-5 *3 (-595 (-382 *5))))))
+ (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
+ (-4 *3 (-13 (-338) (-1106) (-928))))))
(((*1 *2 *1 *1)
- (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
- (-5 *2 (-108)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1142 (-382 (-522)))) (-5 *1 (-842 *3 *2))
- (-4 *2 (-1142 (-382 *3))))))
-(((*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168))))
- ((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-872 *5)) (-5 *3 (-708)) (-4 *5 (-971))
- (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))))
+ (-12
+ (-5 *2
+ (-2 (|:| -2908 *3) (|:| |coef1| (-719 *3)) (|:| |coef2| (-719 *3))))
+ (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-522)) (-5 *1 (-218))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-522)) (-5 *1 (-218)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-442)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-338)) (-4 *3 (-971))
+ (-5 *1 (-1070 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-595 *4)) (-4 *4 (-317 *5 *6 *7))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6)))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4))))
+ (-5 *1 (-743 *5 *6 *7 *4)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-522)) (-4 *1 (-55 *4 *5 *3)) (-4 *4 (-1120))
+ (-4 *5 (-348 *4)) (-4 *3 (-348 *4)))))
+(((*1 *1) (-5 *1 (-305))))
(((*1 *1 *2)
(-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1057 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-324)) (-5 *2 (-886 (-1081 *4))) (-5 *1 (-332 *4))
- (-5 *3 (-1081 *4)))))
-(((*1 *1) (-5 *1 (-305))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2))
- (-4 *4 (-13 (-784) (-514))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-1074 3 *3))))
- ((*1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-1168))))
- ((*1 *2 *1) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-1168)))))
+ (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
+(((*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1166 (-708))) (-5 *1 (-616 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *1)
- (-12
- (-5 *2
- (-2 (|:| |cycle?| (-108)) (|:| -3375 (-708)) (|:| |period| (-708))))
- (-5 *1 (-1066 *4)) (-4 *4 (-1120)) (-5 *3 (-708)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-382 (-522))) (-5 *1 (-949 *3))
- (-4 *3 (-13 (-782) (-338) (-947)))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3))
- (-4 *3 (-1142 *2))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *1 (-987 *2 *3)) (-4 *2 (-13 (-782) (-338)))
- (-4 *3 (-1142 *2)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4))))
- (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+ (-12 (-4 *4 (-1014)) (-5 *2 (-108)) (-5 *1 (-814 *3 *4 *5))
+ (-4 *3 (-1014)) (-4 *5 (-608 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-818 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-1014)))))
+(((*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1068)) (-5 *1 (-281)))))
+(((*1 *1) (-5 *1 (-267))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171))
+ (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171))
+ (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
+(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-697)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-588 (-522))) (-5 *1 (-1024)) (-5 *3 (-522)))))
+(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-621 *3)) (-4 *3 (-1014)))))
(((*1 *2 *1 *2 *3)
(-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1068)) (-5 *1 (-1167))))
((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1167))))
@@ -1262,344 +711,233 @@
(-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1068)) (-5 *1 (-1168))))
((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1168))))
((*1 *2 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1168)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1114 *2 *3 *4 *5)) (-4 *2 (-514)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *5 (-985 *2 *3 *4)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-759)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
- (-5 *2
- (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522))
- (|:| |success| (-108))))
- (-5 *1 (-726)) (-5 *5 (-522)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4))))
- (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
- (-4 *3 (-985 *6 *7 *8))
- (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4))))
- (-5 *1 (-1022 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1886 *9))))
- (-5 *5 (-108)) (-4 *8 (-985 *6 *7 *4)) (-4 *9 (-990 *6 *7 *4 *8))
- (-4 *6 (-426)) (-4 *7 (-730)) (-4 *4 (-784))
- (-5 *2 (-588 (-2 (|:| |val| *8) (|:| -1886 *9))))
- (-5 *1 (-1022 *6 *7 *4 *8 *9)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-708)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784))
- (-4 *4 (-971)) (-4 *4 (-157))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971))
- (-4 *3 (-157)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-171))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-276))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-281)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3357 (-522)))))
+ (-5 *1 (-336 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3357 (-708)))))
+ (-5 *1 (-361 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-2 (|:| -2006 *3) (|:| -3858 (-522)))))
+ (-5 *1 (-393 *3)) (-4 *3 (-514))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3357 (-708)))))
+ (-5 *1 (-756 *3)) (-4 *3 (-784)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (-708)) (-4 *1 (-1142 *4)) (-4 *4 (-971))
- (-5 *2 (-1166 *4)))))
-(((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-3 *3 (-588 *1)))
- (-4 *1 (-990 *4 *5 *6 *3)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-514)) (-5 *2 (-108)))))
+ (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784))
+ (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-588 (-708)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784))
+ (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-588 (-708))))))
(((*1 *2 *1 *1)
(-12 (-4 *1 (-1164 *3)) (-4 *3 (-1120)) (-4 *3 (-971))
(-5 *2 (-628 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-202)))))
-(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
- (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522))
- (-5 *2 (-960)) (-5 *1 (-694)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1142 *6))
- (-4 *6 (-13 (-27) (-405 *5)))
- (-4 *5 (-13 (-784) (-514) (-962 (-522)))) (-4 *8 (-1142 (-382 *7)))
- (-5 *2 (-539 *3)) (-5 *1 (-510 *5 *6 *7 *8 *3))
- (-4 *3 (-317 *6 *7 *8)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-522))) (-4 *3 (-971)) (-5 *1 (-547 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-522))) (-4 *1 (-1126 *3)) (-4 *3 (-971))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-522))) (-4 *1 (-1157 *3)) (-4 *3 (-971)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1052 *4 *2)) (-14 *4 (-850))
- (-4 *2 (-13 (-971) (-10 -7 (-6 (-4240 "*"))))) (-5 *1 (-831 *4 *2)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN))))
- (-5 *2 (-960)) (-5 *1 (-686)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-708))
- (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $)))))
- (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1081 *1)) (-5 *3 (-1085)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-881 *1)) (-4 *1 (-27))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-522))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-382 (-522))) (-5 *1 (-294 *3 *4 *5))
+ (-4 *3 (-13 (-338) (-784))) (-14 *4 (-1085)) (-14 *5 *3))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-588 (-454 *4 *5))) (-5 *3 (-588 (-794 *4)))
+ (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *1 (-445 *4 *5 *6))
+ (-4 *6 (-426)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792))))
+ ((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -1949 (-588 (-792))) (|:| -1827 (-588 (-792)))
+ (|:| |presup| (-588 (-792))) (|:| -2482 (-588 (-792)))
+ (|:| |args| (-588 (-792)))))
+ (-5 *1 (-1085)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1188 *3 *4)) (-4 *1 (-349 *3 *4)) (-4 *3 (-784))
+ (-4 *4 (-157))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-361 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1085)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-784) (-514)))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-784) (-514)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1081 *2)) (-5 *4 (-1085)) (-4 *2 (-405 *5))
- (-5 *1 (-31 *5 *2)) (-4 *5 (-13 (-784) (-514)))))
- ((*1 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1081 *1)) (-5 *3 (-850)) (-4 *1 (-938))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-1081 *1)) (-5 *3 (-850)) (-5 *4 (-792))
- (-4 *1 (-938))))
- ((*1 *1 *2 *3)
- (|partial| -12 (-5 *3 (-850)) (-4 *4 (-13 (-782) (-338)))
- (-4 *1 (-987 *4 *2)) (-4 *2 (-1142 *4)))))
+ (-12 (-5 *2 (-756 *3)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784))
+ (-4 *4 (-971))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-507)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *2)) (-4 *2 (-157))))
+ ((*1 *2) (-12 (-4 *2 (-157)) (-5 *1 (-391 *3 *2)) (-4 *3 (-392 *2))))
+ ((*1 *2) (-12 (-4 *1 (-392 *2)) (-4 *2 (-157)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-270 (-881 (-522))))
+ (-5 *2
+ (-2 (|:| |varOrder| (-588 (-1085)))
+ (|:| |inhom| (-3 (-588 (-1166 (-708))) "failed"))
+ (|:| |hom| (-588 (-1166 (-708))))))
+ (-5 *1 (-213)))))
+(((*1 *1 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))))
(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1167))))
((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-522) (-522))) (-5 *1 (-336 *3)) (-4 *3 (-1014))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-708) (-708))) (-5 *1 (-361 *3)) (-4 *3 (-1014))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
- (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014)))))
+(((*1 *2 *1) (-12 (-4 *1 (-283)) (-5 *2 (-708)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-971))
+ (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260)))
+ (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4))))
+ ((*1 *1 *1) (-4 *1 (-507)))
+ ((*1 *2 *1) (-12 (-5 *2 (-850)) (-5 *1 (-613 *3)) (-4 *3 (-784))))
+ ((*1 *2 *1) (-12 (-5 *2 (-850)) (-5 *1 (-617 *3)) (-4 *3 (-784))))
+ ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-756 *3)) (-4 *3 (-784))))
+ ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-822 *3)) (-4 *3 (-784))))
+ ((*1 *2 *1) (-12 (-4 *1 (-921 *3)) (-4 *3 (-1120)) (-5 *2 (-708))))
+ ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1118 *3)) (-4 *3 (-1120))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-928))
+ (-4 *2 (-971)))))
+(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-1133 (-522))))))
(((*1 *2)
- (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5)))
- (-5 *2 (-708)) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6))))
+ (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-838))
+ (-5 *1 (-431 *3 *4 *2 *5)) (-4 *5 (-878 *2 *3 *4))))
((*1 *2)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-708)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1090)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-960)) (-5 *3 (-1085)) (-5 *1 (-243)))))
+ (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-838))
+ (-5 *1 (-835 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4))))
+ ((*1 *2) (-12 (-4 *2 (-838)) (-5 *1 (-836 *2 *3)) (-4 *3 (-1142 *2)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-708)) (-4 *6 (-1014)) (-4 *3 (-829 *6))
+ (-5 *2 (-628 *3)) (-5 *1 (-630 *6 *3 *7 *4)) (-4 *7 (-348 *3))
+ (-4 *4 (-13 (-348 *6) (-10 -7 (-6 -4238)))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3))))
+ ((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-215 *3 *2)) (-4 *2 (-1120)) (-4 *2 (-971))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-792))))
+ ((*1 *1 *1) (-5 *1 (-792)))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-872 (-202))) (-5 *2 (-202)) (-5 *1 (-1117))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-971)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-689)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-1166 *4))) (-4 *4 (-971)) (-5 *2 (-628 *4))
- (-5 *1 (-954 *4)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *1 (-98 *3)) (-4 *3 (-1014)))))
+ (-12 (-4 *1 (-838)) (-5 *2 (-393 (-1081 *1))) (-5 *3 (-1081 *1)))))
+(((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-708)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167))))
+ ((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-708)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1081 *7))
- (-4 *5 (-971)) (-4 *7 (-971)) (-4 *2 (-1142 *5))
- (-5 *1 (-471 *5 *2 *6 *7)) (-4 *6 (-1142 *2)))))
+ (-12 (-5 *3 (-154 (-202))) (-5 *4 (-522)) (-5 *2 (-960))
+ (-5 *1 (-696)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-270 *3))) (-5 *1 (-270 *3)) (-4 *3 (-514))
+ (-12 (-5 *2 (-1066 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
+(((*1 *2 *2) (-12 (-5 *2 (-291 (-202))) (-5 *1 (-243)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *2 (-588 (-154 *4))) (-5 *1 (-142 *3 *4))
+ (-4 *3 (-1142 (-154 (-522)))) (-4 *4 (-13 (-338) (-782)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-588 (-154 *4)))
+ (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-588 (-154 *4)))
+ (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))))
+(((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1066 *3)) (-4 *3 (-1014))
(-4 *3 (-1120)))))
-(((*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-103))))
- ((*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-195))))
- ((*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-459))))
- ((*1 *1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-283))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-382 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522))))
- ((*1 *1 *1) (-4 *1 (-980))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-202)) (-5 *4 (-522))
- (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960))
- (-5 *1 (-686)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-588
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
- (|:| |xpnt| (-522)))))
- (-5 *1 (-393 *3)) (-4 *3 (-514))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-708)) (-4 *3 (-324)) (-4 *5 (-1142 *3))
- (-5 *2 (-588 (-1081 *3))) (-5 *1 (-468 *3 *5 *6))
- (-4 *6 (-1142 *5)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-685)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -1856 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-338)) (-4 *7 (-1142 *6))
- (-5 *2 (-2 (|:| |answer| (-539 (-382 *7))) (|:| |a0| *6)))
- (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-44 (-1068) (-711))) (-5 *1 (-110)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-51)) (-5 *1 (-766)))))
-(((*1 *1 *1) (-4 *1 (-34)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3))
- (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3))
- (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
- (-5 *1 (-1071 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
- (-5 *1 (-1072 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-252 *4 *3))
+ (-4 *3 (-13 (-405 *4) (-928))))))
(((*1 *2 *3)
(-12 (-4 *4 (-784))
(-5 *2
(-2 (|:| |f1| (-588 *4)) (|:| |f2| (-588 (-588 (-588 *4))))
(|:| |f3| (-588 (-588 *4))) (|:| |f4| (-588 (-588 (-588 *4))))))
(-5 *1 (-1092 *4)) (-5 *3 (-588 (-588 (-588 *4)))))))
-(((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| -1420 (-110)) (|:| |arg| (-588 (-821 *3)))))
- (-5 *1 (-821 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-110)) (-5 *2 (-588 (-821 *4)))
- (-5 *1 (-821 *4)) (-4 *4 (-1014)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-1085))) (-4 *4 (-13 (-283) (-135)))
- (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730))
- (-5 *2 (-588 (-382 (-881 *4)))) (-5 *1 (-853 *4 *5 *6 *7))
- (-4 *7 (-878 *4 *6 *5)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
- (-5 *2 (-960)) (-5 *1 (-690)))))
(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-588 (-382 (-881 *6))))
- (-5 *3 (-382 (-881 *6)))
- (-4 *6 (-13 (-514) (-962 (-522)) (-135)))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-528 *6)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-283))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-421 *4 *5 *6 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1014)) (-4 *6 (-1014))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-623 *4 *5 *6)) (-4 *5 (-1014)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729))
- (-5 *2 (-588 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014))
- (-5 *2 (-588 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-548 *3)) (-4 *3 (-971))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 *3)) (-5 *1 (-673 *3 *4)) (-4 *3 (-971))
- (-4 *4 (-664))))
- ((*1 *2 *1) (-12 (-4 *1 (-786 *3)) (-4 *3 (-971)) (-5 *2 (-588 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1157 *3)) (-4 *3 (-971)) (-5 *2 (-1066 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))))
-(((*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-960)) (-5 *1 (-774))))
+ (-12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
+ (-4 *3 (-985 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-588 *4))
+ (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))))
+ (-5 *1 (-988 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-291 (-354)))) (-5 *4 (-588 (-354)))
- (-5 *2 (-960)) (-5 *1 (-774)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *6 (-850)) (-4 *5 (-283)) (-4 *3 (-1142 *5))
- (-5 *2 (-2 (|:| |plist| (-588 *3)) (|:| |modulo| *5)))
- (-5 *1 (-434 *5 *3)) (-5 *4 (-588 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-143))))
- ((*1 *2 *1) (-12 (-5 *2 (-143)) (-5 *1 (-803))))
- ((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
-(((*1 *1 *2 *2) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-507)) (-5 *1 (-145 *2)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1886 *8)))
- (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-990 *4 *5 *6 *7)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-915 *4 *5 *6 *7 *8))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1886 *8)))
- (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-990 *4 *5 *6 *7)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-1021 *4 *5 *6 *7 *8)))))
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-588 *4))
+ (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))))
+ (-5 *1 (-1055 *5 *6 *7 *3 *4)) (-4 *4 (-1023 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1081 *9)) (-5 *4 (-588 *7)) (-5 *5 (-588 (-588 *8)))
+ (-4 *7 (-784)) (-4 *8 (-283)) (-4 *9 (-878 *8 *6 *7)) (-4 *6 (-730))
+ (-5 *2
+ (-2 (|:| |upol| (-1081 *8)) (|:| |Lval| (-588 *8))
+ (|:| |Lfact|
+ (-588 (-2 (|:| -2006 (-1081 *8)) (|:| -3858 (-522)))))
+ (|:| |ctpol| *8)))
+ (-5 *1 (-680 *6 *7 *8 *9)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-559 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522)))))
- (-4 *5 (-1142 *4)) (-5 *2 (-588 (-2 (|:| -1893 *5) (|:| -1607 *5))))
- (-5 *1 (-744 *4 *5 *3 *6)) (-4 *3 (-598 *5))
- (-4 *6 (-598 (-382 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522)))))
- (-4 *4 (-1142 *5)) (-5 *2 (-588 (-2 (|:| -1893 *4) (|:| -1607 *4))))
- (-5 *1 (-744 *5 *4 *3 *6)) (-4 *3 (-598 *4))
- (-4 *6 (-598 (-382 *4)))))
+ (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *2 (-1166 (-291 (-354))))
+ (-5 *1 (-281)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-171))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522)))))
- (-4 *5 (-1142 *4)) (-5 *2 (-588 (-2 (|:| -1893 *5) (|:| -1607 *5))))
- (-5 *1 (-744 *4 *5 *6 *3)) (-4 *6 (-598 *5))
- (-4 *3 (-598 (-382 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522)))))
- (-4 *4 (-1142 *5)) (-5 *2 (-588 (-2 (|:| -1893 *4) (|:| -1607 *4))))
- (-5 *1 (-744 *5 *4 *6 *3)) (-4 *6 (-598 *4))
- (-4 *3 (-598 (-382 *4))))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-108)) (-5 *5 (-522)) (-4 *6 (-338)) (-4 *6 (-343))
- (-4 *6 (-971)) (-5 *2 (-588 (-588 (-628 *6)))) (-5 *1 (-954 *6))
- (-5 *3 (-588 (-628 *6)))))
+ (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-276))))
((*1 *2 *3)
- (-12 (-4 *4 (-338)) (-4 *4 (-343)) (-4 *4 (-971))
- (-5 *2 (-588 (-588 (-628 *4)))) (-5 *1 (-954 *4))
- (-5 *3 (-588 (-628 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-338)) (-4 *5 (-343)) (-4 *5 (-971))
- (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5))
- (-5 *3 (-588 (-628 *5)))))
+ (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-281)))))
+(((*1 *2 *3)
+ (-12 (|has| *2 (-6 (-4240 "*"))) (-4 *5 (-348 *2)) (-4 *6 (-348 *2))
+ (-4 *2 (-971)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1142 *2))
+ (-4 *4 (-626 *2 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
+(((*1 *1 *2 *2) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1085)) (-5 *5 (-1009 (-202))) (-5 *2 (-856))
+ (-5 *1 (-854 *3)) (-4 *3 (-563 (-498)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-850)) (-4 *5 (-338)) (-4 *5 (-343)) (-4 *5 (-971))
- (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5))
- (-5 *3 (-588 (-628 *5))))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-283)) (-5 *2 (-393 *3))
- (-5 *1 (-680 *5 *4 *6 *3)) (-4 *3 (-878 *6 *5 *4)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -2259 (-719 *3)) (|:| |coef1| (-719 *3))
- (|:| |coef2| (-719 *3))))
- (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *2 (-2 (|:| -2259 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-985 *3 *4 *5)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-338))
- (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-5 *1 (-424 *4 *5 *6 *2))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-94 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-338))
- (-5 *2
- (-2 (|:| R (-628 *6)) (|:| A (-628 *6)) (|:| |Ainv| (-628 *6))))
- (-5 *1 (-905 *6)) (-5 *3 (-628 *6)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *2 (-708)))))
-(((*1 *2 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *5 (-1085))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-588 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -1856 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1106) (-27) (-405 *8)))
- (-4 *8 (-13 (-426) (-784) (-135) (-962 *3) (-584 *3)))
- (-5 *3 (-522))
- (-5 *2 (-2 (|:| |ans| *4) (|:| -1924 *4) (|:| |sol?| (-108))))
- (-5 *1 (-939 *8 *4)))))
+ (-12 (-5 *4 (-1085)) (-5 *2 (-856)) (-5 *1 (-854 *3))
+ (-4 *3 (-563 (-498)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *1 (-856))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-856)))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-708)) (-5 *1 (-540 *2)) (-4 *2 (-507)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-903 *4 *5 *6 *3)) (-4 *4 (-971)) (-4 *5 (-730))
+ (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-4 *4 (-514))
+ (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
+(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
+ (-12 (-5 *3 (-1068)) (-5 *5 (-628 (-202))) (-5 *6 (-628 (-522)))
+ (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-695)))))
+(((*1 *1 *1) (-4 *1 (-507))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1068)) (-5 *1 (-171))))
- ((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-758)) (-5 *4 (-51)) (-5 *2 (-1171)) (-5 *1 (-768)))))
+ (-12 (-4 *4 (-283)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4))
+ (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
+ (-5 *1 (-1036 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-971)) (-5 *1 (-1138 *3 *2)) (-4 *2 (-1142 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-932)))))
(((*1 *2 *1 *3)
(-12 (-5 *2 (-382 (-522))) (-5 *1 (-113 *4)) (-14 *4 *3)
(-5 *3 (-522))))
@@ -1616,408 +954,100 @@
(-4 *3 (-1142 *2))))
((*1 *2 *1 *3)
(-12 (-4 *1 (-1144 *2 *3)) (-4 *3 (-729))
- (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -2190 (*2 (-1085))))
+ (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -2217 (*2 (-1085))))
(-4 *2 (-971)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-693)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-298 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-124))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-336 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-361 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-591 *3 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 (-224 *4 *5))) (-5 *2 (-224 *4 *5))
- (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *1 (-576 *4 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(((*1 *1 *1) (-4 *1 (-507))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-1081 *4))
- (-5 *1 (-492 *4)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-270 *2)) (-4 *2 (-664)) (-4 *2 (-1120)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-1090))) (-5 *1 (-166)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-514) (-784)))
- (-4 *2 (-13 (-405 (-154 *4)) (-928) (-1106)))
- (-5 *1 (-551 *4 *3 *2)) (-4 *3 (-13 (-405 *4) (-928) (-1106))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-156))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1116 *3)) (-4 *3 (-901)))))
-(((*1 *2)
- (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-522))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))))
-(((*1 *2 *1 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-283))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -1383 *1)))
- (-4 *1 (-283)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2))
- (-4 *2 (-405 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-126)))))
-(((*1 *2)
- (-12 (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4)))
- (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $)))))
- (-4 *4 (-1142 *3))
- (-5 *2
- (-2 (|:| -3855 (-628 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-628 *3))))
- (-5 *1 (-325 *3 *4 *5)) (-4 *5 (-384 *3 *4))))
- ((*1 *2)
- (-12 (-4 *3 (-1142 (-522)))
- (-5 *2
- (-2 (|:| -3855 (-628 (-522))) (|:| |basisDen| (-522))
- (|:| |basisInv| (-628 (-522)))))
- (-5 *1 (-705 *3 *4)) (-4 *4 (-384 (-522) *3))))
- ((*1 *2)
- (-12 (-4 *3 (-324)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 *4))
- (-5 *2
- (-2 (|:| -3855 (-628 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-628 *4))))
- (-5 *1 (-912 *3 *4 *5 *6)) (-4 *6 (-662 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-324)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 *4))
- (-5 *2
- (-2 (|:| -3855 (-628 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-628 *4))))
- (-5 *1 (-1175 *3 *4 *5 *6)) (-4 *6 (-384 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-792)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4)
- (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960))
- (-5 *1 (-694)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-541 *4))
- (-4 *4 (-324)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730))
- (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *3 (-985 *4 *5 *6))
- (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1886 *1))))
- (-4 *1 (-990 *4 *5 *6 *3)))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
- (-4 *3 (-342 *4))))
- ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-539 *2)) (-4 *2 (-13 (-29 *4) (-1106)))
- (-5 *1 (-537 *4 *2))
- (-4 *4 (-13 (-426) (-962 (-522)) (-784) (-584 (-522))))))
+ (-12 (-5 *3 (-522)) (-5 *2 (-588 (-588 (-202)))) (-5 *1 (-1117)))))
+(((*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
((*1 *2 *3)
- (-12 (-5 *3 (-539 (-382 (-881 *4))))
- (-4 *4 (-13 (-426) (-962 (-522)) (-784) (-584 (-522))))
- (-5 *2 (-291 *4)) (-5 *1 (-542 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *3 *2))
- (-4 *2 (-13 (-27) (-1106) (-405 (-154 *3))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))))
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-792)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-588 (-1081 *4))) (-5 *3 (-1081 *4))
- (-4 *4 (-838)) (-5 *1 (-605 *4)))))
-(((*1 *1 *1 *1) (-4 *1 (-507))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971))
- (-5 *2 (-588 (-588 (-588 (-872 *3))))))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-194 *4 *2))
- (-4 *2 (-1142 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1166 *4)) (-5 *3 (-522)) (-4 *4 (-324))
- (-5 *1 (-492 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-1081 *3)) (-5 *1 (-40 *4 *3))
- (-4 *3
- (-13 (-338) (-278)
- (-10 -8 (-15 -2805 ((-1037 *4 (-561 $)) $))
- (-15 -2816 ((-1037 *4 (-561 $)) $))
- (-15 -2190 ($ (-1037 *4 (-561 $))))))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-588 (-1085)))
- (-5 *2 (-588 (-588 (-354)))) (-5 *1 (-948)) (-5 *5 (-354))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947)))
- (-14 *5 (-588 (-1085))) (-5 *2 (-588 (-588 (-949 (-382 *4)))))
- (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7))
- (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7))
- (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7))
- (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-881 *4)))
- (-4 *4 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2 (-588 (-588 (-949 (-382 *4))))) (-5 *1 (-1190 *4 *5 *6))
- (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))))
+ (-12 (-5 *3 (-522)) (-5 *4 (-393 *2)) (-4 *2 (-878 *7 *5 *6))
+ (-5 *1 (-680 *5 *6 *7 *2)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-283)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-426))
- (-5 *2
- (-588
- (-2 (|:| |eigval| (-3 (-382 (-881 *4)) (-1075 (-1085) (-881 *4))))
- (|:| |eigmult| (-708))
- (|:| |eigvec| (-588 (-628 (-382 (-881 *4))))))))
- (-5 *1 (-268 *4)) (-5 *3 (-628 (-382 (-881 *4)))))))
-(((*1 *1 *1) (-5 *1 (-47)))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-57 *5)) (-4 *5 (-1120))
- (-4 *2 (-1120)) (-5 *1 (-56 *5 *2))))
- ((*1 *2 *3 *1 *2 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1014)) (|has| *1 (-6 -4238))
- (-4 *1 (-139 *2)) (-4 *2 (-1120))))
- ((*1 *2 *3 *1 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *2))
- (-4 *2 (-1120))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *2))
- (-4 *2 (-1120))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-971))
- (-5 *2 (-2 (|:| -3892 (-1081 *4)) (|:| |deg| (-850))))
- (-5 *1 (-198 *4 *5)) (-5 *3 (-1081 *4)) (-4 *5 (-13 (-514) (-784)))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-217 *5 *6)) (-14 *5 (-708))
- (-4 *6 (-1120)) (-4 *2 (-1120)) (-5 *1 (-216 *5 *6 *2))))
- ((*1 *1 *2 *3)
- (-12 (-4 *4 (-157)) (-5 *1 (-265 *4 *2 *3 *5 *6 *7))
- (-4 *2 (-1142 *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 (-291 *2)) (-4 *2 (-514)) (-4 *2 (-784))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-310 *2 *3 *4 *5)) (-4 *2 (-338)) (-4 *3 (-1142 *2))
- (-4 *4 (-1142 (-382 *3))) (-4 *5 (-317 *2 *3 *4))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1120)) (-4 *2 (-1120))
- (-5 *1 (-346 *5 *4 *2 *6)) (-4 *4 (-348 *5)) (-4 *6 (-348 *2))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1014)) (-4 *2 (-1014))
- (-5 *1 (-398 *5 *4 *2 *6)) (-4 *4 (-400 *5)) (-4 *6 (-400 *2))))
- ((*1 *1 *1) (-5 *1 (-465)))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-588 *5)) (-4 *5 (-1120))
- (-4 *2 (-1120)) (-5 *1 (-586 *5 *2))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-971)) (-4 *2 (-971))
- (-4 *6 (-348 *5)) (-4 *7 (-348 *5)) (-4 *8 (-348 *2))
- (-4 *9 (-348 *2)) (-5 *1 (-624 *5 *6 *7 *4 *2 *8 *9 *10))
- (-4 *4 (-626 *5 *6 *7)) (-4 *10 (-626 *2 *8 *9))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-649 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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 (-971)) (-5 *1 (-650 *3 *2)) (-4 *2 (-1142 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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 (-382 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-338))
- (-4 *3 (-157)) (-4 *1 (-662 *3 *4))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-157)) (-4 *1 (-662 *3 *2)) (-4 *2 (-1142 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-886 *5)) (-4 *5 (-1120))
- (-4 *2 (-1120)) (-5 *1 (-885 *5 *2))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-959 *3 *4 *5 *2 *6)) (-4 *2 (-878 *3 *4 *5))
- (-14 *6 (-588 *2))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-971)) (-4 *2 (-971))
- (-14 *5 (-708)) (-14 *6 (-708)) (-4 *8 (-215 *6 *7))
- (-4 *9 (-215 *5 *7)) (-4 *10 (-215 *6 *2)) (-4 *11 (-215 *5 *2))
- (-5 *1 (-976 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12))
- (-4 *4 (-974 *5 *6 *7 *8 *9)) (-4 *12 (-974 *5 *6 *2 *10 *11))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1066 *5)) (-4 *5 (-1120))
- (-4 *2 (-1120)) (-5 *1 (-1064 *5 *2))))
- ((*1 *2 *2 *1 *3 *4)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-108) *2 *2))
- (-4 *1 (-1114 *5 *6 *7 *2)) (-4 *5 (-514)) (-4 *6 (-730))
- (-4 *7 (-784)) (-4 *2 (-985 *5 *6 *7))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1166 *5)) (-4 *5 (-1120))
- (-4 *2 (-1120)) (-5 *1 (-1165 *5 *2)))))
-(((*1 *2 *1 *3 *3 *3 *2)
- (-12 (-5 *3 (-708)) (-5 *1 (-616 *2)) (-4 *2 (-1014)))))
-(((*1 *1 *1) (-5 *1 (-498))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-301 *3 *4)) (-4 *3 (-971))
- (-4 *4 (-729)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *2)) (-5 *4 (-1 (-108) *2 *2)) (-5 *1 (-1121 *2))
- (-4 *2 (-1014))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-784))
- (-5 *1 (-1121 *2)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-212 *3))
- (-4 *3 (-1014))))
- ((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4238)) (-4 *1 (-212 *2)) (-4 *2 (-1014))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)) (-4 *2 (-1014))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-258 *3)) (-4 *3 (-1120))))
- ((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-559 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-522)) (-4 *4 (-1014))
- (-5 *1 (-675 *4))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-5 *1 (-675 *2)) (-4 *2 (-1014))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33)))
- (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))))
-(((*1 *1 *1) (-12 (-5 *1 (-557 *2)) (-4 *2 (-1014))))
- ((*1 *1 *1) (-5 *1 (-577))))
+ (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1014)) (-4 *5 (-1014))
+ (-5 *2 (-1 *5 *4)) (-5 *1 (-622 *4 *5)))))
(((*1 *2)
(-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
(-4 *3 (-342 *4))))
((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-1166 *4)) (-4 *4 (-392 *3)) (-4 *3 (-283))
- (-4 *3 (-514)) (-5 *1 (-42 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-850)) (-4 *4 (-338)) (-5 *2 (-1166 *1))
- (-4 *1 (-304 *4))))
- ((*1 *2) (-12 (-4 *3 (-338)) (-5 *2 (-1166 *1)) (-4 *1 (-304 *3))))
- ((*1 *2)
- (-12 (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-1166 *1))
- (-4 *1 (-384 *3 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4))
- (-5 *2 (-1166 *6)) (-5 *1 (-388 *3 *4 *5 *6))
- (-4 *6 (-13 (-384 *4 *5) (-962 *4)))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4))
- (-5 *2 (-1166 *6)) (-5 *1 (-389 *3 *4 *5 *6 *7))
- (-4 *6 (-384 *4 *5)) (-14 *7 *2)))
- ((*1 *2) (-12 (-4 *3 (-157)) (-5 *2 (-1166 *1)) (-4 *1 (-392 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-1166 (-1166 *4))) (-5 *1 (-492 *4))
- (-4 *4 (-324)))))
-(((*1 *2 *1 *3 *3 *2)
- (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1120))
- (-4 *4 (-348 *2)) (-4 *5 (-348 *2))))
- ((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-264 *3 *2)) (-4 *3 (-1014))
- (-4 *2 (-1120)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730))
- (-5 *2
- (-2 (|:| |mval| (-628 *4)) (|:| |invmval| (-628 *4))
- (|:| |genIdeal| (-474 *4 *5 *6 *7))))
- (-5 *1 (-474 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
+ (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-73 FCN JACOBF JACEPS))))
+ (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-74 G JACOBG JACGEP))))
+ (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-971)) (-4 *5 (-1142 *4)) (-5 *2 (-1 *6 (-588 *6)))
- (-5 *1 (-1160 *4 *5 *3 *6)) (-4 *3 (-598 *5)) (-4 *6 (-1157 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |var| (-588 (-1085))) (|:| |pred| (-51))))
- (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-561 *6)) (-4 *6 (-13 (-405 *5) (-27) (-1106)))
- (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2 (-1081 (-382 (-1081 *6)))) (-5 *1 (-518 *5 *6 *7))
- (-5 *3 (-1081 *6)) (-4 *7 (-1014))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1142 *3)) (-5 *1 (-650 *3 *2)) (-4 *3 (-971))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-662 *3 *2)) (-4 *3 (-157)) (-4 *2 (-1142 *3))))
- ((*1 *2 *3 *4 *4 *5 *6 *7 *8)
- (|partial| -12 (-5 *4 (-1081 *11)) (-5 *6 (-588 *10))
- (-5 *7 (-588 (-708))) (-5 *8 (-588 *11)) (-4 *10 (-784))
- (-4 *11 (-283)) (-4 *9 (-730)) (-4 *5 (-878 *11 *9 *10))
- (-5 *2 (-588 (-1081 *5))) (-5 *1 (-680 *9 *10 *11 *5))
- (-5 *3 (-1081 *5))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-878 *3 *4 *5)) (-5 *1 (-959 *3 *4 *5 *2 *6))
- (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-14 *6 (-588 *2)))))
+ (-12 (-4 *4 (-426)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-5 *2 (-588 *3)) (-5 *1 (-904 *4 *5 *6 *3))
+ (-4 *3 (-985 *4 *5 *6)))))
(((*1 *1 *1)
(-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *3 *2))
- (-4 *2 (-13 (-27) (-1106) (-405 (-154 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522))))
- (-5 *1 (-167 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4))
+ (-5 *2 (-2 (|:| -3112 (-382 *5)) (|:| |poly| *3)))
+ (-5 *1 (-136 *4 *5 *3)) (-4 *3 (-1142 (-382 *5))))))
+(((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1085)) (-5 *1 (-616 *3)) (-4 *3 (-1014)))))
+(((*1 *2)
+ (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-392 *3)))))
+(((*1 *1 *1) (-5 *1 (-498))))
+(((*1 *1 *1) (-5 *1 (-983))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-184))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085))
- (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-1110 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))))
-(((*1 *2 *1 *1 *3)
- (-12 (-5 *3 (-1 (-108) *5 *5)) (-4 *5 (-13 (-1014) (-33)))
- (-5 *2 (-108)) (-5 *1 (-1050 *4 *5)) (-4 *4 (-13 (-1014) (-33))))))
-(((*1 *2 *1) (-12 (-4 *3 (-971)) (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
- (-5 *2
- (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522))
- (|:| |success| (-108))))
- (-5 *1 (-726)) (-5 *5 (-522)))))
+ (-12 (-5 *3 (-588 (-354))) (-5 *2 (-354)) (-5 *1 (-184)))))
+(((*1 *2 *3) (-12 (-5 *3 (-759)) (-5 *2 (-51)) (-5 *1 (-766)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-382 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-514))
- (-4 *4 (-971)) (-4 *2 (-1157 *4)) (-5 *1 (-1160 *4 *5 *6 *2))
- (-4 *6 (-598 *5)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-283))
- (-5 *1 (-845 *3 *4 *5 *2)) (-4 *2 (-878 *5 *3 *4))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1081 *6)) (-4 *6 (-878 *5 *3 *4)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *5 (-283)) (-5 *1 (-845 *3 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *6 *4 *5))
- (-5 *1 (-845 *4 *5 *6 *2)) (-4 *4 (-730)) (-4 *5 (-784))
- (-4 *6 (-283)))))
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 (-1177 *4 *5 *6 *7)))
+ (-5 *1 (-1177 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-588 *9)) (-5 *4 (-1 (-108) *9 *9))
+ (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-985 *6 *7 *8)) (-4 *6 (-514))
+ (-4 *7 (-730)) (-4 *8 (-784)) (-5 *2 (-588 (-1177 *6 *7 *8 *9)))
+ (-5 *1 (-1177 *6 *7 *8 *9)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1085)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |cd| (-1068)) (|:| -3015 (-1068))))
+ (-5 *1 (-759)))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *2 (-960)) (-5 *1 (-692)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1081 *1)) (-5 *3 (-1085)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-881 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1085)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-784) (-514)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-784) (-514))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
+ (-4 *4 (-971)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305))
+ (-5 *1 (-307)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-588 *3)) (-5 *1 (-897 *4 *3))
+ (-4 *3 (-1142 *4)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-283))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-421 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6))
- (-4 *4 (-283)) (-4 *5 (-730)) (-4 *6 (-784))
- (-5 *1 (-421 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6))
- (-4 *4 (-283)) (-4 *5 (-730)) (-4 *6 (-784))
- (-5 *1 (-421 *4 *5 *6 *7)))))
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202)))
+ (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-64 FUNCT1))))
+ (-5 *2 (-960)) (-5 *1 (-691)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *2 (-784))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-760)) (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-539 *3)) (-4 *3 (-338)))))
(((*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-522))))
((*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-708))))
((*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-850))))
@@ -2049,10 +1079,10 @@
((*1 *1 *2 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014))))
((*1 *1 *2 *1)
(-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157))
- (-4 *6 (-215 (-3480 *3) (-708)))
+ (-4 *6 (-215 (-3591 *3) (-708)))
(-14 *7
- (-1 (-108) (-2 (|:| -2717 *5) (|:| -1400 *6))
- (-2 (|:| -2717 *5) (|:| -1400 *6))))
+ (-1 (-108) (-2 (|:| -2882 *5) (|:| -3858 *6))
+ (-2 (|:| -2882 *5) (|:| -3858 *6))))
(-5 *1 (-435 *3 *4 *5 *6 *7 *2)) (-4 *5 (-784))
(-4 *2 (-878 *4 *6 (-794 *3)))))
((*1 *1 *1 *2)
@@ -2131,528 +1161,76 @@
(-12 (-4 *1 (-1181 *3 *2)) (-4 *3 (-784)) (-4 *2 (-971))))
((*1 *1 *1 *2)
(-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-971)) (-4 *3 (-780)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120))
- (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4239)) (-4 *1 (-461 *3))
- (-4 *3 (-1120)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-588 *3))))
- ((*1 *2 *1)
- (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120))
- (-5 *2 (-588 *3)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *3 (-108)) (-5 *1 (-106))))
- ((*1 *2 *2) (-12 (-5 *2 (-850)) (|has| *1 (-6 -4229)) (-4 *1 (-379))))
- ((*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *2 (-960)) (-5 *1 (-692)))))
+(((*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
(((*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120))))
((*1 *1 *1)
(-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
(-4 *4 (-784))))
((*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-350 *4 *2))
- (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-850))
- (-5 *2 (-1166 (-588 (-2 (|:| -3435 *4) (|:| -2717 (-1032))))))
- (-5 *1 (-321 *4)) (-4 *4 (-324)))))
+ (-12 (-4 *4 (-426))
+ (-5 *2
+ (-588
+ (-2 (|:| |eigval| (-3 (-382 (-881 *4)) (-1075 (-1085) (-881 *4))))
+ (|:| |geneigvec| (-588 (-628 (-382 (-881 *4))))))))
+ (-5 *1 (-268 *4)) (-5 *3 (-628 (-382 (-881 *4)))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-511)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-3 (-382 (-881 *5)) (-1075 (-1085) (-881 *5))))
- (-4 *5 (-426)) (-5 *2 (-588 (-628 (-382 (-881 *5)))))
- (-5 *1 (-268 *5)) (-5 *4 (-628 (-382 (-881 *5)))))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1014)) (-5 *2 (-818 *3 *5)) (-5 *1 (-814 *3 *4 *5))
- (-4 *3 (-1014)) (-4 *5 (-608 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-210)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4))
- (-4 *6 (-730)) (-5 *2 (-1 *1 (-708))) (-4 *1 (-229 *3 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-971)) (-4 *3 (-784)) (-4 *5 (-242 *3)) (-4 *6 (-730))
- (-5 *2 (-1 *1 (-708))) (-4 *1 (-229 *4 *3 *5 *6))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-242 *2)) (-4 *2 (-784)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-154 *4)) (-5 *1 (-164 *4 *3))
- (-4 *4 (-13 (-338) (-782))) (-4 *3 (-1142 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-126))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-770 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-777 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
- (-12 (-5 *4 (-628 (-522))) (-5 *5 (-108)) (-5 *7 (-628 (-202)))
- (-5 *3 (-522)) (-5 *6 (-202)) (-5 *2 (-960)) (-5 *1 (-692)))))
-(((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)) (-4 *2 (-1106))))
- ((*1 *2 *1) (-12 (-5 *1 (-306 *2)) (-4 *2 (-784))))
- ((*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-561 *3)) (-4 *3 (-784)))))
-(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4))
- (-4 *4 (-324)))))
-(((*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-1009 (-202))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1081 *9)) (-5 *4 (-588 *7)) (-4 *7 (-784))
- (-4 *9 (-878 *8 *6 *7)) (-4 *6 (-730)) (-4 *8 (-283))
- (-5 *2 (-588 (-708))) (-5 *1 (-680 *6 *7 *8 *9)) (-5 *5 (-708)))))
-(((*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| (-1066 (-202)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -2386
- (-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 (-960)) (-5 *1 (-281)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-708)) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971))
- (-4 *4 (-730)) (-4 *5 (-784)) (-4 *3 (-514)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
- (-12 (-5 *3 (-522)) (-5 *5 (-108)) (-5 *6 (-628 (-202)))
- (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-693)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-4 *1 (-298 *4 *2)) (-4 *4 (-1014))
- (-4 *2 (-124)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-588 (-291 (-202)))) (-5 *3 (-202)) (-5 *2 (-108))
- (-5 *1 (-189)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-971))
- (-5 *1 (-1070 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-522)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971))
- (-14 *4 (-1085)) (-14 *5 *3))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
- (-5 *1 (-539 *3)) (-4 *3 (-338)))))
+ (-12 (-5 *4 (-588 (-588 *8))) (-5 *3 (-588 *8))
+ (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135)))
+ (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-108))
+ (-5 *1 (-853 *5 *6 *7 *8)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1950 *4)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-694)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-971)) (-5 *1 (-418 *3 *2)) (-4 *2 (-1142 *3)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-393 *3)) (-4 *3 (-514)))))
-(((*1 *2 *1) (-12 (-4 *1 (-883)) (-5 *2 (-1009 (-202)))))
- ((*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-1009 (-202))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *4 (-588 (-1085)))
- (-5 *2 (-628 (-291 (-202)))) (-5 *1 (-184))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1014)) (-4 *6 (-829 *5)) (-5 *2 (-628 *6))
- (-5 *1 (-630 *5 *6 *3 *4)) (-4 *3 (-348 *6))
- (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-628 (-382 (-881 *4)))) (-4 *4 (-426))
- (-5 *2 (-588 (-3 (-382 (-881 *4)) (-1075 (-1085) (-881 *4)))))
- (-5 *1 (-268 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))))
-(((*1 *2)
- (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-392 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784))))
- ((*1 *1) (-4 *1 (-1061))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-1051 *2 *3)) (-4 *2 (-13 (-1014) (-33)))
- (-4 *3 (-13 (-1014) (-33))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-338)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4))
- (-5 *2 (-708)) (-5 *1 (-489 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-4 *3 (-514)) (-5 *2 (-708))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4))
- (-4 *6 (-348 *4)) (-5 *2 (-708)) (-5 *1 (-627 *4 *5 *6 *3))
- (-4 *3 (-626 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-4 *5 (-514))
- (-5 *2 (-708)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-287)) (-5 *1 (-766)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1050 *3 *2)) (-4 *3 (-13 (-1014) (-33)))
- (-4 *2 (-13 (-1014) (-33))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-202) (-202) (-202) (-202))) (-5 *1 (-239))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202) (-202))) (-5 *1 (-239))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *1 (-239)))))
-(((*1 *2 *1) (-12 (-4 *1 (-883)) (-5 *2 (-1009 (-202)))))
- ((*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-1009 (-202))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1081 *3)) (-4 *3 (-971)) (-4 *1 (-1142 *3)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-108)))))
-(((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1166 *5)) (-4 *5 (-584 *4)) (-4 *4 (-514))
- (-5 *2 (-1166 *4)) (-5 *1 (-583 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *2 (-338)) (-4 *2 (-782)) (-5 *1 (-874 *2 *3))
- (-4 *3 (-1142 *2)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522)))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)))))
-(((*1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4))
- (-4 *6 (-348 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
- (-5 *1 (-627 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-157)) (-4 *2 (-971)) (-5 *1 (-652 *2 *3))
- (-4 *3 (-590 *2))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-157)) (-4 *2 (-971)) (-5 *1 (-652 *2 *3))
- (-4 *3 (-590 *2))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-771 *2)) (-4 *2 (-157)) (-4 *2 (-971))))
- ((*1 *1 *1) (-12 (-5 *1 (-771 *2)) (-4 *2 (-157)) (-4 *2 (-971)))))
-(((*1 *2 *3)
- (-12 (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $)))))
- (-4 *4 (-1142 *3))
- (-5 *2
- (-2 (|:| -3855 (-628 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-628 *3))))
- (-5 *1 (-325 *3 *4 *5)) (-4 *5 (-384 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-522)) (-4 *4 (-1142 *3))
- (-5 *2
- (-2 (|:| -3855 (-628 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-628 *3))))
- (-5 *1 (-705 *4 *5)) (-4 *5 (-384 *3 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-324)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 *3))
- (-5 *2
- (-2 (|:| -3855 (-628 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-628 *3))))
- (-5 *1 (-912 *4 *3 *5 *6)) (-4 *6 (-662 *3 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-324)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 *3))
- (-5 *2
- (-2 (|:| -3855 (-628 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-628 *3))))
- (-5 *1 (-1175 *4 *3 *5 *6)) (-4 *6 (-384 *3 *5)))))
-(((*1 *2)
- (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-392 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1142 (-382 *2))) (-5 *2 (-522)) (-5 *1 (-842 *4 *3))
- (-4 *3 (-1142 (-382 *4))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-588 *6)) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-708))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *2 (-708)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 (-522))) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522))
- (-14 *4 (-708)) (-4 *5 (-157)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-784)) (-4 *5 (-730))
- (-4 *6 (-514)) (-4 *7 (-878 *6 *5 *3))
- (-5 *1 (-436 *5 *3 *6 *7 *2))
- (-4 *2
- (-13 (-962 (-382 (-522))) (-338)
- (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $))
- (-15 -2816 (*7 $))))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *2 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-305)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5)
- (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-1081 *3))
- (-4 *3 (-13 (-405 *6) (-27) (-1106)))
- (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2 (-2 (|:| -1856 *3) (|:| |coeff| *3)))
- (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014))))
- ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-382 (-1081 *3)))
- (-4 *3 (-13 (-405 *6) (-27) (-1106)))
- (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2 (-2 (|:| -1856 *3) (|:| |coeff| *3)))
- (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014)))))
-(((*1 *1) (-4 *1 (-33))) ((*1 *1) (-5 *1 (-267)))
- ((*1 *1) (-5 *1 (-792)))
- ((*1 *1)
- (-12 (-4 *2 (-426)) (-4 *3 (-784)) (-4 *4 (-730))
- (-5 *1 (-914 *2 *3 *4 *5)) (-4 *5 (-878 *2 *4 *3))))
- ((*1 *1) (-5 *1 (-1001)))
- ((*1 *1)
- (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33)))
- (-4 *3 (-13 (-1014) (-33)))))
- ((*1 *1) (-5 *1 (-1088))) ((*1 *1) (-5 *1 (-1089))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1139 *4 *5)) (-5 *3 (-588 *5)) (-14 *4 (-1085))
- (-4 *5 (-338)) (-5 *1 (-852 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *5)) (-4 *5 (-338)) (-5 *2 (-1081 *5))
- (-5 *1 (-852 *4 *5)) (-14 *4 (-1085))))
- ((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-588 *6)) (-5 *4 (-708)) (-4 *6 (-338))
- (-5 *2 (-382 (-881 *6))) (-5 *1 (-972 *5 *6)) (-14 *5 (-1085)))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
- (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
- (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
- (|:| |abserr| (-202)) (|:| |relerr| (-202))))
- (-5 *2
- (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354))
- (|:| |expense| (-354)) (|:| |accuracy| (-354))
- (|:| |intermediateResults| (-354))))
- (-5 *1 (-740)))))
-(((*1 *1) (-5 *1 (-999))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-1001)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-5 *1 (-305)))))
-(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-1014)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-108)))))
-(((*1 *1) (-5 *1 (-760))))
-(((*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-338)) (-4 *1 (-304 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1142 *4)) (-4 *4 (-1124))
- (-4 *1 (-317 *4 *3 *5)) (-4 *5 (-1142 (-382 *3)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1166 *1)) (-4 *4 (-157))
- (-4 *1 (-342 *4))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1166 *1)) (-4 *4 (-157))
- (-4 *1 (-345 *4 *5)) (-4 *5 (-1142 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-384 *3 *4))
- (-4 *4 (-1142 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-392 *3)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
- (-5 *2 (-960)) (-5 *1 (-688)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-324))
- (-5 *2 (-588 (-2 (|:| |deg| (-708)) (|:| -2574 *3))))
- (-5 *1 (-194 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *1 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-1014)) (-4 *2 (-343)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
- (-5 *2
- (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522))
- (|:| |success| (-108))))
- (-5 *1 (-726)) (-5 *5 (-522)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
+ (-12 (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-588 (-1139 *5 *4)))
+ (-5 *1 (-1028 *4 *5)) (-5 *3 (-1139 *5 *4)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
- (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
- (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
- (|:| |abserr| (-202)) (|:| |relerr| (-202))))
- (-5 *2
- (-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))))
- (-5 *1 (-184)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-708)) (-5 *3 (-872 *4)) (-4 *1 (-1046 *4))
- (-4 *4 (-971))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-708)) (-5 *4 (-872 (-202))) (-5 *2 (-1171))
- (-5 *1 (-1168)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085))
- (-14 *4 *2))))
+ (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))
+ (-5 *2 (-588 (-382 (-522)))) (-5 *1 (-945 *4))
+ (-4 *4 (-1142 (-522))))))
+(((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1085)) (-5 *3 (-108)) (-5 *1 (-821 *4))
+ (-4 *4 (-1014)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 (-522)))
- (-5 *2 (-1166 (-522))) (-5 *1 (-1191 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3))
- (-4 *3 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108))
- (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-589 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-588 (-588 (-202)))) (-5 *4 (-202))
- (-5 *2 (-588 (-872 *4))) (-5 *1 (-1117)) (-5 *3 (-872 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-4 *1 (-298 *2 *4)) (-4 *4 (-124))
- (-4 *2 (-1014))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-336 *2)) (-4 *2 (-1014))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-361 *2)) (-4 *2 (-1014))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-4 *2 (-1014)) (-5 *1 (-591 *2 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4)))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-756 *2)) (-4 *2 (-784)))))
-(((*1 *1 *2)
- (-12
+ (-12 (-14 *4 (-588 (-1085))) (-14 *5 (-708))
(-5 *2
(-588
- (-2
- (|:| -2530
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (|:| -3048
- (-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| (-1066 (-202)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -2386
- (-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 (-517)))))
-(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-561 *3)) (-5 *5 (-1 (-1081 *3) (-1081 *3)))
- (-4 *3 (-13 (-27) (-405 *6))) (-4 *6 (-13 (-784) (-514)))
- (-5 *2 (-539 *3)) (-5 *1 (-509 *6 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-395 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1106) (-405 *3)))
- (-14 *4 (-1085)) (-14 *5 *2)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-4 *2 (-13 (-27) (-1106) (-405 *3) (-10 -8 (-15 -2190 ($ *4)))))
- (-4 *4 (-782))
- (-4 *5
- (-13 (-1144 *2 *4) (-338) (-1106)
- (-10 -8 (-15 -2157 ($ $)) (-15 -1858 ($ $)))))
- (-5 *1 (-397 *3 *2 *4 *5 *6 *7)) (-4 *6 (-910 *5)) (-14 *7 (-1085)))))
-(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1054)) (-5 *3 (-522)) (-5 *2 (-108)))))
-(((*1 *2 *2 *2 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-561 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1085)))
- (-4 *2 (-13 (-405 *5) (-27) (-1106)))
- (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *1 (-524 *5 *2 *6)) (-4 *6 (-1014)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-588 (-2 (|:| |val| (-588 *6)) (|:| -1886 *7))))
- (-4 *6 (-985 *3 *4 *5)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-915 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-588 (-2 (|:| |val| (-588 *6)) (|:| -1886 *7))))
- (-4 *6 (-985 *3 *4 *5)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-1021 *3 *4 *5 *6 *7)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-338)) (-5 *1 (-825 *2 *3))
- (-4 *2 (-1142 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
-(((*1 *2 *1) (-12 (-4 *1 (-514)) (-5 *2 (-108)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2259 (-719 *3)) (|:| |coef1| (-719 *3))))
- (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *2 (-2 (|:| -2259 *1) (|:| |coef1| *1)))
- (-4 *1 (-985 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-1066 *3))) (-5 *2 (-1066 *3)) (-5 *1 (-1070 *3))
- (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-305)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-871)) (-5 *3 (-522)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-382 *4)) (-4 *4 (-1142 *3))
- (-4 *3 (-13 (-338) (-135) (-962 (-522)))) (-5 *1 (-526 *3 *4)))))
-(((*1 *1) (-5 *1 (-143))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-588 (-454 *4 *5))) (-5 *3 (-588 (-794 *4)))
- (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *1 (-445 *4 *5 *6))
- (-4 *6 (-426)))))
-(((*1 *2 *1) (-12 (-4 *1 (-283)) (-5 *2 (-708)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-838)) (-5 *2 (-393 (-1081 *1))) (-5 *3 (-1081 *1)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *2 (-588 (-154 *4))) (-5 *1 (-142 *3 *4))
- (-4 *3 (-1142 (-154 (-522)))) (-4 *4 (-13 (-338) (-782)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-588 (-154 *4)))
- (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-588 (-154 *4)))
- (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))))
-(((*1 *2 *3)
- (-12 (|has| *2 (-6 (-4240 "*"))) (-4 *5 (-348 *2)) (-4 *6 (-348 *2))
- (-4 *2 (-971)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1142 *2))
- (-4 *4 (-626 *2 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-932)))))
+ (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4)
+ (-224 *4 (-382 (-522))))))
+ (-5 *1 (-475 *4 *5))
+ (-5 *3
+ (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4)
+ (-224 *4 (-382 (-522))))))))
+(((*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-108)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522))
+ (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) (-5 *2 (-960))
+ (-5 *1 (-686)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-426)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
- (-5 *2 (-588 *3)) (-5 *1 (-904 *4 *5 *6 *3))
- (-4 *3 (-985 *4 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-759)) (-5 *2 (-51)) (-5 *1 (-766)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202)))
- (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-64 FUNCT1))))
- (-5 *2 (-960)) (-5 *1 (-691)))))
+ (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
+ (-4 *3 (-13 (-338) (-1106) (-928))))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 (-588 *8))) (-5 *3 (-588 *8))
- (-4 *8 (-878 *5 *7 *6)) (-4 *5 (-13 (-283) (-135)))
- (-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-108))
- (-5 *1 (-853 *5 *6 *7 *8)))))
+ (-12 (-5 *3 (-1 *2 (-588 *2))) (-5 *4 (-588 *5))
+ (-4 *5 (-37 (-382 (-522)))) (-4 *2 (-1157 *5))
+ (-5 *1 (-1159 *5 *2)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-202) (-202) (-202)))
+ (-5 *4 (-3 (-1 (-202) (-202) (-202) (-202)) "undefined"))
+ (-5 *5 (-1009 (-202))) (-5 *6 (-588 (-239))) (-5 *2 (-1045 (-202)))
+ (-5 *1 (-635))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-202)))
+ (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-635))))
+ ((*1 *2 *2 *3 *4 *4 *5)
+ (-12 (-5 *2 (-1045 (-202))) (-5 *3 (-1 (-872 (-202)) (-202) (-202)))
+ (-5 *4 (-1009 (-202))) (-5 *5 (-588 (-239))) (-5 *1 (-635)))))
(((*1 *2 *3)
(-12
(-5 *3
@@ -2660,12 +1238,50 @@
(-224 *4 (-382 (-522)))))
(-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-108))
(-5 *1 (-475 *4 *5)))))
-(((*1 *1 *2 *2)
- (-12
+(((*1 *2 *1)
+ (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1))
+ (-4 *1 (-985 *3 *4 *5)))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-689)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-2 (|:| |k| (-613 *3)) (|:| |c| *4))))
+ (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784))
+ (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-1081 (-881 *4))) (-5 *1 (-391 *3 *4))
+ (-4 *3 (-392 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-4 *3 (-338))
+ (-5 *2 (-1081 (-881 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-283)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4))
(-5 *2
- (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354)))
- (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084))))
- (-5 *1 (-1084)))))
+ (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
+ (-5 *1 (-1036 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-338) (-782))) (-5 *1 (-164 *3 *2))
+ (-4 *2 (-1142 (-154 *3))))))
+(((*1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4))
+ (-5 *2
+ (-3 (|:| |overq| (-1081 (-382 (-522))))
+ (|:| |overan| (-1081 (-47))) (|:| -3181 (-108))))
+ (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784))))
+ ((*1 *1) (-4 *1 (-1061))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-540 *2)) (-4 *2 (-507)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-158 *3)) (-4 *3 (-283))))
((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-615 *3)) (-4 *3 (-1120))))
((*1 *1 *1 *2)
@@ -2694,13 +1310,442 @@
(-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5))))
((*1 *1 *1 *2)
(-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-270 (-382 (-881 *5)))) (-5 *4 (-1085))
+ (-4 *5 (-13 (-283) (-784) (-135)))
+ (-5 *2 (-1075 (-588 (-291 *5)) (-588 (-270 (-291 *5)))))
+ (-5 *1 (-1041 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085))
+ (-4 *5 (-13 (-283) (-784) (-135)))
+ (-5 *2 (-1075 (-588 (-291 *5)) (-588 (-270 (-291 *5)))))
+ (-5 *1 (-1041 *5)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-202) (-202) (-202)))
+ (-5 *4 (-3 (-1 (-202) (-202) (-202) (-202)) "undefined"))
+ (-5 *5 (-1009 (-202))) (-5 *6 (-588 (-239))) (-5 *2 (-1045 (-202)))
+ (-5 *1 (-635)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *7 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-514))
+ (-4 *8 (-878 *7 *5 *6))
+ (-5 *2 (-2 (|:| -3858 (-708)) (|:| -3112 *3) (|:| |radicand| *3)))
+ (-5 *1 (-882 *5 *6 *7 *8 *3)) (-5 *4 (-708))
+ (-4 *3
+ (-13 (-338)
+ (-10 -8 (-15 -2947 (*8 $)) (-15 -2959 (*8 $)) (-15 -2217 ($ *8))))))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-770 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-777 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-522)) (-5 *1 (-458 *4))
+ (-4 *4 (-1142 *2)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-843 *3)) (-4 *3 (-283)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-456 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1038 *4 *3 *5))) (-4 *4 (-37 (-382 (-522))))
+ (-4 *4 (-971)) (-4 *3 (-784)) (-5 *1 (-1038 *4 *3 *5))
+ (-4 *5 (-878 *4 (-494 *3) *3))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1115 *4))) (-5 *3 (-1085)) (-5 *1 (-1115 *4))
+ (-4 *4 (-37 (-382 (-522)))) (-4 *4 (-971)))))
(((*1 *2 *2 *3)
(-12 (-4 *3 (-514)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
(-5 *1 (-1111 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-140 *2 *3 *4)) (-14 *2 (-850)) (-4 *3 (-338))
+ (-14 *4 (-920 *2 *3))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *2 (-157)) (-5 *1 (-265 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1142 *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 (-342 *2)) (-4 *2 (-157)) (-4 *2 (-514))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157))
+ (-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 (-656 *2)) (-4 *2 (-338))))
+ ((*1 *1) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338))))
+ ((*1 *1 *1) (|partial| -4 *1 (-660)))
+ ((*1 *1 *1) (|partial| -4 *1 (-664)))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
+ (-5 *1 (-713 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-4 *1 (-987 *3 *2)) (-4 *3 (-13 (-782) (-338)))
+ (-4 *2 (-1142 *3))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2908 *4)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 *8)) (-4 *8 (-878 *5 *7 *6))
+ (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085))))
+ (-4 *7 (-730))
+ (-5 *2
+ (-588
+ (-2 (|:| -1692 (-708))
+ (|:| |eqns|
+ (-588
+ (-2 (|:| |det| *8) (|:| |rows| (-588 (-522)))
+ (|:| |cols| (-588 (-522))))))
+ (|:| |fgb| (-588 *8)))))
+ (-5 *1 (-853 *5 *6 *7 *8)) (-5 *4 (-708)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-838)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-393 (-1081 *7)))
+ (-5 *1 (-835 *4 *5 *6 *7)) (-5 *3 (-1081 *7))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-838)) (-4 *5 (-1142 *4)) (-5 *2 (-393 (-1081 *5)))
+ (-5 *1 (-836 *4 *5)) (-5 *3 (-1081 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *6))
+ (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-834 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1116 *3)) (-4 *3 (-901)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-338))
+ (-5 *2 (-2 (|:| -3798 (-393 *3)) (|:| |special| (-393 *3))))
+ (-5 *1 (-665 *5 *3)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1085)) (-5 *6 (-588 (-561 *3)))
+ (-5 *5 (-561 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *7)))
+ (-4 *7 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-2 (|:| -2585 *3) (|:| |coeff| *3)))
+ (-5 *1 (-515 *7 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-350 *4 *2))
+ (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-628 (-522))) (-5 *3 (-588 (-522))) (-5 *1 (-1024)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-792))))
((*1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *3 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-686)))))
+(((*1 *2 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-685)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-256))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-3 (-522) (-202) (-1085) (-1068) (-1090)))
+ (-5 *1 (-1090)))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-522)) (-4 *3 (-157)) (-4 *5 (-348 *3))
+ (-4 *6 (-348 *3)) (-5 *1 (-627 *3 *5 *6 *2))
+ (-4 *2 (-626 *3 *5 *6)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-474 (-382 (-522)) (-217 *4 (-708)) (-794 *3)
+ (-224 *3 (-382 (-522)))))
+ (-14 *3 (-588 (-1085))) (-14 *4 (-708)) (-5 *1 (-475 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-324)) (-5 *2 (-393 *3)) (-5 *1 (-194 *4 *3))
+ (-4 *3 (-1142 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3))
+ (-4 *3 (-1142 (-522)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 (-708))) (-5 *2 (-393 *3)) (-5 *1 (-416 *3))
+ (-4 *3 (-1142 (-522)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-588 (-708))) (-5 *5 (-708)) (-5 *2 (-393 *3))
+ (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3))
+ (-4 *3 (-1142 (-522)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-393 *3)) (-5 *1 (-933 *3))
+ (-4 *3 (-1142 (-382 (-522))))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-393 *3)) (-5 *1 (-1131 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7))))
+ (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
+ (-5 *2
+ (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522))
+ (|:| |success| (-108))))
+ (-5 *1 (-726)) (-5 *5 (-522)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1081 *1)) (-5 *4 (-1085)) (-4 *1 (-27))
+ (-5 *2 (-588 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1081 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-881 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-588 *1))
+ (-4 *1 (-29 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *2 (-588 *1)) (-4 *1 (-29 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-291 (-202))) (-5 *4 (-588 (-1085)))
+ (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-276)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
(((*1 *1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *2 (-354)) (-5 *1 (-722 *3)) (-4 *3 (-563 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-850)) (-5 *2 (-354)) (-5 *1 (-722 *3))
+ (-4 *3 (-563 *2))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 *2))
+ (-5 *2 (-354)) (-5 *1 (-722 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971))
+ (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-4 *4 (-563 *2))
+ (-5 *2 (-354)) (-5 *1 (-722 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514))
+ (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784))
+ (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784))
+ (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))))
+(((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *1 *1 *2 *2)
+ (|partial| -12 (-5 *2 (-850)) (-5 *1 (-1015 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *6))))
+ (-5 *4 (-951 (-777 (-522)))) (-5 *5 (-1085)) (-5 *7 (-382 (-522)))
+ (-4 *6 (-971)) (-5 *2 (-792)) (-5 *1 (-547 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-338) (-782)))
+ (-5 *2 (-2 (|:| |start| *3) (|:| -4045 (-393 *3))))
+ (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-270 (-770 *3)))
+ (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-770 *3)) (-5 *1 (-581 *5 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-270 (-770 (-881 *5)))) (-4 *5 (-426))
+ (-5 *2 (-770 (-382 (-881 *5)))) (-5 *1 (-582 *5))
+ (-5 *3 (-382 (-881 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-270 (-382 (-881 *5)))) (-5 *3 (-382 (-881 *5)))
+ (-4 *5 (-426)) (-5 *2 (-770 *3)) (-5 *1 (-582 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1166 (-628 *4))) (-4 *4 (-157))
+ (-5 *2 (-1166 (-628 (-881 *4)))) (-5 *1 (-168 *4)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-135))
+ (-4 *3 (-283)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-904 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2))
+ (-4 *4 (-13 (-784) (-514))))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-324)) (-4 *2 (-971)) (-5 *1 (-650 *2 *3))
+ (-4 *3 (-1142 *2)))))
(((*1 *2 *3) (-12 (-5 *3 (-108)) (-5 *2 (-1068)) (-5 *1 (-51)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-5 *2 (-382 *1)) (-4 *1 (-1142 *3)) (-4 *3 (-971))
+ (-4 *3 (-514))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-514)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-555 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-1120)) (-5 *2 (-1171)))))
+(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730))
+ (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| -3277 (-588 *9)) (|:| -1974 *4) (|:| |ineq| (-588 *9))))
+ (-5 *1 (-915 *6 *7 *8 *9 *4)) (-5 *3 (-588 *9))
+ (-4 *4 (-990 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730))
+ (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| -3277 (-588 *9)) (|:| -1974 *4) (|:| |ineq| (-588 *9))))
+ (-5 *1 (-1021 *6 *7 *8 *9 *4)) (-5 *3 (-588 *9))
+ (-4 *4 (-990 *6 *7 *8 *9)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947)))
+ (-14 *5 (-588 (-1085)))
+ (-5 *2
+ (-588 (-2 (|:| -3769 (-1081 *4)) (|:| -3510 (-588 (-881 *4))))))
+ (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2
+ (-588 (-2 (|:| -3769 (-1081 *5)) (|:| -3510 (-588 (-881 *5))))))
+ (-5 *1 (-1190 *5 *6 *7)) (-5 *3 (-588 (-881 *5)))
+ (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2
+ (-588 (-2 (|:| -3769 (-1081 *5)) (|:| -3510 (-588 (-881 *5))))))
+ (-5 *1 (-1190 *5 *6 *7)) (-5 *3 (-588 (-881 *5)))
+ (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2
+ (-588 (-2 (|:| -3769 (-1081 *5)) (|:| -3510 (-588 (-881 *5))))))
+ (-5 *1 (-1190 *5 *6 *7)) (-5 *3 (-588 (-881 *5)))
+ (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2
+ (-588 (-2 (|:| -3769 (-1081 *4)) (|:| -3510 (-588 (-881 *4))))))
+ (-5 *1 (-1190 *4 *5 *6)) (-5 *3 (-588 (-881 *4)))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-110)) (-5 *3 (-588 (-1 *4 (-588 *4)))) (-4 *4 (-1014))
+ (-5 *1 (-109 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1014))
+ (-5 *1 (-109 *4))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-110)) (-5 *2 (-588 (-1 *4 (-588 *4))))
+ (-5 *1 (-109 *4)) (-4 *4 (-1014)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1099)))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-338) (-135) (-962 (-522))))
+ (-4 *5 (-1142 *4)) (-5 *2 (-588 (-382 *5))) (-5 *1 (-942 *4 *5))
+ (-5 *3 (-382 *5)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1054)) (-5 *3 (-522)) (-5 *2 (-108)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-522)) (-5 *2 (-108)) (-5 *1 (-511)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-971)) (-4 *2 (-626 *4 *5 *6))
+ (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1142 *4)) (-4 *5 (-348 *4))
+ (-4 *6 (-348 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *5 (-13 (-563 *2) (-157))) (-5 *2 (-821 *4))
+ (-5 *1 (-155 *4 *5 *3)) (-4 *4 (-1014)) (-4 *3 (-151 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-1009 (-777 (-354)))))
+ (-5 *2 (-588 (-1009 (-777 (-202))))) (-5 *1 (-281))))
+ ((*1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-354))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-792)) (-5 *3 (-522)) (-5 *1 (-369))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-384 *3 *4))
+ (-4 *4 (-1142 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3))
+ (-5 *2 (-1166 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-392 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-1166 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-393 *1)) (-4 *1 (-405 *3)) (-4 *3 (-514))
+ (-4 *3 (-784))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-971))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-437 *3 *4 *5 *6))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1018)) (-5 *1 (-498))))
+ ((*1 *2 *1) (-12 (-4 *1 (-563 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-157)) (-4 *1 (-662 *3 *2)) (-4 *2 (-1142 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014))))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-971)) (-4 *1 (-907 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-982))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-881 *3)) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5))
+ (-4 *5 (-563 (-1085))) (-4 *4 (-730)) (-4 *5 (-784))))
+ ((*1 *1 *2)
+ (-3844
+ (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5))
+ (-12 (-2473 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522)))
+ (-4 *5 (-563 (-1085))))
+ (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))
+ (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5))
+ (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))))
+ (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-881 (-382 (-522)))) (-4 *1 (-985 *3 *4 *5))
+ (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))) (-4 *3 (-971))
+ (-4 *4 (-730)) (-4 *5 (-784))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1974 *8)))
+ (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-990 *4 *5 *6 *7)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1068))
+ (-5 *1 (-988 *4 *5 *6 *7 *8))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-999))))
+ ((*1 *1 *2) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-1017 *3 *4 *5 *6 *2)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-1017 *3 *4 *5 *2 *6)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-4 *5 (-1014)) (-4 *2 (-1014)) (-4 *6 (-1014))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-1017 *3 *4 *2 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-4 *2 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-1017 *3 *2 *4 *5 *6)) (-4 *3 (-1014)) (-4 *2 (-1014))
+ (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *2 (-1014)) (-4 *3 (-1014))
+ (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 *1)) (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014))
+ (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1974 *8)))
+ (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-1023 *4 *5 *6 *7)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1068))
+ (-5 *1 (-1055 *4 *5 *6 *7 *8))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1018)) (-5 *1 (-1090))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-1090))))
+ ((*1 *1 *2 *3 *2) (-12 (-5 *2 (-792)) (-5 *3 (-522)) (-5 *1 (-1101))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-792)) (-5 *3 (-522)) (-5 *1 (-1101))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-717 *4 (-794 *5)))
+ (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *5 (-588 (-1085)))
+ (-5 *2 (-717 *4 (-794 *6))) (-5 *1 (-1190 *4 *5 *6))
+ (-14 *6 (-588 (-1085)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-881 *4)) (-4 *4 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2 (-881 (-949 (-382 *4)))) (-5 *1 (-1190 *4 *5 *6))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-717 *4 (-794 *6)))
+ (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *6 (-588 (-1085)))
+ (-5 *2 (-881 (-949 (-382 *4)))) (-5 *1 (-1190 *4 *5 *6))
+ (-14 *5 (-588 (-1085)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1081 *4)) (-4 *4 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2 (-1081 (-949 (-382 *4)))) (-5 *1 (-1190 *4 *5 *6))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085)))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3 (-1056 *4 (-494 (-794 *6)) (-794 *6) (-717 *4 (-794 *6))))
+ (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *6 (-588 (-1085)))
+ (-5 *2 (-588 (-717 *4 (-794 *6)))) (-5 *1 (-1190 *4 *5 *6))
+ (-14 *5 (-588 (-1085))))))
(((*1 *2 *1)
(-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784))
(-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-708))))
@@ -2749,7 +1794,103 @@
((*1 *2 *1 *2)
(-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729))))
((*1 *2 *1) (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-108)) (-5 *1 (-527 *3)) (-4 *3 (-962 (-522)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202)))
+ (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-77 LSFUN1))))
+ (-5 *2 (-960)) (-5 *1 (-691)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
+ ((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
+ (-4 *3 (-342 *4))))
+ ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1090)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-514)) (-4 *3 (-971))
+ (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-786 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-94 *5)) (-4 *5 (-514)) (-4 *5 (-971))
+ (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-787 *5 *3))
+ (-4 *3 (-786 *5)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730))
+ (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-516 *3)) (-4 *3 (-507)))))
+(((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-588 (-952 *5 *6 *7 *8))) (-5 *1 (-952 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-588 (-1056 *5 *6 *7 *8))) (-5 *1 (-1056 *5 *6 *7 *8)))))
(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-795 *4 *5 *6 *7))
+ (-4 *4 (-971)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 *3))
+ (-14 *7 *3)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-708)) (-4 *4 (-971)) (-4 *5 (-784)) (-4 *6 (-730))
+ (-14 *8 (-588 *5)) (-5 *2 (-1171))
+ (-5 *1 (-1176 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-878 *4 *6 *5))
+ (-14 *9 (-588 *3)) (-14 *10 *3))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-507))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1151 *3 *4 *5)) (-5 *1 (-294 *3 *4 *5))
+ (-4 *3 (-13 (-338) (-784))) (-14 *4 (-1085)) (-14 *5 *3)))
+ ((*1 *2 *1) (-12 (-4 *1 (-379)) (-5 *2 (-522))))
+ ((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-393 *3)) (-4 *3 (-514))))
+ ((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-637))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1014)) (-5 *1 (-651 *3 *2 *4)) (-4 *3 (-784))
+ (-14 *4
+ (-1 (-108) (-2 (|:| -2882 *3) (|:| -3858 *2))
+ (-2 (|:| -2882 *3) (|:| -3858 *2)))))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))))
+(((*1 *1 *2 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354)))
+ (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084))))
+ (-5 *1 (-1084)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324))
+ (-4 *2
+ (-13 (-377)
+ (-10 -7 (-15 -2217 (*2 *4)) (-15 -1475 ((-850) *2))
+ (-15 -2905 ((-1166 *2) (-850))) (-15 -2938 (*2 *2)))))
+ (-5 *1 (-331 *2 *4)))))
+(((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-964)))))
+(((*1 *2 *2 *3 *3 *4)
+ (-12 (-5 *4 (-708)) (-4 *3 (-514)) (-5 *1 (-897 *3 *2))
+ (-4 *2 (-1142 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-761)) (-5 *1 (-762)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
(((*1 *1 *2 *3 *4)
(-12 (-5 *2 (-1085)) (-5 *3 (-588 (-881 (-522))))
(-5 *4 (-291 (-154 (-354)))) (-5 *1 (-305))))
@@ -2820,40 +1961,792 @@
(-12 (-5 *2 (-1085)) (-5 *3 (-291 (-639))) (-5 *1 (-305))))
((*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1068)) (-5 *1 (-305))))
((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))
+ (-5 *2 (-382 (-522))) (-5 *1 (-945 *4)) (-4 *4 (-1142 (-522))))))
+(((*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305))
+ (-5 *1 (-307)))))
+(((*1 *1 *2 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354)))
+ (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084))))
+ (-5 *1 (-1084)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
+ (-4 *3 (-13 (-338) (-1106) (-928))))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-382 (-881 *4))) (-5 *3 (-1085))
+ (-4 *4 (-13 (-514) (-962 (-522)) (-135))) (-5 *1 (-528 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3))
+ (-4 *3 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108))
+ (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))))
+(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *2) (-12 (-5 *1 (-123 *2)) (-4 *2 (-1014)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
(((*1 *1 *1)
(-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 (-588 *7) *7 (-1081 *7))) (-5 *5 (-1 (-393 *7) *7))
+ (-4 *7 (-1142 *6)) (-4 *6 (-13 (-338) (-135) (-962 (-382 (-522)))))
+ (-5 *2 (-588 (-2 (|:| |frac| (-382 *7)) (|:| -3277 *3))))
+ (-5 *1 (-746 *6 *7 *3 *8)) (-4 *3 (-598 *7))
+ (-4 *8 (-598 (-382 *7)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-5 *2
+ (-588 (-2 (|:| |frac| (-382 *6)) (|:| -3277 (-596 *6 (-382 *6))))))
+ (-5 *1 (-749 *5 *6)) (-5 *3 (-596 *6 (-382 *6))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1133 (-522))) (-4 *1 (-593 *3)) (-4 *3 (-1120))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-593 *3)) (-4 *3 (-1120)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-324)) (-5 *3 (-522)) (-5 *2 (-1094 (-850) (-708))))))
+(((*1 *1 *1) (-5 *1 (-1084)))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354)))
+ (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084))))
+ (-5 *1 (-1084)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1018)) (-5 *3 (-711)) (-5 *1 (-51)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-971))
+ (-4 *2 (-1126 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6))
+ (-5 *2 (-588 (-2 (|:| -1720 *1) (|:| -1566 (-588 *7)))))
+ (-5 *3 (-588 *7)) (-4 *1 (-1114 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-1124))
+ (-4 *6 (-1142 (-382 *5)))
+ (-5 *2
+ (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
+ (|:| |gd| *5)))
+ (-4 *1 (-317 *4 *5 *6)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-903 *4 *5 *3 *6)) (-4 *4 (-971)) (-4 *5 (-730))
+ (-4 *3 (-784)) (-4 *6 (-985 *4 *5 *3)) (-5 *2 (-108)))))
+(((*1 *2)
+ (-12 (-4 *3 (-514)) (-5 *2 (-588 (-628 *3))) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-392 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-392 *4)))))
(((*1 *2)
(-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
(-4 *3 (-342 *4))))
((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
-(((*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-92)))))
-(((*1 *1 *2 *2)
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-708)) (-4 *4 (-338)) (-5 *1 (-825 *2 *4))
+ (-4 *2 (-1142 *4)))))
+(((*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-697)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-338))
+ (-5 *2
+ (-2 (|:| A (-628 *5))
+ (|:| |eqs|
+ (-588
+ (-2 (|:| C (-628 *5)) (|:| |g| (-1166 *5)) (|:| -3277 *6)
+ (|:| |rh| *5))))))
+ (-5 *1 (-750 *5 *6)) (-5 *3 (-628 *5)) (-5 *4 (-1166 *5))
+ (-4 *6 (-598 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-338)) (-4 *6 (-598 *5))
+ (-5 *2 (-2 (|:| -2149 (-628 *6)) (|:| |vec| (-1166 *5))))
+ (-5 *1 (-750 *5 *6)) (-5 *3 (-628 *6)) (-5 *4 (-1166 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1098 *4 *5))
+ (-4 *4 (-1014)) (-4 *5 (-1014)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085))
+ (-4 *5 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-539 *3)) (-5 *1 (-515 *5 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
+(((*1 *2 *1 *1)
(-12
(-5 *2
- (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354)))
- (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084))))
- (-5 *1 (-1084)))))
+ (-2 (|:| |polnum| (-719 *3)) (|:| |polden| *3) (|:| -4062 (-708))))
+ (-5 *1 (-719 *3)) (-4 *3 (-971))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -4062 (-708))))
+ (-4 *1 (-985 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-2 (|:| -2006 (-1081 *6)) (|:| -3858 (-522)))))
+ (-4 *6 (-283)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-522))
+ (-5 *1 (-680 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1))
+ (-4 *1 (-985 *3 *4 *5)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1068)) (-4 *1 (-339 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-1014)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4))
+ (-4 *4 (-324)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-278))))
+ ((*1 *1 *1) (-4 *1 (-278))) ((*1 *1 *1) (-5 *1 (-792))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-46 *3 *4)) (-4 *3 (-971))
+ (-4 *4 (-729))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-49 *3 *4))
+ (-14 *4 (-588 (-1085)))))
+ ((*1 *1 *2 *1 *1 *3)
+ (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120))
+ (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120))
+ (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120))
+ (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-57 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-57 *6)) (-5 *1 (-56 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-128 *5 *6 *7)) (-14 *5 (-522))
+ (-14 *6 (-708)) (-4 *7 (-157)) (-4 *8 (-157))
+ (-5 *2 (-128 *5 *6 *8)) (-5 *1 (-127 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-154 *5)) (-4 *5 (-157))
+ (-4 *6 (-157)) (-5 *2 (-154 *6)) (-5 *1 (-153 *5 *6))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-291 *3) (-291 *3))) (-4 *3 (-13 (-971) (-784)))
+ (-5 *1 (-200 *3 *4)) (-14 *4 (-588 (-1085)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-217 *5 *6)) (-14 *5 (-708))
+ (-4 *6 (-1120)) (-4 *7 (-1120)) (-5 *2 (-217 *5 *7))
+ (-5 *1 (-216 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-270 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-270 *6)) (-5 *1 (-269 *5 *6))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-270 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1068)) (-5 *5 (-561 *6))
+ (-4 *6 (-278)) (-4 *2 (-1120)) (-5 *1 (-273 *6 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-561 *5)) (-4 *5 (-278))
+ (-4 *2 (-278)) (-5 *1 (-274 *5 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-561 *1)) (-4 *1 (-278))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-628 *5)) (-4 *5 (-971))
+ (-4 *6 (-971)) (-5 *2 (-628 *6)) (-5 *1 (-280 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-291 *5)) (-4 *5 (-784))
+ (-4 *6 (-784)) (-5 *2 (-291 *6)) (-5 *1 (-289 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-311 *5 *6 *7 *8)) (-4 *5 (-338))
+ (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *8 (-317 *5 *6 *7))
+ (-4 *9 (-338)) (-4 *10 (-1142 *9)) (-4 *11 (-1142 (-382 *10)))
+ (-5 *2 (-311 *9 *10 *11 *12))
+ (-5 *1 (-308 *5 *6 *7 *8 *9 *10 *11 *12))
+ (-4 *12 (-317 *9 *10 *11))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-313 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1124)) (-4 *8 (-1124))
+ (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *9 (-1142 *8))
+ (-4 *2 (-317 *8 *9 *10)) (-5 *1 (-315 *5 *6 *7 *4 *8 *9 *10 *2))
+ (-4 *4 (-317 *5 *6 *7)) (-4 *10 (-1142 (-382 *9)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1120)) (-4 *6 (-1120))
+ (-4 *2 (-348 *6)) (-5 *1 (-346 *5 *4 *6 *2)) (-4 *4 (-348 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-357 *3 *4)) (-4 *3 (-971))
+ (-4 *4 (-1014))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-393 *5)) (-4 *5 (-514))
+ (-4 *6 (-514)) (-5 *2 (-393 *6)) (-5 *1 (-380 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-382 *5)) (-4 *5 (-514))
+ (-4 *6 (-514)) (-5 *2 (-382 *6)) (-5 *1 (-381 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-388 *5 *6 *7 *8)) (-4 *5 (-283))
+ (-4 *6 (-919 *5)) (-4 *7 (-1142 *6))
+ (-4 *8 (-13 (-384 *6 *7) (-962 *6))) (-4 *9 (-283))
+ (-4 *10 (-919 *9)) (-4 *11 (-1142 *10))
+ (-5 *2 (-388 *9 *10 *11 *12))
+ (-5 *1 (-387 *5 *6 *7 *8 *9 *10 *11 *12))
+ (-4 *12 (-13 (-384 *10 *11) (-962 *10)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-157)) (-4 *6 (-157))
+ (-4 *2 (-392 *6)) (-5 *1 (-390 *4 *5 *2 *6)) (-4 *4 (-392 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-514)) (-5 *1 (-393 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-971) (-784)))
+ (-4 *6 (-13 (-971) (-784))) (-4 *2 (-405 *6))
+ (-5 *1 (-396 *5 *4 *6 *2)) (-4 *4 (-405 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1014)) (-4 *6 (-1014))
+ (-4 *2 (-400 *6)) (-5 *1 (-398 *5 *4 *6 *2)) (-4 *4 (-400 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-461 *3)) (-4 *3 (-1120))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-478 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-784))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-539 *5)) (-4 *5 (-338))
+ (-4 *6 (-338)) (-5 *2 (-539 *6)) (-5 *1 (-538 *5 *6))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 *6 *5))
+ (-5 *4 (-3 (-2 (|:| -2585 *5) (|:| |coeff| *5)) "failed"))
+ (-4 *5 (-338)) (-4 *6 (-338))
+ (-5 *2 (-2 (|:| -2585 *6) (|:| |coeff| *6)))
+ (-5 *1 (-538 *5 *6))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed"))
+ (-4 *5 (-338)) (-4 *2 (-338)) (-5 *1 (-538 *5 *2))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 *6 *5))
+ (-5 *4
+ (-3
+ (-2 (|:| |mainpart| *5)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *5) (|:| |logand| *5)))))
+ "failed"))
+ (-4 *5 (-338)) (-4 *6 (-338))
+ (-5 *2
+ (-2 (|:| |mainpart| *6)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *6) (|:| |logand| *6))))))
+ (-5 *1 (-538 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-552 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-552 *6)) (-5 *1 (-549 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-552 *6)) (-5 *5 (-552 *7))
+ (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-552 *8))
+ (-5 *1 (-550 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1066 *6)) (-5 *5 (-552 *7))
+ (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-1066 *8))
+ (-5 *1 (-550 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-552 *6)) (-5 *5 (-1066 *7))
+ (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-1066 *8))
+ (-5 *1 (-550 *6 *7 *8))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-588 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-588 *6)) (-5 *1 (-586 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-588 *6)) (-5 *5 (-588 *7))
+ (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-588 *8))
+ (-5 *1 (-587 *6 *7 *8))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-593 *3)) (-4 *3 (-1120))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-971)) (-4 *8 (-971))
+ (-4 *6 (-348 *5)) (-4 *7 (-348 *5)) (-4 *2 (-626 *8 *9 *10))
+ (-5 *1 (-624 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-626 *5 *6 *7))
+ (-4 *9 (-348 *8)) (-4 *10 (-348 *8))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-971))
+ (-4 *8 (-971)) (-4 *6 (-348 *5)) (-4 *7 (-348 *5))
+ (-4 *2 (-626 *8 *9 *10)) (-5 *1 (-624 *5 *6 *7 *4 *8 *9 *10 *2))
+ (-4 *4 (-626 *5 *6 *7)) (-4 *9 (-348 *8)) (-4 *10 (-348 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-514)) (-4 *7 (-514))
+ (-4 *6 (-1142 *5)) (-4 *2 (-1142 (-382 *8)))
+ (-5 *1 (-648 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1142 (-382 *6)))
+ (-4 *8 (-1142 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-971)) (-4 *9 (-971)) (-4 *5 (-784))
+ (-4 *6 (-730)) (-4 *2 (-878 *9 *7 *5))
+ (-5 *1 (-666 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-730))
+ (-4 *4 (-878 *8 *6 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-784)) (-4 *6 (-784)) (-4 *7 (-730))
+ (-4 *9 (-971)) (-4 *2 (-878 *9 *8 *6))
+ (-5 *1 (-667 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-730))
+ (-4 *4 (-878 *9 *7 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-673 *5 *7)) (-4 *5 (-971))
+ (-4 *6 (-971)) (-4 *7 (-664)) (-5 *2 (-673 *6 *7))
+ (-5 *1 (-672 *5 *6 *7))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-673 *3 *4))
+ (-4 *4 (-664))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-719 *5)) (-4 *5 (-971))
+ (-4 *6 (-971)) (-5 *2 (-719 *6)) (-5 *1 (-718 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-157)) (-4 *6 (-157))
+ (-4 *2 (-734 *6)) (-5 *1 (-735 *4 *5 *2 *6)) (-4 *4 (-734 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-770 *5)) (-4 *5 (-1014))
+ (-4 *6 (-1014)) (-5 *2 (-770 *6)) (-5 *1 (-769 *5 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-770 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-770 *5))
+ (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *1 (-769 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-777 *5)) (-4 *5 (-1014))
+ (-4 *6 (-1014)) (-5 *2 (-777 *6)) (-5 *1 (-776 *5 *6))))
+ ((*1 *2 *3 *4 *2 *2)
+ (-12 (-5 *2 (-777 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-777 *5))
+ (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *1 (-776 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-806 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-806 *6)) (-5 *1 (-805 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-808 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-808 *6)) (-5 *1 (-807 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-811 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-811 *6)) (-5 *1 (-810 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-818 *5 *6)) (-4 *5 (-1014))
+ (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-818 *5 *7))
+ (-5 *1 (-817 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-821 *5)) (-4 *5 (-1014))
+ (-4 *6 (-1014)) (-5 *2 (-821 *6)) (-5 *1 (-820 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-881 *5)) (-4 *5 (-971))
+ (-4 *6 (-971)) (-5 *2 (-881 *6)) (-5 *1 (-875 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-784))
+ (-4 *8 (-971)) (-4 *6 (-730))
+ (-4 *2
+ (-13 (-1014)
+ (-10 -8 (-15 -1661 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-708))))))
+ (-5 *1 (-880 *6 *7 *8 *5 *2)) (-4 *5 (-878 *8 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-886 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-886 *6)) (-5 *1 (-885 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-872 *5)) (-4 *5 (-971))
+ (-4 *6 (-971)) (-5 *2 (-872 *6)) (-5 *1 (-908 *5 *6))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 *2 (-881 *4))) (-4 *4 (-971))
+ (-4 *2 (-878 (-881 *4) *5 *6)) (-4 *5 (-730))
+ (-4 *6
+ (-13 (-784)
+ (-10 -8 (-15 -3873 ((-1085) $))
+ (-15 -1660 ((-3 $ "failed") (-1085))))))
+ (-5 *1 (-911 *4 *5 *6 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-514)) (-4 *6 (-514))
+ (-4 *2 (-919 *6)) (-5 *1 (-917 *5 *6 *4 *2)) (-4 *4 (-919 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-157)) (-4 *6 (-157))
+ (-4 *2 (-923 *6)) (-5 *1 (-924 *4 *5 *2 *6)) (-4 *4 (-923 *5))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-974 *3 *4 *5 *6 *7))
+ (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-971)) (-4 *10 (-971))
+ (-14 *5 (-708)) (-14 *6 (-708)) (-4 *8 (-215 *6 *7))
+ (-4 *9 (-215 *5 *7)) (-4 *2 (-974 *5 *6 *10 *11 *12))
+ (-5 *1 (-976 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2))
+ (-4 *4 (-974 *5 *6 *7 *8 *9)) (-4 *11 (-215 *6 *10))
+ (-4 *12 (-215 *5 *10))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1009 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-1009 *6)) (-5 *1 (-1005 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1009 *5)) (-4 *5 (-782))
+ (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-588 *6))
+ (-5 *1 (-1005 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1007 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-1007 *6)) (-5 *1 (-1006 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1010 *4 *2)) (-4 *4 (-782))
+ (-4 *2 (-1059 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1066 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-1066 *6)) (-5 *1 (-1064 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1066 *6)) (-5 *5 (-1066 *7))
+ (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-1066 *8))
+ (-5 *1 (-1065 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1081 *5)) (-4 *5 (-971))
+ (-4 *6 (-971)) (-5 *2 (-1081 *6)) (-5 *1 (-1079 *5 *6))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1097 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-1014))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1130 *5 *7 *9)) (-4 *5 (-971))
+ (-4 *6 (-971)) (-14 *7 (-1085)) (-14 *9 *5) (-14 *10 *6)
+ (-5 *2 (-1130 *6 *8 *10)) (-5 *1 (-1125 *5 *6 *7 *8 *9 *10))
+ (-14 *8 (-1085))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1133 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-1133 *6)) (-5 *1 (-1132 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1133 *5)) (-4 *5 (-782))
+ (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1066 *6))
+ (-5 *1 (-1132 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1139 *5 *6)) (-14 *5 (-1085))
+ (-4 *6 (-971)) (-4 *8 (-971)) (-5 *2 (-1139 *7 *8))
+ (-5 *1 (-1134 *5 *6 *7 *8)) (-14 *7 (-1085))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-971)) (-4 *6 (-971))
+ (-4 *2 (-1142 *6)) (-5 *1 (-1140 *5 *4 *6 *2)) (-4 *4 (-1142 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1151 *5 *7 *9)) (-4 *5 (-971))
+ (-4 *6 (-971)) (-14 *7 (-1085)) (-14 *9 *5) (-14 *10 *6)
+ (-5 *2 (-1151 *6 *8 *10)) (-5 *1 (-1146 *5 *6 *7 *8 *9 *10))
+ (-14 *8 (-1085))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-971)) (-4 *6 (-971))
+ (-4 *2 (-1157 *6)) (-5 *1 (-1155 *5 *6 *4 *2)) (-4 *4 (-1157 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-1120))
+ (-4 *6 (-1120)) (-5 *2 (-1166 *6)) (-5 *1 (-1165 *5 *6))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1166 *5))
+ (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1166 *6))
+ (-5 *1 (-1165 *5 *6))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784))
+ (-4 *4 (-971))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-1187 *3 *4))
+ (-4 *4 (-780)))))
+(((*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-92)))))
+(((*1 *1 *2 *2 *2)
+ (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106)))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338))))
+ ((*1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338))))
+ ((*1 *2 *1 *3 *4 *4)
+ (-12 (-5 *3 (-850)) (-5 *4 (-354)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-1024)))))
+(((*1 *1) (-5 *1 (-132))) ((*1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *3 *3 *3 *3 *4 *5)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522))
+ (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) (-5 *2 (-960))
+ (-5 *1 (-684)))))
+(((*1 *2 *3 *4 *4 *5)
+ (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-588 *3))
+ (-4 *3 (-13 (-405 *6) (-27) (-1106)))
+ (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-524 *6 *3 *7)) (-4 *7 (-1014)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2908 *4)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3))
+ (-4 *3 (-895)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-291 *3)) (-4 *3 (-514)) (-4 *3 (-784)))))
+(((*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
+ ((*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *1 *1) (-4 *1 (-1049))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-354))) (-5 *1 (-964)) (-5 *3 (-354)))))
(((*1 *1 *1)
(-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-628 *4)) (-5 *3 (-850)) (-4 *4 (-971))
+ (-5 *1 (-953 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-588 (-628 *4))) (-5 *3 (-850)) (-4 *4 (-971))
+ (-5 *1 (-953 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354))))
+ ((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-354)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *6 *5))
+ (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
+ (-4 *6 (-730)) (-5 *2 (-108)) (-5 *1 (-853 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-13 (-283) (-135)))
+ (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-108))
+ (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-4 *1 (-301 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)))))
+(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441))))
+ ((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441))))
+ ((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-690)))))
+(((*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1068)) (-5 *3 (-522)) (-5 *1 (-218)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *2 (-784))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)))))
(((*1 *2 *2 *3 *4)
(|partial| -12
(-5 *3
- (-1 (-3 (-2 (|:| -1856 *4) (|:| |coeff| *4)) "failed") *4))
+ (-1 (-3 (-2 (|:| -2585 *4) (|:| |coeff| *4)) "failed") *4))
(-4 *4 (-338)) (-5 *1 (-532 *4 *2)) (-4 *2 (-1142 *4)))))
+(((*1 *2 *3 *4 *4 *3 *5)
+ (-12 (-5 *4 (-561 *3)) (-5 *5 (-1081 *3))
+ (-4 *3 (-13 (-405 *6) (-27) (-1106)))
+ (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2 (-539 *3)) (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014))))
+ ((*1 *2 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *4 (-561 *3)) (-5 *5 (-382 (-1081 *3)))
+ (-4 *3 (-13 (-405 *6) (-27) (-1106)))
+ (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2 (-539 *3)) (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-1142 (-522))) (-5 *1 (-458 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
+ (-4 *4 (-971)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1171))
+ (-5 *1 (-423 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2308 *3)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
+ (-4 *3 (-13 (-338) (-1106) (-928))))))
+(((*1 *2) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-100)))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202)))
+ (-5 *2 (-960)) (-5 *1 (-685)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-676)))))
(((*1 *2 *2)
(-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426))
(-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-423 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1014)) (-4 *6 (-815 *5)) (-5 *2 (-814 *5 *6 (-588 *6)))
+ (-5 *1 (-816 *5 *6 *4)) (-5 *3 (-588 *6)) (-4 *4 (-563 (-821 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1014)) (-5 *2 (-588 (-270 *3))) (-5 *1 (-816 *5 *3 *4))
+ (-4 *3 (-962 (-1085))) (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1014)) (-5 *2 (-588 (-270 (-881 *3))))
+ (-5 *1 (-816 *5 *3 *4)) (-4 *3 (-971))
+ (-2473 (-4 *3 (-962 (-1085)))) (-4 *3 (-815 *5))
+ (-4 *4 (-563 (-821 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1014)) (-5 *2 (-818 *5 *3)) (-5 *1 (-816 *5 *3 *4))
+ (-2473 (-4 *3 (-962 (-1085)))) (-2473 (-4 *3 (-971)))
+ (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1179 (-1085) *3)) (-4 *3 (-971)) (-5 *1 (-1186 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1179 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
+ (-5 *1 (-1188 *3 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-382 (-881 (-154 (-522))))))
+ (-5 *2 (-588 (-588 (-270 (-881 (-154 *4)))))) (-5 *1 (-353 *4))
+ (-4 *4 (-13 (-338) (-782)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-270 (-382 (-881 (-154 (-522)))))))
+ (-5 *2 (-588 (-588 (-270 (-881 (-154 *4)))))) (-5 *1 (-353 *4))
+ (-4 *4 (-13 (-338) (-782)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-881 (-154 (-522)))))
+ (-5 *2 (-588 (-270 (-881 (-154 *4))))) (-5 *1 (-353 *4))
+ (-4 *4 (-13 (-338) (-782)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-270 (-382 (-881 (-154 (-522))))))
+ (-5 *2 (-588 (-270 (-881 (-154 *4))))) (-5 *1 (-353 *4))
+ (-4 *4 (-13 (-338) (-782))))))
+(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637))))
+ ((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-881 (-154 (-522))))) (-5 *2 (-588 (-154 *4)))
+ (-5 *1 (-353 *4)) (-4 *4 (-13 (-338) (-782)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-588 (-382 (-881 (-154 (-522))))))
+ (-5 *4 (-588 (-1085))) (-5 *2 (-588 (-588 (-154 *5))))
+ (-5 *1 (-353 *5)) (-4 *5 (-13 (-338) (-782))))))
+(((*1 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-343)) (-4 *2 (-338))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-850)) (-5 *2 (-1166 *4)) (-5 *1 (-492 *4))
+ (-4 *4 (-324)))))
+(((*1 *2 *1) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-1081 *3)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-850)) (-4 *5 (-514)) (-5 *2 (-628 *5))
+ (-5 *1 (-884 *5 *3)) (-4 *3 (-598 *5)))))
(((*1 *2 *2)
(|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1102)))))
+(((*1 *1 *1 *1) (-5 *1 (-792))) ((*1 *1 *1) (-5 *1 (-792)))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1081 (-522))) (-5 *3 (-522)) (-4 *1 (-798 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-756 *4)) (-4 *4 (-784)) (-5 *2 (-108))
+ (-5 *1 (-613 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))))
+(((*1 *1 *1) (-4 *1 (-574)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928) (-1106))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1066 (-382 *3))) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-675 *3))))
+ ((*1 *1 *2) (-12 (-5 *1 (-675 *2)) (-4 *2 (-1014))))
+ ((*1 *1) (-12 (-5 *1 (-675 *2)) (-4 *2 (-1014)))))
(((*1 *2 *2 *2)
(-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3))))
((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-685)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *3 (-588 (-239)))
+ (-5 *1 (-237))))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-239))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-442))))
+ ((*1 *2 *1) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-442)))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-514)) (-4 *3 (-157)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2))
+ (-4 *2 (-626 *3 *4 *5)))))
+(((*1 *1 *2 *3 *4)
+ (-12
+ (-5 *3
+ (-588
+ (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 *2))
+ (|:| |logand| (-1081 *2)))))
+ (-5 *4 (-588 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
+ (-4 *2 (-338)) (-5 *1 (-539 *2)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-338)) (-5 *1 (-261 *3 *2)) (-4 *2 (-1157 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085))
+ (-4 *4 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-401 *4 *2)) (-4 *2 (-13 (-1106) (-29 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-135))
+ (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-584 (-522))))
+ (-5 *2 (-291 *5)) (-5 *1 (-542 *5)))))
+(((*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1085))
(-5 *2
(-2 (|:| |zeros| (-1066 (-202))) (|:| |ones| (-1066 (-202)))
(|:| |singularities| (-1066 (-202)))))
(-5 *1 (-100)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-37 (-382 (-522))))
+ (-4 *2 (-157)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1015 *3 *4)) (-14 *3 (-850))
+ (-14 *4 (-850)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-4 *1 (-782)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338)))
+ (-4 *3 (-1142 *4)) (-5 *2 (-108)))))
+(((*1 *1 *1) (-5 *1 (-983))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-818 *5 *3)) (-5 *4 (-821 *5)) (-4 *5 (-1014))
+ (-4 *3 (-151 *6)) (-4 (-881 *6) (-815 *5))
+ (-4 *6 (-13 (-815 *5) (-157))) (-5 *1 (-162 *5 *6 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-818 *4 *1)) (-5 *3 (-821 *4)) (-4 *1 (-815 *4))
+ (-4 *4 (-1014))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-818 *5 *6)) (-5 *4 (-821 *5)) (-4 *5 (-1014))
+ (-4 *6 (-13 (-1014) (-962 *3))) (-4 *3 (-815 *5))
+ (-5 *1 (-860 *5 *3 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-818 *5 *3)) (-4 *5 (-1014))
+ (-4 *3 (-13 (-405 *6) (-563 *4) (-815 *5) (-962 (-561 $))))
+ (-5 *4 (-821 *5)) (-4 *6 (-13 (-514) (-784) (-815 *5)))
+ (-5 *1 (-861 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-818 (-522) *3)) (-5 *4 (-821 (-522))) (-4 *3 (-507))
+ (-5 *1 (-862 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-818 *5 *6)) (-5 *3 (-561 *6)) (-4 *5 (-1014))
+ (-4 *6 (-13 (-784) (-962 (-561 $)) (-563 *4) (-815 *5)))
+ (-5 *4 (-821 *5)) (-5 *1 (-863 *5 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-814 *5 *6 *3)) (-5 *4 (-821 *5)) (-4 *5 (-1014))
+ (-4 *6 (-815 *5)) (-4 *3 (-608 *6)) (-5 *1 (-864 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *5 (-1 (-818 *6 *3) *8 (-821 *6) (-818 *6 *3)))
+ (-4 *8 (-784)) (-5 *2 (-818 *6 *3)) (-5 *4 (-821 *6))
+ (-4 *6 (-1014)) (-4 *3 (-13 (-878 *9 *7 *8) (-563 *4)))
+ (-4 *7 (-730)) (-4 *9 (-13 (-971) (-784) (-815 *6)))
+ (-5 *1 (-865 *6 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-818 *5 *3)) (-4 *5 (-1014))
+ (-4 *3 (-13 (-878 *8 *6 *7) (-563 *4))) (-5 *4 (-821 *5))
+ (-4 *7 (-815 *5)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *8 (-13 (-971) (-784) (-815 *5))) (-5 *1 (-865 *5 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-818 *5 *3)) (-4 *5 (-1014)) (-4 *3 (-919 *6))
+ (-4 *6 (-13 (-514) (-815 *5) (-563 *4))) (-5 *4 (-821 *5))
+ (-5 *1 (-868 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-818 *5 (-1085))) (-5 *3 (-1085)) (-5 *4 (-821 *5))
+ (-4 *5 (-1014)) (-5 *1 (-869 *5))))
+ ((*1 *2 *3 *4 *5 *2 *6)
+ (-12 (-5 *4 (-588 (-821 *7))) (-5 *5 (-1 *9 (-588 *9)))
+ (-5 *6 (-1 (-818 *7 *9) *9 (-821 *7) (-818 *7 *9))) (-4 *7 (-1014))
+ (-4 *9 (-13 (-971) (-563 (-821 *7)) (-962 *8))) (-5 *2 (-818 *7 *9))
+ (-5 *3 (-588 *9)) (-4 *8 (-13 (-971) (-784)))
+ (-5 *1 (-870 *7 *8 *9)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-762)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-628 (-382 (-881 (-522)))))
+ (-5 *2 (-588 (-628 (-291 (-522))))) (-5 *1 (-956)))))
+(((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-821 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1033 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))))
(((*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-113 *3)) (-14 *3 *2)))
((*1 *1 *1) (-12 (-5 *1 (-113 *2)) (-14 *2 (-522))))
((*1 *1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-800 *3)) (-14 *3 *2)))
@@ -2868,78 +2761,494 @@
(-4 *4 (-1157 *3))))
((*1 *1 *1)
(-12 (-4 *1 (-1128 *2 *3)) (-4 *2 (-971)) (-4 *3 (-1157 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-166)))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-689)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *4 *3 *5))
+ (-4 *3 (-1142 *4))
+ (-4 *5 (-13 (-379) (-962 *4) (-338) (-1106) (-260))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)) (-4 *2 (-338))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-338)) (-5 *1 (-601 *4 *2))
+ (-4 *2 (-598 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
+(((*1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-1014))
+ (-4 *2 (-13 (-405 *4) (-815 *3) (-563 (-821 *3))))
+ (-5 *1 (-993 *3 *4 *2))
+ (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3))))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1014)) (-5 *1 (-1075 *3 *2)) (-4 *3 (-1014)))))
+(((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
+(((*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305))
+ (-5 *1 (-307)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-850))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343))
+ (-5 *2 (-1081 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343))
+ (-5 *2 (-1081 *3)))))
(((*1 *2 *3)
(-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2))
+ (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-157))
+ (-5 *1 (-627 *2 *4 *5 *3)) (-4 *3 (-626 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2))
+ (-4 *5 (-215 *3 *2)) (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-522)) (-5 *3 (-850)) (-5 *1 (-637))))
+ ((*1 *2 *2 *2 *3 *4)
+ (-12 (-5 *2 (-628 *5)) (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5))
+ (-4 *5 (-338)) (-5 *1 (-905 *5)))))
+(((*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169))))
+ ((*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))))
+(((*1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-1014))
+ (-4 *2 (-13 (-405 *4) (-815 *3) (-563 (-821 *3))))
+ (-5 *1 (-993 *3 *4 *2))
+ (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3))))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1014)) (-5 *1 (-1075 *2 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-588 *1)) (-4 *1 (-849)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1014)) (-4 *3 (-829 *5)) (-5 *2 (-628 *3))
+ (-5 *1 (-630 *5 *3 *6 *4)) (-4 *6 (-348 *3))
+ (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1014))
+ (-4 *6 (-1014)) (-4 *2 (-1014)) (-5 *1 (-620 *5 *6 *2)))))
+(((*1 *2) (-12 (-5 *2 (-1057 (-1068))) (-5 *1 (-366)))))
(((*1 *2 *3)
(-12
(-5 *2
- (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))
+ (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))
(-5 *1 (-945 *3)) (-4 *3 (-1142 (-522)))))
((*1 *2 *3 *4)
(-12
(-5 *2
- (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))
+ (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))
(-5 *1 (-945 *3)) (-4 *3 (-1142 (-522)))
- (-5 *4 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))))
+ (-5 *4 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))))
((*1 *2 *3 *4)
(-12
(-5 *2
- (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))
+ (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))
(-5 *1 (-945 *3)) (-4 *3 (-1142 (-522))) (-5 *4 (-382 (-522)))))
((*1 *2 *3 *4 *5)
(-12 (-5 *5 (-382 (-522)))
- (-5 *2 (-588 (-2 (|:| -1913 *5) (|:| -1924 *5)))) (-5 *1 (-945 *3))
- (-4 *3 (-1142 (-522))) (-5 *4 (-2 (|:| -1913 *5) (|:| -1924 *5)))))
+ (-5 *2 (-588 (-2 (|:| -1993 *5) (|:| -2002 *5)))) (-5 *1 (-945 *3))
+ (-4 *3 (-1142 (-522))) (-5 *4 (-2 (|:| -1993 *5) (|:| -2002 *5)))))
((*1 *2 *3)
(-12
(-5 *2
- (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))
+ (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))
(-5 *1 (-946 *3)) (-4 *3 (-1142 (-382 (-522))))))
((*1 *2 *3 *4)
(-12
(-5 *2
- (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))
+ (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))
(-5 *1 (-946 *3)) (-4 *3 (-1142 (-382 (-522))))
- (-5 *4 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))))
+ (-5 *4 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-382 (-522)))
- (-5 *2 (-588 (-2 (|:| -1913 *4) (|:| -1924 *4)))) (-5 *1 (-946 *3))
+ (-5 *2 (-588 (-2 (|:| -1993 *4) (|:| -2002 *4)))) (-5 *1 (-946 *3))
(-4 *3 (-1142 *4))))
((*1 *2 *3 *4 *5)
(-12 (-5 *5 (-382 (-522)))
- (-5 *2 (-588 (-2 (|:| -1913 *5) (|:| -1924 *5)))) (-5 *1 (-946 *3))
- (-4 *3 (-1142 *5)) (-5 *4 (-2 (|:| -1913 *5) (|:| -1924 *5))))))
+ (-5 *2 (-588 (-2 (|:| -1993 *5) (|:| -2002 *5)))) (-5 *1 (-946 *3))
+ (-4 *3 (-1142 *5)) (-5 *4 (-2 (|:| -1993 *5) (|:| -2002 *5))))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *5)) (-4 *4 (-971))
+ (-4 *5 (-784)) (-5 *2 (-881 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *5)) (-4 *4 (-971))
+ (-4 *5 (-784)) (-5 *2 (-881 *4))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-708)) (-4 *1 (-1157 *4)) (-4 *4 (-971))
+ (-5 *2 (-881 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-708)) (-4 *1 (-1157 *4)) (-4 *4 (-971))
+ (-5 *2 (-881 *4)))))
+(((*1 *1) (-12 (-4 *1 (-439 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23))))
+ ((*1 *1) (-5 *1 (-498))) ((*1 *1) (-4 *1 (-660)))
+ ((*1 *1) (-4 *1 (-664)))
+ ((*1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014))))
+ ((*1 *1) (-12 (-5 *1 (-822 *2)) (-4 *2 (-784)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
+ (-4 *4 (-971)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-522)) (-5 *2 (-588 (-2 (|:| -2006 *3) (|:| -2487 *4))))
+ (-5 *1 (-634 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-302 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-485 *3 *4))
+ (-14 *4 (-522)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1615 *4)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283))
+ (-5 *2 (-588 (-708))) (-5 *1 (-715 *3 *4 *5 *6 *7))
+ (-4 *3 (-1142 *6)) (-4 *7 (-878 *6 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-324)) (-5 *2 (-393 (-1081 (-1081 *4))))
+ (-5 *1 (-1119 *4)) (-5 *3 (-1081 (-1081 *4))))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
+ (-4 *3 (-342 *4))))
+ ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-757)) (-14 *5 (-1085))
+ (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-881 (-354))) (-5 *1 (-314 *3 *4 *5))
+ (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085)))
+ (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-382 (-881 (-354)))) (-5 *1 (-314 *3 *4 *5))
+ (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085)))
+ (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-291 (-354))) (-5 *1 (-314 *3 *4 *5))
+ (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085)))
+ (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-881 (-522))) (-5 *1 (-314 *3 *4 *5))
+ (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085)))
+ (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-382 (-881 (-522)))) (-5 *1 (-314 *3 *4 *5))
+ (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085)))
+ (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-291 (-522))) (-5 *1 (-314 *3 *4 *5))
+ (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085)))
+ (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-314 *3 *4 *5))
+ (-14 *3 (-588 *2)) (-14 *4 (-588 *2)) (-4 *5 (-362))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-291 *5)) (-4 *5 (-362))
+ (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085)))
+ (-14 *4 (-588 (-1085)))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-628 (-382 (-881 (-522))))) (-4 *1 (-359))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-628 (-382 (-881 (-354))))) (-4 *1 (-359))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-628 (-881 (-522)))) (-4 *1 (-359))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-628 (-881 (-354)))) (-4 *1 (-359))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-628 (-291 (-522)))) (-4 *1 (-359))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-628 (-291 (-354)))) (-4 *1 (-359))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-382 (-881 (-522)))) (-4 *1 (-371))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-382 (-881 (-354)))) (-4 *1 (-371))))
+ ((*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-522))) (-4 *1 (-371))))
+ ((*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-354))) (-4 *1 (-371))))
+ ((*1 *1 *2) (|partial| -12 (-5 *2 (-291 (-522))) (-4 *1 (-371))))
+ ((*1 *1 *2) (|partial| -12 (-5 *2 (-291 (-354))) (-4 *1 (-371))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1166 (-382 (-881 (-522))))) (-4 *1 (-415))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1166 (-382 (-881 (-354))))) (-4 *1 (-415))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1166 (-881 (-522)))) (-4 *1 (-415))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1166 (-881 (-354)))) (-4 *1 (-415))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1166 (-291 (-522)))) (-4 *1 (-415))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1166 (-291 (-354)))) (-4 *1 (-415))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-324)) (-4 *5 (-304 *4)) (-4 *6 (-1142 *5))
+ (-5 *2 (-1081 (-1081 *4))) (-5 *1 (-714 *4 *5 *6 *3 *7))
+ (-4 *3 (-1142 *6)) (-14 *7 (-850))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5))
+ (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-4 *1 (-903 *3 *4 *5 *6))))
+ ((*1 *2 *1) (|partial| -12 (-4 *1 (-962 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *2)
+ (|partial| -3844
+ (-12 (-5 *2 (-881 *3))
+ (-12 (-2473 (-4 *3 (-37 (-382 (-522)))))
+ (-2473 (-4 *3 (-37 (-522)))) (-4 *5 (-563 (-1085))))
+ (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730))
+ (-4 *5 (-784)))
+ (-12 (-5 *2 (-881 *3))
+ (-12 (-2473 (-4 *3 (-507))) (-2473 (-4 *3 (-37 (-382 (-522)))))
+ (-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085))))
+ (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730))
+ (-4 *5 (-784)))
+ (-12 (-5 *2 (-881 *3))
+ (-12 (-2473 (-4 *3 (-919 (-522)))) (-4 *3 (-37 (-382 (-522))))
+ (-4 *5 (-563 (-1085))))
+ (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730))
+ (-4 *5 (-784)))))
+ ((*1 *1 *2)
+ (|partial| -3844
+ (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5))
+ (-12 (-2473 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522)))
+ (-4 *5 (-563 (-1085))))
+ (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))
+ (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5))
+ (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))))
+ (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-881 (-382 (-522)))) (-4 *1 (-985 *3 *4 *5))
+ (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))) (-4 *3 (-971))
+ (-4 *4 (-730)) (-4 *5 (-784)))))
(((*1 *2 *1)
(-12 (-4 *1 (-633 *3)) (-4 *3 (-1014))
- (-5 *2 (-588 (-2 (|:| -3048 *3) (|:| -4168 (-708))))))))
+ (-5 *2 (-588 (-2 (|:| -3149 *3) (|:| -4187 (-708))))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *1) (-4 *1 (-23)))
+ ((*1 *1) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23))))
+ ((*1 *1) (-5 *1 (-498)))
+ ((*1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *4 *3 *5))
+ (-4 *3 (-1142 *4))
+ (-4 *5 (-13 (-379) (-962 *4) (-338) (-1106) (-260))))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-283)) (-4 *3 (-919 *2)) (-4 *4 (-1142 *3))
+ (-5 *1 (-388 *2 *3 *4 *5)) (-4 *5 (-13 (-384 *3 *4) (-962 *3))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1085)) (-5 *2 (-1 (-1081 (-881 *4)) (-881 *4)))
+ (-5 *1 (-1174 *4)) (-4 *4 (-338)))))
+(((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-51)) (-5 *1 (-821 *4))
+ (-4 *4 (-1014)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157))
+ (-5 *2 (-1166 (-628 *4)))))
+ ((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-1166 (-628 *4))) (-5 *1 (-391 *3 *4))
+ (-4 *3 (-392 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-1166 (-628 *3)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-1085))) (-4 *5 (-338))
+ (-5 *2 (-1166 (-628 (-382 (-881 *5))))) (-5 *1 (-1002 *5))
+ (-5 *4 (-628 (-382 (-881 *5))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-1085))) (-4 *5 (-338))
+ (-5 *2 (-1166 (-628 (-881 *5)))) (-5 *1 (-1002 *5))
+ (-5 *4 (-628 (-881 *5)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-628 *4))) (-4 *4 (-338))
+ (-5 *2 (-1166 (-628 *4))) (-5 *1 (-1002 *4)))))
(((*1 *2 *3)
(-12 (-5 *3 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971))
(-5 *2 (-881 *5)) (-5 *1 (-873 *4 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1133 (-522))) (-4 *1 (-593 *3)) (-4 *3 (-1120))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-593 *3)) (-4 *3 (-1120)))))
-(((*1 *1 *1) (-5 *1 (-1084)))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354)))
- (|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084))))
- (-5 *1 (-1084)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1032)) (-5 *1 (-105))))
+ ((*1 *2 *1) (|partial| -12 (-5 *1 (-340 *2)) (-4 *2 (-1014))))
+ ((*1 *2 *1) (|partial| -12 (-5 *2 (-1068)) (-5 *1 (-1102)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))
+ (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-850)) (|has| *1 (-6 -4229)) (-4 *1 (-379))))
+ ((*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850))))
+ ((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637))))
+ ((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-4 *1 (-832 *3)))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-694)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-454 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971))
+ (-5 *2 (-224 *4 *5)) (-5 *1 (-873 *4 *5)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1014)) (-5 *1 (-892 *3 *2)) (-4 *3 (-1014)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))
+ (-588 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522))))))
(-5 *2 (-588 (-202))) (-5 *1 (-281)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-561 *6))) (-5 *4 (-1085)) (-5 *2 (-561 *6))
+ (-4 *6 (-405 *5)) (-4 *5 (-784)) (-5 *1 (-531 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))))
+(((*1 *2 *1) (-12 (-5 *2 (-759)) (-5 *1 (-758)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7))))
+ (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-507))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-548 *3)) (-4 *3 (-971))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-900 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-729))
+ (-4 *5 (-784)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
(((*1 *2 *1)
(-12 (-5 *2 (-872 *4)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
(-4 *4 (-971)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-588 *7)) (-5 *3 (-108)) (-4 *7 (-985 *4 *5 *6))
+ (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-5 *1 (-904 *4 *5 *6 *7)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-588 *6)) (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
+ (-4 *3 (-514)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-759)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2308 *3)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4)))
+ (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
+(((*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169))))
+ ((*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-393 (-1081 (-522)))) (-5 *1 (-170)) (-5 *3 (-522)))))
(((*1 *2 *3)
(-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
(-4 *7 (-985 *4 *5 *6))
(-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7))))
(-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)))))
+(((*1 *2 *2)
+ (-12 (-4 *2 (-157)) (-4 *2 (-971)) (-5 *1 (-652 *2 *3))
+ (-4 *3 (-590 *2))))
+ ((*1 *2 *2) (-12 (-5 *1 (-771 *2)) (-4 *2 (-157)) (-4 *2 (-971)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343))
+ (-5 *2 (-1081 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
+ (-4 *3 (-13 (-338) (-1106) (-928))))))
+(((*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426))
+ (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-904 *3 *4 *5 *6)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-522)) (-4 *4 (-157)) (-4 *5 (-348 *4))
+ (-4 *6 (-348 *4)) (-5 *1 (-627 *4 *5 *6 *2))
+ (-4 *2 (-626 *4 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-982))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-982)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-5 *2 (-108))
+ (-5 *1 (-818 *4 *5)) (-4 *5 (-1014))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-5 *2 (-108))
+ (-5 *1 (-819 *5 *3)) (-4 *3 (-1120))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *6)) (-5 *4 (-821 *5)) (-4 *5 (-1014))
+ (-4 *6 (-1120)) (-5 *2 (-108)) (-5 *1 (-819 *5 *6)))))
(((*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))))
+(((*1 *1 *2) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-110)) (-4 *2 (-1014)) (-4 *2 (-784))
+ (-5 *1 (-109 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-2 (|:| -2006 *4) (|:| -2487 (-522)))))
+ (-4 *4 (-1142 (-522))) (-5 *2 (-675 (-708))) (-5 *1 (-416 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-393 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-971))
+ (-5 *2 (-675 (-708))) (-5 *1 (-418 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426))
+ (-14 *6 (-588 (-1085)))
+ (-5 *2
+ (-588 (-1056 *5 (-494 (-794 *6)) (-794 *6) (-717 *5 (-794 *6)))))
+ (-5 *1 (-573 *5 *6)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-412)) (-5 *1 (-1089)))))
+(((*1 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-343)) (-4 *2 (-1014)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-1009 *3)) (-4 *3 (-878 *7 *6 *4)) (-4 *6 (-730))
+ (-4 *4 (-784)) (-4 *7 (-514))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-522))))
+ (-5 *1 (-546 *6 *4 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-514))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-522))))
+ (-5 *1 (-546 *5 *4 *6 *3)) (-4 *3 (-878 *6 *5 *4))))
+ ((*1 *1 *1 *1 *1) (-5 *1 (-792))) ((*1 *1 *1 *1) (-5 *1 (-792)))
+ ((*1 *1 *1) (-5 *1 (-792)))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085))
+ (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-1077 *4 *2)) (-4 *2 (-13 (-405 *4) (-146) (-27) (-1106)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1007 *2)) (-4 *2 (-13 (-405 *4) (-146) (-27) (-1106)))
+ (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-1077 *4 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-784) (-962 (-522))))
+ (-5 *2 (-382 (-881 *5))) (-5 *1 (-1078 *5)) (-5 *3 (-881 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-784) (-962 (-522))))
+ (-5 *2 (-3 (-382 (-881 *5)) (-291 *5))) (-5 *1 (-1078 *5))
+ (-5 *3 (-382 (-881 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1007 (-881 *5))) (-5 *3 (-881 *5))
+ (-4 *5 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-382 *3))
+ (-5 *1 (-1078 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1007 (-382 (-881 *5)))) (-5 *3 (-382 (-881 *5)))
+ (-4 *5 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-3 *3 (-291 *5)))
+ (-5 *1 (-1078 *5)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-57 *6)) (-4 *6 (-1120))
(-4 *5 (-1120)) (-5 *2 (-57 *5)) (-5 *1 (-56 *6 *5))))
@@ -2965,22 +3274,216 @@
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1166 *6)) (-4 *6 (-1120))
(-4 *5 (-1120)) (-5 *2 (-1166 *5)) (-5 *1 (-1165 *6 *5)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *2 (-960)) (-5 *1 (-695)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971))
+ (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-291 (-202))) (-5 *4 (-1085))
+ (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-171))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-291 (-202))) (-5 *4 (-1085))
+ (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-276)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-588 (-588 (-588 *4)))) (-5 *2 (-588 (-588 *4)))
+ (-4 *4 (-784)) (-5 *1 (-1092 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-37 (-382 (-522))))
+ (-5 *2 (-2 (|:| -3023 (-1066 *4)) (|:| -3035 (-1066 *4))))
+ (-5 *1 (-1072 *4)) (-5 *3 (-1066 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
+(((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-132))))
+ ((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-132)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
+ ((*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-522)) (|has| *1 (-6 -4239)) (-4 *1 (-348 *3))
+ (-4 *3 (-1120)))))
+(((*1 *1 *1) (-12 (-5 *1 (-470 *2)) (-14 *2 (-522))))
+ ((*1 *1 *1) (-5 *1 (-1032))))
(((*1 *2)
(-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
(-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
(-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
+(((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169))))
+ ((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-108))
+ (-5 *2 (-960)) (-5 *1 (-691)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1085)) (-4 *5 (-563 (-821 (-522))))
+ (-4 *5 (-815 (-522)))
+ (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522))))
+ (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
+ (-5 *1 (-525 *5 *3)) (-4 *3 (-574))
+ (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-628 (-291 (-202))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))))
+ (-5 *1 (-184)))))
+(((*1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1) (-4 *1 (-119)))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-220)) (-5 *2 (-522))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-447)) (-5 *2 (-522))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-664)) (-5 *2 (-708))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1026)) (-5 *2 (-850)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *5 (-708)) (-4 *6 (-1014)) (-4 *7 (-829 *6))
+ (-5 *2 (-628 *7)) (-5 *1 (-630 *6 *7 *3 *4)) (-4 *3 (-348 *7))
+ (-4 *4 (-13 (-348 *6) (-10 -7 (-6 -4238)))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1120)) (-5 *1 (-165 *3 *2)) (-4 *2 (-615 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-405 *3) (-928))) (-5 *1 (-252 *3 *2))
+ (-4 *3 (-13 (-784) (-514))))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-470 *2)) (-14 *2 (-522))))
+ ((*1 *1 *1 *1) (-5 *1 (-1032))))
(((*1 *2 *2)
(-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971))))
((*1 *2)
(-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1059 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1142 *6))
+ (-4 *6 (-13 (-338) (-135) (-962 *4))) (-5 *4 (-522))
+ (-5 *2
+ (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-108))))
+ (|:| -3277
+ (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
+ (|:| |beta| *3)))))
+ (-5 *1 (-941 *6 *3)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 (-224 *5 *6))) (-4 *6 (-426))
+ (-5 *2 (-224 *5 *6)) (-14 *5 (-588 (-1085))) (-5 *1 (-576 *5 *6)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-522)) (-5 *1 (-527 *3)) (-4 *3 (-962 *2)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-1139 *5 *4)) (-5 *1 (-1083 *4 *5 *6))
+ (-4 *4 (-971)) (-14 *5 (-1085)) (-14 *6 *4)))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-1139 *5 *4)) (-5 *1 (-1158 *4 *5 *6))
+ (-4 *4 (-971)) (-14 *5 (-1085)) (-14 *6 *4))))
+(((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-759)))))
+(((*1 *2) (-12 (-5 *2 (-1057 (-1068))) (-5 *1 (-366)))))
+(((*1 *1 *1 *1) (-5 *1 (-147)))
+ ((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-147)))))
+(((*1 *1 *1) (-4 *1 (-798 *2))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-108)) (-5 *1 (-38 *3)) (-4 *3 (-1142 (-47))))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-470 *2)) (-14 *2 (-522))))
+ ((*1 *1 *1 *1) (-5 *1 (-1032))))
(((*1 *2 *1)
(-12 (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))) (-5 *2 (-108))))
((*1 *2 *1) (-12 (-4 *1 (-782)) (-5 *2 (-108))))
((*1 *2 *3 *1)
(-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338)))
(-4 *3 (-1142 *4)) (-5 *2 (-108)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1126 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1974 *4))))
+ (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1179 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157))
+ (-5 *1 (-606 *3 *4))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-606 *3 *4)) (-5 *1 (-1184 *3 *4))
+ (-4 *3 (-784)) (-4 *4 (-157)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
+ (-5 *2 (-108)))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
+ (-4 *3 (-342 *4))))
+ ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1085))
+ (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *2 (-1 *5 *5)) (-5 *1 (-741 *4 *5))
+ (-4 *5 (-13 (-29 *4) (-1106) (-887))))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-156)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2))
+ (-4 *4 (-348 *2)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1142 *5))
+ (-4 *5 (-13 (-27) (-405 *4)))
+ (-4 *4 (-13 (-784) (-514) (-962 (-522))))
+ (-4 *7 (-1142 (-382 *6))) (-5 *1 (-510 *4 *5 *6 *7 *2))
+ (-4 *2 (-317 *5 *6 *7)))))
(((*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-507))))
((*1 *1 *1) (-4 *1 (-980))))
+(((*1 *2 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-33)) (-5 *2 (-708))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-522))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-708)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-971))
+ (-4 *4 (-780)))))
+(((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708))
+ (-4 *4 (-157))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2))
+ (-4 *2 (-405 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1007 *2)) (-4 *2 (-405 *4)) (-4 *4 (-13 (-784) (-514)))
+ (-5 *1 (-144 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1007 *1)) (-4 *1 (-146))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-146)) (-5 *2 (-1085))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-439 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-708)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-784))
+ (-4 *4 (-157)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-108))
+ (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2
+ (-3 (|:| |%expansion| (-288 *5 *3 *6 *7))
+ (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))))
+ (-5 *1 (-395 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1106) (-405 *5)))
+ (-14 *6 (-1085)) (-14 *7 *3))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-522)) (-4 *4 (-13 (-514) (-135))) (-5 *1 (-499 *4 *2))
+ (-4 *2 (-1157 *4))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-522)) (-4 *4 (-13 (-338) (-343) (-563 *3)))
+ (-4 *5 (-1142 *4)) (-4 *6 (-662 *4 *5)) (-5 *1 (-503 *4 *5 *6 *2))
+ (-4 *2 (-1157 *6))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-522)) (-4 *4 (-13 (-338) (-343) (-563 *3)))
+ (-5 *1 (-504 *4 *2)) (-4 *2 (-1157 *4))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-13 (-514) (-135)))
+ (-5 *1 (-1062 *4)))))
+(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-354)) (-5 *1 (-983)))))
+(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-522)) (-5 *1 (-354)))))
+(((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *2 *3 *3 *1)
+ (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-1018)) (-5 *1 (-267)))))
(((*1 *2 *2)
(-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426))
(-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
@@ -2989,30 +3492,329 @@
(-12 (-5 *2 (-588 *7)) (-5 *3 (-108)) (-4 *7 (-985 *4 *5 *6))
(-4 *4 (-426)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
(-5 *1 (-904 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-708)) (-5 *5 (-588 *3)) (-4 *3 (-283)) (-4 *6 (-784))
+ (-4 *7 (-730)) (-5 *2 (-108)) (-5 *1 (-571 *6 *7 *3 *8))
+ (-4 *8 (-878 *3 *7 *6)))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
+ (-4 *3 (-342 *4))))
+ ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-338)) (-4 *7 (-1142 *5)) (-4 *4 (-662 *5 *7))
+ (-5 *2 (-2 (|:| -2149 (-628 *6)) (|:| |vec| (-1166 *5))))
+ (-5 *1 (-748 *5 *6 *7 *4 *3)) (-4 *6 (-598 *5)) (-4 *3 (-598 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1081 *2)) (-4 *2 (-405 *4)) (-4 *4 (-13 (-784) (-514)))
+ (-5 *1 (-31 *4 *2)))))
+(((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169))))
+ ((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-302 *3)) (-4 *3 (-1120))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-522)) (-5 *1 (-485 *3 *4)) (-4 *3 (-1120)) (-14 *4 *2))))
+(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-960)) (-5 *3 (-1085)) (-5 *1 (-171)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5))
+ (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-1177 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-588 *8)) (-5 *3 (-1 (-108) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514))
+ (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1177 *5 *6 *7 *8)))))
+(((*1 *1 *2) (-12 (-5 *1 (-1107 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-1107 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-588 (-1107 *2))) (-5 *1 (-1107 *2)) (-4 *2 (-1014)))))
(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
(-12 (-5 *3 (-202)) (-5 *4 (-522))
- (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) (-5 *2 (-960))
+ (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) (-5 *2 (-960))
(-5 *1 (-686)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-784)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338))
+ (-4 *7 (-1142 (-382 *6)))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| -3002 *3)))
+ (-5 *1 (-520 *5 *6 *7 *3)) (-4 *3 (-317 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338))
+ (-5 *2
+ (-2 (|:| |answer| (-382 *6)) (|:| -3002 (-382 *6))
+ (|:| |specpart| (-382 *6)) (|:| |polypart| *6)))
+ (-5 *1 (-521 *5 *6)) (-5 *3 (-382 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-108))
+ (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1974 *4))))
+ (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-301 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729))))
+ ((*1 *2 *1) (-12 (-4 *1 (-647 *3)) (-4 *3 (-971)) (-5 *2 (-708))))
+ ((*1 *2 *1) (-12 (-4 *1 (-786 *3)) (-4 *3 (-971)) (-5 *2 (-708))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-588 *6)) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 (-708)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-878 *4 *5 *3)) (-4 *4 (-971)) (-4 *5 (-730))
+ (-4 *3 (-784)) (-5 *2 (-708)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-588 *5) *6))
+ (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *6 (-1142 *5))
+ (-5 *2 (-588 (-2 (|:| |poly| *6) (|:| -3277 *3))))
+ (-5 *1 (-746 *5 *6 *3 *7)) (-4 *3 (-598 *6))
+ (-4 *7 (-598 (-382 *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-588 *5) *6))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-4 *6 (-1142 *5))
+ (-5 *2 (-588 (-2 (|:| |poly| *6) (|:| -3277 (-596 *6 (-382 *6))))))
+ (-5 *1 (-749 *5 *6)) (-5 *3 (-596 *6 (-382 *6))))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-561 *1)) (-4 *1 (-278)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-465)))))
(((*1 *2 *2 *3)
(-12 (-5 *2 (-588 (-881 *4))) (-5 *3 (-588 (-1085))) (-4 *4 (-426))
(-5 *1 (-847 *4)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))))
+(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-92)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)) (-4 *2 (-784))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-258 *3)) (-4 *3 (-1120))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-896 *2)) (-4 *2 (-784)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-971))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-693)))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
+ (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *6 (-202))
+ (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-689)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
(((*1 *1 *1 *2)
(-12 (-5 *2 (-1133 (-522))) (-4 *1 (-258 *3)) (-4 *3 (-1120))))
((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))))
(((*1 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085))
+ (-14 *4 *2))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-588 (-156)))))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
+ (-5 *2
+ (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522))
+ (|:| |success| (-108))))
+ (-5 *1 (-726)) (-5 *5 (-522)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-426)) (-4 *3 (-784)) (-4 *4 (-730))
+ (-5 *1 (-914 *2 *3 *4 *5)) (-4 *5 (-878 *2 *4 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-212 *3))))
+ ((*1 *1) (-12 (-4 *1 (-212 *2)) (-4 *2 (-1014)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4)))
+ (-5 *2 (-1166 *6)) (-5 *1 (-311 *3 *4 *5 *6))
+ (-4 *6 (-317 *3 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-393 (-1081 *1))) (-5 *1 (-291 *4)) (-5 *3 (-1081 *1))
+ (-4 *4 (-426)) (-4 *4 (-514)) (-4 *4 (-784))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-838)) (-5 *2 (-393 (-1081 *1))) (-5 *3 (-1081 *1)))))
+(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1068)) (-5 *3 (-760)) (-5 *1 (-759)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1142 *5))
+ (-5 *1 (-665 *5 *2)) (-4 *5 (-338)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-514))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1615 *4)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1 (-108) *9)) (-5 *5 (-1 (-108) *9 *9))
+ (-4 *9 (-985 *6 *7 *8)) (-4 *6 (-514)) (-4 *7 (-730))
+ (-4 *8 (-784)) (-5 *2 (-2 (|:| |bas| *1) (|:| -1322 (-588 *9))))
+ (-5 *3 (-588 *9)) (-4 *1 (-1114 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-108) *8 *8)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-2 (|:| |bas| *1) (|:| -1322 (-588 *8))))
+ (-5 *3 (-588 *8)) (-4 *1 (-1114 *5 *6 *7 *8)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-824))
+ (-5 *3
+ (-2 (|:| |pde| (-588 (-291 (-202))))
+ (|:| |constraints|
+ (-588
+ (-2 (|:| |start| (-202)) (|:| |finish| (-202))
+ (|:| |grid| (-708)) (|:| |boundaryType| (-522))
+ (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202))))))
+ (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068))
+ (|:| |tol| (-202))))
+ (-5 *2 (-960)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-298 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-124)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))
+ (-5 *2 (-588 (-1085))) (-5 *1 (-243))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1081 *7)) (-4 *7 (-878 *6 *4 *5)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-971)) (-5 *2 (-588 *5))
+ (-5 *1 (-296 *4 *5 *6 *7))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-314 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 *2) (-4 *5 (-362))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-405 *3)) (-4 *3 (-784)) (-5 *2 (-588 (-1085)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *2 (-588 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971))
+ (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-588 *5))
+ (-5 *1 (-879 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-338)
+ (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $)))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1016 (-1085))) (-5 *1 (-894 *3)) (-4 *3 (-895))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-900 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-729))
+ (-4 *5 (-784)) (-5 *2 (-588 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-5 *2 (-588 (-1085)))
+ (-5 *1 (-967 *4)))))
(((*1 *2 *1)
(-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971))
(-14 *4 (-588 (-1085)))))
((*1 *2 *1)
(-12 (-5 *2 (-108)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784)))
(-14 *4 (-588 (-1085))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157))
+ (-5 *2 (-628 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-628 *4)) (-5 *1 (-391 *3 *4))
+ (-4 *3 (-392 *4))))
+ ((*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-382 (-522)))
+ (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-253 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2))
+ (-4 *4 (-13 (-784) (-514))))))
+(((*1 *2 *3 *2 *3)
+ (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1088))))
+ ((*1 *2 *3 *2) (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1088))))
+ ((*1 *2 *3 *2 *4 *1)
+ (-12 (-5 *2 (-412)) (-5 *3 (-588 (-1085))) (-5 *4 (-1085))
+ (-5 *1 (-1088))))
+ ((*1 *2 *3 *2 *3 *1)
+ (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1088))))
+ ((*1 *2 *3 *2 *1)
+ (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1089))))
+ ((*1 *2 *3 *2 *1)
+ (-12 (-5 *2 (-412)) (-5 *3 (-588 (-1085))) (-5 *1 (-1089)))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
+(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-791))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-893))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-916))))
+ ((*1 *2 *1) (-12 (-4 *1 (-936 *2)) (-4 *2 (-1120))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-1014) (-33))) (-5 *1 (-1050 *2 *3))
+ (-4 *3 (-13 (-1014) (-33))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-411)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-306 *3)) (-4 *3 (-784)))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-405 *3) (-928))) (-5 *1 (-252 *3 *2))
+ (-4 *3 (-13 (-784) (-514))))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-588 *5)) (-5 *4 (-588 (-1 *6 (-588 *6))))
(-4 *5 (-37 (-382 (-522)))) (-4 *6 (-1157 *5)) (-5 *2 (-588 *6))
(-5 *1 (-1159 *5 *6)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1081 (-382 (-1081 *2)))) (-5 *4 (-561 *2))
+ (-4 *2 (-13 (-405 *5) (-27) (-1106)))
+ (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *1 (-518 *5 *2 *6)) (-4 *6 (-1014))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1081 *1)) (-4 *1 (-878 *4 *5 *3)) (-4 *4 (-971))
+ (-4 *5 (-730)) (-4 *3 (-784))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1081 *4)) (-4 *4 (-971)) (-4 *1 (-878 *4 *5 *3))
+ (-4 *5 (-730)) (-4 *3 (-784))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-1081 *2))) (-4 *5 (-730)) (-4 *4 (-784))
+ (-4 *6 (-971))
+ (-4 *2
+ (-13 (-338)
+ (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $)))))
+ (-5 *1 (-879 *5 *4 *6 *7 *2)) (-4 *7 (-878 *6 *5 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-1081 (-382 (-881 *5))))) (-5 *4 (-1085))
+ (-5 *2 (-382 (-881 *5))) (-5 *1 (-967 *5)) (-4 *5 (-514)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-393 *3)) (-4 *3 (-507)) (-4 *3 (-514))))
+ ((*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-734 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-770 *3)) (-4 *3 (-507)) (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-777 *3)) (-4 *3 (-507)) (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-923 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-108))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-108)) (-5 *1 (-934 *3)) (-4 *3 (-962 (-382 (-522)))))))
+(((*1 *1 *1) (-4 *1 (-507))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)) (-5 *2 (-588 *6))
+ (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-283))
+ (-5 *2 (-708)) (-5 *1 (-429 *5 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1126 *3))
+ (-5 *2 (-382 (-522))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-914 (-382 (-522)) (-794 *3) (-217 *4 (-708))
+ (-224 *3 (-382 (-522)))))
+ (-14 *3 (-588 (-1085))) (-14 *4 (-708)) (-5 *1 (-913 *3 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-108)) (-5 *1 (-243)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-981 (-949 *3) (-1081 (-949 *3))))
+ (-5 *1 (-949 *3)) (-4 *3 (-13 (-782) (-338) (-947))))))
(((*1 *1 *2)
(-12 (-5 *2 (-1 (-872 (-202)) (-872 (-202)))) (-5 *1 (-239))))
((*1 *2 *3)
@@ -3044,1701 +3846,721 @@
((*1 *2 *3 *4)
(-12 (-5 *4 (-588 (-628 *5))) (-5 *3 (-628 *5)) (-4 *5 (-338))
(-5 *2 (-1166 *5)) (-5 *1 (-1002 *5)))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
+ (-4 *3 (-342 *4))))
+ ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-324)) (-5 *2 (-108)) (-5 *1 (-194 *4 *3))
+ (-4 *3 (-1142 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522)))))
+ (-4 *3 (-1142 *4)) (-5 *1 (-746 *4 *3 *2 *5)) (-4 *2 (-598 *3))
+ (-4 *5 (-598 (-382 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-382 *5))
+ (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-1142 *4))
+ (-5 *1 (-746 *4 *5 *2 *6)) (-4 *2 (-598 *5)) (-4 *6 (-598 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369))))
+ ((*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
+(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
+ (|partial| -12 (-5 *2 (-588 (-1081 *13))) (-5 *3 (-1081 *13))
+ (-5 *4 (-588 *12)) (-5 *5 (-588 *10)) (-5 *6 (-588 *13))
+ (-5 *7 (-588 (-588 (-2 (|:| -2170 (-708)) (|:| |pcoef| *13)))))
+ (-5 *8 (-588 (-708))) (-5 *9 (-1166 (-588 (-1081 *10))))
+ (-4 *12 (-784)) (-4 *10 (-283)) (-4 *13 (-878 *10 *11 *12))
+ (-4 *11 (-730)) (-5 *1 (-646 *11 *12 *10 *13)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2308 *3)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2 *2) (-12 (-5 *1 (-540 *2)) (-4 *2 (-507)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-588 (-561 *5))) (-5 *3 (-1085)) (-4 *5 (-405 *4))
+ (-4 *4 (-784)) (-5 *1 (-531 *4 *5)))))
+(((*1 *1 *1) (-5 *1 (-108))))
+(((*1 *1 *2 *3)
+ (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-588 (-850))) (-5 *1 (-140 *4 *2 *5)) (-14 *4 (-850))
+ (-4 *2 (-338)) (-14 *5 (-920 *4 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-651 *5 *6 *7)) (-4 *5 (-784))
+ (-4 *6 (-215 (-3591 *4) (-708)))
+ (-14 *7
+ (-1 (-108) (-2 (|:| -2882 *5) (|:| -3858 *6))
+ (-2 (|:| -2882 *5) (|:| -3858 *6))))
+ (-14 *4 (-588 (-1085))) (-4 *2 (-157))
+ (-5 *1 (-435 *4 *2 *5 *6 *7 *8)) (-4 *8 (-878 *2 *6 (-794 *4)))))
+ ((*1 *1 *2 *3)
+ (-12 (-4 *1 (-478 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-784))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-522)) (-4 *2 (-514)) (-5 *1 (-569 *2 *4))
+ (-4 *4 (-1142 *2))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-647 *2)) (-4 *2 (-971))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-673 *2 *3)) (-4 *2 (-971)) (-4 *3 (-664))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 *5)) (-5 *3 (-588 (-708))) (-4 *1 (-678 *4 *5))
+ (-4 *4 (-971)) (-4 *5 (-784))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *2)) (-4 *4 (-971))
+ (-4 *2 (-784))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-786 *2)) (-4 *2 (-971))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 *6)) (-5 *3 (-588 (-708))) (-4 *1 (-878 *4 *5 *6))
+ (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-708)) (-4 *1 (-878 *4 *5 *2)) (-4 *4 (-971))
+ (-4 *5 (-730)) (-4 *2 (-784))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 *6)) (-5 *3 (-588 *5)) (-4 *1 (-900 *4 *5 *6))
+ (-4 *4 (-971)) (-4 *5 (-729)) (-4 *6 (-784))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-4 *1 (-900 *4 *3 *2)) (-4 *4 (-971)) (-4 *3 (-729))
+ (-4 *2 (-784)))))
(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
(-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
(-5 *2
- (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522))
+ (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522))
(|:| |success| (-108))))
(-5 *1 (-726)) (-5 *5 (-522)))))
-(((*1 *2 *3)
- (-12 (-4 *3 (-1142 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-912 *4 *2 *3 *5))
- (-4 *4 (-324)) (-4 *5 (-662 *2 *3)))))
-(((*1 *1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))))
-(((*1 *1 *1) (-5 *1 (-983))))
-(((*1 *2 *3 *4 *4 *5 *3 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
- (-5 *2 (-960)) (-5 *1 (-690)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
-(((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *3))))
- (-5 *1 (-547 *3)) (-4 *3 (-971)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-453)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-154 (-202)) (-154 (-202)))) (-5 *4 (-1009 (-202)))
- (-5 *5 (-108)) (-5 *2 (-1168)) (-5 *1 (-233)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1016 *4)) (-4 *4 (-1014)) (-5 *2 (-1 *4))
- (-5 *1 (-943 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-354))) (-5 *1 (-964)) (-5 *3 (-354))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1009 (-522))) (-5 *2 (-1 (-522))) (-5 *1 (-969)))))
-(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-154 (-202)))) (-5 *2 (-960))
- (-5 *1 (-694)))))
+ (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1032)) (-5 *2 (-108)) (-5 *1 (-758)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-354))) (-5 *1 (-964)) (-5 *3 (-354)))))
-(((*1 *2) (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1169))))
- ((*1 *2 *2) (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1169)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-426)) (-4 *4 (-757))
- (-14 *5 (-1085)) (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-708)) (-4 *5 (-514))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))))
-(((*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-540 *3)) (-4 *3 (-507)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-324)) (-5 *2 (-393 (-1081 (-1081 *4))))
- (-5 *1 (-1119 *4)) (-5 *3 (-1081 (-1081 *4))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
- (-5 *1 (-160 *3)))))
+ (-12 (-4 *1 (-555 *2 *3)) (-4 *3 (-1120)) (-4 *2 (-1014))
+ (-4 *2 (-784)))))
+(((*1 *1 *1) (-4 *1 (-980)))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))))
+(((*1 *2 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)) (-5 *2 (-108))
+ (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33)))
+ (-4 *4 (-13 (-1014) (-33))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4))
- (-4 *4 (-324)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1066 (-382 *3))) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
+ (-12 (-4 *4 (-13 (-514) (-135))) (-5 *2 (-588 *3))
+ (-5 *1 (-1136 *4 *3)) (-4 *3 (-1142 *4)))))
(((*1 *1 *1) (-5 *1 (-983))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-338)) (-4 *3 (-971))
- (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-786 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-94 *5)) (-4 *5 (-338)) (-4 *5 (-971))
- (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-787 *5 *3))
- (-4 *3 (-786 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-792))) (-5 *2 (-1171)) (-5 *1 (-1048)))))
-(((*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1089)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
+ (-5 *2 (-960)) (-5 *1 (-690)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-1142 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-912 *4 *2 *3 *5))
+ (-4 *4 (-324)) (-4 *5 (-662 *2 *3)))))
+(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))))
+ (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *3 (-202))
+ (-5 *2 (-960)) (-5 *1 (-687)))))
(((*1 *2 *3 *1)
(-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4238)) (-4 *1 (-461 *4))
(-4 *4 (-1120)) (-5 *2 (-108)))))
-(((*1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1169))))
- ((*1 *2 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1169)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *1 *1) (-12 (-5 *1 (-1107 *2)) (-4 *2 (-1014)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-886 (-1032)))
- (-5 *1 (-321 *4)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124))
- (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-402 *3 *2)) (-4 *3 (-13 (-157) (-37 (-382 (-522)))))
- (-4 *2 (-13 (-784) (-21))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-676)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
- (-5 *2 (-108)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1085)) (-4 *5 (-338)) (-5 *2 (-1066 (-1066 (-881 *5))))
- (-5 *1 (-1174 *5)) (-5 *4 (-1066 (-881 *5))))))
-(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-157)) (-4 *2 (-514))))
- ((*1 *1 *1) (|partial| -4 *1 (-660))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338))
- (-5 *2 (-2 (|:| -1856 (-382 *6)) (|:| |coeff| (-382 *6))))
- (-5 *1 (-532 *5 *6)) (-5 *3 (-382 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-498)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1081 *1)) (-4 *1 (-938)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-1007 (-881 (-522)))) (-5 *3 (-881 (-522)))
- (-5 *1 (-305))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1007 (-881 (-522)))) (-5 *1 (-305)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-708)) (-4 *1 (-301 *3 *4)) (-4 *3 (-971))
- (-4 *4 (-729)) (-4 *3 (-157)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-348 *2))
- (-4 *5 (-348 *2)) (-4 *2 (-1120))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-264 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *2 *6 *7))
- (-4 *6 (-215 *5 *2)) (-4 *7 (-215 *4 *2)) (-4 *2 (-971)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-4 *3 (-514))
- (-5 *2 (-1081 *3)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-730)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *6 (-784))
- (-5 *2 (-108)) (-5 *1 (-423 *4 *5 *6 *7)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-936 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-311 *5 *6 *7 *8)) (-4 *5 (-405 *4))
- (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6)))
- (-4 *8 (-317 *5 *6 *7)) (-4 *4 (-13 (-784) (-514) (-962 (-522))))
- (-5 *2 (-2 (|:| -3714 (-708)) (|:| -2094 *8)))
- (-5 *1 (-840 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-311 (-382 (-522)) *4 *5 *6))
- (-4 *4 (-1142 (-382 (-522)))) (-4 *5 (-1142 (-382 *4)))
- (-4 *6 (-317 (-382 (-522)) *4 *5))
- (-5 *2 (-2 (|:| -3714 (-708)) (|:| -2094 *6)))
- (-5 *1 (-841 *4 *5 *6)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-338))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-159)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1142 *3)) (-4 *3 (-971)) (-5 *2 (-1081 *3)))))
-(((*1 *1) (-5 *1 (-740))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085))
- (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *1 (-741 *4 *2)) (-4 *2 (-13 (-29 *4) (-1106) (-887)))))
- ((*1 *1 *1 *1 *1) (-5 *1 (-792))) ((*1 *1 *1 *1) (-5 *1 (-792)))
- ((*1 *1 *1) (-5 *1 (-792)))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1066 *3)) (-5 *1 (-1070 *3)) (-4 *3 (-971)))))
-(((*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))))
-(((*1 *1 *1 *1)
+ (-12 (-5 *2 (-792)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 (-708))
+ (-14 *4 (-708)) (-4 *5 (-157)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3))))
+ ((*1 *1 *1 *1)
(-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
(-4 *4 (-784)) (-4 *2 (-514))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-514)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-773))
- (-5 *3
- (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202)))
- (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202))))
- (|:| |ub| (-588 (-777 (-202))))))
- (-5 *2 (-960))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-773))
- (-5 *3
- (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))
- (-5 *2 (-960)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-1095 *2)) (-4 *2 (-338)))))
-(((*1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1088)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108))
- (-5 *1 (-31 *4 *5)) (-4 *5 (-405 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108))
- (-5 *1 (-144 *4 *5)) (-4 *5 (-405 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108))
- (-5 *1 (-252 *4 *5)) (-4 *5 (-13 (-405 *4) (-928)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-277 *4)) (-4 *4 (-278))))
- ((*1 *2 *3) (-12 (-4 *1 (-278)) (-5 *3 (-110)) (-5 *2 (-108))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-4 *5 (-784)) (-5 *2 (-108))
- (-5 *1 (-404 *4 *5)) (-4 *4 (-405 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108))
- (-5 *1 (-406 *4 *5)) (-4 *5 (-405 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-110)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108))
- (-5 *1 (-575 *4 *5)) (-4 *5 (-13 (-405 *4) (-928) (-1106))))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-628 *2)) (-5 *4 (-708))
- (-4 *2 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $)))))
- (-4 *5 (-1142 *2)) (-5 *1 (-469 *2 *5 *6)) (-4 *6 (-384 *2 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
- (-4 *3 (-13 (-338) (-1106) (-928))))))
-(((*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1068)) (-5 *1 (-281)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-699))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
- (-4 *3 (-13 (-338) (-1106) (-928))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-166)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *2 (-784)) (-4 *5 (-985 *3 *4 *2)))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-514)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
(-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120))
- (-5 *2 (-588 *3)))))
-(((*1 *2)
- (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-392 *3)))))
-(((*1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-1014))
- (-4 *2 (-13 (-405 *4) (-815 *3) (-563 (-821 *3))))
- (-5 *1 (-993 *3 *4 *2))
- (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3))))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1014)) (-5 *1 (-1075 *3 *2)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-588 (-382 *7)))
- (-4 *7 (-1142 *6)) (-5 *3 (-382 *7)) (-4 *6 (-338))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-532 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
- (-5 *1 (-412)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-108) *6 *6)) (-4 *6 (-784)) (-5 *4 (-588 *6))
- (-5 *2 (-2 (|:| |fs| (-108)) (|:| |sd| *4) (|:| |td| (-588 *4))))
- (-5 *1 (-1092 *6)) (-5 *5 (-588 *4)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
- (-5 *2
- (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522))
- (|:| |success| (-108))))
- (-5 *1 (-726)) (-5 *5 (-522)))))
-(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
- (|partial| -12 (-5 *5 (-1085))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-588 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -1856 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1106) (-27) (-405 *8)))
- (-4 *8 (-13 (-426) (-784) (-135) (-962 *3) (-584 *3)))
- (-5 *3 (-522)) (-5 *2 (-588 *4)) (-5 *1 (-940 *8 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792))))
+ ((*1 *1 *1) (-5 *1 (-792)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-1012 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
+(((*1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-766)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1014)) (-4 *5 (-1014))
- (-5 *2 (-1 *5)) (-5 *1 (-622 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))))
-(((*1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-1014))
- (-4 *2 (-13 (-405 *4) (-815 *3) (-563 (-821 *3))))
- (-5 *1 (-993 *3 *4 *2))
- (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3))))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1014)) (-5 *1 (-1075 *2 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784))
- (-5 *2 (-2 (|:| -2977 *1) (|:| |gap| (-708)) (|:| -3421 *1)))
- (-4 *1 (-985 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *2 (-2 (|:| -2977 *1) (|:| |gap| (-708)) (|:| -3421 *1)))
- (-4 *1 (-985 *3 *4 *5)))))
+ (-12 (-4 *5 (-1014)) (-4 *3 (-829 *5)) (-5 *2 (-1166 *3))
+ (-5 *1 (-630 *5 *3 *6 *4)) (-4 *6 (-348 *3))
+ (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))))
+(((*1 *1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *3 (-588 (-522)))
+ (-5 *1 (-812)))))
+(((*1 *1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-239))))
+ ((*1 *1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-239)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-777 (-354))) (-5 *2 (-777 (-202))) (-5 *1 (-281)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1014))
- (-4 *6 (-1014)) (-4 *2 (-1014)) (-5 *1 (-620 *5 *6 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1081 *5)) (-4 *5 (-338)) (-5 *2 (-588 *6))
- (-5 *1 (-495 *5 *6 *4)) (-4 *6 (-338)) (-4 *4 (-13 (-338) (-782))))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-685)))))
+ (|partial| -12 (-5 *5 (-588 *4)) (-4 *4 (-338)) (-5 *2 (-1166 *4))
+ (-5 *1 (-751 *4 *3)) (-4 *3 (-598 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-522)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-393 *4)) (-4 *4 (-514)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-850)) (-5 *1 (-955 *2))
+ (-4 *2 (-13 (-1014) (-10 -8 (-15 -1661 ($ $ $))))))))
+(((*1 *1 *1) (-5 *1 (-983))))
+(((*1 *2 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-519)) (-5 *3 (-522))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-871)) (-5 *3 (-522)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 (-794 *5))) (-14 *5 (-588 (-1085))) (-4 *6 (-426))
- (-5 *2
- (-2 (|:| |dpolys| (-588 (-224 *5 *6)))
- (|:| |coords| (-588 (-522)))))
- (-5 *1 (-445 *5 *6 *7)) (-5 *3 (-588 (-224 *5 *6))) (-4 *7 (-426)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
- (-5 *1 (-160 *3)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-690)))))
-(((*1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+ (-12 (-5 *3 (-588 (-777 (-202)))) (-5 *4 (-202)) (-5 *2 (-588 *4))
+ (-5 *1 (-243)))))
+(((*1 *1 *2 *3 *3 *4 *4)
+ (-12 (-5 *2 (-881 (-522))) (-5 *3 (-1085))
+ (-5 *4 (-1009 (-382 (-522)))) (-5 *1 (-30)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1157 *4)) (-5 *1 (-1159 *4 *2))
- (-4 *4 (-37 (-382 (-522)))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-588 (-454 *5 *6))) (-5 *4 (-794 *5))
- (-14 *5 (-588 (-1085))) (-5 *2 (-454 *5 *6)) (-5 *1 (-576 *5 *6))
- (-4 *6 (-426))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-454 *5 *6))) (-5 *4 (-794 *5))
- (-14 *5 (-588 (-1085))) (-5 *2 (-454 *5 *6)) (-5 *1 (-576 *5 *6))
- (-4 *6 (-426)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-283)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
- (-5 *1 (-1036 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-202)) (-5 *1 (-281)))))
-(((*1 *2)
- (-12 (-5 *2 (-628 (-839 *3))) (-5 *1 (-326 *3 *4)) (-14 *3 (-850))
- (-14 *4 (-850))))
- ((*1 *2)
- (-12 (-5 *2 (-628 *3)) (-5 *1 (-327 *3 *4)) (-4 *3 (-324))
- (-14 *4
- (-3 (-1081 *3)
- (-1166 (-588 (-2 (|:| -3435 *3) (|:| -2717 (-1032)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-628 *3)) (-5 *1 (-328 *3 *4)) (-4 *3 (-324))
- (-14 *4 (-850)))))
-(((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
-(((*1 *1) (-12 (-4 *1 (-439 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23))))
- ((*1 *1) (-5 *1 (-498))) ((*1 *1) (-4 *1 (-660)))
- ((*1 *1) (-4 *1 (-664)))
- ((*1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014))))
- ((*1 *1) (-12 (-5 *1 (-822 *2)) (-4 *2 (-784)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730))
- (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
-(((*1 *2 *3 *2 *2)
- (-12 (-5 *2 (-588 (-454 *4 *5))) (-5 *3 (-794 *4))
- (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *1 (-576 *4 *5)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-1090))) (-5 *1 (-1090))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-1090))) (-5 *1 (-1090)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-561 *3)) (-4 *3 (-13 (-405 *5) (-27) (-1106)))
- (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2 (-539 *3)) (-5 *1 (-524 *5 *3 *6)) (-4 *6 (-1014)))))
-(((*1 *2)
- (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-1014)))))
-(((*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-126)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-838)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-393 (-1081 *7)))
- (-5 *1 (-835 *4 *5 *6 *7)) (-5 *3 (-1081 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-838)) (-4 *5 (-1142 *4)) (-5 *2 (-393 (-1081 *5)))
- (-5 *1 (-836 *4 *5)) (-5 *3 (-1081 *5)))))
+ (-12 (-5 *4 (-588 (-588 *8))) (-5 *3 (-588 *8))
+ (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-108)) (-5 *1 (-904 *5 *6 *7 *8)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-199 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-4 *1 (-230 *3))))
+ ((*1 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1085)) (-5 *2 (-1 *6 *5)) (-5 *1 (-645 *4 *5 *6))
- (-4 *4 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1157 *4)) (-5 *1 (-1159 *4 *2))
- (-4 *4 (-37 (-382 (-522)))))))
-(((*1 *1) (-4 *1 (-23)))
- ((*1 *1) (-12 (-4 *1 (-444 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23))))
- ((*1 *1) (-5 *1 (-498)))
- ((*1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1016 (-1016 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-536)))))
+ (-12 (-5 *3 (-588 *4)) (-4 *4 (-1014)) (-5 *2 (-1171))
+ (-5 *1 (-1121 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *4)) (-4 *4 (-1014)) (-5 *2 (-1171))
+ (-5 *1 (-1121 *4)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
+ (-5 *2 (-960)) (-5 *1 (-690)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-588 *6)) (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
+ (-4 *3 (-514)))))
(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812))
- (-5 *3 (-588 (-522)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812))
- (-5 *3 (-588 (-522))))))
-(((*1 *2)
- (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-392 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+ (-12 (-4 *4 (-426)) (-4 *3 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
+ (-5 *1 (-423 *4 *3 *5 *6)) (-4 *6 (-878 *4 *3 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *1 (-724)) (-5 *2 (-960))
+ (-5 *3
+ (-2 (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))))
+ ((*1 *2 *3 *2)
+ (-12 (-4 *1 (-724)) (-5 *2 (-960))
+ (-5 *3
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202)))))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-72 FCN)))) (-5 *2 (-960))
+ (-5 *1 (-684)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1166 (-1166 (-522)))) (-5 *3 (-850)) (-5 *1 (-440)))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-708)) (-4 *5 (-338)) (-5 *2 (-382 *6))
+ (-5 *1 (-796 *5 *4 *6)) (-4 *4 (-1157 *5)) (-4 *6 (-1142 *5))))
+ ((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-708)) (-5 *4 (-1158 *5 *6 *7)) (-4 *5 (-338))
+ (-14 *6 (-1085)) (-14 *7 *5) (-5 *2 (-382 (-1139 *6 *5)))
+ (-5 *1 (-797 *5 *6 *7))))
+ ((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-708)) (-5 *4 (-1158 *5 *6 *7)) (-4 *5 (-338))
+ (-14 *6 (-1085)) (-14 *7 *5) (-5 *2 (-382 (-1139 *6 *5)))
+ (-5 *1 (-797 *5 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))))
+(((*1 *1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1 *1) (-4 *1 (-119)))
+ ((*1 *1 *1 *1) (-5 *1 (-1032))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1081 *7)) (-4 *5 (-971))
- (-4 *7 (-971)) (-4 *2 (-1142 *5)) (-5 *1 (-471 *5 *2 *6 *7))
- (-4 *6 (-1142 *2))))
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730))
+ (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-588 *3))
+ (-5 *1 (-544 *5 *6 *7 *8 *3)) (-4 *3 (-1023 *5 *6 *7 *8))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-971)) (-4 *7 (-971))
- (-4 *4 (-1142 *5)) (-5 *2 (-1081 *7)) (-5 *1 (-471 *5 *4 *6 *7))
- (-4 *6 (-1142 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157))))
- ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1012 *3)) (-4 *3 (-1014)) (-5 *2 (-108)))))
-(((*1 *2 *3) (-12 (-5 *3 (-758)) (-5 *2 (-51)) (-5 *1 (-768)))))
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135)))
+ (-5 *2
+ (-588 (-2 (|:| -3769 (-1081 *5)) (|:| -3510 (-588 (-881 *5))))))
+ (-5 *1 (-995 *5 *6)) (-5 *3 (-588 (-881 *5)))
+ (-14 *6 (-588 (-1085)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-283) (-135)))
+ (-5 *2
+ (-588 (-2 (|:| -3769 (-1081 *4)) (|:| -3510 (-588 (-881 *4))))))
+ (-5 *1 (-995 *4 *5)) (-5 *3 (-588 (-881 *4)))
+ (-14 *5 (-588 (-1085)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135)))
+ (-5 *2
+ (-588 (-2 (|:| -3769 (-1081 *5)) (|:| -3510 (-588 (-881 *5))))))
+ (-5 *1 (-995 *5 *6)) (-5 *3 (-588 (-881 *5)))
+ (-14 *6 (-588 (-1085))))))
+(((*1 *2 *1) (-12 (-4 *1 (-379)) (-5 *2 (-522))))
+ ((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-637)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-474 *3 *4 *5 *2)) (-4 *2 (-878 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784))
+ (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-708)) (-4 *4 (-283)) (-4 *6 (-1142 *4))
+ (-5 *2 (-1166 (-588 *6))) (-5 *1 (-429 *4 *6)) (-5 *5 (-588 *6)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-14 *4 (-588 (-1085))) (-4 *2 (-157))
+ (-4 *3 (-215 (-3591 *4) (-708)))
+ (-14 *6
+ (-1 (-108) (-2 (|:| -2882 *5) (|:| -3858 *3))
+ (-2 (|:| -2882 *5) (|:| -3858 *3))))
+ (-5 *1 (-435 *4 *2 *5 *3 *6 *7)) (-4 *5 (-784))
+ (-4 *7 (-878 *2 *3 (-794 *4))))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202)))
+ (-5 *2 (-960)) (-5 *1 (-685)))))
(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))))
-(((*1 *2 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-628 *4)) (-5 *3 (-708)) (-4 *4 (-971))
- (-5 *1 (-629 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))))
-(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-419 *3)) (-4 *3 (-971)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-338)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
- (-5 *1 (-489 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-1081 (-881 *4))) (-5 *1 (-391 *3 *4))
- (-4 *3 (-392 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-4 *3 (-338))
- (-5 *2 (-1081 (-881 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4))
- (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-426)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-971)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3266 *4))))
- (-4 *3 (-1014)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-591 *3 *4 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-126)))))
-(((*1 *1 *1) (-4 *1 (-574)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928) (-1106))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-354)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
- ((*1 *1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-239)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-1 (-202) (-202) (-202)))
- (-5 *4 (-1 (-202) (-202) (-202) (-202)))
- (-5 *2 (-1 (-872 (-202)) (-202) (-202))) (-5 *1 (-635)))))
-(((*1 *2 *3 *2)
- (|partial| -12 (-5 *3 (-850)) (-5 *1 (-416 *2))
- (-4 *2 (-1142 (-522)))))
- ((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-850)) (-5 *4 (-708)) (-5 *1 (-416 *2))
- (-4 *2 (-1142 (-522)))))
- ((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-850)) (-5 *4 (-588 (-708))) (-5 *1 (-416 *2))
- (-4 *2 (-1142 (-522)))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *3 (-850)) (-5 *4 (-588 (-708))) (-5 *5 (-708))
- (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522)))))
- ((*1 *2 *3 *2 *4 *5 *6)
- (|partial| -12 (-5 *3 (-850)) (-5 *4 (-588 (-708))) (-5 *5 (-708))
- (-5 *6 (-108)) (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522)))))
+ (|partial| -12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-1136 *3 *2))
+ (-4 *2 (-1142 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-283)) (-5 *1 (-163 *3)))))
+(((*1 *1 *1 *1) (-4 *1 (-895))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-393 *2)) (-4 *2 (-283)) (-5 *1 (-843 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085))
+ (-4 *5 (-13 (-283) (-135))) (-5 *2 (-51)) (-5 *1 (-844 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-393 (-881 *6))) (-5 *5 (-1085)) (-5 *3 (-881 *6))
+ (-4 *6 (-13 (-283) (-135))) (-5 *2 (-51)) (-5 *1 (-844 *6)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
+ (-12 (-5 *4 (-522)) (-5 *5 (-1068)) (-5 *6 (-628 (-202)))
+ (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))))
+ (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))
+ (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))))
+(((*1 *1 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-3 (-382 (-881 *6)) (-1075 (-1085) (-881 *6))))
+ (-5 *5 (-708)) (-4 *6 (-426)) (-5 *2 (-588 (-628 (-382 (-881 *6)))))
+ (-5 *1 (-268 *6)) (-5 *4 (-628 (-382 (-881 *6))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-850)) (-5 *4 (-393 *2)) (-4 *2 (-1142 *5))
- (-5 *1 (-418 *5 *2)) (-4 *5 (-971)))))
-(((*1 *1 *1) (-4 *1 (-1054))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
- (-5 *2 (-108)))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-348 *2)) (-4 *2 (-1120))
- (-4 *2 (-784))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3 *3)) (|has| *1 (-6 -4239))
- (-4 *1 (-348 *3)) (-4 *3 (-1120)))))
-(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
- (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
- (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
- (|:| |abserr| (-202)) (|:| |relerr| (-202))))
- (-5 *2 (-354)) (-5 *1 (-184)))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1068)) (-5 *4 (-154 (-202))) (-5 *5 (-522))
- (-5 *2 (-960)) (-5 *1 (-696)))))
+ (-2 (|:| |eigval| (-3 (-382 (-881 *5)) (-1075 (-1085) (-881 *5))))
+ (|:| |eigmult| (-708)) (|:| |eigvec| (-588 *4))))
+ (-4 *5 (-426)) (-5 *2 (-588 (-628 (-382 (-881 *5)))))
+ (-5 *1 (-268 *5)) (-5 *4 (-628 (-382 (-881 *5)))))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 (-522)))
+ (-5 *2 (-1166 (-382 (-522)))) (-5 *1 (-1191 *4)))))
(((*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168))))
((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))))
-(((*1 *1 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)) (-4 *2 (-514))))
- ((*1 *1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))))
-(((*1 *2)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-766)) (-5 *3 (-1068)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1014)) (-4 *4 (-1014))
- (-4 *6 (-1014)) (-5 *2 (-1 *6 *5)) (-5 *1 (-623 *5 *4 *6)))))
+ (-12 (-5 *3 (-708)) (-5 *2 (-1 (-1066 (-881 *4)) (-1066 (-881 *4))))
+ (-5 *1 (-1174 *4)) (-4 *4 (-338)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1157 *4))
- (-4 *4 (-37 (-382 (-522)))) (-5 *2 (-1 (-1066 *4) (-1066 *4)))
- (-5 *1 (-1159 *4 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088))))
- ((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1089)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 (-872 *3))) (-4 *3 (-971)) (-4 *1 (-1046 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 (-588 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 (-872 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))))
-(((*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-708)) (-4 *5 (-324)) (-4 *6 (-1142 *5))
- (-5 *2
- (-588
- (-2 (|:| -3855 (-628 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-628 *6)))))
- (-5 *1 (-468 *5 *6 *7))
- (-5 *3
- (-2 (|:| -3855 (-628 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-628 *6))))
- (-4 *7 (-1142 *6)))))
+ (-12 (-4 *2 (-338)) (-4 *2 (-782)) (-5 *1 (-874 *2 *3))
+ (-4 *3 (-1142 *2)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4238)) (-4 *1 (-555 *4 *3)) (-4 *4 (-1014))
+ (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-108)))))
+(((*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-382 (-522))) (-5 *1 (-281)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-221 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-983)) (-5 *3 (-1068)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1014))
+ (-4 *6 (-1014)) (-5 *2 (-1 *6 *5)) (-5 *1 (-623 *4 *5 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1081 *6)) (-4 *6 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *2 (-1081 *7)) (-5 *1 (-296 *4 *5 *6 *7))
- (-4 *7 (-878 *6 *4 *5)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-613 *3)) (-4 *3 (-784))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-617 *3)) (-4 *3 (-784))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-756 *3)) (-4 *3 (-784)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-758)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1102)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-1009 *3)) (-4 *3 (-878 *7 *6 *4)) (-4 *6 (-730))
- (-4 *4 (-784)) (-4 *7 (-514))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-522))))
- (-5 *1 (-546 *6 *4 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-514))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-522))))
- (-5 *1 (-546 *5 *4 *6 *3)) (-4 *3 (-878 *6 *5 *4))))
- ((*1 *1 *1 *1 *1) (-5 *1 (-792))) ((*1 *1 *1 *1) (-5 *1 (-792)))
- ((*1 *1 *1) (-5 *1 (-792)))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085))
- (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-1077 *4 *2)) (-4 *2 (-13 (-405 *4) (-146) (-27) (-1106)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1007 *2)) (-4 *2 (-13 (-405 *4) (-146) (-27) (-1106)))
- (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-1077 *4 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-784) (-962 (-522))))
- (-5 *2 (-382 (-881 *5))) (-5 *1 (-1078 *5)) (-5 *3 (-881 *5))))
+ (-12 (-5 *2 (-393 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1142 (-47)))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *2 (-2 (|:| |less| (-117 *3)) (|:| |greater| (-117 *3))))
+ (-5 *1 (-117 *3)) (-4 *3 (-784))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-539 *4)) (-4 *4 (-13 (-29 *3) (-1106)))
+ (-4 *3 (-13 (-426) (-962 (-522)) (-784) (-584 (-522))))
+ (-5 *1 (-537 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-539 (-382 (-881 *3))))
+ (-4 *3 (-13 (-426) (-962 (-522)) (-784) (-584 (-522))))
+ (-5 *1 (-542 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-784) (-962 (-522))))
- (-5 *2 (-3 (-382 (-881 *5)) (-291 *5))) (-5 *1 (-1078 *5))
- (-5 *3 (-382 (-881 *5)))))
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-338))
+ (-5 *2 (-2 (|:| -3798 *3) (|:| |special| *3))) (-5 *1 (-665 *5 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1007 (-881 *5))) (-5 *3 (-881 *5))
- (-4 *5 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-382 *3))
- (-5 *1 (-1078 *5))))
+ (-12 (-5 *4 (-1166 *5)) (-4 *5 (-338)) (-4 *5 (-971))
+ (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5))
+ (-5 *3 (-588 (-628 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1007 (-382 (-881 *5)))) (-5 *3 (-382 (-881 *5)))
- (-4 *5 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-3 *3 (-291 *5)))
- (-5 *1 (-1078 *5)))))
-(((*1 *1 *1) (-12 (-5 *1 (-470 *2)) (-14 *2 (-522))))
- ((*1 *1 *1) (-5 *1 (-1032))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068))
- (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
- (-5 *2 (-960)) (-5 *1 (-690)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-291 (-202))))
- (-5 *2
- (-2 (|:| |additions| (-522)) (|:| |multiplications| (-522))
- (|:| |exponentiations| (-522)) (|:| |functionCalls| (-522))))
- (-5 *1 (-281)))))
+ (-12 (-5 *4 (-1166 (-1166 *5))) (-4 *5 (-338)) (-4 *5 (-971))
+ (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5))
+ (-5 *3 (-588 (-628 *5)))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-129)) (-5 *2 (-588 *1)) (-4 *1 (-1054))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-132)) (-5 *2 (-588 *1)) (-4 *1 (-1054)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1032)) (-4 *4 (-324))
+ (-5 *1 (-492 *4)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-514)) (-4 *4 (-919 *3)) (-5 *1 (-130 *3 *4 *2))
- (-4 *2 (-348 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-919 *4)) (-4 *2 (-348 *4))
- (-5 *1 (-473 *4 *5 *2 *3)) (-4 *3 (-348 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-628 *5)) (-4 *5 (-919 *4)) (-4 *4 (-514))
- (-5 *2 (-628 *4)) (-5 *1 (-631 *4 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-514)) (-4 *4 (-919 *3)) (-5 *1 (-1135 *3 *4 *2))
- (-4 *2 (-1142 *4)))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-856)))))
-(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441))))
- ((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441))))
- ((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
-(((*1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1) (-4 *1 (-119)))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-220)) (-5 *2 (-522))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-447)) (-5 *2 (-522))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-664)) (-5 *2 (-708))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1026)) (-5 *2 (-850)))))
-(((*1 *1 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120))))
- ((*1 *1 *1)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-348 *2)) (-4 *2 (-1120))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-132))))
- ((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-132)))))
-(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1068)) (-5 *3 (-711)) (-5 *1 (-110)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-470 *2)) (-14 *2 (-522))))
- ((*1 *1 *1 *1) (-5 *1 (-1032))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-514)) (-4 *3 (-157))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -3855 (-588 *1))))
- (-4 *1 (-342 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-427 *3 *4 *5 *6))
- (|:| -3855 (-588 (-427 *3 *4 *5 *6)))))
- (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784))
- (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))))
-(((*1 *1) (-5 *1 (-412))))
-(((*1 *2 *1) (-12 (-5 *1 (-894 *2)) (-4 *2 (-895)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-690)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-501 *4 *2 *5 *6))
- (-4 *4 (-283)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-708))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
- (-4 *3 (-985 *6 *7 *8))
+ (-12
(-5 *2
- (-2 (|:| |done| (-588 *4))
- (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))))
- (-5 *1 (-988 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3))))
+ (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202)))
+ (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202))))
+ (|:| |ub| (-588 (-777 (-202))))))
+ (-5 *1 (-243)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-110)) (-5 *1 (-109 *3)) (-4 *3 (-784)) (-4 *3 (-1014)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730))
+ (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-988 *5 *6 *7 *8 *9))))
((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730))
+ (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *3 *4)
(-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-588 *4))
- (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))))
- (-5 *1 (-988 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
- (-4 *3 (-985 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-588 *4))
- (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))))
- (-5 *1 (-1055 *6 *7 *8 *3 *4)) (-4 *4 (-1023 *6 *7 *8 *3))))
+ (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-991 *5 *6 *7 *3 *4))
+ (-4 *4 (-990 *5 *6 *7 *3))))
((*1 *2 *3 *4)
(-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
(-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1974 *4))))
+ (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *2 *2)
+ (-12
(-5 *2
- (-2 (|:| |done| (-588 *4))
- (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))))
- (-5 *1 (-1055 *5 *6 *7 *3 *4)) (-4 *4 (-1023 *5 *6 *7 *3)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-470 *2)) (-14 *2 (-522))))
- ((*1 *1 *1 *1) (-5 *1 (-1032))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-588 (-522))) (-5 *3 (-108)) (-5 *1 (-1024)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-310 *3 *4 *5 *6)) (-4 *3 (-338)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5))
- (-5 *2
- (-2 (|:| -1781 (-388 *4 (-382 *4) *5 *6)) (|:| |principalPart| *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338))
- (-5 *2
- (-2 (|:| |poly| *6) (|:| -3663 (-382 *6))
- (|:| |special| (-382 *6))))
- (-5 *1 (-665 *5 *6)) (-5 *3 (-382 *6))))
+ (-588
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-708)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-730)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426)) (-4 *5 (-784))
+ (-5 *1 (-423 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5 *6 *7 *6)
+ (|partial| -12
+ (-5 *5
+ (-2 (|:| |contp| *3)
+ (|:| -4045 (-588 (-2 (|:| |irr| *10) (|:| -4160 (-522)))))))
+ (-5 *6 (-588 *3)) (-5 *7 (-588 *8)) (-4 *8 (-784)) (-4 *3 (-283))
+ (-4 *10 (-878 *3 *9 *8)) (-4 *9 (-730))
+ (-5 *2
+ (-2 (|:| |polfac| (-588 *10)) (|:| |correct| *3)
+ (|:| |corrfact| (-588 (-1081 *3)))))
+ (-5 *1 (-571 *8 *9 *3 *10)) (-5 *4 (-588 (-1081 *3))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-628 *5))) (-5 *4 (-522)) (-4 *5 (-338))
+ (-4 *5 (-971)) (-5 *2 (-108)) (-5 *1 (-954 *5))))
((*1 *2 *3)
- (-12 (-4 *4 (-338)) (-5 *2 (-588 *3)) (-5 *1 (-825 *3 *4))
- (-4 *3 (-1142 *4))))
- ((*1 *2 *3 *4 *4)
- (|partial| -12 (-5 *4 (-708)) (-4 *5 (-338))
- (-5 *2 (-2 (|:| -1913 *3) (|:| -1924 *3))) (-5 *1 (-825 *3 *5))
- (-4 *3 (-1142 *5))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108))
- (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426))
- (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-988 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108))
- (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426))
- (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-988 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108))
- (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426))
- (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1055 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108))
- (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426))
- (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))))
+ (-12 (-5 *3 (-588 (-628 *4))) (-4 *4 (-338)) (-4 *4 (-971))
+ (-5 *2 (-108)) (-5 *1 (-954 *4)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-708)) (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-393 (-1081 *1))) (-5 *1 (-291 *4)) (-5 *3 (-1081 *1))
- (-4 *4 (-426)) (-4 *4 (-514)) (-4 *4 (-784))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-838)) (-5 *2 (-393 (-1081 *1))) (-5 *3 (-1081 *1)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-689)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522)))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-819 *4 *3))
+ (-4 *3 (-1120))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-51)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)) (-4 *2 (-338))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-338)) (-5 *1 (-601 *4 *2))
+ (-4 *2 (-598 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-1081 *4)) (-5 *1 (-492 *4))
+ (-4 *4 (-324)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))))
+(((*1 *2)
+ (-12
+ (-5 *2
+ (-1166 (-588 (-2 (|:| -3526 (-839 *3)) (|:| -2882 (-1032))))))
+ (-5 *1 (-326 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1166 (-588 (-2 (|:| -3526 *3) (|:| -2882 (-1032))))))
+ (-5 *1 (-327 *3 *4)) (-4 *3 (-324)) (-14 *4 (-3 (-1081 *3) *2))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1166 (-588 (-2 (|:| -3526 *3) (|:| -2882 (-1032))))))
+ (-5 *1 (-328 *3 *4)) (-4 *3 (-324)) (-14 *4 (-850)))))
+(((*1 *1 *1 *1) (-4 *1 (-278))) ((*1 *1 *1) (-4 *1 (-278))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971))
- (-5 *2 (-588 (-588 (-588 (-708))))))))
-(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-723)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-4 *1 (-55 *4 *5 *2)) (-4 *4 (-1120))
- (-4 *5 (-348 *4)) (-4 *2 (-348 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *6 *7 *2)) (-4 *6 (-971))
- (-4 *7 (-215 *5 *6)) (-4 *2 (-215 *4 *6)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-522)) (|has| *1 (-6 -4239)) (-4 *1 (-1154 *3))
- (-4 *3 (-1120)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-499 *3 *2))
- (-4 *2 (-1157 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-4 *4 (-1142 *3))
- (-4 *5 (-662 *3 *4)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-1157 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-5 *1 (-504 *3 *2))
- (-4 *2 (-1157 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-13 (-514) (-135)))
- (-5 *1 (-1062 *3)))))
+ (-12 (-5 *2 (-588 (-2 (|:| |k| (-1085)) (|:| |c| (-1186 *3)))))
+ (-5 *1 (-1186 *3)) (-4 *3 (-971))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-2 (|:| |k| *3) (|:| |c| (-1188 *3 *4)))))
+ (-5 *1 (-1188 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1014))
+ (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3))))
+ (-5 *2 (-588 (-1085))) (-5 *1 (-993 *3 *4 *5))
+ (-4 *5 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))))))
(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
(-12 (-5 *4 (-522))
(-5 *6
- (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3621 (-354))))
+ (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3745 (-354))))
(-5 *7 (-1 (-1171) (-1166 *5) (-1166 *5) (-354)))
(-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171))
(-5 *1 (-725))))
((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
(-12 (-5 *4 (-522))
(-5 *6
- (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3621 (-354))))
+ (-2 (|:| |try| (-354)) (|:| |did| (-354)) (|:| -3745 (-354))))
(-5 *7 (-1 (-1171) (-1166 *5) (-1166 *5) (-354)))
(-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171))
(-5 *1 (-725)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1886 *4))))
- (-5 *1 (-713 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *1 *2 *2)
- (-12 (-5 *2 (-708)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5))
- (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-708)) (-4 *1 (-1164 *3)) (-4 *3 (-23)) (-4 *3 (-1120)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 *5)) (-4 *5 (-338))
- (-4 *5 (-514)) (-5 *2 (-1166 *5)) (-5 *1 (-583 *5 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 *5))
- (-2401 (-4 *5 (-338))) (-4 *5 (-514)) (-5 *2 (-1166 (-382 *5)))
- (-5 *1 (-583 *5 *4)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-507))))
-(((*1 *2 *1) (-12 (|has| *1 (-6 -4238)) (-4 *1 (-33)) (-5 *2 (-708))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-522))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-708)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-971))
- (-4 *4 (-780)))))
-(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-354)) (-5 *3 (-1068)) (-5 *1 (-92))))
- ((*1 *2 *3 *2) (-12 (-5 *2 (-354)) (-5 *3 (-1068)) (-5 *1 (-92)))))
-(((*1 *1 *1 *2 *2 *1)
- (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971))
- (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4))
- (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-871)) (-5 *3 (-522)))))
-(((*1 *1 *2) (-12 (-5 *1 (-1107 *2)) (-4 *2 (-1014))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-1107 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-588 (-1107 *2))) (-5 *1 (-1107 *2)) (-4 *2 (-1014)))))
-(((*1 *1) (-5 *1 (-412))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-339 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-5 *2 (-1068)))))
-(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
- (-5 *2 (-960)) (-5 *1 (-689)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1950 *4)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-832 *3)) (-4 *3 (-1014)) (-5 *2 (-1016 *3))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1014)) (-5 *2 (-1016 (-588 *4))) (-5 *1 (-833 *4))
- (-5 *3 (-588 *4))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1014)) (-5 *2 (-1016 (-1016 *4))) (-5 *1 (-833 *4))
- (-5 *3 (-1016 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *2 (-1016 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1081 *3)) (-5 *1 (-843 *3)) (-4 *3 (-283)))))
-(((*1 *2 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1068)) (-5 *3 (-522)) (-5 *1 (-983)))))
-(((*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-737))
- (-5 *3
- (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
- (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
- (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
- (|:| |abserr| (-202)) (|:| |relerr| (-202))))
- (-5 *2 (-960)))))
+ (-12 (-5 *2 (-2 (|:| -2541 *1) (|:| -4225 *1) (|:| |associate| *1)))
+ (-4 *1 (-514)))))
(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2259 (-719 *3)) (|:| |coef2| (-719 *3))))
- (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *2 (-2 (|:| -2259 *1) (|:| |coef2| *1)))
- (-4 *1 (-985 *3 *4 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
-(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-132)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -1856 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-338)) (-4 *7 (-1142 *6))
- (-5 *2
- (-3 (-2 (|:| |answer| (-382 *7)) (|:| |a0| *6))
- (-2 (|:| -1856 (-382 *7)) (|:| |coeff| (-382 *7))) "failed"))
- (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-89 *3)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-708)) (-4 *5 (-514))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-803))))
- ((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-881 (-154 *4))) (-4 *4 (-157))
- (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-881 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-157))
- (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 (-354)))
- (-5 *2 (-154 (-354))) (-5 *1 (-722 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971))
- (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514))
- (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514))
- (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-382 (-881 (-154 *4)))) (-4 *4 (-514))
- (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-382 (-881 (-154 *5)))) (-5 *4 (-850))
- (-4 *5 (-514)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354)))
- (-5 *1 (-722 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784))
- (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514))
- (-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354)))
- (-5 *1 (-722 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-291 (-154 *4))) (-4 *4 (-514)) (-4 *4 (-784))
- (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-291 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-514))
- (-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354)))
- (-5 *1 (-722 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
+ (-12 (-5 *2 (-2 (|:| -2908 *3) (|:| |coef1| (-719 *3))))
+ (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-588 (-628 (-522))))
- (-5 *1 (-1024)))))
-(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-354)) (-5 *1 (-964)))))
-(((*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-516 *3)) (-4 *3 (-507))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-5 *2 (-393 *3))
- (-5 *1 (-680 *4 *5 *6 *3)) (-4 *3 (-878 *6 *4 *5))))
+ (-12 (-5 *3 (-708)) (-5 *2 (-1 (-1066 (-881 *4)) (-1066 (-881 *4))))
+ (-5 *1 (-1174 *4)) (-4 *4 (-338)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1014))
+ (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3))))
+ (-5 *2 (-588 (-993 *3 *4 *5))) (-5 *1 (-994 *3 *4 *5))
+ (-4 *5 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))))))
+(((*1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971))))
((*1 *2 *3)
- (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283))
- (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-393 (-1081 *7)))
- (-5 *1 (-680 *4 *5 *6 *7)) (-5 *3 (-1081 *7))))
+ (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4))
+ (-4 *6 (-348 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
+ (-5 *1 (-627 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-157)) (-4 *2 (-971)) (-5 *1 (-652 *2 *3))
+ (-4 *3 (-590 *2))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-157)) (-4 *2 (-971)) (-5 *1 (-652 *2 *3))
+ (-4 *3 (-590 *2))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-771 *2)) (-4 *2 (-157)) (-4 *2 (-971))))
+ ((*1 *1 *1) (-12 (-5 *1 (-771 *2)) (-4 *2 (-157)) (-4 *2 (-971)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))))
+(((*1 *2 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-108))))
((*1 *2 *1)
- (-12 (-4 *3 (-426)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *2 (-393 *1)) (-4 *1 (-878 *3 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-784)) (-4 *5 (-730)) (-4 *6 (-426)) (-5 *2 (-393 *3))
- (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-878 *6 *5 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-426))
- (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-393 (-1081 (-382 *7))))
- (-5 *1 (-1080 *4 *5 *6 *7)) (-5 *3 (-1081 (-382 *7)))))
- ((*1 *2 *1) (-12 (-5 *2 (-393 *1)) (-4 *1 (-1124))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-393 *3)) (-5 *1 (-1145 *4 *3))
- (-4 *3 (-13 (-1142 *4) (-514) (-10 -8 (-15 -2259 ($ $ $)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947)))
- (-14 *5 (-588 (-1085)))
- (-5 *2
- (-588 (-1056 *4 (-494 (-794 *6)) (-794 *6) (-717 *4 (-794 *6)))))
- (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085))))))
-(((*1 *1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-239))))
- ((*1 *1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-239)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-983)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-628 *4)) (-5 *3 (-850)) (|has| *4 (-6 (-4240 "*")))
- (-4 *4 (-971)) (-5 *1 (-953 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-588 (-628 *4))) (-5 *3 (-850))
- (|has| *4 (-6 (-4240 "*"))) (-4 *4 (-971)) (-5 *1 (-953 *4)))))
-(((*1 *2 *1 *3 *3 *4)
- (-12 (-5 *3 (-1 (-792) (-792) (-792))) (-5 *4 (-522)) (-5 *2 (-792))
- (-5 *1 (-591 *5 *6 *7)) (-4 *5 (-1014)) (-4 *6 (-23)) (-14 *7 *6)))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-792)) (-5 *1 (-788 *3 *4 *5)) (-4 *3 (-971))
- (-14 *4 (-94 *3)) (-14 *5 (-1 *3 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-792))))
- ((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-792))))
- ((*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-792))))
- ((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-792)) (-5 *1 (-1081 *3)) (-4 *3 (-971)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-338)) (-5 *1 (-261 *3 *2)) (-4 *2 (-1157 *3)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-298 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-124))
- (-4 *3 (-729)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-37 (-382 (-522))))
- (-5 *2 (-2 (|:| -2748 (-1066 *4)) (|:| -2761 (-1066 *4))))
- (-5 *1 (-1072 *4)) (-5 *3 (-1066 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3))
- (-4 *3 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108))
- (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1120))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-1066 *2)) (-4 *2 (-1120)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
+ (-4 *4 (-971)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-4 *2 (-1014))
+ (-5 *1 (-818 *4 *2)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-588 *5) *6))
- (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *6 (-1142 *5))
- (-5 *2 (-588 (-2 (|:| -2677 *5) (|:| -3197 *3))))
- (-5 *1 (-746 *5 *6 *3 *7)) (-4 *3 (-598 *6))
- (-4 *7 (-598 (-382 *6))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2))
- (-4 *4 (-348 *2)))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441))))
- ((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))))
-(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-791))))
- ((*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-893))))
- ((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-916))))
- ((*1 *2 *1) (-12 (-4 *1 (-936 *2)) (-4 *2 (-1120))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-13 (-1014) (-33))) (-5 *1 (-1050 *2 *3))
- (-4 *3 (-13 (-1014) (-33))))))
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1974 *4))))
+ (-5 *1 (-713 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
+ (-5 *2 (-960)) (-5 *1 (-693)))))
(((*1 *2 *1)
- (-12
+ (-12 (-4 *2 (-1142 *3)) (-5 *1 (-374 *3 *2))
+ (-4 *3 (-13 (-338) (-135))))))
+(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
+ (-12 (-5 *3 (-522)) (-5 *5 (-108)) (-5 *6 (-628 (-202)))
+ (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN))))
+ (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-691)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $)))))
+ (-4 *4 (-1142 *3))
(-5 *2
- (-588
- (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 *3))
- (|:| |logand| (-1081 *3)))))
- (-5 *1 (-539 *3)) (-4 *3 (-338)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-1107 *3))) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))))
-(((*1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1169)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085))
- (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *5))))
- (-5 *1 (-1041 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-13 (-283) (-784) (-135)))
- (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1041 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-270 (-382 (-881 *5)))) (-5 *4 (-1085))
- (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *5))))
- (-5 *1 (-1041 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-270 (-382 (-881 *4))))
- (-4 *4 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *4))))
- (-5 *1 (-1041 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085)))
- (-4 *5 (-13 (-283) (-784) (-135)))
- (-5 *2 (-588 (-588 (-270 (-291 *5))))) (-5 *1 (-1041 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-382 (-881 *4))))
- (-4 *4 (-13 (-283) (-784) (-135)))
- (-5 *2 (-588 (-588 (-270 (-291 *4))))) (-5 *1 (-1041 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-270 (-382 (-881 *5))))) (-5 *4 (-588 (-1085)))
- (-4 *5 (-13 (-283) (-784) (-135)))
- (-5 *2 (-588 (-588 (-270 (-291 *5))))) (-5 *1 (-1041 *5))))
+ (-2 (|:| -2905 (-628 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-628 *3))))
+ (-5 *1 (-325 *3 *4 *5)) (-4 *5 (-384 *3 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-588 (-270 (-382 (-881 *4)))))
- (-4 *4 (-13 (-283) (-784) (-135)))
- (-5 *2 (-588 (-588 (-270 (-291 *4))))) (-5 *1 (-1041 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-251)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-514)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-324)) (-4 *4 (-304 *3)) (-4 *5 (-1142 *4))
- (-5 *1 (-714 *3 *4 *5 *2 *6)) (-4 *2 (-1142 *5)) (-14 *6 (-850))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-708)) (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-4 *3 (-343))))
- ((*1 *1 *1) (-12 (-4 *1 (-1183 *2)) (-4 *2 (-338)) (-4 *2 (-343)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-382 (-881 (-522)))))
- (-5 *2 (-588 (-588 (-270 (-881 *4))))) (-5 *1 (-355 *4))
- (-4 *4 (-13 (-782) (-338)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-270 (-382 (-881 (-522))))))
- (-5 *2 (-588 (-588 (-270 (-881 *4))))) (-5 *1 (-355 *4))
- (-4 *4 (-13 (-782) (-338)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-881 (-522)))) (-5 *2 (-588 (-270 (-881 *4))))
- (-5 *1 (-355 *4)) (-4 *4 (-13 (-782) (-338)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-270 (-382 (-881 (-522)))))
- (-5 *2 (-588 (-270 (-881 *4)))) (-5 *1 (-355 *4))
- (-4 *4 (-13 (-782) (-338)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1085))
- (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-4 *4 (-13 (-29 *6) (-1106) (-887)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -3855 (-588 *4))))
- (-5 *1 (-594 *6 *4 *3)) (-4 *3 (-598 *4))))
- ((*1 *2 *3 *2 *4 *2 *5)
- (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-588 *2))
- (-4 *2 (-13 (-29 *6) (-1106) (-887)))
- (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *1 (-594 *6 *2 *3)) (-4 *3 (-598 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 *5)) (-4 *5 (-338))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1166 *5) "failed"))
- (|:| -3855 (-588 (-1166 *5)))))
- (-5 *1 (-609 *5)) (-5 *4 (-1166 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-588 *5))) (-4 *5 (-338))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1166 *5) "failed"))
- (|:| -3855 (-588 (-1166 *5)))))
- (-5 *1 (-609 *5)) (-5 *4 (-1166 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 *5)) (-4 *5 (-338))
- (-5 *2
- (-588
- (-2 (|:| |particular| (-3 (-1166 *5) "failed"))
- (|:| -3855 (-588 (-1166 *5))))))
- (-5 *1 (-609 *5)) (-5 *4 (-588 (-1166 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-588 *5))) (-4 *5 (-338))
- (-5 *2
- (-588
- (-2 (|:| |particular| (-3 (-1166 *5) "failed"))
- (|:| -3855 (-588 (-1166 *5))))))
- (-5 *1 (-609 *5)) (-5 *4 (-588 (-1166 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239))))
- (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4239))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4))))
- (-5 *1 (-610 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239))))
- (-4 *7 (-13 (-348 *5) (-10 -7 (-6 -4239))))
+ (-12 (-5 *3 (-522)) (-4 *4 (-1142 *3))
(-5 *2
- (-588
- (-2 (|:| |particular| (-3 *7 "failed")) (|:| -3855 (-588 *7)))))
- (-5 *1 (-610 *5 *6 *7 *3)) (-5 *4 (-588 *7))
- (-4 *3 (-626 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-588 (-1085))) (-4 *5 (-514))
- (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-707 *5))))
+ (-2 (|:| -2905 (-628 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-628 *3))))
+ (-5 *1 (-705 *4 *5)) (-4 *5 (-384 *3 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-514))
- (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-707 *4))))
- ((*1 *2 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-110)) (-5 *4 (-1085))
- (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *1 (-709 *5 *2)) (-4 *2 (-13 (-29 *5) (-1106) (-887)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-628 *7)) (-5 *5 (-1085))
- (-4 *7 (-13 (-29 *6) (-1106) (-887)))
- (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *2
- (-2 (|:| |particular| (-1166 *7)) (|:| -3855 (-588 (-1166 *7)))))
- (-5 *1 (-739 *6 *7)) (-5 *4 (-1166 *7))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-628 *6)) (-5 *4 (-1085))
- (-4 *6 (-13 (-29 *5) (-1106) (-887)))
- (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *2 (-588 (-1166 *6))) (-5 *1 (-739 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-588 (-270 *7))) (-5 *4 (-588 (-110)))
- (-5 *5 (-1085)) (-4 *7 (-13 (-29 *6) (-1106) (-887)))
- (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *2
- (-2 (|:| |particular| (-1166 *7)) (|:| -3855 (-588 (-1166 *7)))))
- (-5 *1 (-739 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-588 *7)) (-5 *4 (-588 (-110)))
- (-5 *5 (-1085)) (-4 *7 (-13 (-29 *6) (-1106) (-887)))
- (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *2
- (-2 (|:| |particular| (-1166 *7)) (|:| -3855 (-588 (-1166 *7)))))
- (-5 *1 (-739 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-270 *7)) (-5 *4 (-110)) (-5 *5 (-1085))
- (-4 *7 (-13 (-29 *6) (-1106) (-887)))
- (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *2
- (-3 (-2 (|:| |particular| *7) (|:| -3855 (-588 *7))) *7 "failed"))
- (-5 *1 (-739 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-110)) (-5 *5 (-1085))
- (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-12 (-4 *4 (-324)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 *3))
(-5 *2
- (-3 (-2 (|:| |particular| *3) (|:| -3855 (-588 *3))) *3 "failed"))
- (-5 *1 (-739 *6 *3)) (-4 *3 (-13 (-29 *6) (-1106) (-887)))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-270 *2)) (-5 *4 (-110)) (-5 *5 (-588 *2))
- (-4 *2 (-13 (-29 *6) (-1106) (-887))) (-5 *1 (-739 *6 *2))
- (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))))
- ((*1 *2 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-110)) (-5 *4 (-270 *2)) (-5 *5 (-588 *2))
- (-4 *2 (-13 (-29 *6) (-1106) (-887)))
- (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *1 (-739 *6 *2))))
- ((*1 *2 *3) (-12 (-5 *3 (-745)) (-5 *2 (-960)) (-5 *1 (-742))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-745)) (-5 *4 (-983)) (-5 *2 (-960)) (-5 *1 (-742))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1166 (-291 (-354)))) (-5 *4 (-354)) (-5 *5 (-588 *4))
- (-5 *2 (-960)) (-5 *1 (-742))))
- ((*1 *2 *3 *4 *4 *5 *4)
- (-12 (-5 *3 (-1166 (-291 (-354)))) (-5 *4 (-354)) (-5 *5 (-588 *4))
- (-5 *2 (-960)) (-5 *1 (-742))))
- ((*1 *2 *3 *4 *4 *5 *6 *4)
- (-12 (-5 *3 (-1166 (-291 *4))) (-5 *5 (-588 (-354)))
- (-5 *6 (-291 (-354))) (-5 *4 (-354)) (-5 *2 (-960)) (-5 *1 (-742))))
- ((*1 *2 *3 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1166 (-291 (-354)))) (-5 *4 (-354)) (-5 *5 (-588 *4))
- (-5 *2 (-960)) (-5 *1 (-742))))
- ((*1 *2 *3 *4 *4 *5 *6 *5 *4)
- (-12 (-5 *3 (-1166 (-291 *4))) (-5 *5 (-588 (-354)))
- (-5 *6 (-291 (-354))) (-5 *4 (-354)) (-5 *2 (-960)) (-5 *1 (-742))))
- ((*1 *2 *3 *4 *4 *5 *6 *5 *4 *4)
- (-12 (-5 *3 (-1166 (-291 *4))) (-5 *5 (-588 (-354)))
- (-5 *6 (-291 (-354))) (-5 *4 (-354)) (-5 *2 (-960)) (-5 *1 (-742))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12
- (-5 *5
- (-1
- (-3 (-2 (|:| |particular| *6) (|:| -3855 (-588 *6))) "failed")
- *7 *6))
- (-4 *6 (-338)) (-4 *7 (-598 *6))
- (-5 *2 (-2 (|:| |particular| (-1166 *6)) (|:| -3855 (-628 *6))))
- (-5 *1 (-750 *6 *7)) (-5 *3 (-628 *6)) (-5 *4 (-1166 *6))))
- ((*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-960)) (-5 *1 (-826))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-827)) (-5 *4 (-983)) (-5 *2 (-960)) (-5 *1 (-826))))
- ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8)
- (-12 (-5 *4 (-708)) (-5 *6 (-588 (-588 (-291 *3)))) (-5 *7 (-1068))
- (-5 *8 (-202)) (-5 *5 (-588 (-291 (-354)))) (-5 *3 (-354))
- (-5 *2 (-960)) (-5 *1 (-826))))
- ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *4 (-708)) (-5 *6 (-588 (-588 (-291 *3)))) (-5 *7 (-1068))
- (-5 *5 (-588 (-291 (-354)))) (-5 *3 (-354)) (-5 *2 (-960))
- (-5 *1 (-826))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-881 (-382 (-522)))) (-5 *2 (-588 (-354)))
- (-5 *1 (-948)) (-5 *4 (-354))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-881 (-522))) (-5 *2 (-588 (-354))) (-5 *1 (-948))
- (-5 *4 (-354))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1043 *4))
- (-5 *3 (-291 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1043 *4))
- (-5 *3 (-270 (-291 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085))
- (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *2 (-588 (-270 (-291 *5)))) (-5 *1 (-1043 *5))
- (-5 *3 (-270 (-291 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085))
- (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *2 (-588 (-270 (-291 *5)))) (-5 *1 (-1043 *5))
- (-5 *3 (-291 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 (-1085)))
- (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *2 (-588 (-588 (-270 (-291 *5))))) (-5 *1 (-1043 *5))
- (-5 *3 (-588 (-270 (-291 *5))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085)))
- (-4 *5 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *5))))))
- (-5 *1 (-1091 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 (-1085))) (-4 *5 (-514))
- (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-1091 *5))
- (-5 *3 (-588 (-270 (-382 (-881 *5)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-382 (-881 *4)))) (-4 *4 (-514))
- (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-1091 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *4))))))
- (-5 *1 (-1091 *4)) (-5 *3 (-588 (-270 (-382 (-881 *4)))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085)) (-4 *5 (-514))
- (-5 *2 (-588 (-270 (-382 (-881 *5))))) (-5 *1 (-1091 *5))
- (-5 *3 (-382 (-881 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085)) (-4 *5 (-514))
- (-5 *2 (-588 (-270 (-382 (-881 *5))))) (-5 *1 (-1091 *5))
- (-5 *3 (-270 (-382 (-881 *5))))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-588 (-270 (-382 (-881 *4)))))
- (-5 *1 (-1091 *4)) (-5 *3 (-382 (-881 *4)))))
+ (-2 (|:| -2905 (-628 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-628 *3))))
+ (-5 *1 (-912 *4 *3 *5 *6)) (-4 *6 (-662 *3 *5))))
((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-588 (-270 (-382 (-881 *4)))))
- (-5 *1 (-1091 *4)) (-5 *3 (-270 (-382 (-881 *4)))))))
-(((*1 *2 *3 *2 *3)
- (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1088))))
- ((*1 *2 *3 *2) (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1088))))
- ((*1 *2 *3 *2 *4 *1)
- (-12 (-5 *2 (-412)) (-5 *3 (-588 (-1085))) (-5 *4 (-1085))
- (-5 *1 (-1088))))
- ((*1 *2 *3 *2 *3 *1)
- (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1088))))
- ((*1 *2 *3 *2 *1)
- (-12 (-5 *2 (-412)) (-5 *3 (-1085)) (-5 *1 (-1089))))
- ((*1 *2 *3 *2 *1)
- (-12 (-5 *2 (-412)) (-5 *3 (-588 (-1085))) (-5 *1 (-1089)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *5 *6)) (-4 *6 (-563 (-1085)))
- (-4 *4 (-338)) (-4 *5 (-730)) (-4 *6 (-784))
- (-5 *2 (-1075 (-588 (-881 *4)) (-588 (-270 (-881 *4)))))
- (-5 *1 (-474 *4 *5 *6 *7)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *2 (-1166 (-291 (-354))))
- (-5 *1 (-281)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-903 *4 *5 *6 *3)) (-4 *4 (-971)) (-4 *5 (-730))
- (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-4 *4 (-514))
- (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *2)
- (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-392 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
- (-4 *4 (-971)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-202)) (-5 *4 (-522))
- (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) (-5 *2 (-960))
- (-5 *1 (-686)))))
-(((*1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-522)) (-5 *1 (-458 *4))
- (-4 *4 (-1142 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-338))
- (-5 *2 (-2 (|:| -3663 (-393 *3)) (|:| |special| (-393 *3))))
- (-5 *1 (-665 *5 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-135))
- (-4 *3 (-283)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-904 *3 *4 *5 *6)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-522)) (-5 *2 (-108)) (-5 *1 (-511)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108))))
+ (-12 (-4 *4 (-324)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 *3))
+ (-5 *2
+ (-2 (|:| -2905 (-628 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-628 *3))))
+ (-5 *1 (-1175 *4 *3 *5 *6)) (-4 *6 (-384 *3 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-588 *1)) (-5 *3 (-588 *7)) (-4 *1 (-990 *4 *5 *6 *7))
+ (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1))
+ (-4 *1 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6))))
((*1 *2 *3 *1)
- (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730))
- (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3))
- (-4 *3 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
(-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108))
- (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-1124))
- (-4 *6 (-1142 (-382 *5)))
- (-5 *2
- (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
- (|:| |gd| *5)))
- (-4 *1 (-317 *4 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1))
- (-4 *1 (-985 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-291 *3)) (-4 *3 (-514)) (-4 *3 (-784)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1068)) (-5 *3 (-522)) (-5 *1 (-218)))))
-(((*1 *1 *1) (-5 *1 (-108))))
-(((*1 *2) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-100)))))
-(((*1 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-343)) (-4 *2 (-338))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-1166 *4)) (-5 *1 (-492 *4))
- (-4 *4 (-324)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1066 (-382 *3))) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-762)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305))
- (-5 *1 (-307)))))
-(((*1 *2) (-12 (-5 *2 (-1057 (-1068))) (-5 *1 (-366)))))
+ (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1))
+ (-4 *1 (-990 *4 *5 *6 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-324)) (-5 *2 (-393 (-1081 (-1081 *4))))
- (-5 *1 (-1119 *4)) (-5 *3 (-1081 (-1081 *4))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792))))
- ((*1 *1 *1) (-5 *1 (-792)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-1012 *3))))
- ((*1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-317 *4 *5 *6)) (-4 *4 (-1124))
+ (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5)))
+ (-5 *2 (-2 (|:| |num| (-628 *5)) (|:| |den| *5))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-454 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971))
- (-5 *2 (-224 *4 *5)) (-5 *1 (-873 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-548 *3)) (-4 *3 (-971))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-900 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-729))
- (-4 *5 (-784)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-522)) (-4 *4 (-157)) (-4 *5 (-348 *4))
- (-4 *6 (-348 *4)) (-5 *1 (-627 *4 *5 *6 *2))
- (-4 *2 (-626 *4 *5 *6)))))
+ (-12 (-5 *3 (-628 (-291 (-202)))) (-5 *2 (-354)) (-5 *1 (-184)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-690)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-693)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-522)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426))
- (-14 *6 (-588 (-1085)))
- (-5 *2
- (-588 (-1056 *5 (-494 (-794 *6)) (-794 *6) (-717 *5 (-794 *6)))))
- (-5 *1 (-573 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)))))
-(((*1 *1 *1 *1) (-5 *1 (-147)))
- ((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-147)))))
+ (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 *5)) (-4 *5 (-338))
+ (-4 *5 (-514)) (-5 *2 (-1166 *5)) (-5 *1 (-583 *5 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 *5))
+ (-2473 (-4 *5 (-338))) (-4 *5 (-514)) (-5 *2 (-1166 (-382 *5)))
+ (-5 *1 (-583 *5 *4)))))
(((*1 *2 *3)
+ (-12 (-5 *3 (-1081 *7)) (-4 *7 (-878 *6 *4 *5)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-971)) (-5 *2 (-1081 *6))
+ (-5 *1 (-296 *4 *5 *6 *7)))))
+(((*1 *2 *2 *3)
(-12 (-5 *3 (-1085))
(-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *2 (-1 *5 *5)) (-5 *1 (-741 *4 *5))
- (-4 *5 (-13 (-29 *4) (-1106) (-887))))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-522)) (-5 *1 (-354)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-302 *3)) (-4 *3 (-1120))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-522)) (-5 *1 (-485 *3 *4)) (-4 *3 (-1120)) (-14 *4 *2))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-588 *5) *6))
- (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *6 (-1142 *5))
- (-5 *2 (-588 (-2 (|:| |poly| *6) (|:| -3197 *3))))
- (-5 *1 (-746 *5 *6 *3 *7)) (-4 *3 (-598 *6))
- (-4 *7 (-598 (-382 *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-588 *5) *6))
- (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-4 *6 (-1142 *5))
- (-5 *2 (-588 (-2 (|:| |poly| *6) (|:| -3197 (-596 *6 (-382 *6))))))
- (-5 *1 (-749 *5 *6)) (-5 *3 (-596 *6 (-382 *6))))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4)))
- (-5 *2 (-1166 *6)) (-5 *1 (-311 *3 *4 *5 *6))
- (-4 *6 (-317 *3 *4 *5)))))
+ (-5 *1 (-741 *4 *2)) (-4 *2 (-13 (-29 *4) (-1106) (-887))))))
+(((*1 *2)
+ (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-392 *3)))))
+(((*1 *2 *3 *3 *2)
+ (|partial| -12 (-5 *2 (-708))
+ (-4 *3 (-13 (-664) (-343) (-10 -7 (-15 ** (*3 *3 (-522))))))
+ (-5 *1 (-223 *3)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-824))
- (-5 *3
- (-2 (|:| |pde| (-588 (-291 (-202))))
- (|:| |constraints|
- (-588
- (-2 (|:| |start| (-202)) (|:| |finish| (-202))
- (|:| |grid| (-708)) (|:| |boundaryType| (-522))
- (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202))))))
- (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068))
- (|:| |tol| (-202))))
- (-5 *2 (-960)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
-(((*1 *2 *2)
- (-12
- (-5 *2
- (-914 (-382 (-522)) (-794 *3) (-217 *4 (-708))
- (-224 *3 (-382 (-522)))))
- (-14 *3 (-588 (-1085))) (-14 *4 (-708)) (-5 *1 (-913 *3 *4)))))
+ (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
+ (-4 *3 (-13 (-338) (-1106) (-928))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3357 *4))))
+ (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014)) (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-507))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-110)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2259 *3)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+ (-12 (-4 *4 (-514))
+ (-5 *2 (-2 (|:| -3112 *4) (|:| -3450 *3) (|:| -4002 *3)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-985 *3 *4 *5))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-514)) (-4 *3 (-971))
+ (-5 *2 (-2 (|:| -3112 *3) (|:| -3450 *1) (|:| -4002 *1)))
+ (-4 *1 (-1142 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-514) (-135))) (-5 *2 (-588 *3))
- (-5 *1 (-1136 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
+ (-12 (-4 *4 (-1142 (-382 *2))) (-5 *2 (-522)) (-5 *1 (-842 *4 *3))
+ (-4 *3 (-1142 (-382 *4))))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792))))
+ ((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-33)))
+ ((*1 *1)
+ (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708))
+ (-4 *4 (-157))))
+ ((*1 *1) (-4 *1 (-664))) ((*1 *1) (-5 *1 (-1085))))
(((*1 *2 *3 *2)
- (-12 (-5 *3 (-850)) (-5 *1 (-955 *2))
- (-4 *2 (-13 (-1014) (-10 -8 (-15 -1602 ($ $ $))))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 (-588 *8))) (-5 *3 (-588 *8))
- (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-108)) (-5 *1 (-904 *5 *6 *7 *8)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1166 (-1166 (-522)))) (-5 *3 (-850)) (-5 *1 (-440)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202)))
- (-5 *2 (-960)) (-5 *1 (-685)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-983)) (-5 *3 (-1068)))))
-(((*1 *2 *2)
+ (-12 (-5 *2 (-1066 *4)) (-4 *4 (-37 *3)) (-4 *4 (-971))
+ (-5 *3 (-382 (-522))) (-5 *1 (-1070 *4)))))
+(((*1 *1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-784))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-784))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-522)) (-4 *1 (-258 *3)) (-4 *3 (-1120))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-522)) (-4 *1 (-258 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *2)
(-12
(-5 *2
- (-588
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-708)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-730)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426)) (-4 *5 (-784))
- (-5 *1 (-423 *3 *4 *5 *6)))))
-(((*1 *1 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)) (-4 *2 (-1014))))
- ((*1 *1 *1) (-12 (-4 *1 (-633 *2)) (-4 *2 (-1014)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *3)
+ (-2
+ (|:| -2644
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
+ (|:| -3149
+ (-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| (-1066 (-202)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2321
+ (-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 (-517))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-708)) (-4 *1 (-633 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *2)
(-12
- (-5 *3
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (-5 *2 (-354)) (-5 *1 (-171)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1081 *6)) (-5 *3 (-522)) (-4 *6 (-283)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *1 (-680 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-379)) (-5 *2 (-522))))
- ((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-637)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-588 (-1139 *5 *4)))
- (-5 *1 (-1028 *4 *5)) (-5 *3 (-1139 *5 *4)))))
-(((*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850)))) ((*1 *1) (-4 *1 (-507)))
- ((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637))))
- ((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637))))
- ((*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-588 (-588 *6))) (-4 *6 (-878 *3 *5 *4))
- (-4 *3 (-13 (-283) (-135))) (-4 *4 (-13 (-784) (-563 (-1085))))
- (-4 *5 (-730)) (-5 *1 (-853 *3 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-392 *4)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-708)) (-5 *2 (-108))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-784))
- (-4 *3 (-1014)))))
-(((*1 *1 *1 *1)
- (|partial| -12 (-4 *2 (-157)) (-5 *1 (-265 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1142 *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 (-649 *2 *3 *4 *5 *6)) (-4 *2 (-157))
- (-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 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157))
- (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
- (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *5)) (-5 *4 (-850)) (-4 *5 (-784))
- (-5 *2 (-57 (-588 (-613 *5)))) (-5 *1 (-613 *5)))))
-(((*1 *1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1 *1) (-4 *1 (-119)))
- ((*1 *1 *1 *1) (-5 *1 (-1032))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-338)) (-4 *5 (-514))
- (-5 *2
- (-2 (|:| |minor| (-588 (-850))) (|:| -3197 *3)
- (|:| |minors| (-588 (-588 (-850)))) (|:| |ops| (-588 *3))))
- (-5 *1 (-88 *5 *3)) (-5 *4 (-850)) (-4 *3 (-598 *5)))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
- (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202)))
- (-5 *2 (-960)) (-5 *1 (-695)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1032)) (-5 *1 (-777 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971))
(-5 *2
- (-2 (|:| -3398 (-708)) (|:| |curves| (-708))
- (|:| |polygons| (-708)) (|:| |constructs| (-708)))))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-338)) (-5 *2 (-588 *3)) (-5 *1 (-874 *4 *3))
- (-4 *3 (-1142 *4)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730))
- (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-46 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729))
- (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014))
- (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-547 *3)) (-4 *3 (-971))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-514)) (-5 *2 (-108)) (-5 *1 (-569 *3 *4))
- (-4 *4 (-1142 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-673 *3 *4)) (-4 *3 (-971))
- (-4 *4 (-664))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
- (-5 *2 (-108)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1157 *4))
- (-4 *4 (-37 (-382 (-522))))
- (-5 *2 (-1 (-1066 *4) (-1066 *4) (-1066 *4))) (-5 *1 (-1159 *4 *5)))))
-(((*1 *1 *1 *1) (-4 *1 (-895))))
-(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
- (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960))
- (-5 *1 (-693)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-338)) (-4 *6 (-1142 (-382 *2)))
- (-4 *2 (-1142 *5)) (-5 *1 (-193 *5 *2 *6 *3))
- (-4 *3 (-317 *5 *2 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-960)))))
-(((*1 *2)
+ (-2
+ (|:| -2644
+ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
+ (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
+ (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
+ (|:| |abserr| (-202)) (|:| |relerr| (-202))))
+ (|:| -3149
+ (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354))
+ (|:| |expense| (-354)) (|:| |accuracy| (-354))
+ (|:| |intermediateResults| (-354))))))
+ (-5 *1 (-740))))
+ ((*1 *2 *3 *4)
(-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
(-4 *4 (-1014)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
- ((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
- (-5 *2
- (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522))
- (|:| |success| (-108))))
- (-5 *1 (-726)) (-5 *5 (-522)))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-588 (-382 (-881 (-522))))) (-5 *4 (-588 (-1085)))
- (-5 *2 (-588 (-588 *5))) (-5 *1 (-355 *5))
- (-4 *5 (-13 (-782) (-338)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-881 (-522)))) (-5 *2 (-588 *4)) (-5 *1 (-355 *4))
- (-4 *4 (-13 (-782) (-338))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-980)) (-4 *3 (-1106))
- (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3))
- (-4 *3 (-1014)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1081 *2)) (-4 *2 (-878 (-382 (-881 *6)) *5 *4))
- (-5 *1 (-670 *5 *4 *6 *2)) (-4 *5 (-730))
- (-4 *4 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $)))))
- (-4 *6 (-514)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
- (-5 *2 (-960)) (-5 *1 (-691)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-222 *3)))))
-(((*1 *2 *1)
+(((*1 *1 *2 *2) (-12 (-5 *1 (-806 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-808 *2)) (-4 *2 (-1120))))
+ ((*1 *2 *1)
(-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3)))))
((*1 *1 *2)
(-12 (-5 *2 (-588 (-872 *3))) (-4 *3 (-971)) (-4 *1 (-1046 *3))))
@@ -4746,236 +4568,30 @@
(-12 (-5 *2 (-588 (-588 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-588 (-872 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-588 (-256))) (-5 *1 (-256))))
- ((*1 *2 *1) (-12 (-5 *2 (-588 (-1090))) (-5 *1 (-1090)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-522)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-708)) (-4 *5 (-157))))
- ((*1 *1 *1 *2 *1 *2)
- (-12 (-5 *2 (-522)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-708)) (-4 *5 (-157))))
- ((*1 *2 *2 *3)
- (-12
- (-5 *2
- (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4)
- (-224 *4 (-382 (-522)))))
- (-5 *3 (-588 (-794 *4))) (-14 *4 (-588 (-1085))) (-14 *5 (-708))
- (-5 *1 (-475 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1128 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1157 *3)))))
-(((*1 *2 *3 *4 *3 *5 *3)
- (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522))
- (-5 *2 (-960)) (-5 *1 (-692)))))
-(((*1 *2)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-588 *1)) (-4 *1 (-283)))))
-(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-588
- (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-708)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *3 (-730)) (-4 *6 (-878 *4 *3 *5)) (-4 *4 (-426)) (-4 *5 (-784))
- (-5 *1 (-423 *4 *3 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-522)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-5 *2 (-1171)) (-5 *1 (-423 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12
- (-4 *4 (-13 (-135) (-27) (-962 (-522)) (-962 (-382 (-522)))))
- (-4 *5 (-1142 *4)) (-5 *2 (-1081 (-382 *5))) (-5 *1 (-564 *4 *5))
- (-5 *3 (-382 *5))))
- ((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5))
- (-4 *5 (-13 (-135) (-27) (-962 (-522)) (-962 (-382 (-522)))))
- (-5 *2 (-1081 (-382 *6))) (-5 *1 (-564 *5 *6)) (-5 *3 (-382 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-51)) (-5 *1 (-1099)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5))
- (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-1177 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-588 *8)) (-5 *3 (-1 (-108) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514))
- (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1177 *5 *6 *7 *8)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-784)) (-5 *1 (-1092 *3)))))
-(((*1 *2 *1)
- (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120))
- (-5 *2 (-588 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-675 *3)) (-4 *3 (-1014)))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514))
- (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-834 (-522))) (-5 *4 (-522)) (-5 *2 (-628 *4))
- (-5 *1 (-953 *5)) (-4 *5 (-971))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-953 *4))
- (-4 *4 (-971))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-834 (-522)))) (-5 *4 (-522))
- (-5 *2 (-588 (-628 *4))) (-5 *1 (-953 *5)) (-4 *5 (-971))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-588 (-522)))) (-5 *2 (-588 (-628 (-522))))
- (-5 *1 (-953 *4)) (-4 *4 (-971)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-278)) (-4 *2 (-1120))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 (-561 *1))) (-5 *3 (-588 *1)) (-4 *1 (-278))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-270 *1))) (-4 *1 (-278))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-270 *1)) (-4 *1 (-278)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-595 *4)) (-4 *4 (-317 *5 *6 *7))
- (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6)))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4))))
- (-5 *1 (-743 *5 *6 *7 *4)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-588 (-522))) (-5 *1 (-1024)) (-5 *3 (-522)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-382 (-522))) (-5 *1 (-294 *3 *4 *5))
- (-4 *3 (-13 (-338) (-784))) (-14 *4 (-1085)) (-14 *5 *3))))
(((*1 *2 *3)
- (-12 (-5 *3 (-270 (-881 (-522))))
- (-5 *2
- (-2 (|:| |varOrder| (-588 (-1085)))
- (|:| |inhom| (-3 (-588 (-1166 (-708))) "failed"))
- (|:| |hom| (-588 (-1166 (-708))))))
- (-5 *1 (-213)))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-689)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1014))
- (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3))))
- (-5 *2 (-588 (-993 *3 *4 *5))) (-5 *1 (-994 *3 *4 *5))
- (-4 *5 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-708)) (-5 *4 (-1166 *2)) (-4 *5 (-283))
- (-4 *6 (-919 *5)) (-4 *2 (-13 (-384 *6 *7) (-962 *6)))
- (-5 *1 (-388 *5 *6 *7 *2)) (-4 *7 (-1142 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-849)) (-5 *2 (-2 (|:| -2977 (-588 *1)) (|:| -1383 *1)))
- (-5 *3 (-588 *1)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1185 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
- (-5 *2 (-756 *3))))
- ((*1 *2 *1) (-12 (-4 *2 (-780)) (-5 *1 (-1187 *3 *2)) (-4 *3 (-971)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))))
-(((*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-5 *1 (-1095 *2)) (-4 *2 (-338)))))
-(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
- (-12 (-5 *3 (-1068)) (-5 *5 (-628 (-202))) (-5 *6 (-202))
- (-5 *7 (-628 (-522))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-690)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
-(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
- (|partial| -12 (-5 *2 (-588 (-1081 *11))) (-5 *3 (-1081 *11))
- (-5 *4 (-588 *10)) (-5 *5 (-588 *8)) (-5 *6 (-588 (-708)))
- (-5 *7 (-1166 (-588 (-1081 *8)))) (-4 *10 (-784))
- (-4 *8 (-283)) (-4 *11 (-878 *8 *9 *10)) (-4 *9 (-730))
- (-5 *1 (-646 *9 *10 *8 *11)))))
-(((*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426))
- (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-904 *3 *4 *5 *6)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1014))
+ (-4 *6 (-1014)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-623 *4 *5 *6)))))
+(((*1 *1 *2 *3 *3 *4 *5)
+ (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *3 (-588 (-803)))
+ (-5 *4 (-588 (-850))) (-5 *5 (-588 (-239))) (-5 *1 (-442))))
+ ((*1 *1 *2 *3 *3 *4)
+ (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *3 (-588 (-803)))
+ (-5 *4 (-588 (-850))) (-5 *1 (-442))))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-442))))
+ ((*1 *1 *1) (-5 *1 (-442))))
+(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-354)) (-5 *3 (-1068)) (-5 *1 (-92))))
+ ((*1 *2 *3 *2) (-12 (-5 *2 (-354)) (-5 *3 (-1068)) (-5 *1 (-92)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *4)) (-4 *4 (-338)) (-4 *2 (-1142 *4))
+ (-5 *1 (-851 *4 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369))))
+ ((*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-1085)) (-4 *4 (-971)) (-4 *4 (-784))
- (-5 *2 (-2 (|:| |var| (-561 *1)) (|:| -1400 (-522))))
- (-4 *1 (-405 *4))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-110)) (-4 *4 (-971)) (-4 *4 (-784))
- (-5 *2 (-2 (|:| |var| (-561 *1)) (|:| -1400 (-522))))
- (-4 *1 (-405 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1026)) (-4 *3 (-784))
- (-5 *2 (-2 (|:| |var| (-561 *1)) (|:| -1400 (-522))))
- (-4 *1 (-405 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |val| (-821 *3)) (|:| -1400 (-708))))
- (-5 *1 (-821 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *2 (-2 (|:| |var| *5) (|:| -1400 (-708))))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971))
- (-4 *7 (-878 *6 *4 *5))
- (-5 *2 (-2 (|:| |var| *5) (|:| -1400 (-522))))
- (-5 *1 (-879 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-338)
- (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $))
- (-15 -2816 (*7 $))))))))
-(((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5))
- (-4 *5 (-13 (-338) (-135) (-962 (-522))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-382 *6)) (|:| |c| (-382 *6))
- (|:| -1639 *6)))
- (-5 *1 (-941 *5 *6)) (-5 *3 (-382 *6)))))
-(((*1 *2 *2 *3 *3)
- (|partial| -12 (-5 *3 (-1085))
- (-4 *4 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-533 *4 *2))
- (-4 *2 (-13 (-1106) (-887) (-1049) (-29 *4))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085))
- (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-539 *3)) (-5 *1 (-401 *5 *3))
- (-4 *3 (-13 (-1106) (-29 *5))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1066 *4)) (-5 *3 (-1 *4 (-522))) (-4 *4 (-971))
- (-5 *1 (-1070 *4)))))
-(((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1016 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014))))
+ (-12 (-5 *3 (-588 *6)) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-708))))
((*1 *2 *1)
- (-12 (-5 *2 (-1016 *3)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *1) (-12 (-5 *2 (-759)) (-5 *1 (-758)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-658)) (-5 *2 (-850))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-708)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-522)) (-5 *1 (-291 *3)) (-4 *3 (-514)) (-4 *3 (-784)))))
-(((*1 *1) (-5 *1 (-1001))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-108)) (-5 *5 (-1016 (-708))) (-5 *6 (-708))
- (-5 *2
- (-2 (|:| |contp| (-522))
- (|:| -2976 (-588 (-2 (|:| |irr| *3) (|:| -2245 (-522)))))))
- (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-563 (-821 *3))) (-4 *3 (-815 *3))
- (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-563 (-821 *3))) (-4 *2 (-815 *3))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-588 (-628 *4))) (-5 *2 (-628 *4)) (-4 *4 (-971))
- (-5 *1 (-954 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 (-708) *2)) (-5 *4 (-708)) (-4 *2 (-1014))
- (-5 *1 (-618 *2))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1 *3 (-708) *3)) (-4 *3 (-1014)) (-5 *1 (-621 *3)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-221 *2)) (-4 *2 (-1120)))))
+ (-12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *2 (-708)))))
(((*1 *1 *2)
(-12 (-5 *2 (-588 (-522))) (-5 *1 (-49 *3 *4)) (-4 *3 (-971))
(-14 *4 (-588 (-1085)))))
@@ -5008,41 +4624,90 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-708)) (-5 *1 (-1184 *3 *4))
(-4 *4 (-655 (-382 (-522)))) (-4 *3 (-784)) (-4 *4 (-157)))))
-(((*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-1107 *3))) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1035 *3 *4 *2 *5)) (-4 *4 (-971)) (-4 *5 (-215 *3 *4))
- (-4 *2 (-215 *3 *4)))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-792)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-283)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
- (-5 *1 (-1036 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-302 *3)) (-4 *3 (-1120))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-708)) (-5 *1 (-485 *3 *4)) (-4 *3 (-1120))
- (-14 *4 (-522)))))
-(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
- (|partial| -12 (-5 *3 (-561 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1085))) (-5 *5 (-1081 *2))
- (-4 *2 (-13 (-405 *6) (-27) (-1106)))
- (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *1 (-518 *6 *2 *7)) (-4 *7 (-1014))))
- ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
- (|partial| -12 (-5 *3 (-561 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1085)))
- (-5 *5 (-382 (-1081 *2))) (-4 *2 (-13 (-405 *6) (-27) (-1106)))
- (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *1 (-518 *6 *2 *7)) (-4 *7 (-1014)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
- (-12 (-5 *4 (-588 (-108))) (-5 *5 (-628 (-202)))
- (-5 *6 (-628 (-522))) (-5 *7 (-202)) (-5 *3 (-522)) (-5 *2 (-960))
- (-5 *1 (-692)))))
+ (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *4 *5)) (-4 *4 (-157))
+ (-4 *5 (-1142 *4)) (-5 *2 (-628 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-628 *4))
+ (-5 *1 (-383 *3 *4 *5)) (-4 *3 (-384 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3))
+ (-5 *2 (-628 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-782)) (-5 *2 (-522))))
+ ((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-834 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338)))
+ (-4 *3 (-1142 *4)) (-5 *2 (-522))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-13 (-514) (-784) (-962 *2) (-584 *2) (-426)))
+ (-5 *2 (-522)) (-5 *1 (-1029 *4 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *4)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-777 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *6)))
+ (-4 *6 (-13 (-514) (-784) (-962 *2) (-584 *2) (-426)))
+ (-5 *2 (-522)) (-5 *1 (-1029 *6 *3))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-1068))
+ (-4 *6 (-13 (-514) (-784) (-962 *2) (-584 *2) (-426)))
+ (-5 *2 (-522)) (-5 *1 (-1029 *6 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *6)))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-426)) (-5 *2 (-522))
+ (-5 *1 (-1030 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-777 (-382 (-881 *6))))
+ (-5 *3 (-382 (-881 *6))) (-4 *6 (-426)) (-5 *2 (-522))
+ (-5 *1 (-1030 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *3 (-382 (-881 *6))) (-5 *4 (-1085))
+ (-5 *5 (-1068)) (-4 *6 (-426)) (-5 *2 (-522)) (-5 *1 (-1030 *6))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-522)) (-5 *1 (-1103 *3)) (-4 *3 (-971)))))
+(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
+ (-12
+ (-5 *3
+ (-2 (|:| |det| *12) (|:| |rows| (-588 (-522)))
+ (|:| |cols| (-588 (-522)))))
+ (-5 *4 (-628 *12)) (-5 *5 (-588 (-382 (-881 *9))))
+ (-5 *6 (-588 (-588 *12))) (-5 *7 (-708)) (-5 *8 (-522))
+ (-4 *9 (-13 (-283) (-135))) (-4 *12 (-878 *9 *11 *10))
+ (-4 *10 (-13 (-784) (-563 (-1085)))) (-4 *11 (-730))
+ (-5 *2
+ (-2 (|:| |eqzro| (-588 *12)) (|:| |neqzro| (-588 *12))
+ (|:| |wcond| (-588 (-881 *9)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1166 (-382 (-881 *9))))
+ (|:| -2905 (-588 (-1166 (-382 (-881 *9)))))))))
+ (-5 *1 (-853 *9 *10 *11 *12)))))
+(((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-378 *3)) (-4 *3 (-379))))
+ ((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-378 *3)) (-4 *3 (-379))))
+ ((*1 *2 *2) (-12 (-5 *2 (-850)) (|has| *1 (-6 -4229)) (-4 *1 (-379))))
+ ((*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850))))
+ ((*1 *2 *1) (-12 (-4 *1 (-798 *3)) (-5 *2 (-1066 (-522))))))
+(((*1 *1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971))
+ (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-514)) (-4 *2 (-157)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
+ (-5 *1 (-160 *3)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124))
+ (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
+ (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *6 (-202))
+ (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-690)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 (-522))) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522))
+ (-14 *4 (-708)) (-4 *5 (-157)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1014)) (-4 *6 (-1014))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-623 *4 *5 *6)) (-4 *4 (-1014)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 (-708))) (-5 *3 (-156)) (-5 *1 (-1074 *4 *5))
+ (-14 *4 (-850)) (-4 *5 (-971)))))
(((*1 *2 *3)
(-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4))
(-4 *4 (-324))))
@@ -5060,110 +4725,136 @@
(-12 (-5 *3 (-522)) (-5 *2 (-834 *4)) (-5 *1 (-833 *4))
(-4 *4 (-1014))))
((*1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-507)) (-4 *2 (-514)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
- (-4 *4 (-971)))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))))
-(((*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-366)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4)))
- (-5 *2 (-1166 *6)) (-5 *1 (-311 *3 *4 *5 *6))
- (-4 *6 (-317 *3 *4 *5)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-110)) (-5 *4 (-588 *2)) (-5 *1 (-109 *2))
- (-4 *2 (-1014))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 (-588 *4))) (-4 *4 (-1014))
- (-5 *1 (-109 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1014))
- (-5 *1 (-109 *4))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-110)) (-5 *2 (-1 *4 (-588 *4)))
- (-5 *1 (-109 *4)) (-4 *4 (-1014))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-590 *3)) (-4 *3 (-971))
- (-5 *1 (-652 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-771 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *2 (-1142 *4)) (-5 *1 (-746 *4 *2 *3 *5))
- (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2))
- (-4 *5 (-598 (-382 *2))))))
-(((*1 *1 *1) (-5 *1 (-202))) ((*1 *1 *1) (-5 *1 (-354)))
- ((*1 *1) (-5 *1 (-354))))
+ (-12 (-5 *4 (-588 (-794 *5))) (-14 *5 (-588 (-1085))) (-4 *6 (-426))
+ (-5 *2 (-588 (-588 (-224 *5 *6)))) (-5 *1 (-445 *5 *6 *7))
+ (-5 *3 (-588 (-224 *5 *6))) (-4 *7 (-426)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-338)) (-4 *3 (-971))
+ (-5 *1 (-1070 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4))
+ (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426))
+ (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-968 *5 *6)))
+ (-5 *1 (-573 *5 *6)))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *4 (-1 (-3 (-522) "failed") *5)) (-4 *5 (-971))
+ (-5 *2 (-522)) (-5 *1 (-505 *5 *3)) (-4 *3 (-1142 *5))))
+ ((*1 *2 *3 *4 *2 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-522) "failed") *4)) (-4 *4 (-971))
+ (-5 *2 (-522)) (-5 *1 (-505 *4 *3)) (-4 *3 (-1142 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-522) "failed") *4)) (-4 *4 (-971))
+ (-5 *2 (-522)) (-5 *1 (-505 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-595 (-382 *6))) (-5 *4 (-382 *6)) (-4 *6 (-1142 *5))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4))))
+ (-5 *1 (-747 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-595 (-382 *6))) (-4 *6 (-1142 *5))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-5 *2 (-2 (|:| -2905 (-588 (-382 *6))) (|:| -2149 (-628 *5))))
+ (-5 *1 (-747 *5 *6)) (-5 *4 (-588 (-382 *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-596 *6 (-382 *6))) (-5 *4 (-382 *6)) (-4 *6 (-1142 *5))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4))))
+ (-5 *1 (-747 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-596 *6 (-382 *6))) (-4 *6 (-1142 *5))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-5 *2 (-2 (|:| -2905 (-588 (-382 *6))) (|:| -2149 (-628 *5))))
+ (-5 *1 (-747 *5 *6)) (-5 *4 (-588 (-382 *6))))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-784)) (-4 *5 (-730))
+ (-4 *6 (-514)) (-4 *7 (-878 *6 *5 *3))
+ (-5 *1 (-436 *5 *3 *6 *7 *2))
+ (-4 *2
+ (-13 (-962 (-382 (-522))) (-338)
+ (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $))
+ (-15 -2959 (*7 $))))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4))
+ (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
(((*1 *1 *1) (-4 *1 (-574)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2))
(-4 *2 (-13 (-405 *3) (-928) (-1106))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-628 *5))) (-5 *4 (-1166 *5)) (-4 *5 (-283))
- (-4 *5 (-971)) (-5 *2 (-628 *5)) (-5 *1 (-954 *5)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-135)) (-4 *2 (-283)) (-4 *2 (-426)) (-4 *3 (-784))
- (-4 *4 (-730)) (-5 *1 (-914 *2 *3 *4 *5)) (-4 *5 (-878 *2 *4 *3))))
- ((*1 *2 *3) (-12 (-5 *3 (-47)) (-5 *2 (-291 (-522))) (-5 *1 (-1031))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971))))
- ((*1 *2 *1 *1)
- (-12 (-4 *2 (-971)) (-5 *1 (-49 *2 *3)) (-14 *3 (-588 (-1085)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-588 (-850))) (-4 *2 (-338)) (-5 *1 (-140 *4 *2 *5))
- (-14 *4 (-850)) (-14 *5 (-920 *4 *2))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-291 *3)) (-5 *1 (-200 *3 *4))
- (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085)))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-298 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-124))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-357 *2 *3)) (-4 *3 (-1014)) (-4 *2 (-971))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-4 *2 (-514)) (-5 *1 (-569 *2 *4))
- (-4 *4 (-1142 *2))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-647 *2)) (-4 *2 (-971))))
- ((*1 *2 *1 *3)
- (-12 (-4 *2 (-971)) (-5 *1 (-673 *2 *3)) (-4 *3 (-664))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 *5)) (-5 *3 (-588 (-708))) (-4 *1 (-678 *4 *5))
- (-4 *4 (-971)) (-4 *5 (-784))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *2)) (-4 *4 (-971))
- (-4 *2 (-784))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-786 *2)) (-4 *2 (-971))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 *6)) (-5 *3 (-588 (-708))) (-4 *1 (-878 *4 *5 *6))
- (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-708)) (-4 *1 (-878 *4 *5 *2)) (-4 *4 (-971))
- (-4 *5 (-730)) (-4 *2 (-784))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-708)) (-4 *2 (-878 *4 (-494 *5) *5))
- (-5 *1 (-1038 *4 *5 *2)) (-4 *4 (-971)) (-4 *5 (-784))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-881 *4)) (-5 *1 (-1115 *4))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-926 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1066 (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1070 *4))
(-4 *4 (-971)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))))
-(((*1 *2 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| -3855 (-628 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-628 *3))))
- (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $)))))
- (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-708)) (-4 *1 (-349 *3 *4)) (-4 *3 (-784))
+ (-4 *4 (-157))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-708)) (-4 *1 (-1185 *3 *4)) (-4 *3 (-784))
+ (-4 *4 (-971)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *4 (-338)) (-5 *2 (-588 (-1066 *4))) (-5 *1 (-261 *4 *5))
+ (-5 *3 (-1066 *4)) (-4 *5 (-1157 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-588 *7)) (-5 *5 (-588 (-588 *8))) (-4 *7 (-784))
- (-4 *8 (-283)) (-4 *6 (-730)) (-4 *9 (-878 *8 *6 *7))
+ (-12 (-5 *5 (-522)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-283))
+ (-4 *9 (-878 *8 *6 *7))
+ (-5 *2 (-2 (|:| -1976 (-1081 *9)) (|:| |polval| (-1081 *8))))
+ (-5 *1 (-680 *6 *7 *8 *9)) (-5 *3 (-1081 *9)) (-5 *4 (-1081 *8)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-514))
+ (-4 *3 (-878 *7 *5 *6))
(-5 *2
- (-2 (|:| |unitPart| *9)
- (|:| |suPart|
- (-588 (-2 (|:| -1916 (-1081 *9)) (|:| -1400 (-522)))))))
- (-5 *1 (-680 *6 *7 *8 *9)) (-5 *3 (-1081 *9)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))))
+ (-2 (|:| -3858 (-708)) (|:| -3112 *3) (|:| |radicand| (-588 *3))))
+ (-5 *1 (-882 *5 *6 *7 *3 *8)) (-5 *4 (-708))
+ (-4 *8
+ (-13 (-338)
+ (-10 -8 (-15 -2947 (*3 $)) (-15 -2959 (*3 $)) (-15 -2217 ($ *3))))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *3))
+ (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-985 *4 *5 *6)) (-4 *4 (-514))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-588 *7) (-588 *7))) (-5 *2 (-588 *7))
+ (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-5 *1 (-904 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-1024)))))
+(((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-871)) (-5 *3 (-522)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-685)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-305)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1166 *4)) (-5 *3 (-708)) (-4 *4 (-324))
+ (-5 *1 (-492 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-798 *3)) (-5 *2 (-522)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-693)))))
(((*1 *2 *1) (-12 (-5 *2 (-1032)) (-5 *1 (-105))))
((*1 *2 *1) (-12 (-4 *1 (-125)) (-5 *2 (-708))))
((*1 *2 *3 *1 *2)
@@ -5177,83 +4868,91 @@
(-5 *2 (-522))))
((*1 *2 *3 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-522)) (-5 *3 (-129))))
((*1 *2 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-522)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-588 (-588 *3)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-588 (-588 *5)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-588 *3))) (-5 *1 (-1093 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
- ((*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *1 *1) (-4 *1 (-1049))))
-(((*1 *2 *3 *4 *4 *3)
- (|partial| -12 (-5 *4 (-561 *3))
- (-4 *3 (-13 (-405 *5) (-27) (-1106)))
- (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2 (-2 (|:| -1856 *3) (|:| |coeff| *3)))
- (-5 *1 (-524 *5 *3 *6)) (-4 *6 (-1014)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-971))
- (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260)))
- (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-5 *1 (-458 *2)) (-4 *2 (-1142 (-522))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-677 *3)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-907 *2)) (-4 *2 (-971))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-971)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-971)) (-14 *3 (-588 (-1085)))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-200 *2 *3)) (-4 *2 (-13 (-971) (-784)))
- (-14 *3 (-588 (-1085))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *4)) (-4 *4 (-784)) (-5 *2 (-588 (-606 *4 *5)))
- (-5 *1 (-572 *4 *5 *6)) (-4 *5 (-13 (-157) (-655 (-382 (-522)))))
- (-14 *6 (-850)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-338) (-135) (-962 (-522)))) (-4 *5 (-1142 *4))
- (-5 *2 (-2 (|:| |ans| (-382 *5)) (|:| |nosol| (-108))))
- (-5 *1 (-941 *4 *5)) (-5 *3 (-382 *5)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-708)) (-4 *4 (-13 (-514) (-135)))
+ (-5 *1 (-1136 *4 *2)) (-4 *2 (-1142 *4)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1085))
+ (-4 *4 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-515 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))))
+(((*1 *1) (-5 *1 (-412))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-628 (-382 (-881 (-522)))))
- (-5 *2 (-588 (-628 (-291 (-522))))) (-5 *1 (-956))
- (-5 *3 (-291 (-522))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-784)) (-5 *2 (-588 (-588 *4))) (-5 *1 (-1092 *4))
- (-5 *3 (-588 *4)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
- (-12 (-5 *6 (-588 (-108))) (-5 *7 (-628 (-202)))
- (-5 *8 (-628 (-522))) (-5 *3 (-522)) (-5 *4 (-202)) (-5 *5 (-108))
- (-5 *2 (-960)) (-5 *1 (-692)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
- (-5 *2 (-960)) (-5 *1 (-690)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
- (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-971))
- (-4 *4 (-780)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-125)) (-5 *3 (-708)) (-5 *2 (-1171)))))
-(((*1 *1 *1 *1) (-4 *1 (-131)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1120)))))
+ (-12 (-5 *3 (-382 *6)) (-4 *5 (-1124)) (-4 *6 (-1142 *5))
+ (-5 *2 (-2 (|:| -3858 (-708)) (|:| -3112 *3) (|:| |radicand| *6)))
+ (-5 *1 (-136 *5 *6 *7)) (-5 *4 (-708)) (-4 *7 (-1142 *3)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-708)) (-5 *2 (-108))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *3 (-1014)) (-5 *2 (-108))
+ (-5 *1 (-1121 *3)))))
+(((*1 *2 *3 *4 *4 *3 *3 *5)
+ (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-1081 *3))
+ (-4 *3 (-13 (-405 *6) (-27) (-1106)))
+ (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2 (-2 (|:| -2585 *3) (|:| |coeff| *3)))
+ (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014))))
+ ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-382 (-1081 *3)))
+ (-4 *3 (-13 (-405 *6) (-27) (-1106)))
+ (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2 (-2 (|:| -2585 *3) (|:| |coeff| *3)))
+ (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *1 (-57 *3)) (-4 *3 (-1120))))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-57 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-108))
+ (-5 *2
+ (-2 (|:| |contp| (-522))
+ (|:| -4045 (-588 (-2 (|:| |irr| *3) (|:| -4160 (-522)))))))
+ (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-108))
+ (-5 *2
+ (-2 (|:| |contp| (-522))
+ (|:| -4045 (-588 (-2 (|:| |irr| *3) (|:| -4160 (-522)))))))
+ (-5 *1 (-1131 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-628 *5)) (-4 *5 (-971)) (-5 *1 (-975 *3 *4 *5))
+ (-14 *3 (-708)) (-14 *4 (-708)))))
+(((*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-202)) (-5 *1 (-1169))))
+ ((*1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-1169)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *5 (-561 *4)) (-5 *6 (-1085))
+ (-4 *4 (-13 (-405 *7) (-27) (-1106)))
+ (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4))))
+ (-5 *1 (-524 *7 *4 *3)) (-4 *3 (-598 *4)) (-4 *3 (-1014)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-708))
- (-5 *1 (-423 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))))
+ (-12
+ (-5 *3
+ (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4)
+ (-224 *4 (-382 (-522)))))
+ (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-108))
+ (-5 *1 (-475 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-708)) (-4 *5 (-971)) (-4 *2 (-1142 *5))
+ (-5 *1 (-1160 *5 *2 *6 *3)) (-4 *6 (-598 *2)) (-4 *3 (-1157 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *1) (-4 *1 (-33))) ((*1 *1) (-5 *1 (-267)))
+ ((*1 *1) (-5 *1 (-792)))
+ ((*1 *1)
+ (-12 (-4 *2 (-426)) (-4 *3 (-784)) (-4 *4 (-730))
+ (-5 *1 (-914 *2 *3 *4 *5)) (-4 *5 (-878 *2 *4 *3))))
+ ((*1 *1) (-5 *1 (-1001)))
+ ((*1 *1)
+ (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33)))
+ (-4 *3 (-13 (-1014) (-33)))))
+ ((*1 *1) (-5 *1 (-1088))) ((*1 *1) (-5 *1 (-1089))))
+(((*1 *1 *1) (-5 *1 (-202)))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085)))
+ (-14 *3 (-588 (-1085))) (-4 *4 (-362))))
+ ((*1 *1 *1) (-5 *1 (-354))) ((*1 *1) (-5 *1 (-354))))
(((*1 *1 *1) (-12 (-4 *1 (-348 *2)) (-4 *2 (-1120)) (-4 *2 (-784))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-348 *3)) (-4 *3 (-1120))))
@@ -5262,272 +4961,226 @@
((*1 *2 *1 *3)
(-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784))
(-4 *6 (-985 *4 *5 *3))
- (-5 *2 (-2 (|:| |under| *1) (|:| -3686 *1) (|:| |upper| *1)))
+ (-5 *2 (-2 (|:| |under| *1) (|:| -3592 *1) (|:| |upper| *1)))
(-4 *1 (-903 *4 *5 *3 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-392 *4)))))
-(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932))))
- ((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *2 (-1014)) (-4 *3 (-1014))
- (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))))
-(((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-639))))
- ((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-639)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 (-354))) (-5 *1 (-239))))
- ((*1 *1)
- (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-514)) (-4 *2 (-157))))
- ((*1 *2 *1) (-12 (-5 *1 (-393 *2)) (-4 *2 (-514)))))
-(((*1 *1)
- (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
- (-14 *4 *3))))
+(((*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-4 *3 (-1014))
+ (-5 *2 (-108)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-283)) (-4 *6 (-348 *5)) (-4 *4 (-348 *5))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4))))
- (-5 *1 (-1036 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4)))))
+ (-12 (-5 *3 (-850)) (-5 *4 (-393 *6)) (-4 *6 (-1142 *5))
+ (-4 *5 (-971)) (-5 *2 (-588 *6)) (-5 *1 (-418 *5 *6)))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6
+ *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8
+ *9)
+ (-12 (-5 *4 (-628 (-202))) (-5 *5 (-108)) (-5 *6 (-202))
+ (-5 *7 (-628 (-522)))
+ (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-78 CONFUN))))
+ (-5 *9 (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN))))
+ (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-691)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1139 *4 *5)) (-5 *3 (-588 *5)) (-14 *4 (-1085))
+ (-4 *5 (-338)) (-5 *1 (-852 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *5)) (-4 *5 (-338)) (-5 *2 (-1081 *5))
+ (-5 *1 (-852 *4 *5)) (-14 *4 (-1085))))
+ ((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-588 *6)) (-5 *4 (-708)) (-4 *6 (-338))
+ (-5 *2 (-382 (-881 *6))) (-5 *1 (-972 *5 *6)) (-14 *5 (-1085)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-758)))))
(((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-708)) (-4 *2 (-1014))
(-5 *1 (-618 *2)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-338))
- (-5 *1 (-489 *2 *4 *5 *3)) (-4 *3 (-626 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2))
- (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-157))
- (-5 *1 (-627 *2 *4 *5 *3)) (-4 *3 (-626 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2))
- (-4 *5 (-215 *3 *2)) (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1066 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-171))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1066 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-276))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1066 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-281)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-135))
- (-4 *3 (-283)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-904 *3 *4 *5 *6)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33)))
- (-4 *3 (-13 (-1014) (-33))))))
-(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
- (-5 *2 (-960)) (-5 *1 (-694)))))
+(((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-332 *3)) (-4 *3 (-324)))))
+(((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-872 *5)) (-4 *5 (-971)) (-5 *2 (-708))
+ (-5 *1 (-1074 *4 *5)) (-14 *4 (-850))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 (-708))) (-5 *3 (-708)) (-5 *1 (-1074 *4 *5))
+ (-14 *4 (-850)) (-4 *5 (-971))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 (-708))) (-5 *3 (-872 *5)) (-4 *5 (-971))
+ (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))))
(((*1 *1 *1)
(-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *2 (-1014)) (-4 *3 (-1014))
(-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-971))))
+ ((*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-971)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-154 *5)) (-4 *5 (-13 (-405 *4) (-928) (-1106)))
- (-4 *4 (-13 (-514) (-784)))
- (-4 *2 (-13 (-405 (-154 *4)) (-928) (-1106)))
- (-5 *1 (-551 *4 *5 *2)))))
-(((*1 *2 *3 *4 *5 *3 *6 *3)
- (-12 (-5 *3 (-522)) (-5 *5 (-154 (-202))) (-5 *6 (-1068))
- (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))))
+ (-12 (-5 *3 (-1085)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-640 *4 *5 *6 *7))
+ (-4 *4 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120))
+ (-4 *7 (-1120)))))
+(((*1 *2 *3)
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
+ (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
+ (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
+ (|:| |abserr| (-202)) (|:| |relerr| (-202))))
+ (-5 *2
+ (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354))
+ (|:| |expense| (-354)) (|:| |accuracy| (-354))
+ (|:| |intermediateResults| (-354))))
+ (-5 *1 (-740)))))
(((*1 *2 *1 *1)
(-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
(-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-971)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-514))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-514)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *6 (-514)) (-4 *2 (-878 *3 *5 *4))
- (-5 *1 (-670 *5 *4 *6 *2)) (-5 *3 (-382 (-881 *6))) (-4 *5 (-730))
- (-4 *4 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-129))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-132)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-305)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-881 (-382 (-522)))) (-5 *4 (-1085))
+ (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-276)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-426)) (-5 *2 (-108))
- (-5 *1 (-335 *4 *5)) (-14 *5 (-588 (-1085)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-717 *4 (-794 *5)))) (-4 *4 (-426))
- (-14 *5 (-588 (-1085))) (-5 *2 (-108)) (-5 *1 (-573 *4 *5)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
- (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202)))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-68 APROD)))) (-5 *4 (-202))
- (-5 *2 (-960)) (-5 *1 (-694)))))
-(((*1 *2)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-283) (-135))) (-4 *4 (-13 (-784) (-563 (-1085))))
- (-4 *5 (-730)) (-5 *1 (-853 *3 *4 *5 *2)) (-4 *2 (-878 *3 *5 *4)))))
+ (-12 (-5 *3 (-291 (-202))) (-5 *2 (-291 (-382 (-522))))
+ (-5 *1 (-281)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -2002 *6) (|:| |sol?| (-108))) (-522)
+ *6))
+ (-4 *6 (-338)) (-4 *7 (-1142 *6))
+ (-5 *2
+ (-3 (-2 (|:| |answer| (-382 *7)) (|:| |a0| *6))
+ (-2 (|:| -2585 (-382 *7)) (|:| |coeff| (-382 *7))) "failed"))
+ (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *2 (-1014)) (-4 *3 (-1014))
+ (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-156))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-953 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-588 (-628 *3))) (-4 *3 (-971)) (-5 *1 (-953 *3))))
- ((*1 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-953 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-588 (-628 *3))) (-4 *3 (-971)) (-5 *1 (-953 *3)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-685)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-442)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
+ (-12 (-4 *1 (-339 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-5 *2 (-1068)))))
+(((*1 *1) (-5 *1 (-999))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-115 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522)))))
- (-4 *4 (-1142 (-382 *2))) (-5 *2 (-522)) (-5 *1 (-842 *4 *5))
- (-4 *5 (-1142 (-382 *4))))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1032)) (-5 *2 (-1171)) (-5 *1 (-768)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
- (-4 *6 (-985 *3 *4 *5)) (-5 *1 (-570 *3 *4 *5 *6 *7 *2))
- (-4 *7 (-990 *3 *4 *5 *6)) (-4 *2 (-1023 *3 *4 *5 *6)))))
+ (-12
+ (-5 *3
+ (-588
+ (-2 (|:| -1692 (-708))
+ (|:| |eqns|
+ (-588
+ (-2 (|:| |det| *7) (|:| |rows| (-588 (-522)))
+ (|:| |cols| (-588 (-522))))))
+ (|:| |fgb| (-588 *7)))))
+ (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135)))
+ (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-708))
+ (-5 *1 (-853 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
+ (-5 *2 (-960)) (-5 *1 (-689)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-792)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 (-708))
+ (-14 *4 (-708)) (-4 *5 (-157)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354)))
+ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354)))
(|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084))))
(-5 *1 (-1084)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-951 (-777 (-522))))
- (-5 *3 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *4)))) (-4 *4 (-971))
- (-5 *1 (-547 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-708)) (-5 *2 (-108)) (-5 *1 (-540 *3)) (-4 *3 (-507)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1166 (-588 (-2 (|:| -3435 *4) (|:| -2717 (-1032))))))
- (-4 *4 (-324)) (-5 *2 (-1171)) (-5 *1 (-492 *4)))))
-(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-33)))
- ((*1 *1)
- (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708))
- (-4 *4 (-157))))
- ((*1 *1) (-4 *1 (-664))) ((*1 *1) (-5 *1 (-1085))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *4 *5)) (-4 *4 (-157))
- (-4 *5 (-1142 *4)) (-5 *2 (-628 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-157)) (-4 *5 (-1142 *4)) (-5 *2 (-628 *4))
- (-5 *1 (-383 *3 *4 *5)) (-4 *3 (-384 *4 *5))))
- ((*1 *2)
- (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3))
- (-5 *2 (-628 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 (-708))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
+ (-4 *4 (-971)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-104)) (-5 *1 (-1001)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-514))
+ (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-1137 *4 *3))
+ (-4 *3 (-1142 *4)))))
+(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441))))
+ ((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441))))
+ ((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-442)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2908 *4)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1014)) (-4 *6 (-1014))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-623 *4 *5 *6)) (-4 *4 (-1014)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4))
- (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-514))
- (-4 *3 (-878 *7 *5 *6))
- (-5 *2
- (-2 (|:| -1400 (-708)) (|:| -2977 *3) (|:| |radicand| (-588 *3))))
- (-5 *1 (-882 *5 *6 *7 *3 *8)) (-5 *4 (-708))
- (-4 *8
- (-13 (-338)
- (-10 -8 (-15 -2805 (*3 $)) (-15 -2816 (*3 $)) (-15 -2190 ($ *3))))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1166 *4)) (-5 *3 (-708)) (-4 *4 (-324))
- (-5 *1 (-492 *4)))))
+ (-12 (-4 *4 (-13 (-514) (-784)))
+ (-4 *2 (-13 (-405 *4) (-928) (-1106))) (-5 *1 (-551 *4 *2 *3))
+ (-4 *3 (-13 (-405 (-154 *4)) (-928) (-1106))))))
+(((*1 *2 *3 *2 *4 *5)
+ (-12 (-5 *2 (-588 *3)) (-5 *5 (-850)) (-4 *3 (-1142 *4))
+ (-4 *4 (-283)) (-5 *1 (-434 *4 *3)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354)))
+ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354)))
(|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084))))
(-5 *1 (-1084)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-108))
- (-5 *2
- (-2 (|:| |contp| (-522))
- (|:| -2976 (-588 (-2 (|:| |irr| *3) (|:| -2245 (-522)))))))
- (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-108))
- (-5 *2
- (-2 (|:| |contp| (-522))
- (|:| -2976 (-588 (-2 (|:| |irr| *3) (|:| -2245 (-522)))))))
- (-5 *1 (-1131 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *1 *1) (-5 *1 (-202)))
- ((*1 *1 *1)
- (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085)))
- (-14 *3 (-588 (-1085))) (-4 *4 (-362))))
- ((*1 *1 *1) (-5 *1 (-354))) ((*1 *1) (-5 *1 (-354))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-708)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522))
- (-14 *4 *2) (-4 *5 (-157))))
- ((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-850)) (-5 *1 (-150 *3 *4))
- (-4 *3 (-151 *4))))
- ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-850))))
- ((*1 *2)
- (-12 (-4 *1 (-345 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3))
- (-5 *2 (-850))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-338)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4))
- (-5 *2 (-708)) (-5 *1 (-489 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-338))
- (-5 *2 (-708)) (-5 *1 (-609 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239))))
- (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-5 *2 (-708))
- (-5 *1 (-610 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-4 *3 (-514)) (-5 *2 (-708))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4))
- (-4 *6 (-348 *4)) (-5 *2 (-708)) (-5 *1 (-627 *4 *5 *6 *3))
- (-4 *3 (-626 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-4 *5 (-514))
- (-5 *2 (-708)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-758)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-881 (-382 (-522)))) (-5 *4 (-1085))
- (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-276)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-514))
- (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-1137 *4 *3))
- (-4 *3 (-1142 *4)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN))))
+ (-5 *2 (-960)) (-5 *1 (-686)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-5 *1 (-305)))))
(((*1 *2 *3)
(-12 (-5 *3 (-850))
(-5 *2
(-3 (-1081 *4)
- (-1166 (-588 (-2 (|:| -3435 *4) (|:| -2717 (-1032)))))))
+ (-1166 (-588 (-2 (|:| -3526 *4) (|:| -2882 (-1032)))))))
(-5 *1 (-321 *4)) (-4 *4 (-324)))))
-(((*1 *2 *2) (-12 (-5 *2 (-291 (-202))) (-5 *1 (-189)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-423 *4 *5 *6 *2)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-878 *3 *5 *4)) (-5 *1 (-914 *3 *4 *5 *2))
+ (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-856)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-832 *3)) (-4 *3 (-1014)) (-5 *2 (-1016 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1014)) (-5 *2 (-1016 (-588 *4))) (-5 *1 (-833 *4))
+ (-5 *3 (-588 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1014)) (-5 *2 (-1016 (-1016 *4))) (-5 *1 (-833 *4))
+ (-5 *3 (-1016 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *2 (-1016 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1974 *9))))
+ (-5 *4 (-708)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8))
+ (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-1171))
+ (-5 *1 (-988 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1974 *9))))
+ (-5 *4 (-708)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8))
+ (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-1171))
+ (-5 *1 (-1055 *5 *6 *7 *8 *9)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354)))
+ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354)))
(|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084))))
(-5 *1 (-1084)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-693)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
- (-4 *3 (-13 (-338) (-1106) (-928)))))
- ((*1 *2)
- (|partial| -12 (-4 *4 (-1124)) (-4 *5 (-1142 (-382 *2)))
- (-4 *2 (-1142 *4)) (-5 *1 (-316 *3 *4 *2 *5))
- (-4 *3 (-317 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-317 *3 *2 *4)) (-4 *3 (-1124))
- (-4 *4 (-1142 (-382 *2))) (-4 *2 (-1142 *3)))))
+(((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-1014)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-971)) (-4 *3 (-784))
+ (-5 *2 (-2 (|:| |val| *1) (|:| -3858 (-522)))) (-4 *1 (-405 *3))))
+ ((*1 *2 *1)
+ (|partial| -12
+ (-5 *2 (-2 (|:| |val| (-821 *3)) (|:| -3858 (-821 *3))))
+ (-5 *1 (-821 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971))
+ (-4 *7 (-878 *6 *4 *5))
+ (-5 *2 (-2 (|:| |val| *3) (|:| -3858 (-522))))
+ (-5 *1 (-879 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-338)
+ (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $))
+ (-15 -2959 (*7 $))))))))
(((*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729))))
((*1 *1 *1)
(-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-971)) (-14 *3 (-588 (-1085)))))
@@ -5537,10 +5190,10 @@
((*1 *1 *1) (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-971)) (-4 *3 (-1014))))
((*1 *1 *1)
(-12 (-14 *2 (-588 (-1085))) (-4 *3 (-157))
- (-4 *5 (-215 (-3480 *2) (-708)))
+ (-4 *5 (-215 (-3591 *2) (-708)))
(-14 *6
- (-1 (-108) (-2 (|:| -2717 *4) (|:| -1400 *5))
- (-2 (|:| -2717 *4) (|:| -1400 *5))))
+ (-1 (-108) (-2 (|:| -2882 *4) (|:| -3858 *5))
+ (-2 (|:| -2882 *4) (|:| -3858 *5))))
(-5 *1 (-435 *2 *3 *4 *5 *6 *7)) (-4 *4 (-784))
(-4 *7 (-878 *3 *5 (-794 *2)))))
((*1 *1 *1) (-12 (-4 *1 (-478 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-784))))
@@ -5555,84 +5208,74 @@
(-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
(-4 *2 (-784))))
((*1 *1 *1) (-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-971)) (-4 *3 (-780)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-156)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
- (-4 *4 (-971)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971))))
- ((*1 *1 *1) (-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-971)) (-4 *3 (-780)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1085)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-640 *3 *5 *6 *7))
- (-4 *3 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120))
- (-4 *7 (-1120))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085)) (-5 *2 (-1 *6 *5)) (-5 *1 (-645 *3 *5 *6))
- (-4 *3 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-110))))
- ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-110))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784))
- (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-708))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784))
- (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-708))))
- ((*1 *2 *1) (-12 (-4 *1 (-242 *3)) (-4 *3 (-784)) (-5 *2 (-708)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
+(((*1 *2 *2) (-12 (-5 *2 (-291 (-202))) (-5 *1 (-189)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *5)) (-4 *5 (-405 *4)) (-4 *4 (-13 (-784) (-514)))
+ (-5 *2 (-792)) (-5 *1 (-31 *4 *5)))))
+(((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 (-821 *6)))
+ (-5 *5 (-1 (-818 *6 *8) *8 (-821 *6) (-818 *6 *8))) (-4 *6 (-1014))
+ (-4 *8 (-13 (-971) (-563 (-821 *6)) (-962 *7))) (-5 *2 (-818 *6 *8))
+ (-4 *7 (-13 (-971) (-784))) (-5 *1 (-870 *6 *7 *8)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1081 *3)) (-5 *1 (-843 *3)) (-4 *3 (-283)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-588 (-1085))) (-4 *4 (-1014))
+ (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4))))
+ (-5 *1 (-53 *4 *5 *2))
+ (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354)))
+ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354)))
(|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084))))
(-5 *1 (-1084)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
- (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
- (-5 *2 (-960)) (-5 *1 (-690)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
+(((*1 *1) (-5 *1 (-760))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305))
+ (-5 *1 (-307))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1085)) (-5 *4 (-1007 (-881 (-522)))) (-5 *2 (-305))
+ (-5 *1 (-307))))
+ ((*1 *1 *2 *2 *2)
+ (-12 (-5 *2 (-708)) (-5 *1 (-616 *3)) (-4 *3 (-971)) (-4 *3 (-1014)))))
(((*1 *2 *1)
(-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1))
(-4 *1 (-878 *3 *4 *5)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *2 (-784))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-730)) (-4 *5 (-971)) (-4 *6 (-878 *5 *4 *2))
- (-4 *2 (-784)) (-5 *1 (-879 *4 *2 *5 *6 *3))
- (-4 *3
- (-13 (-338)
- (-10 -8 (-15 -2190 ($ *6)) (-15 -2805 (*6 $))
- (-15 -2816 (*6 $)))))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514))
- (-5 *2 (-1085)) (-5 *1 (-967 *4)))))
-(((*1 *2)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-708)) (-4 *4 (-13 (-971) (-655 (-382 (-522)))))
- (-4 *5 (-784)) (-5 *1 (-1180 *4 *5 *2)) (-4 *2 (-1185 *5 *4)))))
-(((*1 *1 *1) (-5 *1 (-983))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-693)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1068)) (-5 *3 (-522)) (-5 *1 (-983)))))
(((*1 *2)
- (-12 (-5 *2 (-886 (-1032))) (-5 *1 (-318 *3 *4)) (-14 *3 (-850))
- (-14 *4 (-850))))
- ((*1 *2)
- (-12 (-5 *2 (-886 (-1032))) (-5 *1 (-319 *3 *4)) (-4 *3 (-324))
- (-14 *4 (-1081 *3))))
- ((*1 *2)
- (-12 (-5 *2 (-886 (-1032))) (-5 *1 (-320 *3 *4)) (-4 *3 (-324))
- (-14 *4 (-850)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812))
- (-5 *3 (-588 (-522))))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354)))
- (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171))
- (-5 *1 (-725))))
- ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
- (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354)))
- (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171))
- (-5 *1 (-725)))))
+ (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-392 *3)))))
+(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
+ (-5 *2 (-960)) (-5 *1 (-689)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-338)) (-4 *1 (-304 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1142 *4)) (-4 *4 (-1124))
+ (-4 *1 (-317 *4 *3 *5)) (-4 *5 (-1142 (-382 *3)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1166 *1)) (-4 *4 (-157))
+ (-4 *1 (-342 *4))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1166 *1)) (-4 *4 (-157))
+ (-4 *1 (-345 *4 *5)) (-4 *5 (-1142 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-384 *3 *4))
+ (-4 *4 (-1142 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-392 *3)))))
(((*1 *2 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971))))
((*1 *2 *1)
(-12 (-4 *2 (-971)) (-5 *1 (-49 *2 *3)) (-14 *3 (-588 (-1085)))))
@@ -5641,10 +5284,10 @@
(-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085)))))
((*1 *2 *1) (-12 (-4 *1 (-357 *2 *3)) (-4 *3 (-1014)) (-4 *2 (-971))))
((*1 *2 *1)
- (-12 (-14 *3 (-588 (-1085))) (-4 *5 (-215 (-3480 *3) (-708)))
+ (-12 (-14 *3 (-588 (-1085))) (-4 *5 (-215 (-3591 *3) (-708)))
(-14 *6
- (-1 (-108) (-2 (|:| -2717 *4) (|:| -1400 *5))
- (-2 (|:| -2717 *4) (|:| -1400 *5))))
+ (-1 (-108) (-2 (|:| -2882 *4) (|:| -3858 *5))
+ (-2 (|:| -2882 *4) (|:| -3858 *5))))
(-4 *2 (-157)) (-5 *1 (-435 *3 *2 *4 *5 *6 *7)) (-4 *4 (-784))
(-4 *7 (-878 *2 *5 (-794 *3)))))
((*1 *2 *1) (-12 (-4 *1 (-478 *2 *3)) (-4 *3 (-784)) (-4 *2 (-1014))))
@@ -5662,42 +5305,62 @@
(-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
(-4 *2 (-784)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-621 *2)) (-4 *2 (-1014))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-588 *5) (-588 *5))) (-5 *4 (-522))
- (-5 *2 (-588 *5)) (-5 *1 (-621 *5)) (-4 *5 (-1014)))))
-(((*1 *2 *1) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))))
+ (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
+ (-4 *3 (-13 (-338) (-1106) (-928)))))
+ ((*1 *2)
+ (|partial| -12 (-4 *4 (-1124)) (-4 *5 (-1142 (-382 *2)))
+ (-4 *2 (-1142 *4)) (-5 *1 (-316 *3 *4 *2 *5))
+ (-4 *3 (-317 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-317 *3 *2 *4)) (-4 *3 (-1124))
+ (-4 *4 (-1142 (-382 *2))) (-4 *2 (-1142 *3)))))
+(((*1 *2)
+ (-12 (-14 *4 (-708)) (-4 *5 (-1120)) (-5 *2 (-126))
+ (-5 *1 (-214 *3 *4 *5)) (-4 *3 (-215 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *4 (-338)) (-5 *2 (-126)) (-5 *1 (-303 *3 *4))
+ (-4 *3 (-304 *4))))
+ ((*1 *2)
+ (-12 (-5 *2 (-708)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
+ (-4 *5 (-157))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-522))
+ (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730))
+ (-5 *2 (-522)) (-5 *1 (-474 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-907 *3)) (-4 *3 (-971)) (-5 *2 (-850))))
+ ((*1 *2) (-12 (-4 *1 (-1173 *3)) (-4 *3 (-338)) (-5 *2 (-126)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-291 (-202)))) (-5 *2 (-108)) (-5 *1 (-243)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-154 (-202))))
- (-5 *2 (-960)) (-5 *1 (-692)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-128 *5 *6 *7)) (-14 *5 (-522))
- (-14 *6 (-708)) (-4 *7 (-157)) (-4 *8 (-157))
- (-5 *2 (-128 *5 *6 *8)) (-5 *1 (-127 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *9)) (-4 *9 (-971)) (-4 *5 (-784)) (-4 *6 (-730))
- (-4 *8 (-971)) (-4 *2 (-878 *9 *7 *5))
- (-5 *1 (-666 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-730))
- (-4 *4 (-878 *8 *6 *5)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-338)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-474 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))))
-(((*1 *1) (-5 *1 (-202))) ((*1 *1) (-5 *1 (-354))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-514)) (-4 *2 (-157)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730))
- (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
+ (-12 (-4 *1 (-737))
+ (-5 *3
+ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
+ (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
+ (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
+ (|:| |abserr| (-202)) (|:| |relerr| (-202))))
+ (-5 *2 (-960)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-1085))
+ (-4 *4 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-568 *4 *2)) (-4 *2 (-13 (-1106) (-887) (-29 *4))))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
+ (-5 *2 (-960)) (-5 *1 (-688)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-588 *7)) (-5 *3 (-522)) (-4 *7 (-878 *4 *5 *6))
+ (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-5 *1 (-423 *4 *5 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-156)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
+ (-4 *4 (-971)))))
(((*1 *1 *1) (-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729))))
((*1 *2 *1) (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1014))))
((*1 *2 *1)
(-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157))
- (-4 *6 (-215 (-3480 *3) (-708)))
+ (-4 *6 (-215 (-3591 *3) (-708)))
(-14 *7
- (-1 (-108) (-2 (|:| -2717 *5) (|:| -1400 *6))
- (-2 (|:| -2717 *5) (|:| -1400 *6))))
+ (-1 (-108) (-2 (|:| -2882 *5) (|:| -3858 *6))
+ (-2 (|:| -2882 *5) (|:| -3858 *6))))
(-5 *2 (-651 *5 *6 *7)) (-5 *1 (-435 *3 *4 *5 *6 *7 *8))
(-4 *5 (-784)) (-4 *8 (-878 *4 *6 (-794 *3)))))
((*1 *2 *1)
@@ -5706,113 +5369,97 @@
((*1 *1 *1)
(-12 (-4 *1 (-900 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-729))
(-4 *4 (-784)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *4 (-522))) (-5 *5 (-1 (-1066 *4))) (-4 *4 (-338))
- (-4 *4 (-971)) (-5 *2 (-1066 *4)) (-5 *1 (-1070 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-588 (-628 (-291 (-522))))) (-5 *1 (-956)))))
-(((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-426)) (-4 *4 (-757))
- (-14 *5 (-1085)) (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 *1)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5))
+ (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5))
+ (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-971)) (-5 *1 (-628 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 *4)) (-4 *4 (-971)) (-4 *1 (-1035 *3 *4 *5 *6))
+ (-4 *5 (-215 *3 *4)) (-4 *6 (-215 *3 *4)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2308 (-719 *3)) (|:| |coef2| (-719 *3))))
+ (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *2 (-2 (|:| -2308 *1) (|:| |coef2| *1)))
+ (-4 *1 (-985 *3 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-128 *5 *6 *7)) (-14 *5 (-522))
+ (-14 *6 (-708)) (-4 *7 (-157)) (-4 *8 (-157))
+ (-5 *2 (-128 *5 *6 *8)) (-5 *1 (-127 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *9)) (-4 *9 (-971)) (-4 *5 (-784)) (-4 *6 (-730))
+ (-4 *8 (-971)) (-4 *2 (-878 *9 *7 *5))
+ (-5 *1 (-666 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-730))
+ (-4 *4 (-878 *8 *6 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
+ (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730))
+ (-5 *2 (-108)) (-5 *1 (-474 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))))
(((*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-1068)))))
-(((*1 *1 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157))))
- ((*1 *1 *1 *1) (-4 *1 (-447)))
- ((*1 *1 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157))))
- ((*1 *2 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-812))))
- ((*1 *1 *1) (-5 *1 (-898)))
- ((*1 *1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085))
- (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-253 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 *5)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522))
- (-14 *4 (-708)) (-4 *5 (-157)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-878 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-426))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *3 (-985 *4 *5 *6))
- (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *1))))
- (-4 *1 (-990 *4 *5 *6 *3))))
- ((*1 *1 *1) (-4 *1 (-1124)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-514)) (-5 *1 (-1145 *3 *2))
- (-4 *2 (-13 (-1142 *3) (-514) (-10 -8 (-15 -2259 ($ $ $))))))))
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-324))
+ (-5 *2 (-588 (-2 (|:| |deg| (-708)) (|:| -2592 *3))))
+ (-5 *1 (-194 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971))))
+ ((*1 *1 *1) (-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-971)) (-4 *3 (-780)))))
(((*1 *2 *1) (-12 (-4 *1 (-301 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971))))
((*1 *2 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)))))
-(((*1 *2)
- (|partial| -12 (-4 *4 (-1124)) (-4 *5 (-1142 (-382 *2)))
- (-4 *2 (-1142 *4)) (-5 *1 (-316 *3 *4 *2 *5))
- (-4 *3 (-317 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-317 *3 *2 *4)) (-4 *3 (-1124))
- (-4 *4 (-1142 (-382 *2))) (-4 *2 (-1142 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-971)) (-5 *2 (-1166 *3)) (-5 *1 (-650 *3 *4))
- (-4 *4 (-1142 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-708)) (-4 *4 (-971))
- (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-1142 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085))
- (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-539 *3)) (-5 *1 (-401 *5 *3))
- (-4 *3 (-13 (-1106) (-29 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1166 *5)) (-4 *5 (-729)) (-5 *2 (-108))
+ (-5 *1 (-779 *4 *5)) (-14 *4 (-708)))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-588 (-588 *7)))
+ (-5 *1 (-422 *4 *5 *6 *7)) (-5 *3 (-588 *7))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730))
+ (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-588 (-588 *8)))
+ (-5 *1 (-422 *5 *6 *7 *8)) (-5 *3 (-588 *8))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-588 (-588 *7)))
+ (-5 *1 (-422 *4 *5 *6 *7)) (-5 *3 (-588 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-962 (-522)) (-135)))
- (-5 *2 (-539 (-382 (-881 *5)))) (-5 *1 (-528 *5))
- (-5 *3 (-382 (-881 *5))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-4 *6 (-1142 *9)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-283))
- (-4 *10 (-878 *9 *7 *8))
- (-5 *2
- (-2 (|:| |deter| (-588 (-1081 *10)))
- (|:| |dterm|
- (-588 (-588 (-2 (|:| -2522 (-708)) (|:| |pcoef| *10)))))
- (|:| |nfacts| (-588 *6)) (|:| |nlead| (-588 *10))))
- (-5 *1 (-715 *6 *7 *8 *9 *10)) (-5 *3 (-1081 *10)) (-5 *4 (-588 *6))
- (-5 *5 (-588 *10)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1015 *3 *4)) (-14 *3 (-850))
- (-14 *4 (-850)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-13 (-782) (-338))) (-5 *2 (-108)) (-5 *1 (-981 *4 *3))
- (-4 *3 (-1142 *4)))))
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730))
+ (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-588 (-588 *8)))
+ (-5 *1 (-422 *5 *6 *7 *8)) (-5 *3 (-588 *8)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 *5)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522))
+ (-14 *4 (-708)) (-4 *5 (-157)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-454 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971))
- (-5 *2 (-881 *5)) (-5 *1 (-873 *4 *5)))))
+ (-12 (-5 *3 (-1081 (-522))) (-5 *2 (-522)) (-5 *1 (-871)))))
+(((*1 *1 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-1014)) (-4 *2 (-343)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1085)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-640 *3 *5 *6 *7))
+ (-4 *3 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120))
+ (-4 *7 (-1120))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085)) (-5 *2 (-1 *6 *5)) (-5 *1 (-645 *3 *5 *6))
+ (-4 *3 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120)))))
(((*1 *2 *1)
(-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729))
(-5 *2 (-108))))
((*1 *2 *1) (-12 (-4 *1 (-405 *3)) (-4 *3 (-784)) (-5 *2 (-108)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1085)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-539 *3)) (-4 *3 (-338)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-588 (-1139 *5 *4)))
- (-5 *1 (-1028 *4 *5)) (-5 *3 (-1139 *5 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| |k| (-613 *3)) (|:| |c| *4))))
- (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784))
- (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))))
-(((*1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-522)) (-4 *3 (-157)) (-4 *5 (-348 *3))
- (-4 *6 (-348 *3)) (-5 *1 (-627 *3 *5 *6 *2))
- (-4 *2 (-626 *3 *5 *6)))))
-(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *6))))
- (-5 *4 (-951 (-777 (-522)))) (-5 *5 (-1085)) (-5 *7 (-382 (-522)))
- (-4 *6 (-971)) (-5 *2 (-792)) (-5 *1 (-547 *6)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-13 (-514) (-135)))
+ (-5 *2 (-2 (|:| -1993 *3) (|:| -2002 *3))) (-5 *1 (-1136 *4 *3))
+ (-4 *3 (-1142 *4)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-588 (-522))) (-5 *1 (-1024)) (-5 *3 (-522)))))
+(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-132)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
(((*1 *1 *1) (-4 *1 (-220)))
((*1 *1 *1)
(-12 (-4 *2 (-157)) (-5 *1 (-265 *2 *3 *4 *5 *6 *7))
@@ -5820,7 +5467,7 @@
(-14 *6 (-1 (-3 *4 "failed") *4 *4))
(-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
((*1 *1 *1)
- (-3708 (-12 (-5 *1 (-270 *2)) (-4 *2 (-338)) (-4 *2 (-1120)))
+ (-3844 (-12 (-5 *1 (-270 *2)) (-4 *2 (-338)) (-4 *2 (-1120)))
(-12 (-5 *1 (-270 *2)) (-4 *2 (-447)) (-4 *2 (-1120)))))
((*1 *1 *1) (-4 *1 (-447)))
((*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-324)) (-5 *1 (-492 *3))))
@@ -5829,93 +5476,78 @@
(-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 (-734 *2)) (-4 *2 (-157)) (-4 *2 (-338)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-5 *2 (-382 *1)) (-4 *1 (-1142 *3)) (-4 *3 (-971))
- (-4 *3 (-514))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-514)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-527 *3)) (-4 *3 (-962 (-522)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-110))))
+ ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-110))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784))
+ (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-708))))
((*1 *2 *1)
+ (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784))
+ (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-708))))
+ ((*1 *2 *1) (-12 (-4 *1 (-242 *3)) (-4 *3 (-784)) (-5 *2 (-708)))))
+(((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-382 *6)) (|:| |h| *6)
+ (|:| |c1| (-382 *6)) (|:| |c2| (-382 *6)) (|:| -1704 *6)))
+ (-5 *1 (-942 *5 *6)) (-5 *3 (-382 *6)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -2585 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-338)) (-4 *7 (-1142 *6))
+ (-5 *2
+ (-3 (-2 (|:| |answer| (-382 *7)) (|:| |a0| *6))
+ (-2 (|:| -2585 (-382 *7)) (|:| |coeff| (-382 *7))) "failed"))
+ (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
+ (-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 (-171)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *1)
(-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
(-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))
- (-5 *2 (-382 (-522))) (-5 *1 (-945 *4)) (-4 *4 (-1142 (-522))))))
-(((*1 *2)
- (-12 (-4 *3 (-514)) (-5 *2 (-588 (-628 *3))) (-5 *1 (-42 *3 *4))
- (-4 *4 (-392 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085))
- (-4 *5 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-539 *3)) (-5 *1 (-515 *5 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
-(((*1 *1 *2 *2 *2)
- (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106)))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338))))
- ((*1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338))))
- ((*1 *2 *1 *3 *4 *4)
- (-12 (-5 *3 (-850)) (-5 *4 (-354)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-628 *4)) (-5 *3 (-850)) (-4 *4 (-971))
- (-5 *1 (-953 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-588 (-628 *4))) (-5 *3 (-850)) (-4 *4 (-971))
- (-5 *1 (-953 *4)))))
-(((*1 *2 *3 *4 *4 *3 *5)
- (-12 (-5 *4 (-561 *3)) (-5 *5 (-1081 *3))
- (-4 *3 (-13 (-405 *6) (-27) (-1106)))
- (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2 (-539 *3)) (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014))))
- ((*1 *2 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *4 (-561 *3)) (-5 *5 (-382 (-1081 *3)))
- (-4 *3 (-13 (-405 *6) (-27) (-1106)))
- (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2 (-539 *3)) (-5 *1 (-518 *6 *3 *7)) (-4 *7 (-1014)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-291 (-522))) (|:| -4055 (-291 (-354)))
+ (-3 (|:| I (-291 (-522))) (|:| -4102 (-291 (-354)))
(|:| CF (-291 (-154 (-354)))) (|:| |switch| (-1084))))
(-5 *1 (-1084)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *3 (-588 (-239)))
- (-5 *1 (-237))))
- ((*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-239))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-442))))
- ((*1 *2 *1) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-442)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-37 (-382 (-522))))
- (-4 *2 (-157)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3 (-522))) (-4 *3 (-971)) (-5 *1 (-94 *3))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-94 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-94 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-1166 *5))) (-5 *4 (-522)) (-5 *2 (-1166 *5))
+ (-5 *1 (-954 *5)) (-4 *5 (-338)) (-4 *5 (-343)) (-4 *5 (-971)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-89 *3)))))
(((*1 *1)
(-12 (-4 *3 (-1014)) (-5 *1 (-814 *2 *3 *4)) (-4 *2 (-1014))
(-4 *4 (-608 *3))))
((*1 *1) (-12 (-5 *1 (-818 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *4 *3 *5))
- (-4 *3 (-1142 *4))
- (-4 *5 (-13 (-379) (-962 *4) (-338) (-1106) (-260))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2))
- (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-157))
- (-5 *1 (-627 *2 *4 *5 *3)) (-4 *3 (-626 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2))
- (-4 *5 (-215 *3 *2)) (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-302 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-485 *3 *4))
- (-14 *4 (-522)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-588 (-588 (-588 *4)))) (-5 *3 (-588 *4)) (-4 *4 (-784))
+ (-5 *1 (-1092 *4)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
+ (-5 *2
+ (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522))
+ (|:| |success| (-108))))
+ (-5 *1 (-726)) (-5 *5 (-522)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1085))
(-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
@@ -5953,42 +5585,30 @@
((*1 *1 *2 *3)
(-12 (-5 *2 (-382 (-522))) (-4 *4 (-971)) (-4 *1 (-1149 *4 *3))
(-4 *3 (-1126 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))
- (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-588 *7)) (-5 *3 (-108)) (-4 *7 (-985 *4 *5 *6))
- (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
- (-5 *1 (-904 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343))
- (-5 *2 (-1081 *3)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
+ (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
+ (-5 *2 (-960)) (-5 *1 (-690)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-110)) (-4 *2 (-1014)) (-4 *2 (-784))
- (-5 *1 (-109 *2)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-291 (-202))) (-5 *4 (-1085))
- (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-171))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-291 (-202))) (-5 *4 (-1085))
- (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-588 (-202))) (-5 *1 (-276)))))
+ (-12 (-5 *3 (-588 *4)) (-4 *4 (-971)) (-5 *2 (-1166 *4))
+ (-5 *1 (-1086 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-850)) (-5 *2 (-1166 *3)) (-5 *1 (-1086 *3))
+ (-4 *3 (-971)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-708)) (-4 *5 (-514))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))))
+(((*1 *1 *1 *1) (-5 *1 (-792))))
(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-522)) (-5 *3 (-850)) (-4 *1 (-379))))
((*1 *1 *2 *2) (-12 (-5 *2 (-522)) (-4 *1 (-379))))
((*1 *2 *1)
(-12 (-4 *1 (-1017 *3 *4 *5 *2 *6)) (-4 *3 (-1014)) (-4 *4 (-1014))
(-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))))
-(((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169))))
- ((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1059 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-850)) (-5 *1 (-723)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1085))
(-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
@@ -6025,17 +5645,18 @@
(-4 *3 (-1157 *4))))
((*1 *2 *1)
(-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1126 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
- (-4 *3 (-342 *4))))
- ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-117 *2)) (-4 *2 (-784)))))
-(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-92)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-588 (-156)))))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *2 (-784))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)))))
+(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-803))))
+ ((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-338) (-962 (-382 *2)))) (-5 *2 (-522))
+ (-5 *1 (-111 *4 *3)) (-4 *3 (-1142 *4)))))
(((*1 *2 *2 *3)
(-12 (-5 *3 (-382 (-522))) (-4 *4 (-962 (-522)))
(-4 *4 (-13 (-784) (-514))) (-5 *1 (-31 *4 *2)) (-4 *2 (-405 *4))))
@@ -6107,13 +5728,19 @@
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1142 *5))
- (-5 *1 (-665 *5 *2)) (-4 *5 (-338)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-382 (-522)))
- (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-253 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-348 *2)) (-4 *2 (-1120)) (-4 *2 (-784))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-348 *3)) (-4 *3 (-1120))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-896 *2)) (-4 *2 (-784))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971))))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-1074 *3 *4))) (-5 *1 (-1074 *3 *4))
+ (-14 *3 (-850)) (-4 *4 (-971))))
+ ((*1 *1 *1 *1)
+ (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1085))
(-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
@@ -6159,35 +5786,105 @@
(-5 *2 (-51)) (-5 *1 (-433 *7 *3))))
((*1 *2 *1)
(-12 (-4 *1 (-1128 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1157 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
+ (-4 *3 (-985 *6 *7 *8))
+ (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4))))
+ (-5 *1 (-991 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1974 *9))))
+ (-5 *5 (-108)) (-4 *8 (-985 *6 *7 *4)) (-4 *9 (-990 *6 *7 *4 *8))
+ (-4 *6 (-426)) (-4 *7 (-730)) (-4 *4 (-784))
+ (-5 *2 (-588 (-2 (|:| |val| *8) (|:| -1974 *9))))
+ (-5 *1 (-991 *6 *7 *4 *8 *9)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-881 (-154 *4))) (-4 *4 (-157))
+ (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-881 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-157))
+ (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 (-354)))
+ (-5 *2 (-154 (-354))) (-5 *1 (-722 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971))
+ (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514))
+ (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514))
+ (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-382 (-881 (-154 *4)))) (-4 *4 (-514))
+ (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-382 (-881 (-154 *5)))) (-5 *4 (-850))
+ (-4 *5 (-514)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354)))
+ (-5 *1 (-722 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784))
+ (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514))
+ (-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354)))
+ (-5 *1 (-722 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-291 (-154 *4))) (-4 *4 (-514)) (-4 *4 (-784))
+ (-4 *4 (-563 (-354))) (-5 *2 (-154 (-354))) (-5 *1 (-722 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-291 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-514))
+ (-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354)))
+ (-5 *1 (-722 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-426)) (-4 *3 (-784)) (-4 *3 (-962 (-522)))
+ (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-405 *3))
+ (-4 *2
+ (-13 (-338) (-278)
+ (-10 -8 (-15 -2947 ((-1037 *3 (-561 $)) $))
+ (-15 -2959 ((-1037 *3 (-561 $)) $))
+ (-15 -2217 ($ (-1037 *3 (-561 $))))))))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
+ (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
+ (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
+ (|:| |abserr| (-202)) (|:| |relerr| (-202))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))))
+ (-5 *1 (-184)))))
+(((*1 *1) (-5 *1 (-143))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *2 (-784))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-730)) (-4 *5 (-971)) (-4 *6 (-878 *5 *4 *2))
+ (-4 *2 (-784)) (-5 *1 (-879 *4 *2 *5 *6 *3))
+ (-4 *3
+ (-13 (-338)
+ (-10 -8 (-15 -2217 ($ *6)) (-15 -2947 (*6 $))
+ (-15 -2959 (*6 $)))))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514))
+ (-5 *2 (-1085)) (-5 *1 (-967 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-881 (-202))) (-5 *2 (-202)) (-5 *1 (-281)))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-283))
- (-5 *2 (-708)) (-5 *1 (-429 *5 *3)))))
-(((*1 *1 *1) (-4 *1 (-507))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
- (-4 *3 (-342 *4))))
- ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1032)) (-5 *2 (-108)) (-5 *1 (-758)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4238)) (-4 *1 (-461 *4))
- (-4 *4 (-1120)) (-5 *2 (-108)))))
-(((*1 *1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-239))))
- ((*1 *1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-239)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-777 (-202)))) (-5 *4 (-202)) (-5 *2 (-588 *4))
- (-5 *1 (-243)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-588 *6)) (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971))
- (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
- (-4 *3 (-514)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-708)) (-4 *4 (-283)) (-4 *6 (-1142 *4))
- (-5 *2 (-1166 (-588 *6))) (-5 *1 (-429 *4 *6)) (-5 *5 (-588 *6)))))
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-708)) (-5 *3 (-872 *4)) (-4 *1 (-1046 *4))
+ (-4 *4 (-971))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-708)) (-5 *4 (-872 (-202))) (-5 *2 (-1171))
+ (-5 *1 (-1168)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-855)))))
(((*1 *2 *3)
(-12
(-5 *3
(-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
(|:| |relerr| (-202))))
(-5 *2
(-2
@@ -6205,7 +5902,7 @@
(-3 (|:| |str| (-1066 (-202)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -2386
+ (|:| -2321
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -6213,99 +5910,86 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-517)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-393 *2)) (-4 *2 (-283)) (-5 *1 (-843 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085))
- (-4 *5 (-13 (-283) (-135))) (-5 *2 (-51)) (-5 *1 (-844 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-393 (-881 *6))) (-5 *5 (-1085)) (-5 *3 (-881 *6))
- (-4 *6 (-13 (-283) (-135))) (-5 *2 (-51)) (-5 *1 (-844 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-382 (-522))) (-5 *1 (-281)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *1 (-109 *3)) (-4 *3 (-784)) (-4 *3 (-1014)))))
-(((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *1 *1 *1) (-4 *1 (-278))) ((*1 *1 *1) (-4 *1 (-278))))
-(((*1 *2 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-317 *4 *5 *6)) (-4 *4 (-1124))
- (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5)))
- (-5 *2 (-2 (|:| |num| (-628 *5)) (|:| |den| *5))))))
-(((*1 *2 *2) (-12 (-5 *2 (-588 (-291 (-202)))) (-5 *1 (-243)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068))
- (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))))
+(((*1 *2)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-121 *2)) (-4 *2 (-1014)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4)))
+ (-5 *2 (-2 (|:| |num| (-1166 *4)) (|:| |den| *4))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-522)) (-4 *4 (-1142 (-382 *3))) (-5 *2 (-850))
- (-5 *1 (-842 *4 *5)) (-4 *5 (-1142 (-382 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1088)) (-5 *3 (-1085)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-202)) (-5 *4 (-522))
- (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960))
- (-5 *1 (-686)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-818 *4 *5)) (-5 *3 (-818 *4 *6)) (-4 *4 (-1014))
- (-4 *5 (-1014)) (-4 *6 (-608 *5)) (-5 *1 (-814 *4 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-338))
- (-5 *2 (-588 (-2 (|:| C (-628 *5)) (|:| |g| (-1166 *5)))))
- (-5 *1 (-905 *5)) (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)))))
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-588 (-628 (-522))))
+ (-5 *1 (-1024)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085))
+ (-14 *4 *2))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-708)) (-4 *4 (-13 (-971) (-655 (-382 (-522)))))
+ (-4 *5 (-784)) (-5 *1 (-1180 *4 *5 *2)) (-4 *2 (-1185 *5 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-1 (-108) *8))) (-4 *8 (-985 *5 *6 *7))
- (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-2 (|:| |goodPols| (-588 *8)) (|:| |badPols| (-588 *8))))
- (-5 *1 (-904 *5 *6 *7 *8)) (-5 *4 (-588 *8)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
- (-4 *3 (-342 *4))))
- ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-507))))
- ((*1 *1 *1) (-4 *1 (-980))))
-(((*1 *1 *1 *1) (-4 *1 (-699))))
+ (-12 (-5 *4 (-522)) (-4 *5 (-324)) (-5 *2 (-393 (-1081 (-1081 *5))))
+ (-5 *1 (-1119 *5)) (-5 *3 (-1081 (-1081 *5))))))
+(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-354)) (-5 *1 (-964)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-708)) (-4 *2 (-514)) (-5 *1 (-897 *2 *4))
+ (-4 *4 (-1142 *2)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (-5 *2 (-108)) (-5 *1 (-276)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-708)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5))
- (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
- ((*1 *1 *2)
- (-12 (-4 *2 (-971)) (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2))
- (-4 *5 (-215 *3 *2)))))
+ (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 (-522)))
+ (-5 *2 (-1166 (-522))) (-5 *1 (-1191 *4)))))
+(((*1 *1 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))))
+(((*1 *1 *1) (-5 *1 (-983))))
+(((*1 *2 *1)
+ (|partial| -12
+ (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426)))
+ (-5 *2 (-777 *4)) (-5 *1 (-288 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1106) (-405 *3))) (-14 *5 (-1085))
+ (-14 *6 *4)))
+ ((*1 *2 *1)
+ (|partial| -12
+ (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426)))
+ (-5 *2 (-777 *4)) (-5 *1 (-1152 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1106) (-405 *3))) (-14 *5 (-1085))
+ (-14 *6 *4))))
+(((*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-516 *3)) (-4 *3 (-507))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-5 *2 (-393 *3))
+ (-5 *1 (-680 *4 *5 *6 *3)) (-4 *3 (-878 *6 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283))
+ (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-393 (-1081 *7)))
+ (-5 *1 (-680 *4 *5 *6 *7)) (-5 *3 (-1081 *7))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-426)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *2 (-393 *1)) (-4 *1 (-878 *3 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-784)) (-4 *5 (-730)) (-4 *6 (-426)) (-5 *2 (-393 *3))
+ (-5 *1 (-906 *4 *5 *6 *3)) (-4 *3 (-878 *6 *5 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-426))
+ (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-393 (-1081 (-382 *7))))
+ (-5 *1 (-1080 *4 *5 *6 *7)) (-5 *3 (-1081 (-382 *7)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-393 *1)) (-4 *1 (-1124))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-393 *3)) (-5 *1 (-1145 *4 *3))
+ (-4 *3 (-13 (-1142 *4) (-514) (-10 -8 (-15 -2308 ($ $ $)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947)))
+ (-14 *5 (-588 (-1085)))
+ (-5 *2
+ (-588 (-1056 *4 (-494 (-794 *6)) (-794 *6) (-717 *4 (-794 *6)))))
+ (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085))))))
(((*1 *2 *3 *1)
- (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730))
- (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
-(((*1 *2)
- (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
- (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171))
- (-5 *1 (-915 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
- (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171))
- (-5 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))))
-(((*1 *1 *1) (-12 (-5 *1 (-393 *2)) (-4 *2 (-514)))))
-(((*1 *2 *1) (-12 (-4 *1 (-324)) (-5 *2 (-708))))
- ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-377)) (-5 *2 (-708)))))
+ (-12 (-4 *4 (-338)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-474 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))))
(((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-588 (-239))) (-5 *4 (-1085))
(-5 *1 (-238 *2)) (-4 *2 (-1120))))
@@ -6313,129 +5997,59 @@
(|partial| -12 (-5 *3 (-588 (-239))) (-5 *4 (-1085)) (-5 *2 (-51))
(-5 *1 (-239)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-886 *3)) (-5 *1 (-1073 *4 *3))
- (-4 *3 (-1142 *4)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-108)) (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3))
- (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3))
- (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784))
- (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-588 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-971)) (-5 *2 (-108)) (-5 *1 (-418 *4 *3))
- (-4 *3 (-1142 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *2 (-108)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-856)))))
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3))
+ (-4 *3 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108))
+ (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-157)) (-4 *2 (-23)) (-5 *1 (-265 *3 *4 *2 *5 *6 *7))
- (-4 *4 (-1142 *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 (-649 *3 *2 *4 *5 *6)) (-4 *3 (-157))
- (-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 (-1142 *3)) (-5 *1 (-650 *3 *2)) (-4 *3 (-971))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-23)) (-5 *1 (-653 *3 *2 *4 *5 *6)) (-4 *3 (-157))
- (-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 (-798 *3)) (-5 *2 (-522)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 (-708))) (-5 *3 (-108)) (-5 *1 (-1074 *4 *5))
- (-14 *4 (-850)) (-4 *5 (-971)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-1 (-108) *8))) (-4 *8 (-985 *5 *6 *7))
- (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-2 (|:| |goodPols| (-588 *8)) (|:| |badPols| (-588 *8))))
- (-5 *1 (-904 *5 *6 *7 *8)) (-5 *4 (-588 *8)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33)))
- (-4 *3 (-13 (-1014) (-33))))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-588 (-881 *6))) (-5 *4 (-588 (-1085))) (-4 *6 (-426))
- (-5 *2 (-588 (-588 *7))) (-5 *1 (-500 *6 *7 *5)) (-4 *7 (-338))
- (-4 *5 (-13 (-338) (-782))))))
-(((*1 *1 *1) (|partial| -4 *1 (-1061))))
+ (-12 (-4 *1 (-310 *3 *4 *5 *6)) (-4 *3 (-338)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5))
+ (-5 *2 (-388 *4 (-382 *4) *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1166 *6)) (-4 *6 (-13 (-384 *4 *5) (-962 *4)))
+ (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-4 *3 (-283))
+ (-5 *1 (-388 *3 *4 *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-338))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)))))
(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
- (-4 *3 (-342 *4))))
- ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
-(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354))))
- ((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-354)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-971)) (-5 *1 (-418 *3 *2)) (-4 *2 (-1142 *3)))))
+ (-12 (-5 *2 (-886 (-1032))) (-5 *1 (-318 *3 *4)) (-14 *3 (-850))
+ (-14 *4 (-850))))
+ ((*1 *2)
+ (-12 (-5 *2 (-886 (-1032))) (-5 *1 (-319 *3 *4)) (-4 *3 (-324))
+ (-14 *4 (-1081 *3))))
+ ((*1 *2)
+ (-12 (-5 *2 (-886 (-1032))) (-5 *1 (-320 *3 *4)) (-4 *3 (-324))
+ (-14 *4 (-850)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-856)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-971)) (-4 *2 (-626 *4 *5 *6))
- (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1142 *4)) (-4 *5 (-348 *4))
- (-4 *6 (-348 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-108)) (-5 *1 (-766)))))
-(((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-332 *3)) (-4 *3 (-324)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-850)) (-5 *2 (-442)) (-5 *1 (-1167)))))
-(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-110)) (-4 *4 (-971)) (-5 *1 (-652 *4 *2))
- (-4 *2 (-590 *4))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-110)) (-5 *1 (-771 *2)) (-4 *2 (-971)))))
-(((*1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1088)))))
-(((*1 *1) (-5 *1 (-267))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-4 *3 (-514))
- (-5 *2 (-1081 *3)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-522)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-393 *2)) (-4 *2 (-514)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-522)) (-5 *1 (-218))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-522)) (-5 *1 (-218)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1014)) (-5 *2 (-108)) (-5 *1 (-814 *3 *4 *5))
- (-4 *3 (-1014)) (-4 *5 (-608 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-818 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-1014)))))
+ (-12 (-4 *4 (-426)) (-4 *4 (-514))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| -1920 *4))) (-5 *1 (-897 *4 *3))
+ (-4 *3 (-1142 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-171))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-276))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-281)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1188 *3 *4)) (-4 *1 (-349 *3 *4)) (-4 *3 (-784))
- (-4 *4 (-157))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-361 *2)) (-4 *2 (-1014))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-756 *3)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784))
- (-4 *4 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))))
-(((*1 *2)
- (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-838))
- (-5 *1 (-431 *3 *4 *2 *5)) (-4 *5 (-878 *2 *3 *4))))
- ((*1 *2)
- (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *2 (-838))
- (-5 *1 (-835 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4))))
- ((*1 *2) (-12 (-4 *2 (-838)) (-5 *1 (-836 *2 *3)) (-4 *3 (-1142 *2)))))
-(((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-708)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167))))
- ((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-708)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+ (-12 (-5 *3 (-588 (-588 (-588 *4)))) (-5 *2 (-588 (-588 *4)))
+ (-5 *1 (-1092 *4)) (-4 *4 (-784)))))
+(((*1 *1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-239))))
+ ((*1 *1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-239)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-589 *3)) (-4 *3 (-1014)))))
+(((*1 *1 *2 *2) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812))
+ (-5 *3 (-588 (-522))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1052 *3 *4)) (-14 *3 (-850)) (-4 *4 (-338))
+ (-5 *1 (-920 *3 *4)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-983)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-784) (-514))) (-5 *2 (-108)) (-5 *1 (-252 *4 *3))
- (-4 *3 (-13 (-405 *4) (-928))))))
+ (-12 (-5 *3 (-291 (-354))) (-5 *2 (-291 (-202))) (-5 *1 (-281)))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-588 (-588 (-202)))) (-5 *4 (-202))
+ (-5 *2 (-588 (-872 *4))) (-5 *1 (-1117)) (-5 *3 (-872 *4)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-339 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-110))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-1068)) (-4 *4 (-784)) (-5 *1 (-858 *4 *2))
@@ -6443,17 +6057,22 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-1085)) (-5 *4 (-1068)) (-5 *2 (-291 (-522)))
(-5 *1 (-859)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-522)) (-5 *2 (-588 (-588 (-202)))) (-5 *1 (-1117)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-514)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
- (-5 *1 (-1111 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-442)) (-5 *4 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
-(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-697)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354)))
+ (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171))
+ (-5 *1 (-725))))
+ ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
+ (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354)))
+ (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171))
+ (-5 *1 (-725)))))
+(((*1 *2 *3 *2)
+ (-12
+ (-5 *2
+ (-588
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *3)
+ (|:| |polj| *3))))
+ (-4 *5 (-730)) (-4 *3 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *6 (-784))
+ (-5 *1 (-423 *4 *5 *6 *3)))))
(((*1 *2 *3 *1)
(-12 (-5 *3 (-1188 *4 *2)) (-4 *1 (-349 *4 *2)) (-4 *4 (-784))
(-4 *2 (-157))))
@@ -6465,22 +6084,28 @@
((*1 *2 *1 *3)
(-12 (-4 *2 (-971)) (-5 *1 (-1187 *2 *3)) (-4 *3 (-780)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3266 (-522)))))
- (-5 *1 (-336 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3266 (-708)))))
- (-5 *1 (-361 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| -1916 *3) (|:| -1400 (-522)))))
- (-5 *1 (-393 *3)) (-4 *3 (-514))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3266 (-708)))))
- (-5 *1 (-756 *3)) (-4 *3 (-784)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *2)) (-4 *2 (-157))))
- ((*1 *2) (-12 (-4 *2 (-157)) (-5 *1 (-391 *3 *2)) (-4 *3 (-392 *2))))
- ((*1 *2) (-12 (-4 *1 (-392 *2)) (-4 *2 (-157)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *2) (-12 (-5 *2 (-291 (-202))) (-5 *1 (-243)))))
+ (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *5 (-343))
+ (-5 *2 (-708)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)))))
+(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-898)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-522)) (-4 *1 (-298 *2 *4)) (-4 *4 (-124))
+ (-4 *2 (-1014))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-336 *2)) (-4 *2 (-1014))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-361 *2)) (-4 *2 (-1014))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-522)) (-4 *2 (-1014)) (-5 *1 (-591 *2 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4)))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *1 (-756 *2)) (-4 *2 (-784)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-621 *2)) (-4 *2 (-1014))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 (-588 *5) (-588 *5))) (-5 *4 (-522))
+ (-5 *2 (-588 *5)) (-5 *1 (-621 *5)) (-4 *5 (-1014)))))
(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-287)) (-5 *1 (-272))))
((*1 *2 *3)
(-12 (-5 *3 (-588 (-1068))) (-5 *2 (-287)) (-5 *1 (-272))))
@@ -6488,108 +6113,122 @@
((*1 *2 *3 *4)
(-12 (-5 *4 (-588 (-1068))) (-5 *3 (-1068)) (-5 *2 (-287))
(-5 *1 (-272)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-981 (-949 *4) (-1081 (-949 *4)))) (-5 *3 (-792))
+ (-5 *1 (-949 *4)) (-4 *4 (-13 (-782) (-338) (-947))))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
- (-4 *3 (-985 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-588 *4))
- (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))))
- (-5 *1 (-988 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3))))
+ (-12 (-5 *5 (-1085))
+ (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-4 *4 (-13 (-29 *6) (-1106) (-887)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -2905 (-588 *4))))
+ (-5 *1 (-738 *6 *4 *3)) (-4 *3 (-598 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-628 *4)) (-5 *3 (-850)) (|has| *4 (-6 (-4240 "*")))
+ (-4 *4 (-971)) (-5 *1 (-953 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-588 (-628 *4))) (-5 *3 (-850))
+ (|has| *4 (-6 (-4240 "*"))) (-4 *4 (-971)) (-5 *1 (-953 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-595 (-382 *6))) (-5 *4 (-1 (-588 *5) *6))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-4 *6 (-1142 *5)) (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-595 (-382 *7))) (-5 *4 (-1 (-588 *6) *7))
+ (-5 *5 (-1 (-393 *7) *7))
+ (-4 *6 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-4 *7 (-1142 *6)) (-5 *2 (-588 (-382 *7))) (-5 *1 (-749 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-588 *4))
- (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))))
- (-5 *1 (-1055 *5 *6 *7 *3 *4)) (-4 *4 (-1023 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1085)) (-5 *5 (-1009 (-202))) (-5 *2 (-856))
- (-5 *1 (-854 *3)) (-4 *3 (-563 (-498)))))
+ (-12 (-5 *3 (-596 *6 (-382 *6))) (-5 *4 (-1 (-588 *5) *6))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-4 *6 (-1142 *5)) (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-596 *7 (-382 *7))) (-5 *4 (-1 (-588 *6) *7))
+ (-5 *5 (-1 (-393 *7) *7))
+ (-4 *6 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-4 *7 (-1142 *6)) (-5 *2 (-588 (-382 *7))) (-5 *1 (-749 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-595 (-382 *5))) (-4 *5 (-1142 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-5 *2 (-588 (-382 *5))) (-5 *1 (-749 *4 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085)) (-5 *2 (-856)) (-5 *1 (-854 *3))
- (-4 *3 (-563 (-498)))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *1 (-856))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-856)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-522)) (-5 *4 (-393 *2)) (-4 *2 (-878 *7 *5 *6))
- (-5 *1 (-680 *5 *6 *7 *2)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-283)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+ (-12 (-5 *3 (-595 (-382 *6))) (-5 *4 (-1 (-393 *6) *6))
+ (-4 *6 (-1142 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-596 *5 (-382 *5))) (-4 *5 (-1142 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-5 *2 (-588 (-382 *5))) (-5 *1 (-749 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-596 *6 (-382 *6))) (-5 *4 (-1 (-393 *6) *6))
+ (-4 *6 (-1142 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-850)) (-5 *1 (-140 *3 *4 *5)) (-14 *3 *2)
- (-4 *4 (-338)) (-14 *5 (-920 *3 *4)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-588
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202)))))
- (-5 *1 (-517))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-559 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-5 *2 (-588 *3))))
- ((*1 *2 *1)
(-12
(-5 *2
(-588
- (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
- (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
- (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
- (|:| |abserr| (-202)) (|:| |relerr| (-202)))))
- (-5 *1 (-740)))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202)))
- (-5 *2 (-960)) (-5 *1 (-692)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202)))
- (-5 *2 (-960)) (-5 *1 (-692)))))
-(((*1 *2 *3)
- (-12 (-14 *4 (-588 (-1085))) (-14 *5 (-708))
- (-5 *2
- (-588
- (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4)
- (-224 *4 (-382 (-522))))))
- (-5 *1 (-475 *4 *5))
- (-5 *3
- (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4)
- (-224 *4 (-382 (-522))))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-338) (-782))) (-5 *1 (-164 *3 *2))
- (-4 *2 (-1142 (-154 *3))))))
-(((*1 *2 *3 *4)
- (-12 (-4 *7 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-514))
- (-4 *8 (-878 *7 *5 *6))
- (-5 *2 (-2 (|:| -1400 (-708)) (|:| -2977 *3) (|:| |radicand| *3)))
- (-5 *1 (-882 *5 *6 *7 *8 *3)) (-5 *4 (-708))
- (-4 *3
- (-13 (-338)
- (-10 -8 (-15 -2805 (*8 $)) (-15 -2816 (*8 $)) (-15 -2190 ($ *8))))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *6))
- (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-834 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7))))
- (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
+ (-2
+ (|:| -2644
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
+ (|:| -3149
+ (-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| (-1066 (-202)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2321
+ (-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 (-517)))))
+(((*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
+ ((*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))))
+(((*1 *2 *1) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-850)) (-5 *1 (-140 *3 *4 *5)) (-14 *3 *2)
+ (-4 *4 (-338)) (-14 *5 (-920 *3 *4)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-270 (-770 *3)))
- (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-770 *3)) (-5 *1 (-581 *5 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-270 (-770 (-881 *5)))) (-4 *5 (-426))
- (-5 *2 (-770 (-382 (-881 *5)))) (-5 *1 (-582 *5))
- (-5 *3 (-382 (-881 *5)))))
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-803))
+ (-5 *5 (-850)) (-5 *6 (-588 (-239))) (-5 *2 (-442)) (-5 *1 (-1170))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *2 (-442))
+ (-5 *1 (-1170))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-270 (-382 (-881 *5)))) (-5 *3 (-382 (-881 *5)))
- (-4 *5 (-426)) (-5 *2 (-770 *3)) (-5 *1 (-582 *5)))))
+ (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-588 (-239)))
+ (-5 *2 (-442)) (-5 *1 (-1170)))))
+(((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))))
+(((*1 *2 *1 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-792) (-792) (-792))) (-5 *4 (-522)) (-5 *2 (-792))
+ (-5 *1 (-591 *5 *6 *7)) (-4 *5 (-1014)) (-4 *6 (-23)) (-14 *7 *6)))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-792)) (-5 *1 (-788 *3 *4 *5)) (-4 *3 (-971))
+ (-14 *4 (-94 *3)) (-14 *5 (-1 *3 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-792))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-792))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-792))))
+ ((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-792)) (-5 *1 (-1081 *3)) (-4 *3 (-971)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
(((*1 *1 *1) (-4 *1 (-507))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-808 (-1 (-202) (-202)))) (-5 *4 (-1009 (-354)))
@@ -6644,91 +6283,101 @@
(-12 (-5 *3 (-811 *5)) (-5 *4 (-1007 (-354)))
(-4 *5 (-13 (-563 (-498)) (-1014))) (-5 *2 (-1045 (-202)))
(-5 *1 (-235 *5)))))
+(((*1 *2 *2 *1 *3 *4)
+ (-12 (-5 *2 (-588 *8)) (-5 *3 (-1 *8 *8 *8))
+ (-5 *4 (-1 (-108) *8 *8)) (-4 *1 (-1114 *5 *6 *7 *8)) (-4 *5 (-514))
+ (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)))))
+(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-291 (-202)))) (-5 *2 (-108)) (-5 *1 (-243)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1142 *2)) (-4 *2 (-1124)) (-5 *1 (-136 *2 *4 *3))
+ (-4 *3 (-1142 (-382 *4))))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-108)) (-5 *5 (-628 (-154 (-202))))
+ (-5 *2 (-960)) (-5 *1 (-693)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-338)) (-5 *1 (-261 *3 *2)) (-4 *2 (-1157 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
(((*1 *2 *3 *2)
(-12 (-5 *2 (-1068)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-239))))
((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167))))
((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-514)) (-4 *3 (-971))
- (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-786 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-94 *5)) (-4 *5 (-514)) (-4 *5 (-971))
- (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-787 *5 *3))
- (-4 *3 (-786 *5)))))
-(((*1 *2 *2 *3 *3 *4)
- (-12 (-5 *4 (-708)) (-4 *3 (-514)) (-5 *1 (-897 *3 *2))
- (-4 *2 (-1142 *3)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-382 (-881 *4))) (-5 *3 (-1085))
- (-4 *4 (-13 (-514) (-962 (-522)) (-135))) (-5 *1 (-528 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6))
- (-5 *2 (-588 (-2 (|:| -1650 *1) (|:| -1544 (-588 *7)))))
- (-5 *3 (-588 *7)) (-4 *1 (-1114 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-2 (|:| -1916 (-1081 *6)) (|:| -1400 (-522)))))
- (-4 *6 (-283)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-522))
- (-5 *1 (-680 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
-(((*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637))))
- ((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))))
-(((*1 *1 *2 *3 *4)
- (-12
- (-5 *3
- (-588
- (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 *2))
- (|:| |logand| (-1081 *2)))))
- (-5 *4 (-588 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
- (-4 *2 (-338)) (-5 *1 (-539 *2)))))
-(((*1 *1 *1) (-5 *1 (-983))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343))
- (-5 *2 (-1081 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343))
- (-5 *2 (-1081 *3)))))
-(((*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169))))
- ((*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *4 (-561 *3)) (-5 *5 (-1 (-1081 *3) (-1081 *3)))
+ (-4 *3 (-13 (-27) (-405 *6))) (-4 *6 (-13 (-784) (-514)))
+ (-5 *2 (-539 *3)) (-5 *1 (-509 *6 *3)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-872 (-202))) (-5 *2 (-1171)) (-5 *1 (-442)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-154 (-202))))
+ (-5 *2 (-960)) (-5 *1 (-692)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-971)))))
+(((*1 *2 *1) (-12 (-4 *1 (-962 (-522))) (-4 *1 (-278)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2769 *4)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+ (|partial| -12 (-5 *3 (-628 (-382 (-881 (-522)))))
+ (-5 *2 (-628 (-291 (-522)))) (-5 *1 (-956)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-298 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-124))
+ (-4 *3 (-729)))))
(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 (-1085))) (-5 *3 (-51)) (-5 *1 (-821 *4))
- (-4 *4 (-1014)))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-694)))))
+ (-12 (-5 *2 (-522)) (-4 *1 (-55 *4 *3 *5)) (-4 *4 (-1120))
+ (-4 *3 (-348 *4)) (-4 *5 (-348 *4)))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-338)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
+ (-5 *1 (-489 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-514)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4))
+ (-4 *7 (-919 *4)) (-4 *2 (-626 *7 *8 *9))
+ (-5 *1 (-490 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-626 *4 *5 *6))
+ (-4 *8 (-348 *7)) (-4 *9 (-348 *7))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971))
+ (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (-4 *2 (-338))))
+ ((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-338)) (-4 *3 (-157)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2))
+ (-4 *2 (-626 *3 *4 *5))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-628 *2)) (-4 *2 (-338)) (-4 *2 (-971))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-1035 *2 *3 *4 *5)) (-4 *3 (-971))
+ (-4 *4 (-215 *2 *3)) (-4 *5 (-215 *2 *3)) (-4 *3 (-338))))
+ ((*1 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-1092 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-338)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-474 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-157)) (-4 *2 (-514))))
+ ((*1 *1 *1) (|partial| -4 *1 (-660))))
(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7))))
- (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2259 *3)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426))
- (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-904 *3 *4 *5 *6)))))
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2))
+ (-4 *4 (-13 (-784) (-514))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-2 (|:| -1916 *4) (|:| -2793 (-522)))))
- (-4 *4 (-1142 (-522))) (-5 *2 (-675 (-708))) (-5 *1 (-416 *4))))
+ (-12 (-5 *3 (-881 (-522))) (-5 *2 (-588 *1)) (-4 *1 (-938))))
((*1 *2 *3)
- (-12 (-5 *3 (-393 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-971))
- (-5 *2 (-675 (-708))) (-5 *1 (-418 *4 *5)))))
+ (-12 (-5 *3 (-881 (-382 (-522)))) (-5 *2 (-588 *1)) (-4 *1 (-938))))
+ ((*1 *2 *3) (-12 (-5 *3 (-881 *1)) (-4 *1 (-938)) (-5 *2 (-588 *1))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1081 (-522))) (-5 *2 (-588 *1)) (-4 *1 (-938))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1081 (-382 (-522)))) (-5 *2 (-588 *1)) (-4 *1 (-938))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1081 *1)) (-4 *1 (-938)) (-5 *2 (-588 *1))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-782) (-338))) (-4 *3 (-1142 *4)) (-5 *2 (-588 *1))
+ (-4 *1 (-987 *4 *3)))))
(((*1 *2 *3)
(-12 (-4 *4 (-37 (-382 (-522))))
- (-5 *2 (-2 (|:| -2884 (-1066 *4)) (|:| -2896 (-1066 *4))))
+ (-5 *2 (-2 (|:| -2906 (-1066 *4)) (|:| -2915 (-1066 *4))))
(-5 *1 (-1072 *4)) (-5 *3 (-1066 *4)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1120)) (-5 *1 (-165 *3 *2)) (-4 *2 (-615 *3)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928)))))
@@ -6745,41 +6394,105 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-759)))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
- (-4 *3 (-342 *4))))
- ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-522)) (-4 *4 (-13 (-514) (-135))) (-5 *1 (-499 *4 *2))
- (-4 *2 (-1157 *4))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-522)) (-4 *4 (-13 (-338) (-343) (-563 *3)))
- (-4 *5 (-1142 *4)) (-4 *6 (-662 *4 *5)) (-5 *1 (-503 *4 *5 *6 *2))
- (-4 *2 (-1157 *6))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-522)) (-4 *4 (-13 (-338) (-343) (-563 *3)))
- (-5 *1 (-504 *4 *2)) (-4 *2 (-1157 *4))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
+ (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-202))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))))
+ (-5 *2 (-960)) (-5 *1 (-687))))
+ ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
+ (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-202))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))))
+ (-5 *8 (-363)) (-5 *2 (-960)) (-5 *1 (-687)))))
+(((*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-395 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1106) (-405 *3)))
+ (-14 *4 (-1085)) (-14 *5 *2)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-4 *2 (-13 (-27) (-1106) (-405 *3) (-10 -8 (-15 -2217 ($ *4)))))
+ (-4 *4 (-782))
+ (-4 *5
+ (-13 (-1144 *2 *4) (-338) (-1106)
+ (-10 -8 (-15 -2731 ($ $)) (-15 -2611 ($ $)))))
+ (-5 *1 (-397 *3 *2 *4 *5 *6 *7)) (-4 *6 (-910 *5)) (-14 *7 (-1085)))))
+(((*1 *1) (-5 *1 (-202))) ((*1 *1) (-5 *1 (-354))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730))
+ (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 (-881 *3))) (-4 *3 (-426)) (-5 *1 (-335 *3 *4))
+ (-14 *4 (-588 (-1085)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-424 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6))
+ (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-5 *1 (-424 *4 *5 *6 *7))))
((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-13 (-514) (-135)))
- (-5 *1 (-1062 *4)))))
-(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-960)) (-5 *3 (-1085)) (-5 *1 (-171)))))
-(((*1 *2 *1) (-12 (-4 *1 (-301 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729))))
- ((*1 *2 *1) (-12 (-4 *1 (-647 *3)) (-4 *3 (-971)) (-5 *2 (-708))))
- ((*1 *2 *1) (-12 (-4 *1 (-786 *3)) (-4 *3 (-971)) (-5 *2 (-708))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-588 *6)) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 (-708)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-878 *4 *5 *3)) (-4 *4 (-971)) (-4 *5 (-730))
- (-4 *3 (-784)) (-5 *2 (-708)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-971))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)))))
-(((*1 *1 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-306 *3)) (-4 *3 (-784)))))
+ (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6))
+ (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-5 *1 (-424 *4 *5 *6 *7))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784))
+ (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-588 (-717 *3 (-794 *4)))) (-4 *3 (-426))
+ (-14 *4 (-588 (-1085))) (-5 *1 (-573 *3 *4)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784))
+ (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-878 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-971)) (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1)))
+ (-4 *1 (-1142 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1974 *4))))
+ (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-202)) (-5 *3 (-708)) (-5 *1 (-203))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-154 (-202))) (-5 *3 (-708)) (-5 *1 (-203))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1049))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3))
+ (-4 *3 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108))
+ (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3))
+ (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3))
+ (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4))))
+ ((*1 *1 *1) (-4 *1 (-463)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
+ (-5 *1 (-1071 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
+ (-5 *1 (-1072 *3)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 (-202) (-202))) (-5 *4 (-1009 (-354)))
(-5 *5 (-588 (-239))) (-5 *2 (-1167)) (-5 *1 (-231))))
@@ -6877,6 +6590,46 @@
((*1 *2 *3 *3 *3 *4)
(-12 (-5 *3 (-588 (-202))) (-5 *4 (-588 (-239))) (-5 *2 (-1168))
(-5 *1 (-236)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-108) *2)) (-4 *2 (-125)) (-5 *1 (-1000 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-522) *2 *2)) (-4 *2 (-125)) (-5 *1 (-1000 *2)))))
+(((*1 *2 *2 *2 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-561 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1085)))
+ (-4 *2 (-13 (-405 *5) (-27) (-1106)))
+ (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *1 (-524 *5 *2 *6)) (-4 *6 (-1014)))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-514)) (-4 *2 (-157)))))
+(((*1 *2 *1) (-12 (-5 *1 (-158 *2)) (-4 *2 (-283))))
+ ((*1 *2 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283))))
+ ((*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-283))))
+ ((*1 *2 *1) (-12 (-4 *1 (-980)) (-5 *2 (-522)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-409))
+ (-5 *2
+ (-588
+ (-3 (|:| -3015 (-1085))
+ (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522)))))))))
+ (-5 *1 (-1089)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1049))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4))))
+ (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-588 *5) *6))
+ (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *6 (-1142 *5))
+ (-5 *2 (-588 (-2 (|:| -2855 *5) (|:| -3277 *3))))
+ (-5 *1 (-746 *5 *6 *3 *7)) (-4 *3 (-598 *6))
+ (-4 *7 (-598 (-382 *6))))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928)))))
@@ -6886,6 +6639,9 @@
((*1 *2 *2)
(-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3))
(-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085)))
+ (-14 *3 (-588 (-1085))) (-4 *4 (-362))))
((*1 *1 *1) (-4 *1 (-463)))
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
@@ -6893,31 +6649,39 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *2) (-12 (-5 *1 (-540 *2)) (-4 *2 (-507)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
- (-5 *2 (-960)) (-5 *1 (-690)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1014)) (-4 *3 (-829 *5)) (-5 *2 (-1166 *3))
- (-5 *1 (-630 *5 *3 *6 *4)) (-4 *6 (-348 *3))
- (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-588 *5)) (-5 *4 (-522)) (-4 *5 (-782)) (-4 *5 (-338))
- (-5 *2 (-708)) (-5 *1 (-874 *5 *6)) (-4 *6 (-1142 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
-(((*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-291 (-354))) (-5 *1 (-281)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
(((*1 *1 *2 *3) (-12 (-5 *2 (-110)) (-5 *3 (-588 *1)) (-4 *1 (-278))))
((*1 *1 *2 *1) (-12 (-4 *1 (-278)) (-5 *2 (-110))))
((*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-561 *3)) (-4 *3 (-784))))
((*1 *1 *2 *3 *4)
(-12 (-5 *2 (-110)) (-5 *3 (-588 *5)) (-5 *4 (-708)) (-4 *5 (-784))
(-5 *1 (-561 *5)))))
+(((*1 *2 *2) (|partial| -12 (-5 *2 (-291 (-202))) (-5 *1 (-243)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 (-2 (|:| |val| (-588 *6)) (|:| -1974 *7))))
+ (-4 *6 (-985 *3 *4 *5)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-915 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-588 (-2 (|:| |val| (-588 *6)) (|:| -1974 *7))))
+ (-4 *6 (-985 *3 *4 *5)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-1021 *3 *4 *5 *6 *7)))))
+(((*1 *1 *1) (|partial| -4 *1 (-133))) ((*1 *1 *1) (-4 *1 (-324)))
+ ((*1 *1 *1) (|partial| -12 (-4 *1 (-133)) (-4 *1 (-838)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730))
+ (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-971)) (-4 *4 (-1014)) (-5 *2 (-588 *1))
+ (-4 *1 (-357 *3 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-673 *3 *4))) (-5 *1 (-673 *3 *4)) (-4 *3 (-971))
+ (-4 *4 (-664))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1))
+ (-4 *1 (-878 *3 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928)))))
@@ -6937,40 +6701,38 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
(((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
- (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202)))
- (-5 *6 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
- ((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-872 (-202)) (-202) (-202)))
- (-5 *3 (-1 (-202) (-202) (-202) (-202))) (-5 *1 (-231)))))
-(((*1 *1 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)) (-4 *2 (-971))))
- ((*1 *1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-588 (-1166 *4))) (-5 *1 (-341 *3 *4))
- (-4 *3 (-342 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-4 *3 (-514))
- (-5 *2 (-588 (-1166 *3))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-310 *3 *4 *5 *6)) (-4 *3 (-338)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5)) (-5 *2 (-108)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
- ((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4))
- (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-338)) (-5 *1 (-825 *2 *3))
+ (-4 *2 (-1142 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1014)) (-4 *2 (-829 *5)) (-5 *1 (-630 *5 *2 *3 *4))
+ (-4 *3 (-348 *2)) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *4 (-522))) (-5 *5 (-1 (-1066 *4))) (-4 *4 (-338))
+ (-4 *4 (-971)) (-5 *2 (-1066 *4)) (-5 *1 (-1070 *4)))))
(((*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-51)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-108)) (-5 *5 (-628 (-202)))
+ (-5 *2 (-960)) (-5 *1 (-693)))))
+(((*1 *2 *3 *1 *4)
+ (-12 (-5 *3 (-1050 *5 *6)) (-5 *4 (-1 (-108) *6 *6))
+ (-4 *5 (-13 (-1014) (-33))) (-4 *6 (-13 (-1014) (-33)))
+ (-5 *2 (-108)) (-5 *1 (-1051 *5 *6)))))
+(((*1 *2) (-12 (-5 *2 (-777 (-522))) (-5 *1 (-496))))
+ ((*1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1014)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-298 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-124))
+ (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3357 *4))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-2 (|:| -3112 *3) (|:| -2623 *4))))
+ (-5 *1 (-673 *3 *4)) (-4 *3 (-971)) (-4 *4 (-664))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729))
+ (-5 *2 (-1066 (-2 (|:| |k| *4) (|:| |c| *3)))))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928)))))
@@ -6990,25 +6752,26 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *2 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-588 (-561 *2))) (-5 *4 (-1085))
- (-4 *2 (-13 (-27) (-1106) (-405 *5)))
- (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-253 *5 *2)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1))
- (-4 *1 (-990 *4 *5 *6 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-1087 (-382 (-522))))
- (-5 *1 (-169)))))
-(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-517)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-832 *3)))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
- (-4 *3 (-342 *4))))
- ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2))
+ (-4 *4 (-348 *2)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *2)) (-4 *2 (-157))))
+ ((*1 *2) (-12 (-4 *2 (-157)) (-5 *1 (-391 *3 *2)) (-4 *3 (-392 *2))))
+ ((*1 *2) (-12 (-4 *1 (-392 *2)) (-4 *2 (-157)))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-1066 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *2 *2) (-12 (-5 *2 (-588 (-628 (-291 (-522))))) (-5 *1 (-956)))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3))
+ (-4 *3 (-1142 (-154 *2)))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3))
+ (-4 *3 (-1142 (-154 *2))))))
(((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-104))))
((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-110))))
((*1 *2 *1)
@@ -7019,13 +6782,14 @@
((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-893))))
((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-992 *3)) (-14 *3 *2)))
((*1 *1 *1) (-5 *1 (-1085))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-834 *4)) (-4 *4 (-1014)) (-5 *2 (-588 (-708)))
- (-5 *1 (-833 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *4)) (-4 *4 (-782)) (-4 *4 (-338)) (-5 *2 (-708))
+ (-5 *1 (-874 *4 *5)) (-4 *5 (-1142 *4)))))
(((*1 *2) (-12 (-5 *2 (-777 (-522))) (-5 *1 (-496))))
((*1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1014)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *2)
+(((*1 *1 *1) (-4 *1 (-91)))
+ ((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928)))))
((*1 *2 *2)
@@ -7034,43 +6798,46 @@
((*1 *2 *2)
(-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3))
(-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085)))
- (-14 *3 (-588 (-1085))) (-4 *4 (-362))))
- ((*1 *1 *1) (-4 *1 (-463)))
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1071 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1116 *3)) (-4 *3 (-901)))))
-(((*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1068)) (-5 *1 (-723)))))
-(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
- (-12 (-5 *3 (-1068)) (-5 *5 (-628 (-202))) (-5 *6 (-202))
- (-5 *7 (-628 (-522))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-690)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-514)) (-4 *3 (-157)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2))
- (-4 *2 (-626 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
- (-4 *3 (-342 *4))))
- ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *2 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-692)))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441))))
+ ((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *1) (-12 (-4 *1 (-514)) (-5 *2 (-108)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1066 (-522))) (-5 *1 (-1070 *4)) (-4 *4 (-971))
- (-5 *3 (-522)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))) (-5 *2 (-108)))))
+ (-12 (-5 *3 (-202)) (-5 *2 (-108)) (-5 *1 (-275 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1009 (-777 (-202)))) (-5 *3 (-202)) (-5 *2 (-108))
+ (-5 *1 (-281))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
+ (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-283)) (-5 *1 (-429 *3 *2)) (-4 *2 (-1142 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-283)) (-5 *1 (-434 *3 *2)) (-4 *2 (-1142 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-283)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-708)))
+ (-5 *1 (-501 *3 *2 *4 *5)) (-4 *2 (-1142 *3)))))
(((*1 *2) (-12 (-5 *2 (-588 *3)) (-5 *1 (-1000 *3)) (-4 *3 (-125)))))
-(((*1 *2) (-12 (-5 *2 (-777 (-522))) (-5 *1 (-496))))
- ((*1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1014)))))
+(((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-588
+ (-2 (|:| |scalar| (-382 (-522))) (|:| |coeff| (-1081 *3))
+ (|:| |logand| (-1081 *3)))))
+ (-5 *1 (-539 *3)) (-4 *3 (-338)))))
(((*1 *1 *1) (-4 *1 (-91)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
@@ -7087,83 +6854,30 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-872 (-202))) (-5 *4 (-803)) (-5 *5 (-850))
- (-5 *2 (-1171)) (-5 *1 (-442))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-872 (-202))) (-5 *2 (-1171)) (-5 *1 (-442))))
- ((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-588 (-872 (-202)))) (-5 *4 (-803)) (-5 *5 (-850))
- (-5 *2 (-1171)) (-5 *1 (-442)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-426) (-135))) (-5 *2 (-393 *3))
- (-5 *1 (-95 *4 *3)) (-4 *3 (-1142 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-13 (-426) (-135)))
- (-5 *2 (-393 *3)) (-5 *1 (-95 *5 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-1014)))))
-(((*1 *1 *1) (-4 *1 (-131)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-3 (-108) "failed")) (-4 *3 (-426)) (-4 *4 (-784))
- (-4 *5 (-730)) (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168))))
- ((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-514)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2)))))
+(((*1 *2 *2) (-12 (-5 *2 (-588 (-291 (-202)))) (-5 *1 (-243)))))
+(((*1 *1) (-5 *1 (-143))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-392 *4)))))
(((*1 *2 *1 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-442)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-129))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-132)))))
-(((*1 *2 *1) (-12 (-5 *2 (-711)) (-5 *1 (-51)))))
-(((*1 *1 *1) (-4 *1 (-91)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3))
- (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3))
- (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
- (-5 *1 (-1071 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
- (-5 *1 (-1072 *3)))))
-(((*1 *1) (-5 *1 (-1167))))
-(((*1 *2 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-689)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-708)) (-5 *1 (-540 *2)) (-4 *2 (-507))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -3355 *3) (|:| -1400 (-708)))) (-5 *1 (-540 *3))
- (-4 *3 (-507)))))
+ (-12 (-5 *2 (-2 (|:| -2308 (-719 *3)) (|:| |coef1| (-719 *3))))
+ (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *2 (-2 (|:| -2308 *1) (|:| |coef1| *1)))
+ (-4 *1 (-985 *3 *4 *5)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 (-154 (-202)) (-154 (-202)))) (-5 *4 (-1009 (-202)))
+ (-5 *2 (-1168)) (-5 *1 (-233)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-628 *4)) (-4 *4 (-338)) (-5 *2 (-1081 *4))
- (-5 *1 (-495 *4 *5 *6)) (-4 *5 (-338)) (-4 *6 (-13 (-338) (-782))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1059 *3)) (-4 *3 (-1120)) (-5 *2 (-108)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-834 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-756 *3)) (-4 *3 (-784)) (-5 *1 (-613 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *6)) (-5 *4 (-1085)) (-4 *6 (-405 *5))
- (-4 *5 (-784)) (-5 *2 (-588 (-561 *6))) (-5 *1 (-531 *5 *6)))))
+ (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-426)) (-4 *4 (-757))
+ (-14 *5 (-1085)) (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-1107 *3))) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))))
(((*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-129))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-132)))))
+(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-969)))))
(((*1 *2) (-12 (-5 *2 (-770 (-522))) (-5 *1 (-496))))
((*1 *1) (-12 (-5 *1 (-770 *2)) (-4 *2 (-1014)))))
(((*1 *1 *1) (-4 *1 (-91)))
@@ -7182,34 +6896,50 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-628 *6)) (-5 *5 (-1 (-393 (-1081 *6)) (-1081 *6)))
- (-4 *6 (-338))
- (-5 *2
- (-588
- (-2 (|:| |outval| *7) (|:| |outmult| (-522))
- (|:| |outvect| (-588 (-628 *7))))))
- (-5 *1 (-495 *6 *7 *4)) (-4 *7 (-338)) (-4 *4 (-13 (-338) (-782))))))
-(((*1 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-782)) (-5 *1 (-279 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-928))
- (-4 *2 (-971)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-522)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))))
-(((*1 *2 *1) (-12 (-4 *3 (-971)) (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-108))
- (-5 *2 (-960)) (-5 *1 (-683)))))
-(((*1 *2 *2 *2)
- (-12
+ (-12 (-4 *1 (-301 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971))
+ (-4 *2 (-426))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 *4)) (-4 *4 (-1142 (-522))) (-5 *2 (-588 (-522)))
+ (-5 *1 (-458 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-426))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *2 (-784)) (-4 *3 (-426)))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
+ (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-82 FCNF))))
+ (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-83 FCNG)))) (-5 *3 (-202))
+ (-5 *2 (-960)) (-5 *1 (-687)))))
+(((*1 *2 *1) (-12 (-5 *2 (-711)) (-5 *1 (-51)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-1066 *3))) (-5 *2 (-1066 *3)) (-5 *1 (-1070 *3))
+ (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-588 (-1085))) (-4 *5 (-514))
+ (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-707 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-514))
+ (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-707 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-628 *7))
+ (-5 *5
+ (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -2905 (-588 *6)))
+ *7 *6))
+ (-4 *6 (-338)) (-4 *7 (-598 *6))
(-5 *2
- (-588
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-708)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-730)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426)) (-4 *5 (-784))
- (-5 *1 (-423 *3 *4 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-792)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-516 *2)) (-4 *2 (-507)))))
+ (-2 (|:| |particular| (-3 (-1166 *6) "failed"))
+ (|:| -2905 (-588 (-1166 *6)))))
+ (-5 *1 (-750 *6 *7)) (-5 *4 (-1166 *6)))))
+(((*1 *1 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157))))
+ ((*1 *1 *1 *1) (-4 *1 (-447)))
+ ((*1 *1 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157))))
+ ((*1 *2 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-812))))
+ ((*1 *1 *1) (-5 *1 (-898)))
+ ((*1 *1 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-339 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))))
+(((*1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1169)))))
(((*1 *2)
(-12 (-4 *2 (-13 (-405 *3) (-928))) (-5 *1 (-252 *3 *2))
(-4 *3 (-13 (-784) (-514)))))
@@ -7217,8 +6947,12 @@
(-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085)))
(-14 *3 (-588 (-1085))) (-4 *4 (-362))))
((*1 *1) (-5 *1 (-451))) ((*1 *1) (-4 *1 (-1106))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-893))) (-5 *1 (-104)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-129))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-132)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
+ (-4 *4 (-971)))))
+(((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-964)))))
(((*1 *1 *1) (-4 *1 (-91))) ((*1 *1 *1 *1) (-5 *1 (-202)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
@@ -7239,20 +6973,12 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-628 *5))) (-4 *5 (-283)) (-4 *5 (-971))
- (-5 *2 (-1166 (-1166 *5))) (-5 *1 (-954 *5)) (-5 *4 (-1166 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014))
- (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-1089)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-881 (-522)))) (-5 *1 (-412))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1085)) (-5 *4 (-628 (-202))) (-5 *2 (-1018))
- (-5 *1 (-697))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1085)) (-5 *4 (-628 (-522))) (-5 *2 (-1018))
- (-5 *1 (-697)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-693)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-305)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-202))) (-5 *2 (-1166 (-637))) (-5 *1 (-281)))))
(((*1 *2 *1)
(|partial| -12 (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730))
(-5 *2 (-108)) (-5 *1 (-914 *3 *4 *5 *6))
@@ -7260,21 +6986,54 @@
((*1 *2 *1)
(-12 (-5 *2 (-108)) (-5 *1 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33)))
(-4 *4 (-13 (-1014) (-33))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-501 *4 *2 *5 *6))
- (-4 *4 (-283)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-708))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1102))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1102)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157))
- (-5 *2 (-628 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))))
-(((*1 *2 *3 *4 *2 *2 *5)
- (|partial| -12 (-5 *2 (-777 *4)) (-5 *3 (-561 *4)) (-5 *5 (-108))
- (-4 *4 (-13 (-1106) (-29 *6)))
- (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-201 *6 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085))
+ (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-253 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))))
+(((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-792)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-971))
+ (-5 *1 (-1070 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-522)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971))
+ (-14 *4 (-1085)) (-14 *5 *3))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085))
+ (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *5))))
+ (-5 *1 (-1041 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-13 (-283) (-784) (-135)))
+ (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1041 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-270 (-382 (-881 *5)))) (-5 *4 (-1085))
+ (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *5))))
+ (-5 *1 (-1041 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-270 (-382 (-881 *4))))
+ (-4 *4 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-270 (-291 *4))))
+ (-5 *1 (-1041 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085)))
+ (-4 *5 (-13 (-283) (-784) (-135)))
+ (-5 *2 (-588 (-588 (-270 (-291 *5))))) (-5 *1 (-1041 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-382 (-881 *4))))
+ (-4 *4 (-13 (-283) (-784) (-135)))
+ (-5 *2 (-588 (-588 (-270 (-291 *4))))) (-5 *1 (-1041 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-270 (-382 (-881 *5))))) (-5 *4 (-588 (-1085)))
+ (-4 *5 (-13 (-283) (-784) (-135)))
+ (-5 *2 (-588 (-588 (-270 (-291 *5))))) (-5 *1 (-1041 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-270 (-382 (-881 *4)))))
+ (-4 *4 (-13 (-283) (-784) (-135)))
+ (-5 *2 (-588 (-588 (-270 (-291 *4))))) (-5 *1 (-1041 *4)))))
(((*1 *1 *1) (-4 *1 (-91)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
@@ -7294,32 +7053,38 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-694)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1081 *7)) (-5 *3 (-522)) (-4 *7 (-878 *6 *4 *5))
- (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971))
- (-5 *1 (-296 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-108)))))
-(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-202)) (-5 *4 (-522))
- (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960))
- (-5 *1 (-686)))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-803))
- (-5 *5 (-850)) (-5 *6 (-588 (-239))) (-5 *2 (-1167))
- (-5 *1 (-1170))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-588 (-239)))
- (-5 *2 (-1167)) (-5 *1 (-1170)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-1068)) (-5 *4 (-1032)) (-5 *2 (-108)) (-5 *1 (-758)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-108)) (-5 *1 (-110)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-98 *3))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-98 *2)) (-4 *2 (-1014)))))
+(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157))))
+ ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |mval| (-628 *3)) (|:| |invmval| (-628 *3))
+ (|:| |genIdeal| (-474 *3 *4 *5 *6))))
+ (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-871)) (-5 *3 (-522)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1068)) (-5 *2 (-192 (-472))) (-5 *1 (-772)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-878 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-426))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *3 (-985 *4 *5 *6))
+ (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *1))))
+ (-4 *1 (-990 *4 *5 *6 *3))))
+ ((*1 *1 *1) (-4 *1 (-1124)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-514)) (-5 *1 (-1145 *3 *2))
+ (-4 *2 (-13 (-1142 *3) (-514) (-10 -8 (-15 -2308 ($ $ $))))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-708))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-708)))))
(((*1 *2 *1) (-12 (-5 *2 (-1037 (-522) (-561 (-47)))) (-5 *1 (-47))))
((*1 *2 *1)
(-12 (-4 *3 (-919 *2)) (-4 *4 (-1142 *3)) (-4 *2 (-283))
@@ -7335,6 +7100,8 @@
(-12 (-4 *4 (-157)) (-4 *2 (|SubsetCategory| (-664) *4))
(-5 *1 (-604 *3 *4 *2)) (-4 *3 (-655 *4))))
((*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))))
+(((*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169))))
+ ((*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))))
(((*1 *1 *1) (-4 *1 (-91)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
@@ -7354,50 +7121,50 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *1)
- (-12 (-4 *1 (-379)) (-2401 (|has| *1 (-6 -4229)))
- (-2401 (|has| *1 (-6 -4221)))))
- ((*1 *2 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-1014)) (-4 *2 (-784))))
- ((*1 *2 *1) (-12 (-4 *1 (-767 *2)) (-4 *2 (-784))))
- ((*1 *1 *1 *1) (-4 *1 (-784))) ((*1 *1) (-5 *1 (-1032))))
-(((*1 *2 *3) (-12 (-5 *3 (-154 (-522))) (-5 *2 (-108)) (-5 *1 (-420))))
- ((*1 *2 *3)
- (-12
- (-5 *3
- (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4)
- (-224 *4 (-382 (-522)))))
- (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-108))
- (-5 *1 (-475 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-889 *3)) (-4 *3 (-507))))
- ((*1 *2 *1) (-12 (-4 *1 (-1124)) (-5 *2 (-108)))))
-(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
- (|partial| -12 (-5 *4 (-588 *11)) (-5 *5 (-588 (-1081 *9)))
- (-5 *6 (-588 *9)) (-5 *7 (-588 *12)) (-5 *8 (-588 (-708)))
- (-4 *11 (-784)) (-4 *9 (-283)) (-4 *12 (-878 *9 *10 *11))
- (-4 *10 (-730)) (-5 *2 (-588 (-1081 *12)))
- (-5 *1 (-646 *10 *11 *9 *12)) (-5 *3 (-1081 *12)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-354)) (-5 *1 (-983)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960))
+ (-5 *1 (-686)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-251)))))
+(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-588 (-952 *5 *6 *7 *3))) (-5 *1 (-952 *5 *6 *7 *3))
+ (-4 *3 (-985 *5 *6 *7))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-588 *6)) (-4 *1 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-990 *3 *4 *5 *2)) (-4 *3 (-426)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5))))
+ ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-588 (-1056 *5 *6 *7 *3))) (-5 *1 (-1056 *5 *6 *7 *3))
+ (-4 *3 (-985 *5 *6 *7)))))
(((*1 *1 *1 *2)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-2 (|:| |deg| (-708)) (|:| -2574 *5))))
- (-4 *5 (-1142 *4)) (-4 *4 (-324)) (-5 *2 (-588 *5))
- (-5 *1 (-194 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-2 (|:| -1916 *5) (|:| -2793 (-522)))))
- (-5 *4 (-522)) (-4 *5 (-1142 *4)) (-5 *2 (-588 *5))
- (-5 *1 (-634 *5)))))
+ (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2)
+ (|partial| -12 (-4 *4 (-1124)) (-4 *5 (-1142 (-382 *2)))
+ (-4 *2 (-1142 *4)) (-5 *1 (-316 *3 *4 *2 *5))
+ (-4 *3 (-317 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-317 *3 *2 *4)) (-4 *3 (-1124))
+ (-4 *4 (-1142 (-382 *2))) (-4 *2 (-1142 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *2 (-588 (-202)))
- (-5 *1 (-442)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1045 (-202))) (-5 *3 (-588 (-239))) (-5 *1 (-1168))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1045 (-202))) (-5 *3 (-1068)) (-5 *1 (-1168))))
- ((*1 *1 *1) (-5 *1 (-1168))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))))
+ (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4))
+ (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-708))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-708)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-514)))))
(((*1 *2 *1) (-12 (-5 *2 (-1037 (-522) (-561 (-47)))) (-5 *1 (-47))))
((*1 *2 *1)
(-12 (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4))
@@ -7430,36 +7197,46 @@
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3))))
((*1 *1 *1) (-4 *1 (-1109))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-561 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4)))
- (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-253 *4 *2)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-338) (-782)))
- (-5 *2 (-588 (-2 (|:| -2976 (-588 *3)) (|:| -2972 *5))))
- (-5 *1 (-164 *5 *3)) (-4 *3 (-1142 (-154 *5)))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-338) (-782)))
- (-5 *2 (-588 (-2 (|:| -2976 (-588 *3)) (|:| -2972 *4))))
- (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 *5)) (-4 *5 (-157)) (-5 *1 (-128 *3 *4 *5))
- (-14 *3 (-522)) (-14 *4 (-708)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-1167))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-324))
- (-5 *2
- (-2 (|:| |cont| *5)
- (|:| -2976 (-588 (-2 (|:| |irr| *3) (|:| -2245 (-522)))))))
- (-5 *1 (-194 *5 *3)) (-4 *3 (-1142 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-514)) (-5 *1 (-569 *2 *3)) (-4 *3 (-1142 *2)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-233)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-4 *1 (-102 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-881 *4)) (-4 *4 (-13 (-283) (-135)))
+ (-4 *2 (-878 *4 *6 *5)) (-5 *1 (-853 *4 *5 *6 *2))
+ (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)))))
+(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
+ (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338)))
+ (-4 *3 (-1142 *4)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-522))
+ (-5 *1 (-423 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *2 (-108)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-382 *4)) (-4 *4 (-1142 *3))
+ (-4 *3 (-13 (-338) (-135) (-962 (-522)))) (-5 *1 (-526 *3 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *5 (-1068))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-80 PDEF))))
+ (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-81 BNDY)))) (-5 *2 (-960))
+ (-5 *1 (-688)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-324)) (-4 *4 (-304 *3)) (-4 *5 (-1142 *4))
+ (-5 *1 (-714 *3 *4 *5 *2 *6)) (-4 *2 (-1142 *5)) (-14 *6 (-850))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-708)) (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-4 *3 (-343))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1183 *2)) (-4 *2 (-338)) (-4 *2 (-343)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-426)) (-4 *3 (-784)) (-4 *3 (-962 (-522)))
+ (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-405 *3))
+ (-4 *2
+ (-13 (-338) (-278)
+ (-10 -8 (-15 -2947 ((-1037 *3 (-561 $)) $))
+ (-15 -2959 ((-1037 *3 (-561 $)) $))
+ (-15 -2217 ($ (-1037 *3 (-561 $))))))))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928)))))
@@ -7476,82 +7253,40 @@
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3))))
((*1 *1 *1) (-4 *1 (-1109))))
-(((*1 *2 *1) (-12 (-4 *1 (-46 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-708)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971))
- (-14 *4 (-588 (-1085)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-522)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784)))
- (-14 *4 (-588 (-1085)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784))
- (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-708))))
- ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-251))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1081 *8)) (-5 *4 (-588 *6)) (-4 *6 (-784))
- (-4 *8 (-878 *7 *5 *6)) (-4 *5 (-730)) (-4 *7 (-971))
- (-5 *2 (-588 (-708))) (-5 *1 (-296 *5 *6 *7 *8))))
- ((*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-850))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157))
- (-5 *2 (-708))))
- ((*1 *2 *1) (-12 (-4 *1 (-444 *3 *2)) (-4 *3 (-157)) (-4 *2 (-23))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-514)) (-5 *2 (-522)) (-5 *1 (-569 *3 *4))
- (-4 *4 (-1142 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-647 *3)) (-4 *3 (-971)) (-5 *2 (-708))))
- ((*1 *2 *1) (-12 (-4 *1 (-786 *3)) (-4 *3 (-971)) (-5 *2 (-708))))
- ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-833 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-834 *3)) (-4 *3 (-1014))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-108)) (-5 *1 (-110))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-278)) (-5 *3 (-1085)) (-5 *2 (-108))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-278)) (-5 *3 (-110)) (-5 *2 (-108))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-588 *6)) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 (-708)))))
+ (-12 (-5 *3 (-1085)) (-5 *2 (-108)) (-5 *1 (-561 *4)) (-4 *4 (-784))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-878 *4 *5 *3)) (-4 *4 (-971)) (-4 *5 (-730))
- (-4 *3 (-784)) (-5 *2 (-708))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-900 *3 *2 *4)) (-4 *3 (-971)) (-4 *4 (-784))
- (-4 *2 (-729))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-708))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1128 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1157 *3))
- (-5 *2 (-522))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1126 *3))
- (-5 *2 (-382 (-522)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-770 (-850)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1185 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
- (-5 *2 (-708)))))
+ (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-561 *4)) (-4 *4 (-784))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1014)) (-5 *2 (-108)) (-5 *1 (-816 *5 *3 *4))
+ (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *6)) (-4 *6 (-815 *5)) (-4 *5 (-1014))
+ (-5 *2 (-108)) (-5 *1 (-816 *5 *6 *4)) (-4 *4 (-563 (-821 *5))))))
+(((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *1) (-5 *1 (-143))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-971)) (-5 *2 (-1166 *3)) (-5 *1 (-650 *3 *4))
+ (-4 *4 (-1142 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-881 *5)) (-4 *5 (-971)) (-5 *2 (-224 *4 *5))
- (-5 *1 (-873 *4 *5)) (-14 *4 (-588 (-1085))))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-588 (-893))) (-5 *1 (-267)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-212 *3))
- (-4 *3 (-1014))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))))
-(((*1 *1 *1) (-4 *1 (-980)))
- ((*1 *1 *1 *2 *2)
- (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1144 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1074 3 *3)) (-4 *3 (-971)) (-4 *1 (-1046 *3))))
- ((*1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971)))))
-(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1085)))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960))
- (-5 *1 (-693)))))
-(((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-393 *3)) (-4 *3 (-514))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-2 (|:| -1916 *4) (|:| -2793 (-522)))))
- (-4 *4 (-1142 (-522))) (-5 *2 (-708)) (-5 *1 (-416 *4)))))
+ (-12 (-5 *3 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
+ (-5 *2 (-1171)) (-5 *1 (-1088))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1085))
+ (-5 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-5 *2 (-1171))
+ (-5 *1 (-1088))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *3 (-1085))
+ (-5 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-5 *2 (-1171))
+ (-5 *1 (-1088)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-278))))
+ ((*1 *1 *1) (-4 *1 (-278)))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792))))
+ ((*1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928)))))
@@ -7568,131 +7303,241 @@
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3))))
((*1 *1 *1) (-4 *1 (-1109))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-708)) (-4 *4 (-971))
+ (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-1142 *4)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6))
+ (-5 *2 (-2 (|:| |bas| (-450 *4 *5 *6 *7)) (|:| -1322 (-588 *7))))
+ (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-108)) (-5 *1 (-991 *5 *6 *7 *3 *4))
- (-4 *4 (-990 *5 *6 *7 *3))))
+ (-12 (-5 *3 (-588 (-382 (-881 (-522)))))
+ (-5 *2 (-588 (-588 (-270 (-881 *4))))) (-5 *1 (-355 *4))
+ (-4 *4 (-13 (-782) (-338)))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1886 *4))))
- (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
- (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-660)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-4 *1 (-664)) (-5 *2 (-108)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-388 *3 *4 *5 *6)) (-4 *6 (-962 *4)) (-4 *3 (-283))
- (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-4 *6 (-384 *4 *5))
- (-14 *7 (-1166 *6)) (-5 *1 (-389 *3 *4 *5 *6 *7))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1166 *6)) (-4 *6 (-384 *4 *5)) (-4 *4 (-919 *3))
- (-4 *5 (-1142 *4)) (-4 *3 (-283)) (-5 *1 (-389 *3 *4 *5 *6 *7))
- (-14 *7 *2))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-256)))))
-(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-522))) (-5 *1 (-969)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-588 (-628 *6))) (-5 *4 (-108)) (-5 *5 (-522))
- (-5 *2 (-628 *6)) (-5 *1 (-954 *6)) (-4 *6 (-338)) (-4 *6 (-971))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 (-628 *4))) (-5 *2 (-628 *4)) (-5 *1 (-954 *4))
- (-4 *4 (-338)) (-4 *4 (-971))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-588 (-628 *5))) (-5 *4 (-522)) (-5 *2 (-628 *5))
- (-5 *1 (-954 *5)) (-4 *5 (-338)) (-4 *5 (-971)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-514)) (-4 *2 (-426)) (-5 *1 (-897 *2 *3))
- (-4 *3 (-1142 *2)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-108))
- (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-4 *3 (-13 (-27) (-1106) (-405 *6) (-10 -8 (-15 -2190 ($ *7)))))
- (-4 *7 (-782))
- (-4 *8
- (-13 (-1144 *3 *7) (-338) (-1106)
- (-10 -8 (-15 -2157 ($ $)) (-15 -1858 ($ $)))))
+ (-12 (-5 *3 (-588 (-270 (-382 (-881 (-522))))))
+ (-5 *2 (-588 (-588 (-270 (-881 *4))))) (-5 *1 (-355 *4))
+ (-4 *4 (-13 (-782) (-338)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-881 (-522)))) (-5 *2 (-588 (-270 (-881 *4))))
+ (-5 *1 (-355 *4)) (-4 *4 (-13 (-782) (-338)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-270 (-382 (-881 (-522)))))
+ (-5 *2 (-588 (-270 (-881 *4)))) (-5 *1 (-355 *4))
+ (-4 *4 (-13 (-782) (-338)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1085))
+ (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-4 *4 (-13 (-29 *6) (-1106) (-887)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -2905 (-588 *4))))
+ (-5 *1 (-594 *6 *4 *3)) (-4 *3 (-598 *4))))
+ ((*1 *2 *3 *2 *4 *2 *5)
+ (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-588 *2))
+ (-4 *2 (-13 (-29 *6) (-1106) (-887)))
+ (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *1 (-594 *6 *2 *3)) (-4 *3 (-598 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 *5)) (-4 *5 (-338))
(-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))))
- (-5 *1 (-397 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1068)) (-4 *9 (-910 *8))
- (-14 *10 (-1085)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-108)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1085))
- (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-51)) (-5 *1 (-290 *4 *5))
- (-4 *5 (-13 (-27) (-1106) (-405 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-51)) (-5 *1 (-290 *4 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *4)))))
+ (-2 (|:| |particular| (-3 (-1166 *5) "failed"))
+ (|:| -2905 (-588 (-1166 *5)))))
+ (-5 *1 (-609 *5)) (-5 *4 (-1166 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-382 (-522)))
- (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-51)) (-5 *1 (-290 *5 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *5)))))
+ (-12 (-5 *3 (-588 (-588 *5))) (-4 *5 (-338))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1166 *5) "failed"))
+ (|:| -2905 (-588 (-1166 *5)))))
+ (-5 *1 (-609 *5)) (-5 *4 (-1166 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5)))
- (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-51)) (-5 *1 (-290 *5 *3))))
+ (-12 (-5 *3 (-628 *5)) (-4 *5 (-338))
+ (-5 *2
+ (-588
+ (-2 (|:| |particular| (-3 (-1166 *5) "failed"))
+ (|:| -2905 (-588 (-1166 *5))))))
+ (-5 *1 (-609 *5)) (-5 *4 (-588 (-1166 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-588 *5))) (-4 *5 (-338))
+ (-5 *2
+ (-588
+ (-2 (|:| |particular| (-3 (-1166 *5) "failed"))
+ (|:| -2905 (-588 (-1166 *5))))))
+ (-5 *1 (-609 *5)) (-5 *4 (-588 (-1166 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239))))
+ (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4239))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4))))
+ (-5 *1 (-610 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239))))
+ (-4 *7 (-13 (-348 *5) (-10 -7 (-6 -4239))))
+ (-5 *2
+ (-588
+ (-2 (|:| |particular| (-3 *7 "failed")) (|:| -2905 (-588 *7)))))
+ (-5 *1 (-610 *5 *6 *7 *3)) (-5 *4 (-588 *7))
+ (-4 *3 (-626 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-588 (-1085))) (-4 *5 (-514))
+ (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-707 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-514))
+ (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-707 *4))))
+ ((*1 *2 *2 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-110)) (-5 *4 (-1085))
+ (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *1 (-709 *5 *2)) (-4 *2 (-13 (-29 *5) (-1106) (-887)))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-270 *3)) (-5 *5 (-382 (-522)))
- (-4 *3 (-13 (-27) (-1106) (-405 *6)))
- (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-51)) (-5 *1 (-290 *6 *3))))
+ (|partial| -12 (-5 *3 (-628 *7)) (-5 *5 (-1085))
+ (-4 *7 (-13 (-29 *6) (-1106) (-887)))
+ (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *2
+ (-2 (|:| |particular| (-1166 *7)) (|:| -2905 (-588 (-1166 *7)))))
+ (-5 *1 (-739 *6 *7)) (-5 *4 (-1166 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 (-522))) (-5 *4 (-270 *6))
- (-4 *6 (-13 (-27) (-1106) (-405 *5)))
- (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-51)) (-5 *1 (-433 *5 *6))))
+ (|partial| -12 (-5 *3 (-628 *6)) (-5 *4 (-1085))
+ (-4 *6 (-13 (-29 *5) (-1106) (-887)))
+ (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *2 (-588 (-1166 *6))) (-5 *1 (-739 *5 *6))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *6)))
- (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-51)) (-5 *1 (-433 *6 *3))))
+ (|partial| -12 (-5 *3 (-588 (-270 *7))) (-5 *4 (-588 (-110)))
+ (-5 *5 (-1085)) (-4 *7 (-13 (-29 *6) (-1106) (-887)))
+ (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *2
+ (-2 (|:| |particular| (-1166 *7)) (|:| -2905 (-588 (-1166 *7)))))
+ (-5 *1 (-739 *6 *7))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-522))) (-5 *4 (-270 *7)) (-5 *5 (-1133 (-522)))
- (-4 *7 (-13 (-27) (-1106) (-405 *6)))
- (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-51)) (-5 *1 (-433 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-522)))
- (-4 *3 (-13 (-27) (-1106) (-405 *7)))
- (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-51)) (-5 *1 (-433 *7 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-1 *8 (-382 (-522)))) (-5 *4 (-270 *8))
- (-5 *5 (-1133 (-382 (-522)))) (-5 *6 (-382 (-522)))
- (-4 *8 (-13 (-27) (-1106) (-405 *7)))
- (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-51)) (-5 *1 (-433 *7 *8))))
- ((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-382 (-522))))
- (-5 *7 (-382 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *8)))
- (-4 *8 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-51)) (-5 *1 (-433 *8 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *3))))
- (-4 *3 (-971)) (-5 *1 (-547 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-548 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *3))))
- (-4 *3 (-971)) (-4 *1 (-1126 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-708))
- (-5 *3 (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| *4))))
- (-4 *4 (-971)) (-4 *1 (-1147 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-4 *1 (-1157 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1066 (-2 (|:| |k| (-708)) (|:| |c| *3))))
- (-4 *3 (-971)) (-4 *1 (-1157 *3)))))
+ (|partial| -12 (-5 *3 (-588 *7)) (-5 *4 (-588 (-110)))
+ (-5 *5 (-1085)) (-4 *7 (-13 (-29 *6) (-1106) (-887)))
+ (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *2
+ (-2 (|:| |particular| (-1166 *7)) (|:| -2905 (-588 (-1166 *7)))))
+ (-5 *1 (-739 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-270 *7)) (-5 *4 (-110)) (-5 *5 (-1085))
+ (-4 *7 (-13 (-29 *6) (-1106) (-887)))
+ (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *2
+ (-3 (-2 (|:| |particular| *7) (|:| -2905 (-588 *7))) *7 "failed"))
+ (-5 *1 (-739 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-110)) (-5 *5 (-1085))
+ (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *2
+ (-3 (-2 (|:| |particular| *3) (|:| -2905 (-588 *3))) *3 "failed"))
+ (-5 *1 (-739 *6 *3)) (-4 *3 (-13 (-29 *6) (-1106) (-887)))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *3 (-270 *2)) (-5 *4 (-110)) (-5 *5 (-588 *2))
+ (-4 *2 (-13 (-29 *6) (-1106) (-887))) (-5 *1 (-739 *6 *2))
+ (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))))
+ ((*1 *2 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-110)) (-5 *4 (-270 *2)) (-5 *5 (-588 *2))
+ (-4 *2 (-13 (-29 *6) (-1106) (-887)))
+ (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *1 (-739 *6 *2))))
+ ((*1 *2 *3) (-12 (-5 *3 (-745)) (-5 *2 (-960)) (-5 *1 (-742))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-745)) (-5 *4 (-983)) (-5 *2 (-960)) (-5 *1 (-742))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1166 (-291 (-354)))) (-5 *4 (-354)) (-5 *5 (-588 *4))
+ (-5 *2 (-960)) (-5 *1 (-742))))
+ ((*1 *2 *3 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1166 (-291 (-354)))) (-5 *4 (-354)) (-5 *5 (-588 *4))
+ (-5 *2 (-960)) (-5 *1 (-742))))
+ ((*1 *2 *3 *4 *4 *5 *6 *4)
+ (-12 (-5 *3 (-1166 (-291 *4))) (-5 *5 (-588 (-354)))
+ (-5 *6 (-291 (-354))) (-5 *4 (-354)) (-5 *2 (-960)) (-5 *1 (-742))))
+ ((*1 *2 *3 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1166 (-291 (-354)))) (-5 *4 (-354)) (-5 *5 (-588 *4))
+ (-5 *2 (-960)) (-5 *1 (-742))))
+ ((*1 *2 *3 *4 *4 *5 *6 *5 *4)
+ (-12 (-5 *3 (-1166 (-291 *4))) (-5 *5 (-588 (-354)))
+ (-5 *6 (-291 (-354))) (-5 *4 (-354)) (-5 *2 (-960)) (-5 *1 (-742))))
+ ((*1 *2 *3 *4 *4 *5 *6 *5 *4 *4)
+ (-12 (-5 *3 (-1166 (-291 *4))) (-5 *5 (-588 (-354)))
+ (-5 *6 (-291 (-354))) (-5 *4 (-354)) (-5 *2 (-960)) (-5 *1 (-742))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12
+ (-5 *5
+ (-1
+ (-3 (-2 (|:| |particular| *6) (|:| -2905 (-588 *6))) "failed")
+ *7 *6))
+ (-4 *6 (-338)) (-4 *7 (-598 *6))
+ (-5 *2 (-2 (|:| |particular| (-1166 *6)) (|:| -2905 (-628 *6))))
+ (-5 *1 (-750 *6 *7)) (-5 *3 (-628 *6)) (-5 *4 (-1166 *6))))
+ ((*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-960)) (-5 *1 (-826))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-827)) (-5 *4 (-983)) (-5 *2 (-960)) (-5 *1 (-826))))
+ ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8)
+ (-12 (-5 *4 (-708)) (-5 *6 (-588 (-588 (-291 *3)))) (-5 *7 (-1068))
+ (-5 *8 (-202)) (-5 *5 (-588 (-291 (-354)))) (-5 *3 (-354))
+ (-5 *2 (-960)) (-5 *1 (-826))))
+ ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7)
+ (-12 (-5 *4 (-708)) (-5 *6 (-588 (-588 (-291 *3)))) (-5 *7 (-1068))
+ (-5 *5 (-588 (-291 (-354)))) (-5 *3 (-354)) (-5 *2 (-960))
+ (-5 *1 (-826))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-881 (-382 (-522)))) (-5 *2 (-588 (-354)))
+ (-5 *1 (-948)) (-5 *4 (-354))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-881 (-522))) (-5 *2 (-588 (-354))) (-5 *1 (-948))
+ (-5 *4 (-354))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1043 *4))
+ (-5 *3 (-291 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *2 (-588 (-270 (-291 *4)))) (-5 *1 (-1043 *4))
+ (-5 *3 (-270 (-291 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085))
+ (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *2 (-588 (-270 (-291 *5)))) (-5 *1 (-1043 *5))
+ (-5 *3 (-270 (-291 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085))
+ (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *2 (-588 (-270 (-291 *5)))) (-5 *1 (-1043 *5))
+ (-5 *3 (-291 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 (-1085)))
+ (-4 *5 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
+ (-5 *2 (-588 (-588 (-270 (-291 *5))))) (-5 *1 (-1043 *5))
+ (-5 *3 (-588 (-270 (-291 *5))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085)))
+ (-4 *5 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *5))))))
+ (-5 *1 (-1091 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 (-1085))) (-4 *5 (-514))
+ (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-1091 *5))
+ (-5 *3 (-588 (-270 (-382 (-881 *5)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-382 (-881 *4)))) (-4 *4 (-514))
+ (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-1091 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-588 (-588 (-270 (-382 (-881 *4))))))
+ (-5 *1 (-1091 *4)) (-5 *3 (-588 (-270 (-382 (-881 *4)))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085)) (-4 *5 (-514))
+ (-5 *2 (-588 (-270 (-382 (-881 *5))))) (-5 *1 (-1091 *5))
+ (-5 *3 (-382 (-881 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085)) (-4 *5 (-514))
+ (-5 *2 (-588 (-270 (-382 (-881 *5))))) (-5 *1 (-1091 *5))
+ (-5 *3 (-270 (-382 (-881 *5))))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-588 (-270 (-382 (-881 *4)))))
+ (-5 *1 (-1091 *4)) (-5 *3 (-382 (-881 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-588 (-270 (-382 (-881 *4)))))
+ (-5 *1 (-1091 *4)) (-5 *3 (-270 (-382 (-881 *4)))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-98 *3)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928)))))
@@ -7712,149 +7557,37 @@
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3))))
((*1 *1 *1) (-4 *1 (-1109))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-522)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))))
-(((*1 *2) (-12 (-4 *2 (-157)) (-5 *1 (-150 *3 *2)) (-4 *3 (-151 *2))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *2 *4)) (-4 *4 (-1142 *2))
- (-4 *2 (-157))))
- ((*1 *2)
- (-12 (-4 *4 (-1142 *2)) (-4 *2 (-157)) (-5 *1 (-383 *3 *2 *4))
- (-4 *3 (-384 *2 *4))))
- ((*1 *2) (-12 (-4 *1 (-384 *2 *3)) (-4 *3 (-1142 *2)) (-4 *2 (-157))))
- ((*1 *2)
- (-12 (-4 *3 (-1142 *2)) (-5 *2 (-522)) (-5 *1 (-705 *3 *4))
- (-4 *4 (-384 *2 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *2 (-784)) (-4 *3 (-157))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-514)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2))))
- ((*1 *2 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-157)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *1 *1 *1) (-4 *1 (-603))) ((*1 *1 *1 *1) (-5 *1 (-1032))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 *8)) (-4 *8 (-878 *5 *7 *6))
- (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085))))
- (-4 *7 (-730))
- (-5 *2
- (-588
- (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8))
- (|:| |wcond| (-588 (-881 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1166 (-382 (-881 *5))))
- (|:| -3855 (-588 (-1166 (-382 (-881 *5))))))))))
- (-5 *1 (-853 *5 *6 *7 *8)) (-5 *4 (-588 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 *8)) (-5 *4 (-588 (-1085))) (-4 *8 (-878 *5 *7 *6))
- (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085))))
- (-4 *7 (-730))
- (-5 *2
- (-588
- (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8))
- (|:| |wcond| (-588 (-881 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1166 (-382 (-881 *5))))
- (|:| -3855 (-588 (-1166 (-382 (-881 *5))))))))))
- (-5 *1 (-853 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-628 *7)) (-4 *7 (-878 *4 *6 *5))
- (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
- (-4 *6 (-730))
- (-5 *2
- (-588
- (-2 (|:| |eqzro| (-588 *7)) (|:| |neqzro| (-588 *7))
- (|:| |wcond| (-588 (-881 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1166 (-382 (-881 *4))))
- (|:| -3855 (-588 (-1166 (-382 (-881 *4))))))))))
- (-5 *1 (-853 *4 *5 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-628 *9)) (-5 *5 (-850)) (-4 *9 (-878 *6 *8 *7))
- (-4 *6 (-13 (-283) (-135))) (-4 *7 (-13 (-784) (-563 (-1085))))
- (-4 *8 (-730))
- (-5 *2
- (-588
- (-2 (|:| |eqzro| (-588 *9)) (|:| |neqzro| (-588 *9))
- (|:| |wcond| (-588 (-881 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1166 (-382 (-881 *6))))
- (|:| -3855 (-588 (-1166 (-382 (-881 *6))))))))))
- (-5 *1 (-853 *6 *7 *8 *9)) (-5 *4 (-588 *9))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-628 *9)) (-5 *4 (-588 (-1085))) (-5 *5 (-850))
- (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135)))
- (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730))
- (-5 *2
- (-588
- (-2 (|:| |eqzro| (-588 *9)) (|:| |neqzro| (-588 *9))
- (|:| |wcond| (-588 (-881 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1166 (-382 (-881 *6))))
- (|:| -3855 (-588 (-1166 (-382 (-881 *6))))))))))
- (-5 *1 (-853 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 *8)) (-5 *4 (-850)) (-4 *8 (-878 *5 *7 *6))
- (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085))))
- (-4 *7 (-730))
+(((*1 *1 *1) (-12 (-5 *1 (-557 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *1) (-5 *1 (-577))))
+(((*1 *2 *2 *2)
+ (-12
(-5 *2
(-588
- (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8))
- (|:| |wcond| (-588 (-881 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1166 (-382 (-881 *5))))
- (|:| -3855 (-588 (-1166 (-382 (-881 *5))))))))))
- (-5 *1 (-853 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-628 *9)) (-5 *4 (-588 *9)) (-5 *5 (-1068))
- (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135)))
- (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-522))
- (-5 *1 (-853 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-628 *9)) (-5 *4 (-588 (-1085))) (-5 *5 (-1068))
- (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135)))
- (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-522))
- (-5 *1 (-853 *6 *7 *8 *9))))
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-708)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-730)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-426)) (-4 *5 (-784))
+ (-5 *1 (-423 *3 *4 *5 *6)))))
+(((*1 *1 *1 *1) (-4 *1 (-603))) ((*1 *1 *1 *1) (-5 *1 (-1032))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085))
+ (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-539 *3)) (-5 *1 (-401 *5 *3))
+ (-4 *3 (-13 (-1106) (-29 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 *8)) (-5 *4 (-1068)) (-4 *8 (-878 *5 *7 *6))
- (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085))))
- (-4 *7 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-628 *10)) (-5 *4 (-588 *10)) (-5 *5 (-850))
- (-5 *6 (-1068)) (-4 *10 (-878 *7 *9 *8)) (-4 *7 (-13 (-283) (-135)))
- (-4 *8 (-13 (-784) (-563 (-1085)))) (-4 *9 (-730)) (-5 *2 (-522))
- (-5 *1 (-853 *7 *8 *9 *10))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-628 *10)) (-5 *4 (-588 (-1085))) (-5 *5 (-850))
- (-5 *6 (-1068)) (-4 *10 (-878 *7 *9 *8)) (-4 *7 (-13 (-283) (-135)))
- (-4 *8 (-13 (-784) (-563 (-1085)))) (-4 *9 (-730)) (-5 *2 (-522))
- (-5 *1 (-853 *7 *8 *9 *10))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-628 *9)) (-5 *4 (-850)) (-5 *5 (-1068))
- (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135)))
- (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-522))
- (-5 *1 (-853 *6 *7 *8 *9)))))
-(((*1 *2 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-971)))))
+ (-12 (-5 *4 (-1085)) (-4 *5 (-13 (-514) (-962 (-522)) (-135)))
+ (-5 *2 (-539 (-382 (-881 *5)))) (-5 *1 (-528 *5))
+ (-5 *3 (-382 (-881 *5))))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1159 *3 *2))
+ (-4 *2 (-1157 *3)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (-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 (-171)))))
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *5 *6)) (-4 *6 (-563 (-1085)))
+ (-4 *4 (-338)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-5 *2 (-1075 (-588 (-881 *4)) (-588 (-270 (-881 *4)))))
+ (-5 *1 (-474 *4 *5 *6 *7)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928)))))
@@ -7875,47 +7608,37 @@
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3))))
((*1 *1 *1) (-4 *1 (-1109))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-338)) (-5 *1 (-950 *3 *2)) (-4 *2 (-598 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-338)) (-5 *2 (-2 (|:| -3197 *3) (|:| -1420 (-588 *5))))
- (-5 *1 (-950 *5 *3)) (-5 *4 (-588 *5)) (-4 *3 (-598 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
- ((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1018)) (-5 *1 (-256)))))
-(((*1 *1) (-5 *1 (-129))))
-(((*1 *1) (-5 *1 (-305))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-628 (-382 (-881 (-522))))) (-5 *2 (-588 (-291 (-522))))
- (-5 *1 (-956)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1166 *5)) (-4 *5 (-584 *4)) (-4 *4 (-514))
- (-5 *2 (-108)) (-5 *1 (-583 *4 *5)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-283))))
- ((*1 *2 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |lm| (-361 *3)) (|:| |rm| (-361 *3))))
- (-5 *1 (-361 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1353 (-708)) (|:| -3421 (-708))))
- (-5 *1 (-708))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-802 *2 *3)) (-4 *2 (-1120)) (-4 *3 (-1120)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-559 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-516 *2)) (-4 *2 (-507)))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
+ (-4 *3 (-342 *4))))
+ ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-2 (|:| |totdeg| (-708)) (|:| -3892 *4))) (-5 *5 (-708))
- (-4 *4 (-878 *6 *7 *8)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
+ (-12 (-4 *6 (-1142 *9)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-283))
+ (-4 *10 (-878 *9 *7 *8))
(-5 *2
- (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-5 *1 (-423 *6 *7 *8 *4)))))
+ (-2 (|:| |deter| (-588 (-1081 *10)))
+ (|:| |dterm|
+ (-588 (-588 (-2 (|:| -2170 (-708)) (|:| |pcoef| *10)))))
+ (|:| |nfacts| (-588 *6)) (|:| |nlead| (-588 *10))))
+ (-5 *1 (-715 *6 *7 *8 *9 *10)) (-5 *3 (-1081 *10)) (-5 *4 (-588 *6))
+ (-5 *5 (-588 *10)))))
+(((*1 *1) (-5 *1 (-305))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-872 *4))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
+ (-4 *4 (-971)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *2 (-784)) (-4 *3 (-157))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *2 (-514)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-514))))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-157)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928)))))
@@ -7936,155 +7659,127 @@
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3))))
((*1 *1 *1) (-4 *1 (-1109))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1066 *2)) (-4 *2 (-283)) (-5 *1 (-158 *2)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-960)))))
-(((*1 *2 *1) (-12 (-4 *1 (-883)) (-5 *2 (-588 (-588 (-872 (-202)))))))
- ((*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-588 (-588 (-872 (-202))))))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-256)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-514))
- (-5 *2 (-2 (|:| -1222 (-628 *5)) (|:| |vec| (-1166 (-588 (-850))))))
- (-5 *1 (-88 *5 *3)) (-5 *4 (-850)) (-4 *3 (-598 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)) (-5 *2 (-108))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1166 *4)) (-4 *4 (-392 *3)) (-4 *3 (-283))
+ (-4 *3 (-514)) (-5 *1 (-42 *3 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-108))
- (-5 *1 (-332 *4))))
+ (-12 (-5 *3 (-850)) (-4 *4 (-338)) (-5 *2 (-1166 *1))
+ (-4 *1 (-304 *4))))
+ ((*1 *2) (-12 (-4 *3 (-338)) (-5 *2 (-1166 *1)) (-4 *1 (-304 *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-157)) (-4 *4 (-1142 *3)) (-5 *2 (-1166 *1))
+ (-4 *1 (-384 *3 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4))
+ (-5 *2 (-1166 *6)) (-5 *1 (-388 *3 *4 *5 *6))
+ (-4 *6 (-13 (-384 *4 *5) (-962 *4)))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-283)) (-4 *4 (-919 *3)) (-4 *5 (-1142 *4))
+ (-5 *2 (-1166 *6)) (-5 *1 (-389 *3 *4 *5 *6 *7))
+ (-4 *6 (-384 *4 *5)) (-14 *7 *2)))
+ ((*1 *2) (-12 (-4 *3 (-157)) (-5 *2 (-1166 *1)) (-4 *1 (-392 *3))))
((*1 *2 *3)
- (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-108))
- (-5 *1 (-492 *4)))))
+ (-12 (-5 *3 (-850)) (-5 *2 (-1166 (-1166 *4))) (-5 *1 (-492 *4))
+ (-4 *4 (-324)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-893))) (-5 *1 (-104)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1015 *3 *4)) (-14 *3 (-850))
+ (-14 *4 (-850)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-171))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-276))))
+ (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522))))
+ (-5 *2 (-154 (-291 *4))) (-5 *1 (-167 *4 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 (-154 *4))))))
((*1 *2 *3)
- (-12 (-5 *3 (-1009 (-777 (-202)))) (-5 *2 (-202)) (-5 *1 (-281)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-971)) (-5 *1 (-1138 *3 *2)) (-4 *2 (-1142 *3)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
- (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202)))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-73 FCN JACOBF JACEPS))))
- (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-74 G JACOBG JACGEP))))
- (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-184))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 (-354))) (-5 *2 (-354)) (-5 *1 (-184)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-872 (-202))) (-5 *4 (-803)) (-5 *2 (-1171))
- (-5 *1 (-442))))
- ((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-971)) (-4 *1 (-907 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-872 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-971)) (-4 *1 (-1046 *3))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-872 *3)) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
- ((*1 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)) (-5 *3 (-202)))))
+ (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-154 *3)) (-5 *1 (-1110 *4 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *4))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-802 *2 *3)) (-4 *2 (-1120)) (-4 *3 (-1120)))))
(((*1 *1 *1) (-4 *1 (-574)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2))
(-4 *2 (-13 (-405 *3) (-928) (-1106))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-511)))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-202) (-202) (-202)))
- (-5 *4 (-3 (-1 (-202) (-202) (-202) (-202)) "undefined"))
- (-5 *5 (-1009 (-202))) (-5 *6 (-588 (-239))) (-5 *2 (-1045 (-202)))
- (-5 *1 (-635))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-872 (-202)) (-202) (-202))) (-5 *4 (-1009 (-202)))
- (-5 *5 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-635))))
- ((*1 *2 *2 *3 *4 *4 *5)
- (-12 (-5 *2 (-1045 (-202))) (-5 *3 (-1 (-872 (-202)) (-202) (-202)))
- (-5 *4 (-1009 (-202))) (-5 *5 (-588 (-239))) (-5 *1 (-635)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-108) (-110) (-110))) (-5 *1 (-110)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1038 *4 *3 *5))) (-4 *4 (-37 (-382 (-522))))
- (-4 *4 (-971)) (-4 *3 (-784)) (-5 *1 (-1038 *4 *3 *5))
- (-4 *5 (-878 *4 (-494 *3) *3))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1115 *4))) (-5 *3 (-1085)) (-5 *1 (-1115 *4))
- (-4 *4 (-37 (-382 (-522)))) (-4 *4 (-971)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-628 *5))) (-4 *5 (-283)) (-4 *5 (-971))
+ (-5 *2 (-1166 (-1166 *5))) (-5 *1 (-954 *5)) (-5 *4 (-1166 *5)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-393 *4)) (-4 *4 (-514)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *4)) (-4 *4 (-1014)) (-5 *2 (-1171))
- (-5 *1 (-1121 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *4)) (-4 *4 (-1014)) (-5 *2 (-1171))
- (-5 *1 (-1121 *4)))))
+ (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730))
+ (-5 *2
+ (-2 (|:| |mval| (-628 *4)) (|:| |invmval| (-628 *4))
+ (|:| |genIdeal| (-474 *4 *5 *6 *7))))
+ (-5 *1 (-474 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-13 (-782) (-338))) (-5 *2 (-108)) (-5 *1 (-981 *4 *3))
+ (-4 *3 (-1142 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-278)) (-5 *2 (-588 (-110))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-850)) (-4 *1 (-1144 *3 *4)) (-4 *3 (-971))
+ (-4 *4 (-729))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-382 (-522))) (-4 *1 (-1147 *3)) (-4 *3 (-971)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-426)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-283)) (-5 *1 (-163 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168))))
- ((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-393 *3)) (-5 *1 (-38 *3)) (-4 *3 (-1142 (-47)))))
- ((*1 *2 *3 *1)
- (-12 (-5 *2 (-2 (|:| |less| (-117 *3)) (|:| |greater| (-117 *3))))
- (-5 *1 (-117 *3)) (-4 *3 (-784))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-539 *4)) (-4 *4 (-13 (-29 *3) (-1106)))
- (-4 *3 (-13 (-426) (-962 (-522)) (-784) (-584 (-522))))
- (-5 *1 (-537 *3 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-539 (-382 (-881 *3))))
- (-4 *3 (-13 (-426) (-962 (-522)) (-784) (-584 (-522))))
- (-5 *1 (-542 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-338))
- (-5 *2 (-2 (|:| -3663 *3) (|:| |special| *3))) (-5 *1 (-665 *5 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1166 *5)) (-4 *5 (-338)) (-4 *5 (-971))
- (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5))
- (-5 *3 (-588 (-628 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1166 (-1166 *5))) (-4 *5 (-338)) (-4 *5 (-971))
- (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5))
- (-5 *3 (-588 (-628 *5)))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-129)) (-5 *2 (-588 *1)) (-4 *1 (-1054))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-132)) (-5 *2 (-588 *1)) (-4 *1 (-1054)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-628 *5))) (-5 *4 (-522)) (-4 *5 (-338))
- (-4 *5 (-971)) (-5 *2 (-108)) (-5 *1 (-954 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-628 *4))) (-4 *4 (-338)) (-4 *4 (-971))
- (-5 *2 (-108)) (-5 *1 (-954 *4)))))
+ (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014))
+ (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
+(((*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-1081 *4)) (-5 *1 (-492 *4))
- (-4 *4 (-324)))))
+ (-12 (-5 *3 (-454 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971))
+ (-5 *2 (-881 *5)) (-5 *1 (-873 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-514)) (-5 *1 (-40 *3 *2))
+ (-4 *2
+ (-13 (-338) (-278)
+ (-10 -8 (-15 -2947 ((-1037 *3 (-561 $)) $))
+ (-15 -2959 ((-1037 *3 (-561 $)) $))
+ (-15 -2217 ($ (-1037 *3 (-561 $))))))))))
+(((*1 *1 *1) (-12 (-4 *1 (-1157 *2)) (-4 *2 (-971)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971))
+ (-5 *2 (-588 (-588 (-872 *3))))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-588 (-588 (-872 *4)))) (-5 *3 (-108)) (-4 *4 (-971))
+ (-4 *1 (-1046 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-588 (-872 *3)))) (-4 *3 (-971))
+ (-4 *1 (-1046 *3))))
+ ((*1 *1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-588 (-588 (-588 *4)))) (-5 *3 (-108))
+ (-4 *1 (-1046 *4)) (-4 *4 (-971))))
+ ((*1 *1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-588 (-588 (-872 *4)))) (-5 *3 (-108))
+ (-4 *1 (-1046 *4)) (-4 *4 (-971))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-588 (-588 (-588 *5)))) (-5 *3 (-588 (-156)))
+ (-5 *4 (-156)) (-4 *1 (-1046 *5)) (-4 *5 (-971))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-588 (-588 (-872 *5)))) (-5 *3 (-588 (-156)))
+ (-5 *4 (-156)) (-4 *1 (-1046 *5)) (-4 *5 (-971)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-1 (-1066 (-881 *4)) (-1066 (-881 *4))))
- (-5 *1 (-1174 *4)) (-4 *4 (-338)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-708)) (-5 *2 (-108))))
- ((*1 *2 *3 *3)
- (|partial| -12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-1014))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *3 (-1014)) (-5 *2 (-108))
- (-5 *1 (-1121 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-708)) (-4 *5 (-971)) (-4 *2 (-1142 *5))
- (-5 *1 (-1160 *5 *2 *6 *3)) (-4 *6 (-598 *2)) (-4 *3 (-1157 *5)))))
-(((*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 (-628 (-202))) (-5 *5 (-108)) (-5 *6 (-202))
- (-5 *7 (-628 (-522)))
- (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-78 CONFUN))))
- (-5 *9 (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN))))
- (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-691)))))
+ (-12 (-4 *4 (-971)) (-4 *5 (-1142 *4)) (-5 *2 (-1 *6 (-588 *6)))
+ (-5 *1 (-1160 *4 *5 *3 *6)) (-4 *3 (-598 *5)) (-4 *6 (-1157 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-1089)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-301 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729))
+ (-4 *2 (-426))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-317 *2 *3 *4)) (-4 *2 (-1124)) (-4 *3 (-1142 *2))
+ (-4 *4 (-1142 (-382 *3)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-426))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *2 (-784)) (-4 *3 (-426))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-878 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-426))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-283)) (-4 *3 (-514)) (-5 *1 (-1073 *3 *2))
+ (-4 *2 (-1142 *3)))))
(((*1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-343))))
((*1 *2 *3 *3)
(-12 (-5 *3 (-850)) (-5 *2 (-1166 *4)) (-5 *1 (-492 *4))
@@ -8092,191 +7787,111 @@
((*1 *2 *1)
(-12 (-4 *2 (-784)) (-5 *1 (-651 *2 *3 *4)) (-4 *3 (-1014))
(-14 *4
- (-1 (-108) (-2 (|:| -2717 *2) (|:| -1400 *3))
- (-2 (|:| -2717 *2) (|:| -1400 *3)))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1085)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-640 *4 *5 *6 *7))
- (-4 *4 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120))
- (-4 *7 (-1120)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -3717 (-522)) (|:| -2976 (-588 *3))))
- (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-856))
- (-5 *2
- (-2 (|:| |brans| (-588 (-588 (-872 (-202)))))
- (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))))
- (-5 *1 (-141))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-856)) (-5 *4 (-382 (-522)))
- (-5 *2
- (-2 (|:| |brans| (-588 (-588 (-872 (-202)))))
- (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))))
- (-5 *1 (-141)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1089)))))
-(((*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 (-628 (-202))) (-5 *6 (-108)) (-5 *7 (-628 (-522)))
- (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-63 QPHESS))))
- (-5 *3 (-522)) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-691)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085)))
- (-4 *5 (-514)) (-5 *2 (-588 (-588 (-881 *5)))) (-5 *1 (-1091 *5)))))
-(((*1 *1 *1) (-5 *1 (-983))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1049))))
-(((*1 *2 *3 *4 *4 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
- (-5 *2 (-960)) (-5 *1 (-690)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-971))
- (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260)))
- (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))))
+ (-1 (-108) (-2 (|:| -2882 *2) (|:| -3858 *3))
+ (-2 (|:| -2882 *2) (|:| -3858 *3)))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3357 *4))))
+ (-4 *3 (-1014)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-591 *3 *4 *5)))))
(((*1 *1 *1) (-4 *1 (-574)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2))
(-4 *2 (-13 (-405 *3) (-928) (-1106))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |var| (-588 (-1085))) (|:| |pred| (-51))))
+ (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-881 (-522)))) (-5 *1 (-412))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1085)) (-5 *4 (-628 (-202))) (-5 *2 (-1018))
+ (-5 *1 (-697))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1085)) (-5 *4 (-628 (-522))) (-5 *2 (-1018))
+ (-5 *1 (-697)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))))
+(((*1 *1 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-126)))))
+(((*1 *1 *2) (-12 (-5 *2 (-166)) (-5 *1 (-225)))))
(((*1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-514)))))
-(((*1 *2)
- (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-392 *3)))))
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-501 *4 *2 *5 *6))
+ (-4 *4 (-283)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-708))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-682 *3)) (-4 *3 (-157)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 *8)) (-5 *4 (-708)) (-4 *8 (-878 *5 *7 *6))
+ (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085))))
+ (-4 *7 (-730))
+ (-5 *2
+ (-588
+ (-2 (|:| |det| *8) (|:| |rows| (-588 (-522)))
+ (|:| |cols| (-588 (-522))))))
+ (-5 *1 (-853 *5 *6 *7 *8)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-499 *3 *2))
- (-4 *2 (-1157 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-4 *4 (-1142 *3))
- (-4 *5 (-662 *3 *4)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-1157 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-5 *1 (-504 *3 *2))
- (-4 *2 (-1157 *3))))
+ (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
+ (-5 *1 (-915 *3 *4 *5 *6 *7))))
((*1 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-13 (-514) (-135)))
- (-5 *1 (-1062 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-158 (-382 (-522)))) (-5 *1 (-113 *3)) (-14 *3 (-522))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *3 (-1066 *2)) (-4 *2 (-283)) (-5 *1 (-158 *2))))
- ((*1 *1 *2) (-12 (-5 *2 (-382 *3)) (-4 *3 (-283)) (-5 *1 (-158 *3))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-158 (-522))) (-5 *1 (-703 *3)) (-4 *3 (-379))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-158 (-382 (-522)))) (-5 *1 (-800 *3)) (-14 *3 (-522))))
- ((*1 *2 *1)
- (-12 (-14 *3 (-522)) (-5 *2 (-158 (-382 (-522))))
- (-5 *1 (-801 *3 *4)) (-4 *4 (-798 *3)))))
-(((*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169))))
- ((*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))))
-(((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-982))))
- ((*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-982)))))
+ (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
+ (-5 *1 (-1021 *3 *4 *5 *6 *7)))))
(((*1 *2 *2)
(-12 (-4 *3 (-784)) (-5 *1 (-858 *3 *2)) (-4 *2 (-405 *3))))
((*1 *2 *3)
(-12 (-5 *3 (-1085)) (-5 *2 (-291 (-522))) (-5 *1 (-859)))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-412)) (-5 *1 (-1089)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
- ((*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-38 *3)) (-4 *3 (-1142 (-47))))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1142 *5))
- (-4 *5 (-13 (-27) (-405 *4)))
- (-4 *4 (-13 (-784) (-514) (-962 (-522))))
- (-4 *7 (-1142 (-382 *6))) (-5 *1 (-510 *4 *5 *6 *7 *2))
- (-4 *2 (-317 *5 *6 *7)))))
-(((*1 *2 *3 *3 *1)
- (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-1018)) (-5 *1 (-267)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2))
- (-4 *2 (-405 *4))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-146)) (-5 *2 (-1085))))
- ((*1 *1 *1) (-4 *1 (-146))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-938)) (-5 *2 (-792)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-588 (-1081 *7))) (-5 *3 (-1081 *7))
- (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-838)) (-4 *5 (-730))
- (-4 *6 (-784)) (-5 *1 (-835 *4 *5 *6 *7))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-588 (-1081 *5))) (-5 *3 (-1081 *5))
- (-4 *5 (-1142 *4)) (-4 *4 (-838)) (-5 *1 (-836 *4 *5)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))))
+(((*1 *1 *1) (-4 *1 (-574)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928) (-1106))))))
+(((*1 *1 *2 *3)
+ (-12
+ (-5 *3
+ (-588
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
+ (|:| |xpnt| (-522)))))
+ (-4 *2 (-514)) (-5 *1 (-393 *2))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |contp| (-522))
+ (|:| -4045 (-588 (-2 (|:| |irr| *4) (|:| -4160 (-522)))))))
+ (-4 *4 (-1142 (-522))) (-5 *2 (-393 *4)) (-5 *1 (-416 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1102))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-1102)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |cd| (-1068)) (|:| -2888 (-1068))))
- (-5 *1 (-759)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-760)) (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *3)
+ (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-588 (-588 *3)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-588 (-588 *5)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-588 *3))) (-5 *1 (-1093 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *3 *3)
(-12
(-5 *3
- (-588 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522))))))
- (-5 *2 (-588 (-382 (-522)))) (-5 *1 (-945 *4))
- (-4 *4 (-1142 (-522))))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-689)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-202) (-202) (-202)))
- (-5 *4 (-3 (-1 (-202) (-202) (-202) (-202)) "undefined"))
- (-5 *5 (-1009 (-202))) (-5 *6 (-588 (-239))) (-5 *2 (-1045 (-202)))
- (-5 *1 (-635)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-140 *2 *3 *4)) (-14 *2 (-850)) (-4 *3 (-338))
- (-14 *4 (-920 *2 *3))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *2 (-157)) (-5 *1 (-265 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1142 *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 (-342 *2)) (-4 *2 (-157)) (-4 *2 (-514))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157))
- (-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 (-656 *2)) (-4 *2 (-338))))
- ((*1 *1) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338))))
- ((*1 *1 *1) (|partial| -4 *1 (-660)))
- ((*1 *1 *1) (|partial| -4 *1 (-664)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
- (-5 *1 (-713 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-4 *1 (-987 *3 *2)) (-4 *3 (-13 (-782) (-338)))
- (-4 *2 (-1142 *3))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-686)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))))
-(((*1 *2 *1 *3 *3)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-555 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-1120)) (-5 *2 (-1171)))))
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-730)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *6 (-784))
+ (-5 *2 (-108)) (-5 *1 (-423 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-2 (|:| -3526 *4) (|:| -3192 (-522)))))
+ (-4 *4 (-1014)) (-5 *2 (-1 *4)) (-5 *1 (-943 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
+ (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-660)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-4 *1 (-664)) (-5 *2 (-108)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-708)) (-5 *1 (-720 *2)) (-4 *2 (-37 (-382 (-522))))
+ (-4 *2 (-157)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-354)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
+ ((*1 *1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-239)))))
(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
- (-4 *3 (-342 *4))))
- ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1 *5)) (-4 *5 (-1014)) (-5 *2 (-1 *5 *4))
(-5 *1 (-622 *4 *5)) (-4 *4 (-1014))))
@@ -8286,582 +7901,819 @@
(-12 (-5 *3 (-1085)) (-5 *2 (-291 (-522))) (-5 *1 (-859))))
((*1 *2 *1) (-12 (-4 *1 (-1181 *3 *2)) (-4 *3 (-784)) (-4 *2 (-971))))
((*1 *2 *1) (-12 (-4 *2 (-971)) (-5 *1 (-1187 *2 *3)) (-4 *3 (-780)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-507))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
- (-4 *3 (-13 (-338) (-1106) (-928))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 (-588 *7) *7 (-1081 *7))) (-5 *5 (-1 (-393 *7) *7))
- (-4 *7 (-1142 *6)) (-4 *6 (-13 (-338) (-135) (-962 (-382 (-522)))))
- (-5 *2 (-588 (-2 (|:| |frac| (-382 *7)) (|:| -3197 *3))))
- (-5 *1 (-746 *6 *7 *3 *8)) (-4 *3 (-598 *7))
- (-4 *8 (-598 (-382 *7)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-393 *6) *6)) (-4 *6 (-1142 *5))
- (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-5 *2
- (-588 (-2 (|:| |frac| (-382 *6)) (|:| -3197 (-596 *6 (-382 *6))))))
- (-5 *1 (-749 *5 *6)) (-5 *3 (-596 *6 (-382 *6))))))
-(((*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-697)))))
-(((*1 *2 *3 *4 *4 *5)
- (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-588 *3))
- (-4 *3 (-13 (-405 *6) (-27) (-1106)))
- (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-524 *6 *3 *7)) (-4 *7 (-1014)))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-4 *1 (-301 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-1142 (-522))) (-5 *1 (-458 *3)))))
+ (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *3 *2))
+ (-4 *2 (-13 (-27) (-1106) (-405 (-154 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522))))
+ (-5 *1 (-167 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085))
+ (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-1110 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157))
+ (-5 *2 (-628 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
+ ((*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *1 *1) (-4 *1 (-1049))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-382 (-881 (-154 (-522))))))
- (-5 *2 (-588 (-588 (-270 (-881 (-154 *4)))))) (-5 *1 (-353 *4))
- (-4 *4 (-13 (-338) (-782)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-270 (-382 (-881 (-154 (-522)))))))
- (-5 *2 (-588 (-588 (-270 (-881 (-154 *4)))))) (-5 *1 (-353 *4))
- (-4 *4 (-13 (-338) (-782)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-881 (-154 (-522)))))
- (-5 *2 (-588 (-270 (-881 (-154 *4))))) (-5 *1 (-353 *4))
- (-4 *4 (-13 (-338) (-782)))))
+ (-12 (-5 *3 (-1085)) (-4 *5 (-338)) (-5 *2 (-588 (-1115 *5)))
+ (-5 *1 (-1174 *5)) (-5 *4 (-1115 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-202) (-202) (-202)))
+ (-5 *4 (-1 (-202) (-202) (-202) (-202)))
+ (-5 *2 (-1 (-872 (-202)) (-202) (-202))) (-5 *1 (-635)))))
+(((*1 *2 *1) (-12 (-4 *1 (-400 *3)) (-4 *3 (-1014)) (-5 *2 (-708)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-1044 *4 *2))
+ (-4 *2 (-13 (-555 (-522) *4) (-10 -7 (-6 -4238) (-6 -4239))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-784)) (-4 *3 (-1120)) (-5 *1 (-1044 *3 *2))
+ (-4 *2 (-13 (-555 (-522) *3) (-10 -7 (-6 -4238) (-6 -4239)))))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-5 *3 (-1 (-108) *5 *5)) (-4 *5 (-13 (-1014) (-33)))
+ (-5 *2 (-108)) (-5 *1 (-1050 *4 *5)) (-4 *4 (-13 (-1014) (-33))))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))))
+(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855))))
+ ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *2 *3 *4 *4 *3)
+ (|partial| -12 (-5 *4 (-561 *3))
+ (-4 *3 (-13 (-405 *5) (-27) (-1106)))
+ (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2 (-2 (|:| -2585 *3) (|:| |coeff| *3)))
+ (-5 *1 (-524 *5 *3 *6)) (-4 *6 (-1014)))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-498)))))
+(((*1 *2 *3 *2)
+ (|partial| -12 (-5 *3 (-850)) (-5 *1 (-416 *2))
+ (-4 *2 (-1142 (-522)))))
+ ((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-850)) (-5 *4 (-708)) (-5 *1 (-416 *2))
+ (-4 *2 (-1142 (-522)))))
+ ((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-850)) (-5 *4 (-588 (-708))) (-5 *1 (-416 *2))
+ (-4 *2 (-1142 (-522)))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *3 (-850)) (-5 *4 (-588 (-708))) (-5 *5 (-708))
+ (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522)))))
+ ((*1 *2 *3 *2 *4 *5 *6)
+ (|partial| -12 (-5 *3 (-850)) (-5 *4 (-588 (-708))) (-5 *5 (-708))
+ (-5 *6 (-108)) (-5 *1 (-416 *2)) (-4 *2 (-1142 (-522)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-270 (-382 (-881 (-154 (-522))))))
- (-5 *2 (-588 (-270 (-881 (-154 *4))))) (-5 *1 (-353 *4))
- (-4 *4 (-13 (-338) (-782))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1102)))))
+ (-12 (-5 *3 (-850)) (-5 *4 (-393 *2)) (-4 *2 (-1142 *5))
+ (-5 *1 (-418 *5 *2)) (-4 *5 (-971)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-388 *3 *4 *5 *6)) (-4 *6 (-962 *4)) (-4 *3 (-283))
+ (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-4 *6 (-384 *4 *5))
+ (-14 *7 (-1166 *6)) (-5 *1 (-389 *3 *4 *5 *6 *7))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1166 *6)) (-4 *6 (-384 *4 *5)) (-4 *4 (-919 *3))
+ (-4 *5 (-1142 *4)) (-4 *3 (-283)) (-5 *1 (-389 *3 *4 *5 *6 *7))
+ (-14 *7 *2))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-761)) (-5 *3 (-588 (-1085))) (-5 *1 (-762)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1081 *9)) (-5 *4 (-588 *7)) (-5 *5 (-588 *8))
+ (-4 *7 (-784)) (-4 *8 (-971)) (-4 *9 (-878 *8 *6 *7)) (-4 *6 (-730))
+ (-5 *2 (-1081 *8)) (-5 *1 (-296 *6 *7 *8 *9)))))
+(((*1 *2 *1) (-12 (-4 *3 (-971)) (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)))))
+(((*1 *2 *3 *4 *2 *2 *5)
+ (|partial| -12 (-5 *2 (-777 *4)) (-5 *3 (-561 *4)) (-5 *5 (-108))
+ (-4 *4 (-13 (-1106) (-29 *6)))
+ (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-201 *6 *4)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-514)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-256)))))
+(((*1 *1 *1) (-4 *1 (-1054))))
(((*1 *2 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+ (|partial| -12 (-4 *3 (-1120)) (-5 *1 (-165 *3 *2))
+ (-4 *2 (-615 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-850)) (-4 *1 (-215 *3 *4)) (-4 *4 (-971))
+ (-4 *4 (-1120))))
+ ((*1 *1 *2)
+ (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157))
+ (-4 *5 (-215 (-3591 *3) (-708)))
+ (-14 *6
+ (-1 (-108) (-2 (|:| -2882 *2) (|:| -3858 *5))
+ (-2 (|:| -2882 *2) (|:| -3858 *5))))
+ (-5 *1 (-435 *3 *4 *2 *5 *6 *7)) (-4 *2 (-784))
+ (-4 *7 (-878 *4 *5 (-794 *3)))))
+ ((*1 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085))
- (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-291 *5)))
- (-5 *1 (-1041 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085)))
- (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-588 (-291 *5))))
- (-5 *1 (-1041 *5)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-1171)) (-5 *1 (-192 *4))
- (-4 *4
- (-13 (-784)
- (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 (*2 $))
- (-15 -2664 (*2 $)))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1171)) (-5 *1 (-192 *3))
- (-4 *3
- (-13 (-784)
- (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 (*2 $))
- (-15 -2664 (*2 $)))))))
- ((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-472)))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-855)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
- (-4 *4 (-971)))))
-(((*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-108)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-708)) (-4 *4 (-338)) (-4 *5 (-1142 *4)) (-5 *2 (-1171))
- (-5 *1 (-39 *4 *5 *6 *7)) (-4 *6 (-1142 (-382 *5))) (-14 *7 *6))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-904 *4 *5 *6 *7)))))
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
+ (-5 *2
+ (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522))
+ (|:| |success| (-108))))
+ (-5 *1 (-726)) (-5 *5 (-522)))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-694)))))
+(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-588 (-588 *7)))
- (-5 *1 (-422 *4 *5 *6 *7)) (-5 *3 (-588 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730))
- (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-588 (-588 *8)))
- (-5 *1 (-422 *5 *6 *7 *8)) (-5 *3 (-588 *8)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-590 *3)) (-4 *3 (-971))
- (-5 *1 (-652 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-771 *3)))))
+ (-12 (-4 *4 (-971))
+ (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260)))
+ (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-895))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157))
- (-5 *2 (-588 (-881 *4)))))
- ((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-588 (-881 *4))) (-5 *1 (-391 *3 *4))
- (-4 *3 (-392 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-588 (-881 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-588 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3)))))
+ (-12 (|has| *6 (-6 -4239)) (-4 *4 (-338)) (-4 *5 (-348 *4))
+ (-4 *6 (-348 *4)) (-5 *2 (-588 *6)) (-5 *1 (-489 *4 *5 *6 *3))
+ (-4 *3 (-626 *4 *5 *6))))
((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-427 *4 *5 *6 *7))) (-5 *2 (-588 (-881 *4)))
- (-5 *1 (-427 *4 *5 *6 *7)) (-4 *4 (-514)) (-4 *4 (-157))
- (-14 *5 (-850)) (-14 *6 (-588 (-1085))) (-14 *7 (-1166 (-628 *4))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1087 (-382 (-522)))) (-5 *2 (-382 (-522)))
- (-5 *1 (-169)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-1116 *3))
- (-4 *3 (-901)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1085)) (-4 *5 (-1124)) (-4 *6 (-1142 *5))
- (-4 *7 (-1142 (-382 *6))) (-5 *2 (-588 (-881 *5)))
- (-5 *1 (-316 *4 *5 *6 *7)) (-4 *4 (-317 *5 *6 *7))))
+ (-12 (|has| *9 (-6 -4239)) (-4 *4 (-514)) (-4 *5 (-348 *4))
+ (-4 *6 (-348 *4)) (-4 *7 (-919 *4)) (-4 *8 (-348 *7))
+ (-4 *9 (-348 *7)) (-5 *2 (-588 *6))
+ (-5 *1 (-490 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-626 *4 *5 *6))
+ (-4 *10 (-626 *7 *8 *9))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-4 *3 (-514)) (-5 *2 (-588 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-1085)) (-4 *1 (-317 *4 *5 *6)) (-4 *4 (-1124))
- (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-4 *4 (-338))
- (-5 *2 (-588 (-881 *4))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *2 (-1014)) (-5 *1 (-1098 *3 *2)) (-4 *3 (-1014)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-514) (-784))) (-5 *2 (-154 *5))
- (-5 *1 (-551 *4 *5 *3)) (-4 *5 (-13 (-405 *4) (-928) (-1106)))
- (-4 *3 (-13 (-405 (-154 *4)) (-928) (-1106))))))
-(((*1 *1) (-5 *1 (-412))))
+ (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4))
+ (-4 *6 (-348 *4)) (-5 *2 (-588 *6)) (-5 *1 (-627 *4 *5 *6 *3))
+ (-4 *3 (-626 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-4 *5 (-514))
+ (-5 *2 (-588 *7)))))
(((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426)))
- (-5 *2
- (-2
- (|:| |%term|
- (-2 (|:| |%coef| (-1151 *4 *5 *6))
- (|:| |%expon| (-294 *4 *5 *6))
- (|:| |%expTerms|
- (-588 (-2 (|:| |k| (-382 (-522))) (|:| |c| *4))))))
- (|:| |%type| (-1068))))
- (-5 *1 (-1152 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1106) (-405 *3)))
- (-14 *5 (-1085)) (-14 *6 *4))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-588 *8)) (-5 *3 (-1 (-108) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514))
- (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-904 *5 *6 *7 *8)))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
+ (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
+ (-5 *2 (-108)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *2 (-588 *1)) (-4 *1 (-985 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 (-588 *5))) (-4 *5 (-1157 *4))
+ (-4 *4 (-37 (-382 (-522))))
+ (-5 *2 (-1 (-1066 *4) (-588 (-1066 *4)))) (-5 *1 (-1159 *4 *5)))))
(((*1 *2 *1) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106)))))
((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792))))
((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-850)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
- ((*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-239)))))
-(((*1 *2 *1 *2) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085)))
- (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
- ((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085)))
- (-14 *4 (-588 (-1085))) (-4 *5 (-362)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-850)) (-5 *4 (-803)) (-5 *2 (-1171)) (-5 *1 (-1167))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *1 *1) (-12 (-5 *1 (-894 *2)) (-4 *2 (-895)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-382 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-13 (-338) (-135)))
- (-5 *1 (-374 *3 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-588 (-2 (|:| -3435 *4) (|:| -2717 (-1032))))))
- (-4 *4 (-324)) (-5 *2 (-628 *4)) (-5 *1 (-321 *4)))))
-(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-628 *11)) (-5 *4 (-588 (-382 (-881 *8))))
- (-5 *5 (-708)) (-5 *6 (-1068)) (-4 *8 (-13 (-283) (-135)))
- (-4 *11 (-878 *8 *10 *9)) (-4 *9 (-13 (-784) (-563 (-1085))))
- (-4 *10 (-730))
- (-5 *2
- (-2
- (|:| |rgl|
- (-588
- (-2 (|:| |eqzro| (-588 *11)) (|:| |neqzro| (-588 *11))
- (|:| |wcond| (-588 (-881 *8)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1166 (-382 (-881 *8))))
- (|:| -3855 (-588 (-1166 (-382 (-881 *8))))))))))
- (|:| |rgsz| (-522))))
- (-5 *1 (-853 *8 *9 *10 *11)) (-5 *7 (-522)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
+ (-12 (-5 *3 (-382 *5)) (-4 *5 (-1142 *4)) (-4 *4 (-514))
+ (-4 *4 (-971)) (-4 *2 (-1157 *4)) (-5 *1 (-1160 *4 *5 *6 *2))
+ (-4 *6 (-598 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1081 *7)) (-5 *3 (-522)) (-4 *7 (-878 *6 *4 *5))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971))
+ (-5 *1 (-296 *4 *5 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-834 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-1124)) (-4 *5 (-1142 *4))
- (-5 *2 (-2 (|:| |radicand| (-382 *5)) (|:| |deg| (-708))))
- (-5 *1 (-136 *4 *5 *3)) (-4 *3 (-1142 (-382 *5))))))
+ (-12 (-5 *3 (-588 *2)) (-5 *1 (-458 *2)) (-4 *2 (-1142 (-522))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-588 *3)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-392 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-338))
- (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
- (-5 *1 (-532 *5 *3)))))
+ (-12 (-5 *3 (-291 *4)) (-4 *4 (-13 (-765) (-784) (-971)))
+ (-5 *2 (-1068)) (-5 *1 (-763 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-291 *5)) (-5 *4 (-108))
+ (-4 *5 (-13 (-765) (-784) (-971))) (-5 *2 (-1068))
+ (-5 *1 (-763 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-759)) (-5 *4 (-291 *5))
+ (-4 *5 (-13 (-765) (-784) (-971))) (-5 *2 (-1171))
+ (-5 *1 (-763 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-759)) (-5 *4 (-291 *6)) (-5 *5 (-108))
+ (-4 *6 (-13 (-765) (-784) (-971))) (-5 *2 (-1171))
+ (-5 *1 (-763 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-765)) (-5 *2 (-1068))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-765)) (-5 *3 (-108)) (-5 *2 (-1068))))
+ ((*1 *2 *3 *1) (-12 (-4 *1 (-765)) (-5 *3 (-759)) (-5 *2 (-1171))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-4 *1 (-765)) (-5 *3 (-759)) (-5 *4 (-108)) (-5 *2 (-1171)))))
+(((*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168))))
+ ((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-588 *3)) (-5 *1 (-889 *3)) (-4 *3 (-507)))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-348 *2)) (-4 *2 (-1120))
+ (-4 *2 (-784))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3 *3)) (|has| *1 (-6 -4239))
+ (-4 *1 (-348 *3)) (-4 *3 (-1120)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-283)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-108)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-730)) (-4 *4 (-784)) (-4 *5 (-283))
+ (-5 *1 (-845 *3 *4 *5 *2)) (-4 *2 (-878 *5 *3 *4))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1081 *6)) (-4 *6 (-878 *5 *3 *4)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *5 (-283)) (-5 *1 (-845 *3 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *6 *4 *5))
+ (-5 *1 (-845 *4 *5 *6 *2)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-4 *6 (-283)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085)) (-4 *4 (-514)) (-4 *4 (-784))
- (-5 *1 (-531 *4 *2)) (-4 *2 (-405 *4)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-221 *2)) (-4 *2 (-1120))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120))))
- ((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202)))
- (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-61 LSFUN2))))
- (-5 *2 (-960)) (-5 *1 (-691)))))
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-985 *4 *5 *6)) (-4 *4 (-514))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *2)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-677 *3)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-588 (-1081 *5))) (-5 *3 (-1081 *5))
+ (-4 *5 (-151 *4)) (-4 *4 (-507)) (-5 *1 (-137 *4 *5))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-588 *3)) (-4 *3 (-1142 *5))
+ (-4 *5 (-1142 *4)) (-4 *4 (-324)) (-5 *1 (-333 *4 *5 *3))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-588 (-1081 (-522)))) (-5 *3 (-1081 (-522)))
+ (-5 *1 (-530))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-588 (-1081 *1))) (-5 *3 (-1081 *1))
+ (-4 *1 (-838)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1014)) (-4 *2 (-829 *4)) (-5 *1 (-630 *4 *2 *5 *3))
+ (-4 *5 (-348 *2)) (-4 *3 (-13 (-348 *4) (-10 -7 (-6 -4238)))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-588 *6) "failed") (-522) *6 *6)) (-4 *6 (-338))
+ (-4 *7 (-1142 *6))
+ (-5 *2 (-2 (|:| |answer| (-539 (-382 *7))) (|:| |a0| *6)))
+ (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-881 *6))) (-5 *4 (-588 (-1085)))
+ (-4 *6 (-13 (-514) (-962 *5))) (-4 *5 (-514))
+ (-5 *2 (-588 (-588 (-270 (-382 (-881 *6)))))) (-5 *1 (-963 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-850)) (-5 *2 (-1081 *3)) (-5 *1 (-1095 *3))
+ (-4 *3 (-338)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))))
-(((*1 *1 *1 *1) (-5 *1 (-202)))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964))))
- ((*1 *1 *1 *1) (-4 *1 (-1049))))
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
+ (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
+ (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
+ (|:| |abserr| (-202)) (|:| |relerr| (-202))))
+ (-5 *2 (-354)) (-5 *1 (-184)))))
+(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522))
+ (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960))
+ (-5 *1 (-686)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-31 *3 *4))
- (-4 *4 (-405 *3))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-708)) (-5 *1 (-110))))
- ((*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-110))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *4))
- (-4 *4 (-405 *3))))
- ((*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-110)) (-5 *1 (-148))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *4))
- (-4 *4 (-13 (-405 *3) (-928)))))
- ((*1 *2 *2) (-12 (-5 *2 (-110)) (-5 *1 (-277 *3)) (-4 *3 (-278))))
- ((*1 *2 *2) (-12 (-4 *1 (-278)) (-5 *2 (-110))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-110)) (-4 *4 (-784)) (-5 *1 (-404 *3 *4))
- (-4 *3 (-405 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *4))
- (-4 *4 (-405 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-110)) (-5 *1 (-561 *3)) (-4 *3 (-784))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *4))
- (-4 *4 (-13 (-405 *3) (-928) (-1106))))))
-(((*1 *2)
- (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-1014)))))
-(((*1 *2 *1) (|partial| -12 (-4 *1 (-938)) (-5 *2 (-792)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-382 (-522)))
- (-5 *1 (-408 *4 *3)) (-4 *3 (-405 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-561 *3)) (-4 *3 (-405 *5))
- (-4 *5 (-13 (-784) (-514) (-962 (-522))))
- (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-408 *5 *3)))))
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-283))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-421 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6))
+ (-4 *4 (-283)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-5 *1 (-421 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-588 *7)) (-5 *3 (-1068)) (-4 *7 (-878 *4 *5 *6))
+ (-4 *4 (-283)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-5 *1 (-421 *4 *5 *6 *7)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-907 *2)) (-4 *2 (-971))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-971)))))
(((*1 *2)
- (-12 (-4 *4 (-338)) (-5 *2 (-850)) (-5 *1 (-303 *3 *4))
- (-4 *3 (-304 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-338)) (-5 *2 (-770 (-850))) (-5 *1 (-303 *3 *4))
- (-4 *3 (-304 *4))))
- ((*1 *2) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-850))))
- ((*1 *2)
- (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-770 (-850))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+ (-12 (-4 *3 (-971)) (-5 *2 (-886 (-650 *3 *4))) (-5 *1 (-650 *3 *4))
+ (-4 *4 (-1142 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-291 (-202))) (-5 *2 (-291 (-354))) (-5 *1 (-281)))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *2 (-108)))))
-(((*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-806 *2)) (-4 *2 (-1120))))
- ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-808 *2)) (-4 *2 (-1120))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 (-872 *3))) (-4 *3 (-971)) (-4 *1 (-1046 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 (-588 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 (-872 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))))
-(((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-378 *3)) (-4 *3 (-379))))
- ((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-378 *3)) (-4 *3 (-379))))
- ((*1 *2 *2) (-12 (-5 *2 (-850)) (|has| *1 (-6 -4229)) (-4 *1 (-379))))
- ((*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850))))
- ((*1 *2 *1) (-12 (-4 *1 (-798 *3)) (-5 *2 (-1066 (-522))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426))
- (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-968 *5 *6)))
- (-5 *1 (-573 *5 *6)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-708)) (-4 *1 (-349 *3 *4)) (-4 *3 (-784))
- (-4 *4 (-157))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-708)) (-4 *1 (-1185 *3 *4)) (-4 *3 (-784))
- (-4 *4 (-971)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+ (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4))
+ (-4 *4 (-324)))))
(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-708)) (-4 *4 (-13 (-514) (-135)))
- (-5 *1 (-1136 *4 *2)) (-4 *2 (-1142 *4)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *5 (-561 *4)) (-5 *6 (-1085))
- (-4 *4 (-13 (-405 *7) (-27) (-1106)))
- (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4))))
- (-5 *1 (-524 *7 *4 *3)) (-4 *3 (-598 *4)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-850)) (-5 *4 (-393 *6)) (-4 *6 (-1142 *5))
- (-4 *5 (-971)) (-5 *2 (-588 *6)) (-5 *1 (-418 *5 *6)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-872 *5)) (-4 *5 (-971)) (-5 *2 (-708))
- (-5 *1 (-1074 *4 *5)) (-14 *4 (-850))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 (-708))) (-5 *3 (-708)) (-5 *1 (-1074 *4 *5))
- (-14 *4 (-850)) (-4 *5 (-971))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 (-708))) (-5 *3 (-872 *5)) (-4 *5 (-971))
- (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))))
-(((*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
- ((*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *1 *1) (-4 *1 (-1049))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-708)) (-4 *5 (-514))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-1066 *3))) (-5 *1 (-1066 *3)) (-4 *3 (-1120)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 *2))
- (-5 *2 (-354)) (-5 *1 (-722 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971))
- (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514))
- (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514))
- (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5))))
+ (-12 (-4 *4 (-730))
+ (-4 *3 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))) (-4 *5 (-514))
+ (-5 *1 (-670 *4 *3 *5 *2)) (-4 *2 (-878 (-382 (-881 *5)) *4 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *4 (-971)) (-4 *5 (-730))
+ (-4 *3
+ (-13 (-784)
+ (-10 -8 (-15 -3873 ((-1085) $))
+ (-15 -1660 ((-3 $ "failed") (-1085))))))
+ (-5 *1 (-911 *4 *5 *3 *2)) (-4 *2 (-878 (-881 *4) *5 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-588 *6))
+ (-4 *6
+ (-13 (-784)
+ (-10 -8 (-15 -3873 ((-1085) $))
+ (-15 -1660 ((-3 $ "failed") (-1085))))))
+ (-4 *4 (-971)) (-4 *5 (-730)) (-5 *1 (-911 *4 *5 *6 *2))
+ (-4 *2 (-878 (-881 *4) *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))))
+(((*1 *2 *3 *2)
+ (|partial| -12 (-5 *2 (-1166 *4)) (-5 *3 (-628 *4)) (-4 *4 (-338))
+ (-5 *1 (-609 *4))))
+ ((*1 *2 *3 *2)
+ (|partial| -12 (-4 *4 (-338))
+ (-4 *5 (-13 (-348 *4) (-10 -7 (-6 -4239))))
+ (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239))))
+ (-5 *1 (-610 *4 *5 *2 *3)) (-4 *3 (-626 *4 *5 *2))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *4 (-588 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-338))
+ (-5 *1 (-751 *2 *3)) (-4 *3 (-598 *2))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784))
- (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514))
- (-4 *5 (-784)) (-4 *5 (-563 *2)) (-5 *2 (-354))
- (-5 *1 (-722 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-55 *2 *3 *4)) (-4 *2 (-1120)) (-4 *3 (-348 *2))
- (-4 *4 (-348 *2))))
- ((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-555 *3 *2)) (-4 *3 (-1014))
- (-4 *2 (-1120)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-1001))) (-5 *1 (-267)))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-708)) (-5 *1 (-719 *3)) (-4 *3 (-971))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *1 (-891 *3 *2)) (-4 *2 (-124)) (-4 *3 (-514))
- (-4 *3 (-971)) (-4 *2 (-729))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-708)) (-5 *1 (-1081 *3)) (-4 *3 (-971))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-898)) (-4 *2 (-124)) (-5 *1 (-1087 *3)) (-4 *3 (-514))
- (-4 *3 (-971))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-708)) (-5 *1 (-1139 *4 *3)) (-14 *4 (-1085))
- (-4 *3 (-971)))))
-(((*1 *1 *1) (-4 *1 (-980))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-561 *4)) (-4 *4 (-784)) (-4 *2 (-784))
- (-5 *1 (-560 *2 *4)))))
+ (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1068)) (-5 *4 (-154 (-202))) (-5 *5 (-522))
+ (-5 *2 (-960)) (-5 *1 (-696)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-514) (-784) (-962 (-522))))
- (-4 *5 (-405 *4)) (-5 *2 (-393 (-1081 (-382 (-522)))))
- (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-338)) (-5 *1 (-261 *3 *2)) (-4 *2 (-1157 *3)))))
+ (-12 (-5 *3 (-1068)) (-5 *2 (-588 (-1090))) (-5 *1 (-809)))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522))
+ (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960))
+ (-5 *1 (-686)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-588 (-454 *3 *4))) (-14 *3 (-588 (-1085)))
- (-4 *4 (-426)) (-5 *1 (-576 *3 *4)))))
-(((*1 *1) (-5 *1 (-132)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-237))))
- ((*1 *1 *2) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-239)))))
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
(((*1 *2 *3 *4 *4 *5 *6)
(-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-803))
- (-5 *5 (-850)) (-5 *6 (-588 (-239))) (-5 *2 (-442)) (-5 *1 (-1170))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *2 (-442))
+ (-5 *5 (-850)) (-5 *6 (-588 (-239))) (-5 *2 (-1167))
(-5 *1 (-1170))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-588 (-239)))
- (-5 *2 (-442)) (-5 *1 (-1170)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
-(((*1 *2 *1) (-12 (-4 *1 (-962 (-522))) (-4 *1 (-278)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
- (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-202))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))))
- (-5 *2 (-960)) (-5 *1 (-687))))
- ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
- (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-202))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-59 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-85 BDYVAL))))
- (-5 *8 (-363)) (-5 *2 (-960)) (-5 *1 (-687)))))
-(((*1 *2 *3 *4)
+ (-5 *2 (-1167)) (-5 *1 (-1170)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *3 (-108)) (-5 *1 (-106))))
+ ((*1 *2 *2) (-12 (-5 *2 (-850)) (|has| *1 (-6 -4229)) (-4 *1 (-379))))
+ ((*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-588 (-522))) (-5 *1 (-1024)) (-5 *3 (-522)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-49 *2 *3)) (-4 *2 (-971)) (-14 *3 (-588 (-1085)))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-200 *2 *3)) (-4 *2 (-13 (-971) (-784)))
+ (-14 *3 (-588 (-1085))))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441))))
+ ((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-561 *2))) (-5 *4 (-588 (-1085)))
+ (-4 *2 (-13 (-405 (-154 *5)) (-928) (-1106)))
+ (-4 *5 (-13 (-514) (-784))) (-5 *1 (-551 *5 *6 *2))
+ (-4 *6 (-13 (-405 *5) (-928) (-1106))))))
+(((*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168))))
+ ((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085))
+ (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-253 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4)))))
+ ((*1 *1 *1) (-5 *1 (-354)))
+ ((*1 *2 *3 *4)
(-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
(-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1886 *4))))
- (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *2 *2) (|partial| -12 (-5 *2 (-291 (-202))) (-5 *1 (-243)))))
-(((*1 *1 *2 *1 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *4)) (-4 *4 (-782)) (-4 *4 (-338)) (-5 *2 (-708))
- (-5 *1 (-874 *4 *5)) (-4 *5 (-1142 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-588 (-291 (-202)))) (-5 *1 (-243)))))
+ (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4))))
+ (-5 *1 (-713 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *2 (-784)) (-4 *5 (-985 *3 *4 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
(((*1 *2 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |partsol| (-1166 (-382 (-881 *4))))
- (|:| -3855 (-588 (-1166 (-382 (-881 *4)))))))
- (-5 *3 (-588 *7)) (-4 *4 (-13 (-283) (-135)))
- (-4 *7 (-878 *4 *6 *5)) (-4 *5 (-13 (-784) (-563 (-1085))))
- (-4 *6 (-730)) (-5 *1 (-853 *4 *5 *6 *7)))))
-(((*1 *1) (-4 *1 (-324))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1068)) (-5 *2 (-588 (-1090))) (-5 *1 (-1047)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+ (-12 (-4 *3 (-338)) (-5 *1 (-261 *3 *2)) (-4 *2 (-1157 *3)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-1068)) (-5 *4 (-1032)) (-5 *2 (-108)) (-5 *1 (-758)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-350 *4 *2))
+ (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))))))
(((*1 *2 *3)
- (-12 (-5 *2 (-588 (-1081 (-522)))) (-5 *1 (-170)) (-5 *3 (-522)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-792)) (-5 *1 (-1066 *3)) (-4 *3 (-1014))
- (-4 *3 (-1120)))))
+ (-12 (-5 *3 (-588 *4)) (-4 *4 (-784)) (-5 *2 (-588 (-606 *4 *5)))
+ (-5 *1 (-572 *4 *5 *6)) (-4 *5 (-13 (-157) (-655 (-382 (-522)))))
+ (-14 *6 (-850)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-115 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3 *4 *4 *5 *3 *6)
+ (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-588 *3)) (-5 *6 (-1081 *3))
+ (-4 *3 (-13 (-405 *7) (-27) (-1106)))
+ (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-518 *7 *3 *8)) (-4 *8 (-1014))))
+ ((*1 *2 *3 *4 *4 *5 *4 *3 *6)
+ (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-588 *3))
+ (-5 *6 (-382 (-1081 *3))) (-4 *3 (-13 (-405 *7) (-27) (-1106)))
+ (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-518 *7 *3 *8)) (-4 *8 (-1014)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-850)) (-5 *2 (-708)) (-5 *1 (-1015 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522)))))
- (-4 *5 (-1142 *4))
- (-5 *2 (-588 (-2 (|:| |deg| (-708)) (|:| -3197 *5))))
- (-5 *1 (-746 *4 *5 *3 *6)) (-4 *3 (-598 *5))
- (-4 *6 (-598 (-382 *5))))))
+ (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4))
+ (-5 *2 (-393 *3)) (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))))
+(((*1 *1 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)) (-4 *2 (-514))))
+ ((*1 *1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-690)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-522))))
+ (|partial| -12 (-4 *3 (-1026)) (-4 *3 (-784)) (-5 *2 (-588 *1))
+ (-4 *1 (-405 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-792))) ((*1 *1 *1 *1) (-5 *1 (-792)))
- ((*1 *1 *1) (-5 *1 (-792))))
+ (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3))
+ (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *2 (-588 *1)) (-4 *1 (-878 *3 *4 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971))
+ (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-588 *3))
+ (-5 *1 (-879 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-338)
+ (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $))
+ (-15 -2959 (*7 $))))))))
+(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932)))))
+(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))
+ (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))
+ (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1171)) (-5 *1 (-1122))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1171)) (-5 *1 (-1122)))))
+ (-12 (-5 *2 (-2 (|:| -3909 (-522)) (|:| -4045 (-588 *3))))
+ (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))))
+(((*1 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-838)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-393 (-1081 *7)))
- (-5 *1 (-835 *4 *5 *6 *7)) (-5 *3 (-1081 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-838)) (-4 *5 (-1142 *4)) (-5 *2 (-393 (-1081 *5)))
- (-5 *1 (-836 *4 *5)) (-5 *3 (-1081 *5)))))
+ (|partial| -12 (-5 *3 (-850))
+ (-5 *2 (-1166 (-588 (-2 (|:| -3526 *4) (|:| -2882 (-1032))))))
+ (-5 *1 (-321 *4)) (-4 *4 (-324)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-108)) (-5 *1 (-110)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-338) (-135) (-962 (-522)))) (-4 *5 (-1142 *4))
+ (-5 *2 (-2 (|:| |ans| (-382 *5)) (|:| |nosol| (-108))))
+ (-5 *1 (-941 *4 *5)) (-5 *3 (-382 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-971)) (-5 *1 (-650 *3 *4))
+ (-4 *4 (-1142 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-200 *2 *3)) (-4 *2 (-13 (-971) (-784)))
+ (-14 *3 (-588 (-1085))))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-270 *2)) (-4 *2 (-664)) (-4 *2 (-1120)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-588 (-872 *4))) (-4 *1 (-1046 *4)) (-4 *4 (-971))
+ (-5 *2 (-708)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5)))
+ (-5 *2 (-108)) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
+(((*1 *2 *3 *3 *3 *4 *5 *6)
+ (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202)))
+ (-5 *5 (-1009 (-202))) (-5 *6 (-588 (-239))) (-5 *2 (-1045 (-202)))
+ (-5 *1 (-635)))))
+(((*1 *2)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
+(((*1 *1 *2 *1 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))))
+(((*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1068)) (-5 *1 (-171))))
+ ((*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1068)) (-5 *1 (-276))))
+ ((*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1068)) (-5 *1 (-281)))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-708)) (-5 *1 (-150 *3 *4))
+ (-4 *3 (-151 *4))))
+ ((*1 *2)
+ (-12 (-14 *4 *2) (-4 *5 (-1120)) (-5 *2 (-708))
+ (-5 *1 (-214 *3 *4 *5)) (-4 *3 (-215 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *4 (-784)) (-5 *2 (-708)) (-5 *1 (-404 *3 *4))
+ (-4 *3 (-405 *4))))
+ ((*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-506 *3)) (-4 *3 (-507))))
+ ((*1 *2) (-12 (-4 *1 (-701)) (-5 *2 (-708))))
+ ((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-708)) (-5 *1 (-733 *3 *4))
+ (-4 *3 (-734 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-918 *3 *4))
+ (-4 *3 (-919 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-708)) (-5 *1 (-922 *3 *4))
+ (-4 *3 (-923 *4))))
+ ((*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-937 *3)) (-4 *3 (-938))))
+ ((*1 *2) (-12 (-4 *1 (-971)) (-5 *2 (-708))))
+ ((*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-979 *3)) (-4 *3 (-980)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-324)) (-5 *2 (-393 *3)) (-5 *1 (-194 *4 *3))
- (-4 *3 (-1142 *4))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-393 *3)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3))
- (-4 *3 (-1142 (-522)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 (-708))) (-5 *2 (-393 *3)) (-5 *1 (-416 *3))
- (-4 *3 (-1142 (-522)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-588 (-708))) (-5 *5 (-708)) (-5 *2 (-393 *3))
- (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522)))))
+ (-12 (-5 *3 (-856))
+ (-5 *2
+ (-2 (|:| |brans| (-588 (-588 (-872 (-202)))))
+ (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))))
+ (-5 *1 (-141))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-708)) (-5 *2 (-393 *3)) (-5 *1 (-416 *3))
- (-4 *3 (-1142 (-522)))))
+ (-12 (-5 *3 (-856)) (-5 *4 (-382 (-522)))
+ (-5 *2
+ (-2 (|:| |brans| (-588 (-588 (-872 (-202)))))
+ (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))))
+ (-5 *1 (-141))))
((*1 *2 *3)
- (-12 (-5 *2 (-393 *3)) (-5 *1 (-933 *3))
- (-4 *3 (-1142 (-382 (-522))))))
+ (-12
+ (-5 *2
+ (-2 (|:| |brans| (-588 (-588 (-872 (-202)))))
+ (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))))
+ (-5 *1 (-141)) (-5 *3 (-588 (-872 (-202))))))
((*1 *2 *3)
- (-12 (-5 *2 (-393 *3)) (-5 *1 (-1131 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
+ (-12
+ (-5 *2
+ (-2 (|:| |brans| (-588 (-588 (-872 (-202)))))
+ (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))))
+ (-5 *1 (-141)) (-5 *3 (-588 (-588 (-872 (-202)))))))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-239))))
+ ((*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-239)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-3 (-382 (-881 *5)) (-1075 (-1085) (-881 *5))))
+ (-4 *5 (-426)) (-5 *2 (-588 (-628 (-382 (-881 *5)))))
+ (-5 *1 (-268 *5)) (-5 *4 (-628 (-382 (-881 *5)))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2))
- (-4 *4 (-13 (-784) (-514))))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-338) (-135) (-962 (-522))))
- (-4 *5 (-1142 *4)) (-5 *2 (-588 (-382 *5))) (-5 *1 (-942 *4 *5))
- (-5 *3 (-382 *5)))))
-(((*1 *2 *3) (-12 (-5 *2 (-393 *3)) (-5 *1 (-516 *3)) (-4 *3 (-507)))))
-(((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-964)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1068)) (-4 *1 (-339 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-1014)))))
+ (-12 (-5 *3 (-856))
+ (-5 *2
+ (-2 (|:| |brans| (-588 (-588 (-872 (-202)))))
+ (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))))
+ (-5 *1 (-141))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-856)) (-5 *4 (-382 (-522)))
+ (-5 *2
+ (-2 (|:| |brans| (-588 (-588 (-872 (-202)))))
+ (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))))
+ (-5 *1 (-141)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-628 (-382 (-881 (-522)))))
+ (-5 *2 (-588 (-628 (-291 (-522))))) (-5 *1 (-956))
+ (-5 *3 (-291 (-522))))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1950 *4)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-1166 *5)) (-4 *5 (-729)) (-5 *2 (-108))
+ (-5 *1 (-779 *4 *5)) (-14 *4 (-708)))))
+(((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-98 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-98 *2)) (-4 *2 (-1014)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157))
+ (-5 *2 (-628 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1016 *3)) (-5 *1 (-834 *3)) (-4 *3 (-343))
+ (-4 *3 (-1014)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-766)) (-5 *3 (-1068)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-708)) (-4 *1 (-208 *4))
+ (-4 *4 (-971))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-208 *3)) (-4 *3 (-971))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-210)) (-5 *2 (-708))))
+ ((*1 *1 *1) (-4 *1 (-210)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-242 *3)) (-4 *3 (-784))))
+ ((*1 *1 *1) (-12 (-4 *1 (-242 *2)) (-4 *2 (-784))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124))
+ (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-708)) (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *4))
+ (-4 *4 (-1142 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-13 (-338) (-135))) (-5 *1 (-374 *2 *3))
+ (-4 *3 (-1142 *2))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-448 *3 *4 *5))
+ (-4 *3 (-971)) (-14 *5 *3)))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *2 (-338)) (-4 *2 (-829 *3)) (-5 *1 (-539 *2))
+ (-5 *3 (-1085))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-539 *2)) (-4 *2 (-338))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-792))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 *4)) (-5 *3 (-588 (-708))) (-4 *1 (-829 *4))
+ (-4 *4 (-1014))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-708)) (-4 *1 (-829 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 *3)) (-4 *1 (-829 *3)) (-4 *3 (-1014))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-829 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1076 *3 *4 *5))
+ (-4 *3 (-971)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1082 *3 *4 *5))
+ (-4 *3 (-971)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1083 *3 *4 *5))
+ (-4 *3 (-971)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1130 *3 *4 *5))
+ (-4 *3 (-971)) (-14 *5 *3)))
+ ((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1142 *3)) (-4 *3 (-971))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1151 *3 *4 *5))
+ (-4 *3 (-971)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1158 *3 *4 *5))
+ (-4 *3 (-971)) (-14 *5 *3))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1068)) (-5 *2 (-588 (-1090))) (-5 *1 (-1047)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1089)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *2)
+ (|:| |polj| *2)))
+ (-4 *5 (-730)) (-4 *2 (-878 *4 *5 *6)) (-5 *1 (-423 *4 *5 *6 *2))
+ (-4 *4 (-426)) (-4 *6 (-784)))))
+(((*1 *2 *1)
+ (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157))
+ (-4 *5 (-215 (-3591 *3) (-708)))
+ (-14 *6
+ (-1 (-108) (-2 (|:| -2882 *2) (|:| -3858 *5))
+ (-2 (|:| -2882 *2) (|:| -3858 *5))))
+ (-4 *2 (-784)) (-5 *1 (-435 *3 *4 *2 *5 *6 *7))
+ (-4 *7 (-878 *4 *5 (-794 *3))))))
+(((*1 *2) (-12 (-4 *3 (-157)) (-5 *2 (-1166 *1)) (-4 *1 (-342 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-154 (-522))) (-5 *2 (-108)) (-5 *1 (-420))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4)
+ (-224 *4 (-382 (-522)))))
+ (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-108))
+ (-5 *1 (-475 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-889 *3)) (-4 *3 (-507))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1124)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-1081 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *2)
+ (|partial| -12 (-4 *3 (-514)) (-4 *3 (-157))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -2905 (-588 *1))))
+ (-4 *1 (-342 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-427 *3 *4 *5 *6))
+ (|:| -2905 (-588 (-427 *3 *4 *5 *6)))))
+ (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
+(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
(-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
(-5 *1 (-690)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2259 *3)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*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 (-305)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-210)) (-4 *3 (-971)) (-4 *4 (-784)) (-4 *5 (-242 *4))
+ (-4 *6 (-730)) (-5 *2 (-1 *1 (-708))) (-4 *1 (-229 *3 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-971)) (-4 *3 (-784)) (-4 *5 (-242 *3)) (-4 *6 (-730))
+ (-5 *2 (-1 *1 (-708))) (-4 *1 (-229 *4 *3 *5 *6))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-708)) (-4 *1 (-242 *2)) (-4 *2 (-784)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-708)) (-5 *2 (-108)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1166 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-881 (-154 (-522))))) (-5 *2 (-588 (-154 *4)))
- (-5 *1 (-353 *4)) (-4 *4 (-13 (-338) (-782)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-588 (-382 (-881 (-154 (-522))))))
- (-5 *4 (-588 (-1085))) (-5 *2 (-588 (-588 (-154 *5))))
- (-5 *1 (-353 *5)) (-4 *5 (-13 (-338) (-782))))))
-(((*1 *1 *1) (-4 *1 (-574)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928) (-1106))))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-338)) (-5 *1 (-261 *3 *2)) (-4 *2 (-1157 *3)))))
+ (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1014)) (-4 *4 (-1014))
+ (-4 *6 (-1014)) (-5 *2 (-1 *6 *5)) (-5 *1 (-623 *5 *4 *6)))))
+(((*1 *2 *1 *2)
+ (-12 (-4 *1 (-339 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))))
+(((*1 *2 *2)
+ (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3))
+ (-4 *3 (-1142 (-154 *2))))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
+ (|partial| -12 (-5 *4 (-588 *11)) (-5 *5 (-588 (-1081 *9)))
+ (-5 *6 (-588 *9)) (-5 *7 (-588 *12)) (-5 *8 (-588 (-708)))
+ (-4 *11 (-784)) (-4 *9 (-283)) (-4 *12 (-878 *9 *10 *11))
+ (-4 *10 (-730)) (-5 *2 (-588 (-1081 *12)))
+ (-5 *1 (-646 *10 *11 *9 *12)) (-5 *3 (-1081 *12)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085))
+ (-14 *4 *2))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-784)) (-5 *2 (-588 (-588 *4))) (-5 *1 (-1092 *4))
+ (-5 *3 (-588 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 (-154 (-382 (-522))))) (-5 *2 (-588 (-154 *4)))
+ (-5 *1 (-702 *4)) (-4 *4 (-13 (-338) (-782))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-588 *3)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-392 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-4 *1 (-782)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338)))
- (-4 *3 (-1142 *4)) (-5 *2 (-108)))))
-(((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1068)) (-4 *1 (-364)))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-588 *1)) (-4 *1 (-849)))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
- (-4 *3 (-342 *4))))
- ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+ (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
+ (-5 *2 (-108)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1085)) (-5 *2 (-1 (-1081 (-881 *4)) (-881 *4)))
- (-5 *1 (-1174 *4)) (-4 *4 (-338)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-4 *1 (-832 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-1139 *5 *4)) (-5 *1 (-1083 *4 *5 *6))
- (-4 *4 (-971)) (-14 *5 (-1085)) (-14 *6 *4)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-1139 *5 *4)) (-5 *1 (-1158 *4 *5 *6))
- (-4 *4 (-971)) (-14 *5 (-1085)) (-14 *6 *4))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-156)))))
-(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-354)) (-5 *1 (-983)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-522)) (-5 *1 (-393 *2)) (-4 *2 (-514)))))
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1157 *4))
+ (-4 *4 (-37 (-382 (-522)))) (-5 *2 (-1 (-1066 *4) (-1066 *4)))
+ (-5 *1 (-1159 *4 *5)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
+ (-5 *2
+ (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522))
+ (|:| |success| (-108))))
+ (-5 *1 (-726)) (-5 *5 (-522)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-833 *4))
+ (-4 *4 (-1014))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-658)) (-5 *2 (-850))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-708)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1))
+ (-4 *1 (-985 *3 *4 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-350 *4 *2))
+ (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-354)) (-5 *1 (-983)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-154 *4)) (-5 *1 (-164 *4 *3))
+ (-4 *4 (-13 (-338) (-782))) (-4 *3 (-1142 *2)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
+ (-12 (-5 *6 (-588 (-108))) (-5 *7 (-628 (-202)))
+ (-5 *8 (-628 (-522))) (-5 *3 (-522)) (-5 *4 (-202)) (-5 *5 (-108))
+ (-5 *2 (-960)) (-5 *1 (-692)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-522))) (-5 *4 (-834 (-522)))
+ (-5 *2 (-628 (-522))) (-5 *1 (-543))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-588 (-628 (-522))))
+ (-5 *1 (-543))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-522))) (-5 *4 (-588 (-834 (-522))))
+ (-5 *2 (-588 (-628 (-522)))) (-5 *1 (-543)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *4)) (-4 *4 (-338)) (-5 *2 (-628 *4))
+ (-5 *1 (-751 *4 *5)) (-4 *5 (-598 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *5)) (-5 *4 (-708)) (-4 *5 (-338))
+ (-5 *2 (-628 *5)) (-5 *1 (-751 *5 *6)) (-4 *6 (-598 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-803)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1089)))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1068)) (-4 *1 (-364)))))
+(((*1 *2 *2 *3)
+ (-12
+ (-5 *2
+ (-2 (|:| |partsol| (-1166 (-382 (-881 *4))))
+ (|:| -2905 (-588 (-1166 (-382 (-881 *4)))))))
+ (-5 *3 (-588 *7)) (-4 *4 (-13 (-283) (-135)))
+ (-4 *7 (-878 *4 *6 *5)) (-4 *5 (-13 (-784) (-563 (-1085))))
+ (-4 *6 (-730)) (-5 *1 (-853 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 *1)) (|has| *1 (-6 -4239)) (-4 *1 (-936 *3))
+ (-4 *3 (-1120)))))
(((*1 *2 *1 *3 *3 *2)
(-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1120))
(-4 *4 (-348 *2)) (-4 *5 (-348 *2))))
@@ -8893,14 +8745,14 @@
(-12 (-5 *3 (-1085)) (-5 *2 (-222 (-1068))) (-5 *1 (-192 *4))
(-4 *4
(-13 (-784)
- (-10 -8 (-15 -2545 ((-1068) $ *3)) (-15 -1678 ((-1171) $))
- (-15 -2664 ((-1171) $)))))))
+ (-10 -8 (-15 -2683 ((-1068) $ *3)) (-15 -1757 ((-1171) $))
+ (-15 -2113 ((-1171) $)))))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-916)) (-5 *1 (-192 *3))
(-4 *3
(-13 (-784)
- (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 ((-1171) $))
- (-15 -2664 ((-1171) $)))))))
+ (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 ((-1171) $))
+ (-15 -2113 ((-1171) $)))))))
((*1 *2 *1 *3)
(-12 (-5 *3 "count") (-5 *2 (-708)) (-5 *1 (-222 *4)) (-4 *4 (-784))))
((*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-222 *3)) (-4 *3 (-784))))
@@ -8986,82 +8838,257 @@
(-12 (-5 *2 "rest") (-4 *1 (-1154 *3)) (-4 *3 (-1120))))
((*1 *2 *1 *3)
(-12 (-5 *3 "first") (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-522)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-708)) (-4 *5 (-157))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708))
+ (-4 *4 (-157))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2))
+ (-4 *4 (-348 *2))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-971)) (-4 *1 (-626 *3 *2 *4)) (-4 *2 (-348 *3))
+ (-4 *4 (-348 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1052 *2 *3)) (-14 *2 (-708)) (-4 *3 (-971)))))
+(((*1 *1) (-5 *1 (-412))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-126))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-770 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-777 *3)) (-4 *3 (-1014)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-730))
+ (-4 *3 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))) (-4 *5 (-514))
+ (-5 *1 (-670 *4 *3 *5 *2)) (-4 *2 (-878 (-382 (-881 *5)) *4 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *4 (-971)) (-4 *5 (-730))
+ (-4 *3
+ (-13 (-784)
+ (-10 -8 (-15 -3873 ((-1085) $))
+ (-15 -1660 ((-3 $ "failed") (-1085))))))
+ (-5 *1 (-911 *4 *5 *3 *2)) (-4 *2 (-878 (-881 *4) *5 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-588 *6))
+ (-4 *6
+ (-13 (-784)
+ (-10 -8 (-15 -3873 ((-1085) $))
+ (-15 -1660 ((-3 $ "failed") (-1085))))))
+ (-4 *4 (-971)) (-4 *5 (-730)) (-5 *1 (-911 *4 *5 *6 *2))
+ (-4 *2 (-878 (-881 *4) *5 *6)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
+ (-5 *2 (-960)) (-5 *1 (-690)))))
+(((*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-202)) (-5 *1 (-281)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))))
+(((*1 *2 *1) (-12 (-4 *3 (-1120)) (-5 *2 (-588 *1)) (-4 *1 (-936 *3)))))
+(((*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169))))
+ ((*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-872 *3))) (-4 *3 (-971)) (-4 *1 (-1046 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 (-588 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 (-872 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354)))
+ (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171))
+ (-5 *1 (-725)))))
+(((*1 *1) (-4 *1 (-324))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-108))
- (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3))))
+ (-12 (-5 *3 (-588 *5)) (-5 *4 (-850)) (-4 *5 (-784))
+ (-5 *2 (-588 (-613 *5))) (-5 *1 (-613 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-156)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1166 (-1085))) (-5 *3 (-1166 (-427 *4 *5 *6 *7)))
+ (-5 *1 (-427 *4 *5 *6 *7)) (-4 *4 (-157)) (-14 *5 (-850))
+ (-14 *6 (-588 (-1085))) (-14 *7 (-1166 (-628 *4)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-427 *4 *5 *6 *7)))
+ (-5 *1 (-427 *4 *5 *6 *7)) (-4 *4 (-157)) (-14 *5 (-850))
+ (-14 *6 (-588 *2)) (-14 *7 (-1166 (-628 *4)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1166 (-427 *3 *4 *5 *6))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085)))
+ (-14 *6 (-1166 (-628 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1166 (-1085))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085)))
+ (-14 *6 (-1166 (-628 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1085)) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157))
+ (-14 *4 (-850)) (-14 *5 (-588 *2)) (-14 *6 (-1166 (-628 *3)))))
+ ((*1 *1)
+ (-12 (-5 *1 (-427 *2 *3 *4 *5)) (-4 *2 (-157)) (-14 *3 (-850))
+ (-14 *4 (-588 (-1085))) (-14 *5 (-1166 (-628 *2))))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
+ (-12 (-5 *4 (-628 (-522))) (-5 *5 (-108)) (-5 *7 (-628 (-202)))
+ (-5 *3 (-522)) (-5 *6 (-202)) (-5 *2 (-960)) (-5 *1 (-692)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-2 (|:| |deg| (-708)) (|:| -2592 *5))))
+ (-4 *5 (-1142 *4)) (-4 *4 (-324)) (-5 *2 (-588 *5))
+ (-5 *1 (-194 *4 *5))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1886 *4))))
- (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
- (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *6 (-202))
- (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-689)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-426)) (-4 *3 (-784)) (-4 *4 (-730))
- (-5 *1 (-914 *2 *3 *4 *5)) (-4 *5 (-878 *2 *4 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+ (-12 (-5 *3 (-588 (-2 (|:| -2006 *5) (|:| -2487 (-522)))))
+ (-5 *4 (-522)) (-4 *5 (-1142 *4)) (-5 *2 (-588 *5))
+ (-5 *1 (-634 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
+ (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-971))
+ (-4 *4 (-780)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *1 *1 *1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-514)))))
(((*1 *1 *2 *3)
(-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1085)) (-5 *1 (-305)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
-(((*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-108)) (-5 *1 (-243)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-708)) (-4 *5 (-514))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)))))
+(((*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3))
+ (-4 *3 (-1014)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-792)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-239))) (-5 *1 (-1167))))
((*1 *2 *1) (-12 (-5 *2 (-588 (-239))) (-5 *1 (-1167))))
((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-239))) (-5 *1 (-1168))))
((*1 *2 *1) (-12 (-5 *2 (-588 (-239))) (-5 *1 (-1168)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369))))
- ((*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
-(((*1 *1 *1) (-5 *1 (-983))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-637)) (-5 *1 (-281)))))
+(((*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *2 (-588 (-202)))
+ (-5 *1 (-442)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-708)) (-4 *1 (-598 *3)) (-4 *3 (-971)) (-4 *3 (-338))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-708)) (-5 *4 (-1 *5 *5)) (-4 *5 (-338))
+ (-5 *1 (-601 *5 *2)) (-4 *2 (-598 *5)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-125)) (-5 *3 (-708)) (-5 *2 (-1171)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1 (-872 (-202)) (-872 (-202)))) (-5 *3 (-588 (-239)))
+ (-5 *1 (-237))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-872 (-202)) (-872 (-202)))) (-5 *1 (-239))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 (-454 *5 *6))) (-5 *3 (-454 *5 *6))
+ (-14 *5 (-588 (-1085))) (-4 *6 (-426)) (-5 *2 (-1166 *6))
+ (-5 *1 (-576 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-628 *2)) (-4 *2 (-157)) (-5 *1 (-134 *2))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-157)) (-4 *2 (-1142 *4)) (-5 *1 (-161 *4 *2 *3))
+ (-4 *3 (-662 *4 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 (-382 (-881 *5)))) (-5 *4 (-1085))
+ (-5 *2 (-881 *5)) (-5 *1 (-268 *5)) (-4 *5 (-426))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-628 (-382 (-881 *4)))) (-5 *2 (-881 *4))
+ (-5 *1 (-268 *4)) (-4 *4 (-426))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-345 *3 *2)) (-4 *3 (-157)) (-4 *2 (-1142 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-628 (-154 (-382 (-522)))))
+ (-5 *2 (-881 (-154 (-382 (-522))))) (-5 *1 (-702 *4))
+ (-4 *4 (-13 (-338) (-782)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 (-154 (-382 (-522))))) (-5 *4 (-1085))
+ (-5 *2 (-881 (-154 (-382 (-522))))) (-5 *1 (-702 *5))
+ (-4 *5 (-13 (-338) (-782)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *2 (-881 (-382 (-522))))
+ (-5 *1 (-716 *4)) (-4 *4 (-13 (-338) (-782)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *4 (-1085))
+ (-5 *2 (-881 (-382 (-522)))) (-5 *1 (-716 *5))
+ (-4 *5 (-13 (-338) (-782))))))
(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-442))))
((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1167))))
((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1168)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2)
- (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792))))
- ((*1 *2 *1)
- (-12
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1151 *3 *4 *5)) (-4 *3 (-13 (-338) (-784)))
+ (-14 *4 (-1085)) (-14 *5 *3) (-5 *1 (-294 *3 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1 (-354))) (-5 *1 (-964)) (-5 *3 (-354)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971))
+ (-5 *2 (-454 *4 *5)) (-5 *1 (-873 *4 *5)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-708)) (-4 *5 (-324)) (-4 *6 (-1142 *5))
(-5 *2
- (-2 (|:| -2337 (-588 (-792))) (|:| -1210 (-588 (-792)))
- (|:| |presup| (-588 (-792))) (|:| -4123 (-588 (-792)))
- (|:| |args| (-588 (-792)))))
- (-5 *1 (-1085)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-893))) (-5 *1 (-267)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 (-2 (|:| -1916 (-1081 *6)) (|:| -1400 (-522)))))
- (-4 *6 (-283)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
- (-5 *1 (-680 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5))))
- ((*1 *1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-850)) (-5 *1 (-957 *2))
- (-4 *2 (-13 (-1014) (-10 -8 (-15 * ($ $ $))))))))
+ (-588
+ (-2 (|:| -2905 (-628 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-628 *6)))))
+ (-5 *1 (-468 *5 *6 *7))
+ (-5 *3
+ (-2 (|:| -2905 (-628 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-628 *6))))
+ (-4 *7 (-1142 *6)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4))))
- ((*1 *2 *3 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-522))) (-5 *4 (-522)) (-5 *2 (-51))
- (-5 *1 (-931)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+ (-12 (-5 *3 (-1085)) (-5 *2 (-498)) (-5 *1 (-497 *4))
+ (-4 *4 (-1120)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-588 (-1081 (-522)))) (-5 *1 (-170)) (-5 *3 (-522)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1045 (-202))) (-5 *3 (-588 (-239))) (-5 *1 (-1168))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1045 (-202))) (-5 *3 (-1068)) (-5 *1 (-1168))))
+ ((*1 *1 *1) (-5 *1 (-1168))))
+(((*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)) (-4 *2 (-1106))))
+ ((*1 *2 *1) (-12 (-5 *1 (-306 *2)) (-4 *2 (-784))))
+ ((*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-561 *3)) (-4 *3 (-784)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-522)) (-4 *1 (-55 *4 *2 *5)) (-4 *4 (-1120))
+ (-4 *5 (-348 *4)) (-4 *2 (-348 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *6 *2 *7)) (-4 *6 (-971))
+ (-4 *7 (-215 *4 *6)) (-4 *2 (-215 *5 *6)))))
+(((*1 *1 *1 *1) (-4 *1 (-131)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
+ (-5 *2 (-960)) (-5 *1 (-689)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1081 *6)) (-4 *6 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *2 (-1081 *7)) (-5 *1 (-296 *4 *5 *6 *7))
+ (-4 *7 (-878 *6 *4 *5)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))))
+(((*1 *2) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-1104)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-792)) (-5 *1 (-1066 *3)) (-4 *3 (-1014))
+ (-4 *3 (-1120)))))
+(((*1 *2 *1) (-12 (-4 *1 (-962 (-522))) (-4 *1 (-278)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))))
(((*1 *1 *2 *3)
(-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1014))))
((*1 *2 *3 *4)
@@ -9070,361 +9097,539 @@
((*1 *1 *2 *3)
(-12 (-5 *2 (-756 *4)) (-4 *4 (-784)) (-4 *1 (-1181 *4 *3))
(-4 *3 (-971)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-971))
- (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260)))
- (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4))))
- ((*1 *1 *1) (-4 *1 (-507)))
- ((*1 *2 *1) (-12 (-5 *2 (-850)) (-5 *1 (-613 *3)) (-4 *3 (-784))))
- ((*1 *2 *1) (-12 (-5 *2 (-850)) (-5 *1 (-617 *3)) (-4 *3 (-784))))
- ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-756 *3)) (-4 *3 (-784))))
- ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-822 *3)) (-4 *3 (-784))))
- ((*1 *2 *1) (-12 (-4 *1 (-921 *3)) (-4 *3 (-1120)) (-5 *2 (-708))))
- ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-1118 *3)) (-4 *3 (-1120))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-928))
- (-4 *2 (-971)))))
-(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-1133 (-522))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088))))
- ((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1088)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-514)) (-4 *3 (-971))
- (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-786 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-94 *5)) (-4 *5 (-514)) (-4 *5 (-971))
- (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-787 *5 *3))
- (-4 *3 (-786 *5)))))
-(((*1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-493 *3)) (-4 *3 (-13 (-664) (-25))))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-5 *3 (-522)) (-5 *2 (-108)) (-5 *1 (-453)))))
-(((*1 *2 *1) (-12 (-4 *1 (-324)) (-5 *2 (-108))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-108))
- (-5 *1 (-332 *4)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1166 (-522))) (-5 *3 (-522)) (-5 *1 (-1024))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-1166 (-522))) (-5 *3 (-588 (-522))) (-5 *4 (-522))
+ (-5 *1 (-1024)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1166 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-338))
+ (-4 *1 (-662 *5 *6)) (-4 *5 (-157)) (-4 *6 (-1142 *5))
+ (-5 *2 (-628 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-613 *3)) (-4 *3 (-784))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-617 *3)) (-4 *3 (-784))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-756 *3)) (-4 *3 (-784)))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202)))
+ (-5 *2 (-960)) (-5 *1 (-685)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (-5 *2 (-1066 (-202))) (-5 *1 (-171))))
+ (-588
+ (-2 (|:| -1692 (-708))
+ (|:| |eqns|
+ (-588
+ (-2 (|:| |det| *7) (|:| |rows| (-588 (-522)))
+ (|:| |cols| (-588 (-522))))))
+ (|:| |fgb| (-588 *7)))))
+ (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135)))
+ (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-708))
+ (-5 *1 (-853 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522)))))
+ (-4 *5 (-1142 *4))
+ (-5 *2 (-588 (-2 (|:| |deg| (-708)) (|:| -3277 *5))))
+ (-5 *1 (-746 *4 *5 *3 *6)) (-4 *3 (-598 *5))
+ (-4 *6 (-598 (-382 *5))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1066 (-522))) (-5 *1 (-1070 *4)) (-4 *4 (-971))
+ (-5 *3 (-522)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4))
+ (-4 *4 (-324)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-561 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4)))
+ (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-253 *4 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1007 (-777 *3))) (-4 *3 (-13 (-1106) (-887) (-29 *5)))
+ (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2
+ (-3 (|:| |f1| (-777 *3)) (|:| |f2| (-588 (-777 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-196 *5 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-291 (-202))) (-5 *4 (-588 (-1085)))
- (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-276))))
+ (-12 (-5 *4 (-1007 (-777 *3))) (-5 *5 (-1068))
+ (-4 *3 (-13 (-1106) (-887) (-29 *6)))
+ (-4 *6 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2
+ (-3 (|:| |f1| (-777 *3)) (|:| |f2| (-588 (-777 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-196 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1007 (-777 (-291 *5))))
+ (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2
+ (-3 (|:| |f1| (-777 (-291 *5))) (|:| |f2| (-588 (-777 (-291 *5))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-197 *5))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *4 (-588 (-1085)))
- (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-276)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-338)) (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3)))
- (-5 *1 (-704 *3 *4)) (-4 *3 (-647 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-338)) (-4 *3 (-971))
- (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-786 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-94 *5)) (-4 *5 (-338)) (-4 *5 (-971))
- (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-787 *5 *3))
- (-4 *3 (-786 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))))
-(((*1 *2 *2 *3)
- (|partial| -12
- (-5 *3 (-588 (-2 (|:| |func| *2) (|:| |pole| (-108)))))
- (-4 *2 (-13 (-405 *4) (-928))) (-4 *4 (-13 (-784) (-514)))
- (-5 *1 (-252 *4 *2)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1950 *4)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))))
-(((*1 *2 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-519)) (-5 *3 (-522)))))
-(((*1 *2)
- (-12
- (-5 *2 (-2 (|:| -1376 (-588 (-1085))) (|:| -2314 (-588 (-1085)))))
- (-5 *1 (-1122)))))
-(((*1 *2 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-372)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-834 *3)))))
-(((*1 *2 *3 *4 *3 *3)
- (-12 (-5 *3 (-270 *6)) (-5 *4 (-110)) (-4 *6 (-405 *5))
- (-4 *5 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51))
- (-5 *1 (-292 *5 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-270 *7)) (-5 *4 (-110)) (-5 *5 (-588 *7))
- (-4 *7 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498))))
- (-5 *2 (-51)) (-5 *1 (-292 *6 *7))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-588 (-270 *7))) (-5 *4 (-588 (-110))) (-5 *5 (-270 *7))
- (-4 *7 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498))))
- (-5 *2 (-51)) (-5 *1 (-292 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-588 (-270 *8))) (-5 *4 (-588 (-110))) (-5 *5 (-270 *8))
- (-5 *6 (-588 *8)) (-4 *8 (-405 *7))
- (-4 *7 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51))
- (-5 *1 (-292 *7 *8))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-588 *7)) (-5 *4 (-588 (-110))) (-5 *5 (-270 *7))
- (-4 *7 (-405 *6)) (-4 *6 (-13 (-784) (-514) (-563 (-498))))
- (-5 *2 (-51)) (-5 *1 (-292 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 (-110))) (-5 *6 (-588 (-270 *8)))
- (-4 *8 (-405 *7)) (-5 *5 (-270 *8))
- (-4 *7 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51))
- (-5 *1 (-292 *7 *8))))
- ((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-270 *5)) (-5 *4 (-110)) (-4 *5 (-405 *6))
- (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51))
- (-5 *1 (-292 *6 *5))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-110)) (-5 *5 (-270 *3)) (-4 *3 (-405 *6))
- (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51))
- (-5 *1 (-292 *6 *3))))
+ (-12 (-5 *3 (-382 (-881 *6))) (-5 *4 (-1007 (-777 (-291 *6))))
+ (-5 *5 (-1068))
+ (-4 *6 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2
+ (-3 (|:| |f1| (-777 (-291 *6))) (|:| |f2| (-588 (-777 (-291 *6))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-197 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1007 (-777 (-382 (-881 *5))))) (-5 *3 (-382 (-881 *5)))
+ (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2
+ (-3 (|:| |f1| (-777 (-291 *5))) (|:| |f2| (-588 (-777 (-291 *5))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-197 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1007 (-777 (-382 (-881 *6))))) (-5 *5 (-1068))
+ (-5 *3 (-382 (-881 *6)))
+ (-4 *6 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2
+ (-3 (|:| |f1| (-777 (-291 *6))) (|:| |f2| (-588 (-777 (-291 *6))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-197 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085))
+ (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-3 *3 (-588 *3))) (-5 *1 (-403 *5 *3))
+ (-4 *3 (-13 (-1106) (-887) (-29 *5)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-448 *3 *4 *5))
+ (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3)))
+ ((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354))))
+ (-5 *5 (-354)) (-5 *6 (-983)) (-5 *2 (-960)) (-5 *1 (-523))))
+ ((*1 *2 *3) (-12 (-5 *3 (-706)) (-5 *2 (-960)) (-5 *1 (-523))))
((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-110)) (-5 *5 (-270 *3)) (-4 *3 (-405 *6))
- (-4 *6 (-13 (-784) (-514) (-563 (-498)))) (-5 *2 (-51))
- (-5 *1 (-292 *6 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-110)) (-5 *5 (-270 *3)) (-5 *6 (-588 *3))
- (-4 *3 (-405 *7)) (-4 *7 (-13 (-784) (-514) (-563 (-498))))
- (-5 *2 (-51)) (-5 *1 (-292 *7 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-628 *4)) (-4 *4 (-971)) (-5 *1 (-1052 *3 *4))
- (-14 *3 (-708)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-302 *3)) (-4 *3 (-1120))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-485 *3 *4)) (-4 *3 (-1120))
- (-14 *4 (-522)))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-1081 (-881 *4))) (-5 *1 (-391 *3 *4))
- (-4 *3 (-392 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-4 *3 (-338))
- (-5 *2 (-1081 (-881 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-270 (-382 (-881 *5)))) (-5 *4 (-1085))
- (-4 *5 (-13 (-283) (-784) (-135)))
- (-5 *2 (-1075 (-588 (-291 *5)) (-588 (-270 (-291 *5)))))
- (-5 *1 (-1041 *5))))
+ (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354))))
+ (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354))))
+ (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085))
- (-4 *5 (-13 (-283) (-784) (-135)))
- (-5 *2 (-1075 (-588 (-291 *5)) (-588 (-270 (-291 *5)))))
- (-5 *1 (-1041 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1950 *4)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-256))))
+ (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354))))
+ (-5 *2 (-960)) (-5 *1 (-523))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354)))))
+ (-5 *2 (-960)) (-5 *1 (-523))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354)))))
+ (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354)))))
+ (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523))))
+ ((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354)))))
+ (-5 *5 (-354)) (-5 *6 (-983)) (-5 *2 (-960)) (-5 *1 (-523))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-291 (-354))) (-5 *4 (-1007 (-777 (-354))))
+ (-5 *5 (-1068)) (-5 *2 (-960)) (-5 *1 (-523))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-291 (-354))) (-5 *4 (-1007 (-777 (-354))))
+ (-5 *5 (-1085)) (-5 *2 (-960)) (-5 *1 (-523))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-338) (-135) (-962 (-522)))) (-4 *5 (-1142 *4))
+ (-5 *2 (-539 (-382 *5))) (-5 *1 (-526 *4 *5)) (-5 *3 (-382 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-135))
+ (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-584 (-522))))
+ (-5 *2 (-3 (-291 *5) (-588 (-291 *5)))) (-5 *1 (-542 *5))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-678 *3 *2)) (-4 *3 (-971)) (-4 *2 (-784))
+ (-4 *3 (-37 (-382 (-522))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1085)) (-5 *1 (-881 *3)) (-4 *3 (-37 (-382 (-522))))
+ (-4 *3 (-971))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-4 *2 (-784))
+ (-5 *1 (-1038 *3 *2 *4)) (-4 *4 (-878 *3 (-494 *2) *2))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971))
+ (-5 *1 (-1070 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1076 *3 *4 *5))
+ (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1082 *3 *4 *5))
+ (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1083 *3 *4 *5))
+ (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3)))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1085)) (-5 *1 (-1115 *3)) (-4 *3 (-37 (-382 (-522))))
+ (-4 *3 (-971))))
+ ((*1 *1 *1 *2)
+ (-3844
+ (-12 (-5 *2 (-1085)) (-4 *1 (-1126 *3)) (-4 *3 (-971))
+ (-12 (-4 *3 (-29 (-522))) (-4 *3 (-887)) (-4 *3 (-1106))
+ (-4 *3 (-37 (-382 (-522))))))
+ (-12 (-5 *2 (-1085)) (-4 *1 (-1126 *3)) (-4 *3 (-971))
+ (-12 (|has| *3 (-15 -3533 ((-588 *2) *3)))
+ (|has| *3 (-15 -2611 (*3 *3 *2))) (-4 *3 (-37 (-382 (-522))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1126 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1130 *3 *4 *5))
+ (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522))))))
+ ((*1 *1 *1 *2)
+ (-3844
+ (-12 (-5 *2 (-1085)) (-4 *1 (-1147 *3)) (-4 *3 (-971))
+ (-12 (-4 *3 (-29 (-522))) (-4 *3 (-887)) (-4 *3 (-1106))
+ (-4 *3 (-37 (-382 (-522))))))
+ (-12 (-5 *2 (-1085)) (-4 *1 (-1147 *3)) (-4 *3 (-971))
+ (-12 (|has| *3 (-15 -3533 ((-588 *2) *3)))
+ (|has| *3 (-15 -2611 (*3 *3 *2))) (-4 *3 (-37 (-382 (-522))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1147 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1151 *3 *4 *5))
+ (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-3844
+ (-12 (-5 *2 (-1085)) (-4 *1 (-1157 *3)) (-4 *3 (-971))
+ (-12 (-4 *3 (-29 (-522))) (-4 *3 (-887)) (-4 *3 (-1106))
+ (-4 *3 (-37 (-382 (-522))))))
+ (-12 (-5 *2 (-1085)) (-4 *1 (-1157 *3)) (-4 *3 (-971))
+ (-12 (|has| *3 (-15 -3533 ((-588 *2) *3)))
+ (|has| *3 (-15 -2611 (*3 *3 *2))) (-4 *3 (-37 (-382 (-522))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1157 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1158 *3 *4 *5))
+ (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-708))
+ (-5 *1 (-423 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-426))
+ (-5 *2 (-454 *4 *5)) (-5 *1 (-576 *4 *5)))))
+(((*1 *1) (-5 *1 (-129))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-126)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-420)) (-5 *3 (-522)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-522))))
((*1 *2 *1)
- (-12 (-5 *2 (-3 (-522) (-202) (-1085) (-1068) (-1090)))
- (-5 *1 (-1090)))))
-(((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
-(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730))
- (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8))
- (-5 *2
- (-2 (|:| -3197 (-588 *9)) (|:| -1886 *4) (|:| |ineq| (-588 *9))))
- (-5 *1 (-915 *6 *7 *8 *9 *4)) (-5 *3 (-588 *9))
- (-4 *4 (-990 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730))
- (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8))
- (-5 *2
- (-2 (|:| -3197 (-588 *9)) (|:| -1886 *4) (|:| |ineq| (-588 *9))))
- (-5 *1 (-1021 *6 *7 *8 *9 *4)) (-5 *3 (-588 *9))
- (-4 *4 (-990 *6 *7 *8 *9)))))
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-708)) (-5 *4 (-522)) (-5 *1 (-419 *2)) (-4 *2 (-971)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1081 *9)) (-5 *4 (-588 *7)) (-4 *7 (-784))
+ (-4 *9 (-878 *8 *6 *7)) (-4 *6 (-730)) (-4 *8 (-283))
+ (-5 *2 (-588 (-708))) (-5 *1 (-680 *6 *7 *8 *9)) (-5 *5 (-708)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-338) (-782)))
+ (-5 *2 (-588 (-2 (|:| -4045 (-588 *3)) (|:| -3106 *5))))
+ (-5 *1 (-164 *5 *3)) (-4 *3 (-1142 (-154 *5)))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-338) (-782)))
+ (-5 *2 (-588 (-2 (|:| -4045 (-588 *3)) (|:| -3106 *4))))
+ (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4))))
+ (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
- ((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+ (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-392 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324))
- (-4 *2
- (-13 (-377)
- (-10 -7 (-15 -2190 (*2 *4)) (-15 -2120 ((-850) *2))
- (-15 -3855 ((-1166 *2) (-850))) (-15 -3428 (*2 *2)))))
- (-5 *1 (-331 *2 *4)))))
+ (-12 (-5 *3 (-1 (-108) *6)) (-4 *6 (-13 (-1014) (-962 *5)))
+ (-4 *5 (-815 *4)) (-4 *4 (-1014)) (-5 *2 (-1 (-108) *5))
+ (-5 *1 (-860 *4 *5 *6)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33)))
+ (-4 *4 (-13 (-1014) (-33))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-522))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-1093 *3)))))
+(((*1 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-792))) ((*1 *1 *1 *1) (-5 *1 (-792)))
+ ((*1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305))
- (-5 *1 (-307)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))))
+ (-12 (-5 *4 (-1 *5 *5))
+ (-4 *5 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *2
+ (-2 (|:| |solns| (-588 *5))
+ (|:| |maps| (-588 (-2 (|:| |arg| *5) (|:| |res| *5))))))
+ (-5 *1 (-1040 *3 *5)) (-4 *3 (-1142 *5)))))
+(((*1 *2)
+ (-12 (-4 *3 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-1171))
+ (-5 *1 (-408 *3 *4)) (-4 *4 (-405 *3)))))
+(((*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| (-1066 (-202)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2321
+ (-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 (-960)) (-5 *1 (-281)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
+(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932))))
+ ((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932)))))
+(((*1 *2 *1) (-12 (-5 *1 (-539 *2)) (-4 *2 (-338)))))
+(((*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-195)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-628 *1)) (-4 *1 (-324)) (-5 *2 (-1166 *1))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-628 *1)) (-4 *1 (-133)) (-4 *1 (-838))
+ (-5 *2 (-1166 *1)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)))))
+(((*1 *1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-708)) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-4 *3 (-514)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1171)) (-5 *1 (-1122))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1171)) (-5 *1 (-1122)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-758)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1009 (-777 (-354)))) (-5 *2 (-1009 (-777 (-202))))
+ (-5 *1 (-281)))))
+(((*1 *2 *3 *3)
+ (-12 (|has| *2 (-6 (-4240 "*"))) (-4 *5 (-348 *2)) (-4 *6 (-348 *2))
+ (-4 *2 (-971)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1142 *2))
+ (-4 *4 (-626 *2 *5 *6)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-708)) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-4 *3 (-514)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 *5)) (-4 *5 (-157)) (-5 *1 (-128 *3 *4 *5))
+ (-14 *3 (-522)) (-14 *4 (-708)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-588 *4)) (-4 *4 (-1014)) (-4 *4 (-1120)) (-5 *2 (-108))
+ (-5 *1 (-1066 *4)))))
(((*1 *2 *2 *2 *3 *4)
(-12 (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-971))
(-5 *1 (-787 *5 *2)) (-4 *2 (-786 *5)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-338))
- (-5 *2
- (-2 (|:| A (-628 *5))
- (|:| |eqs|
- (-588
- (-2 (|:| C (-628 *5)) (|:| |g| (-1166 *5)) (|:| -3197 *6)
- (|:| |rh| *5))))))
- (-5 *1 (-750 *5 *6)) (-5 *3 (-628 *5)) (-5 *4 (-1166 *5))
- (-4 *6 (-598 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-338)) (-4 *6 (-598 *5))
- (-5 *2 (-2 (|:| -1222 (-628 *6)) (|:| |vec| (-1166 *5))))
- (-5 *1 (-750 *5 *6)) (-5 *3 (-628 *6)) (-5 *4 (-1166 *5)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5)
- (-12 (-5 *3 (-202)) (-5 *4 (-522))
- (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) (-5 *2 (-960))
- (-5 *1 (-684)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-1085))
- (-4 *6 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-4 *4 (-13 (-29 *6) (-1106) (-887)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -3855 (-588 *4))))
- (-5 *1 (-738 *6 *4 *3)) (-4 *3 (-598 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-108)) (-5 *5 (-628 (-154 (-202))))
- (-5 *2 (-960)) (-5 *1 (-693)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-522)) (-4 *1 (-55 *4 *3 *5)) (-4 *4 (-1120))
- (-4 *3 (-348 *4)) (-4 *5 (-348 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-881 (-522))) (-5 *2 (-588 *1)) (-4 *1 (-938))))
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-194 *4 *2))
+ (-4 *2 (-1142 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-784)) (-4 *5 (-838)) (-4 *6 (-730))
+ (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-393 (-1081 *8)))
+ (-5 *1 (-835 *5 *6 *7 *8)) (-5 *4 (-1081 *8))))
((*1 *2 *3)
- (-12 (-5 *3 (-881 (-382 (-522)))) (-5 *2 (-588 *1)) (-4 *1 (-938))))
- ((*1 *2 *3) (-12 (-5 *3 (-881 *1)) (-4 *1 (-938)) (-5 *2 (-588 *1))))
+ (-12 (-4 *4 (-838)) (-4 *5 (-1142 *4)) (-5 *2 (-393 (-1081 *5)))
+ (-5 *1 (-836 *4 *5)) (-5 *3 (-1081 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-4 *5 (-919 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-130 *4 *5 *3))
+ (-4 *3 (-348 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-1081 (-522))) (-5 *2 (-588 *1)) (-4 *1 (-938))))
+ (-12 (-4 *4 (-514)) (-4 *5 (-919 *4))
+ (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
+ (-5 *1 (-473 *4 *5 *6 *3)) (-4 *6 (-348 *4)) (-4 *3 (-348 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-1081 (-382 (-522)))) (-5 *2 (-588 *1)) (-4 *1 (-938))))
- ((*1 *2 *3) (-12 (-5 *3 (-1081 *1)) (-4 *1 (-938)) (-5 *2 (-588 *1))))
+ (-12 (-5 *3 (-628 *5)) (-4 *5 (-919 *4)) (-4 *4 (-514))
+ (-5 *2 (-2 (|:| |num| (-628 *4)) (|:| |den| *4)))
+ (-5 *1 (-631 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522)))))
+ (-4 *6 (-1142 *5))
+ (-5 *2 (-2 (|:| -3277 *7) (|:| |rh| (-588 (-382 *6)))))
+ (-5 *1 (-744 *5 *6 *7 *3)) (-5 *4 (-588 (-382 *6)))
+ (-4 *7 (-598 *6)) (-4 *3 (-598 (-382 *6)))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-782) (-338))) (-4 *3 (-1142 *4)) (-5 *2 (-588 *1))
- (-4 *1 (-987 *4 *3)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784))
- (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-878 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-971)) (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1)))
- (-4 *1 (-1142 *3)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1049))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *2)) (-4 *2 (-157))))
- ((*1 *2) (-12 (-4 *2 (-157)) (-5 *1 (-391 *3 *2)) (-4 *3 (-392 *2))))
- ((*1 *2) (-12 (-4 *1 (-392 *2)) (-4 *2 (-157)))))
-(((*1 *1 *2) (-12 (-5 *2 (-166)) (-5 *1 (-225)))))
-(((*1 *1 *2 *3)
+ (-12 (-4 *4 (-514)) (-4 *5 (-919 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1135 *4 *5 *3))
+ (-4 *3 (-1142 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1102)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
+ (-5 *2 (-756 *3))))
+ ((*1 *2 *1) (-12 (-4 *2 (-780)) (-5 *1 (-1187 *3 *2)) (-4 *3 (-971)))))
+(((*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1068)) (-5 *1 (-723)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-426)))))
+(((*1 *2 *1)
(-12
- (-5 *3
+ (-5 *2
(-588
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
- (|:| |xpnt| (-522)))))
- (-4 *2 (-514)) (-5 *1 (-393 *2))))
- ((*1 *2 *3)
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202)))))
+ (-5 *1 (-517))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-559 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-5 *2 (-588 *3))))
+ ((*1 *2 *1)
(-12
- (-5 *3
- (-2 (|:| |contp| (-522))
- (|:| -2976 (-588 (-2 (|:| |irr| *4) (|:| -2245 (-522)))))))
- (-4 *4 (-1142 (-522))) (-5 *2 (-393 *4)) (-5 *1 (-416 *4)))))
-(((*1 *2)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
+ (-5 *2
+ (-588
+ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
+ (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
+ (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
+ (|:| |abserr| (-202)) (|:| |relerr| (-202)))))
+ (-5 *1 (-740)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 (-1085))) (-4 *6 (-338))
+ (-5 *2 (-588 (-270 (-881 *6)))) (-5 *1 (-500 *5 *6 *7))
+ (-4 *5 (-426)) (-4 *7 (-13 (-338) (-782))))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-1167))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
+ (-12 (-5 *3 (-522)) (-5 *5 (-108)) (-5 *6 (-628 (-202)))
+ (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-693)))))
(((*1 *2 *2 *3)
(-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-1044 *4 *2))
(-4 *2 (-13 (-555 (-522) *4) (-10 -7 (-6 -4238) (-6 -4239))))))
((*1 *2 *2)
(-12 (-4 *3 (-784)) (-4 *3 (-1120)) (-5 *1 (-1044 *3 *2))
(-4 *2 (-13 (-555 (-522) *3) (-10 -7 (-6 -4238) (-6 -4239)))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-761)) (-5 *3 (-588 (-1085))) (-5 *1 (-762)))))
+(((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-639))))
+ ((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-639)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))))
(((*1 *1 *2 *2 *2)
(-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106)))))
((*1 *2 *1 *3 *4 *4)
(-12 (-5 *3 (-850)) (-5 *4 (-354)) (-5 *2 (-1171)) (-5 *1 (-1167))))
((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-850)) (-4 *1 (-215 *3 *4)) (-4 *4 (-971))
- (-4 *4 (-1120))))
- ((*1 *1 *2)
- (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157))
- (-4 *5 (-215 (-3480 *3) (-708)))
- (-14 *6
- (-1 (-108) (-2 (|:| -2717 *2) (|:| -1400 *5))
- (-2 (|:| -2717 *2) (|:| -1400 *5))))
- (-5 *1 (-435 *3 *4 *2 *5 *6 *7)) (-4 *2 (-784))
- (-4 *7 (-878 *4 *5 (-794 *3)))))
- ((*1 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *2 (-588 *1)) (-4 *1 (-985 *3 *4 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-588 *3)) (-5 *1 (-889 *3)) (-4 *3 (-507)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-881 *6))) (-5 *4 (-588 (-1085)))
- (-4 *6 (-13 (-514) (-962 *5))) (-4 *5 (-514))
- (-5 *2 (-588 (-588 (-270 (-382 (-881 *6)))))) (-5 *1 (-963 *5 *6)))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
- (-12 (-5 *3 (-202)) (-5 *4 (-522))
- (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960))
- (-5 *1 (-686)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *2 (-784)) (-4 *5 (-985 *3 *4 *2)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792))))
+ ((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *1) (-5 *1 (-760))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068))
+ (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1166 (-588 *3))) (-4 *4 (-283))
+ (-5 *2 (-588 *3)) (-5 *1 (-429 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-60 *3)) (-14 *3 (-1085))))
+ ((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-67 *3)) (-14 *3 (-1085))))
+ ((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-70 *3)) (-14 *3 (-1085))))
+ ((*1 *2 *1) (-12 (-4 *1 (-370)) (-5 *2 (-1171))))
+ ((*1 *2 *3) (-12 (-5 *3 (-363)) (-5 *2 (-1171)) (-5 *1 (-372))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1068)) (-5 *4 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048))))
+ ((*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-792))) (-5 *2 (-1171)) (-5 *1 (-1048)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1026)) (-4 *3 (-784)) (-5 *2 (-588 *1))
- (-4 *1 (-405 *3))))
+ (|partial| -12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-507))
+ (-5 *2 (-382 (-522)))))
((*1 *2 *1)
- (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3))
+ (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-393 *3)) (-4 *3 (-507))
+ (-4 *3 (-514))))
+ ((*1 *2 *1) (|partial| -12 (-4 *1 (-507)) (-5 *2 (-382 (-522)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-734 *3)) (-4 *3 (-157)) (-4 *3 (-507))
+ (-5 *2 (-382 (-522)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-770 *3)) (-4 *3 (-507))
(-4 *3 (-1014))))
((*1 *2 *1)
- (|partial| -12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *2 (-588 *1)) (-4 *1 (-878 *3 *4 *5))))
+ (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-777 *3)) (-4 *3 (-507))
+ (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-923 *3)) (-4 *3 (-157)) (-4 *3 (-507))
+ (-5 *2 (-382 (-522)))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971))
- (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-588 *3))
- (-5 *1 (-879 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-338)
- (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $))
- (-15 -2816 (*7 $))))))))
-(((*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1068)) (-5 *1 (-171))))
- ((*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1068)) (-5 *1 (-276))))
- ((*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1068)) (-5 *1 (-281)))))
+ (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-934 *3))
+ (-4 *3 (-962 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-588 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-51)) (-5 *1 (-766)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *2)) (-5 *1 (-163 *2)) (-4 *2 (-283))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *3 (-588 (-588 *4))) (-5 *2 (-588 *4)) (-4 *4 (-283))
+ (-5 *1 (-163 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-588 *8))
+ (-5 *4
+ (-588
+ (-2 (|:| -2905 (-628 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-628 *7)))))
+ (-5 *5 (-708)) (-4 *8 (-1142 *7)) (-4 *7 (-1142 *6)) (-4 *6 (-324))
+ (-5 *2
+ (-2 (|:| -2905 (-628 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-628 *7))))
+ (-5 *1 (-468 *6 *7 *8))))
+ ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
+(((*1 *1) (-5 *1 (-412))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-522)) (-4 *1 (-298 *4 *2)) (-4 *4 (-1014))
+ (-4 *2 (-124)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-324))
+ (-5 *2
+ (-2 (|:| |cont| *5)
+ (|:| -4045 (-588 (-2 (|:| |irr| *3) (|:| -4160 (-522)))))))
+ (-5 *1 (-194 *5 *3)) (-4 *3 (-1142 *5)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-1142 (-522))) (-5 *1 (-458 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 (-354))) (-5 *1 (-239))))
+ ((*1 *1)
+ (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-514)) (-4 *2 (-157))))
+ ((*1 *2 *1) (-12 (-5 *1 (-393 *2)) (-4 *2 (-514)))))
+(((*1 *2 *1) (-12 (-5 *2 (-898)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))))
(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-218))))
((*1 *2 *3)
(-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1171)) (-5 *1 (-218)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *5)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-833 *4))
- (-4 *4 (-1014))))
- ((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354)))
- (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171))
- (-5 *1 (-725)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3))
- (-4 *3 (-1014)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1151 *3 *4 *5)) (-4 *3 (-13 (-338) (-784)))
- (-14 *4 (-1085)) (-14 *5 *3) (-5 *1 (-294 *3 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-1 (-354))) (-5 *1 (-964)) (-5 *3 (-354)))))
-(((*1 *2) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-1104)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
- (-5 *2 (-756 *3))))
- ((*1 *2 *1) (-12 (-4 *2 (-780)) (-5 *1 (-1187 *3 *2)) (-4 *3 (-971)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-51)) (-5 *1 (-766)))))
+ (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-697)))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-811 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
+ (-5 *2 (-960)) (-5 *1 (-690)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-628 *7)) (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *6 *5))
+ (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
+ (-4 *6 (-730)) (-5 *1 (-853 *4 *5 *6 *7)))))
(((*1 *2 *3 *4)
(-12
(-5 *3
@@ -9433,178 +9638,206 @@
(|:| |wcond| (-588 (-881 *5)))
(|:| |bsoln|
(-2 (|:| |partsol| (-1166 (-382 (-881 *5))))
- (|:| -3855 (-588 (-1166 (-382 (-881 *5))))))))))
+ (|:| -2905 (-588 (-1166 (-382 (-881 *5))))))))))
(-5 *4 (-1068)) (-4 *5 (-13 (-283) (-135))) (-4 *8 (-878 *5 *7 *6))
(-4 *6 (-13 (-784) (-563 (-1085)))) (-4 *7 (-730)) (-5 *2 (-522))
(-5 *1 (-853 *5 *6 *7 *8)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-759)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-366)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))
+ (-5 *2 (-354)) (-5 *1 (-243))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *2 (-354)) (-5 *1 (-281)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-514)) (-5 *1 (-569 *2 *3)) (-4 *3 (-1142 *2)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-588 (-291 (-202)))) (-5 *3 (-202)) (-5 *2 (-108))
+ (-5 *1 (-189)))))
+(((*1 *1)
+ (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-108)))))
+(((*1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120)))))
(((*1 *1)
- (-12 (-4 *1 (-379)) (-2401 (|has| *1 (-6 -4229)))
- (-2401 (|has| *1 (-6 -4221)))))
+ (-12 (-4 *1 (-379)) (-2473 (|has| *1 (-6 -4229)))
+ (-2473 (|has| *1 (-6 -4221)))))
((*1 *2 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-1014)) (-4 *2 (-784))))
((*1 *1 *1 *1) (-4 *1 (-784)))
((*1 *2 *1) (-12 (-4 *1 (-896 *2)) (-4 *2 (-784))))
((*1 *1) (-5 *1 (-1032))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971))
- (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))))
+(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-108))
+ (-5 *6 (-202)) (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-66 APROD))))
+ (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-71 MSOLVE))))
+ (-5 *2 (-960)) (-5 *1 (-694)))))
+(((*1 *2 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-154 (-202)))) (-5 *2 (-960))
+ (-5 *1 (-692)))))
+(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
+ (-12 (-5 *3 (-850)) (-5 *4 (-202)) (-5 *5 (-522)) (-5 *6 (-803))
+ (-5 *2 (-1171)) (-5 *1 (-1167)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-708)) (-4 *4 (-13 (-514) (-135)))
+ (-5 *1 (-1136 *4 *2)) (-4 *2 (-1142 *4)))))
(((*1 *2 *3 *4)
(|partial| -12 (-5 *4 (-1085)) (-4 *5 (-563 (-821 (-522))))
(-4 *5 (-815 (-522)))
(-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522))))
(-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
(-5 *1 (-525 *5 *3)) (-4 *3 (-574))
- (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1090))))
- ((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1090))))
- ((*1 *2 *1) (-12 (-5 *2 (-202)) (-5 *1 (-1090))))
- ((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1090)))))
+ (-4 *3 (-13 (-27) (-1106) (-405 *5)))))
+ ((*1 *2 *2 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-1085)) (-5 *4 (-777 *2)) (-4 *2 (-1049))
+ (-4 *2 (-13 (-27) (-1106) (-405 *5)))
+ (-4 *5 (-563 (-821 (-522)))) (-4 *5 (-815 (-522)))
+ (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522))))
+ (-5 *1 (-525 *5 *2)))))
+(((*1 *2 *3) (-12 (-5 *3 (-363)) (-5 *2 (-1171)) (-5 *1 (-366))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-366)))))
+(((*1 *2 *3 *3 *3 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-522)) (-5 *1 (-527 *3)) (-4 *3 (-962 *2)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1149 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1126 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-108))
- (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-12 (-5 *3 (-1166 (-291 (-202))))
(-5 *2
- (-3 (|:| |%expansion| (-288 *5 *3 *6 *7))
- (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))))
- (-5 *1 (-395 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1106) (-405 *5)))
- (-14 *6 (-1085)) (-14 *7 *3))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-708)) (-5 *5 (-588 *3)) (-4 *3 (-283)) (-4 *6 (-784))
- (-4 *7 (-730)) (-5 *2 (-108)) (-5 *1 (-571 *6 *7 *3 *8))
- (-4 *8 (-878 *3 *7 *6)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1014))
- (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3))))
- (-5 *2 (-588 (-1085))) (-5 *1 (-993 *3 *4 *5))
- (-4 *5 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))))))
-(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
- (-5 *2 (-960)) (-5 *1 (-693)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3266 *4))))
- (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014)) (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *1 *2 *3 *3 *4 *5)
- (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *3 (-588 (-803)))
- (-5 *4 (-588 (-850))) (-5 *5 (-588 (-239))) (-5 *1 (-442))))
- ((*1 *1 *2 *3 *3 *4)
- (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *3 (-588 (-803)))
- (-5 *4 (-588 (-850))) (-5 *1 (-442))))
- ((*1 *1 *2) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-442))))
- ((*1 *1 *1) (-5 *1 (-442))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
- (-5 *1 (-160 *3)))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *4 (-1 (-3 (-522) "failed") *5)) (-4 *5 (-971))
- (-5 *2 (-522)) (-5 *1 (-505 *5 *3)) (-4 *3 (-1142 *5))))
- ((*1 *2 *3 *4 *2 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-522) "failed") *4)) (-4 *4 (-971))
- (-5 *2 (-522)) (-5 *1 (-505 *4 *3)) (-4 *3 (-1142 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-522) "failed") *4)) (-4 *4 (-971))
- (-5 *2 (-522)) (-5 *1 (-505 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *1 *1 *1) (-5 *1 (-792))))
+ (-2 (|:| |additions| (-522)) (|:| |multiplications| (-522))
+ (|:| |exponentiations| (-522)) (|:| |functionCalls| (-522))))
+ (-5 *1 (-281)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-971))
+ (-5 *1 (-1070 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-522)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971))
+ (-14 *4 (-1085)) (-14 *5 *3))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-233)))))
(((*1 *2 *3 *4)
- (-12 (-4 *4 (-338)) (-5 *2 (-588 (-1066 *4))) (-5 *1 (-261 *4 *5))
- (-5 *3 (-1066 *4)) (-4 *5 (-1157 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
+ (-12 (-4 *5 (-283)) (-4 *6 (-348 *5)) (-4 *4 (-348 *5))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4))))
+ (-5 *1 (-1036 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2))
+ (-4 *4 (-13 (-784) (-514))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-108)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
+ ((*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-239)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 *6)) (-4 *5 (-1124)) (-4 *6 (-1142 *5))
- (-5 *2 (-2 (|:| -1400 (-708)) (|:| -2977 *3) (|:| |radicand| *6)))
- (-5 *1 (-136 *5 *6 *7)) (-5 *4 (-708)) (-4 *7 (-1142 *3)))))
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 *10))
+ (-5 *1 (-570 *5 *6 *7 *8 *9 *10)) (-4 *9 (-990 *5 *6 *7 *8))
+ (-4 *10 (-1023 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426))
+ (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-968 *5 *6)))
+ (-5 *1 (-573 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426))
+ (-14 *6 (-588 (-1085)))
+ (-5 *2
+ (-588 (-1056 *5 (-494 (-794 *6)) (-794 *6) (-717 *5 (-794 *6)))))
+ (-5 *1 (-573 *5 *6))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-588 (-952 *5 *6 *7 *8))) (-5 *1 (-952 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-588 (-952 *5 *6 *7 *8))) (-5 *1 (-952 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-588 (-717 *5 (-794 *6)))) (-5 *4 (-108)) (-4 *5 (-426))
+ (-14 *6 (-588 (-1085))) (-5 *2 (-588 (-968 *5 *6)))
+ (-5 *1 (-968 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-588 *1))
+ (-4 *1 (-990 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-588 (-1056 *5 *6 *7 *8))) (-5 *1 (-1056 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-588 (-1056 *5 *6 *7 *8))) (-5 *1 (-1056 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1))
+ (-4 *1 (-1114 *4 *5 *6 *7)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-855)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-514)) (-4 *4 (-919 *3)) (-5 *1 (-130 *3 *4 *2))
+ (-4 *2 (-348 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-4 *5 (-919 *4)) (-4 *2 (-348 *4))
+ (-5 *1 (-473 *4 *5 *2 *3)) (-4 *3 (-348 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-628 *5)) (-4 *5 (-919 *4)) (-4 *4 (-514))
+ (-5 *2 (-628 *4)) (-5 *1 (-631 *4 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-514)) (-4 *4 (-919 *3)) (-5 *1 (-1135 *3 *4 *2))
+ (-4 *2 (-1142 *4)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-903 *4 *5 *6 *3)) (-4 *4 (-971)) (-4 *5 (-730))
+ (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-4 *4 (-514))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
(((*1 *2 *3)
(-12
(-5 *3
- (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4)
- (-224 *4 (-382 (-522)))))
- (-14 *4 (-588 (-1085))) (-14 *5 (-708)) (-5 *2 (-108))
- (-5 *1 (-475 *4 *5)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-4 *3 (-1014))
- (-5 *2 (-108)))))
-(((*1 *2 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-971))))
- ((*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-971)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -1924 *6) (|:| |sol?| (-108))) (-522)
- *6))
- (-4 *6 (-338)) (-4 *7 (-1142 *6))
- (-5 *2
- (-3 (-2 (|:| |answer| (-382 *7)) (|:| |a0| *6))
- (-2 (|:| -1856 (-382 *7)) (|:| |coeff| (-382 *7))) "failed"))
- (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))))
+ (-3
+ (|:| |noa|
+ (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202)))
+ (|:| |lb| (-588 (-777 (-202))))
+ (|:| |cf| (-588 (-291 (-202))))
+ (|:| |ub| (-588 (-777 (-202))))))
+ (|:| |lsa|
+ (-2 (|:| |lfn| (-588 (-291 (-202))))
+ (|:| -3937 (-588 (-202)))))))
+ (-5 *2 (-588 (-1068))) (-5 *1 (-243)))))
+(((*1 *1) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))))
+(((*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-971)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1090))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1090))))
+ ((*1 *2 *1) (-12 (-5 *2 (-202)) (-5 *1 (-1090))))
+ ((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-1090)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-792)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 (-708))
- (-14 *4 (-708)) (-4 *5 (-157)))))
-(((*1 *2 *3 *2 *4 *5)
- (-12 (-5 *2 (-588 *3)) (-5 *5 (-850)) (-4 *3 (-1142 *4))
- (-4 *4 (-283)) (-5 *1 (-434 *4 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-893))) (-5 *1 (-104))))
- ((*1 *2 *1) (-12 (-5 *2 (-44 (-1068) (-711))) (-5 *1 (-110)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-856)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 (-1085))) (-4 *4 (-1014))
- (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4))))
- (-5 *1 (-53 *4 *5 *2))
- (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))))))
-(((*1 *2)
- (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
- (-4 *4 (-392 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 (-474 *3 *4 *5 *6))) (-4 *3 (-338)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784))
- (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-588 *1)) (-5 *3 (-588 *7)) (-4 *1 (-990 *4 *5 *6 *7))
- (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1))
- (-4 *1 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1))
- (-4 *1 (-990 *4 *5 *6 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *1) (-5 *1 (-129))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33)))
- (-4 *4 (-13 (-1014) (-33))))))
+ (-12 (-5 *2 (-588 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
+ (-5 *1 (-539 *3)) (-4 *3 (-338)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-4 *1 (-102 *3)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-628 *1)) (-4 *1 (-324)) (-5 *2 (-1166 *1))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-628 *1)) (-4 *1 (-133)) (-4 *1 (-838))
- (-5 *2 (-1166 *1)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-784)) (-4 *5 (-838)) (-4 *6 (-730))
- (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-393 (-1081 *8)))
- (-5 *1 (-835 *5 *6 *7 *8)) (-5 *4 (-1081 *8))))
+ (-12 (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-338))
+ (-5 *1 (-489 *2 *4 *5 *3)) (-4 *3 (-626 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *3 (-348 *2)) (-4 *4 (-348 *2))
+ (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971))))
((*1 *2 *3)
- (-12 (-4 *4 (-838)) (-4 *5 (-1142 *4)) (-5 *2 (-393 (-1081 *5)))
- (-5 *1 (-836 *4 *5)) (-5 *3 (-1081 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792))))
- ((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-154 (-202)))) (-5 *2 (-960))
- (-5 *1 (-692)))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-855)))))
+ (-12 (-4 *4 (-348 *2)) (-4 *5 (-348 *2)) (-4 *2 (-157))
+ (-5 *1 (-627 *2 *4 *5 *3)) (-4 *3 (-626 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2))
+ (-4 *5 (-215 *3 *2)) (|has| *2 (-6 (-4240 "*"))) (-4 *2 (-971)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-878 *4 *6 *5)) (-4 *4 (-426))
+ (-4 *5 (-784)) (-4 *6 (-730)) (-5 *1 (-914 *4 *5 *6 *3)))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
+ (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354)))
+ (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171))
+ (-5 *1 (-725)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-893))) (-5 *1 (-104))))
+ ((*1 *2 *1) (-12 (-5 *2 (-44 (-1068) (-711))) (-5 *1 (-110)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |lm| (-361 *3)) (|:| |mm| (-361 *3)) (|:| |rm| (-361 *3))))
+ (-5 *1 (-361 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |lm| (-756 *3)) (|:| |mm| (-756 *3)) (|:| |rm| (-756 *3))))
+ (-5 *1 (-756 *3)) (-4 *3 (-784)))))
(((*1 *2 *3)
(-12 (-5 *3 (-588 (-454 *4 *5))) (-14 *4 (-588 (-1085)))
(-4 *5 (-426))
@@ -9612,14 +9845,171 @@
(-2 (|:| |gblist| (-588 (-224 *4 *5)))
(|:| |gvlist| (-588 (-522)))))
(-5 *1 (-576 *4 *5)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108))
+ (-5 *1 (-915 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108))
+ (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-856)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 (-412)))))
+ (-5 *1 (-1089)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 (-1066 *7))) (-4 *6 (-784))
+ (-4 *7 (-878 *5 (-494 *6) *6)) (-4 *5 (-971))
+ (-5 *2 (-1 (-1066 *7) *7)) (-5 *1 (-1038 *5 *6 *7)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-108))
- (-5 *1 (-167 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 (-154 *4))))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409))))
+ (-12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-5 *2 (-588 *5))
+ (-5 *1 (-819 *4 *5)) (-4 *5 (-1120)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-588 (-382 *6))) (-5 *3 (-382 *6))
+ (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-526 *5 *6)))))
+(((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *1) (-12 (-4 *1 (-46 *3 *2)) (-4 *3 (-971)) (-4 *2 (-729))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-708)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971))
+ (-14 *4 (-588 (-1085)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-522)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784)))
+ (-14 *4 (-588 (-1085)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-229 *4 *3 *5 *6)) (-4 *4 (-971)) (-4 *3 (-784))
+ (-4 *5 (-242 *3)) (-4 *6 (-730)) (-5 *2 (-708))))
+ ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-251))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1081 *8)) (-5 *4 (-588 *6)) (-4 *6 (-784))
+ (-4 *8 (-878 *7 *5 *6)) (-4 *5 (-730)) (-4 *7 (-971))
+ (-5 *2 (-588 (-708))) (-5 *1 (-296 *5 *6 *7 *8))))
+ ((*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-850))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-349 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157))
+ (-5 *2 (-708))))
+ ((*1 *2 *1) (-12 (-4 *1 (-444 *3 *2)) (-4 *3 (-157)) (-4 *2 (-23))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-514)) (-5 *2 (-522)) (-5 *1 (-569 *3 *4))
+ (-4 *4 (-1142 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-647 *3)) (-4 *3 (-971)) (-5 *2 (-708))))
+ ((*1 *2 *1) (-12 (-4 *1 (-786 *3)) (-4 *3 (-971)) (-5 *2 (-708))))
+ ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-833 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-834 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-588 *6)) (-4 *1 (-878 *4 *5 *6)) (-4 *4 (-971))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 (-708)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-878 *4 *5 *3)) (-4 *4 (-971)) (-4 *5 (-730))
+ (-4 *3 (-784)) (-5 *2 (-708))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-900 *3 *2 *4)) (-4 *3 (-971)) (-4 *4 (-784))
+ (-4 *2 (-729))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-708))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1128 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1157 *3))
+ (-5 *2 (-522))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1149 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1126 *3))
+ (-5 *2 (-382 (-522)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-770 (-850)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1185 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
+ (-5 *2 (-708)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2908 *4)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2 *3)
+ (-12 (-14 *4 (-588 (-1085))) (-4 *5 (-426))
+ (-5 *2
+ (-2 (|:| |glbase| (-588 (-224 *4 *5))) (|:| |glval| (-588 (-522)))))
+ (-5 *1 (-576 *4 *5)) (-5 *3 (-588 (-224 *4 *5))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1066 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-171))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-108)) (-5 *1 (-1110 *4 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *4))))))
+ (-12 (-5 *3 (-1066 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-276))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1066 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-281)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-730))
+ (-4 *5 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))) (-4 *6 (-514))
+ (-5 *2 (-2 (|:| -1827 (-881 *6)) (|:| -3099 (-881 *6))))
+ (-5 *1 (-670 *4 *5 *6 *3)) (-4 *3 (-878 (-382 (-881 *6)) *4 *5)))))
+(((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441))))
+ ((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-441))))
+ ((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
+(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-843 *3)) (-4 *3 (-283)))))
+(((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4))
+ (-4 *4 (-324)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-1124)) (-4 *5 (-1142 *3)) (-4 *6 (-1142 (-382 *5)))
+ (-5 *2 (-108)) (-5 *1 (-316 *4 *3 *5 *6)) (-4 *4 (-317 *3 *5 *6))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
+(((*1 *1 *1) (-4 *1 (-34)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1157 *3))
+ (-5 *1 (-254 *3 *4 *2)) (-4 *2 (-1128 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *4 (-1126 *3))
+ (-5 *1 (-255 *3 *4 *2 *5)) (-4 *2 (-1149 *3 *4)) (-4 *5 (-910 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
+ (-5 *1 (-1071 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
+ (-5 *1 (-1072 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-881 *5)) (-4 *5 (-971)) (-5 *2 (-224 *4 *5))
+ (-5 *1 (-873 *4 *5)) (-14 *4 (-588 (-1085))))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-694)))))
+(((*1 *1 *1) (-4 *1 (-119))) ((*1 *1 *1) (-5 *1 (-792)))
+ ((*1 *1 *1) (-4 *1 (-895))) ((*1 *1 *1) (-5 *1 (-1032))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-135))
+ (-4 *3 (-283)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-904 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1081 (-881 *6))) (-4 *6 (-514))
+ (-4 *2 (-878 (-382 (-881 *6)) *5 *4)) (-5 *1 (-670 *5 *4 *6 *2))
+ (-4 *5 (-730))
+ (-4 *4 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))))))
+(((*1 *1 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-348 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1142 *4)) (-4 *4 (-1124))
+ (-4 *1 (-317 *4 *3 *5)) (-4 *5 (-1142 (-382 *3))))))
(((*1 *1 *1) (-4 *1 (-33))) ((*1 *1 *1) (-5 *1 (-110)))
((*1 *1 *1) (-5 *1 (-156))) ((*1 *1 *1) (-4 *1 (-507)))
((*1 *1 *1) (-12 (-5 *1 (-821 *2)) (-4 *2 (-1014))))
@@ -9627,18 +10017,35 @@
((*1 *1 *1)
(-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33)))
(-4 *3 (-13 (-1014) (-33))))))
+(((*1 *1 *1) (-12 (-5 *1 (-894 *2)) (-4 *2 (-895)))))
(((*1 *2 *2 *3)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *2 (-985 *4 *5 *6)) (-5 *1 (-713 *4 *5 *6 *2 *3))
- (-4 *3 (-990 *4 *5 *6 *2)))))
-(((*1 *2 *2)
- (-12
- (-5 *2
- (-474 (-382 (-522)) (-217 *4 (-708)) (-794 *3)
- (-224 *3 (-382 (-522)))))
- (-14 *3 (-588 (-1085))) (-14 *4 (-708)) (-5 *1 (-475 *3 *4)))))
-(((*1 *1 *1) (-4 *1 (-119))) ((*1 *1 *1) (-5 *1 (-792)))
- ((*1 *1 *1) (-4 *1 (-895))) ((*1 *1 *1) (-5 *1 (-1032))))
+ (-12 (-4 *3 (-971)) (-5 *1 (-418 *3 *2)) (-4 *2 (-1142 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-130 *2 *4 *3))
+ (-4 *3 (-348 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-473 *2 *4 *5 *3))
+ (-4 *5 (-348 *2)) (-4 *3 (-348 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-628 *4)) (-4 *4 (-919 *2)) (-4 *2 (-514))
+ (-5 *1 (-631 *2 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-1135 *2 *4 *3))
+ (-4 *3 (-1142 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33)))
+ (-4 *3 (-13 (-1014) (-33))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-338)) (-4 *4 (-514)) (-4 *5 (-1142 *4))
+ (-5 *2 (-2 (|:| -3389 (-569 *4 *5)) (|:| -1898 (-382 *5))))
+ (-5 *1 (-569 *4 *5)) (-5 *3 (-382 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-1074 *3 *4))) (-5 *1 (-1074 *3 *4))
+ (-14 *3 (-850)) (-4 *4 (-971))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-426)) (-4 *3 (-971))
+ (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
+ (-4 *1 (-1142 *3)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
(-14 *4 *3)))
@@ -9646,98 +10053,67 @@
(-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
(-14 *4 *3)))
((*1 *1 *1 *1) (-12 (-5 *1 (-616 *2)) (-4 *2 (-971)) (-4 *2 (-1014)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *3 (-588 (-803)))
- (-5 *1 (-442)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-588 (-893))) (-5 *1 (-267)))))
+(((*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))))
+ (-12 (-5 *3 (-1068)) (-5 *2 (-522)) (-5 *1 (-1103 *4))
+ (-4 *4 (-971)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-1085)) (-5 *6 (-108))
+ (-4 *7 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-4 *3 (-13 (-1106) (-887) (-29 *7)))
+ (-5 *2
+ (-3 (|:| |f1| (-777 *3)) (|:| |f2| (-588 (-777 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-196 *7 *3)) (-5 *5 (-777 *3)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-693)))))
+(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1068)) (-5 *3 (-711)) (-5 *1 (-110)))))
+(((*1 *1 *2 *2 *3 *1)
+ (-12 (-5 *2 (-1085)) (-5 *3 (-1018)) (-5 *1 (-267)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2))
+ (-4 *4 (-348 *2)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-393 *3)) (-4 *3 (-514)))))
+(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
+ (-5 *2 (-960)) (-5 *1 (-694)))))
+(((*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-708)) (-5 *1 (-543)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-872 (-202)))) (-5 *1 (-1167)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-382 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-13 (-338) (-135)))
+ (-5 *1 (-374 *3 *4)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-628 *3))
+ (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $)))))
+ (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
+ (-4 *6 (-730)) (-5 *2 (-588 *3)) (-5 *1 (-853 *4 *5 *6 *3))
+ (-4 *3 (-878 *4 *6 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-622 *4 *3)) (-4 *4 (-1014))
+ (-4 *3 (-1014)))))
+(((*1 *1 *1) (-4 *1 (-574)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928) (-1106))))))
(((*1 *2)
- (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5)))
- (-5 *2 (-708)) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6))))
+ (|partial| -12 (-4 *3 (-514)) (-4 *3 (-157))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -2905 (-588 *1))))
+ (-4 *1 (-342 *3))))
((*1 *2)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-708))))
- ((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-708)))))
-(((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-143))))
- ((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
- (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1154 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-588 (-993 *4 *5 *2))) (-4 *4 (-1014))
- (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4))))
- (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4))))
- (-5 *1 (-53 *4 *5 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-588 (-993 *5 *6 *2))) (-5 *4 (-850)) (-4 *5 (-1014))
- (-4 *6 (-13 (-971) (-815 *5) (-784) (-563 (-821 *5))))
- (-4 *2 (-13 (-405 *6) (-815 *5) (-563 (-821 *5))))
- (-5 *1 (-53 *5 *6 *2)))))
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-427 *3 *4 *5 *6))
+ (|:| -2905 (-588 (-427 *3 *4 *5 *6)))))
+ (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-971))
- (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260)))
- (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-850)) (-4 *5 (-971))
- (-4 *2 (-13 (-379) (-962 *5) (-338) (-1106) (-260)))
- (-5 *1 (-417 *5 *3 *2)) (-4 *3 (-1142 *5)))))
-(((*1 *1) (-5 *1 (-129))) ((*1 *1 *1) (-5 *1 (-132)))
- ((*1 *1 *1) (-4 *1 (-1054))))
-(((*1 *2 *3) (-12 (-5 *2 (-354)) (-5 *1 (-722 *3)) (-4 *3 (-563 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-850)) (-5 *2 (-354)) (-5 *1 (-722 *3))
- (-4 *3 (-563 *2))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 *2))
- (-5 *2 (-354)) (-5 *1 (-722 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971))
- (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514)) (-4 *4 (-563 *2))
- (-5 *2 (-354)) (-5 *1 (-722 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514))
- (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784))
- (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514)) (-4 *5 (-784))
- (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 (-522))) (-5 *1 (-224 *3 *4))
- (-14 *3 (-588 (-1085))) (-4 *4 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 (-522))) (-14 *3 (-588 (-1085)))
- (-5 *1 (-428 *3 *4 *5)) (-4 *4 (-971))
- (-4 *5 (-215 (-3480 *3) (-708)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 (-522))) (-5 *1 (-454 *3 *4))
- (-14 *3 (-588 (-1085))) (-4 *4 (-971)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-382 (-522))))) (-5 *1 (-239))))
- ((*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-239)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1014)) (-5 *2 (-1068)))))
-(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-759)))))
-(((*1 *1) (-5 *1 (-1001))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
- (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-202))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *2 (-960))
- (-5 *1 (-687)))))
-(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
- (-12 (-5 *5 (-628 (-202))) (-5 *6 (-628 (-522))) (-5 *3 (-522))
- (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4))
- (-5 *2
- (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-382 *5))
- (|:| |c2| (-382 *5)) (|:| |deg| (-708))))
- (-5 *1 (-136 *4 *5 *3)) (-4 *3 (-1142 (-382 *5))))))
+ (-12 (-5 *2 (-588 (-588 (-522)))) (-5 *1 (-898))
+ (-5 *3 (-588 (-522))))))
(((*1 *2 *1 *3 *3 *2)
(-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1120))
(-4 *4 (-348 *2)) (-4 *5 (-348 *2))))
@@ -9772,296 +10148,141 @@
((*1 *2 *1 *3 *2)
(-12 (-5 *3 "first") (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2))
(-4 *2 (-1120)))))
-(((*1 *2 *2 *3 *4 *5)
- (-12 (-5 *2 (-588 *9)) (-5 *3 (-1 (-108) *9))
- (-5 *4 (-1 (-108) *9 *9)) (-5 *5 (-1 *9 *9 *9))
- (-4 *9 (-985 *6 *7 *8)) (-4 *6 (-514)) (-4 *7 (-730)) (-4 *8 (-784))
- (-5 *1 (-904 *6 *7 *8 *9)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *3 *2))
- (-4 *2 (-13 (-27) (-1106) (-405 (-154 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522))))
- (-5 *1 (-167 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085))
- (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-1110 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-51)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4)))
- (-5 *2 (-2 (|:| |num| (-1166 *4)) (|:| |den| *4))))))
-(((*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-251)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-628 (-382 (-881 (-522)))))
- (-5 *2
- (-588
- (-2 (|:| |radval| (-291 (-522))) (|:| |radmult| (-522))
- (|:| |radvect| (-588 (-628 (-291 (-522))))))))
- (-5 *1 (-956)))))
-(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
- (-12 (-5 *3 (-1068)) (-5 *5 (-628 (-202))) (-5 *6 (-628 (-522)))
- (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-695)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1014)) (-4 *5 (-1014))
- (-5 *2 (-1 *5 *4)) (-5 *1 (-622 *4 *5)))))
-(((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1085)) (-5 *1 (-616 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1133 *3)) (-4 *3 (-1120)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305))
- (-5 *1 (-307)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
- (-4 *3 (-13 (-338) (-1106) (-928))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-770 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-777 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1116 *3)) (-4 *3 (-901)))))
-(((*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-218)))))
-(((*1 *2 *2 *3) (-12 (-5 *2 (-522)) (-5 *3 (-708)) (-5 *1 (-519)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
- (-5 *1 (-160 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
+ (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *4 (-588 (-1085)))
+ (-5 *2 (-628 (-291 (-202)))) (-5 *1 (-184))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1014)) (-4 *6 (-829 *5)) (-5 *2 (-628 *6))
+ (-5 *1 (-630 *5 *6 *3 *4)) (-4 *3 (-348 *6))
+ (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-194 *4 *2))
+ (-4 *2 (-1142 *4))))
+ ((*1 *2 *2 *3 *2 *3)
+ (-12 (-5 *3 (-522)) (-5 *1 (-634 *2)) (-4 *2 (-1142 *3)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085))
- (-14 *4 *2))))
-(((*1 *2)
- (-12 (-5 *2 (-708)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-708)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-938)) (-5 *2 (-792)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1085)) (-5 *1 (-539 *2)) (-4 *2 (-962 *3))
- (-4 *2 (-338))))
- ((*1 *1 *2 *2) (-12 (-5 *1 (-539 *2)) (-4 *2 (-338))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-575 *4 *2))
- (-4 *2 (-13 (-405 *4) (-928) (-1106)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1007 *2)) (-4 *2 (-13 (-405 *4) (-928) (-1106)))
- (-4 *4 (-13 (-784) (-514))) (-5 *1 (-575 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-887)) (-5 *2 (-1085))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1007 *1)) (-4 *1 (-887)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-135))
- (-4 *3 (-283)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-904 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *8 (-985 *5 *6 *7))
- (-5 *2
- (-2 (|:| |val| (-588 *8)) (|:| |towers| (-588 (-952 *5 *6 *7 *8)))))
- (-5 *1 (-952 *5 *6 *7 *8)) (-5 *3 (-588 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *8 (-985 *5 *6 *7))
- (-5 *2
- (-2 (|:| |val| (-588 *8))
- (|:| |towers| (-588 (-1056 *5 *6 *7 *8)))))
- (-5 *1 (-1056 *5 *6 *7 *8)) (-5 *3 (-588 *8)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1114 *4 *5 *3 *6)) (-4 *4 (-514)) (-4 *5 (-730))
- (-4 *3 (-784)) (-4 *6 (-985 *4 *5 *3)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-522)) (|has| *1 (-6 -4229)) (-4 *1 (-379))
- (-5 *2 (-850)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-305)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1014)) (-5 *2 (-818 *3 *4)) (-5 *1 (-814 *3 *4 *5))
- (-4 *3 (-1014)) (-4 *5 (-608 *4)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
- (-5 *1 (-160 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-514))
- (-4 *7 (-878 *3 *5 *6))
- (-5 *2 (-2 (|:| -1400 (-708)) (|:| -2977 *8) (|:| |radicand| *8)))
- (-5 *1 (-882 *5 *6 *3 *7 *8)) (-5 *4 (-708))
- (-4 *8
- (-13 (-338)
- (-10 -8 (-15 -2805 (*7 $)) (-15 -2816 (*7 $)) (-15 -2190 ($ *7))))))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1085))
- (-4 *5 (-13 (-514) (-962 (-522)) (-135)))
- (-5 *2
- (-2 (|:| -1856 (-382 (-881 *5))) (|:| |coeff| (-382 (-881 *5)))))
- (-5 *1 (-528 *5)) (-5 *3 (-382 (-881 *5))))))
-(((*1 *2)
- (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *2 (-588 (-1081 *7))) (-5 *3 (-1081 *7))
- (-4 *7 (-878 *5 *6 *4)) (-4 *5 (-838)) (-4 *6 (-730))
- (-4 *4 (-784)) (-5 *1 (-835 *5 *6 *4 *7)))))
-(((*1 *1 *1 *1) (-4 *1 (-507))))
+ (-12 (-5 *3 (-1166 (-588 (-2 (|:| -3526 *4) (|:| -2882 (-1032))))))
+ (-4 *4 (-324)) (-5 *2 (-628 *4)) (-5 *1 (-321 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-324)) (-4 *5 (-304 *4)) (-4 *6 (-1142 *5))
- (-5 *2 (-588 *3)) (-5 *1 (-714 *4 *5 *6 *3 *7)) (-4 *3 (-1142 *6))
- (-14 *7 (-850)))))
-(((*1 *1 *1 *1) (-4 *1 (-507))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-426)) (-4 *4 (-514))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2776 *4)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-2 (|:| |ans| *7) (|:| -1924 *7) (|:| |sol?| (-108)))
- (-522) *7))
- (-5 *6 (-588 (-382 *8))) (-4 *7 (-338)) (-4 *8 (-1142 *7))
- (-5 *3 (-382 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-532 *7 *8)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-708)) (-4 *5 (-971)) (-5 *2 (-522))
- (-5 *1 (-417 *5 *3 *6)) (-4 *3 (-1142 *5))
- (-4 *6 (-13 (-379) (-962 *5) (-338) (-1106) (-260)))))
+ (-12 (-5 *3 (-1 (-108) *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514))
+ (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-2 (|:| |goodPols| (-588 *8)) (|:| |badPols| (-588 *8))))
+ (-5 *1 (-904 *5 *6 *7 *8)) (-5 *4 (-588 *8)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-1142 (-382 (-522))))
+ (-5 *2 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522))))
+ (-5 *1 (-842 *3 *4)) (-4 *4 (-1142 (-382 *3)))))
((*1 *2 *3)
- (-12 (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *4 *3 *5))
- (-4 *3 (-1142 *4))
- (-4 *5 (-13 (-379) (-962 *4) (-338) (-1106) (-260))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-1087 (-382 (-522))))
- (-5 *1 (-169)))))
+ (-12 (-4 *4 (-1142 (-382 *2))) (-5 *2 (-522)) (-5 *1 (-842 *4 *3))
+ (-4 *3 (-1142 (-382 *4))))))
(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120))
- (-4 *2 (-1014)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-708)) (-5 *3 (-872 *5)) (-4 *5 (-971))
- (-5 *1 (-1074 *4 *5)) (-14 *4 (-850))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 (-708))) (-5 *3 (-708)) (-5 *1 (-1074 *4 *5))
- (-14 *4 (-850)) (-4 *5 (-971))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 (-708))) (-5 *3 (-872 *5)) (-4 *5 (-971))
- (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
- (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202)))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-82 FCNF))))
- (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-83 FCNG)))) (-5 *3 (-202))
- (-5 *2 (-960)) (-5 *1 (-687)))))
-(((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-964)))))
-(((*1 *1 *2)
- (-12
+ (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784))
+ (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3))
+ (-4 *3 (-895)))))
+(((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-628 *11)) (-5 *4 (-588 (-382 (-881 *8))))
+ (-5 *5 (-708)) (-5 *6 (-1068)) (-4 *8 (-13 (-283) (-135)))
+ (-4 *11 (-878 *8 *10 *9)) (-4 *9 (-13 (-784) (-563 (-1085))))
+ (-4 *10 (-730))
(-5 *2
- (-2 (|:| |mval| (-628 *3)) (|:| |invmval| (-628 *3))
- (|:| |genIdeal| (-474 *3 *4 *5 *6))))
- (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1018)) (-5 *3 (-711)) (-5 *1 (-51)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1120)))))
+ (-2
+ (|:| |rgl|
+ (-588
+ (-2 (|:| |eqzro| (-588 *11)) (|:| |neqzro| (-588 *11))
+ (|:| |wcond| (-588 (-881 *8)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1166 (-382 (-881 *8))))
+ (|:| -2905 (-588 (-1166 (-382 (-881 *8))))))))))
+ (|:| |rgsz| (-522))))
+ (-5 *1 (-853 *8 *9 *10 *11)) (-5 *7 (-522)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 *3)) (-4 *3 (-878 *5 *6 *7)) (-4 *5 (-426))
+ (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
+ (-5 *1 (-423 *5 *6 *7 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-881 *4)) (-4 *4 (-13 (-283) (-135)))
- (-4 *2 (-878 *4 *6 *5)) (-5 *1 (-853 *4 *5 *6 *2))
- (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)))))
-(((*1 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))))
-(((*1 *1 *1 *1) (-4 *1 (-603))) ((*1 *1 *1 *1) (-5 *1 (-1032))))
-(((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-708)) (-5 *1 (-150 *3 *4))
- (-4 *3 (-151 *4))))
- ((*1 *2)
- (-12 (-14 *4 *2) (-4 *5 (-1120)) (-5 *2 (-708))
- (-5 *1 (-214 *3 *4 *5)) (-4 *3 (-215 *4 *5))))
- ((*1 *2)
- (-12 (-4 *4 (-784)) (-5 *2 (-708)) (-5 *1 (-404 *3 *4))
- (-4 *3 (-405 *4))))
- ((*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-506 *3)) (-4 *3 (-507))))
- ((*1 *2) (-12 (-4 *1 (-701)) (-5 *2 (-708))))
- ((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-708)) (-5 *1 (-733 *3 *4))
- (-4 *3 (-734 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-918 *3 *4))
- (-4 *3 (-919 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-708)) (-5 *1 (-922 *3 *4))
- (-4 *3 (-923 *4))))
- ((*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-937 *3)) (-4 *3 (-938))))
- ((*1 *2) (-12 (-4 *1 (-971)) (-5 *2 (-708))))
- ((*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-979 *3)) (-4 *3 (-980)))))
-(((*1 *2 *1)
- (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157))
- (-4 *5 (-215 (-3480 *3) (-708)))
- (-14 *6
- (-1 (-108) (-2 (|:| -2717 *2) (|:| -1400 *5))
- (-2 (|:| -2717 *2) (|:| -1400 *5))))
- (-4 *2 (-784)) (-5 *1 (-435 *3 *4 *2 *5 *6 *7))
- (-4 *7 (-878 *4 *5 (-794 *3))))))
+ (-12 (-5 *3 (-154 *5)) (-4 *5 (-13 (-405 *4) (-928) (-1106)))
+ (-4 *4 (-13 (-514) (-784)))
+ (-4 *2 (-13 (-405 (-154 *4)) (-928) (-1106)))
+ (-5 *1 (-551 *4 *5 *2)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-588 *3)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-392 *4)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))))
-(((*1 *1 *2 *2 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1014)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-522)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-708)) (-4 *5 (-157))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708))
- (-4 *4 (-157))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2))
- (-4 *4 (-348 *2))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-971)) (-4 *1 (-626 *3 *2 *4)) (-4 *2 (-348 *3))
- (-4 *4 (-348 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1052 *2 *3)) (-14 *2 (-708)) (-4 *3 (-971)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1166 (-1085))) (-5 *3 (-1166 (-427 *4 *5 *6 *7)))
- (-5 *1 (-427 *4 *5 *6 *7)) (-4 *4 (-157)) (-14 *5 (-850))
- (-14 *6 (-588 (-1085))) (-14 *7 (-1166 (-628 *4)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1085)) (-5 *3 (-1166 (-427 *4 *5 *6 *7)))
- (-5 *1 (-427 *4 *5 *6 *7)) (-4 *4 (-157)) (-14 *5 (-850))
- (-14 *6 (-588 *2)) (-14 *7 (-1166 (-628 *4)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-427 *3 *4 *5 *6))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085)))
- (-14 *6 (-1166 (-628 *3)))))
+ (-12 (-5 *3 (-628 (-382 (-881 *4)))) (-4 *4 (-426))
+ (-5 *2 (-588 (-3 (-382 (-881 *4)) (-1075 (-1085) (-881 *4)))))
+ (-5 *1 (-268 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-283)) (-4 *3 (-157)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3)))
+ (-5 *1 (-627 *3 *4 *5 *6)) (-4 *6 (-626 *3 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-638 *3))
+ (-4 *3 (-283)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-803)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))))
+(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-740)))))
+(((*1 *1 *2 *3 *3 *3 *4)
+ (-12 (-4 *4 (-338)) (-4 *3 (-1142 *4)) (-4 *5 (-1142 (-382 *3)))
+ (-4 *1 (-310 *4 *3 *5 *2)) (-4 *2 (-317 *4 *3 *5))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *3 (-522)) (-4 *2 (-338)) (-4 *4 (-1142 *2))
+ (-4 *5 (-1142 (-382 *4))) (-4 *1 (-310 *2 *4 *5 *6))
+ (-4 *6 (-317 *2 *4 *5))))
+ ((*1 *1 *2 *2)
+ (-12 (-4 *2 (-338)) (-4 *3 (-1142 *2)) (-4 *4 (-1142 (-382 *3)))
+ (-4 *1 (-310 *2 *3 *4 *5)) (-4 *5 (-317 *2 *3 *4))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-1085))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-157)) (-14 *4 (-850)) (-14 *5 (-588 (-1085)))
- (-14 *6 (-1166 (-628 *3)))))
+ (-12 (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4)))
+ (-4 *1 (-310 *3 *4 *5 *2)) (-4 *2 (-317 *3 *4 *5))))
((*1 *1 *2)
- (-12 (-5 *2 (-1085)) (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157))
- (-14 *4 (-850)) (-14 *5 (-588 *2)) (-14 *6 (-1166 (-628 *3)))))
- ((*1 *1)
- (-12 (-5 *1 (-427 *2 *3 *4 *5)) (-4 *2 (-157)) (-14 *3 (-850))
- (-14 *4 (-588 (-1085))) (-14 *5 (-1166 (-628 *2))))))
-(((*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))))
+ (-12 (-5 *2 (-388 *4 (-382 *4) *5 *6)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5)) (-4 *3 (-338))
+ (-4 *1 (-310 *3 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
+(((*1 *1) (-5 *1 (-412))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-588 (-881 *3))) (-4 *3 (-426))
+ (-5 *1 (-335 *3 *4)) (-14 *4 (-588 (-1085)))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-588 (-717 *3 (-794 *4)))) (-4 *3 (-426))
+ (-14 *4 (-588 (-1085))) (-5 *1 (-573 *3 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157))))
+ ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))))
+(((*1 *2 *1 *3 *3 *2)
+ (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *2 (-1120))
+ (-4 *4 (-348 *2)) (-4 *5 (-348 *2))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-264 *3 *2)) (-4 *3 (-1014))
+ (-4 *2 (-1120)))))
+(((*1 *2 *1) (-12 (-5 *2 (-202)) (-5 *1 (-759)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-426)))))
+(((*1 *2 *3 *4 *5 *3 *6 *3)
+ (-12 (-5 *3 (-522)) (-5 *5 (-154 (-202))) (-5 *6 (-1068))
+ (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1085)) (-5 *2 (-498)) (-5 *1 (-497 *4))
- (-4 *4 (-1120)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))))
-(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-740)))))
+ (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-170)) (-5 *3 (-522))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-720 *2)) (-4 *2 (-157))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-499 *3 *2))
(-4 *2 (-1157 *3))))
@@ -10074,36 +10295,209 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-13 (-514) (-135)))
(-5 *1 (-1062 *3)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-105)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-4 *3 (-1014))
+ (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-5 *1 (-894 *2)) (-4 *2 (-895)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-108)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-588 (-993 *4 *5 *2))) (-4 *4 (-1014))
+ (-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4))))
+ (-4 *2 (-13 (-405 *5) (-815 *4) (-563 (-821 *4))))
+ (-5 *1 (-53 *4 *5 *2))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-588 (-993 *5 *6 *2))) (-5 *4 (-850)) (-4 *5 (-1014))
+ (-4 *6 (-13 (-971) (-815 *5) (-784) (-563 (-821 *5))))
+ (-4 *2 (-13 (-405 *6) (-815 *5) (-563 (-821 *5))))
+ (-5 *1 (-53 *5 *6 *2)))))
+(((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 (-522)) (-5 *1 (-1066 *3)) (-4 *3 (-1120))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120))
+ (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4239)) (-4 *1 (-461 *3))
+ (-4 *3 (-1120)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730))
+ (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-588 *3))))
+ ((*1 *2 *1)
+ (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120))
+ (-5 *2 (-588 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792))))
+ ((*1 *1 *1) (-5 *1 (-792))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-971)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-588 (-708))) (-5 *1 (-897 *4 *3))
+ (-4 *3 (-1142 *4)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-1124)) (-4 *5 (-1142 *4))
+ (-5 *2 (-2 (|:| |radicand| (-382 *5)) (|:| |deg| (-708))))
+ (-5 *1 (-136 *4 *5 *3)) (-4 *3 (-1142 (-382 *5))))))
(((*1 *2 *3)
(-12 (-5 *3 (-588 (-291 (-202)))) (-5 *2 (-108)) (-5 *1 (-243))))
((*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-108)) (-5 *1 (-243))))
((*1 *2 *3)
(-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
(-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168))))
- ((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))))
+(((*1 *2 *1)
+ (-12 (-4 *4 (-1014)) (-5 *2 (-818 *3 *5)) (-5 *1 (-814 *3 *4 *5))
+ (-4 *3 (-1014)) (-4 *5 (-608 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-603))) ((*1 *1 *1 *1) (-5 *1 (-1032))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-690)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-685)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-971))
+ (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260)))
+ (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-850)) (-4 *5 (-971))
+ (-4 *2 (-13 (-379) (-962 *5) (-338) (-1106) (-260)))
+ (-5 *1 (-417 *5 *3 *2)) (-4 *3 (-1142 *5)))))
+(((*1 *1) (-5 *1 (-412))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *4 (-202))
+ (-5 *2
+ (-2 (|:| |brans| (-588 (-588 (-872 *4))))
+ (|:| |xValues| (-1009 *4)) (|:| |yValues| (-1009 *4))))
+ (-5 *1 (-141)) (-5 *3 (-588 (-588 (-872 *4)))))))
+(((*1 *2)
+ (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-392 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-1009 (-202))))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120))
+ (-4 *2 (-1014)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *1 *2) (-12 (-5 *2 (-756 *3)) (-4 *3 (-784)) (-5 *1 (-613 *3)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-514))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-514)))))
+(((*1 *2 *3 *4 *5 *5 *2)
+ (|partial| -12 (-5 *2 (-108)) (-5 *3 (-881 *6)) (-5 *4 (-1085))
+ (-5 *5 (-777 *7))
+ (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-4 *7 (-13 (-1106) (-29 *6))) (-5 *1 (-201 *6 *7))))
+ ((*1 *2 *3 *4 *4 *2)
+ (|partial| -12 (-5 *2 (-108)) (-5 *3 (-1081 *6)) (-5 *4 (-777 *6))
+ (-4 *6 (-13 (-1106) (-29 *5)))
+ (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-201 *5 *6)))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *5 (-561 *4)) (-5 *6 (-1081 *4))
+ (-4 *4 (-13 (-405 *7) (-27) (-1106)))
+ (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4))))
+ (-5 *1 (-518 *7 *4 *3)) (-4 *3 (-598 *4)) (-4 *3 (-1014))))
+ ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
+ (-12 (-5 *5 (-561 *4)) (-5 *6 (-382 (-1081 *4)))
+ (-4 *4 (-13 (-405 *7) (-27) (-1106)))
+ (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2905 (-588 *4))))
+ (-5 *1 (-518 *7 *4 *3)) (-4 *3 (-598 *4)) (-4 *3 (-1014)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-588 *3)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-392 *4)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-588 (-270 *4))) (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784))
+ (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1014)) (-5 *1 (-892 *2 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-1142 *4)) (-5 *1 (-501 *4 *2 *5 *6))
+ (-4 *4 (-283)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-708))))))
+(((*1 *1) (-5 *1 (-129))) ((*1 *1 *1) (-5 *1 (-132)))
+ ((*1 *1 *1) (-4 *1 (-1054))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-278)) (-5 *3 (-1085)) (-5 *2 (-108))))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-278)) (-5 *2 (-108)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-784))
+ (-5 *2 (-2 (|:| -3112 (-522)) (|:| |var| (-561 *1))))
+ (-4 *1 (-405 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-883)) (-5 *2 (-1009 (-202)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-1009 (-202))))))
+(((*1 *1 *2 *2 *1) (-12 (-5 *1 (-589 *2)) (-4 *2 (-1014)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522))
+ (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) (-5 *2 (-960))
+ (-5 *1 (-686)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *6 (-514)) (-4 *2 (-878 *3 *5 *4))
+ (-5 *1 (-670 *5 *4 *6 *2)) (-5 *3 (-382 (-881 *6))) (-4 *5 (-730))
+ (-4 *4 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-338))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
+ (-5 *1 (-532 *5 *3)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-850)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-338) (-782))) (-5 *1 (-164 *3 *2))
+ (-4 *2 (-1142 (-154 *3))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-708)) (-4 *4 (-514)) (-5 *1 (-897 *4 *2))
+ (-4 *2 (-1142 *4)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-588 *6) "failed") (-522) *6 *6)) (-4 *6 (-338))
- (-4 *7 (-1142 *6))
- (-5 *2 (-2 (|:| |answer| (-539 (-382 *7))) (|:| |a0| *6)))
- (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-278))))
- ((*1 *1 *1) (-4 *1 (-278))) ((*1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *3 *2)
- (|partial| -12 (-5 *2 (-1166 *4)) (-5 *3 (-628 *4)) (-4 *4 (-338))
- (-5 *1 (-609 *4))))
- ((*1 *2 *3 *2)
- (|partial| -12 (-4 *4 (-338))
- (-4 *5 (-13 (-348 *4) (-10 -7 (-6 -4239))))
- (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239))))
- (-5 *1 (-610 *4 *5 *2 *3)) (-4 *3 (-626 *4 *5 *2))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *4 (-588 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-338))
- (-5 *1 (-751 *2 *3)) (-4 *3 (-598 *2))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))))
+ (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
+ (-4 *3 (-985 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-588 *4))
+ (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))))
+ (-5 *1 (-988 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-588 *4))
+ (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))))
+ (-5 *1 (-988 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
+ (-4 *3 (-985 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-588 *4))
+ (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))))
+ (-5 *1 (-1055 *6 *7 *8 *3 *4)) (-4 *4 (-1023 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-588 *4))
+ (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))))
+ (-5 *1 (-1055 *5 *6 *7 *3 *4)) (-4 *4 (-1023 *5 *6 *7 *3)))))
+(((*1 *1) (-5 *1 (-760))))
+(((*1 *1) (-5 *1 (-517))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 (-522))) (-5 *1 (-224 *3 *4))
+ (-14 *3 (-588 (-1085))) (-4 *4 (-971))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 (-522))) (-14 *3 (-588 (-1085)))
+ (-5 *1 (-428 *3 *4 *5)) (-4 *4 (-971))
+ (-4 *5 (-215 (-3591 *3) (-708)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 (-522))) (-5 *1 (-454 *3 *4))
+ (-14 *3 (-588 (-1085))) (-4 *4 (-971)))))
+(((*1 *2 *1) (-12 (-5 *2 (-166)) (-5 *1 (-225)))))
(((*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784))))
((*1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784))))
((*1 *1 *1) (-12 (-5 *1 (-822 *2)) (-4 *2 (-784))))
@@ -10113,63 +10507,49 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-708)) (-4 *1 (-1154 *3)) (-4 *3 (-1120))))
((*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-253 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085))
- (-4 *4 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-253 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4)))))
- ((*1 *1 *1) (-5 *1 (-354)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4))))
- (-5 *1 (-713 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-690)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-588 (-872 *4))) (-4 *1 (-1046 *4)) (-4 *4 (-971))
- (-5 *2 (-708)))))
-(((*1 *2 *1) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-1081 *3)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
- (-5 *2
- (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522))
- (|:| |success| (-108))))
- (-5 *1 (-726)) (-5 *5 (-522)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-1093 *3)))))
-(((*1 *1 *1 *1 *1 *2)
- (-12 (-5 *2 (-708)) (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971))
- (-4 *4 (-730)) (-4 *5 (-784)) (-4 *3 (-514)))))
+(((*1 *2 *1) (-12 (-4 *1 (-883)) (-5 *2 (-1009 (-202)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-1009 (-202))))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-1051 *2 *3)) (-4 *2 (-13 (-1014) (-33)))
+ (-4 *3 (-13 (-1014) (-33))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085)) (-4 *4 (-514)) (-4 *4 (-784))
+ (-5 *1 (-531 *4 *2)) (-4 *2 (-405 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-850)) (-5 *1 (-723)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-919 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-130 *4 *5 *3))
- (-4 *3 (-348 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-919 *4))
- (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
- (-5 *1 (-473 *4 *5 *6 *3)) (-4 *6 (-348 *4)) (-4 *3 (-348 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-628 *5)) (-4 *5 (-919 *4)) (-4 *4 (-514))
- (-5 *2 (-2 (|:| |num| (-628 *4)) (|:| |den| *4)))
- (-5 *1 (-631 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522)))))
- (-4 *6 (-1142 *5))
- (-5 *2 (-2 (|:| -3197 *7) (|:| |rh| (-588 (-382 *6)))))
- (-5 *1 (-744 *5 *6 *7 *3)) (-5 *4 (-588 (-382 *6)))
- (-4 *7 (-598 *6)) (-4 *3 (-598 (-382 *6)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-919 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1135 *4 *5 *3))
- (-4 *3 (-1142 *5)))))
+ (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-588 (-2 (|:| |totdeg| (-708)) (|:| -1976 *3))))
+ (-5 *4 (-708)) (-4 *3 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730))
+ (-4 *7 (-784)) (-5 *1 (-423 *5 *6 *7 *3)))))
(((*1 *1) (-5 *1 (-412))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-811 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-588 (-522))) (-5 *3 (-108)) (-5 *1 (-1024)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-588 *10)) (-5 *5 (-108)) (-4 *10 (-990 *6 *7 *8 *9))
+ (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8))
+ (-5 *2
+ (-588
+ (-2 (|:| -3277 (-588 *9)) (|:| -1974 *10) (|:| |ineq| (-588 *9)))))
+ (-5 *1 (-915 *6 *7 *8 *9 *10)) (-5 *3 (-588 *9))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-588 *10)) (-5 *5 (-108)) (-4 *10 (-990 *6 *7 *8 *9))
+ (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8))
+ (-5 *2
+ (-588
+ (-2 (|:| -3277 (-588 *9)) (|:| -1974 *10) (|:| |ineq| (-588 *9)))))
+ (-5 *1 (-1021 *6 *7 *8 *9 *10)) (-5 *3 (-588 *9)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *1) (-5 *1 (-108))))
(((*1 *2 *1)
(-12 (-4 *1 (-555 *3 *2)) (-4 *3 (-1014)) (-4 *3 (-784))
(-4 *2 (-1120))))
@@ -10184,31 +10564,48 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-708)) (-4 *1 (-1154 *3)) (-4 *3 (-1120))))
((*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
- (-12 (-5 *3 (-850)) (-5 *4 (-202)) (-5 *5 (-522)) (-5 *6 (-803))
- (-5 *2 (-1171)) (-5 *1 (-1167)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-3
- (|:| |noa|
- (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202)))
- (|:| |lb| (-588 (-777 (-202))))
- (|:| |cf| (-588 (-291 (-202))))
- (|:| |ub| (-588 (-777 (-202))))))
- (|:| |lsa|
- (-2 (|:| |lfn| (-588 (-291 (-202))))
- (|:| -3802 (-588 (-202)))))))
- (-5 *2 (-588 (-1068))) (-5 *1 (-243)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108))
- (-5 *1 (-915 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108))
- (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-843 *3)) (-4 *3 (-283)))))
+ (-12 (-4 *4 (-338)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4))
+ (-5 *2 (-708)) (-5 *1 (-489 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-4 *3 (-514)) (-5 *2 (-708))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4))
+ (-4 *6 (-348 *4)) (-5 *2 (-708)) (-5 *1 (-627 *4 *5 *6 *3))
+ (-4 *3 (-626 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-4 *5 (-514))
+ (-5 *2 (-708)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-221 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *1 *2)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-129))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1054)) (-5 *2 (-132)))))
+(((*1 *1 *1 *1) (-4 *1 (-283))) ((*1 *1 *1 *1) (-5 *1 (-708)))
+ ((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-3 (-2 (|:| -2585 *7) (|:| |coeff| *7)) "failed") *7))
+ (-5 *6 (-588 (-382 *8))) (-4 *7 (-338)) (-4 *8 (-1142 *7))
+ (-5 *3 (-382 *8))
+ (-5 *2
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-532 *7 *8)))))
(((*1 *2 *2 *3 *3)
(-12 (-5 *3 (-382 *5)) (-4 *4 (-1124)) (-4 *5 (-1142 *4))
(-5 *1 (-136 *4 *5 *2)) (-4 *2 (-1142 *3))))
@@ -10308,48 +10705,51 @@
((*1 *2 *1 *3)
(-12 (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729))
(|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1066 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-881 (-202))) (-5 *2 (-291 (-354))) (-5 *1 (-281)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-310 *3 *4 *5 *6)) (-4 *3 (-338)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5))
+ (-5 *2
+ (-2 (|:| -1868 (-388 *4 (-382 *4) *5 *6)) (|:| |principalPart| *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338))
+ (-5 *2
+ (-2 (|:| |poly| *6) (|:| -3798 (-382 *6))
+ (|:| |special| (-382 *6))))
+ (-5 *1 (-665 *5 *6)) (-5 *3 (-382 *6))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-338)) (-5 *2 (-588 *3)) (-5 *1 (-825 *3 *4))
+ (-4 *3 (-1142 *4))))
+ ((*1 *2 *3 *4 *4)
+ (|partial| -12 (-5 *4 (-708)) (-4 *5 (-338))
+ (-5 *2 (-2 (|:| -1993 *3) (|:| -2002 *3))) (-5 *1 (-825 *3 *5))
+ (-4 *3 (-1142 *5))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108))
+ (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426))
+ (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-988 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108))
+ (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426))
+ (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-988 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108))
+ (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426))
+ (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1055 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-588 *9)) (-5 *3 (-588 *8)) (-5 *4 (-108))
+ (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426))
+ (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1068)) (-5 *2 (-522)) (-5 *1 (-1103 *4))
- (-4 *4 (-971)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-622 *4 *3)) (-4 *4 (-1014))
- (-4 *3 (-1014)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-108) *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514))
- (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-2 (|:| |goodPols| (-588 *8)) (|:| |badPols| (-588 *8))))
- (-5 *1 (-904 *5 *6 *7 *8)) (-5 *4 (-588 *8)))))
+ (-12 (-4 *4 (-971)) (-4 *3 (-1142 *4)) (-4 *2 (-1157 *4))
+ (-5 *1 (-1160 *4 *3 *5 *2)) (-4 *5 (-598 *3)))))
(((*1 *1 *1)
(-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-233)))))
-(((*1 *1) (-5 *1 (-108))))
-(((*1 *2 *3) (-12 (-5 *3 (-382 (-522))) (-5 *2 (-202)) (-5 *1 (-281)))))
-(((*1 *1) (-5 *1 (-1088))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))))
-(((*1 *2 *3 *4 *5 *4 *4 *4)
- (-12 (-4 *6 (-784)) (-5 *3 (-588 *6)) (-5 *5 (-588 *3))
- (-5 *2
- (-2 (|:| |f1| *3) (|:| |f2| (-588 *5)) (|:| |f3| *5)
- (|:| |f4| (-588 *5))))
- (-5 *1 (-1092 *6)) (-5 *4 (-588 *5)))))
-(((*1 *1 *1 *1) (-4 *1 (-283))) ((*1 *1 *1 *1) (-5 *1 (-708)))
- ((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1166 *6)) (-5 *4 (-1166 (-522))) (-5 *5 (-522))
- (-4 *6 (-1014)) (-5 *2 (-1 *6)) (-5 *1 (-943 *6)))))
-(((*1 *1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-108)) (-5 *1 (-547 *3)) (-4 *3 (-971)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *3))
- (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))))
-(((*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-103))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-498))) (-5 *1 (-498)))))
(((*1 *2 *2 *2)
(-12 (-5 *2 (-588 (-561 *4))) (-4 *4 (-405 *3)) (-4 *3 (-784))
(-5 *1 (-531 *3 *4))))
@@ -10358,106 +10758,43 @@
((*1 *1 *2 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014))))
((*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-382 (-1081 (-291 *3)))) (-4 *3 (-13 (-514) (-784)))
- (-5 *1 (-1042 *3)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-708)) (-5 *6 (-108)) (-4 *7 (-426)) (-4 *8 (-730))
- (-4 *9 (-784)) (-4 *3 (-985 *7 *8 *9))
- (-5 *2
- (-2 (|:| |done| (-588 *4))
- (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))))
- (-5 *1 (-988 *7 *8 *9 *3 *4)) (-4 *4 (-990 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
- (-4 *3 (-985 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-588 *4))
- (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))))
- (-5 *1 (-988 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-588 *4))
- (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))))
- (-5 *1 (-988 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-708)) (-5 *6 (-108)) (-4 *7 (-426)) (-4 *8 (-730))
- (-4 *9 (-784)) (-4 *3 (-985 *7 *8 *9))
- (-5 *2
- (-2 (|:| |done| (-588 *4))
- (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))))
- (-5 *1 (-1055 *7 *8 *9 *3 *4)) (-4 *4 (-1023 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
- (-4 *3 (-985 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-588 *4))
- (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))))
- (-5 *1 (-1055 *6 *7 *8 *3 *4)) (-4 *4 (-1023 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-588 *4))
- (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))))
- (-5 *1 (-1055 *5 *6 *7 *3 *4)) (-4 *4 (-1023 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-588 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *6)))
- (-4 *6 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-515 *6 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1051 *2 *3)) (-4 *2 (-13 (-1014) (-33)))
- (-4 *3 (-13 (-1014) (-33))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-708)) (-4 *4 (-514)) (-5 *1 (-897 *4 *2))
+ (-4 *2 (-1142 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-382 (-522))))) (-5 *1 (-239))))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-239)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-287)) (-5 *1 (-766)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202)))
+ (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-61 LSFUN2))))
+ (-5 *2 (-960)) (-5 *1 (-691)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4))))
- ((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-338)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
- (-5 *1 (-489 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5))))
+ (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-426)) (-5 *2 (-108))
+ (-5 *1 (-335 *4 *5)) (-14 *5 (-588 (-1085)))))
((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4))
- (-4 *7 (-919 *4)) (-4 *2 (-626 *7 *8 *9))
- (-5 *1 (-490 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-626 *4 *5 *6))
- (-4 *8 (-348 *7)) (-4 *9 (-348 *7))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2))
- (-4 *4 (-348 *2)) (-4 *2 (-283))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-283)) (-4 *3 (-157)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2))
- (-4 *2 (-626 *3 *4 *5))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-974 *2 *3 *4 *5 *6)) (-4 *4 (-971))
- (-4 *5 (-215 *3 *4)) (-4 *6 (-215 *2 *4)) (-4 *4 (-283)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-588
- (-588
- (-3 (|:| -2888 (-1085))
- (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522))))))))))
- (-5 *1 (-1089)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085))
- (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2
- (-2 (|:| |func| *3) (|:| |kers| (-588 (-561 *3)))
- (|:| |vals| (-588 *3))))
- (-5 *1 (-253 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
+ (-12 (-5 *3 (-588 (-717 *4 (-794 *5)))) (-4 *4 (-426))
+ (-14 *5 (-588 (-1085))) (-5 *2 (-108)) (-5 *1 (-573 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-1089)) (-5 *1 (-1088)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-117 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1068))
+ (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-108)) (-5 *1 (-201 *4 *5)) (-4 *5 (-13 (-1106) (-29 *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-393 (-1081 *1))) (-5 *1 (-291 *4)) (-5 *3 (-1081 *1))
+ (-4 *4 (-426)) (-4 *4 (-514)) (-4 *4 (-784))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-838)) (-5 *2 (-393 (-1081 *1))) (-5 *3 (-1081 *1)))))
+(((*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-697)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1014)) (-5 *2 (-1068)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-171))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-276))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-281)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))))
(((*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-426))))
((*1 *1 *1 *1) (-4 *1 (-426)))
((*1 *2 *3)
@@ -10486,130 +10823,119 @@
((*1 *2 *2 *1)
(-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
(-4 *4 (-784)) (-4 *2 (-426)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-298 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-124))
- (-5 *2 (-588 (-2 (|:| |gen| *3) (|:| -3266 *4))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| -2977 *3) (|:| -2518 *4))))
- (-5 *1 (-673 *3 *4)) (-4 *3 (-971)) (-4 *4 (-664))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729))
- (-5 *2 (-1066 (-2 (|:| |k| *4) (|:| |c| *3)))))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-692)))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-233)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-392 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-301 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971))
- (-4 *2 (-426))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 *4)) (-4 *4 (-1142 (-522))) (-5 *2 (-588 (-522)))
- (-5 *1 (-458 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-426))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *2 (-784)) (-4 *3 (-426)))))
+ (-12 (-5 *3 (-1166 *4)) (-4 *4 (-584 (-522))) (-5 *2 (-108))
+ (-5 *1 (-1191 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-412)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
(((*1 *1 *1 *1) (-4 *1 (-283))) ((*1 *1 *1 *1) (-5 *1 (-708)))
((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
- (-4 *4 (-971)))))
-(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157))))
- ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))))
-(((*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169))))
- ((*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))))
-(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
- (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338)))
- (-4 *3 (-1142 *4)) (-5 *2 (-108)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-108)) (-5 *1 (-110))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-278)) (-5 *3 (-1085)) (-5 *2 (-108))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-278)) (-5 *3 (-110)) (-5 *2 (-108))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1085)) (-5 *2 (-108)) (-5 *1 (-561 *4)) (-4 *4 (-784))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-110)) (-5 *2 (-108)) (-5 *1 (-561 *4)) (-4 *4 (-784))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1014)) (-5 *2 (-108)) (-5 *1 (-816 *5 *3 *4))
- (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *6)) (-4 *6 (-815 *5)) (-4 *5 (-1014))
- (-5 *2 (-108)) (-5 *1 (-816 *5 *6 *4)) (-4 *4 (-563 (-821 *5))))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *4 (-426)) (-4 *3 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
- (-5 *1 (-423 *4 *3 *5 *6)) (-4 *6 (-878 *4 *3 *5)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-708)) (-4 *6 (-338)) (-5 *4 (-1115 *6))
- (-5 *2 (-1 (-1066 *4) (-1066 *4))) (-5 *1 (-1174 *6))
- (-5 *5 (-1066 *4)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4238)) (-4 *1 (-461 *3)) (-4 *3 (-1120))
- (-4 *3 (-1014)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-834 *4)) (-4 *4 (-1014)) (-5 *2 (-108))
- (-5 *1 (-833 *4))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-850)) (-5 *2 (-108)) (-5 *1 (-1015 *4 *5)) (-14 *4 *3)
- (-14 *5 *3))))
-(((*1 *2)
- (-12 (-4 *3 (-971)) (-5 *2 (-886 (-650 *3 *4))) (-5 *1 (-650 *3 *4))
- (-4 *4 (-1142 *3)))))
-(((*1 *1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
+ (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-68 APROD)))) (-5 *4 (-202))
+ (-5 *2 (-960)) (-5 *1 (-694)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202)))
+ (-5 *2 (-960)) (-5 *1 (-685)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))))
+(((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-964)))))
+(((*1 *1 *1) (-4 *1 (-514))))
+(((*1 *2 *3) (-12 (-5 *3 (-382 (-522))) (-5 *2 (-202)) (-5 *1 (-281)))))
+(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-759)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
+(((*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-233)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1050 *3 *2)) (-4 *3 (-13 (-1014) (-33)))
+ (-4 *2 (-13 (-1014) (-33))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522)))))
(((*1 *2 *1 *1)
(|partial| -12 (-5 *2 (-2 (|:| |lm| (-756 *3)) (|:| |rm| (-756 *3))))
(-5 *1 (-756 *3)) (-4 *3 (-784))))
((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *6)))))
-(((*1 *1 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)) (-4 *2 (-980))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085)))
- (-14 *3 (-588 (-1085))) (-4 *4 (-362))))
- ((*1 *2 *2)
+(((*1 *1 *1 *1) (-5 *1 (-202)))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
+ ((*1 *2 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
(-4 *2 (-405 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)) (-4 *2 (-980))))
- ((*1 *1 *1) (-4 *1 (-782)))
- ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)) (-4 *2 (-980))))
- ((*1 *1 *1) (-4 *1 (-980))) ((*1 *1 *1) (-4 *1 (-1049))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-522)) (-4 *1 (-1126 *4)) (-4 *4 (-971)) (-4 *4 (-514))
- (-5 *2 (-382 (-881 *4)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-4 *1 (-1126 *4)) (-4 *4 (-971)) (-4 *4 (-514))
- (-5 *2 (-382 (-881 *4))))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964))))
+ ((*1 *1 *1 *1) (-4 *1 (-1049))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
+ (-4 *3 (-342 *4))))
+ ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *2)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-723)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
+(((*1 *1) (-5 *1 (-1088))))
+(((*1 *1) (-5 *1 (-1001))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-689)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-270 (-777 *3))) (-4 *3 (-13 (-27) (-1106) (-405 *5)))
+ (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2
+ (-3 (-777 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-777 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-777 *3) "failed")))
+ "failed"))
+ (-5 *1 (-581 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-270 *3)) (-5 *5 (-1068))
+ (-4 *3 (-13 (-27) (-1106) (-405 *6)))
+ (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-777 *3)) (-5 *1 (-581 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-270 (-777 (-881 *5)))) (-4 *5 (-426))
+ (-5 *2
+ (-3 (-777 (-382 (-881 *5)))
+ (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 *5))) "failed"))
+ (|:| |rightHandLimit| (-3 (-777 (-382 (-881 *5))) "failed")))
+ "failed"))
+ (-5 *1 (-582 *5)) (-5 *3 (-382 (-881 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-270 (-382 (-881 *5)))) (-5 *3 (-382 (-881 *5)))
+ (-4 *5 (-426))
+ (-5 *2
+ (-3 (-777 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-777 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-777 *3) "failed")))
+ "failed"))
+ (-5 *1 (-582 *5))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-270 (-382 (-881 *6)))) (-5 *5 (-1068))
+ (-5 *3 (-382 (-881 *6))) (-4 *6 (-426)) (-5 *2 (-777 *3))
+ (-5 *1 (-582 *6)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-218)) (-5 *3 (-1068))))
- ((*1 *2 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-218))))
- ((*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014))
- (-5 *2 (-588 (-2 (|:| |k| *4) (|:| |c| *3))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| |k| (-822 *3)) (|:| |c| *4))))
- (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784))
- (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-613 *3))) (-5 *1 (-822 *3)) (-4 *3 (-784)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
+ (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
+ (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
+ (|:| |abserr| (-202)) (|:| |relerr| (-202))))
+ (-5 *2 (-354)) (-5 *1 (-184)))))
(((*1 *2 *1)
- (-12 (-4 *2 (-647 *3)) (-5 *1 (-764 *2 *3)) (-4 *3 (-971)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-5 *2 (-393 *3))
- (-5 *1 (-680 *4 *5 *6 *3)) (-4 *3 (-878 *6 *4 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1166 *5)) (-4 *5 (-729)) (-5 *2 (-108))
- (-5 *1 (-779 *4 *5)) (-14 *4 (-708)))))
-(((*1 *2)
- (-12 (-5 *2 (-1166 (-1015 *3 *4))) (-5 *1 (-1015 *3 *4))
- (-14 *3 (-850)) (-14 *4 (-850)))))
+ (-12 (-4 *1 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730))
+ (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-708)) (-5 *1 (-616 *3)) (-4 *3 (-971)) (-4 *3 (-1014)))))
+ (-12 (-5 *2 (-1 (-202) (-202) (-202) (-202))) (-5 *1 (-239))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202) (-202))) (-5 *1 (-239))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-202) (-202))) (-5 *1 (-239)))))
(((*1 *1 *1 *2)
(|partial| -12 (-4 *1 (-151 *2)) (-4 *2 (-157)) (-4 *2 (-514))))
((*1 *1 *1 *2)
@@ -10631,71 +10957,86 @@
(-4 *5 (-215 *4 *2)) (-4 *6 (-215 *3 *2)) (-4 *2 (-514))))
((*1 *2 *2 *2)
(|partial| -12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))))
-(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-157)) (-4 *2 (-514))))
- ((*1 *1 *1) (|partial| -4 *1 (-660))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730))
- (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *1 (-158 *2)) (-4 *2 (-283))))
- ((*1 *2 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283))))
- ((*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-283))))
- ((*1 *2 *1) (-12 (-4 *1 (-980)) (-5 *2 (-522)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-283)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4))
- (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
- (-5 *1 (-1036 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6)))))
-(((*1 *1 *1) (-5 *1 (-983))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-588 *3)) (-5 *1 (-897 *4 *3))
- (-4 *3 (-1142 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2)
+ (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171))
+ (-5 *1 (-991 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171))
+ (-5 *1 (-1022 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))))
+(((*1 *1) (-5 *1 (-442))))
(((*1 *2 *3)
- (-12 (-4 *4 (-426))
- (-5 *2
- (-588
- (-2 (|:| |eigval| (-3 (-382 (-881 *4)) (-1075 (-1085) (-881 *4))))
- (|:| |geneigvec| (-588 (-628 (-382 (-881 *4))))))))
- (-5 *1 (-268 *4)) (-5 *3 (-628 (-382 (-881 *4)))))))
+ (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-218)) (-5 *3 (-1068))))
+ ((*1 *2 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-218))))
+ ((*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *2 (-784)) (-4 *5 (-985 *3 *4 *2)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
(((*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-426))))
((*1 *1 *1 *1) (-4 *1 (-426))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 (-588 *2))) (-5 *4 (-588 *5))
- (-4 *5 (-37 (-382 (-522)))) (-4 *2 (-1157 *5))
- (-5 *1 (-1159 *5 *2)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-540 *2)) (-4 *2 (-507)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-628 (-522))) (-5 *3 (-588 (-522))) (-5 *1 (-1024)))))
-(((*1 *2)
- (-12 (-4 *4 (-338)) (-5 *2 (-708)) (-5 *1 (-303 *3 *4))
- (-4 *3 (-304 *4))))
- ((*1 *2) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-708)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1068)) (-5 *3 (-760)) (-5 *1 (-759)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 (-382 (-522))))
+(((*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-637)) (-5 *1 (-281)))))
+(((*1 *1 *1 *1) (|partial| -4 *1 (-124))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1081 *3)) (-4 *3 (-971)) (-4 *1 (-1142 *3)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *5 (-962 (-47)))
+ (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4))
+ (-5 *2 (-393 (-1081 (-47)))) (-5 *1 (-410 *4 *5 *3))
+ (-4 *3 (-1142 *5)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-971)) (-5 *1 (-823 *2 *3)) (-4 *2 (-1142 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-283) (-135))) (-4 *4 (-13 (-784) (-563 (-1085))))
+ (-4 *5 (-730)) (-5 *1 (-853 *3 *4 *5 *2)) (-4 *2 (-878 *3 *5 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-5 *2 (-1 (-108) *5))
+ (-5 *1 (-819 *4 *5)) (-4 *5 (-1120)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1081 *3)) (-4 *3 (-343)) (-4 *1 (-304 *3))
+ (-4 *3 (-338)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-143)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *2 *3 *4 *5 *4 *4 *4)
+ (-12 (-4 *6 (-784)) (-5 *3 (-588 *6)) (-5 *5 (-588 *3))
(-5 *2
- (-588
- (-2 (|:| |outval| *4) (|:| |outmult| (-522))
- (|:| |outvect| (-588 (-628 *4))))))
- (-5 *1 (-716 *4)) (-4 *4 (-13 (-338) (-782))))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-1068)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
- (-4 *4 (-985 *6 *7 *8)) (-5 *2 (-1171))
- (-5 *1 (-713 *6 *7 *8 *4 *5)) (-4 *5 (-990 *6 *7 *8 *4)))))
+ (-2 (|:| |f1| *3) (|:| |f2| (-588 *5)) (|:| |f3| *5)
+ (|:| |f4| (-588 *5))))
+ (-5 *1 (-1092 *6)) (-5 *4 (-588 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971))
+ (-5 *2 (-588 (-588 (-588 (-708))))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-426)) (-4 *3 (-784)) (-4 *3 (-962 (-522)))
+ (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-405 *3))
+ (-4 *2
+ (-13 (-338) (-278)
+ (-10 -8 (-15 -2947 ((-1037 *3 (-561 $)) $))
+ (-15 -2959 ((-1037 *3 (-561 $)) $))
+ (-15 -2217 ($ (-1037 *3 (-561 $))))))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4))
- (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))))
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730))
+ (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-988 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7))
+ (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730))
+ (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-708)) (-4 *1 (-208 *4))
(-4 *4 (-971))))
@@ -10718,56 +11059,115 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-588 *3)) (-4 *1 (-829 *3)) (-4 *3 (-1014))))
((*1 *1 *1 *2) (-12 (-4 *1 (-829 *2)) (-4 *2 (-1014)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2))
- (-4 *4 (-348 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1133 *3)) (-4 *3 (-1120)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 *3)) (-4 *3 (-878 *5 *6 *7)) (-4 *5 (-426))
- (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
- (-5 *1 (-423 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-202)) (-5 *1 (-759)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-474 *3 *4 *5 *6))) (-4 *3 (-338)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784))
+ (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-588 *1)) (-5 *3 (-588 *7)) (-4 *1 (-990 *4 *5 *6 *7))
+ (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1))
+ (-4 *1 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1))
+ (-4 *1 (-990 *4 *5 *6 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
+(((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
+(((*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1049))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-156))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1171))
+ (-5 *1 (-423 *4 *5 *6 *7)))))
+(((*1 *1 *1) (-5 *1 (-202)))
+ ((*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
+ ((*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *1 *1) (-4 *1 (-1049))) ((*1 *1 *1 *1) (-4 *1 (-1049))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1166 *6)) (-5 *4 (-1166 (-522))) (-5 *5 (-522))
+ (-4 *6 (-1014)) (-5 *2 (-1 *6)) (-5 *1 (-943 *6)))))
+(((*1 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354)))))
(((*1 *2 *3 *1)
- (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730))
- (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
-(((*1 *1 *2) (-12 (-5 *2 (-756 *3)) (-4 *3 (-784)) (-5 *1 (-613 *3)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-202)) (-5 *4 (-522))
- (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) (-5 *2 (-960))
- (-5 *1 (-686)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-588 (-2 (|:| |totdeg| (-708)) (|:| -3892 *3))))
- (-5 *4 (-708)) (-4 *3 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *6 (-730))
- (-4 *7 (-784)) (-5 *1 (-423 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-3 (-2 (|:| -1856 *7) (|:| |coeff| *7)) "failed") *7))
- (-5 *6 (-588 (-382 *8))) (-4 *7 (-338)) (-4 *8 (-1142 *7))
- (-5 *3 (-382 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-532 *7 *8)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-117 *3)))))
+ (-12 (-4 *1 (-559 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-5 *2 (-108)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-953 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-588 (-628 *3))) (-4 *3 (-971)) (-5 *1 (-953 *3))))
+ ((*1 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-953 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-588 (-628 *3))) (-4 *3 (-971)) (-5 *1 (-953 *3)))))
+(((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
+ (-4 *6 (-730)) (-5 *2 (-588 (-588 (-522))))
+ (-5 *1 (-853 *4 *5 *6 *7)) (-5 *3 (-522)) (-4 *7 (-878 *4 *6 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1166 *4)) (-4 *4 (-584 (-522))) (-5 *2 (-108))
- (-5 *1 (-1191 *4)))))
+ (|partial| -12 (-5 *3 (-1166 *5)) (-4 *5 (-584 *4)) (-4 *4 (-514))
+ (-5 *2 (-1166 *4)) (-5 *1 (-583 *4 *5)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-723)))))
+(((*1 *1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-108)) (-5 *1 (-547 *3)) (-4 *3 (-971)))))
+(((*1 *2)
+ (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171))
+ (-5 *1 (-991 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171))
+ (-5 *1 (-1022 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5)))
+ (-5 *2 (-588 (-588 *4))) (-5 *1 (-316 *3 *4 *5 *6))
+ (-4 *3 (-317 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-4 *3 (-343)) (-5 *2 (-588 (-588 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-338)) (-4 *3 (-971))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -1368 *1)))
+ (-4 *1 (-786 *3)))))
(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-4 *1 (-139 *3))))
((*1 *1 *2)
(-12
- (-5 *2 (-588 (-2 (|:| -1400 (-708)) (|:| -1893 *4) (|:| |num| *4))))
+ (-5 *2 (-588 (-2 (|:| -3858 (-708)) (|:| -1980 *4) (|:| |num| *4))))
(-4 *4 (-1142 *3)) (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *4))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-12 (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-5 *3 (-588 (-881 (-522)))) (-5 *4 (-108)) (-5 *1 (-412))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-12 (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-5 *3 (-588 (-1085))) (-5 *4 (-108)) (-5 *1 (-412))))
((*1 *2 *1)
(-12 (-5 *2 (-1066 *3)) (-5 *1 (-552 *3)) (-4 *3 (-1120))))
@@ -10787,23 +11187,23 @@
((*1 *1 *2 *3)
(-12 (-5 *1 (-651 *2 *3 *4)) (-4 *2 (-784)) (-4 *3 (-1014))
(-14 *4
- (-1 (-108) (-2 (|:| -2717 *2) (|:| -1400 *3))
- (-2 (|:| -2717 *2) (|:| -1400 *3))))))
+ (-1 (-108) (-2 (|:| -2882 *2) (|:| -3858 *3))
+ (-2 (|:| -2882 *2) (|:| -3858 *3))))))
((*1 *1 *2 *3)
(-12 (-5 *1 (-802 *2 *3)) (-4 *2 (-1120)) (-4 *3 (-1120))))
((*1 *1 *2)
- (-12 (-5 *2 (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 *4))))
+ (-12 (-5 *2 (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 *4))))
(-4 *4 (-1014)) (-5 *1 (-818 *3 *4)) (-4 *3 (-1014))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-588 *5)) (-4 *5 (-13 (-1014) (-33)))
(-5 *2 (-588 (-1050 *3 *5))) (-5 *1 (-1050 *3 *5))
(-4 *3 (-13 (-1014) (-33)))))
((*1 *2 *3)
- (-12 (-5 *3 (-588 (-2 (|:| |val| *4) (|:| -1886 *5))))
+ (-12 (-5 *3 (-588 (-2 (|:| |val| *4) (|:| -1974 *5))))
(-4 *4 (-13 (-1014) (-33))) (-4 *5 (-13 (-1014) (-33)))
(-5 *2 (-588 (-1050 *4 *5))) (-5 *1 (-1050 *4 *5))))
((*1 *1 *2)
- (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -1886 *4)))
+ (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -1974 *4)))
(-4 *3 (-13 (-1014) (-33))) (-4 *4 (-13 (-1014) (-33)))
(-5 *1 (-1050 *3 *4))))
((*1 *1 *2 *3)
@@ -10826,44 +11226,55 @@
(-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4))))
((*1 *1 *2 *3)
(-12 (-5 *1 (-1075 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *5)) (-4 *4 (-971))
- (-4 *5 (-784)) (-5 *2 (-881 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *5)) (-4 *4 (-971))
- (-4 *5 (-784)) (-5 *2 (-881 *4))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-708)) (-4 *1 (-1157 *4)) (-4 *4 (-971))
- (-5 *2 (-881 *4))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-588
+ (-2
+ (|:| -2644
+ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
+ (|:| |fn| (-1166 (-291 (-202))))
+ (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202)))
+ (|:| |g| (-291 (-202))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
+ (|:| -3149
+ (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354))
+ (|:| |expense| (-354)) (|:| |accuracy| (-354))
+ (|:| |intermediateResults| (-354)))))))
+ (-5 *1 (-740)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-685)))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-154 (-202))))
+ (-5 *2 (-960)) (-5 *1 (-692)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-522)) (-4 *1 (-55 *4 *5 *2)) (-4 *4 (-1120))
+ (-4 *5 (-348 *4)) (-4 *2 (-348 *4))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-708)) (-4 *1 (-1157 *4)) (-4 *4 (-971))
- (-5 *2 (-881 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-990 *3 *4 *5 *6)) (-4 *3 (-426)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730))
- (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *5 (-962 (-47)))
- (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4))
- (-5 *2 (-393 (-1081 (-47)))) (-5 *1 (-410 *4 *5 *3))
- (-4 *3 (-1142 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+ (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *6 *7 *2)) (-4 *6 (-971))
+ (-4 *7 (-215 *5 *6)) (-4 *2 (-215 *4 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *3))
+ (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))))
+(((*1 *1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-1 (-1066 (-881 *4)) (-1066 (-881 *4))))
- (-5 *1 (-1174 *4)) (-4 *4 (-338)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1032)) (-4 *4 (-324))
- (-5 *1 (-492 *4)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-708)) (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |pde| (-588 (-291 (-202))))
+ (|:| |constraints|
+ (-588
+ (-2 (|:| |start| (-202)) (|:| |finish| (-202))
+ (|:| |grid| (-708)) (|:| |boundaryType| (-522))
+ (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202))))))
+ (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068))
+ (|:| |tol| (-202))))
+ (-5 *2 (-108)) (-5 *1 (-189)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-108)) (-5 *1 (-766)))))
+(((*1 *2)
+ (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
(((*1 *1 *2) (-12 (-4 *1 (-37 *2)) (-4 *2 (-157))))
((*1 *1 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-338)) (-14 *6 (-1166 (-628 *3)))
@@ -10871,69 +11282,69 @@
((*1 *1 *2) (-12 (-5 *2 (-1037 (-522) (-561 (-47)))) (-5 *1 (-47))))
((*1 *2 *3) (-12 (-5 *2 (-51)) (-5 *1 (-50 *3)) (-4 *3 (-1120))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-314 (-2201 'JINT 'X 'ELAM) (-2201) (-637))))
+ (-12 (-5 *2 (-1166 (-314 (-2227 'JINT 'X 'ELAM) (-2227) (-637))))
(-5 *1 (-59 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-314 (-2201) (-2201 'XC) (-637))))
+ (-12 (-5 *2 (-1166 (-314 (-2227) (-2227 'XC) (-637))))
(-5 *1 (-61 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-314 (-2201 'X) (-2201) (-637))) (-5 *1 (-62 *3))
+ (-12 (-5 *2 (-314 (-2227 'X) (-2227) (-637))) (-5 *1 (-62 *3))
(-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-628 (-314 (-2201) (-2201 'X 'HESS) (-637))))
+ (-12 (-5 *2 (-628 (-314 (-2227) (-2227 'X 'HESS) (-637))))
(-5 *1 (-63 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-314 (-2201) (-2201 'XC) (-637))) (-5 *1 (-64 *3))
+ (-12 (-5 *2 (-314 (-2227) (-2227 'XC) (-637))) (-5 *1 (-64 *3))
(-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-314 (-2201 'X) (-2201 '-1352) (-637))))
+ (-12 (-5 *2 (-1166 (-314 (-2227 'X) (-2227 '-1330) (-637))))
(-5 *1 (-69 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-314 (-2201) (-2201 'X) (-637))))
+ (-12 (-5 *2 (-1166 (-314 (-2227) (-2227 'X) (-637))))
(-5 *1 (-72 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-314 (-2201 'X 'EPS) (-2201 '-1352) (-637))))
+ (-12 (-5 *2 (-1166 (-314 (-2227 'X 'EPS) (-2227 '-1330) (-637))))
(-5 *1 (-73 *3 *4 *5)) (-14 *3 (-1085)) (-14 *4 (-1085))
(-14 *5 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-314 (-2201 'EPS) (-2201 'YA 'YB) (-637))))
+ (-12 (-5 *2 (-1166 (-314 (-2227 'EPS) (-2227 'YA 'YB) (-637))))
(-5 *1 (-74 *3 *4 *5)) (-14 *3 (-1085)) (-14 *4 (-1085))
(-14 *5 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-314 (-2201) (-2201 'X) (-637))) (-5 *1 (-75 *3))
+ (-12 (-5 *2 (-314 (-2227) (-2227 'X) (-637))) (-5 *1 (-75 *3))
(-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-314 (-2201) (-2201 'X) (-637))) (-5 *1 (-76 *3))
+ (-12 (-5 *2 (-314 (-2227) (-2227 'X) (-637))) (-5 *1 (-76 *3))
(-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-314 (-2201) (-2201 'XC) (-637))))
+ (-12 (-5 *2 (-1166 (-314 (-2227) (-2227 'XC) (-637))))
(-5 *1 (-77 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-314 (-2201) (-2201 'X) (-637))))
+ (-12 (-5 *2 (-1166 (-314 (-2227) (-2227 'X) (-637))))
(-5 *1 (-78 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-314 (-2201) (-2201 'X) (-637))))
+ (-12 (-5 *2 (-1166 (-314 (-2227) (-2227 'X) (-637))))
(-5 *1 (-79 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-314 (-2201 'X '-1352) (-2201) (-637))))
+ (-12 (-5 *2 (-1166 (-314 (-2227 'X '-1330) (-2227) (-637))))
(-5 *1 (-80 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-628 (-314 (-2201 'X '-1352) (-2201) (-637))))
+ (-12 (-5 *2 (-628 (-314 (-2227 'X '-1330) (-2227) (-637))))
(-5 *1 (-81 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-628 (-314 (-2201 'X) (-2201) (-637)))) (-5 *1 (-82 *3))
+ (-12 (-5 *2 (-628 (-314 (-2227 'X) (-2227) (-637)))) (-5 *1 (-82 *3))
(-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-314 (-2201 'X) (-2201) (-637))))
+ (-12 (-5 *2 (-1166 (-314 (-2227 'X) (-2227) (-637))))
(-5 *1 (-83 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-1166 (-314 (-2201 'X) (-2201 '-1352) (-637))))
+ (-12 (-5 *2 (-1166 (-314 (-2227 'X) (-2227 '-1330) (-637))))
(-5 *1 (-84 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-628 (-314 (-2201 'XL 'XR 'ELAM) (-2201) (-637))))
+ (-12 (-5 *2 (-628 (-314 (-2227 'XL 'XR 'ELAM) (-2227) (-637))))
(-5 *1 (-85 *3)) (-14 *3 (-1085))))
((*1 *1 *2)
- (-12 (-5 *2 (-314 (-2201 'X) (-2201 '-1352) (-637))) (-5 *1 (-87 *3))
+ (-12 (-5 *2 (-314 (-2227 'X) (-2227 '-1330) (-637))) (-5 *1 (-87 *3))
(-14 *3 (-1085))))
((*1 *2 *1) (-12 (-5 *2 (-930 2)) (-5 *1 (-103))))
((*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-103))))
@@ -10956,8 +11367,8 @@
(-12 (-5 *2 (-588 *3))
(-4 *3
(-13 (-784)
- (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 ((-1171) $))
- (-15 -2664 ((-1171) $)))))
+ (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 ((-1171) $))
+ (-15 -2113 ((-1171) $)))))
(-5 *1 (-192 *3))))
((*1 *2 *1) (-12 (-5 *2 (-930 10)) (-5 *1 (-195))))
((*1 *2 *1) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-195))))
@@ -10998,14 +11409,14 @@
((*1 *1 *2) (-12 (-4 *1 (-349 *2 *3)) (-4 *2 (-784)) (-4 *3 (-157))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305)))))
(-4 *1 (-358))))
((*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-358))))
((*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-358))))
((*1 *1 *2) (-12 (-5 *2 (-628 (-637))) (-4 *1 (-358))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305)))))
(-4 *1 (-359))))
((*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-359))))
((*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-359))))
@@ -11015,71 +11426,71 @@
((*1 *1 *2) (-12 (-5 *2 (-792)) (-5 *1 (-369))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305)))))
(-4 *1 (-371))))
((*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-371))))
((*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-371))))
((*1 *1 *2)
(-12 (-5 *2 (-270 (-291 (-154 (-354))))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-270 (-291 (-354)))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-270 (-291 (-522)))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-291 (-154 (-354)))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-291 (-354))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-291 (-522))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-270 (-291 (-632)))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-270 (-291 (-637)))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-270 (-291 (-639)))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-291 (-632))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-291 (-637))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-291 (-639))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305)))))
(-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085))
- (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-588 (-305))) (-5 *1 (-373 *3 *4 *5 *6))
- (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *3 (-1085)) (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-305)) (-5 *1 (-373 *3 *4 *5 *6)) (-14 *3 (-1085))
- (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1367 "void")))
+ (-14 *4 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
(-14 *5 (-588 (-1085))) (-14 *6 (-1089))))
((*1 *1 *2)
(-12 (-5 *2 (-306 *4)) (-4 *4 (-13 (-784) (-21)))
@@ -11107,14 +11518,14 @@
((*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-412))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305)))))
(-4 *1 (-414))))
((*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-414))))
((*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-414))))
((*1 *1 *2) (-12 (-5 *2 (-1166 (-637))) (-4 *1 (-414))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2033 (-588 (-305)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1089)) (|:| -2077 (-588 (-305)))))
(-4 *1 (-415))))
((*1 *1 *2) (-12 (-5 *2 (-305)) (-4 *1 (-415))))
((*1 *1 *2) (-12 (-5 *2 (-588 (-305))) (-4 *1 (-415))))
@@ -11179,18 +11590,18 @@
((*1 *1 *2)
(-12 (-4 *3 (-971)) (-5 *1 (-650 *3 *2)) (-4 *2 (-1142 *3))))
((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| -2717 *3) (|:| -1400 *4)))
+ (-12 (-5 *2 (-2 (|:| -2882 *3) (|:| -3858 *4)))
(-5 *1 (-651 *3 *4 *5)) (-4 *3 (-784)) (-4 *4 (-1014))
(-14 *5 (-1 (-108) *2 *2))))
((*1 *1 *2)
- (-12 (-5 *2 (-2 (|:| -2717 *3) (|:| -1400 *4))) (-4 *3 (-784))
+ (-12 (-5 *2 (-2 (|:| -2882 *3) (|:| -3858 *4))) (-4 *3 (-784))
(-4 *4 (-1014)) (-5 *1 (-651 *3 *4 *5)) (-14 *5 (-1 (-108) *2 *2))))
((*1 *2 *1)
(-12 (-4 *2 (-157)) (-5 *1 (-653 *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 (-588 (-2 (|:| -2977 *3) (|:| -2518 *4)))) (-4 *3 (-971))
+ (-12 (-5 *2 (-588 (-2 (|:| -3112 *3) (|:| -2623 *4)))) (-4 *3 (-971))
(-4 *4 (-664)) (-5 *1 (-673 *3 *4))))
((*1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-701))))
((*1 *1 *2)
@@ -11199,25 +11610,25 @@
(-3
(|:| |nia|
(-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
(|:| |relerr| (-202))))
(|:| |mdnia|
(-2 (|:| |fn| (-291 (-202)))
- (|:| -2386 (-588 (-1009 (-777 (-202)))))
+ (|:| -2321 (-588 (-1009 (-777 (-202)))))
(|:| |abserr| (-202)) (|:| |relerr| (-202))))))
(-5 *1 (-706))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |fn| (-291 (-202)))
- (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202))
+ (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202))
(|:| |relerr| (-202))))
(-5 *1 (-706))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
(|:| |relerr| (-202))))
(-5 *1 (-706))))
((*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-706))))
@@ -11243,23 +11654,23 @@
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202)))
+ (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202)))
(|:| |lb| (-588 (-777 (-202))))
(|:| |cf| (-588 (-291 (-202))))
(|:| |ub| (-588 (-777 (-202))))))
(|:| |lsa|
(-2 (|:| |lfn| (-588 (-291 (-202))))
- (|:| -3802 (-588 (-202)))))))
+ (|:| -3937 (-588 (-202)))))))
(-5 *1 (-775))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))
+ (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))
(-5 *1 (-775))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202)))
+ (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202)))
(|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202))))
(|:| |ub| (-588 (-777 (-202))))))
(-5 *1 (-775))))
@@ -11418,75 +11829,9 @@
(-12 (-5 *2 (-606 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157))
(-5 *1 (-1184 *3 *4))))
((*1 *1 *2) (-12 (-5 *1 (-1187 *3 *2)) (-4 *3 (-971)) (-4 *2 (-780)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-588 *1)) (-5 *3 (-588 *7)) (-4 *1 (-990 *4 *5 *6 *7))
- (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *1))
- (-4 *1 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-588 *1)) (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1))
- (-4 *1 (-990 *4 *5 *6 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085))
- (-4 *4 (-13 (-784) (-283) (-962 (-522)) (-584 (-522)) (-135)))
- (-5 *1 (-741 *4 *2)) (-4 *2 (-13 (-29 *4) (-1106) (-887))))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792))))
- ((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369))))
- ((*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
- (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *6 (-202))
- (-5 *3 (-522)) (-5 *2 (-960)) (-5 *1 (-690)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-595 (-382 *6))) (-5 *4 (-382 *6)) (-4 *6 (-1142 *5))
- (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4))))
- (-5 *1 (-747 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-595 (-382 *6))) (-4 *6 (-1142 *5))
- (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-5 *2 (-2 (|:| -3855 (-588 (-382 *6))) (|:| -1222 (-628 *5))))
- (-5 *1 (-747 *5 *6)) (-5 *4 (-588 (-382 *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-596 *6 (-382 *6))) (-5 *4 (-382 *6)) (-4 *6 (-1142 *5))
- (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4))))
- (-5 *1 (-747 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-596 *6 (-382 *6))) (-4 *6 (-1142 *5))
- (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-5 *2 (-2 (|:| -3855 (-588 (-382 *6))) (|:| -1222 (-628 *5))))
- (-5 *1 (-747 *5 *6)) (-5 *4 (-588 (-382 *6))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-522)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-283))
- (-4 *9 (-878 *8 *6 *7))
- (-5 *2 (-2 (|:| -3892 (-1081 *9)) (|:| |polval| (-1081 *8))))
- (-5 *1 (-680 *6 *7 *8 *9)) (-5 *3 (-1081 *9)) (-5 *4 (-1081 *8)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-685)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *1 (-57 *3)) (-4 *3 (-1120))))
- ((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-57 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4))))
- ((*1 *2 *3 *3)
- (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
+ (-5 *2 (-960)) (-5 *1 (-690)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| (-1068))) (-5 *2 (-108)) (-5 *1 (-1090))))
((*1 *2 *1 *3)
@@ -11495,464 +11840,423 @@
(-12 (-5 *3 (|[\|\|]| (-202))) (-5 *2 (-108)) (-5 *1 (-1090))))
((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| (-522))) (-5 *2 (-108)) (-5 *1 (-1090)))))
-(((*1 *2 *2) (-12 (-5 *2 (-850)) (|has| *1 (-6 -4229)) (-4 *1 (-379))))
- ((*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850))))
- ((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637))))
- ((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-305)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-115 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522)))))
+ (-4 *4 (-1142 (-382 *2))) (-5 *2 (-522)) (-5 *1 (-842 *4 *5))
+ (-4 *5 (-1142 (-382 *4))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-757)) (-14 *5 (-1085))
+ (-5 *2 (-588 *4)) (-5 *1 (-1028 *4 *5)))))
+(((*1 *1)
+ (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708))
+ (-4 *4 (-157)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 (-708))) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
- (-4 *4 (-971)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN))))
- (-5 *2 (-960)) (-5 *1 (-686)))))
+ (-12 (-5 *2 (-522)) (|has| *1 (-6 -4239)) (-4 *1 (-1154 *3))
+ (-4 *3 (-1120)))))
+(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *1 (-734 *2)) (-4 *2 (-157))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-925 *3)) (-4 *3 (-157)) (-5 *1 (-736 *3)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-971)) (-4 *3 (-784))
- (-5 *2 (-2 (|:| |val| *1) (|:| -1400 (-522)))) (-4 *1 (-405 *3))))
+ (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-108))))
((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| |val| (-821 *3)) (|:| -1400 (-821 *3))))
- (-5 *1 (-821 *3)) (-4 *3 (-1014))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971))
- (-4 *7 (-878 *6 *4 *5))
- (-5 *2 (-2 (|:| |val| *3) (|:| -1400 (-522))))
- (-5 *1 (-879 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-338)
- (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $))
- (-15 -2816 (*7 $))))))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1085)) (-5 *4 (-881 (-522))) (-5 *2 (-305))
- (-5 *1 (-307))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1085)) (-5 *4 (-1007 (-881 (-522)))) (-5 *2 (-305))
- (-5 *1 (-307))))
- ((*1 *1 *2 *2 *2)
- (-12 (-5 *2 (-708)) (-5 *1 (-616 *3)) (-4 *3 (-971)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
- (-5 *2 (-960)) (-5 *1 (-689)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-588 *7)) (-5 *3 (-522)) (-4 *7 (-878 *4 *5 *6))
- (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-5 *1 (-423 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3)))))
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1081 (-522))) (-5 *2 (-522)) (-5 *1 (-871)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157))))
+ (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4))
+ (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108))))
((*1 *2 *3)
- (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-588 (-588 (-588 *4)))) (-5 *3 (-588 *4)) (-4 *4 (-784))
- (-5 *1 (-1092 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-850)) (-5 *1 (-723)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-348 *2)) (-4 *2 (-1120)) (-4 *2 (-784))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-348 *3)) (-4 *3 (-1120))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-896 *2)) (-4 *2 (-784))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971))))
- ((*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 (-1074 *3 *4))) (-5 *1 (-1074 *3 *4))
- (-14 *3 (-850)) (-4 *4 (-971))))
- ((*1 *1 *1 *1)
- (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))))
-(((*1 *1) (-5 *1 (-143))))
-(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-855)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-708)) (-4 *1 (-208 *4))
- (-4 *4 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-208 *3)) (-4 *3 (-971))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-210)) (-5 *2 (-708))))
- ((*1 *1 *1) (-4 *1 (-210)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-242 *3)) (-4 *3 (-784))))
- ((*1 *1 *1) (-12 (-4 *1 (-242 *2)) (-4 *2 (-784))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124))
- (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-708)) (-4 *3 (-13 (-338) (-135))) (-5 *1 (-374 *3 *4))
- (-4 *4 (-1142 *3))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-13 (-338) (-135))) (-5 *1 (-374 *2 *3))
- (-4 *3 (-1142 *2))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-448 *3 *4 *5))
- (-4 *3 (-971)) (-14 *5 *3)))
- ((*1 *2 *1 *3)
- (-12 (-4 *2 (-338)) (-4 *2 (-829 *3)) (-5 *1 (-539 *2))
- (-5 *3 (-1085))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-539 *2)) (-4 *2 (-338))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-792))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 *4)) (-5 *3 (-588 (-708))) (-4 *1 (-829 *4))
- (-4 *4 (-1014))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-708)) (-4 *1 (-829 *2)) (-4 *2 (-1014))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *1 (-829 *3)) (-4 *3 (-1014))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-829 *2)) (-4 *2 (-1014))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1076 *3 *4 *5))
- (-4 *3 (-971)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1082 *3 *4 *5))
- (-4 *3 (-971)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1083 *3 *4 *5))
- (-4 *3 (-971)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1130 *3 *4 *5))
- (-4 *3 (-971)) (-14 *5 *3)))
- ((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1142 *3)) (-4 *3 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1151 *3 *4 *5))
- (-4 *3 (-971)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1158 *3 *4 *5))
- (-4 *3 (-971)) (-14 *5 *3))))
-(((*1 *2 *1)
(-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
(-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
-(((*1 *1 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-310 *3 *4 *5 *6)) (-4 *3 (-338)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5))
- (-5 *2 (-388 *4 (-382 *4) *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1166 *6)) (-4 *6 (-13 (-384 *4 *5) (-962 *4)))
- (-4 *4 (-919 *3)) (-4 *5 (-1142 *4)) (-4 *3 (-283))
- (-5 *1 (-388 *3 *4 *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-878 *3 *4 *5)) (-4 *3 (-338))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-474 *3 *4 *5 *6)))))
-(((*1 *1 *2 *2) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-339 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))))
-(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-898)))))
-(((*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
- ((*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))))
-(((*1 *2 *2 *1 *3 *4)
- (-12 (-5 *2 (-588 *8)) (-5 *3 (-1 *8 *8 *8))
- (-5 *4 (-1 (-108) *8 *8)) (-4 *1 (-1114 *5 *6 *7 *8)) (-4 *5 (-514))
- (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-872 (-202))) (-5 *2 (-1171)) (-5 *1 (-442)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-338)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
- (-5 *1 (-489 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-588 (-382 (-881 *6))))
+ (-5 *3 (-382 (-881 *6)))
+ (-4 *6 (-13 (-514) (-962 (-522)) (-135)))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-528 *6)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1032)) (-5 *2 (-1171)) (-5 *1 (-768)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 (-154 (-382 (-522)))))
+ (-5 *2
+ (-588
+ (-2 (|:| |outval| (-154 *4)) (|:| |outmult| (-522))
+ (|:| |outvect| (-588 (-628 (-154 *4)))))))
+ (-5 *1 (-702 *4)) (-4 *4 (-13 (-338) (-782))))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| -1361 (-354)) (|:| -3015 (-1068))
+ (|:| |explanations| (-588 (-1068)))))
+ (-5 *2 (-960)) (-5 *1 (-281))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-514)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4))
- (-4 *7 (-919 *4)) (-4 *2 (-626 *7 *8 *9))
- (-5 *1 (-490 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-626 *4 *5 *6))
- (-4 *8 (-348 *7)) (-4 *9 (-348 *7))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971))
- (-4 *3 (-348 *2)) (-4 *4 (-348 *2)) (-4 *2 (-338))))
+ (-12
+ (-5 *3
+ (-2 (|:| -1361 (-354)) (|:| -3015 (-1068))
+ (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))))
+ (-5 *2 (-960)) (-5 *1 (-281)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-499 *3 *2))
+ (-4 *2 (-1157 *3))))
((*1 *2 *2)
- (|partial| -12 (-4 *3 (-338)) (-4 *3 (-157)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2))
- (-4 *2 (-626 *3 *4 *5))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-628 *2)) (-4 *2 (-338)) (-4 *2 (-971))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-1035 *2 *3 *4 *5)) (-4 *3 (-971))
- (-4 *4 (-215 *2 *3)) (-4 *5 (-215 *2 *3)) (-4 *3 (-338))))
- ((*1 *2 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-1092 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1166 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+ (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-4 *4 (-1142 *3))
+ (-4 *5 (-662 *3 *4)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-1157 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-5 *1 (-504 *3 *2))
+ (-4 *2 (-1157 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-13 (-514) (-135)))
+ (-5 *1 (-1062 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-555 *2 *3)) (-4 *3 (-1120)) (-4 *2 (-1014))
+ (-4 *2 (-784)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124))
+ (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-893))) (-5 *1 (-267)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-108) *2)) (-4 *2 (-125)) (-5 *1 (-1000 *2))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-522) *2 *2)) (-4 *2 (-125)) (-5 *1 (-1000 *2)))))
-(((*1 *1 *1) (|partial| -4 *1 (-133))) ((*1 *1 *1) (-4 *1 (-324)))
- ((*1 *1 *1) (|partial| -12 (-4 *1 (-133)) (-4 *1 (-838)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1014)) (-4 *2 (-829 *5)) (-5 *1 (-630 *5 *2 *3 *4))
- (-4 *3 (-348 *2)) (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))))
-(((*1 *2 *3 *2)
- (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3))
- (-4 *3 (-1142 (-154 *2)))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3))
- (-4 *3 (-1142 (-154 *2))))))
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-283))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-421 *4 *5 *6 *2)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-202)) (-5 *2 (-108)) (-5 *1 (-275 *4 *5)) (-14 *4 *3)
- (-14 *5 *3)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1009 (-777 (-202)))) (-5 *3 (-202)) (-5 *2 (-108))
- (-5 *1 (-281))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
- (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-154 (-202)) (-154 (-202)))) (-5 *4 (-1009 (-202)))
- (-5 *2 (-1168)) (-5 *1 (-233)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-588 (-1085))) (-4 *5 (-514))
- (-5 *2 (-588 (-588 (-270 (-382 (-881 *5)))))) (-5 *1 (-707 *5))))
+ (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
+ (-4 *6 (-730)) (-5 *2 (-382 (-881 *4))) (-5 *1 (-853 *4 *5 *6 *3))
+ (-4 *3 (-878 *4 *6 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-514))
- (-5 *2 (-588 (-588 (-270 (-382 (-881 *4)))))) (-5 *1 (-707 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-628 *7))
- (-5 *5
- (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -3855 (-588 *6)))
- *7 *6))
- (-4 *6 (-338)) (-4 *7 (-598 *6))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1166 *6) "failed"))
- (|:| -3855 (-588 (-1166 *6)))))
- (-5 *1 (-750 *6 *7)) (-5 *4 (-1166 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-202))) (-5 *2 (-1166 (-637))) (-5 *1 (-281)))))
+ (-12 (-5 *3 (-628 *7)) (-4 *7 (-878 *4 *6 *5))
+ (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
+ (-4 *6 (-730)) (-5 *2 (-628 (-382 (-881 *4))))
+ (-5 *1 (-853 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *6 *5))
+ (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
+ (-4 *6 (-730)) (-5 *2 (-588 (-382 (-881 *4))))
+ (-5 *1 (-853 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-4 *6 (-985 *3 *4 *5)) (-5 *1 (-570 *3 *4 *5 *6 *7 *2))
+ (-4 *7 (-990 *3 *4 *5 *6)) (-4 *2 (-1023 *3 *4 *5 *6)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1085))
+ (-4 *5 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-2 (|:| -2585 *3) (|:| |coeff| *3))) (-5 *1 (-515 *5 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1068)) (-5 *2 (-192 (-472))) (-5 *1 (-772)))))
-(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-588 (-952 *5 *6 *7 *3))) (-5 *1 (-952 *5 *6 *7 *3))
- (-4 *3 (-985 *5 *6 *7))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-588 *6)) (-4 *1 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
- (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-990 *3 *4 *5 *2)) (-4 *3 (-426)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5))))
- ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-588 (-1056 *5 *6 *7 *3))) (-5 *1 (-1056 *5 *6 *7 *3))
- (-4 *3 (-985 *5 *6 *7)))))
-(((*1 *2 *1 *1)
+ (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1014)) (-4 *6 (-1014))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-623 *4 *5 *6)) (-4 *5 (-1014)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-834 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-951 (-777 (-522))))
+ (-5 *3 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *4)))) (-4 *4 (-971))
+ (-5 *1 (-547 *4)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1 (-108) *2)) (-4 *1 (-139 *2))
+ (-4 *2 (-1120)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-522)) (-4 *1 (-55 *2 *4 *5)) (-4 *4 (-348 *2))
+ (-4 *5 (-348 *2)) (-4 *2 (-1120))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-264 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1120))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *2 *6 *7))
+ (-4 *6 (-215 *5 *2)) (-4 *7 (-215 *4 *2)) (-4 *2 (-971)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-699))))
+(((*1 *2 *1)
(-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
(-4 *5 (-784)) (-5 *2 (-108)))))
-(((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-971)) (-5 *2 (-1166 *3)) (-5 *1 (-650 *3 *4))
- (-4 *4 (-1142 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-613 *3)) (-4 *3 (-784)) (-4 *1 (-349 *3 *4))
- (-4 *4 (-157)))))
-(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
- (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202)))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4055)))) (-5 *3 (-202))
- (-5 *2 (-960)) (-5 *1 (-686)))))
-(((*1 *1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1 *1) (-4 *1 (-119))))
-(((*1 *2)
- (-12 (-4 *1 (-324))
- (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338))
- (-5 *2
- (-2 (|:| |ir| (-539 (-382 *6))) (|:| |specpart| (-382 *6))
- (|:| |polypart| *6)))
- (-5 *1 (-532 *5 *6)) (-5 *3 (-382 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-291 (-202)))) (-5 *4 (-708))
- (-5 *2 (-628 (-202))) (-5 *1 (-243)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-202)) (-5 *5 (-522)) (-5 *2 (-1116 *3))
- (-5 *1 (-727 *3)) (-4 *3 (-901))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-108))
- (-5 *1 (-1116 *2)) (-4 *2 (-901)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2))
+ (-4 *2 (-405 *4))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-146)) (-5 *2 (-1085))))
+ ((*1 *1 *1) (-4 *1 (-146))))
+(((*1 *1 *1) (-12 (-4 *1 (-349 *2 *3)) (-4 *2 (-784)) (-4 *3 (-157))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-572 *2 *3 *4)) (-4 *2 (-784))
+ (-4 *3 (-13 (-157) (-655 (-382 (-522))))) (-14 *4 (-850))))
+ ((*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784))))
+ ((*1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *2 (-108))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
-(((*1 *2)
- (-12 (-4 *3 (-514)) (-5 *2 (-588 (-628 *3))) (-5 *1 (-42 *3 *4))
- (-4 *4 (-392 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-343)) (-5 *2 (-850))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-850))
- (-5 *1 (-492 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 *5)) (-4 *5 (-1142 *3)) (-4 *3 (-283))
- (-5 *2 (-108)) (-5 *1 (-429 *3 *5)))))
-(((*1 *1 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-855))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-855))))
- ((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-856))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-856)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-382 *2)) (-4 *2 (-1142 *5))
- (-5 *1 (-744 *5 *2 *3 *6))
- (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522)))))
- (-4 *3 (-598 *2)) (-4 *6 (-598 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 (-382 *2))) (-4 *2 (-1142 *5))
- (-5 *1 (-744 *5 *2 *3 *6))
- (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2))
- (-4 *6 (-598 (-382 *2))))))
-(((*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1066 (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1070 *4))
- (-4 *4 (-37 (-382 (-522)))) (-4 *4 (-971)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1128 *3 *2)) (-4 *3 (-971))
- (-4 *2 (-1157 *3)))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-708)) (-4 *5 (-338)) (-5 *2 (-158 *6))
- (-5 *1 (-796 *5 *4 *6)) (-4 *4 (-1157 *5)) (-4 *6 (-1142 *5)))))
+ (-12 (-5 *3 (-588 (-2 (|:| -2006 (-1081 *6)) (|:| -3858 (-522)))))
+ (-4 *6 (-283)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
+ (-5 *1 (-680 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1046 *2)) (-4 *2 (-971)))))
(((*1 *2 *1)
(-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729))
- (-5 *2 (-708))))
+ (-5 *2 (-588 *3))))
((*1 *2 *1)
(-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014))
- (-5 *2 (-708))))
+ (-5 *2 (-588 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-548 *3)) (-4 *3 (-971))))
((*1 *2 *1)
- (-12 (-5 *2 (-708)) (-5 *1 (-673 *3 *4)) (-4 *3 (-971))
- (-4 *4 (-664)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-377)) (-5 *2 (-708))))
- ((*1 *1 *1) (-4 *1 (-377))))
-(((*1 *2) (-12 (-5 *2 (-588 (-708))) (-5 *1 (-1169))))
- ((*1 *2 *2) (-12 (-5 *2 (-588 (-708))) (-5 *1 (-1169)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *4 *5)) (-4 *4 (-157))
- (-4 *5 (-1142 *4)) (-5 *2 (-628 *4))))
+ (-12 (-5 *2 (-588 *3)) (-5 *1 (-673 *3 *4)) (-4 *3 (-971))
+ (-4 *4 (-664))))
+ ((*1 *2 *1) (-12 (-4 *1 (-786 *3)) (-4 *3 (-971)) (-5 *2 (-588 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3))
- (-5 *2 (-628 *3)))))
-(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
- (-12 (-5 *4 (-522)) (-5 *5 (-1068)) (-5 *6 (-628 (-202)))
- (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))))
- (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))
- (-5 *9 (-3 (|:| |fn| (-363)) (|:| |fp| (-69 PEDERV))))
- (-5 *10 (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))
- (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))))
-(((*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1068)) (-5 *1 (-281)))))
+ (-12 (-4 *1 (-1157 *3)) (-4 *3 (-971)) (-5 *2 (-1066 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 *3)) (-4 *3 (-1023 *5 *6 *7 *8))
- (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-108))
- (-5 *1 (-544 *5 *6 *7 *8 *3)))))
+ (-12 (-5 *4 (-708)) (-5 *2 (-108)) (-5 *1 (-540 *3)) (-4 *3 (-507)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-338)) (-5 *2 (-588 *3)) (-5 *1 (-874 *4 *3))
- (-4 *3 (-1142 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-856)))))
+ (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
+ (-4 *3 (-13 (-338) (-1106) (-928))))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-1090))) (-5 *1 (-166)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-938)) (-5 *2 (-792)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *7)) (-4 *7 (-784))
- (-4 *8 (-878 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1166 (-382 *8)) "failed"))
- (|:| -3855 (-588 (-1166 (-382 *8))))))
- (-5 *1 (-611 *5 *6 *7 *8)))))
+ (-12 (-5 *3 (-588 (-239))) (-5 *4 (-1085)) (-5 *2 (-108))
+ (-5 *1 (-239)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-850)) (-5 *1 (-957 *2))
+ (-4 *2 (-13 (-1014) (-10 -8 (-15 * ($ $ $))))))))
+(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171))
+ (-5 *1 (-991 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171))
+ (-5 *1 (-1022 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1166 (-588 (-2 (|:| -3526 *4) (|:| -2882 (-1032))))))
+ (-4 *4 (-324)) (-5 *2 (-1171)) (-5 *1 (-492 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-951 (-777 (-522)))) (-5 *1 (-547 *3)) (-4 *3 (-971)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -1924 *6) (|:| |sol?| (-108))) (-522)
- *6))
- (-4 *6 (-338)) (-4 *7 (-1142 *6))
- (-5 *2 (-2 (|:| |answer| (-539 (-382 *7))) (|:| |a0| *6)))
- (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-561 (-47)))) (-5 *1 (-47))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-561 (-47))) (-5 *1 (-47))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1081 (-47))) (-5 *3 (-588 (-561 (-47)))) (-5 *1 (-47))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1081 (-47))) (-5 *3 (-561 (-47))) (-5 *1 (-47))))
- ((*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157))))
+ (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))))
+(((*1 *1) (-4 *1 (-324)))
((*1 *2 *3)
- (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3))
- (-4 *3 (-1142 (-154 *2)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-850)) (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343))))
- ((*1 *2 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-338))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-345 *2 *3)) (-4 *3 (-1142 *2)) (-4 *2 (-157))))
- ((*1 *2 *1)
- (-12 (-4 *4 (-1142 *2)) (-4 *2 (-919 *3)) (-5 *1 (-388 *3 *2 *4 *5))
- (-4 *3 (-283)) (-4 *5 (-13 (-384 *2 *4) (-962 *2)))))
- ((*1 *2 *1)
- (-12 (-4 *4 (-1142 *2)) (-4 *2 (-919 *3))
- (-5 *1 (-389 *3 *2 *4 *5 *6)) (-4 *3 (-283)) (-4 *5 (-384 *2 *4))
- (-14 *6 (-1166 *5))))
+ (-12 (-5 *3 (-588 *5)) (-4 *5 (-405 *4))
+ (-4 *4 (-13 (-514) (-784) (-135)))
+ (-5 *2
+ (-2 (|:| |primelt| *5) (|:| |poly| (-588 (-1081 *5)))
+ (|:| |prim| (-1081 *5))))
+ (-5 *1 (-407 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-514) (-784) (-135)))
+ (-5 *2
+ (-2 (|:| |primelt| *3) (|:| |pol1| (-1081 *3))
+ (|:| |pol2| (-1081 *3)) (|:| |prim| (-1081 *3))))
+ (-5 *1 (-407 *4 *3)) (-4 *3 (-27)) (-4 *3 (-405 *4))))
+ ((*1 *2 *3 *4 *3 *4)
+ (-12 (-5 *3 (-881 *5)) (-5 *4 (-1085)) (-4 *5 (-13 (-338) (-135)))
+ (-5 *2
+ (-2 (|:| |coef1| (-522)) (|:| |coef2| (-522))
+ (|:| |prim| (-1081 *5))))
+ (-5 *1 (-888 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-850)) (-4 *5 (-971))
- (-4 *2 (-13 (-379) (-962 *5) (-338) (-1106) (-260)))
- (-5 *1 (-417 *5 *3 *2)) (-4 *3 (-1142 *5))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-561 (-465)))) (-5 *1 (-465))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-561 (-465))) (-5 *1 (-465))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1081 (-465))) (-5 *3 (-588 (-561 (-465))))
- (-5 *1 (-465))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1081 (-465))) (-5 *3 (-561 (-465))) (-5 *1 (-465))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1166 *4)) (-5 *3 (-850)) (-4 *4 (-324))
- (-5 *1 (-492 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-426)) (-4 *5 (-662 *4 *2)) (-4 *2 (-1142 *4))
- (-5 *1 (-712 *4 *2 *5 *3)) (-4 *3 (-1142 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157))))
- ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157))))
- ((*1 *1 *1) (-4 *1 (-980))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068))
- (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))))
+ (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-588 (-1085)))
+ (-4 *5 (-13 (-338) (-135)))
+ (-5 *2
+ (-2 (|:| -3112 (-588 (-522))) (|:| |poly| (-588 (-1081 *5)))
+ (|:| |prim| (-1081 *5))))
+ (-5 *1 (-888 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-588 (-881 *6))) (-5 *4 (-588 (-1085))) (-5 *5 (-1085))
+ (-4 *6 (-13 (-338) (-135)))
+ (-5 *2
+ (-2 (|:| -3112 (-588 (-522))) (|:| |poly| (-588 (-1081 *6)))
+ (|:| |prim| (-1081 *6))))
+ (-5 *1 (-888 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947)))
- (-14 *5 (-588 (-1085))) (-5 *2 (-588 (-588 (-949 (-382 *4)))))
- (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7))
- (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
+ (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4))))
+ ((*1 *2 *3 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-960)) (-5 *1 (-774))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7))
- (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
+ (-12 (-5 *3 (-588 (-291 (-354)))) (-5 *4 (-588 (-354)))
+ (-5 *2 (-960)) (-5 *1 (-774)))))
+(((*1 *2 *3 *3 *2 *4)
+ (-12 (-5 *3 (-628 *2)) (-5 *4 (-522))
+ (-4 *2 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $)))))
+ (-4 *5 (-1142 *2)) (-5 *1 (-469 *2 *5 *6)) (-4 *6 (-384 *2 *5)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-103))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-498))) (-5 *1 (-498)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *2 (-784)) (-4 *5 (-985 *3 *4 *2)))))
+(((*1 *1 *1) (-5 *1 (-47)))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-57 *5)) (-4 *5 (-1120))
+ (-4 *2 (-1120)) (-5 *1 (-56 *5 *2))))
+ ((*1 *2 *3 *1 *2 *2)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1014)) (|has| *1 (-6 -4238))
+ (-4 *1 (-139 *2)) (-4 *2 (-1120))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *2))
+ (-4 *2 (-1120))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *2))
+ (-4 *2 (-1120))))
((*1 *2 *3)
- (-12 (-5 *3 (-588 (-881 *4)))
- (-4 *4 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2 (-588 (-588 (-949 (-382 *4))))) (-5 *1 (-1190 *4 *5 *6))
- (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))))
+ (-12 (-4 *4 (-971))
+ (-5 *2 (-2 (|:| -1976 (-1081 *4)) (|:| |deg| (-850))))
+ (-5 *1 (-198 *4 *5)) (-5 *3 (-1081 *4)) (-4 *5 (-13 (-514) (-784)))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-217 *5 *6)) (-14 *5 (-708))
+ (-4 *6 (-1120)) (-4 *2 (-1120)) (-5 *1 (-216 *5 *6 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-4 *4 (-157)) (-5 *1 (-265 *4 *2 *3 *5 *6 *7))
+ (-4 *2 (-1142 *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 (-291 *2)) (-4 *2 (-514)) (-4 *2 (-784))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-310 *2 *3 *4 *5)) (-4 *2 (-338)) (-4 *3 (-1142 *2))
+ (-4 *4 (-1142 (-382 *3))) (-4 *5 (-317 *2 *3 *4))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1120)) (-4 *2 (-1120))
+ (-5 *1 (-346 *5 *4 *2 *6)) (-4 *4 (-348 *5)) (-4 *6 (-348 *2))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1014)) (-4 *2 (-1014))
+ (-5 *1 (-398 *5 *4 *2 *6)) (-4 *4 (-400 *5)) (-4 *6 (-400 *2))))
+ ((*1 *1 *1) (-5 *1 (-465)))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-588 *5)) (-4 *5 (-1120))
+ (-4 *2 (-1120)) (-5 *1 (-586 *5 *2))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-971)) (-4 *2 (-971))
+ (-4 *6 (-348 *5)) (-4 *7 (-348 *5)) (-4 *8 (-348 *2))
+ (-4 *9 (-348 *2)) (-5 *1 (-624 *5 *6 *7 *4 *2 *8 *9 *10))
+ (-4 *4 (-626 *5 *6 *7)) (-4 *10 (-626 *2 *8 *9))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-649 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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 (-971)) (-5 *1 (-650 *3 *2)) (-4 *2 (-1142 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157)) (-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 (-382 *4)) (-4 *4 (-1142 *3)) (-4 *3 (-338))
+ (-4 *3 (-157)) (-4 *1 (-662 *3 *4))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-157)) (-4 *1 (-662 *3 *2)) (-4 *2 (-1142 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-886 *5)) (-4 *5 (-1120))
+ (-4 *2 (-1120)) (-5 *1 (-885 *5 *2))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-959 *3 *4 *5 *2 *6)) (-4 *2 (-878 *3 *4 *5))
+ (-14 *6 (-588 *2))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-971)) (-4 *2 (-971))
+ (-14 *5 (-708)) (-14 *6 (-708)) (-4 *8 (-215 *6 *7))
+ (-4 *9 (-215 *5 *7)) (-4 *10 (-215 *6 *2)) (-4 *11 (-215 *5 *2))
+ (-5 *1 (-976 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12))
+ (-4 *4 (-974 *5 *6 *7 *8 *9)) (-4 *12 (-974 *5 *6 *2 *10 *11))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1066 *5)) (-4 *5 (-1120))
+ (-4 *2 (-1120)) (-5 *1 (-1064 *5 *2))))
+ ((*1 *2 *2 *1 *3 *4)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-108) *2 *2))
+ (-4 *1 (-1114 *5 *6 *7 *2)) (-4 *5 (-514)) (-4 *6 (-730))
+ (-4 *7 (-784)) (-4 *2 (-985 *5 *6 *7))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1166 *5)) (-4 *5 (-1120))
+ (-4 *2 (-1120)) (-5 *1 (-1165 *5 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-708)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-588 (-1081 *7))) (-5 *3 (-1081 *7))
+ (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-838)) (-4 *5 (-730))
+ (-4 *6 (-784)) (-5 *1 (-835 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-588 (-1081 *5))) (-5 *3 (-1081 *5))
+ (-4 *5 (-1142 *4)) (-4 *4 (-838)) (-5 *1 (-836 *4 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+ (-12 (-5 *3 (-382 (-522))) (-5 *4 (-522)) (-5 *2 (-51))
+ (-5 *1 (-931)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 *1)) (-5 *4 (-1166 *1)) (-4 *1 (-584 *5))
- (-4 *5 (-971))
- (-5 *2 (-2 (|:| -1222 (-628 *5)) (|:| |vec| (-1166 *5))))))
+ (-12 (-5 *3 (-588 (-202))) (-5 *4 (-708)) (-5 *2 (-628 (-202)))
+ (-5 *1 (-281)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *6 (-850)) (-4 *5 (-283)) (-4 *3 (-1142 *5))
+ (-5 *2 (-2 (|:| |plist| (-588 *3)) (|:| |modulo| *5)))
+ (-5 *1 (-434 *5 *3)) (-5 *4 (-588 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-708)) (-5 *4 (-1166 *2)) (-4 *5 (-283))
+ (-4 *6 (-919 *5)) (-4 *2 (-13 (-384 *6 *7) (-962 *6)))
+ (-5 *1 (-388 *5 *6 *7 *2)) (-4 *7 (-1142 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4))))
+ (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-382 (-1081 (-291 *3)))) (-4 *3 (-13 (-514) (-784)))
+ (-5 *1 (-1042 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-311 *5 *6 *7 *8)) (-4 *5 (-405 *4)) (-4 *6 (-1142 *5))
+ (-4 *7 (-1142 (-382 *6))) (-4 *8 (-317 *5 *6 *7))
+ (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-108))
+ (-5 *1 (-840 *4 *5 *6 *7 *8))))
((*1 *2 *3)
- (-12 (-5 *3 (-628 *1)) (-4 *1 (-584 *4)) (-4 *4 (-971))
- (-5 *2 (-628 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-459)))))
+ (-12 (-5 *3 (-311 (-382 (-522)) *4 *5 *6))
+ (-4 *4 (-1142 (-382 (-522)))) (-4 *5 (-1142 (-382 *4)))
+ (-4 *6 (-317 (-382 (-522)) *4 *5)) (-5 *2 (-108))
+ (-5 *1 (-841 *4 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-561 *6)) (-4 *6 (-13 (-405 *5) (-27) (-1106)))
+ (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2 (-1081 (-382 (-1081 *6)))) (-5 *1 (-518 *5 *6 *7))
+ (-5 *3 (-1081 *6)) (-4 *7 (-1014))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1142 *3)) (-5 *1 (-650 *3 *2)) (-4 *3 (-971))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-662 *3 *2)) (-4 *3 (-157)) (-4 *2 (-1142 *3))))
+ ((*1 *2 *3 *4 *4 *5 *6 *7 *8)
+ (|partial| -12 (-5 *4 (-1081 *11)) (-5 *6 (-588 *10))
+ (-5 *7 (-588 (-708))) (-5 *8 (-588 *11)) (-4 *10 (-784))
+ (-4 *11 (-283)) (-4 *9 (-730)) (-4 *5 (-878 *11 *9 *10))
+ (-5 *2 (-588 (-1081 *5))) (-5 *1 (-680 *9 *10 *11 *5))
+ (-5 *3 (-1081 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-878 *3 *4 *5)) (-5 *1 (-959 *3 *4 *5 *2 *6))
+ (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-14 *6 (-588 *2)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-685)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-588 (-1085))) (-5 *3 (-1085)) (-5 *1 (-498))))
((*1 *2 *3 *2)
@@ -11964,266 +12268,353 @@
((*1 *2 *3 *2 *4)
(-12 (-5 *4 (-588 (-1085))) (-5 *2 (-1085)) (-5 *1 (-643 *3))
(-4 *3 (-563 (-498))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-757)) (-14 *5 (-1085))
- (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
- (-5 *2 (-2 (|:| -1650 (-588 *6)) (|:| -1544 (-588 *6)))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-872 *4)) (-4 *4 (-971)) (-5 *1 (-1074 *3 *4))
- (-14 *3 (-850)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-143))))
+ ((*1 *2 *1) (-12 (-5 *2 (-143)) (-5 *1 (-803))))
+ ((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085))
- (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522))))
- (-5 *2 (-2 (|:| -2286 *3) (|:| |nconst| *3))) (-5 *1 (-525 *5 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426))
- (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-904 *3 *4 *5 *6)))))
+ (-12 (-5 *3 (-1081 *1)) (-5 *4 (-1085)) (-4 *1 (-27))
+ (-5 *2 (-588 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1081 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-881 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-588 *1))
+ (-4 *1 (-29 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *2 (-588 *1)) (-4 *1 (-29 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-588 *7)) (|:| |badPols| (-588 *7))))
- (-5 *1 (-904 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
-(((*1 *2)
- (-12 (-5 *2 (-2 (|:| -2314 (-588 *3)) (|:| -1376 (-588 *3))))
- (-5 *1 (-1121 *3)) (-4 *3 (-1014)))))
-(((*1 *1) (-5 *1 (-129))) ((*1 *1 *1) (-5 *1 (-132)))
- ((*1 *1 *1) (-4 *1 (-1054))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1098 *4 *5))
- (-4 *4 (-1014)) (-4 *5 (-1014)))))
+ (-12 (-4 *1 (-849)) (-5 *2 (-2 (|:| -3112 (-588 *1)) (|:| -1368 *1)))
+ (-5 *3 (-588 *1)))))
+(((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-708)) (-5 *6 (-108)) (-4 *7 (-426)) (-4 *8 (-730))
+ (-4 *9 (-784)) (-4 *3 (-985 *7 *8 *9))
+ (-5 *2
+ (-2 (|:| |done| (-588 *4))
+ (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))))
+ (-5 *1 (-988 *7 *8 *9 *3 *4)) (-4 *4 (-990 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
+ (-4 *3 (-985 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-588 *4))
+ (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))))
+ (-5 *1 (-988 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-588 *4))
+ (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))))
+ (-5 *1 (-988 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-708)) (-5 *6 (-108)) (-4 *7 (-426)) (-4 *8 (-730))
+ (-4 *9 (-784)) (-4 *3 (-985 *7 *8 *9))
+ (-5 *2
+ (-2 (|:| |done| (-588 *4))
+ (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))))
+ (-5 *1 (-1055 *7 *8 *9 *3 *4)) (-4 *4 (-1023 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-708)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
+ (-4 *3 (-985 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-588 *4))
+ (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))))
+ (-5 *1 (-1055 *6 *7 *8 *3 *4)) (-4 *4 (-1023 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-588 *4))
+ (|:| |todo| (-588 (-2 (|:| |val| (-588 *3)) (|:| -1974 *4))))))
+ (-5 *1 (-1055 *5 *6 *7 *3 *4)) (-4 *4 (-1023 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-1 (-539 *3) *3 (-1085)))
+ (-5 *6
+ (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
+ (-1085)))
+ (-4 *3 (-260)) (-4 *3 (-574)) (-4 *3 (-962 *4)) (-4 *3 (-405 *7))
+ (-5 *4 (-1085)) (-4 *7 (-563 (-821 (-522)))) (-4 *7 (-426))
+ (-4 *7 (-815 (-522))) (-4 *7 (-784)) (-5 *2 (-539 *3))
+ (-5 *1 (-531 *7 *3)))))
(((*1 *2 *1)
- (-12 (-14 *3 (-588 (-1085))) (-4 *4 (-157))
- (-14 *6
- (-1 (-108) (-2 (|:| -2717 *5) (|:| -1400 *2))
- (-2 (|:| -2717 *5) (|:| -1400 *2))))
- (-4 *2 (-215 (-3480 *3) (-708))) (-5 *1 (-435 *3 *4 *5 *2 *6 *7))
- (-4 *5 (-784)) (-4 *7 (-878 *4 *2 (-794 *3))))))
+ (-12 (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120))
+ (-5 *2 (-588 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088))))
+ ((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1088)))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-108))
+ (-5 *2 (-960)) (-5 *1 (-683)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-507)) (-5 *1 (-145 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085))
+ (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-291 *5)))
+ (-5 *1 (-1041 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085)))
+ (-4 *5 (-13 (-283) (-784) (-135))) (-5 *2 (-588 (-588 (-291 *5))))
+ (-5 *1 (-1041 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3))
+ (-4 *3 (-895)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-708)) (-5 *1 (-720 *2)) (-4 *2 (-37 (-382 (-522))))
+ (-4 *2 (-157)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-588 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *6)))
+ (-4 *6 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-515 *6 *3)))))
+(((*1 *2)
+ (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-392 *3)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-514)) (-4 *3 (-971))
+ (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-786 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-94 *5)) (-4 *5 (-514)) (-4 *5 (-971))
+ (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-787 *5 *3))
+ (-4 *3 (-786 *5)))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-522)) (-4 *3 (-157)) (-4 *5 (-348 *3))
+ (-4 *6 (-348 *3)) (-5 *1 (-627 *3 *5 *6 *2))
+ (-4 *2 (-626 *3 *5 *6)))))
(((*1 *2 *1)
(-12 (-4 *2 (-1120)) (-5 *1 (-802 *3 *2)) (-4 *3 (-1120))))
((*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *2) (-12 (-5 *2 (-363)) (-5 *1 (-411))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-363)) (-5 *1 (-411)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| (-588 *3)) (|:| -1886 *4))))
- (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *1 *2 *2)
- (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-971)) (-5 *1 (-650 *3 *2)) (-4 *2 (-1142 *3)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
+ (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1974 *8)))
+ (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-990 *4 *5 *6 *7)) (-4 *4 (-426))
(-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
+ (-5 *1 (-915 *4 *5 *6 *7 *8))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
+ (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1974 *8)))
+ (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-990 *4 *5 *6 *7)) (-4 *4 (-426))
(-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-522))) (-5 *1 (-930 *3)) (-14 *3 (-522)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-850)) (-4 *1 (-1144 *3 *4)) (-4 *3 (-971))
- (-4 *4 (-729))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-382 (-522))) (-4 *1 (-1147 *3)) (-4 *3 (-971)))))
+ (-5 *1 (-1021 *4 *5 *6 *7 *8)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971))
- (-5 *2 (-588 (-588 (-872 *3))))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-588 (-588 (-872 *4)))) (-5 *3 (-108)) (-4 *4 (-971))
- (-4 *1 (-1046 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 (-588 (-872 *3)))) (-4 *3 (-971))
- (-4 *1 (-1046 *3))))
- ((*1 *1 *1 *2 *3 *3)
- (-12 (-5 *2 (-588 (-588 (-588 *4)))) (-5 *3 (-108))
- (-4 *1 (-1046 *4)) (-4 *4 (-971))))
- ((*1 *1 *1 *2 *3 *3)
- (-12 (-5 *2 (-588 (-588 (-872 *4)))) (-5 *3 (-108))
- (-4 *1 (-1046 *4)) (-4 *4 (-971))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-588 (-588 (-588 *5)))) (-5 *3 (-588 (-156)))
- (-5 *4 (-156)) (-4 *1 (-1046 *5)) (-4 *5 (-971))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-588 (-588 (-872 *5)))) (-5 *3 (-588 (-156)))
- (-5 *4 (-156)) (-4 *1 (-1046 *5)) (-4 *5 (-971)))))
+ (-12 (-4 *1 (-1185 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
+ (-5 *2 (-756 *3))))
+ ((*1 *2 *1) (-12 (-4 *2 (-780)) (-5 *1 (-1187 *3 *2)) (-4 *3 (-971)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-850)) (-5 *2 (-1171)) (-5 *1 (-192 *4))
+ (-4 *4
+ (-13 (-784)
+ (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 (*2 $))
+ (-15 -2113 (*2 $)))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1171)) (-5 *1 (-192 *3))
+ (-4 *3
+ (-13 (-784)
+ (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 (*2 $))
+ (-15 -2113 (*2 $)))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-472)))))
+(((*1 *1) (-5 *1 (-1168))))
(((*1 *1 *1)
- (-12 (-4 *1 (-301 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729))
- (-4 *2 (-426))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-317 *2 *3 *4)) (-4 *2 (-1124)) (-4 *3 (-1142 *2))
- (-4 *4 (-1142 (-382 *3)))))
- ((*1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-426))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *2 (-784)) (-4 *3 (-426))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-878 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-426))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-283)) (-4 *3 (-514)) (-5 *1 (-1073 *3 *2))
- (-4 *2 (-1142 *3)))))
-(((*1 *1 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
- (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
- (-5 *1 (-915 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
- (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
- (-5 *1 (-1021 *3 *4 *5 *6 *7)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-708)) (-5 *1 (-720 *2)) (-4 *2 (-37 (-382 (-522))))
- (-4 *2 (-157)))))
-(((*1 *2 *1) (-12 (-4 *1 (-400 *3)) (-4 *3 (-1014)) (-5 *2 (-708)))))
+ (-12 (-5 *1 (-1051 *2 *3)) (-4 *2 (-13 (-1014) (-33)))
+ (-4 *3 (-13 (-1014) (-33))))))
+(((*1 *2 *2) (-12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1081 *9)) (-5 *4 (-588 *7)) (-5 *5 (-588 *8))
- (-4 *7 (-784)) (-4 *8 (-971)) (-4 *9 (-878 *8 *6 *7)) (-4 *6 (-730))
- (-5 *2 (-1081 *8)) (-5 *1 (-296 *6 *7 *8 *9)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-1120)) (-5 *1 (-165 *3 *2))
- (-4 *2 (-615 *3)))))
+ (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-588 (-382 *7)))
+ (-4 *7 (-1142 *6)) (-5 *3 (-382 *7)) (-4 *6 (-338))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-532 *6 *7)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1085))
+ (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1350 "void"))) (-5 *1 (-1088)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-493 *3)) (-4 *3 (-13 (-664) (-25))))))
(((*1 *2 *3)
- (-12 (|has| *6 (-6 -4239)) (-4 *4 (-338)) (-4 *5 (-348 *4))
- (-4 *6 (-348 *4)) (-5 *2 (-588 *6)) (-5 *1 (-489 *4 *5 *6 *3))
- (-4 *3 (-626 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (|has| *9 (-6 -4239)) (-4 *4 (-514)) (-4 *5 (-348 *4))
- (-4 *6 (-348 *4)) (-4 *7 (-919 *4)) (-4 *8 (-348 *7))
- (-4 *9 (-348 *7)) (-5 *2 (-588 *6))
- (-5 *1 (-490 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-626 *4 *5 *6))
- (-4 *10 (-626 *7 *8 *9))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-4 *3 (-514)) (-5 *2 (-588 *5))))
+ (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522)))))
+ (-4 *5 (-1142 *4)) (-5 *2 (-588 (-2 (|:| -1980 *5) (|:| -1656 *5))))
+ (-5 *1 (-744 *4 *5 *3 *6)) (-4 *3 (-598 *5))
+ (-4 *6 (-598 (-382 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522)))))
+ (-4 *4 (-1142 *5)) (-5 *2 (-588 (-2 (|:| -1980 *4) (|:| -1656 *4))))
+ (-5 *1 (-744 *5 *4 *3 *6)) (-4 *3 (-598 *4))
+ (-4 *6 (-598 (-382 *4)))))
((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4))
- (-4 *6 (-348 *4)) (-5 *2 (-588 *6)) (-5 *1 (-627 *4 *5 *6 *3))
- (-4 *3 (-626 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-4 *5 (-514))
- (-5 *2 (-588 *7)))))
+ (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522)))))
+ (-4 *5 (-1142 *4)) (-5 *2 (-588 (-2 (|:| -1980 *5) (|:| -1656 *5))))
+ (-5 *1 (-744 *4 *5 *6 *3)) (-4 *6 (-598 *5))
+ (-4 *3 (-598 (-382 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522)))))
+ (-4 *4 (-1142 *5)) (-5 *2 (-588 (-2 (|:| -1980 *4) (|:| -1656 *4))))
+ (-5 *1 (-744 *5 *4 *6 *3)) (-4 *6 (-598 *4))
+ (-4 *3 (-598 (-382 *4))))))
(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-1014)) (-4 *2 (-829 *4)) (-5 *1 (-630 *4 *2 *5 *3))
- (-4 *5 (-348 *2)) (-4 *3 (-13 (-348 *4) (-10 -7 (-6 -4238)))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157)))))
-(((*1 *2)
- (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5)))
- (-5 *2 (-108)) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-855)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120))
+ (-5 *2 (-108)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 (-108) *7 (-588 *7))) (-4 *1 (-1114 *4 *5 *6 *7))
+ (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-4 *7 (-985 *4 *5 *6))
+ (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *2 (-588 *4)) (-5 *1 (-1040 *3 *4)) (-4 *3 (-1142 *4))))
+ ((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
+ (-5 *2 (-588 *3)) (-5 *1 (-1040 *4 *3)) (-4 *4 (-1142 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-792))))
+ ((*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-890)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1016 *3)) (-5 *1 (-834 *3)) (-4 *3 (-343))
- (-4 *3 (-1014)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3))
- (-4 *3 (-1142 (-154 *2))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-350 *4 *2))
- (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))))
-(((*1 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169))))
- ((*1 *2 *2) (-12 (-5 *2 (-803)) (-5 *1 (-1169)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-628 *2)) (-4 *2 (-157)) (-5 *1 (-134 *2))))
+ (-12 (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1350 "void")))
+ (-5 *1 (-412)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-5 *3 (-522)) (-5 *2 (-108)) (-5 *1 (-453)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-108)) (-5 *5 (-522)) (-4 *6 (-338)) (-4 *6 (-343))
+ (-4 *6 (-971)) (-5 *2 (-588 (-588 (-628 *6)))) (-5 *1 (-954 *6))
+ (-5 *3 (-588 (-628 *6)))))
((*1 *2 *3)
- (-12 (-4 *4 (-157)) (-4 *2 (-1142 *4)) (-5 *1 (-161 *4 *2 *3))
- (-4 *3 (-662 *4 *2))))
+ (-12 (-4 *4 (-338)) (-4 *4 (-343)) (-4 *4 (-971))
+ (-5 *2 (-588 (-588 (-628 *4)))) (-5 *1 (-954 *4))
+ (-5 *3 (-588 (-628 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 (-382 (-881 *5)))) (-5 *4 (-1085))
- (-5 *2 (-881 *5)) (-5 *1 (-268 *5)) (-4 *5 (-426))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-628 (-382 (-881 *4)))) (-5 *2 (-881 *4))
- (-5 *1 (-268 *4)) (-4 *4 (-426))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-345 *3 *2)) (-4 *3 (-157)) (-4 *2 (-1142 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-628 (-154 (-382 (-522)))))
- (-5 *2 (-881 (-154 (-382 (-522))))) (-5 *1 (-702 *4))
- (-4 *4 (-13 (-338) (-782)))))
+ (-12 (-5 *4 (-108)) (-4 *5 (-338)) (-4 *5 (-343)) (-4 *5 (-971))
+ (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5))
+ (-5 *3 (-588 (-628 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 (-154 (-382 (-522))))) (-5 *4 (-1085))
- (-5 *2 (-881 (-154 (-382 (-522))))) (-5 *1 (-702 *5))
- (-4 *5 (-13 (-338) (-782)))))
+ (-12 (-5 *4 (-850)) (-4 *5 (-338)) (-4 *5 (-343)) (-4 *5 (-971))
+ (-5 *2 (-588 (-588 (-628 *5)))) (-5 *1 (-954 *5))
+ (-5 *3 (-588 (-628 *5))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
+ (-4 *4 (-971)))))
+(((*1 *2)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1085)) (-5 *1 (-539 *2)) (-4 *2 (-962 *3))
+ (-4 *2 (-338))))
+ ((*1 *1 *2 *2) (-12 (-5 *1 (-539 *2)) (-4 *2 (-338))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-575 *4 *2))
+ (-4 *2 (-13 (-405 *4) (-928) (-1106)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1007 *2)) (-4 *2 (-13 (-405 *4) (-928) (-1106)))
+ (-4 *4 (-13 (-784) (-514))) (-5 *1 (-575 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-887)) (-5 *2 (-1085))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1007 *1)) (-4 *1 (-887)))))
+(((*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 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-616 (-202)))
+ (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-688)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-338)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
+ (-5 *1 (-489 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *2 (-881 (-382 (-522))))
- (-5 *1 (-716 *4)) (-4 *4 (-13 (-338) (-782)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *4 (-1085))
- (-5 *2 (-881 (-382 (-522)))) (-5 *1 (-716 *5))
- (-4 *5 (-13 (-338) (-782))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-792))))
- ((*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-890)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202)))
- (-5 *2 (-960)) (-5 *1 (-685)))))
+ (-12 (-4 *4 (-514)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4))
+ (-4 *7 (-919 *4)) (-4 *2 (-626 *7 *8 *9))
+ (-5 *1 (-490 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-626 *4 *5 *6))
+ (-4 *8 (-348 *7)) (-4 *9 (-348 *7))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2))
+ (-4 *4 (-348 *2)) (-4 *2 (-283))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-283)) (-4 *3 (-157)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2))
+ (-4 *2 (-626 *3 *4 *5))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-974 *2 *3 *4 *5 *6)) (-4 *4 (-971))
+ (-4 *5 (-215 *3 *4)) (-4 *6 (-215 *2 *4)) (-4 *4 (-283)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
+ (-5 *1 (-160 *3)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))))
(((*1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-420)) (-5 *3 (-522)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)))))
-(((*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1068)) (-5 *1 (-723)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1166 (-588 *3))) (-4 *4 (-283))
- (-5 *2 (-588 *3)) (-5 *1 (-429 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-324)) (-5 *2 (-108))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-108))
+ (-5 *1 (-332 *4)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))
- (-5 *2 (-354)) (-5 *1 (-243))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *2 (-354)) (-5 *1 (-281)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-708)) (-4 *4 (-13 (-514) (-135)))
- (-5 *1 (-1136 *4 *2)) (-4 *2 (-1142 *4)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-903 *4 *5 *6 *3)) (-4 *4 (-971)) (-4 *5 (-730))
- (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-4 *4 (-514))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
+ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
+ (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
+ (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
+ (|:| |abserr| (-202)) (|:| |relerr| (-202))))
+ (-5 *2 (-354)) (-5 *1 (-184)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-283)) (-5 *2 (-393 *3))
+ (-5 *1 (-680 *5 *4 *6 *3)) (-4 *3 (-878 *6 *5 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-588 *2)) (-5 *1 (-1095 *2)) (-4 *2 (-338)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-5 *2 (-588 *5))
- (-5 *1 (-819 *4 *5)) (-4 *5 (-1120)))))
-(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-1085)) (-5 *6 (-108))
- (-4 *7 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-4 *3 (-13 (-1106) (-887) (-29 *7)))
+ (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1166 (-3 (-442) "undefined"))) (-5 *1 (-1167)))))
+(((*1 *2 *1)
+ (-12
(-5 *2
- (-3 (|:| |f1| (-777 *3)) (|:| |f2| (-588 (-777 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-196 *7 *3)) (-5 *5 (-777 *3)))))
+ (-588
+ (-588
+ (-3 (|:| -3015 (-1085))
+ (|:| |bounds| (-588 (-3 (|:| S (-1085)) (|:| P (-881 (-522))))))))))
+ (-5 *1 (-1089)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 (-108) *6 *6)) (-4 *6 (-784)) (-5 *4 (-588 *6))
+ (-5 *2 (-2 (|:| |fs| (-108)) (|:| |sd| *4) (|:| |td| (-588 *4))))
+ (-5 *1 (-1092 *6)) (-5 *5 (-588 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3))
+ (-4 *3 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 *3)) (-4 *3 (-990 *5 *6 *7 *8)) (-4 *5 (-426))
+ (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-108))
+ (-5 *1 (-915 *5 *6 *7 *8 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108))
+ (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 *3)) (-4 *3 (-990 *5 *6 *7 *8)) (-4 *5 (-426))
+ (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-108))
+ (-5 *1 (-1021 *5 *6 *7 *8 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
- (-4 *6 (-730)) (-5 *2 (-588 *3)) (-5 *1 (-853 *4 *5 *6 *3))
- (-4 *3 (-878 *4 *6 *5)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
+ (-5 *2 (-1066 (-202))) (-5 *1 (-171))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-291 (-202))) (-5 *4 (-588 (-1085)))
+ (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-276))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1166 (-291 (-202)))) (-5 *4 (-588 (-1085)))
+ (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-276)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -2308 (-719 *3)) (|:| |coef1| (-719 *3))
+ (|:| |coef2| (-719 *3))))
+ (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-514)) (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *2 (-2 (|:| -2308 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
+ (-4 *1 (-985 *3 *4 *5)))))
(((*1 *2 *1)
(-12
(-5 *2
@@ -12232,7 +12623,7 @@
(-2 (|:| |var| (-1085))
(|:| |arrayIndex| (-588 (-881 (-522))))
(|:| |rand|
- (-2 (|:| |ints2Floats?| (-108)) (|:| -1575 (-792))))))
+ (-2 (|:| |ints2Floats?| (-108)) (|:| -1610 (-792))))))
(|:| |arrayAssignmentBranch|
(-2 (|:| |var| (-1085)) (|:| |rand| (-792))
(|:| |ints2Floats?| (-108))))
@@ -12240,125 +12631,107 @@
(-2 (|:| |switch| (-1084)) (|:| |thenClause| (-305))
(|:| |elseClause| (-305))))
(|:| |returnBranch|
- (-2 (|:| -3985 (-108))
- (|:| -3435
- (-2 (|:| |ints2Floats?| (-108)) (|:| -1575 (-792))))))
+ (-2 (|:| -3494 (-108))
+ (|:| -3526
+ (-2 (|:| |ints2Floats?| (-108)) (|:| -1610 (-792))))))
(|:| |blockBranch| (-588 (-305)))
(|:| |commentBranch| (-588 (-1068))) (|:| |callBranch| (-1068))
(|:| |forBranch|
- (-2 (|:| -2386 (-1007 (-881 (-522))))
+ (-2 (|:| -2321 (-1007 (-881 (-522))))
(|:| |span| (-881 (-522))) (|:| |body| (-305))))
(|:| |labelBranch| (-1032))
(|:| |loopBranch| (-2 (|:| |switch| (-1084)) (|:| |body| (-305))))
(|:| |commonBranch|
- (-2 (|:| -2888 (-1085)) (|:| |contents| (-588 (-1085)))))
+ (-2 (|:| -3015 (-1085)) (|:| |contents| (-588 (-1085)))))
(|:| |printBranch| (-588 (-792)))))
(-5 *1 (-305)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-4 *3 (-1014))
- (-5 *2 (-108)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-685)))))
+(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
+ (-12 (-5 *3 (-1068)) (-5 *5 (-628 (-202))) (-5 *6 (-202))
+ (-5 *7 (-628 (-522))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-690)))))
(((*1 *2 *1) (-12 (-5 *2 (-166)) (-5 *1 (-256)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1014)) (-5 *1 (-892 *2 *3)) (-4 *3 (-1014)))))
-(((*1 *1) (-5 *1 (-760))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-588 *10)) (-5 *5 (-108)) (-4 *10 (-990 *6 *7 *8 *9))
- (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8))
+(((*1 *1)
+ (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708))
+ (-4 *4 (-157)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 (-588 *2) *2 *2 *2)) (-4 *2 (-1014))
+ (-5 *1 (-98 *2))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1014)) (-5 *1 (-98 *2)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
(-5 *2
- (-588
- (-2 (|:| -3197 (-588 *9)) (|:| -1886 *10) (|:| |ineq| (-588 *9)))))
- (-5 *1 (-915 *6 *7 *8 *9 *10)) (-5 *3 (-588 *9))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-588 *10)) (-5 *5 (-108)) (-4 *10 (-990 *6 *7 *8 *9))
- (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784)) (-4 *9 (-985 *6 *7 *8))
+ (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522))
+ (|:| |success| (-108))))
+ (-5 *1 (-726)) (-5 *5 (-522)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-338)) (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3)))
+ (-5 *1 (-704 *3 *4)) (-4 *3 (-647 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-338)) (-4 *3 (-971))
+ (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-786 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-94 *5)) (-4 *5 (-338)) (-4 *5 (-971))
+ (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-787 *5 *3))
+ (-4 *3 (-786 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-202) (-202))) (-5 *1 (-293)) (-5 *3 (-202)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-338))
+ (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-5 *1 (-424 *4 *5 *6 *2))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-94 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-338))
(-5 *2
- (-588
- (-2 (|:| -3197 (-588 *9)) (|:| -1886 *10) (|:| |ineq| (-588 *9)))))
- (-5 *1 (-1021 *6 *7 *8 *9 *10)) (-5 *3 (-588 *9)))))
+ (-2 (|:| R (-628 *6)) (|:| A (-628 *6)) (|:| |Ainv| (-628 *6))))
+ (-5 *1 (-905 *6)) (-5 *3 (-628 *6)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-104))) (-5 *1 (-159)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1050 *4 *5)) (-4 *4 (-13 (-1014) (-33)))
+ (-4 *5 (-13 (-1014) (-33))) (-5 *2 (-108)) (-5 *1 (-1051 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
+(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
+ (|partial| -12 (-5 *5 (-1085))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-588 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -2585 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1106) (-27) (-405 *8)))
+ (-4 *8 (-13 (-426) (-784) (-135) (-962 *3) (-584 *3)))
+ (-5 *3 (-522)) (-5 *2 (-588 *4)) (-5 *1 (-940 *8 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-697)))))
-(((*1 *1 *1) (-4 *1 (-514))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *2 (-784)) (-4 *5 (-985 *3 *4 *2)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-143)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *1 *1) (-5 *1 (-202)))
- ((*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
- ((*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *1 *1) (-4 *1 (-1049))) ((*1 *1 *1 *1) (-4 *1 (-1049))))
-(((*1 *2)
- (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5)))
- (-5 *2 (-588 (-588 *4))) (-5 *1 (-316 *3 *4 *5 *6))
- (-4 *3 (-317 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-4 *3 (-343)) (-5 *2 (-588 (-588 *3))))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |pde| (-588 (-291 (-202))))
- (|:| |constraints|
- (-588
- (-2 (|:| |start| (-202)) (|:| |finish| (-202))
- (|:| |grid| (-708)) (|:| |boundaryType| (-522))
- (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202))))))
- (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068))
- (|:| |tol| (-202))))
- (-5 *2 (-108)) (-5 *1 (-189)))))
-(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *1 (-734 *2)) (-4 *2 (-157))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-925 *3)) (-4 *3 (-157)) (-5 *1 (-736 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-555 *2 *3)) (-4 *3 (-1120)) (-4 *2 (-1014))
- (-4 *2 (-784)))))
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4))))
+ (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-143)) (-5 *1 (-803)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| -3210 *1) (|:| -4225 *1) (|:| |associate| *1)))
- (-4 *1 (-514)))))
+ (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *2 (-708)))))
(((*1 *2 *1)
- (-12 (-4 *2 (-1142 *3)) (-5 *1 (-374 *3 *2))
- (-4 *3 (-13 (-338) (-135))))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-522)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-110)))))
-(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-60 *3)) (-14 *3 (-1085))))
- ((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-67 *3)) (-14 *3 (-1085))))
- ((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-70 *3)) (-14 *3 (-1085))))
- ((*1 *2 *1) (-12 (-4 *1 (-370)) (-5 *2 (-1171))))
- ((*1 *2 *3) (-12 (-5 *3 (-363)) (-5 *2 (-1171)) (-5 *1 (-372))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1068)) (-5 *4 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048))))
- ((*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-792))) (-5 *2 (-1171)) (-5 *1 (-1048)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1014))
- (-4 *6 (-1014)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-623 *4 *5 *6)))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-514)) (-4 *2 (-157)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-338)) (-4 *3 (-971))
- (-5 *1 (-1070 *3)))))
+ (-12 (-5 *2 (-588 (-2 (|:| -2644 (-1085)) (|:| -3149 *4))))
+ (-5 *1 (-818 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014))
+ (-4 *7 (-1014)) (-5 *2 (-588 *1)) (-4 *1 (-1017 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
+ (|partial| -12 (-5 *2 (-588 (-1081 *11))) (-5 *3 (-1081 *11))
+ (-5 *4 (-588 *10)) (-5 *5 (-588 *8)) (-5 *6 (-588 (-708)))
+ (-5 *7 (-1166 (-588 (-1081 *8)))) (-4 *10 (-784))
+ (-4 *8 (-283)) (-4 *11 (-878 *8 *9 *10)) (-4 *9 (-730))
+ (-5 *1 (-646 *9 *10 *8 *11)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1066 (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1070 *4))
- (-4 *4 (-971)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+ (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-775)) (-5 *4 (-983)) (-5 *2 (-960)) (-5 *1 (-774))))
((*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-960)) (-5 *1 (-774))))
@@ -12375,161 +12748,97 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-588 (-291 (-354)))) (-5 *4 (-588 (-354)))
(-5 *2 (-960)) (-5 *1 (-774)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085))
+ (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2
+ (-2 (|:| |func| *3) (|:| |kers| (-588 (-561 *3)))
+ (|:| |vals| (-588 *3))))
+ (-5 *1 (-253 *5 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1014)) (-4 *5 (-1014))
+ (-5 *2 (-1 *5)) (-5 *1 (-622 *4 *5)))))
(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1085))
- (-4 *4 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-515 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))))
-(((*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-202)) (-5 *1 (-1169))))
- ((*1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-1169)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-514) (-784)))
- (-4 *2 (-13 (-405 *4) (-928) (-1106))) (-5 *1 (-551 *4 *2 *3))
- (-4 *3 (-13 (-405 (-154 *4)) (-928) (-1106))))))
-(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-366)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-878 *3 *5 *4)) (-5 *1 (-914 *3 *4 *5 *2))
- (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)))))
-(((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 (-821 *6)))
- (-5 *5 (-1 (-818 *6 *8) *8 (-821 *6) (-818 *6 *8))) (-4 *6 (-1014))
- (-4 *8 (-13 (-971) (-563 (-821 *6)) (-962 *7))) (-5 *2 (-818 *6 *8))
- (-4 *7 (-13 (-971) (-784))) (-5 *1 (-870 *6 *7 *8)))))
+ (|partial| -12
+ (-5 *3 (-588 (-2 (|:| |func| *2) (|:| |pole| (-108)))))
+ (-4 *2 (-13 (-405 *4) (-928))) (-4 *4 (-13 (-784) (-514)))
+ (-5 *1 (-252 *4 *2)))))
+(((*1 *2 *3 *4 *4 *5 *6 *7)
+ (-12 (-5 *5 (-1085))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-588 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -2585 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1106) (-27) (-405 *8)))
+ (-4 *8 (-13 (-426) (-784) (-135) (-962 *3) (-584 *3)))
+ (-5 *3 (-522))
+ (-5 *2 (-2 (|:| |ans| *4) (|:| -2002 *4) (|:| |sol?| (-108))))
+ (-5 *1 (-939 *8 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
+ (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202)))
+ (-5 *5 (-1009 (-202))) (-5 *6 (-522)) (-5 *2 (-1116 (-855)))
+ (-5 *1 (-293))))
+ ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202)))
+ (-5 *5 (-1009 (-202))) (-5 *6 (-522)) (-5 *7 (-1068))
+ (-5 *2 (-1116 (-855))) (-5 *1 (-293))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202)))
+ (-5 *5 (-1009 (-202))) (-5 *6 (-202)) (-5 *7 (-522))
+ (-5 *2 (-1116 (-855))) (-5 *1 (-293))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
+ (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202)))
+ (-5 *5 (-1009 (-202))) (-5 *6 (-202)) (-5 *7 (-522)) (-5 *8 (-1068))
+ (-5 *2 (-1116 (-855))) (-5 *1 (-293)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
(-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 *4))))
- (-5 *1 (-818 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014))
- (-4 *7 (-1014)) (-5 *2 (-588 *1)) (-4 *1 (-1017 *3 *4 *5 *6 *7)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-1085))
- (-4 *4 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-568 *4 *2)) (-4 *2 (-13 (-1106) (-887) (-29 *4))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
- (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730))
- (-5 *2 (-108)) (-5 *1 (-474 *4 *5 *6 *7)) (-4 *7 (-878 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-338)) (-4 *3 (-971))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -1368 *1)))
+ (-4 *1 (-786 *3)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-588 (-588 *7)))
- (-5 *1 (-422 *4 *5 *6 *7)) (-5 *3 (-588 *7))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730))
- (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-588 (-588 *8)))
- (-5 *1 (-422 *5 *6 *7 *8)) (-5 *3 (-588 *8))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-588 (-588 *7)))
- (-5 *1 (-422 *4 *5 *6 *7)) (-5 *3 (-588 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730))
- (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-588 (-588 *8)))
- (-5 *1 (-422 *5 *6 *7 *8)) (-5 *3 (-588 *8)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-588 (-522))) (-5 *1 (-1024)) (-5 *3 (-522)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (-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 (-171)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-1166 *5))) (-5 *4 (-522)) (-5 *2 (-1166 *5))
- (-5 *1 (-954 *5)) (-4 *5 (-338)) (-4 *5 (-343)) (-4 *5 (-971)))))
-(((*1 *1 *1 *1) (-5 *1 (-792))))
+ (-12 (-4 *4 (-514)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2908 *4)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-962 (-382 *2)))) (-5 *2 (-522))
- (-5 *1 (-111 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-426)) (-4 *3 (-784)) (-4 *3 (-962 (-522)))
- (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-405 *3))
- (-4 *2
- (-13 (-338) (-278)
- (-10 -8 (-15 -2805 ((-1037 *3 (-561 $)) $))
- (-15 -2816 ((-1037 *3 (-561 $)) $))
- (-15 -2190 ($ (-1037 *3 (-561 $))))))))))
-(((*1 *2 *3) (-12 (-5 *3 (-363)) (-5 *2 (-1171)) (-5 *1 (-366))))
- ((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-366)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-708)) (-4 *2 (-514)) (-5 *1 (-897 *2 *4))
- (-4 *4 (-1142 *2)))))
+ (-12 (-5 *3 (-588 (-1068))) (-5 *2 (-1068)) (-5 *1 (-171))))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-426))
+ (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-904 *3 *4 *5 *6)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1166 *4)) (-4 *4 (-1120)) (-4 *1 (-215 *3 *4)))))
(((*1 *2 *3 *1)
- (-12 (-4 *4 (-338)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-474 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-588 (-588 *4)))) (-5 *2 (-588 (-588 *4)))
- (-5 *1 (-1092 *4)) (-4 *4 (-784)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-291 (-354))) (-5 *2 (-291 (-202))) (-5 *1 (-281)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *5 (-343))
- (-5 *2 (-708)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-595 (-382 *6))) (-5 *4 (-1 (-588 *5) *6))
- (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-4 *6 (-1142 *5)) (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-595 (-382 *7))) (-5 *4 (-1 (-588 *6) *7))
- (-5 *5 (-1 (-393 *7) *7))
- (-4 *6 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-4 *7 (-1142 *6)) (-5 *2 (-588 (-382 *7))) (-5 *1 (-749 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-596 *6 (-382 *6))) (-5 *4 (-1 (-588 *5) *6))
- (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-4 *6 (-1142 *5)) (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-596 *7 (-382 *7))) (-5 *4 (-1 (-588 *6) *7))
- (-5 *5 (-1 (-393 *7) *7))
- (-4 *6 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-4 *7 (-1142 *6)) (-5 *2 (-588 (-382 *7))) (-5 *1 (-749 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-595 (-382 *5))) (-4 *5 (-1142 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-5 *2 (-588 (-382 *5))) (-5 *1 (-749 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-595 (-382 *6))) (-5 *4 (-1 (-393 *6) *6))
- (-4 *6 (-1142 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-596 *5 (-382 *5))) (-4 *5 (-1142 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-5 *2 (-588 (-382 *5))) (-5 *1 (-749 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-596 *6 (-382 *6))) (-5 *4 (-1 (-393 *6) *6))
- (-4 *6 (-1142 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
- (-5 *2 (-588 (-382 *6))) (-5 *1 (-749 *5 *6)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-628 (-382 (-881 (-522)))))
- (-5 *2 (-628 (-291 (-522)))) (-5 *1 (-956)))))
-(((*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
+ (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-104)) (-5 *1 (-159))))
+ ((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-104)) (-5 *1 (-1001)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1049))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784))
+ (-5 *2 (-2 (|:| -3112 *1) (|:| |gap| (-708)) (|:| -4002 *1)))
+ (-4 *1 (-985 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *2 (-2 (|:| -3112 *1) (|:| |gap| (-708)) (|:| -4002 *1)))
+ (-4 *1 (-985 *3 *4 *5)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-507))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))))
(((*1 *2 *3 *2)
(-12 (-5 *2 (-588 (-354))) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-354))) (-5 *1 (-442))))
@@ -12538,86 +12847,8 @@
(-12 (-5 *3 (-850)) (-5 *4 (-803)) (-5 *2 (-1171)) (-5 *1 (-1167))))
((*1 *2 *1 *3 *4)
(-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-202)) (-5 *3 (-708)) (-5 *1 (-203))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-154 (-202))) (-5 *3 (-708)) (-5 *1 (-203))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1049))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4))))
- (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3 *1 *4)
- (-12 (-5 *3 (-1050 *5 *6)) (-5 *4 (-1 (-108) *6 *6))
- (-4 *5 (-13 (-1014) (-33))) (-4 *6 (-13 (-1014) (-33)))
- (-5 *2 (-108)) (-5 *1 (-1051 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1166 *4)) (-4 *4 (-1120)) (-4 *1 (-215 *3 *4)))))
-(((*1 *1) (-5 *1 (-143))))
-(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-969)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-693)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-971))
- (-5 *1 (-1070 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-522)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971))
- (-14 *4 (-1085)) (-14 *5 *3))))
-(((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960))
- (-5 *1 (-686)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-522))
- (-5 *1 (-423 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-426)) (-4 *3 (-784)) (-4 *3 (-962 (-522)))
- (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-405 *3))
- (-4 *2
- (-13 (-338) (-278)
- (-10 -8 (-15 -2805 ((-1037 *3 (-561 $)) $))
- (-15 -2816 ((-1037 *3 (-561 $)) $))
- (-15 -2190 ($ (-1037 *3 (-561 $))))))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 (-2 (|:| -2530 (-1085)) (|:| -3048 (-412)))))
- (-5 *1 (-1089)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *1)) (-4 *1 (-278))))
- ((*1 *1 *1) (-4 *1 (-278)))
- ((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792))))
- ((*1 *1 *1) (-5 *1 (-792))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-98 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-37 (-382 (-522)))) (-5 *1 (-1159 *3 *2))
- (-4 *2 (-1157 *3)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *2 (-784)) (-4 *3 (-157))))
- ((*1 *2 *3 *3)
- (-12 (-4 *2 (-514)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-514))))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-157)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -1222 (-628 (-382 (-881 *4))))
- (|:| |vec| (-588 (-382 (-881 *4)))) (|:| -3166 (-708))
- (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))
- (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
- (-4 *6 (-730))
- (-5 *2
- (-2 (|:| |partsol| (-1166 (-382 (-881 *4))))
- (|:| -3855 (-588 (-1166 (-382 (-881 *4)))))))
- (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
(((*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-291 *4))
@@ -12625,53 +12856,21 @@
((*1 *2 *2)
(-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
(-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-511)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1093 (-588 *4))) (-4 *4 (-784))
- (-5 *2 (-588 (-588 *4))) (-5 *1 (-1092 *4)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730))
- (-5 *1 (-474 *4 *5 *6 *2)) (-4 *2 (-878 *4 *5 *6))))
- ((*1 *1 *1 *2)
- (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-474 *3 *4 *5 *2)) (-4 *2 (-878 *3 *4 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-411)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157))
- (-5 *2 (-628 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-628 *4)) (-5 *1 (-391 *3 *4))
- (-4 *3 (-392 *4))))
- ((*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-971)) (-5 *1 (-1138 *3 *2)) (-4 *2 (-1142 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-519)) (-5 *3 (-522)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-522)) (|has| *1 (-6 -4229)) (-4 *1 (-379))
- (-5 *2 (-850)))))
-(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-1014)))))
-(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
- (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522))
- (-5 *2 (-960)) (-5 *1 (-694)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -2977 *3) (|:| |gap| (-708)) (|:| -1353 (-719 *3))
- (|:| -3421 (-719 *3))))
- (-5 *1 (-719 *3)) (-4 *3 (-971))))
- ((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784))
- (-5 *2
- (-2 (|:| -2977 *1) (|:| |gap| (-708)) (|:| -1353 *1)
- (|:| -3421 *1)))
- (-4 *1 (-985 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *2
- (-2 (|:| -2977 *1) (|:| |gap| (-708)) (|:| -1353 *1)
- (|:| -3421 *1)))
- (-4 *1 (-985 *3 *4 *5)))))
+ (-12 (-5 *3 (-1166 *4)) (-4 *4 (-971)) (-4 *2 (-1142 *4))
+ (-5 *1 (-418 *4 *2))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-382 (-1081 (-291 *5)))) (-5 *3 (-1166 (-291 *5)))
+ (-5 *4 (-522)) (-4 *5 (-13 (-514) (-784))) (-5 *1 (-1042 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1081 *5)) (-4 *5 (-338)) (-5 *2 (-588 *6))
+ (-5 *1 (-495 *5 *6 *4)) (-4 *6 (-338)) (-4 *4 (-13 (-338) (-782))))))
+(((*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-1068)))))
+(((*1 *2 *3) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-519)) (-5 *3 (-522)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-758)) (-5 *4 (-51)) (-5 *2 (-1171)) (-5 *1 (-768)))))
(((*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-291 *4))
@@ -12681,40 +12880,93 @@
((*1 *2 *2)
(-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
(-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1068)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
- ((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-239)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
- (-5 *1 (-160 *3)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *2 (-108))))
- ((*1 *2 *3 *1 *4)
- (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *1 (-1114 *5 *6 *7 *3))
- (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-108)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-595 (-382 *2))) (-4 *2 (-1142 *4)) (-5 *1 (-747 *4 *2))
- (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))))
+ (|partial| -12 (-5 *3 (-1085)) (-4 *4 (-971)) (-4 *4 (-784))
+ (-5 *2 (-2 (|:| |var| (-561 *1)) (|:| -3858 (-522))))
+ (-4 *1 (-405 *4))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-110)) (-4 *4 (-971)) (-4 *4 (-784))
+ (-5 *2 (-2 (|:| |var| (-561 *1)) (|:| -3858 (-522))))
+ (-4 *1 (-405 *4))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1026)) (-4 *3 (-784))
+ (-5 *2 (-2 (|:| |var| (-561 *1)) (|:| -3858 (-522))))
+ (-4 *1 (-405 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |val| (-821 *3)) (|:| -3858 (-708))))
+ (-5 *1 (-821 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-878 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *2 (-2 (|:| |var| *5) (|:| -3858 (-708))))))
((*1 *2 *3)
- (-12 (-5 *3 (-596 *2 (-382 *2))) (-4 *2 (-1142 *4))
- (-5 *1 (-747 *4 *2))
- (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-569 *4 *5))
- (-5 *3
- (-1 (-2 (|:| |ans| *4) (|:| -1924 *4) (|:| |sol?| (-108)))
- (-522) *4))
- (-4 *4 (-338)) (-4 *5 (-1142 *4)) (-5 *1 (-532 *4 *5)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-1068)) (-5 *2 (-711)) (-5 *1 (-110))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1018)) (-5 *1 (-893)))))
-(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637))))
- ((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637)))))
+ (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971))
+ (-4 *7 (-878 *6 *4 *5))
+ (-5 *2 (-2 (|:| |var| *5) (|:| -3858 (-522))))
+ (-5 *1 (-879 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-338)
+ (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $))
+ (-15 -2959 (*7 $))))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-784)) (-5 *2 (-1093 (-588 *4))) (-5 *1 (-1092 *4))
+ (-5 *3 (-588 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
+ ((*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *1 *1) (-4 *1 (-1049))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
+ (-4 *6 (-730)) (-4 *7 (-878 *4 *6 *5))
+ (-5 *2
+ (-2 (|:| |sysok| (-108)) (|:| |z0| (-588 *7)) (|:| |n0| (-588 *7))))
+ (-5 *1 (-853 *4 *5 *6 *7)) (-5 *3 (-588 *7)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-685)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1085)) (-5 *5 (-1009 (-202))) (-5 *2 (-856))
+ (-5 *1 (-854 *3)) (-4 *3 (-563 (-498)))))
+ ((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *4 (-1085)) (-5 *5 (-1009 (-202))) (-5 *2 (-856))
+ (-5 *1 (-854 *3)) (-4 *3 (-563 (-498)))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855))))
+ ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-855))))
+ ((*1 *1 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-855))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856))))
+ ((*1 *1 *2 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-856))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-856))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-588 (-1 (-202) (-202)))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-856))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-588 (-1 (-202) (-202)))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-856))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-856))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-856)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-693)))))
+(((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5))
+ (-4 *5 (-13 (-338) (-135) (-962 (-522))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-382 *6)) (|:| |c| (-382 *6))
+ (|:| -1704 *6)))
+ (-5 *1 (-941 *5 *6)) (-5 *3 (-382 *6)))))
(((*1 *1 *1)
(-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085)))
(-14 *3 (-588 (-1085))) (-4 *4 (-362))))
@@ -12724,35 +12976,51 @@
((*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-4 *1 (-938))))
((*1 *1 *1 *2) (-12 (-4 *1 (-938)) (-5 *2 (-708))))
((*1 *1 *1) (-4 *1 (-938))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-708)) (-4 *5 (-514))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-850)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
+ ((*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-239)))))
+(((*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-218)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-202))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-202))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-354))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-382 (-522))) (-5 *1 (-354)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *1) (-5 *1 (-760))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))))
-(((*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1120))))
- ((*1 *1 *1) (-12 (-5 *1 (-613 *2)) (-4 *2 (-784))))
- ((*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784))))
- ((*1 *1 *1) (-5 *1 (-792)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792))))
+ (-12 (-5 *4 (-588 (-794 *5))) (-14 *5 (-588 (-1085))) (-4 *6 (-426))
+ (-5 *2
+ (-2 (|:| |dpolys| (-588 (-224 *5 *6)))
+ (|:| |coords| (-588 (-522)))))
+ (-5 *1 (-445 *5 *6 *7)) (-5 *3 (-588 (-224 *5 *6))) (-4 *7 (-426)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4))
+ (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108))))
((*1 *2 *1)
- (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3))
- (-4 *3 (-1142 *2)))))
-(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354))))
- ((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-354)))))
-(((*1 *2 *2 *2 *2 *3)
- (-12 (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3)))))
-(((*1 *1) (-5 *1 (-129))))
-(((*1 *1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1 *1) (-4 *1 (-119))))
-(((*1 *1) (-5 *1 (-983))))
-(((*1 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507))))
- ((*1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-898)))))
-(((*1 *2 *2 *2 *3 *3)
- (-12 (-5 *3 (-708)) (-4 *4 (-971)) (-5 *1 (-1138 *4 *2))
- (-4 *2 (-1142 *4)))))
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
+(((*1 *1 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-1068)) (-5 *2 (-711)) (-5 *1 (-110))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1018)) (-5 *1 (-893)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-298 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-124))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-336 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-361 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1014)) (-5 *1 (-591 *3 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-588 (-47))) (-5 *2 (-393 *3)) (-5 *1 (-38 *3))
(-4 *3 (-1142 (-47)))))
@@ -12801,8 +13069,8 @@
(-12
(-4 *4
(-13 (-784)
- (-10 -8 (-15 -1431 ((-1085) $))
- (-15 -1611 ((-3 $ "failed") (-1085))))))
+ (-10 -8 (-15 -3873 ((-1085) $))
+ (-15 -1660 ((-3 $ "failed") (-1085))))))
(-4 *5 (-730)) (-4 *7 (-514)) (-5 *2 (-393 *3))
(-5 *1 (-430 *4 *5 *6 *7 *3)) (-4 *6 (-514))
(-4 *3 (-878 *7 *5 *4))))
@@ -12851,13 +13119,13 @@
(-12 (-4 *4 (-730))
(-4 *5
(-13 (-784)
- (-10 -8 (-15 -1431 ((-1085) $))
- (-15 -1611 ((-3 $ "failed") (-1085))))))
+ (-10 -8 (-15 -3873 ((-1085) $))
+ (-15 -1660 ((-3 $ "failed") (-1085))))))
(-4 *6 (-283)) (-5 *2 (-393 *3)) (-5 *1 (-668 *4 *5 *6 *3))
(-4 *3 (-878 (-881 *6) *4 *5))))
((*1 *2 *3)
(-12 (-4 *4 (-730))
- (-4 *5 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))) (-4 *6 (-514))
+ (-4 *5 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $))))) (-4 *6 (-514))
(-5 *2 (-393 *3)) (-5 *1 (-670 *4 *5 *6 *3))
(-4 *3 (-878 (-382 (-881 *6)) *4 *5))))
((*1 *2 *3)
@@ -12893,11 +13161,13 @@
((*1 *2 *1) (-12 (-5 *2 (-393 *1)) (-4 *1 (-1124))))
((*1 *2 *3)
(-12 (-5 *2 (-393 *3)) (-5 *1 (-1131 *3)) (-4 *3 (-1142 (-522))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-561 *5))) (-4 *4 (-784)) (-5 *2 (-561 *5))
- (-5 *1 (-531 *4 *5)) (-4 *5 (-405 *4)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *2 *2 *3 *3)
+ (|partial| -12 (-5 *3 (-1085))
+ (-4 *4 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-533 *4 *2))
+ (-4 *2 (-13 (-1106) (-887) (-1049) (-29 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-122 *3)))))
(((*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1120))))
((*1 *1 *1) (-12 (-5 *1 (-613 *2)) (-4 *2 (-784))))
((*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784))))
@@ -12906,116 +13176,93 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3))
(-4 *3 (-1142 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-393 *3)) (-5 *1 (-843 *3)) (-4 *3 (-283)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3))
- (-4 *3 (-895)))))
-(((*1 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-507)))))
-(((*1 *1 *1) (-4 *1 (-1054))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202))
- (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202))
- (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))
- (-5 *3 (-588 (-239))) (-5 *1 (-237))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202))
- (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202))
- (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))
- (-5 *1 (-239))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168))))
- ((*1 *2 *1 *3 *3 *4 *4 *4)
- (-12 (-5 *3 (-522)) (-5 *4 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168))))
- ((*1 *2 *1 *3)
- (-12
- (-5 *3
- (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202))
- (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202))
- (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))
- (-5 *2 (-1171)) (-5 *1 (-1168))))
- ((*1 *2 *1)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3091 (-202))
- (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202))
- (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))
- (-5 *1 (-1168))))
- ((*1 *2 *1 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-108))
- (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-4 *3 (-13 (-27) (-1106) (-405 *6) (-10 -8 (-15 -2190 ($ *7)))))
- (-4 *7 (-782))
- (-4 *8
- (-13 (-1144 *3 *7) (-338) (-1106)
- (-10 -8 (-15 -2157 ($ $)) (-15 -1858 ($ $)))))
- (-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))))
- (-5 *1 (-397 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1068)) (-4 *9 (-910 *8))
- (-14 *10 (-1085)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1886 *9))))
- (-5 *4 (-708)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-990 *5 *6 *7 *8))
- (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-1171))
- (-5 *1 (-988 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1886 *9))))
- (-5 *4 (-708)) (-4 *8 (-985 *5 *6 *7)) (-4 *9 (-1023 *5 *6 *7 *8))
- (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784)) (-5 *2 (-1171))
- (-5 *1 (-1055 *5 *6 *7 *8 *9)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-336 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-5 *2 (-708)) (-5 *1 (-361 *4)) (-4 *4 (-1014))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-4 *2 (-23)) (-5 *1 (-591 *4 *2 *5))
- (-4 *4 (-1014)) (-14 *5 *2)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-5 *2 (-708)) (-5 *1 (-756 *4)) (-4 *4 (-784)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))))
-(((*1 *2 *3 *4 *4 *2 *2 *2)
- (-12 (-5 *2 (-522))
- (-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-708)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-730)) (-4 *4 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *7 (-784))
- (-5 *1 (-423 *5 *6 *7 *4)))))
+(((*1 *2 *2 *3) (-12 (-5 *2 (-522)) (-5 *3 (-708)) (-5 *1 (-519)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-971)) (-4 *4 (-1142 *3)) (-5 *1 (-149 *3 *4 *2))
+ (-4 *2 (-1142 *4))))
+ ((*1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
+ (-5 *1 (-160 *3)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-514)) (-4 *2 (-971))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-514))))
+ ((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *3 (-985 *4 *5 *6))
+ (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *1))))
+ (-4 *1 (-990 *4 *5 *6 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-588 (-224 *4 *5))) (-5 *2 (-224 *4 *5))
+ (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *1 (-576 *4 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-971)) (-4 *7 (-971))
- (-4 *6 (-1142 *5)) (-5 *2 (-1081 (-1081 *7)))
- (-5 *1 (-471 *5 *6 *4 *7)) (-4 *4 (-1142 *6)))))
+ (-12 (-5 *4 (-1085))
+ (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-539 *3)) (-5 *1 (-401 *5 *3))
+ (-4 *3 (-13 (-1106) (-29 *5))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-1066 *3))) (-5 *1 (-1066 *3)) (-4 *3 (-1120)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-561 *4)) (-5 *1 (-560 *3 *4)) (-4 *3 (-784))
+ (-4 *4 (-784)))))
+(((*1 *1 *1) (-12 (-4 *1 (-115 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *1) (-12 (-5 *1 (-613 *2)) (-4 *2 (-784))))
+ ((*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784))))
+ ((*1 *1 *1) (-5 *1 (-792)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3))
+ (-4 *3 (-1142 *2)))))
(((*1 *1 *1)
(-12 (-4 *1 (-229 *2 *3 *4 *5)) (-4 *2 (-971)) (-4 *3 (-784))
(-4 *4 (-242 *3)) (-4 *5 (-730)))))
-(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1088))))
- ((*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088))))
- ((*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-1024)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
- (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522))
- (-5 *2 (-960)) (-5 *1 (-694)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-338) (-135) (-962 (-522))))
- (-4 *5 (-1142 *4))
- (-5 *2 (-2 (|:| -1856 (-382 *5)) (|:| |coeff| (-382 *5))))
- (-5 *1 (-526 *4 *5)) (-5 *3 (-382 *5)))))
-(((*1 *2 *3 *4 *4 *4 *3)
+(((*1 *2 *3)
+ (-12 (-5 *3 (-850)) (-5 *2 (-1166 (-1166 (-522)))) (-5 *1 (-440)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
+ (-5 *1 (-160 *3)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
(-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-689)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
- (-5 *4 (-628 (-1081 *8))) (-4 *5 (-971)) (-4 *8 (-971))
- (-4 *6 (-1142 *5)) (-5 *2 (-628 *6)) (-5 *1 (-471 *5 *6 *7 *8))
- (-4 *7 (-1142 *6)))))
+ (-5 *1 (-690)))))
+(((*1 *1 *1 *1) (-4 *1 (-507))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-402 *3 *2)) (-4 *3 (-13 (-157) (-37 (-382 (-522)))))
+ (-4 *2 (-13 (-784) (-21))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1066 *4)) (-5 *3 (-1 *4 (-522))) (-4 *4 (-971))
+ (-5 *1 (-1070 *4)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-881 *4)) (-4 *4 (-971)) (-4 *4 (-563 *2))
+ (-5 *2 (-354)) (-5 *1 (-722 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-881 *5)) (-5 *4 (-850)) (-4 *5 (-971))
+ (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-514))
+ (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-850)) (-4 *5 (-514))
+ (-4 *5 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-291 *4)) (-4 *4 (-514)) (-4 *4 (-784))
+ (-4 *4 (-563 *2)) (-5 *2 (-354)) (-5 *1 (-722 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-291 *5)) (-5 *4 (-850)) (-4 *5 (-514))
+ (-4 *5 (-784)) (-4 *5 (-563 *2)) (-5 *2 (-354))
+ (-5 *1 (-722 *5)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-588 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-51)))))
(((*1 *2 *2 *3 *2) (-12 (-5 *2 (-1068)) (-5 *3 (-522)) (-5 *1 (-218))))
((*1 *2 *2 *3 *4)
(-12 (-5 *2 (-588 (-1068))) (-5 *3 (-522)) (-5 *4 (-1068))
@@ -13023,77 +13270,106 @@
((*1 *1 *1) (-5 *1 (-792)))
((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792))))
((*1 *2 *1) (-12 (-4 *1 (-1144 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1068)) (-4 *4 (-13 (-283) (-135)))
- (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730))
+ (-12 (-4 *4 (-324)) (-4 *5 (-304 *4)) (-4 *6 (-1142 *5))
+ (-5 *2 (-588 *3)) (-5 *1 (-714 *4 *5 *6 *3 *7)) (-4 *3 (-1142 *6))
+ (-14 *7 (-850)))))
+(((*1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-1081 *4))
+ (-5 *1 (-492 *4)))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-561 *1))) (-4 *1 (-278)))))
+(((*1 *2 *1)
+ (-12
(-5 *2
(-588
- (-2 (|:| |eqzro| (-588 *7)) (|:| |neqzro| (-588 *7))
- (|:| |wcond| (-588 (-881 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1166 (-382 (-881 *4))))
- (|:| -3855 (-588 (-1166 (-382 (-881 *4))))))))))
- (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203)))))
-(((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-332 *3)) (-4 *3 (-324)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-522)) (-4 *1 (-55 *4 *5 *3)) (-4 *4 (-1120))
- (-4 *5 (-348 *4)) (-4 *3 (-348 *4)))))
-(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-621 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-561 *1))) (-4 *1 (-278)))))
+ (-2
+ (|:| -2644
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
+ (|:| -3149
+ (-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| (-1066 (-202)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2321
+ (-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 (-517))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120))
+ (-5 *2 (-588 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-55 *2 *3 *4)) (-4 *2 (-1120)) (-4 *3 (-348 *2))
+ (-4 *4 (-348 *2))))
+ ((*1 *1 *1 *2)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-555 *3 *2)) (-4 *3 (-1014))
+ (-4 *2 (-1120)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1157 *4)) (-5 *1 (-1159 *4 *2))
+ (-4 *4 (-37 (-382 (-522)))))))
+(((*1 *1 *1 *1) (-4 *1 (-507))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-256))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
+ (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-971))
+ (-4 *4 (-780)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-270 *2)) (-4 *2 (-664)) (-4 *2 (-1120)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-522))))
+ (-12 (-5 *2 (-1016 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014))))
((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))))
-(((*1 *1 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-215 *3 *2)) (-4 *2 (-1120)) (-4 *2 (-971))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-792))))
- ((*1 *1 *1) (-5 *1 (-792)))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-872 (-202))) (-5 *2 (-202)) (-5 *1 (-1117))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-971)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-850)) (-4 *1 (-682 *3)) (-4 *3 (-157)))))
+ (-12 (-5 *2 (-1016 *3)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-1001))) (-5 *1 (-267)))))
+(((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-143)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085))
+ (-14 *4 *2))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-283)) (-5 *1 (-163 *3)))))
(((*1 *2 *3 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-730)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *6 (-784))
- (-5 *2 (-108)) (-5 *1 (-423 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855))))
- ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *2 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *1 (-1040 *3 *2)) (-4 *3 (-1142 *2)))))
-(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-834 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-985 *4 *5 *6)) (-4 *4 (-514))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *2)))))
-(((*1 *2)
- (-12 (-4 *3 (-971)) (-5 *2 (-886 (-650 *3 *4))) (-5 *1 (-650 *3 *4))
- (-4 *4 (-1142 *3)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-588 (-522))) (-5 *1 (-1024)) (-5 *3 (-522)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-115 *2)) (-4 *2 (-1120)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-971)) (-5 *1 (-650 *3 *4))
- (-4 *4 (-1142 *3)))))
+ (-12 (-4 *4 (-426)) (-4 *4 (-514))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1920 *4)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-588 (-454 *5 *6))) (-5 *4 (-794 *5))
+ (-14 *5 (-588 (-1085))) (-5 *2 (-454 *5 *6)) (-5 *1 (-576 *5 *6))
+ (-4 *6 (-426))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-454 *5 *6))) (-5 *4 (-794 *5))
+ (-14 *5 (-588 (-1085))) (-5 *2 (-454 *5 *6)) (-5 *1 (-576 *5 *6))
+ (-4 *6 (-426)))))
(((*1 *2 *2 *3)
(-12 (-5 *2 (-821 *4)) (-5 *3 (-1 (-108) *5)) (-4 *4 (-1014))
(-4 *5 (-1120)) (-5 *1 (-819 *4 *5))))
@@ -13121,34 +13397,51 @@
(-4 *6 (-13 (-405 *5) (-815 *4) (-563 (-821 *4)))) (-4 *4 (-1014))
(-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4))))
(-5 *1 (-993 *4 *5 *6)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1166 *5)) (-4 *5 (-729)) (-5 *2 (-108))
- (-5 *1 (-779 *4 *5)) (-14 *4 (-708)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971))
+ (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-514) (-784)))
+ (-4 *2 (-13 (-405 (-154 *4)) (-928) (-1106)))
+ (-5 *1 (-551 *4 *3 *2)) (-4 *3 (-13 (-405 *4) (-928) (-1106))))))
+(((*1 *2 *1) (-12 (-5 *2 (-759)) (-5 *1 (-758)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
+ (-5 *1 (-915 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
+ (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
+ (-5 *1 (-1021 *3 *4 *5 *6 *7)))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-708)) (-5 *1 (-719 *3)) (-4 *3 (-971))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *1 (-891 *3 *2)) (-4 *2 (-124)) (-4 *3 (-514))
+ (-4 *3 (-971)) (-4 *2 (-729))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-708)) (-5 *1 (-1081 *3)) (-4 *3 (-971))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-898)) (-4 *2 (-124)) (-5 *1 (-1087 *3)) (-4 *3 (-514))
+ (-4 *3 (-971))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-708)) (-5 *1 (-1139 *4 *3)) (-14 *4 (-1085))
+ (-4 *3 (-971)))))
(((*1 *2)
- (|partial| -12 (-4 *3 (-514)) (-4 *3 (-157))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -3855 (-588 *1))))
- (-4 *1 (-342 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-427 *3 *4 *5 *6))
- (|:| -3855 (-588 (-427 *3 *4 *5 *6)))))
- (-5 *1 (-427 *3 *4 *5 *6)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
+ (-12 (-5 *2 (-708)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-708)) (-5 *1 (-116 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *1) (-5 *1 (-983))))
(((*1 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085))
- (-14 *4 *2))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-522))) (-5 *4 (-834 (-522)))
- (-5 *2 (-628 (-522))) (-5 *1 (-543))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-588 (-628 (-522))))
- (-5 *1 (-543))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-522))) (-5 *4 (-588 (-834 (-522))))
- (-5 *2 (-588 (-628 (-522)))) (-5 *1 (-543)))))
+ (-12 (-4 *3 (-283)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
+ (-5 *1 (-1036 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
+(((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-850)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
+ ((*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-239)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-156))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1116 *3)) (-4 *3 (-901)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-658)) (-5 *2 (-850))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-708)))))
(((*1 *1 *1 *2)
(-12 (-5 *2 (-850)) (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343))))
((*1 *2 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-338))))
@@ -13160,404 +13453,248 @@
((*1 *2 *1)
(-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2))
(-4 *5 (-215 *3 *2)) (-4 *2 (-971)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-730))
- (-4 *3 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))) (-4 *5 (-514))
- (-5 *1 (-670 *4 *3 *5 *2)) (-4 *2 (-878 (-382 (-881 *5)) *4 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *4 (-971)) (-4 *5 (-730))
- (-4 *3
- (-13 (-784)
- (-10 -8 (-15 -1431 ((-1085) $))
- (-15 -1611 ((-3 $ "failed") (-1085))))))
- (-5 *1 (-911 *4 *5 *3 *2)) (-4 *2 (-878 (-881 *4) *5 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 *6))
- (-4 *6
- (-13 (-784)
- (-10 -8 (-15 -1431 ((-1085) $))
- (-15 -1611 ((-3 $ "failed") (-1085))))))
- (-4 *4 (-971)) (-4 *5 (-730)) (-5 *1 (-911 *4 *5 *6 *2))
- (-4 *2 (-878 (-881 *4) *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *1 *1) (-12 (-5 *1 (-158 *2)) (-4 *2 (-283))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522))))
+ ((*1 *1 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *1) (-4 *1 (-798 *2)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-900 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-729))
+ (-4 *4 (-784)))))
+(((*1 *1 *1) (-4 *1 (-980))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-938)) (-5 *2 (-792)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-522))) (-5 *1 (-969)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-291 (-202))) (-5 *2 (-382 (-522))) (-5 *1 (-281)))))
(((*1 *1 *1) (-12 (-4 *1 (-348 *2)) (-4 *2 (-1120))))
((*1 *2 *2)
(-12 (-4 *3 (-971)) (-5 *1 (-418 *3 *2)) (-4 *2 (-1142 *3))))
((*1 *1 *1)
(-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
(-14 *4 *3))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *7) (|:| -2002 *7) (|:| |sol?| (-108)))
+ (-522) *7))
+ (-5 *6 (-588 (-382 *8))) (-4 *7 (-338)) (-4 *8 (-1142 *7))
+ (-5 *3 (-382 *8))
+ (-5 *2
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-532 *7 *8)))))
+(((*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-202)) (-5 *1 (-281)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
+ (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
+ (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
+ (|:| |abserr| (-202)) (|:| |relerr| (-202))))
+ (-5 *2 (-354)) (-5 *1 (-184)))))
+(((*1 *2)
+ (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-708)) (-4 *1 (-598 *3)) (-4 *3 (-971)) (-4 *3 (-338))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-708)) (-5 *4 (-1 *5 *5)) (-4 *5 (-338))
- (-5 *1 (-601 *5 *2)) (-4 *2 (-598 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-4 *1 (-55 *4 *2 *5)) (-4 *4 (-1120))
- (-4 *5 (-348 *4)) (-4 *2 (-348 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-522)) (-4 *1 (-974 *4 *5 *6 *2 *7)) (-4 *6 (-971))
- (-4 *7 (-215 *4 *6)) (-4 *2 (-215 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1166 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-338))
- (-4 *1 (-662 *5 *6)) (-4 *5 (-157)) (-4 *6 (-1142 *5))
- (-5 *2 (-628 *5)))))
+ (-12 (-5 *2 (-522)) (-5 *1 (-291 *3)) (-4 *3 (-514)) (-4 *3 (-784)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-985 *3 *4 *2)) (-4 *2 (-784))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *2 (-784)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-561 *4)) (-4 *4 (-784)) (-4 *2 (-784))
+ (-5 *1 (-560 *2 *4)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-588 (-628 *6))) (-5 *4 (-108)) (-5 *5 (-522))
+ (-5 *2 (-628 *6)) (-5 *1 (-954 *6)) (-4 *6 (-338)) (-4 *6 (-971))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 (-628 *4))) (-5 *2 (-628 *4)) (-5 *1 (-954 *4))
+ (-4 *4 (-338)) (-4 *4 (-971))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-588 (-628 *5))) (-5 *4 (-522)) (-5 *2 (-628 *5))
+ (-5 *1 (-954 *5)) (-4 *5 (-338)) (-4 *5 (-971)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1007 (-777 *3))) (-4 *3 (-13 (-1106) (-887) (-29 *5)))
- (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2
- (-3 (|:| |f1| (-777 *3)) (|:| |f2| (-588 (-777 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-196 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1007 (-777 *3))) (-5 *5 (-1068))
- (-4 *3 (-13 (-1106) (-887) (-29 *6)))
- (-4 *6 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2
- (-3 (|:| |f1| (-777 *3)) (|:| |f2| (-588 (-777 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-196 *6 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1007 (-777 (-291 *5))))
- (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2
- (-3 (|:| |f1| (-777 (-291 *5))) (|:| |f2| (-588 (-777 (-291 *5))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-197 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-382 (-881 *6))) (-5 *4 (-1007 (-777 (-291 *6))))
- (-5 *5 (-1068))
- (-4 *6 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2
- (-3 (|:| |f1| (-777 (-291 *6))) (|:| |f2| (-588 (-777 (-291 *6))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-197 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1007 (-777 (-382 (-881 *5))))) (-5 *3 (-382 (-881 *5)))
- (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2
- (-3 (|:| |f1| (-777 (-291 *5))) (|:| |f2| (-588 (-777 (-291 *5))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-197 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1007 (-777 (-382 (-881 *6))))) (-5 *5 (-1068))
- (-5 *3 (-382 (-881 *6)))
- (-4 *6 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2
- (-3 (|:| |f1| (-777 (-291 *6))) (|:| |f2| (-588 (-777 (-291 *6))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-197 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085))
- (-4 *5 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-3 *3 (-588 *3))) (-5 *1 (-403 *5 *3))
- (-4 *3 (-13 (-1106) (-887) (-29 *5)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-448 *3 *4 *5))
- (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3)))
- ((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354))))
- (-5 *5 (-354)) (-5 *6 (-983)) (-5 *2 (-960)) (-5 *1 (-523))))
- ((*1 *2 *3) (-12 (-5 *3 (-706)) (-5 *2 (-960)) (-5 *1 (-523))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354))))
- (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354))))
- (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-291 (-354))) (-5 *4 (-1009 (-777 (-354))))
- (-5 *2 (-960)) (-5 *1 (-523))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354)))))
- (-5 *2 (-960)) (-5 *1 (-523))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354)))))
- (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354)))))
- (-5 *5 (-354)) (-5 *2 (-960)) (-5 *1 (-523))))
- ((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-291 (-354))) (-5 *4 (-588 (-1009 (-777 (-354)))))
- (-5 *5 (-354)) (-5 *6 (-983)) (-5 *2 (-960)) (-5 *1 (-523))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-291 (-354))) (-5 *4 (-1007 (-777 (-354))))
- (-5 *5 (-1068)) (-5 *2 (-960)) (-5 *1 (-523))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-291 (-354))) (-5 *4 (-1007 (-777 (-354))))
- (-5 *5 (-1085)) (-5 *2 (-960)) (-5 *1 (-523))))
+ (-12 (-5 *4 (-708)) (-4 *5 (-971)) (-5 *2 (-522))
+ (-5 *1 (-417 *5 *3 *6)) (-4 *3 (-1142 *5))
+ (-4 *6 (-13 (-379) (-962 *5) (-338) (-1106) (-260)))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-135) (-962 (-522)))) (-4 *5 (-1142 *4))
- (-5 *2 (-539 (-382 *5))) (-5 *1 (-526 *4 *5)) (-5 *3 (-382 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-135))
- (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-584 (-522))))
- (-5 *2 (-3 (-291 *5) (-588 (-291 *5)))) (-5 *1 (-542 *5))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-678 *3 *2)) (-4 *3 (-971)) (-4 *2 (-784))
- (-4 *3 (-37 (-382 (-522))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1085)) (-5 *1 (-881 *3)) (-4 *3 (-37 (-382 (-522))))
- (-4 *3 (-971))))
- ((*1 *1 *1 *2 *3)
- (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-4 *2 (-784))
- (-5 *1 (-1038 *3 *2 *4)) (-4 *4 (-878 *3 (-494 *2) *2))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971))
- (-5 *1 (-1070 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1076 *3 *4 *5))
- (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1082 *3 *4 *5))
- (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1083 *3 *4 *5))
- (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3)))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1085)) (-5 *1 (-1115 *3)) (-4 *3 (-37 (-382 (-522))))
- (-4 *3 (-971))))
- ((*1 *1 *1 *2)
- (-3708
- (-12 (-5 *2 (-1085)) (-4 *1 (-1126 *3)) (-4 *3 (-971))
- (-12 (-4 *3 (-29 (-522))) (-4 *3 (-887)) (-4 *3 (-1106))
- (-4 *3 (-37 (-382 (-522))))))
- (-12 (-5 *2 (-1085)) (-4 *1 (-1126 *3)) (-4 *3 (-971))
- (-12 (|has| *3 (-15 -4090 ((-588 *2) *3)))
- (|has| *3 (-15 -1858 (*3 *3 *2))) (-4 *3 (-37 (-382 (-522))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1126 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1130 *3 *4 *5))
- (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522))))))
- ((*1 *1 *1 *2)
- (-3708
- (-12 (-5 *2 (-1085)) (-4 *1 (-1147 *3)) (-4 *3 (-971))
- (-12 (-4 *3 (-29 (-522))) (-4 *3 (-887)) (-4 *3 (-1106))
- (-4 *3 (-37 (-382 (-522))))))
- (-12 (-5 *2 (-1085)) (-4 *1 (-1147 *3)) (-4 *3 (-971))
- (-12 (|has| *3 (-15 -4090 ((-588 *2) *3)))
- (|has| *3 (-15 -1858 (*3 *3 *2))) (-4 *3 (-37 (-382 (-522))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1147 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1151 *3 *4 *5))
- (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-3708
- (-12 (-5 *2 (-1085)) (-4 *1 (-1157 *3)) (-4 *3 (-971))
- (-12 (-4 *3 (-29 (-522))) (-4 *3 (-887)) (-4 *3 (-1106))
- (-4 *3 (-37 (-382 (-522))))))
- (-12 (-5 *2 (-1085)) (-4 *1 (-1157 *3)) (-4 *3 (-971))
- (-12 (|has| *3 (-15 -4090 ((-588 *2) *3)))
- (|has| *3 (-15 -1858 (*3 *3 *2))) (-4 *3 (-37 (-382 (-522))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1157 *2)) (-4 *2 (-971)) (-4 *2 (-37 (-382 (-522))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1162 *4)) (-14 *4 (-1085)) (-5 *1 (-1158 *3 *4 *5))
- (-4 *3 (-37 (-382 (-522)))) (-4 *3 (-971)) (-14 *5 *3))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4))))
- (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *1 (-539 *2)) (-4 *2 (-338)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-588 *4)) (-4 *4 (-1014)) (-4 *4 (-1120)) (-5 *2 (-108))
- (-5 *1 (-1066 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-1044 *4 *2))
- (-4 *2 (-13 (-555 (-522) *4) (-10 -7 (-6 -4238) (-6 -4239))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-784)) (-4 *3 (-1120)) (-5 *1 (-1044 *3 *2))
- (-4 *2 (-13 (-555 (-522) *3) (-10 -7 (-6 -4238) (-6 -4239)))))))
+ (-12 (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *4 *3 *5))
+ (-4 *3 (-1142 *4))
+ (-4 *5 (-13 (-379) (-962 *4) (-338) (-1106) (-260))))))
+(((*1 *2)
+ (-12 (-5 *2 (-628 (-839 *3))) (-5 *1 (-326 *3 *4)) (-14 *3 (-850))
+ (-14 *4 (-850))))
+ ((*1 *2)
+ (-12 (-5 *2 (-628 *3)) (-5 *1 (-327 *3 *4)) (-4 *3 (-324))
+ (-14 *4
+ (-3 (-1081 *3)
+ (-1166 (-588 (-2 (|:| -3526 *3) (|:| -2882 (-1032)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-628 *3)) (-5 *1 (-328 *3 *4)) (-4 *3 (-324))
+ (-14 *4 (-850)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-1142 (-522))) (-5 *1 (-458 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-108)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2))
- (-4 *4 (-13 (-784) (-514))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-878 *4 *6 *5)) (-4 *4 (-426))
- (-4 *5 (-784)) (-4 *6 (-730)) (-5 *1 (-914 *4 *5 *6 *3)))))
-(((*1 *2 *3)
- (-12 (-14 *4 (-588 (-1085))) (-4 *5 (-426))
+ (-12
(-5 *2
- (-2 (|:| |glbase| (-588 (-224 *4 *5))) (|:| |glval| (-588 (-522)))))
- (-5 *1 (-576 *4 *5)) (-5 *3 (-588 (-224 *4 *5))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-130 *2 *4 *3))
- (-4 *3 (-348 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-473 *2 *4 *5 *3))
- (-4 *5 (-348 *2)) (-4 *3 (-348 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-628 *4)) (-4 *4 (-919 *2)) (-4 *2 (-514))
- (-5 *1 (-631 *2 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-919 *2)) (-4 *2 (-514)) (-5 *1 (-1135 *2 *4 *3))
- (-4 *3 (-1142 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-588 (-522))) (-5 *2 (-708)) (-5 *1 (-543)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-194 *4 *2))
- (-4 *2 (-1142 *4))))
- ((*1 *2 *2 *3 *2 *3)
- (-12 (-5 *3 (-522)) (-5 *1 (-634 *2)) (-4 *2 (-1142 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-803)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-426)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792))))
- ((*1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *3 *4 *5 *5 *2)
- (|partial| -12 (-5 *2 (-108)) (-5 *3 (-881 *6)) (-5 *4 (-1085))
- (-5 *5 (-777 *7))
- (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-4 *7 (-13 (-1106) (-29 *6))) (-5 *1 (-201 *6 *7))))
- ((*1 *2 *3 *4 *4 *2)
- (|partial| -12 (-5 *2 (-108)) (-5 *3 (-1081 *6)) (-5 *4 (-777 *6))
- (-4 *6 (-13 (-1106) (-29 *5)))
- (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-201 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-338) (-782))) (-5 *1 (-164 *3 *2))
- (-4 *2 (-1142 (-154 *3))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-850)) (-5 *1 (-723)))))
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
+ (|:| |xpnt| (-522))))
+ (-4 *4 (-13 (-1142 *3) (-514) (-10 -8 (-15 -2308 ($ $ $)))))
+ (-4 *3 (-514)) (-5 *1 (-1145 *3 *4)))))
(((*1 *1 *2)
(-12 (-5 *2 (-588 (-993 *3 *4 *5))) (-4 *3 (-1014))
(-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3))))
(-4 *5 (-13 (-405 *4) (-815 *3) (-563 (-821 *3))))
(-5 *1 (-994 *3 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *2 (-522))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-522)))))
+(((*1 *1) (-5 *1 (-1001))))
+(((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-1166
+ (-2 (|:| |scaleX| (-202)) (|:| |scaleY| (-202))
+ (|:| |deltaX| (-202)) (|:| |deltaY| (-202)) (|:| -3748 (-522))
+ (|:| -2294 (-522)) (|:| |spline| (-522)) (|:| -1605 (-522))
+ (|:| |axesColor| (-803)) (|:| -2035 (-522))
+ (|:| |unitsColor| (-803)) (|:| |showing| (-522)))))
+ (-5 *1 (-1167)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-881 (-202))) (-5 *2 (-291 (-354))) (-5 *1 (-281)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+ (|partial| -12 (-4 *4 (-13 (-514) (-784) (-962 (-522))))
+ (-4 *5 (-405 *4)) (-5 *2 (-393 (-1081 (-382 (-522)))))
+ (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-514)) (-4 *2 (-426)) (-5 *1 (-897 *2 *3))
+ (-4 *3 (-1142 *2)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-784)) (-5 *2 (-588 *1))
+ (-4 *1 (-405 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3))
+ (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *2 (-588 *1)) (-4 *1 (-878 *3 *4 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-971))
+ (-4 *7 (-878 *6 *4 *5)) (-5 *2 (-588 *3))
+ (-5 *1 (-879 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-338)
+ (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $))
+ (-15 -2959 (*7 $))))))))
+(((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-1087 (-382 (-522))))
+ (-5 *1 (-169)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812)) (-5 *3 (-522)))))
-(((*1 *1) (-5 *1 (-442))))
-(((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-305)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-971)) (-5 *1 (-823 *2 *3)) (-4 *2 (-1142 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1049))))
-(((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *1 *2)
- (-12
+ (-12 (-5 *3 (-588 (-454 *4 *5))) (-14 *4 (-588 (-1085)))
+ (-4 *5 (-426)) (-5 *2 (-588 (-224 *4 *5))) (-5 *1 (-576 *4 *5)))))
+(((*1 *2 *1 *1 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
+ (-4 *1 (-283))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -1368 *1)))
+ (-4 *1 (-283)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-108)) (-5 *5 (-1016 (-708))) (-5 *6 (-708))
(-5 *2
- (-588
- (-2
- (|:| -2530
- (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
- (|:| |fn| (-1166 (-291 (-202))))
- (|:| |yinit| (-588 (-202))) (|:| |intvals| (-588 (-202)))
- (|:| |g| (-291 (-202))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (|:| -3048
- (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354))
- (|:| |expense| (-354)) (|:| |accuracy| (-354))
- (|:| |intermediateResults| (-354)))))))
- (-5 *1 (-740)))))
-(((*1 *1)
- (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708))
- (-4 *4 (-157)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 (-154 (-382 (-522)))))
+ (-2 (|:| |contp| (-522))
+ (|:| -4045 (-588 (-2 (|:| |irr| *3) (|:| -4160 (-522)))))))
+ (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-588 (-588 (-588 *5)))) (-5 *3 (-1 (-108) *5 *5))
+ (-5 *4 (-588 *5)) (-4 *5 (-784)) (-5 *1 (-1092 *5)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 (-454 *3 *4))) (-14 *3 (-588 (-1085)))
+ (-4 *4 (-426)) (-5 *1 (-576 *3 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-305)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-628 (-881 *4))) (-5 *1 (-953 *4))
+ (-4 *4 (-971)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-108))
+ (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-4 *3 (-13 (-27) (-1106) (-405 *6) (-10 -8 (-15 -2217 ($ *7)))))
+ (-4 *7 (-782))
+ (-4 *8
+ (-13 (-1144 *3 *7) (-338) (-1106)
+ (-10 -8 (-15 -2731 ($ $)) (-15 -2611 ($ $)))))
(-5 *2
- (-588
- (-2 (|:| |outval| (-154 *4)) (|:| |outmult| (-522))
- (|:| |outvect| (-588 (-628 (-154 *4)))))))
- (-5 *1 (-702 *4)) (-4 *4 (-13 (-338) (-782))))))
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))))
+ (-5 *1 (-397 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1068)) (-4 *9 (-910 *8))
+ (-14 *10 (-1085)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-708)) (-5 *3 (-872 *5)) (-4 *5 (-971))
+ (-5 *1 (-1074 *4 *5)) (-14 *4 (-850))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 (-708))) (-5 *3 (-708)) (-5 *1 (-1074 *4 *5))
+ (-14 *4 (-850)) (-4 *5 (-971))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 (-708))) (-5 *3 (-872 *5)) (-4 *5 (-971))
+ (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-856)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
- (-4 *6 (-730)) (-5 *2 (-382 (-881 *4))) (-5 *1 (-853 *4 *5 *6 *3))
- (-4 *3 (-878 *4 *6 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-628 *7)) (-4 *7 (-878 *4 *6 *5))
- (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
- (-4 *6 (-730)) (-5 *2 (-628 (-382 (-881 *4))))
- (-5 *1 (-853 *4 *5 *6 *7))))
+ (-12 (-5 *3 (-522)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-971))
+ (-5 *1 (-296 *4 *5 *2 *6)) (-4 *6 (-878 *2 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2))
+ (-4 *2 (-405 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-563 (-821 *3))) (-4 *3 (-815 *3))
+ (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-563 (-821 *3))) (-4 *2 (-815 *3))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *1) (-5 *1 (-132)))
((*1 *2 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *6 *5))
- (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
- (-4 *6 (-730)) (-5 *2 (-588 (-382 (-881 *4))))
- (-5 *1 (-853 *4 *5 *6 *7)))))
+ (-12 (-5 *3 (-588 (-239))) (-5 *2 (-1045 (-202))) (-5 *1 (-237))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-239)))))
+(((*1 *1) (-5 *1 (-143))))
(((*1 *1 *2)
- (-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-1014)) (-5 *1 (-834 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171))
- (-5 *1 (-991 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171))
- (-5 *1 (-1022 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 (-1177 *4 *5 *6 *7)))
- (-5 *1 (-1177 *4 *5 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-588 *9)) (-5 *4 (-1 (-108) *9 *9))
- (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-985 *6 *7 *8)) (-4 *6 (-514))
- (-4 *7 (-730)) (-4 *8 (-784)) (-5 *2 (-588 (-1177 *6 *7 *8 *9)))
- (-5 *1 (-1177 *6 *7 *8 *9)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *2 (-784))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)))))
-(((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1085)) (-5 *3 (-108)) (-5 *1 (-821 *4))
- (-4 *4 (-1014)))))
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1))
- (-4 *1 (-985 *3 *4 *5)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 *8)) (-4 *8 (-878 *5 *7 *6))
- (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085))))
- (-4 *7 (-730))
- (-5 *2
- (-588
- (-2 (|:| -3166 (-708))
- (|:| |eqns|
- (-588
- (-2 (|:| |det| *8) (|:| |rows| (-588 (-522)))
- (|:| |cols| (-588 (-522))))))
- (|:| |fgb| (-588 *8)))))
- (-5 *1 (-853 *5 *6 *7 *8)) (-5 *4 (-708)))))
-(((*1 *2 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-685)))))
+ (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730))
+ (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1085)) (-5 *3 (-588 *1)) (-4 *1 (-405 *4))
+ (-4 *4 (-784))))
+ ((*1 *1 *2 *1 *1 *1 *1)
+ (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784))))
+ ((*1 *1 *2 *1 *1 *1)
+ (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-338) (-135)))
+ (-5 *2 (-588 (-2 (|:| -3858 (-708)) (|:| -1980 *4) (|:| |num| *4))))
+ (-5 *1 (-374 *3 *4)) (-4 *4 (-1142 *3)))))
+(((*1 *2) (-12 (-4 *1 (-379)) (-5 *2 (-850)))) ((*1 *1) (-4 *1 (-507)))
+ ((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637))))
+ ((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-637))))
+ ((*1 *2 *1) (-12 (-5 *2 (-588 *3)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-126)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-782)))
- (-5 *2 (-2 (|:| |start| *3) (|:| -2976 (-393 *3))))
- (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-588 (-1 *4 (-588 *4)))) (-4 *4 (-1014))
- (-5 *1 (-109 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1014))
- (-5 *1 (-109 *4))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-110)) (-5 *2 (-588 (-1 *4 (-588 *4))))
- (-5 *1 (-109 *4)) (-4 *4 (-1014)))))
+ (-12 (-5 *3 (-588 (-588 (-872 (-202)))))
+ (-5 *2 (-588 (-1009 (-202)))) (-5 *1 (-857)))))
(((*1 *1 *2 *2 *3)
(-12 (-5 *2 (-708)) (-4 *3 (-1120)) (-4 *1 (-55 *3 *4 *5))
(-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
@@ -13572,233 +13709,84 @@
((*1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971))))
((*1 *1 *1) (-5 *1 (-1085))) ((*1 *1) (-5 *1 (-1085)))
((*1 *1) (-5 *1 (-1101))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202)))
- (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-77 LSFUN1))))
- (-5 *2 (-960)) (-5 *1 (-691)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-795 *4 *5 *6 *7))
- (-4 *4 (-971)) (-14 *5 (-588 (-1085))) (-14 *6 (-588 *3))
- (-14 *7 *3)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-708)) (-4 *4 (-971)) (-4 *5 (-784)) (-4 *6 (-730))
- (-14 *8 (-588 *5)) (-5 *2 (-1171))
- (-5 *1 (-1176 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-878 *4 *6 *5))
- (-14 *9 (-588 *3)) (-14 *10 *3))))
-(((*1 *2 *1) (-12 (-4 *1 (-615 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-392 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-708)) (-4 *4 (-338)) (-5 *1 (-825 *2 *4))
- (-4 *2 (-1142 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1085)) (-5 *3 (-588 *1)) (-4 *1 (-405 *4))
- (-4 *4 (-784))))
- ((*1 *1 *2 *1 *1 *1 *1)
- (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784))))
- ((*1 *1 *2 *1 *1 *1)
- (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1085)) (-4 *1 (-405 *3)) (-4 *3 (-784)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-628 (-522))) (-5 *1 (-1024)))))
-(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354))))
- ((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-354)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1171))
- (-5 *1 (-423 *4 *5 *6 *3)) (-4 *3 (-878 *4 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1014)) (-4 *6 (-815 *5)) (-5 *2 (-814 *5 *6 (-588 *6)))
- (-5 *1 (-816 *5 *6 *4)) (-5 *3 (-588 *6)) (-4 *4 (-563 (-821 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1014)) (-5 *2 (-588 (-270 *3))) (-5 *1 (-816 *5 *3 *4))
- (-4 *3 (-962 (-1085))) (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1014)) (-5 *2 (-588 (-270 (-881 *3))))
- (-5 *1 (-816 *5 *3 *4)) (-4 *3 (-971))
- (-2401 (-4 *3 (-962 (-1085)))) (-4 *3 (-815 *5))
- (-4 *4 (-563 (-821 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1014)) (-5 *2 (-818 *5 *3)) (-5 *1 (-816 *5 *3 *4))
- (-2401 (-4 *3 (-962 (-1085)))) (-2401 (-4 *3 (-971)))
- (-4 *3 (-815 *5)) (-4 *4 (-563 (-821 *5))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-588 (-2 (|:| -2530 *3) (|:| -3048 *4))))
- (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *1 (-1097 *3 *4))))
- ((*1 *1) (-12 (-4 *1 (-1097 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))))
-(((*1 *1 *1 *1) (-5 *1 (-792))) ((*1 *1 *1) (-5 *1 (-792)))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1081 (-522))) (-5 *3 (-522)) (-4 *1 (-798 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-706))
- (-5 *2
- (-2 (|:| -1798 (-354)) (|:| -2888 (-1068))
- (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))))
- (-5 *1 (-523))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-706)) (-5 *4 (-983))
- (-5 *2
- (-2 (|:| -1798 (-354)) (|:| -2888 (-1068))
- (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))))
- (-5 *1 (-523))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-724)) (-5 *3 (-983))
- (-5 *4
- (-2 (|:| |fn| (-291 (-202)))
- (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (-5 *2
- (-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))
- (|:| |extra| (-960))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-724)) (-5 *3 (-983))
- (-5 *4
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (-5 *2
- (-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))
- (|:| |extra| (-960))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-737)) (-5 *3 (-983))
- (-5 *4
- (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
- (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
- (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
- (|:| |abserr| (-202)) (|:| |relerr| (-202))))
- (-5 *2 (-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-3 (-108) (-588 *1)))
+ (-4 *1 (-990 *4 *5 *6 *3)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-830 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *2) (-12 (-5 *1 (-830 *2)) (-4 *2 (-1014)))))
+(((*1 *2 *3 *2 *2)
+ (-12 (-5 *2 (-588 (-454 *4 *5))) (-5 *3 (-794 *4))
+ (-14 *4 (-588 (-1085))) (-4 *5 (-426)) (-5 *1 (-576 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-784)) (-5 *1 (-858 *3 *2)) (-4 *2 (-405 *3))))
((*1 *2 *3)
- (-12 (-5 *3 (-745))
- (-5 *2
- (-2 (|:| -1798 (-354)) (|:| -2888 (-1068))
- (|:| |explanations| (-588 (-1068)))))
- (-5 *1 (-742))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-745)) (-5 *4 (-983))
+ (-12 (-5 *3 (-1085)) (-5 *2 (-291 (-522))) (-5 *1 (-859)))))
+(((*1 *1 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971))
(-5 *2
- (-2 (|:| -1798 (-354)) (|:| -2888 (-1068))
- (|:| |explanations| (-588 (-1068)))))
- (-5 *1 (-742))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-773)) (-5 *3 (-983))
- (-5 *4
- (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3802 (-588 (-202)))))
- (-5 *2 (-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-773)) (-5 *3 (-983))
- (-5 *4
- (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202)))
- (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202))))
- (|:| |ub| (-588 (-777 (-202))))))
- (-5 *2 (-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-775))
+ (-2 (|:| -3748 (-708)) (|:| |curves| (-708))
+ (|:| |polygons| (-708)) (|:| |constructs| (-708)))))))
+(((*1 *2)
+ (-12 (-4 *3 (-1124)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4)))
+ (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $)))))
+ (-4 *4 (-1142 *3))
(-5 *2
- (-2 (|:| -1798 (-354)) (|:| -2888 (-1068))
- (|:| |explanations| (-588 (-1068)))))
- (-5 *1 (-774))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-775)) (-5 *4 (-983))
+ (-2 (|:| -2905 (-628 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-628 *3))))
+ (-5 *1 (-325 *3 *4 *5)) (-4 *5 (-384 *3 *4))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1142 (-522)))
(-5 *2
- (-2 (|:| -1798 (-354)) (|:| -2888 (-1068))
- (|:| |explanations| (-588 (-1068)))))
- (-5 *1 (-774))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-824)) (-5 *3 (-983))
- (-5 *4
- (-2 (|:| |pde| (-588 (-291 (-202))))
- (|:| |constraints|
- (-588
- (-2 (|:| |start| (-202)) (|:| |finish| (-202))
- (|:| |grid| (-708)) (|:| |boundaryType| (-522))
- (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202))))))
- (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068))
- (|:| |tol| (-202))))
- (-5 *2 (-2 (|:| -1798 (-354)) (|:| |explanations| (-1068))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-827))
+ (-2 (|:| -2905 (-628 (-522))) (|:| |basisDen| (-522))
+ (|:| |basisInv| (-628 (-522)))))
+ (-5 *1 (-705 *3 *4)) (-4 *4 (-384 (-522) *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-324)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 *4))
(-5 *2
- (-2 (|:| -1798 (-354)) (|:| -2888 (-1068))
- (|:| |explanations| (-588 (-1068)))))
- (-5 *1 (-826))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-827)) (-5 *4 (-983))
+ (-2 (|:| -2905 (-628 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-628 *4))))
+ (-5 *1 (-912 *3 *4 *5 *6)) (-4 *6 (-662 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-324)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 *4))
(-5 *2
- (-2 (|:| -1798 (-354)) (|:| -2888 (-1068))
- (|:| |explanations| (-588 (-1068)))))
- (-5 *1 (-826)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-830 *2)) (-4 *2 (-1014))))
- ((*1 *1 *2) (-12 (-5 *1 (-830 *2)) (-4 *2 (-1014)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-685)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-689)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-784)) (-5 *1 (-858 *3 *2)) (-4 *2 (-405 *3))))
+ (-2 (|:| -2905 (-628 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-628 *4))))
+ (-5 *1 (-1175 *3 *4 *5 *6)) (-4 *6 (-384 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2))
+ (-4 *4 (-13 (-784) (-514))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-2 (|:| -2644 *3) (|:| -3149 *4))))
+ (-4 *3 (-1014)) (-4 *4 (-1014)) (-4 *1 (-1097 *3 *4))))
+ ((*1 *1) (-12 (-4 *1 (-1097 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))))
+(((*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048))))
((*1 *2 *3)
- (-12 (-5 *3 (-1085)) (-5 *2 (-291 (-522))) (-5 *1 (-859)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-522)) (-5 *2 (-588 (-2 (|:| -1916 *3) (|:| -2793 *4))))
- (-5 *1 (-634 *3)) (-4 *3 (-1142 *4)))))
+ (-12 (-5 *3 (-588 (-792))) (-5 *2 (-1171)) (-5 *1 (-1048)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-1090))) (-5 *1 (-1090))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1085)) (-5 *3 (-588 (-1090))) (-5 *1 (-1090)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-971)) (-5 *2 (-522)) (-5 *1 (-417 *4 *3 *5))
- (-4 *3 (-1142 *4))
- (-4 *5 (-13 (-379) (-962 *4) (-338) (-1106) (-260))))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1032)) (-5 *1 (-105))))
- ((*1 *2 *1) (|partial| -12 (-5 *1 (-340 *2)) (-4 *2 (-1014))))
- ((*1 *2 *1) (|partial| -12 (-5 *2 (-1068)) (-5 *1 (-1102)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-588 (-561 *6))) (-5 *4 (-1085)) (-5 *2 (-561 *6))
- (-4 *6 (-405 *5)) (-4 *5 (-784)) (-5 *1 (-531 *5 *6)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-588 *6)) (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971))
- (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
- (-4 *3 (-514)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-157)) (-4 *2 (-971)) (-5 *1 (-652 *2 *3))
- (-4 *3 (-590 *2))))
- ((*1 *2 *2) (-12 (-5 *1 (-771 *2)) (-4 *2 (-157)) (-4 *2 (-971)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202)))
- (-5 *2 (-960)) (-5 *1 (-695)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-108))
- (-5 *2 (-960)) (-5 *1 (-691)))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1142 *6))
- (-4 *6 (-13 (-338) (-135) (-962 *4))) (-5 *4 (-522))
- (-5 *2
- (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-108))))
- (|:| -3197
- (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
- (|:| |beta| *3)))))
- (-5 *1 (-941 *6 *3)))))
-(((*1 *2 *2) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1014)))))
+ (-12 (-4 *4 (-1120)) (-5 *2 (-708)) (-5 *1 (-165 *4 *3))
+ (-4 *3 (-615 *4)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4)
+ (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960))
+ (-5 *1 (-694)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-588 (-628 *4))) (-5 *2 (-628 *4)) (-4 *4 (-971))
+ (-5 *1 (-954 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
(((*1 *2 *2 *3)
(-12 (-5 *2 (-1085)) (-5 *3 (-588 (-498))) (-5 *1 (-498)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1886 *4))))
- (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1081 *2)) (-4 *2 (-405 *4)) (-4 *4 (-13 (-784) (-514)))
- (-5 *1 (-31 *4 *2)))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-561 *3)) (-4 *3 (-13 (-405 *5) (-27) (-1106)))
+ (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *2 (-539 *3)) (-5 *1 (-524 *5 *3 *6)) (-4 *6 (-1014)))))
(((*1 *1 *1) (-4 *1 (-34)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
@@ -13815,39 +13803,31 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))))
-(((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-792)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085))
- (-14 *4 *2))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1068)) (-5 *3 (-760)) (-5 *1 (-759)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157))
- (-5 *2 (-628 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-628 *4)) (-5 *1 (-391 *3 *4))
- (-4 *3 (-392 *4))))
- ((*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-393 *3)) (-4 *3 (-507)) (-4 *3 (-514))))
- ((*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-734 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-770 *3)) (-4 *3 (-507)) (-4 *3 (-1014))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-777 *3)) (-4 *3 (-507)) (-4 *3 (-1014))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-923 *3)) (-4 *3 (-157)) (-4 *3 (-507)) (-5 *2 (-108))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-108)) (-5 *1 (-934 *3)) (-4 *3 (-962 (-382 (-522)))))))
+ (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324))
+ (-5 *2 (-1166 (-588 (-2 (|:| -3526 *4) (|:| -2882 (-1032))))))
+ (-5 *1 (-321 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-324)) (-5 *2 (-108)) (-5 *1 (-194 *4 *3))
- (-4 *3 (-1142 *4)))))
+ (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-541 *4))
+ (-4 *4 (-324)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-382 (-522))) (-4 *1 (-512 *3))
+ (-4 *3 (-13 (-379) (-1106)))))
+ ((*1 *1 *2) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106)))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))))
+(((*1 *2 *2) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1014)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-222 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-348 *3)) (-4 *3 (-1120)) (-4 *3 (-784)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *1 (-348 *4)) (-4 *4 (-1120))
+ (-5 *2 (-108)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-1014)))))
(((*1 *1 *1) (-4 *1 (-34)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
@@ -13864,57 +13844,41 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202)))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))))
- (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *3 (-202))
- (-5 *2 (-960)) (-5 *1 (-687)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *3 (-588 (-522)))
- (-5 *1 (-812)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-1012 *3))))
- ((*1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
-(((*1 *2 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-519)) (-5 *3 (-522))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-871)) (-5 *3 (-522)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-426)) (-4 *3 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
- (-5 *1 (-423 *4 *3 *5 *6)) (-4 *6 (-878 *4 *3 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730))
- (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-588 *3))
- (-5 *1 (-544 *5 *6 *7 *8 *3)) (-4 *3 (-1023 *5 *6 *7 *8))))
+ (-12 (-5 *2 (-291 *3)) (-4 *3 (-13 (-971) (-784)))
+ (-5 *1 (-200 *3 *4)) (-14 *4 (-588 (-1085))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730))
+ (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *3 (-985 *4 *5 *6))
+ (-5 *2 (-588 (-2 (|:| |val| (-108)) (|:| -1974 *1))))
+ (-4 *1 (-990 *4 *5 *6 *3)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 (-708) *2)) (-5 *4 (-708)) (-4 *2 (-1014))
+ (-5 *1 (-618 *2))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1 *3 (-708) *3)) (-4 *3 (-1014)) (-5 *1 (-621 *3)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-1190 *5 *6 *7))
+ (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135)))
- (-5 *2
- (-588 (-2 (|:| -2559 (-1081 *5)) (|:| -3677 (-588 (-881 *5))))))
- (-5 *1 (-995 *5 *6)) (-5 *3 (-588 (-881 *5)))
- (-14 *6 (-588 (-1085)))))
+ (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-1190 *5 *6 *7))
+ (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-283) (-135)))
- (-5 *2
- (-588 (-2 (|:| -2559 (-1081 *4)) (|:| -3677 (-588 (-881 *4))))))
- (-5 *1 (-995 *4 *5)) (-5 *3 (-588 (-881 *4)))
- (-14 *5 (-588 (-1085)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135)))
- (-5 *2
- (-588 (-2 (|:| -2559 (-1081 *5)) (|:| -3677 (-588 (-881 *5))))))
- (-5 *1 (-995 *5 *6)) (-5 *3 (-588 (-881 *5)))
- (-14 *6 (-588 (-1085))))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
- (-12 (-5 *4 (-522)) (-5 *5 (-1068)) (-5 *6 (-628 (-202)))
- (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))))
- (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))
- (-5 *9 (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))
- (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))))
+ (-12 (-5 *3 (-588 (-881 *4)))
+ (-4 *4 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2 (-588 (-968 *4 *5))) (-5 *1 (-1190 *4 *5 *6))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))))
+(((*1 *2 *2) (-12 (-5 *2 (-1009 (-777 (-202)))) (-5 *1 (-281)))))
+(((*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-126)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-522)) (-5 *1 (-1103 *3)) (-4 *3 (-971)))))
(((*1 *1 *1) (-4 *1 (-34)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
@@ -13931,34 +13895,31 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4238)) (-4 *1 (-555 *4 *3)) (-4 *4 (-1014))
- (-4 *3 (-1120)) (-4 *3 (-1014)) (-5 *2 (-108)))))
-(((*1 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202)))
- (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202))))
- (|:| |ub| (-588 (-777 (-202))))))
- (-5 *1 (-243)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
(((*1 *2)
- (-12
- (-5 *2
- (-1166 (-588 (-2 (|:| -3435 (-839 *3)) (|:| -2717 (-1032))))))
- (-5 *1 (-326 *3 *4)) (-14 *3 (-850)) (-14 *4 (-850))))
- ((*1 *2)
- (-12 (-5 *2 (-1166 (-588 (-2 (|:| -3435 *3) (|:| -2717 (-1032))))))
- (-5 *1 (-327 *3 *4)) (-4 *3 (-324)) (-14 *4 (-3 (-1081 *3) *2))))
- ((*1 *2)
- (-12 (-5 *2 (-1166 (-588 (-2 (|:| -3435 *3) (|:| -2717 (-1032))))))
- (-5 *1 (-328 *3 *4)) (-4 *3 (-324)) (-14 *4 (-850)))))
-(((*1 *2 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
- (-4 *4 (-971)))))
+ (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
+ (-4 *3 (-342 *4))))
+ ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-221 *2)) (-4 *2 (-1120)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-628 (-291 (-202)))) (-5 *2 (-354)) (-5 *1 (-184)))))
+ (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1171)) (-5 *1 (-1088))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1171))
+ (-5 *1 (-1088))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *4 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1171))
+ (-5 *1 (-1088)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-1012 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1012 *2)) (-4 *2 (-1014)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-305)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-838)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-393 (-1081 *7)))
+ (-5 *1 (-835 *4 *5 *6 *7)) (-5 *3 (-1081 *7))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-838)) (-4 *5 (-1142 *4)) (-5 *2 (-393 (-1081 *5)))
+ (-5 *1 (-836 *4 *5)) (-5 *3 (-1081 *5)))))
(((*1 *1 *1) (-4 *1 (-34)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
@@ -13975,28 +13936,34 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1081 *5)) (-4 *5 (-426)) (-5 *2 (-588 *6))
+ (-5 *1 (-500 *5 *6 *4)) (-4 *6 (-338)) (-4 *4 (-13 (-338) (-782)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-881 *5)) (-4 *5 (-426)) (-5 *2 (-588 *6))
+ (-5 *1 (-500 *5 *6 *4)) (-4 *6 (-338)) (-4 *4 (-13 (-338) (-782))))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-278)) (-4 *2 (-1120))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 (-561 *1))) (-5 *3 (-588 *1)) (-4 *1 (-278))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-270 *1))) (-4 *1 (-278))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-270 *1)) (-4 *1 (-278)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-818 *4 *3))
+ (-4 *3 (-1014)))))
+(((*1 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-588 (-881 *4))) (-5 *3 (-588 (-1085))) (-4 *4 (-426))
- (-5 *1 (-847 *4)))))
-(((*1 *2 *1) (-12 (-4 *3 (-1120)) (-5 *2 (-588 *1)) (-4 *1 (-936 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-1074 *3 *4))) (-5 *1 (-1074 *3 *4))
- (-14 *3 (-850)) (-4 *4 (-971)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
- (-5 *2 (-2 (|:| |k| (-756 *3)) (|:| |c| *4))))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 (-1050 *4 *5))) (-5 *3 (-1 (-108) *5 *5))
- (-4 *4 (-13 (-1014) (-33))) (-4 *5 (-13 (-1014) (-33)))
- (-5 *1 (-1051 *4 *5))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-588 (-1050 *3 *4))) (-4 *3 (-13 (-1014) (-33)))
- (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085))
+ (-14 *4 *2))))
+(((*1 *1 *1) (-12 (-5 *1 (-158 *2)) (-4 *2 (-283)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1085)) (-5 *2 (-1 *6 *5)) (-5 *1 (-645 *4 *5 *6))
+ (-4 *4 (-563 (-498))) (-4 *5 (-1120)) (-4 *6 (-1120)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-426)))))
(((*1 *1 *1) (-4 *1 (-34)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
@@ -14013,18 +13980,34 @@
((*1 *2 *2)
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
-(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-354)) (-5 *1 (-983)))))
-(((*1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3))
- (-4 *3 (-1142 *2)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-539 *2)) (-4 *2 (-13 (-29 *4) (-1106)))
+ (-5 *1 (-537 *4 *2))
+ (-4 *4 (-13 (-426) (-962 (-522)) (-784) (-584 (-522))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-539 (-382 (-881 *4))))
+ (-4 *4 (-13 (-426) (-962 (-522)) (-784) (-584 (-522))))
+ (-5 *2 (-291 *4)) (-5 *1 (-542 *4)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |preimage| (-588 *3)) (|:| |image| (-588 *3))))
- (-5 *1 (-834 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+ (-12 (-5 *2 (-588 (-1107 *3))) (-5 *1 (-1107 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-283))
+ (-5 *2 (-382 (-393 (-881 *4)))) (-5 *1 (-966 *4)))))
+(((*1 *2 *1) (-12 (-5 *1 (-1116 *2)) (-4 *2 (-901)))))
+(((*1 *1 *1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971))
+ (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1157 *4)) (-5 *1 (-1159 *4 *2))
+ (-4 *4 (-37 (-382 (-522)))))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171))
+ (-5 *1 (-991 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171))
+ (-5 *1 (-1022 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928)))))
@@ -14042,208 +14025,367 @@
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-37 (-382 (-522))))
(-5 *1 (-1072 *3)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4))))
+ (-12 (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4))))
(-5 *1 (-1051 *3 *4)) (-4 *3 (-13 (-1014) (-33)))
(-4 *4 (-13 (-1014) (-33))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-393 *3)) (-4 *3 (-514)) (-5 *1 (-394 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-159))) (-5 *1 (-1001)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *3 *2))
+ (-4 *2 (-13 (-27) (-1106) (-405 (-154 *3))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1035 *3 *4 *2 *5)) (-4 *4 (-971)) (-4 *5 (-215 *3 *4))
+ (-4 *2 (-215 *3 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106)))))
+ ((*1 *1 *1 *1) (-4 *1 (-730))))
+(((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *1 *2) (-12 (-5 *2 (-291 (-154 (-354)))) (-5 *1 (-305))))
+ ((*1 *1 *2) (-12 (-5 *2 (-291 (-522))) (-5 *1 (-305))))
+ ((*1 *1 *2) (-12 (-5 *2 (-291 (-354))) (-5 *1 (-305))))
+ ((*1 *1 *2) (-12 (-5 *2 (-291 (-632))) (-5 *1 (-305))))
+ ((*1 *1 *2) (-12 (-5 *2 (-291 (-639))) (-5 *1 (-305))))
+ ((*1 *1 *2) (-12 (-5 *2 (-291 (-637))) (-5 *1 (-305))))
+ ((*1 *1) (-5 *1 (-305))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1016 (-1016 *3))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-514)) (-5 *1 (-40 *3 *2))
+ (-4 *2
+ (-13 (-338) (-278)
+ (-10 -8 (-15 -2947 ((-1037 *3 (-561 $)) $))
+ (-15 -2959 ((-1037 *3 (-561 $)) $))
+ (-15 -2217 ($ (-1037 *3 (-561 $)))))))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-514)) (-5 *1 (-40 *3 *2))
+ (-4 *2
+ (-13 (-338) (-278)
+ (-10 -8 (-15 -2947 ((-1037 *3 (-561 $)) $))
+ (-15 -2959 ((-1037 *3 (-561 $)) $))
+ (-15 -2217 ($ (-1037 *3 (-561 $)))))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-588 *2))
+ (-4 *2
+ (-13 (-338) (-278)
+ (-10 -8 (-15 -2947 ((-1037 *4 (-561 $)) $))
+ (-15 -2959 ((-1037 *4 (-561 $)) $))
+ (-15 -2217 ($ (-1037 *4 (-561 $)))))))
+ (-4 *4 (-514)) (-5 *1 (-40 *4 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-588 (-561 *2)))
+ (-4 *2
+ (-13 (-338) (-278)
+ (-10 -8 (-15 -2947 ((-1037 *4 (-561 $)) $))
+ (-15 -2959 ((-1037 *4 (-561 $)) $))
+ (-15 -2217 ($ (-1037 *4 (-561 $)))))))
+ (-4 *4 (-514)) (-5 *1 (-40 *4 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-792)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-792)))))
+(((*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-536)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-971))
+ (-5 *1 (-1070 *4))))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-522)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971))
+ (-14 *4 (-1085)) (-14 *5 *3))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-588 (-1081 *4))) (-5 *3 (-1081 *4))
+ (-4 *4 (-838)) (-5 *1 (-605 *4)))))
(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (-5 *2 (-588 (-202))) (-5 *1 (-183)))))
-(((*1 *2 *3 *4 *2 *5 *6)
- (-12
- (-5 *5
- (-2 (|:| |done| (-588 *11))
- (|:| |todo| (-588 (-2 (|:| |val| *3) (|:| -1886 *11))))))
- (-5 *6 (-708))
- (-5 *2 (-588 (-2 (|:| |val| (-588 *10)) (|:| -1886 *11))))
- (-5 *3 (-588 *10)) (-5 *4 (-588 *11)) (-4 *10 (-985 *7 *8 *9))
- (-4 *11 (-990 *7 *8 *9 *10)) (-4 *7 (-426)) (-4 *8 (-730))
- (-4 *9 (-784)) (-5 *1 (-988 *7 *8 *9 *10 *11))))
- ((*1 *2 *3 *4 *2 *5 *6)
- (-12
- (-5 *5
- (-2 (|:| |done| (-588 *11))
- (|:| |todo| (-588 (-2 (|:| |val| *3) (|:| -1886 *11))))))
- (-5 *6 (-708))
- (-5 *2 (-588 (-2 (|:| |val| (-588 *10)) (|:| -1886 *11))))
- (-5 *3 (-588 *10)) (-5 *4 (-588 *11)) (-4 *10 (-985 *7 *8 *9))
- (-4 *11 (-1023 *7 *8 *9 *10)) (-4 *7 (-426)) (-4 *8 (-730))
- (-4 *9 (-784)) (-5 *1 (-1055 *7 *8 *9 *10 *11)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-382 (-522))) (-5 *1 (-547 *3)) (-4 *3 (-37 *2))
- (-4 *3 (-971)))))
+ (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-283)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
+ (-5 *1 (-1036 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-904 *4 *5 *6 *7)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-423 *3 *4 *5 *2)) (-4 *2 (-878 *3 *4 *5)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-588 (-719 *3))) (-5 *1 (-719 *3)) (-4 *3 (-514))
- (-4 *3 (-971)))))
+ (-12 (-5 *3 (-393 *5)) (-4 *5 (-514))
+ (-5 *2
+ (-2 (|:| -3858 (-708)) (|:| -3112 *5) (|:| |radicand| (-588 *5))))
+ (-5 *1 (-295 *5)) (-5 *4 (-708))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-928)) (-5 *2 (-522)))))
(((*1 *1 *2) (-12 (-5 *2 (-363)) (-5 *1 (-577)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-759)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-881 *5)) (-4 *5 (-971)) (-5 *2 (-454 *4 *5))
- (-5 *1 (-873 *4 *5)) (-14 *4 (-588 (-1085))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085)) (-4 *4 (-426)) (-4 *4 (-784))
- (-5 *1 (-531 *4 *2)) (-4 *2 (-260)) (-4 *2 (-405 *4)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068))
- (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-971)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *1) (-5 *1 (-129))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1068)) (-5 *4 (-154 (-202))) (-5 *5 (-522))
- (-5 *2 (-960)) (-5 *1 (-696)))))
+ (-12 (-5 *3 (-708)) (-4 *4 (-338)) (-4 *5 (-1142 *4)) (-5 *2 (-1171))
+ (-5 *1 (-39 *4 *5 *6 *7)) (-4 *6 (-1142 (-382 *5))) (-14 *7 *6))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-834 *4)) (-4 *4 (-1014)) (-5 *2 (-588 (-708)))
+ (-5 *1 (-833 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812))
+ (-5 *3 (-588 (-522)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1066 (-588 (-522)))) (-5 *1 (-812))
+ (-5 *3 (-588 (-522))))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157))))
+ ((*1 *2 *3 *3 *2)
+ (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))))
+(((*1 *1 *1 *1) (-4 *1 (-507))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-904 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-302 *3)) (-4 *3 (-1120))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-708)) (-5 *1 (-485 *3 *4)) (-4 *3 (-1120))
+ (-14 *4 (-522)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-338))
+ (-5 *2 (-108)) (-5 *1 (-609 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239))))
+ (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-5 *2 (-108))
+ (-5 *1 (-610 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-478 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-784)))))
(((*1 *2 *1)
(|partial| -12 (-5 *2 (-1 (-498) (-588 (-498)))) (-5 *1 (-110))))
((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-498) (-588 (-498)))) (-5 *1 (-110)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-588 (-588 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-588 (-3 (|:| |array| (-588 *3)) (|:| |scalar| (-1085)))))
- (-5 *6 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1018))
- (-5 *1 (-372))))
- ((*1 *2 *3 *4 *5 *6 *3)
- (-12 (-5 *5 (-588 (-588 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-588 (-3 (|:| |array| (-588 *3)) (|:| |scalar| (-1085)))))
- (-5 *6 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1018))
- (-5 *1 (-372))))
- ((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *4 (-588 (-1085))) (-5 *5 (-1088)) (-5 *3 (-1085))
- (-5 *2 (-1018)) (-5 *1 (-372)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (-5 *2 (-522)) (-5 *1 (-183)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-806 *2)) (-4 *2 (-1120))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-808 *2)) (-4 *2 (-1120))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-5 *1 (-811 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-1168))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-850)) (-4 *4 (-343)) (-4 *4 (-338)) (-5 *2 (-1081 *1))
- (-4 *1 (-304 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-1081 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-345 *3 *2)) (-4 *3 (-157)) (-4 *3 (-338))
- (-4 *2 (-1142 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-1081 *4))
- (-5 *1 (-492 *4)))))
+(((*1 *2)
+ (-12 (-4 *1 (-324))
+ (-5 *2 (-588 (-2 (|:| -2006 (-522)) (|:| -3858 (-522))))))))
+(((*1 *2)
+ (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-392 *3)))))
+(((*1 *1) (-5 *1 (-132))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971))
+ (-5 *2 (-588 (-588 (-588 (-872 *3))))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-561 *5)) (-4 *5 (-405 *4)) (-4 *4 (-962 (-522)))
- (-4 *4 (-13 (-784) (-514))) (-5 *2 (-1081 *5)) (-5 *1 (-31 *4 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-561 *1)) (-4 *1 (-971)) (-4 *1 (-278))
- (-5 *2 (-1081 *1)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-522)) (-4 *2 (-405 *3)) (-5 *1 (-31 *3 *2))
- (-4 *3 (-962 *4)) (-4 *3 (-13 (-784) (-514))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+ (-12 (-4 *4 (-784)) (-5 *2 (-588 (-588 (-588 *4))))
+ (-5 *1 (-1092 *4)) (-5 *3 (-588 (-588 *4))))))
+(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
+ (|partial| -12 (-5 *3 (-561 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1085))) (-5 *5 (-1081 *2))
+ (-4 *2 (-13 (-405 *6) (-27) (-1106)))
+ (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *1 (-518 *6 *2 *7)) (-4 *7 (-1014))))
+ ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
+ (|partial| -12 (-5 *3 (-561 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1085)))
+ (-5 *5 (-382 (-1081 *2))) (-4 *2 (-13 (-405 *6) (-27) (-1106)))
+ (-4 *6 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
+ (-5 *1 (-518 *6 *2 *7)) (-4 *7 (-1014)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-442)) (-5 *3 (-588 (-239))) (-5 *1 (-1167))))
+ ((*1 *1 *1) (-5 *1 (-1167))))
(((*1 *2 *3)
- (-12 (-5 *3 (-628 *2)) (-4 *4 (-1142 *2))
- (-4 *2 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $)))))
- (-5 *1 (-469 *2 *4 *5)) (-4 *5 (-384 *2 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2))
- (-4 *5 (-215 *3 *2)) (-4 *2 (-971)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-588 (-708)))) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-522))) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-514)) (-4 *8 (-878 *7 *5 *6))
- (-5 *2 (-2 (|:| -1400 (-708)) (|:| -2977 *9) (|:| |radicand| *9)))
- (-5 *1 (-882 *5 *6 *7 *8 *9)) (-5 *4 (-708))
- (-4 *9
- (-13 (-338)
- (-10 -8 (-15 -2805 (*8 $)) (-15 -2816 (*8 $)) (-15 -2190 ($ *8))))))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1950 *3) (|:| |coef2| (-719 *3))))
- (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *2 (-784))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-708)) (-5 *1 (-110)))))
+ (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *7 (-878 *4 *5 *6)) (-5 *2 (-588 (-588 *7)))
+ (-5 *1 (-422 *4 *5 *6 *7)) (-5 *3 (-588 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730))
+ (-4 *7 (-784)) (-4 *8 (-878 *5 *6 *7)) (-5 *2 (-588 (-588 *8)))
+ (-5 *1 (-422 *5 *6 *7 *8)) (-5 *3 (-588 *8)))))
+(((*1 *2)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-628 (-382 *4))))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *1 *2 *3 *1 *3)
- (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-818 *4 *3))
- (-4 *3 (-1014)))))
-(((*1 *2 *1 *1 *3 *4)
- (-12 (-5 *3 (-1 (-108) *5 *5)) (-5 *4 (-1 (-108) *6 *6))
- (-4 *5 (-13 (-1014) (-33))) (-4 *6 (-13 (-1014) (-33)))
- (-5 *2 (-108)) (-5 *1 (-1050 *5 *6)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -1950 *3) (|:| |coef1| (-719 *3)) (|:| |coef2| (-719 *3))))
- (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))))
-(((*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-426))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1081 *6)) (-4 *6 (-878 *5 *3 *4)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *5 (-838)) (-5 *1 (-431 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-838)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-194 *4 *2))
+ (-4 *2 (-1142 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-590 *3)) (-4 *3 (-971))
+ (-5 *1 (-652 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-771 *3)))))
+(((*1 *1 *2 *2)
+ (-12 (-5 *2 (-708)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5))
+ (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-708)) (-4 *1 (-1164 *3)) (-4 *3 (-23)) (-4 *3 (-1120)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-108)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-708)) (-4 *6 (-1014)) (-4 *3 (-829 *6))
- (-5 *2 (-628 *3)) (-5 *1 (-630 *6 *3 *7 *4)) (-4 *7 (-348 *3))
- (-4 *4 (-13 (-348 *6) (-10 -7 (-6 -4238)))))))
+ (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-892 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-154 (-202))) (-5 *4 (-522)) (-5 *2 (-960))
- (-5 *1 (-696)))))
-(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-1066 *3)) (-4 *3 (-1014))
- (-4 *3 (-1120)))))
-(((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
-(((*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
+ (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1081 *7)) (-4 *5 (-971))
+ (-4 *7 (-971)) (-4 *2 (-1142 *5)) (-5 *1 (-471 *5 *2 *6 *7))
+ (-4 *6 (-1142 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-971)) (-4 *7 (-971))
+ (-4 *4 (-1142 *5)) (-5 *2 (-1081 *7)) (-5 *1 (-471 *5 *4 *6 *7))
+ (-4 *6 (-1142 *4)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-14 *5 (-588 (-1085))) (-4 *2 (-157))
+ (-4 *4 (-215 (-3591 *5) (-708)))
+ (-14 *6
+ (-1 (-108) (-2 (|:| -2882 *3) (|:| -3858 *4))
+ (-2 (|:| -2882 *3) (|:| -3858 *4))))
+ (-5 *1 (-435 *5 *2 *3 *4 *6 *7)) (-4 *3 (-784))
+ (-4 *7 (-878 *2 *4 (-794 *5))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1166 *4)) (-5 *3 (-522)) (-4 *4 (-324))
+ (-5 *1 (-492 *4)))))
+(((*1 *2 *1) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157))
+ (-5 *2 (-588 (-881 *4)))))
+ ((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-588 (-881 *4))) (-5 *1 (-391 *3 *4))
+ (-4 *3 (-392 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-588 (-881 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-588 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3)))))
((*1 *2 *3)
- (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+ (-12 (-5 *3 (-1166 (-427 *4 *5 *6 *7))) (-5 *2 (-588 (-881 *4)))
+ (-5 *1 (-427 *4 *5 *6 *7)) (-4 *4 (-514)) (-4 *4 (-157))
+ (-14 *5 (-850)) (-14 *6 (-588 (-1085))) (-14 *7 (-1166 (-628 *4))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-30))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-393 *4) *4)) (-4 *4 (-514)) (-5 *2 (-393 *4))
+ (-5 *1 (-394 *4))))
+ ((*1 *1 *1) (-5 *1 (-855)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855))))
+ ((*1 *1 *1) (-5 *1 (-856)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))
+ (-5 *4 (-382 (-522))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522)))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))
+ (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522)))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))
+ (-5 *4 (-382 (-522))) (-5 *1 (-946 *3)) (-4 *3 (-1142 *4))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -1993 (-382 (-522))) (|:| -2002 (-382 (-522)))))
+ (-5 *1 (-946 *3)) (-4 *3 (-1142 (-382 (-522))))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3))
+ (-4 *3 (-1142 *2)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 (-132))) (-5 *1 (-129))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-129)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-818 *4 *3))
+ (-4 *3 (-1014)))))
+(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157))))
+ ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))))
+(((*1 *1 *1) (-5 *1 (-983))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-31 *3 *4))
+ (-4 *4 (-405 *3))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-708)) (-5 *1 (-110))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-110))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *4))
+ (-4 *4 (-405 *3))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-110)) (-5 *1 (-148))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *4))
+ (-4 *4 (-13 (-405 *3) (-928)))))
+ ((*1 *2 *2) (-12 (-5 *2 (-110)) (-5 *1 (-277 *3)) (-4 *3 (-278))))
+ ((*1 *2 *2) (-12 (-4 *1 (-278)) (-5 *2 (-110))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-110)) (-4 *4 (-784)) (-5 *1 (-404 *3 *4))
+ (-4 *3 (-405 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *4))
+ (-4 *4 (-405 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-110)) (-5 *1 (-561 *3)) (-4 *3 (-784))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-110)) (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *4))
+ (-4 *4 (-13 (-405 *3) (-928) (-1106))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 (-588 *5))) (-4 *5 (-1157 *4))
- (-4 *4 (-37 (-382 (-522))))
- (-5 *2 (-1 (-1066 *4) (-588 (-1066 *4)))) (-5 *1 (-1159 *4 *5)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-283)) (-5 *2 (-108)))))
+ (-12 (-4 *4 (-514)) (-5 *2 (-1081 *3)) (-5 *1 (-40 *4 *3))
+ (-4 *3
+ (-13 (-338) (-278)
+ (-10 -8 (-15 -2947 ((-1037 *4 (-561 $)) $))
+ (-15 -2959 ((-1037 *4 (-561 $)) $))
+ (-15 -2217 ($ (-1037 *4 (-561 $))))))))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
+ (-12 (-5 *4 (-588 (-108))) (-5 *5 (-628 (-202)))
+ (-5 *6 (-628 (-522))) (-5 *7 (-202)) (-5 *3 (-522)) (-5 *2 (-960))
+ (-5 *1 (-692)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-108)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
+ ((*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-239))))
+ ((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441))))
+ ((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-202)))) (-5 *1 (-855)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1087 (-382 (-522)))) (-5 *2 (-382 (-522)))
+ (-5 *1 (-169)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-850)) (-5 *2 (-1081 *3)) (-5 *1 (-1095 *3))
- (-4 *3 (-338)))))
+ (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
+ (-5 *1 (-644 *3 *4)) (-4 *3 (-1120)) (-4 *4 (-1120)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-110)) (-5 *4 (-708)) (-4 *5 (-426)) (-4 *5 (-784))
+ (-4 *5 (-962 (-522))) (-4 *5 (-514)) (-5 *1 (-40 *5 *2))
+ (-4 *2 (-405 *5))
+ (-4 *2
+ (-13 (-338) (-278)
+ (-10 -8 (-15 -2947 ((-1037 *5 (-561 $)) $))
+ (-15 -2959 ((-1037 *5 (-561 $)) $))
+ (-15 -2217 ($ (-1037 *5 (-561 $))))))))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1068)) (-5 *2 (-588 (-1090))) (-5 *1 (-809)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
-(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-932)))))
-(((*1 *2 *3 *3 *3 *4 *5 *6)
- (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202)))
- (-5 *5 (-1009 (-202))) (-5 *6 (-588 (-239))) (-5 *2 (-1045 (-202)))
- (-5 *1 (-635)))))
-(((*1 *2) (-12 (-4 *3 (-157)) (-5 *2 (-1166 *1)) (-4 *1 (-342 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-658)) (-5 *2 (-850))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-660)) (-5 *2 (-708)))))
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
+ (-5 *2 (-2 (|:| -1410 (-110)) (|:| |w| (-202)))) (-5 *1 (-183)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-1014)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-588 (-881 (-522)))) (-5 *4 (-588 (-1085)))
+ (-5 *2 (-588 (-588 (-354)))) (-5 *1 (-948)) (-5 *5 (-354))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947)))
+ (-14 *5 (-588 (-1085))) (-5 *2 (-588 (-588 (-949 (-382 *4)))))
+ (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7))
+ (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7))
+ (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7))
+ (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-881 *4)))
+ (-4 *4 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2 (-588 (-588 (-949 (-382 *4))))) (-5 *1 (-1190 *4 *5 *6))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-1116 *3))
+ (-4 *3 (-901)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
+ (-4 *4 (-971)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-792) (-792))) (-5 *1 (-110))))
((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-792) (-588 (-792)))) (-5 *1 (-110))))
((*1 *2 *1)
@@ -14252,226 +14394,351 @@
(-12 (-5 *2 (-1171)) (-5 *1 (-192 *3))
(-4 *3
(-13 (-784)
- (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 (*2 $))
- (-15 -2664 (*2 $)))))))
+ (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 (*2 $))
+ (-15 -2113 (*2 $)))))))
((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-369))))
((*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-369))))
((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-472))))
((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1101))))
((*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-1101)))))
-(((*1 *1) (-5 *1 (-412))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-156)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-792)))))
(((*1 *2 *3 *4)
- (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
- (-5 *1 (-644 *3 *4)) (-4 *3 (-1120)) (-4 *4 (-1120)))))
+ (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *2 (-588 *4)) (-5 *1 (-716 *4))
+ (-4 *4 (-13 (-338) (-782))))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-1014) (-33))) (-5 *1 (-1050 *3 *2))
+ (-4 *3 (-13 (-1014) (-33))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *2 (-1142 *4)) (-5 *1 (-744 *4 *2 *3 *5))
+ (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2))
+ (-4 *5 (-598 (-382 *2)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *2 (-1142 *4)) (-5 *1 (-744 *4 *2 *5 *3))
+ (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-598 *2))
+ (-4 *3 (-598 (-382 *2))))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-693)))))
(((*1 *1 *1) (-5 *1 (-792))) ((*1 *1 *1 *1) (-5 *1 (-792)))
((*1 *1 *2 *2) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120))))
((*1 *1 *2) (-12 (-5 *1 (-1133 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1014))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1012 *3)) (-4 *3 (-1014)) (-5 *2 (-108)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-522)) (-4 *1 (-1126 *4)) (-4 *4 (-971)) (-4 *4 (-514))
+ (-5 *2 (-382 (-881 *4)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-522)) (-4 *1 (-1126 *4)) (-4 *4 (-971)) (-4 *4 (-514))
+ (-5 *2 (-382 (-881 *4))))))
+(((*1 *2 *1) (|partial| -12 (-4 *1 (-938)) (-5 *2 (-792)))))
(((*1 *2 *3)
- (-12
- (-5 *3
+ (-12 (-4 *4 (-426))
+ (-5 *2
(-588
- (-2 (|:| -3166 (-708))
- (|:| |eqns|
- (-588
- (-2 (|:| |det| *7) (|:| |rows| (-588 (-522)))
- (|:| |cols| (-588 (-522))))))
- (|:| |fgb| (-588 *7)))))
- (-4 *7 (-878 *4 *6 *5)) (-4 *4 (-13 (-283) (-135)))
- (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-708))
- (-5 *1 (-853 *4 *5 *6 *7)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2)
- (-12 (-4 *3 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-1171))
- (-5 *1 (-408 *3 *4)) (-4 *4 (-405 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-13 (-1014) (-33))) (-5 *1 (-1050 *3 *2))
- (-4 *3 (-13 (-1014) (-33))))))
-(((*1 *2 *3 *3)
- (-12 (|has| *2 (-6 (-4240 "*"))) (-4 *5 (-348 *2)) (-4 *6 (-348 *2))
- (-4 *2 (-971)) (-5 *1 (-99 *2 *3 *4 *5 *6)) (-4 *3 (-1142 *2))
- (-4 *4 (-626 *2 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 (-1085))) (-4 *6 (-338))
- (-5 *2 (-588 (-270 (-881 *6)))) (-5 *1 (-500 *5 *6 *7))
- (-4 *5 (-426)) (-4 *7 (-13 (-338) (-782))))))
+ (-2 (|:| |eigval| (-3 (-382 (-881 *4)) (-1075 (-1085) (-881 *4))))
+ (|:| |eigmult| (-708))
+ (|:| |eigvec| (-588 (-628 (-382 (-881 *4))))))))
+ (-5 *1 (-268 *4)) (-5 *3 (-628 (-382 (-881 *4)))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1188 *3 *4)) (-4 *1 (-349 *3 *4)) (-4 *3 (-784))
+ (-4 *4 (-157))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-361 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-756 *3)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784))
+ (-4 *4 (-971))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-1166 *5)) (-5 *3 (-708)) (-5 *4 (-1032)) (-4 *5 (-324))
+ (-5 *1 (-492 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1085)) (-4 *5 (-1124)) (-4 *6 (-1142 *5))
+ (-4 *7 (-1142 (-382 *6))) (-5 *2 (-588 (-881 *5)))
+ (-5 *1 (-316 *4 *5 *6 *7)) (-4 *4 (-317 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1085)) (-4 *1 (-317 *4 *5 *6)) (-4 *4 (-1124))
+ (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5))) (-4 *4 (-338))
+ (-5 *2 (-588 (-881 *4))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-878 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-423 *4 *5 *6 *2)))))
+(((*1 *2 *3) (-12 (-5 *3 (-758)) (-5 *2 (-51)) (-5 *1 (-768)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-850)) (-5 *1 (-1015 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-507))
- (-5 *2 (-382 (-522)))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-393 *3)) (-4 *3 (-507))
- (-4 *3 (-514))))
- ((*1 *2 *1) (|partial| -12 (-4 *1 (-507)) (-5 *2 (-382 (-522)))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-734 *3)) (-4 *3 (-157)) (-4 *3 (-507))
- (-5 *2 (-382 (-522)))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-770 *3)) (-4 *3 (-507))
- (-4 *3 (-1014))))
+ (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014))
+ (-5 *2 (-588 (-2 (|:| |k| *4) (|:| |c| *3))))))
((*1 *2 *1)
- (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-777 *3)) (-4 *3 (-507))
- (-4 *3 (-1014))))
+ (-12 (-5 *2 (-588 (-2 (|:| |k| (-822 *3)) (|:| |c| *4))))
+ (-5 *1 (-572 *3 *4 *5)) (-4 *3 (-784))
+ (-4 *4 (-13 (-157) (-655 (-382 (-522))))) (-14 *5 (-850))))
((*1 *2 *1)
- (|partial| -12 (-4 *1 (-923 *3)) (-4 *3 (-157)) (-4 *3 (-507))
- (-5 *2 (-382 (-522)))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *2 (-382 (-522))) (-5 *1 (-934 *3))
- (-4 *3 (-962 *2)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-628 *7)) (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *6 *5))
- (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
- (-4 *6 (-730)) (-5 *1 (-853 *4 *5 *6 *7)))))
+ (-12 (-5 *2 (-588 (-613 *3))) (-5 *1 (-822 *3)) (-4 *3 (-784)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-354))))
((*1 *1 *1 *1) (-4 *1 (-507)))
((*1 *1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338))))
((*1 *1 *2) (-12 (-5 *1 (-656 *2)) (-4 *2 (-338))))
((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-708)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-135))
+ (-4 *3 (-283)) (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-904 *3 *4 *5 *6)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *1 *3 *3 *3 *2)
+ (-12 (-5 *3 (-708)) (-5 *1 (-616 *2)) (-4 *2 (-1014)))))
(((*1 *1 *1 *1 *2)
(-12 (-5 *2 (-522)) (-4 *1 (-593 *3)) (-4 *3 (-1120))))
((*1 *1 *2 *1 *3)
(-12 (-5 *3 (-522)) (-4 *1 (-593 *2)) (-4 *2 (-1120)))))
+(((*1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-366)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1085)) (-4 *5 (-563 (-821 (-522))))
- (-4 *5 (-815 (-522)))
- (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522))))
- (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
- (-5 *1 (-525 *5 *3)) (-4 *3 (-574))
- (-4 *3 (-13 (-27) (-1106) (-405 *5)))))
- ((*1 *2 *2 *3 *4 *4)
- (|partial| -12 (-5 *3 (-1085)) (-5 *4 (-777 *2)) (-4 *2 (-1049))
- (-4 *2 (-13 (-27) (-1106) (-405 *5)))
- (-4 *5 (-563 (-821 (-522)))) (-4 *5 (-815 (-522)))
- (-4 *5 (-13 (-784) (-962 (-522)) (-426) (-584 (-522))))
- (-5 *1 (-525 *5 *2)))))
-(((*1 *1) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 (-1066 *7))) (-4 *6 (-784))
- (-4 *7 (-878 *5 (-494 *6) *6)) (-4 *5 (-971))
- (-5 *2 (-1 (-1066 *7) *7)) (-5 *1 (-1038 *5 *6 *7)))))
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1142 *6))
+ (-4 *6 (-13 (-27) (-405 *5)))
+ (-4 *5 (-13 (-784) (-514) (-962 (-522)))) (-4 *8 (-1142 (-382 *7)))
+ (-5 *2 (-539 *3)) (-5 *1 (-510 *5 *6 *7 *8 *3))
+ (-4 *3 (-317 *6 *7 *8)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4))
- (-4 *4 (-324)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1081 (-881 *6))) (-4 *6 (-514))
- (-4 *2 (-878 (-382 (-881 *6)) *5 *4)) (-5 *1 (-670 *5 *4 *6 *2))
- (-4 *5 (-730))
- (-4 *4 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-693)))))
-(((*1 *1 *1) (-4 *1 (-574)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-575 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928) (-1106))))))
+ (-12
+ (-5 *3
+ (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354))
+ (|:| |expense| (-354)) (|:| |accuracy| (-354))
+ (|:| |intermediateResults| (-354))))
+ (-5 *2 (-960)) (-5 *1 (-281)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-647 *3)) (-5 *1 (-764 *2 *3)) (-4 *3 (-971)))))
+(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-411)))))
(((*1 *2 *3)
- (-12 (-4 *3 (-1142 (-382 (-522))))
- (-5 *2 (-2 (|:| |den| (-522)) (|:| |gcdnum| (-522))))
- (-5 *1 (-842 *3 *4)) (-4 *4 (-1142 (-382 *3)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1142 (-382 *2))) (-5 *2 (-522)) (-5 *1 (-842 *4 *3))
- (-4 *3 (-1142 (-382 *4))))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-588 (-881 *3))) (-4 *3 (-426))
- (-5 *1 (-335 *3 *4)) (-14 *4 (-588 (-1085)))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-588 (-717 *3 (-794 *4)))) (-4 *3 (-426))
- (-14 *4 (-588 (-1085))) (-5 *1 (-573 *3 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-108)))))
+ (-12 (-4 *4 (-13 (-784) (-514) (-962 (-522)))) (-5 *2 (-382 (-522)))
+ (-5 *1 (-408 *4 *3)) (-4 *3 (-405 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-561 *3)) (-4 *3 (-405 *5))
+ (-4 *5 (-13 (-784) (-514) (-962 (-522))))
+ (-5 *2 (-1081 (-382 (-522)))) (-5 *1 (-408 *5 *3)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-301 *3 *4)) (-4 *3 (-971))
+ (-4 *4 (-729)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *2 (-1014)) (-5 *1 (-1098 *3 *2)) (-4 *3 (-1014)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *8 (-985 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |val| (-588 *8)) (|:| |towers| (-588 (-952 *5 *6 *7 *8)))))
+ (-5 *1 (-952 *5 *6 *7 *8)) (-5 *3 (-588 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-108)) (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *8 (-985 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |val| (-588 *8))
+ (|:| |towers| (-588 (-1056 *5 *6 *7 *8)))))
+ (-5 *1 (-1056 *5 *6 *7 *8)) (-5 *3 (-588 *8)))))
(((*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-156))))
((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1167))))
((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *1) (-5 *1 (-412))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-278)) (-5 *3 (-1085)) (-5 *2 (-108))))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-278)) (-5 *2 (-108)))))
-(((*1 *1) (-5 *1 (-517))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085)) (-5 *2 (-1 (-202) (-202))) (-5 *1 (-642 *3))
+ (-4 *3 (-563 (-498)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1085)) (-5 *2 (-1 (-202) (-202) (-202)))
+ (-5 *1 (-642 *3)) (-4 *3 (-563 (-498))))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-338)) (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4)))
+ (-5 *2 (-1166 *6)) (-5 *1 (-311 *3 *4 *5 *6))
+ (-4 *6 (-317 *3 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784))
+ (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-108)))))
+(((*1 *2 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-628 *4)) (-5 *3 (-708)) (-4 *4 (-971))
+ (-5 *1 (-629 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-971)) (-4 *3 (-1142 *4)) (-4 *2 (-1157 *4))
- (-5 *1 (-1160 *4 *3 *5 *2)) (-4 *5 (-598 *3)))))
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-522))) (-5 *1 (-969)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-171))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-276))))
+ (-12 (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-283)) (-5 *2 (-393 *3))
+ (-5 *1 (-680 *4 *5 *6 *3)) (-4 *3 (-878 *6 *4 *5)))))
+(((*1 *2)
+ (-12 (-4 *4 (-338)) (-5 *2 (-850)) (-5 *1 (-303 *3 *4))
+ (-4 *3 (-304 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-338)) (-5 *2 (-770 (-850))) (-5 *1 (-303 *3 *4))
+ (-4 *3 (-304 *4))))
+ ((*1 *2) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-850))))
+ ((*1 *2)
+ (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-770 (-850))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *2)) (-5 *4 (-1 (-108) *2 *2)) (-5 *1 (-1121 *2))
+ (-4 *2 (-1014))))
((*1 *2 *3)
- (-12 (-5 *3 (-588 (-202))) (-5 *2 (-588 (-1068))) (-5 *1 (-281)))))
-(((*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-233)))))
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-784))
+ (-5 *1 (-1121 *2)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1114 *4 *5 *3 *6)) (-4 *4 (-514)) (-4 *5 (-730))
+ (-4 *3 (-784)) (-4 *6 (-985 *4 *5 *3)) (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-108)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-270 (-777 *3))) (-4 *3 (-13 (-27) (-1106) (-405 *5)))
- (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2
- (-3 (-777 *3)
- (-2 (|:| |leftHandLimit| (-3 (-777 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-777 *3) "failed")))
- "failed"))
- (-5 *1 (-581 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-270 *3)) (-5 *5 (-1068))
- (-4 *3 (-13 (-27) (-1106) (-405 *6)))
- (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-777 *3)) (-5 *1 (-581 *6 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-270 (-777 (-881 *5)))) (-4 *5 (-426))
- (-5 *2
- (-3 (-777 (-382 (-881 *5)))
- (-2 (|:| |leftHandLimit| (-3 (-777 (-382 (-881 *5))) "failed"))
- (|:| |rightHandLimit| (-3 (-777 (-382 (-881 *5))) "failed")))
- "failed"))
- (-5 *1 (-582 *5)) (-5 *3 (-382 (-881 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-270 (-382 (-881 *5)))) (-5 *3 (-382 (-881 *5)))
- (-4 *5 (-426))
- (-5 *2
- (-3 (-777 *3)
- (-2 (|:| |leftHandLimit| (-3 (-777 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-777 *3) "failed")))
- "failed"))
- (-5 *1 (-582 *5))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-270 (-382 (-881 *6)))) (-5 *5 (-1068))
- (-5 *3 (-382 (-881 *6))) (-4 *6 (-426)) (-5 *2 (-777 *3))
- (-5 *1 (-582 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-426)) (-4 *3 (-784)) (-4 *3 (-962 (-522)))
- (-4 *3 (-514)) (-5 *1 (-40 *3 *2)) (-4 *2 (-405 *3))
- (-4 *2
- (-13 (-338) (-278)
- (-10 -8 (-15 -2805 ((-1037 *3 (-561 $)) $))
- (-15 -2816 ((-1037 *3 (-561 $)) $))
- (-15 -2190 ($ (-1037 *3 (-561 $))))))))))
+ (|partial| -12 (-5 *3 (-110)) (-5 *4 (-588 *2)) (-5 *1 (-109 *2))
+ (-4 *2 (-1014))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 (-588 *4))) (-4 *4 (-1014))
+ (-5 *1 (-109 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-110)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1014))
+ (-5 *1 (-109 *4))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-110)) (-5 *2 (-1 *4 (-588 *4)))
+ (-5 *1 (-109 *4)) (-4 *4 (-1014))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-590 *3)) (-4 *3 (-971))
+ (-5 *1 (-652 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-771 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1122)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-514) (-784))) (-5 *2 (-154 *5))
+ (-5 *1 (-551 *4 *5 *3)) (-4 *5 (-13 (-405 *4) (-928) (-1106)))
+ (-4 *3 (-13 (-405 (-154 *4)) (-928) (-1106))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1166 *5)) (-4 *5 (-729)) (-5 *2 (-108))
+ (-5 *1 (-779 *4 *5)) (-14 *4 (-708)))))
+(((*1 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-343)) (-4 *2 (-338)))))
(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964)))))
-(((*1 *2 *2) (-12 (-5 *2 (-628 *3)) (-4 *3 (-283)) (-5 *1 (-638 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *3)
+ (-12 (-4 *2 (-1142 *4)) (-5 *1 (-746 *4 *2 *3 *5))
+ (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2))
+ (-4 *5 (-598 (-382 *2))))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-212 *3))
+ (-4 *3 (-1014))))
+ ((*1 *1 *2 *1)
+ (-12 (|has| *1 (-6 -4238)) (-4 *1 (-212 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)) (-4 *2 (-1014))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-258 *3)) (-4 *3 (-1120))))
+ ((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-559 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *2 (-1 (-108) *4)) (-5 *3 (-522)) (-4 *4 (-1014))
+ (-5 *1 (-675 *4))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-522)) (-5 *1 (-675 *2)) (-4 *2 (-1014))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33)))
+ (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-507))
+ (-5 *2 (-382 (-522)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-382 (-522))) (-5 *1 (-393 *3)) (-4 *3 (-507))
+ (-4 *3 (-514))))
+ ((*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-382 (-522)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-734 *3)) (-4 *3 (-157)) (-4 *3 (-507))
+ (-5 *2 (-382 (-522)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-382 (-522))) (-5 *1 (-770 *3)) (-4 *3 (-507))
+ (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-382 (-522))) (-5 *1 (-777 *3)) (-4 *3 (-507))
+ (-4 *3 (-1014))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-923 *3)) (-4 *3 (-157)) (-4 *3 (-507))
+ (-5 *2 (-382 (-522)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-382 (-522))) (-5 *1 (-934 *3)) (-4 *3 (-962 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
+(((*1 *1) (-5 *1 (-412))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *3))
+ (-4 *3 (-1120))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-615 *3)) (-4 *3 (-1120))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-4 *1 (-1114 *4 *5 *3 *2)) (-4 *4 (-514))
+ (-4 *5 (-730)) (-4 *3 (-784)) (-4 *2 (-985 *4 *5 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-708)) (-5 *1 (-1118 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))))
+(((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169))))
+ ((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))))
(((*1 *2)
- (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
- (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171))
- (-5 *1 (-991 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6))))
+ (-12 (-5 *2 (-1166 (-1015 *3 *4))) (-5 *1 (-1015 *3 *4))
+ (-14 *3 (-850)) (-14 *4 (-850)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-708)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 (-522))
+ (-14 *4 *2) (-4 *5 (-157))))
((*1 *2)
- (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
- (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171))
- (-5 *1 (-1022 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))))
-(((*1 *1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-792)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124))
- (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1101)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-104))) (-5 *1 (-159)))))
+ (-12 (-4 *4 (-157)) (-5 *2 (-850)) (-5 *1 (-150 *3 *4))
+ (-4 *3 (-151 *4))))
+ ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-850))))
+ ((*1 *2)
+ (-12 (-4 *1 (-345 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3))
+ (-5 *2 (-850))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-338)) (-4 *5 (-348 *4)) (-4 *6 (-348 *4))
+ (-5 *2 (-708)) (-5 *1 (-489 *4 *5 *6 *3)) (-4 *3 (-626 *4 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-338))
+ (-5 *2 (-708)) (-5 *1 (-609 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239))))
+ (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-5 *2 (-708))
+ (-5 *1 (-610 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-4 *3 (-514)) (-5 *2 (-708))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-4 *4 (-157)) (-4 *5 (-348 *4))
+ (-4 *6 (-348 *4)) (-5 *2 (-708)) (-5 *1 (-627 *4 *5 *6 *3))
+ (-4 *3 (-626 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
+ (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-4 *5 (-514))
+ (-5 *2 (-708)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-291 (-202))) (-5 *2 (-291 (-354))) (-5 *1 (-281)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-784)) (-5 *2 (-108)))))
+ (|partial| -12
+ (-4 *3 (-13 (-784) (-962 (-522)) (-584 (-522)) (-426)))
+ (-5 *2
+ (-2
+ (|:| |%term|
+ (-2 (|:| |%coef| (-1151 *4 *5 *6))
+ (|:| |%expon| (-294 *4 *5 *6))
+ (|:| |%expTerms|
+ (-588 (-2 (|:| |k| (-382 (-522))) (|:| |c| *4))))))
+ (|:| |%type| (-1068))))
+ (-5 *1 (-1152 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1106) (-405 *3)))
+ (-14 *5 (-1085)) (-14 *6 *4))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-522)) (|has| *1 (-6 -4229)) (-4 *1 (-379))
+ (-5 *2 (-850)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-336 (-110))) (-4 *2 (-971)) (-5 *1 (-652 *2 *4))
+ (-4 *4 (-590 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-336 (-110))) (-5 *1 (-771 *2)) (-4 *2 (-971)))))
+(((*1 *1 *1) (-5 *1 (-202))) ((*1 *1 *1) (-5 *1 (-354)))
+ ((*1 *1) (-5 *1 (-354))))
(((*1 *2)
(-12 (-14 *4 *2) (-4 *5 (-1120)) (-5 *2 (-708))
(-5 *1 (-214 *3 *4 *5)) (-4 *3 (-215 *4 *5))))
@@ -14499,44 +14766,16 @@
(-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3))
(-4 *3 (-1142 *2)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-139 *3))
- (-4 *3 (-1120))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-615 *3)) (-4 *3 (-1120))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-4 *1 (-1114 *4 *5 *3 *2)) (-4 *4 (-514))
- (-4 *5 (-730)) (-4 *3 (-784)) (-4 *2 (-985 *4 *5 *3))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-708)) (-5 *1 (-1118 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-239))) (-5 *4 (-1085)) (-5 *2 (-108))
- (-5 *1 (-239)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-708)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-685)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-4 *5 (-405 *4))
- (-5 *2
- (-3 (|:| |overq| (-1081 (-382 (-522))))
- (|:| |overan| (-1081 (-47))) (|:| -3083 (-108))))
- (-5 *1 (-410 *4 *5 *3)) (-4 *3 (-1142 *5)))))
+(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-419 *3)) (-4 *3 (-971)))))
(((*1 *1 *1 *2)
(-12 (-4 *1 (-46 *2 *3)) (-4 *2 (-971)) (-4 *3 (-729))
(-4 *2 (-338))))
((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-202))))
((*1 *1 *1 *1)
- (-3708 (-12 (-5 *1 (-270 *2)) (-4 *2 (-338)) (-4 *2 (-1120)))
+ (-3844 (-12 (-5 *1 (-270 *2)) (-4 *2 (-338)) (-4 *2 (-1120)))
(-12 (-5 *1 (-270 *2)) (-4 *2 (-447)) (-4 *2 (-1120)))))
((*1 *1 *1 *1) (-4 *1 (-338)))
((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-354))))
@@ -14584,51 +14823,51 @@
((*1 *1 *1 *2)
(-12 (-5 *1 (-1187 *2 *3)) (-4 *2 (-338)) (-4 *2 (-971))
(-4 *3 (-780)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-843 *3)) (-4 *3 (-283)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-108) *4 *4)) (-4 *4 (-1120)) (-5 *1 (-350 *4 *2))
- (-4 *2 (-13 (-348 *4) (-10 -7 (-6 -4239)))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-708)) (-5 *1 (-616 *3)) (-4 *3 (-971)) (-4 *3 (-1014)))))
+(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
+ (-12 (-5 *2 (-522))
+ (-5 *3
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-708)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-730)) (-4 *4 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *7 (-784))
+ (-5 *1 (-423 *5 *6 *7 *4)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *2 (-108)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1081 *1)) (-5 *4 (-1085)) (-4 *1 (-27))
- (-5 *2 (-588 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1081 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-881 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-588 *1))
- (-4 *1 (-29 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *2 (-588 *1)) (-4 *1 (-29 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-291 (-202))) (-5 *4 (-588 (-1085)))
- (-5 *5 (-1009 (-777 (-202)))) (-5 *2 (-1066 (-202))) (-5 *1 (-276)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-590 *5)) (-4 *5 (-971))
- (-5 *1 (-52 *5 *2 *3)) (-4 *3 (-786 *5))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-628 *3)) (-4 *1 (-392 *3)) (-4 *3 (-157))))
- ((*1 *2 *1 *2 *2) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971))))
- ((*1 *2 *3 *2 *2 *4 *5)
- (-12 (-5 *4 (-94 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-971))
- (-5 *1 (-787 *2 *3)) (-4 *3 (-786 *2)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-324)) (-4 *2 (-971)) (-5 *1 (-650 *2 *3))
- (-4 *3 (-1142 *2)))))
+ (-12 (-5 *3 (-588 (-628 *5))) (-5 *4 (-1166 *5)) (-4 *5 (-283))
+ (-4 *5 (-971)) (-5 *2 (-628 *5)) (-5 *1 (-954 *5)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-588 *8)) (-5 *3 (-1 (-108) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514))
+ (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-904 *5 *6 *7 *8)))))
+(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
+ (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE)))) (-5 *4 (-202))
+ (-5 *2 (-960)) (-5 *1 (-693))))
+ ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
+ (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE)))) (-5 *8 (-363))
+ (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-693)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-305)))))
(((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-108) *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-971)) (-4 *2 (-626 *4 *5 *6))
- (-5 *1 (-99 *4 *3 *2 *5 *6)) (-4 *3 (-1142 *4)) (-4 *5 (-348 *4))
- (-4 *6 (-348 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-338)) (-4 *4 (-348 *3)) (-4 *5 (-348 *3))
+ (-5 *1 (-489 *3 *4 *5 *2)) (-4 *2 (-626 *3 *4 *5)))))
(((*1 *1 *1 *1) (-4 *1 (-21))) ((*1 *1 *1) (-4 *1 (-21)))
((*1 *1 *1 *1) (|partial| -5 *1 (-126)))
((*1 *1 *1 *1)
(-12 (-5 *1 (-192 *2))
(-4 *2
(-13 (-784)
- (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 ((-1171) $))
- (-15 -2664 ((-1171) $)))))))
+ (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 ((-1171) $))
+ (-15 -2113 ((-1171) $)))))))
((*1 *1 *1 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120))))
((*1 *1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120))))
((*1 *1 *1 *1)
@@ -14648,39 +14887,52 @@
((*1 *2 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117))))
((*1 *1 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-21))))
((*1 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-21)))))
-(((*1 *2 *1) (-12 (-4 *1 (-242 *2)) (-4 *2 (-784))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-794 *3)) (-14 *3 (-588 *2))))
- ((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-894 *3)) (-4 *3 (-895))))
- ((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-916))))
- ((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1007 *3)) (-4 *3 (-1120))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729))
- (-5 *2 (-1085))))
- ((*1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1162 *3)) (-14 *3 *2))))
-(((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
- (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-588 (-952 *5 *6 *7 *8))) (-5 *1 (-952 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-108)) (-4 *8 (-985 *5 *6 *7))
- (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-5 *2 (-588 (-1056 *5 *6 *7 *8))) (-5 *1 (-1056 *5 *6 *7 *8)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *2)
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1166 (-588 (-2 (|:| -3526 *4) (|:| -2882 (-1032))))))
+ (-4 *4 (-324)) (-5 *2 (-708)) (-5 *1 (-321 *4))))
+ ((*1 *2)
+ (-12 (-5 *2 (-708)) (-5 *1 (-326 *3 *4)) (-14 *3 (-850))
+ (-14 *4 (-850))))
+ ((*1 *2)
+ (-12 (-5 *2 (-708)) (-5 *1 (-327 *3 *4)) (-4 *3 (-324))
+ (-14 *4
+ (-3 (-1081 *3)
+ (-1166 (-588 (-2 (|:| -3526 *3) (|:| -2882 (-1032)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-708)) (-5 *1 (-328 *3 *4)) (-4 *3 (-324))
+ (-14 *4 (-850)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-588 *5)) (-5 *4 (-522)) (-4 *5 (-782)) (-4 *5 (-338))
+ (-5 *2 (-708)) (-5 *1 (-874 *5 *6)) (-4 *6 (-1142 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-27))
+ (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))
+ (-4 *5 (-1142 *4)) (-5 *2 (-588 (-595 (-382 *5))))
+ (-5 *1 (-599 *4 *5)) (-5 *3 (-595 (-382 *5))))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-135)) (-4 *2 (-283)) (-4 *2 (-426)) (-4 *3 (-784))
+ (-4 *4 (-730)) (-5 *1 (-914 *2 *3 *4 *5)) (-4 *5 (-878 *2 *4 *3))))
+ ((*1 *2 *3) (-12 (-5 *3 (-47)) (-5 *2 (-291 (-522))) (-5 *1 (-1031))))
+ ((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
(-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1068)) (-5 *1 (-916))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1085)) (-5 *3 (-1009 *4)) (-4 *4 (-1120))
- (-5 *1 (-1007 *4)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-903 *4 *5 *3 *6)) (-4 *4 (-971)) (-4 *5 (-730))
- (-4 *3 (-784)) (-4 *6 (-985 *4 *5 *3)) (-5 *2 (-108)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-1120)))))
+(((*1 *2 *1)
+ (-12 (-4 *4 (-1014)) (-5 *2 (-818 *3 *4)) (-5 *1 (-814 *3 *4 *5))
+ (-4 *3 (-1014)) (-4 *5 (-608 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-514)) (-5 *2 (-588 (-628 *3))) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-392 *3)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-590 *5)) (-4 *5 (-971))
+ (-5 *1 (-52 *5 *2 *3)) (-4 *3 (-786 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-628 *3)) (-4 *1 (-392 *3)) (-4 *3 (-157))))
+ ((*1 *2 *1 *2 *2) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971))))
+ ((*1 *2 *3 *2 *2 *4 *5)
+ (-12 (-5 *4 (-94 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-971))
+ (-5 *1 (-787 *2 *3)) (-4 *3 (-786 *2)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-850)) (-4 *6 (-13 (-514) (-784)))
(-5 *2 (-588 (-291 *6))) (-5 *1 (-198 *5 *6)) (-5 *3 (-291 *6))
@@ -14707,16 +14959,23 @@
((*1 *2 *1)
(-12 (-5 *2 (-1179 *3 *4)) (-5 *1 (-1188 *3 *4)) (-4 *3 (-784))
(-4 *4 (-971)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4))
- (-4 *4 (-324)))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-1081 (-881 *4))) (-5 *1 (-391 *3 *4))
+ (-4 *3 (-392 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-4 *3 (-338))
+ (-5 *2 (-1081 (-881 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
(((*1 *1 *1 *1) (-4 *1 (-25))) ((*1 *1 *1 *1) (-5 *1 (-143)))
((*1 *1 *1 *1)
(-12 (-5 *1 (-192 *2))
(-4 *2
(-13 (-784)
- (-10 -8 (-15 -2545 ((-1068) $ (-1085))) (-15 -1678 ((-1171) $))
- (-15 -2664 ((-1171) $)))))))
+ (-10 -8 (-15 -2683 ((-1068) $ (-1085))) (-15 -1757 ((-1171) $))
+ (-15 -2113 ((-1171) $)))))))
((*1 *1 *1 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-25)) (-4 *2 (-1120))))
((*1 *1 *2 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-25)) (-4 *2 (-1120))))
((*1 *1 *2 *1)
@@ -14739,73 +14998,109 @@
(-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3))))
((*1 *2 *2 *2) (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117))))
((*1 *1 *1 *1) (-12 (-4 *1 (-1164 *2)) (-4 *2 (-1120)) (-4 *2 (-25)))))
-(((*1 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
- ((*1 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *1 *1) (-4 *1 (-1049))))
+(((*1 *2 *1) (-12 (-4 *1 (-242 *2)) (-4 *2 (-784))))
+ ((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-794 *3)) (-14 *3 (-588 *2))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-894 *3)) (-4 *3 (-895))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-916))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1007 *3)) (-4 *3 (-1120))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1144 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729))
+ (-5 *2 (-1085))))
+ ((*1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-1162 *3)) (-14 *3 *2))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-695)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-108)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
+ (-5 *2 (-108)))))
+(((*1 *1 *2 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-1068)) (-5 *1 (-916))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1085)) (-5 *3 (-1009 *4)) (-4 *4 (-1120))
+ (-5 *1 (-1007 *4)))))
(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-697)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *2 (-784))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202)))
- (-5 *2 (-960)) (-5 *1 (-685)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-850)) (-4 *5 (-514)) (-5 *2 (-628 *5))
- (-5 *1 (-884 *5 *3)) (-4 *3 (-598 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-675 *3))))
- ((*1 *1 *2) (-12 (-5 *1 (-675 *2)) (-4 *2 (-1014))))
- ((*1 *1) (-12 (-5 *1 (-675 *2)) (-4 *2 (-1014)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-256))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
+ (-5 *1 (-160 *3)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-1120)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085))
- (-4 *4 (-13 (-283) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *1 (-401 *4 *2)) (-4 *2 (-13 (-1106) (-29 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-382 (-881 *5))) (-5 *4 (-1085)) (-4 *5 (-135))
- (-4 *5 (-13 (-426) (-962 (-522)) (-784) (-584 (-522))))
- (-5 *2 (-291 *5)) (-5 *1 (-542 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-108)) (-5 *3 (-588 (-239))) (-5 *1 (-237)))))
(((*1 *2 *3)
(-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-493 *3)) (-4 *3 (-13 (-664) (-25))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-628 (-382 (-881 (-522)))))
- (-5 *2 (-588 (-628 (-291 (-522))))) (-5 *1 (-956)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-850))) (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1014)) (-4 *3 (-829 *5)) (-5 *2 (-628 *3))
- (-5 *1 (-630 *5 *3 *6 *4)) (-4 *6 (-348 *3))
- (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4238)))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-757)) (-14 *5 (-1085))
- (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157))
- (-5 *2 (-1166 (-628 *4)))))
- ((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-1166 (-628 *4))) (-5 *1 (-391 *3 *4))
- (-4 *3 (-392 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-1166 (-628 *3)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-1085))) (-4 *5 (-338))
- (-5 *2 (-1166 (-628 (-382 (-881 *5))))) (-5 *1 (-1002 *5))
- (-5 *4 (-628 (-382 (-881 *5))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-1085))) (-4 *5 (-338))
- (-5 *2 (-1166 (-628 (-881 *5)))) (-5 *1 (-1002 *5))
- (-5 *4 (-628 (-881 *5)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-628 *4))) (-4 *4 (-338))
- (-5 *2 (-1166 (-628 *4))) (-5 *1 (-1002 *4)))))
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4))
+ (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-229 *2 *3 *4 *5)) (-4 *2 (-971)) (-4 *3 (-784))
+ (-4 *4 (-242 *3)) (-4 *5 (-730)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1142 (-382 (-522)))) (-5 *1 (-842 *3 *2))
+ (-4 *2 (-1142 (-382 *3))))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-46 *2 *3)) (-4 *3 (-729)) (-4 *2 (-971))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *2 (-971)) (-5 *1 (-49 *2 *3)) (-14 *3 (-588 (-1085)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-588 (-850))) (-4 *2 (-338)) (-5 *1 (-140 *4 *2 *5))
+ (-14 *4 (-850)) (-14 *5 (-920 *4 *2))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-291 *3)) (-5 *1 (-200 *3 *4))
+ (-4 *3 (-13 (-971) (-784))) (-14 *4 (-588 (-1085)))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-298 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-124))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-357 *2 *3)) (-4 *3 (-1014)) (-4 *2 (-971))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-522)) (-4 *2 (-514)) (-5 *1 (-569 *2 *4))
+ (-4 *4 (-1142 *2))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-647 *2)) (-4 *2 (-971))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *2 (-971)) (-5 *1 (-673 *2 *3)) (-4 *3 (-664))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 *5)) (-5 *3 (-588 (-708))) (-4 *1 (-678 *4 *5))
+ (-4 *4 (-971)) (-4 *5 (-784))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-708)) (-4 *1 (-678 *4 *2)) (-4 *4 (-971))
+ (-4 *2 (-784))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-708)) (-4 *1 (-786 *2)) (-4 *2 (-971))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 *6)) (-5 *3 (-588 (-708))) (-4 *1 (-878 *4 *5 *6))
+ (-4 *4 (-971)) (-4 *5 (-730)) (-4 *6 (-784))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-708)) (-4 *1 (-878 *4 *5 *2)) (-4 *4 (-971))
+ (-4 *5 (-730)) (-4 *2 (-784))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-708)) (-4 *2 (-878 *4 (-494 *5) *5))
+ (-5 *1 (-1038 *4 *5 *2)) (-4 *4 (-971)) (-4 *5 (-784))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-708)) (-5 *2 (-881 *4)) (-5 *1 (-1115 *4))
+ (-4 *4 (-971)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-730)) (-4 *6 (-784)) (-4 *3 (-514))
+ (-4 *7 (-878 *3 *5 *6))
+ (-5 *2 (-2 (|:| -3858 (-708)) (|:| -3112 *8) (|:| |radicand| *8)))
+ (-5 *1 (-882 *5 *6 *3 *7 *8)) (-5 *4 (-708))
+ (-4 *8
+ (-13 (-338)
+ (-10 -8 (-15 -2947 (*7 $)) (-15 -2959 (*7 $)) (-15 -2217 ($ *7))))))))
(((*1 *2 *1)
- (-12 (-4 *2 (-1014)) (-5 *1 (-892 *3 *2)) (-4 *3 (-1014)))))
+ (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-561 *3)) (-4 *3 (-784)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-850)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
+ ((*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-239)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-1120)))))
(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-793))))
@@ -14815,30 +15110,33 @@
((*1 *2 *3 *1)
(-12 (-5 *3 (-522)) (-5 *2 (-1171)) (-5 *1 (-1066 *4))
(-4 *4 (-1014)) (-4 *4 (-1120)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-393 (-1081 (-522)))) (-5 *1 (-170)) (-5 *3 (-522)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-821 *4)) (-4 *4 (-1014)) (-5 *2 (-108))
- (-5 *1 (-818 *4 *5)) (-4 *5 (-1014))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-821 *5)) (-4 *5 (-1014)) (-5 *2 (-108))
- (-5 *1 (-819 *5 *3)) (-4 *3 (-1120))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *6)) (-5 *4 (-821 *5)) (-4 *5 (-1014))
- (-4 *6 (-1120)) (-5 *2 (-108)) (-5 *1 (-819 *5 *6)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-588 (-522))) (-5 *3 (-628 (-522))) (-5 *1 (-1024)))))
+(((*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168))))
+ ((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))))
+(((*1 *2 *3) (-12 (-5 *3 (-202)) (-5 *2 (-291 (-354))) (-5 *1 (-281)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1142 *3)) (-4 *3 (-971)))))
+(((*1 *2 *1 *2) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))))
+(((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169))))
+ ((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))))
(((*1 *1 *1 *2)
(-12
(-5 *2
- (-2 (|:| -2337 (-588 (-792))) (|:| -1210 (-588 (-792)))
- (|:| |presup| (-588 (-792))) (|:| -4123 (-588 (-792)))
+ (-2 (|:| -1949 (-588 (-792))) (|:| -1827 (-588 (-792)))
+ (|:| |presup| (-588 (-792))) (|:| -2482 (-588 (-792)))
(|:| |args| (-588 (-792)))))
(-5 *1 (-1085))))
((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-588 (-792)))) (-5 *1 (-1085)))))
-(((*1 *1 *2) (-12 (-4 *1 (-608 *2)) (-4 *2 (-1120))))
- ((*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1085)))))
-(((*1 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-343)) (-4 *2 (-1014)))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-588 *2)) (-4 *2 (-1014)) (-4 *2 (-1120)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1085))
+ (-4 *5 (-13 (-514) (-962 (-522)) (-135)))
+ (-5 *2
+ (-2 (|:| -2585 (-382 (-881 *5))) (|:| |coeff| (-382 (-881 *5)))))
+ (-5 *1 (-528 *5)) (-5 *3 (-382 (-881 *5))))))
+(((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
(((*1 *2 *3 *3)
(-12 (-5 *3 (-708)) (-5 *2 (-1166 (-588 (-522)))) (-5 *1 (-453))))
((*1 *1 *2 *3)
@@ -14846,435 +15144,656 @@
((*1 *1 *2 *3)
(-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3))))
((*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1120)) (-5 *1 (-1066 *3)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-522)) (|has| *1 (-6 -4239)) (-4 *1 (-348 *3))
- (-4 *3 (-1120)))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-405 *3) (-928))) (-5 *1 (-252 *3 *2))
- (-4 *3 (-13 (-784) (-514))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1017 *3 *4 *5 *6 *2)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))))
+ (-12 (-4 *3 (-971)) (-5 *2 (-1166 *3)) (-5 *1 (-650 *3 *4))
+ (-4 *4 (-1142 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-522)) (-5 *1 (-419 *3)) (-4 *3 (-379)) (-4 *3 (-971)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108))))
((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *1 *1) (-4 *1 (-798 *2))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-626 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-348 *2))
- (-4 *4 (-348 *2)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1081 *1)) (-4 *1 (-938)))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-872 *5)) (-5 *3 (-708)) (-4 *5 (-971))
+ (-5 *1 (-1074 *4 *5)) (-14 *4 (-850)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| -2905 (-628 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-628 *3))))
+ (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $)))))
+ (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))))
(((*1 *2)
- (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+ (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-850)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *2 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-79 FCN)))) (-5 *2 (-960))
+ (-5 *1 (-684)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085)))
+ (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
+ ((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085)))
+ (-14 *4 (-588 (-1085))) (-4 *5 (-362)))))
+(((*1 *2) (-12 (-4 *2 (-157)) (-5 *1 (-150 *3 *2)) (-4 *3 (-151 *2))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *2 *4)) (-4 *4 (-1142 *2))
+ (-4 *2 (-157))))
+ ((*1 *2)
+ (-12 (-4 *4 (-1142 *2)) (-4 *2 (-157)) (-5 *1 (-383 *3 *2 *4))
+ (-4 *3 (-384 *2 *4))))
+ ((*1 *2) (-12 (-4 *1 (-384 *2 *3)) (-4 *3 (-1142 *2)) (-4 *2 (-157))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1142 *2)) (-5 *2 (-522)) (-5 *1 (-705 *3 *4))
+ (-4 *4 (-384 *2 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-878 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *2 (-784)) (-4 *3 (-157))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-514)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1142 *2)) (-4 *2 (-971)) (-4 *2 (-157)))))
+(((*1 *1 *2) (-12 (-4 *1 (-608 *2)) (-4 *2 (-1120))))
+ ((*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1085)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *3))))
+ (-5 *1 (-547 *3)) (-4 *3 (-971)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-613 *3)) (-4 *3 (-784)) (-4 *1 (-349 *3 *4))
+ (-4 *4 (-157)))))
(((*1 *2 *1)
(-12 (-4 *1 (-229 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-784))
(-4 *5 (-730)) (-4 *2 (-242 *4)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5))
- (-4 *3 (-514)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-1177 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-588 *8)) (-5 *3 (-1 (-108) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-985 *5 *6 *7)) (-4 *5 (-514))
- (-4 *6 (-730)) (-4 *7 (-784)) (-5 *1 (-1177 *5 *6 *7 *8)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-465)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1017 *3 *4 *5 *6 *2)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108))))
((*1 *1 *1 *1) (-5 *1 (-792)))
((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-833 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-393 (-1081 *1))) (-5 *1 (-291 *4)) (-5 *3 (-1081 *1))
- (-4 *4 (-426)) (-4 *4 (-514)) (-4 *4 (-784))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971))
+ (-14 *4 (-588 (-1085)))))
((*1 *2 *3)
- (-12 (-4 *1 (-838)) (-5 *2 (-393 (-1081 *1))) (-5 *3 (-1081 *1)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-298 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-124)))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-405 *3) (-928))) (-5 *1 (-252 *3 *2))
- (-4 *3 (-13 (-784) (-514))))))
+ (-12 (-5 *3 (-51)) (-5 *2 (-108)) (-5 *1 (-50 *4)) (-4 *4 (-1120))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784)))
+ (-14 *4 (-588 (-1085)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-613 *3)) (-4 *3 (-784))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-617 *3)) (-4 *3 (-784))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-822 *3)) (-4 *3 (-784)))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *6 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-324)) (-5 *2 (-886 (-1081 *4))) (-5 *1 (-332 *4))
+ (-5 *3 (-1081 *4)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-850)) (-5 *4 (-803)) (-5 *2 (-1171)) (-5 *1 (-1167))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-588 (-1081 *7))) (-5 *3 (-1081 *7))
+ (-4 *7 (-878 *5 *6 *4)) (-4 *5 (-838)) (-4 *6 (-730))
+ (-4 *4 (-784)) (-5 *1 (-835 *5 *6 *4 *7)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-588 *7)) (-5 *5 (-588 (-588 *8))) (-4 *7 (-784))
+ (-4 *8 (-283)) (-4 *6 (-730)) (-4 *9 (-878 *8 *6 *7))
+ (-5 *2
+ (-2 (|:| |unitPart| *9)
+ (|:| |suPart|
+ (-588 (-2 (|:| -2006 (-1081 *9)) (|:| -3858 (-522)))))))
+ (-5 *1 (-680 *6 *7 *8 *9)) (-5 *3 (-1081 *9)))))
(((*1 *2 *3) (-12 (-5 *3 (-498)) (-5 *1 (-497 *2)) (-4 *2 (-1120))))
((*1 *2 *1) (-12 (-5 *2 (-51)) (-5 *1 (-498)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-981 (-949 *3) (-1081 (-949 *3))))
- (-5 *1 (-949 *3)) (-4 *3 (-13 (-782) (-338) (-947))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-588 (-561 *5))) (-5 *3 (-1085)) (-4 *5 (-405 *4))
- (-4 *4 (-784)) (-5 *1 (-531 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1089)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-628 *3))
+ (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $)))))
+ (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-628 *3))
+ (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $)))))
+ (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
+ (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 -4102)))) (-5 *3 (-202))
+ (-5 *2 (-960)) (-5 *1 (-686)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-453)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108))))
((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-766)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-588 *4)) (-4 *4 (-338)) (-5 *2 (-1166 *4))
- (-5 *1 (-751 *4 *3)) (-4 *3 (-598 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-5 *1 (-199 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1120)) (-4 *1 (-230 *3))))
- ((*1 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
+(((*1 *1 *1 *1) (-4 *1 (-447))) ((*1 *1 *1 *1) (-4 *1 (-699))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
+ ((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2))
+ (-4 *4 (-13 (-784) (-514))))))
+(((*1 *2)
+ (-12 (-4 *4 (-338)) (-5 *2 (-708)) (-5 *1 (-303 *3 *4))
+ (-4 *3 (-304 *4))))
+ ((*1 *2) (-12 (-4 *1 (-1183 *3)) (-4 *3 (-338)) (-5 *2 (-708)))))
(((*1 *2 *1)
(-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
(-4 *4 (-971)))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-708)) (-4 *5 (-338)) (-5 *2 (-382 *6))
- (-5 *1 (-796 *5 *4 *6)) (-4 *4 (-1157 *5)) (-4 *6 (-1142 *5))))
- ((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-708)) (-5 *4 (-1158 *5 *6 *7)) (-4 *5 (-338))
- (-14 *6 (-1085)) (-14 *7 *5) (-5 *2 (-382 (-1139 *6 *5)))
- (-5 *1 (-797 *5 *6 *7))))
- ((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-708)) (-5 *4 (-1158 *5 *6 *7)) (-4 *5 (-338))
- (-14 *6 (-1085)) (-14 *7 *5) (-5 *2 (-382 (-1139 *6 *5)))
- (-5 *1 (-797 *5 *6 *7)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-1136 *3 *2))
- (-4 *2 (-1142 *3)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1166 *4)) (-4 *4 (-584 (-522)))
- (-5 *2 (-1166 (-382 (-522)))) (-5 *1 (-1191 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-131)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507))))
+ ((*1 *1 *1 *1) (-5 *1 (-792)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-522))) (-5 *1 (-969))
+ (-5 *3 (-522)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1014)) (-4 *5 (-1014))
- (-4 *6 (-1014)) (-5 *2 (-1 *6 *5)) (-5 *1 (-623 *4 *5 *6)))))
+ (-12 (-5 *3 (-628 *8)) (-4 *8 (-878 *5 *7 *6))
+ (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085))))
+ (-4 *7 (-730))
+ (-5 *2
+ (-588
+ (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8))
+ (|:| |wcond| (-588 (-881 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1166 (-382 (-881 *5))))
+ (|:| -2905 (-588 (-1166 (-382 (-881 *5))))))))))
+ (-5 *1 (-853 *5 *6 *7 *8)) (-5 *4 (-588 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 *8)) (-5 *4 (-588 (-1085))) (-4 *8 (-878 *5 *7 *6))
+ (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085))))
+ (-4 *7 (-730))
+ (-5 *2
+ (-588
+ (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8))
+ (|:| |wcond| (-588 (-881 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1166 (-382 (-881 *5))))
+ (|:| -2905 (-588 (-1166 (-382 (-881 *5))))))))))
+ (-5 *1 (-853 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-628 *7)) (-4 *7 (-878 *4 *6 *5))
+ (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
+ (-4 *6 (-730))
+ (-5 *2
+ (-588
+ (-2 (|:| |eqzro| (-588 *7)) (|:| |neqzro| (-588 *7))
+ (|:| |wcond| (-588 (-881 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1166 (-382 (-881 *4))))
+ (|:| -2905 (-588 (-1166 (-382 (-881 *4))))))))))
+ (-5 *1 (-853 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-628 *9)) (-5 *5 (-850)) (-4 *9 (-878 *6 *8 *7))
+ (-4 *6 (-13 (-283) (-135))) (-4 *7 (-13 (-784) (-563 (-1085))))
+ (-4 *8 (-730))
+ (-5 *2
+ (-588
+ (-2 (|:| |eqzro| (-588 *9)) (|:| |neqzro| (-588 *9))
+ (|:| |wcond| (-588 (-881 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1166 (-382 (-881 *6))))
+ (|:| -2905 (-588 (-1166 (-382 (-881 *6))))))))))
+ (-5 *1 (-853 *6 *7 *8 *9)) (-5 *4 (-588 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-628 *9)) (-5 *4 (-588 (-1085))) (-5 *5 (-850))
+ (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135)))
+ (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730))
+ (-5 *2
+ (-588
+ (-2 (|:| |eqzro| (-588 *9)) (|:| |neqzro| (-588 *9))
+ (|:| |wcond| (-588 (-881 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1166 (-382 (-881 *6))))
+ (|:| -2905 (-588 (-1166 (-382 (-881 *6))))))))))
+ (-5 *1 (-853 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 *8)) (-5 *4 (-850)) (-4 *8 (-878 *5 *7 *6))
+ (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085))))
+ (-4 *7 (-730))
+ (-5 *2
+ (-588
+ (-2 (|:| |eqzro| (-588 *8)) (|:| |neqzro| (-588 *8))
+ (|:| |wcond| (-588 (-881 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1166 (-382 (-881 *5))))
+ (|:| -2905 (-588 (-1166 (-382 (-881 *5))))))))))
+ (-5 *1 (-853 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-628 *9)) (-5 *4 (-588 *9)) (-5 *5 (-1068))
+ (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135)))
+ (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-522))
+ (-5 *1 (-853 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-628 *9)) (-5 *4 (-588 (-1085))) (-5 *5 (-1068))
+ (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135)))
+ (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-522))
+ (-5 *1 (-853 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 *8)) (-5 *4 (-1068)) (-4 *8 (-878 *5 *7 *6))
+ (-4 *5 (-13 (-283) (-135))) (-4 *6 (-13 (-784) (-563 (-1085))))
+ (-4 *7 (-730)) (-5 *2 (-522)) (-5 *1 (-853 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-628 *10)) (-5 *4 (-588 *10)) (-5 *5 (-850))
+ (-5 *6 (-1068)) (-4 *10 (-878 *7 *9 *8)) (-4 *7 (-13 (-283) (-135)))
+ (-4 *8 (-13 (-784) (-563 (-1085)))) (-4 *9 (-730)) (-5 *2 (-522))
+ (-5 *1 (-853 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-628 *10)) (-5 *4 (-588 (-1085))) (-5 *5 (-850))
+ (-5 *6 (-1068)) (-4 *10 (-878 *7 *9 *8)) (-4 *7 (-13 (-283) (-135)))
+ (-4 *8 (-13 (-784) (-563 (-1085)))) (-4 *9 (-730)) (-5 *2 (-522))
+ (-5 *1 (-853 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-628 *9)) (-5 *4 (-850)) (-5 *5 (-1068))
+ (-4 *9 (-878 *6 *8 *7)) (-4 *6 (-13 (-283) (-135)))
+ (-4 *7 (-13 (-784) (-563 (-1085)))) (-4 *8 (-730)) (-5 *2 (-522))
+ (-5 *1 (-853 *6 *7 *8 *9)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-154 (-202)) (-154 (-202)))) (-5 *4 (-1009 (-202)))
+ (-5 *5 (-108)) (-5 *2 (-1168)) (-5 *1 (-233)))))
+(((*1 *1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1 *1) (-4 *1 (-119))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-784)) (-5 *2 (-108))))
((*1 *1 *1 *1) (-5 *1 (-792)))
((*1 *2 *1 *1) (-12 (-4 *1 (-832 *3)) (-4 *3 (-1014)) (-5 *2 (-108))))
((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-833 *3)) (-4 *3 (-1014))))
((*1 *2 *1 *1)
(-12 (-4 *1 (-1012 *3)) (-4 *3 (-1014)) (-5 *2 (-108)))))
+(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1169)))))
+(((*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 (-628 (-202))) (-5 *6 (-108)) (-5 *7 (-628 (-522)))
+ (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-63 QPHESS))))
+ (-5 *3 (-522)) (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-691)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-1074 3 *3))))
+ ((*1 *1) (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-1168))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1045 (-202))) (-5 *1 (-1168)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| -2149 (-628 (-382 (-881 *4))))
+ (|:| |vec| (-588 (-382 (-881 *4)))) (|:| -1692 (-708))
+ (|:| |rows| (-588 (-522))) (|:| |cols| (-588 (-522)))))
+ (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
+ (-4 *6 (-730))
+ (-5 *2
+ (-2 (|:| |partsol| (-1166 (-382 (-881 *4))))
+ (|:| -2905 (-588 (-1166 (-382 (-881 *4)))))))
+ (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))))
+(((*1 *1 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)) (-4 *2 (-1014))))
+ ((*1 *1 *1) (-12 (-4 *1 (-633 *2)) (-4 *2 (-1014)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1068)) (-5 *3 (-760)) (-5 *1 (-759)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-962 (-522))) (-4 *3 (-13 (-784) (-514)))
+ (-5 *1 (-31 *3 *2)) (-4 *2 (-405 *3))))
+ ((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-1081 *4)) (-5 *1 (-150 *3 *4))
+ (-4 *3 (-151 *4))))
+ ((*1 *1 *1) (-12 (-4 *1 (-971)) (-4 *1 (-278))))
+ ((*1 *2) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-1081 *3))))
+ ((*1 *2) (-12 (-4 *1 (-662 *3 *2)) (-4 *3 (-157)) (-4 *2 (-1142 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-987 *3 *2)) (-4 *3 (-13 (-782) (-338)))
+ (-4 *2 (-1142 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1016 *4)) (-4 *4 (-1014)) (-5 *2 (-1 *4))
+ (-5 *1 (-943 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-354))) (-5 *1 (-964)) (-5 *3 (-354))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1009 (-522))) (-5 *2 (-1 (-522))) (-5 *1 (-969)))))
+(((*1 *2)
+ (-12 (-4 *1 (-324))
+ (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1000 *3)) (-4 *3 (-125)))))
-(((*1 *2 *3 *4 *5 *6 *7 *6)
- (|partial| -12
- (-5 *5
- (-2 (|:| |contp| *3)
- (|:| -2976 (-588 (-2 (|:| |irr| *10) (|:| -2245 (-522)))))))
- (-5 *6 (-588 *3)) (-5 *7 (-588 *8)) (-4 *8 (-784)) (-4 *3 (-283))
- (-4 *10 (-878 *3 *9 *8)) (-4 *9 (-730))
- (-5 *2
- (-2 (|:| |polfac| (-588 *10)) (|:| |correct| *3)
- (|:| |corrfact| (-588 (-1081 *3)))))
- (-5 *1 (-571 *8 *9 *3 *10)) (-5 *4 (-588 (-1081 *3))))))
-(((*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1950 *3) (|:| |coef1| (-719 *3))))
- (-5 *1 (-719 *3)) (-4 *3 (-514)) (-4 *3 (-971)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-382 (-881 *5)))) (-5 *4 (-588 (-1085)))
+ (-4 *5 (-514)) (-5 *2 (-588 (-588 (-881 *5)))) (-5 *1 (-1091 *5)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1009 *3)) (-5 *1 (-1007 *3)) (-4 *3 (-1120))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120))))
+ ((*1 *1 *2) (-12 (-5 *1 (-1133 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1166 (-708))) (-5 *1 (-616 *3)) (-4 *3 (-1014)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-511)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-872 (-202)) (-202) (-202)))
+ (-5 *3 (-1 (-202) (-202) (-202) (-202))) (-5 *1 (-231)))))
+(((*1 *2 *2) (-12 (-5 *2 (-628 (-291 (-522)))) (-5 *1 (-956)))))
(((*1 *1 *2 *3)
(-12 (-5 *3 (-1068)) (-4 *1 (-339 *2 *4)) (-4 *2 (-1014))
(-4 *4 (-1014))))
((*1 *1 *2)
(-12 (-4 *1 (-339 *2 *3)) (-4 *2 (-1014)) (-4 *3 (-1014)))))
-(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
- (-12 (-5 *3 (-522)) (-5 *5 (-108)) (-5 *6 (-628 (-202)))
- (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-75 OBJFUN))))
- (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-691)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1081 *7)) (-4 *7 (-878 *6 *4 *5)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *6 (-971)) (-5 *2 (-1081 *6))
- (-5 *1 (-296 *4 *5 *6 *7)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514))
- (-5 *2 (-2 (|:| -2977 *4) (|:| -1353 *3) (|:| -3421 *3)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *2 (-2 (|:| -1353 *1) (|:| -3421 *1))) (-4 *1 (-985 *3 *4 *5))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-514)) (-4 *3 (-971))
- (-5 *2 (-2 (|:| -2977 *3) (|:| -1353 *1) (|:| -3421 *1)))
- (-4 *1 (-1142 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *4)) (-4 *4 (-338)) (-4 *2 (-1142 *4))
- (-5 *1 (-851 *4 *2)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1009 *3)) (-5 *1 (-1007 *3)) (-4 *3 (-1120))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120))))
- ((*1 *1 *2) (-12 (-5 *1 (-1133 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124))
- (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))))
-(((*1 *1)
- (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708))
- (-4 *4 (-157)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-33)) (-5 *2 (-108)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))))
-(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
- (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202)))
- (-5 *5 (-1009 (-202))) (-5 *6 (-522)) (-5 *2 (-1116 (-855)))
- (-5 *1 (-293))))
- ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202)))
- (-5 *5 (-1009 (-202))) (-5 *6 (-522)) (-5 *7 (-1068))
- (-5 *2 (-1116 (-855))) (-5 *1 (-293))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202)))
- (-5 *5 (-1009 (-202))) (-5 *6 (-202)) (-5 *7 (-522))
- (-5 *2 (-1116 (-855))) (-5 *1 (-293))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
- (-12 (-5 *3 (-291 (-522))) (-5 *4 (-1 (-202) (-202)))
- (-5 *5 (-1009 (-202))) (-5 *6 (-202)) (-5 *7 (-522)) (-5 *8 (-1068))
- (-5 *2 (-1116 (-855))) (-5 *1 (-293)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-104)) (-5 *1 (-159))))
- ((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1085)) (-5 *2 (-104)) (-5 *1 (-1001)))))
-(((*1 *2 *3) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-519)) (-5 *3 (-522)))))
+(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1 (-354))) (-5 *1 (-964)))))
+(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-154 (-202)))) (-5 *2 (-960))
+ (-5 *1 (-694)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-354)) (-5 *1 (-92)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108))))
((*1 *1 *2 *2) (-12 (-5 *1 (-270 *2)) (-4 *2 (-1120))))
((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409))))
((*1 *1 *1 *1) (-5 *1 (-792)))
((*1 *2 *1 *1) (-12 (-5 *2 (-108)) (-5 *1 (-951 *3)) (-4 *3 (-1120)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1068)) (-5 *1 (-1102)))))
+(((*1 *1 *1) (-5 *1 (-983))))
+(((*1 *2 *3 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |cycle?| (-108)) (|:| -3476 (-708)) (|:| |period| (-708))))
+ (-5 *1 (-1066 *4)) (-4 *4 (-1120)) (-5 *3 (-708)))))
+(((*1 *1 *1) (-12 (-4 *1 (-405 *2)) (-4 *2 (-784)) (-4 *2 (-971))))
+ ((*1 *1 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-784)) (-5 *2 (-1093 (-588 *4))) (-5 *1 (-1092 *4))
- (-5 *3 (-588 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-850)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
- ((*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-239)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-784)) (-5 *1 (-122 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-561 *4)) (-5 *1 (-560 *3 *4)) (-4 *3 (-784))
- (-4 *4 (-784)))))
+ (-12 (-5 *3 (-1093 (-588 *4))) (-4 *4 (-784))
+ (-5 *2 (-588 (-588 *4))) (-5 *1 (-1092 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-971)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338))
+ (-5 *2
+ (-2 (|:| |ir| (-539 (-382 *6))) (|:| |specpart| (-382 *6))
+ (|:| |polypart| *6)))
+ (-5 *1 (-532 *5 *6)) (-5 *3 (-382 *6)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-12 (-5 *2 (-1081 (-382 (-881 *3)))) (-5 *1 (-427 *3 *4 *5 *6))
(-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
(-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(((*1 *2 *1)
+(((*1 *2 *2 *2) (-12 (-5 *2 (-202)) (-5 *1 (-203))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-154 (-202))) (-5 *1 (-203))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-406 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1049))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-382 (-522))) (-5 *1 (-949 *3))
+ (-4 *3 (-13 (-782) (-338) (-947)))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3))
+ (-4 *3 (-1142 *2))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *1 (-987 *2 *3)) (-4 *2 (-13 (-782) (-338)))
+ (-4 *3 (-1142 *2)))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-588 (-1166 *4))) (-5 *1 (-341 *3 *4))
+ (-4 *3 (-342 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-4 *3 (-514))
+ (-5 *2 (-588 (-1166 *3))))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-588 *6)) (-4 *6 (-784)) (-4 *4 (-338)) (-4 *5 (-730))
+ (-5 *1 (-474 *4 *5 *6 *2)) (-4 *2 (-878 *4 *5 *6))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-474 *3 *4 *5 *2)) (-4 *2 (-878 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
+ (-5 *2 (-354)) (-5 *1 (-171)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *3)
(-12
+ (-5 *3
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
(-5 *2
- (-588
- (-2
- (|:| -2530
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (|:| -3048
- (-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| (-1066 (-202)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -2386
- (-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 (-517))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120))
- (-5 *2 (-588 *4)))))
-(((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-143)))))
+ (-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 (-171)))))
+(((*1 *2) (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1169))))
+ ((*1 *2 *2) (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1169)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-291 (-202)))) (-5 *4 (-708))
+ (-5 *2 (-628 (-202))) (-5 *1 (-243)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
- (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
- (-5 *1 (-915 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-588 *7)) (-4 *7 (-990 *3 *4 *5 *6)) (-4 *3 (-426))
- (-4 *4 (-730)) (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
- (-5 *1 (-1021 *3 *4 *5 *6 *7)))))
-(((*1 *1 *1) (-12 (-5 *1 (-158 *2)) (-4 *2 (-283))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522))))
- ((*1 *1 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120))))
- ((*1 *1 *1) (-4 *1 (-798 *2)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-900 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-729))
- (-4 *4 (-784)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-903 *3 *4 *2 *5)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *5 (-985 *3 *4 *2)) (-4 *2 (-784))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-985 *3 *4 *2)) (-4 *3 (-971)) (-4 *4 (-730))
- (-4 *2 (-784)))))
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *2) (-12 (-5 *2 (-588 (-291 (-202)))) (-5 *1 (-243)))))
+(((*1 *2 *3 *4 *4 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
+ (-5 *2 (-960)) (-5 *1 (-690)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-522)) (-5 *1 (-634 *2)) (-4 *2 (-1142 *3)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4))))
+ (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
(((*1 *2 *1)
- (-12
+ (-12 (-4 *1 (-310 *3 *4 *5 *6)) (-4 *3 (-338)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-4 *6 (-317 *3 *4 *5)) (-5 *2 (-108)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1081 *6)) (-5 *3 (-522)) (-4 *6 (-283)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *1 (-680 *4 *5 *6 *7)) (-4 *7 (-878 *6 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-411)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-628 (-382 (-522))))
(-5 *2
- (-1166
- (-2 (|:| |scaleX| (-202)) (|:| |scaleY| (-202))
- (|:| |deltaX| (-202)) (|:| |deltaY| (-202)) (|:| -3398 (-522))
- (|:| -1235 (-522)) (|:| |spline| (-522)) (|:| -2640 (-522))
- (|:| |axesColor| (-803)) (|:| -1968 (-522))
- (|:| |unitsColor| (-803)) (|:| |showing| (-522)))))
- (-5 *1 (-1167)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-588 (-588 (-588 *5)))) (-5 *3 (-1 (-108) *5 *5))
- (-5 *4 (-588 *5)) (-4 *5 (-784)) (-5 *1 (-1092 *5)))))
-(((*1 *1) (-5 *1 (-143))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-588 (-872 (-202)))))
- (-5 *2 (-588 (-1009 (-202)))) (-5 *1 (-857)))))
+ (-588
+ (-2 (|:| |outval| *4) (|:| |outmult| (-522))
+ (|:| |outvect| (-588 (-628 *4))))))
+ (-5 *1 (-716 *4)) (-4 *4 (-13 (-338) (-782))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2))
- (-4 *4 (-13 (-784) (-514))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-382 (-522))) (-4 *1 (-512 *3))
- (-4 *3 (-13 (-379) (-1106)))))
- ((*1 *1 *2) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106)))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106))))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-1190 *5 *6 *7))
- (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
+ (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-392 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-338)) (-5 *1 (-950 *3 *2)) (-4 *2 (-598 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
- (-4 *5 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2 (-588 (-968 *5 *6))) (-5 *1 (-1190 *5 *6 *7))
- (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-881 *4)))
- (-4 *4 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2 (-588 (-968 *4 *5))) (-5 *1 (-1190 *4 *5 *6))
- (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))))
+ (-12 (-4 *5 (-338)) (-5 *2 (-2 (|:| -3277 *3) (|:| -1410 (-588 *5))))
+ (-5 *1 (-950 *5 *3)) (-5 *4 (-588 *5)) (-4 *3 (-598 *5)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-202)) (-5 *5 (-522)) (-5 *2 (-1116 *3))
+ (-5 *1 (-727 *3)) (-4 *3 (-901))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-588 (-872 (-202))))) (-5 *4 (-108))
+ (-5 *1 (-1116 *2)) (-4 *2 (-901)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-426)) (-4 *4 (-757))
+ (-14 *5 (-1085)) (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-588 (-881 *4))) (-5 *3 (-588 (-1085))) (-4 *4 (-426))
+ (-5 *1 (-847 *4)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068))
+ (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-1085))) (-5 *2 (-1171)) (-5 *1 (-1088))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1171))
- (-5 *1 (-1088))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *4 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1171))
- (-5 *1 (-1088)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-1070 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1158 *2 *3 *4)) (-4 *2 (-971)) (-14 *3 (-1085))
- (-14 *4 *2))))
-(((*1 *2 *1) (-12 (-5 *1 (-1116 *2)) (-4 *2 (-901)))))
+ (-12 (-4 *4 (-971))
+ (-4 *2 (-13 (-379) (-962 *4) (-338) (-1106) (-260)))
+ (-5 *1 (-417 *4 *3 *2)) (-4 *3 (-1142 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2))
+ (-4 *2 (-405 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1007 *2)) (-4 *2 (-405 *4)) (-4 *4 (-13 (-784) (-514)))
+ (-5 *1 (-144 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1007 *1)) (-4 *1 (-146))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-146)) (-5 *2 (-1085)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1114 *2 *3 *4 *5)) (-4 *2 (-514)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *5 (-985 *2 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
+ ((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-757)) (-14 *5 (-1085)) (-5 *2 (-588 (-1139 *5 *4)))
+ (-5 *1 (-1028 *4 *5)) (-5 *3 (-1139 *5 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1166 *1)) (-4 *1 (-342 *4)) (-4 *4 (-157))
+ (-5 *2 (-628 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-628 *4)) (-5 *1 (-391 *3 *4))
+ (-4 *3 (-392 *4))))
+ ((*1 *2) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-628 *3)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-1068)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
+ (-4 *4 (-985 *6 *7 *8)) (-5 *2 (-1171))
+ (-5 *1 (-713 *6 *7 *8 *4 *5)) (-4 *5 (-990 *6 *7 *8 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *2 (-108))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108)))))
(((*1 *2 *3) (-12 (-5 *2 (-522)) (-5 *1 (-527 *3)) (-4 *3 (-962 *2))))
((*1 *2 *1)
(-12 (-4 *1 (-1017 *3 *4 *2 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014))
(-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))))
-(((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *1) (-12 (-4 *3 (-1120)) (-5 *2 (-588 *1)) (-4 *1 (-936 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-588 (-1074 *3 *4))) (-5 *1 (-1074 *3 *4))
+ (-14 *3 (-850)) (-4 *4 (-971)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-708)) (-4 *5 (-514))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-897 *5 *3)) (-4 *3 (-1142 *5)))))
(((*1 *1 *1) (-5 *1 (-792)))
((*1 *2 *1)
(-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014))
(-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014))))
((*1 *1 *2) (-12 (-5 *2 (-522)) (-4 *1 (-1067))))
((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-1085)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-588 *3)) (-4 *3 (-1120)))))
-(((*1 *2 *1) (-12 (-4 *1 (-342 *2)) (-4 *2 (-157)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-393 *5)) (-4 *5 (-514))
- (-5 *2
- (-2 (|:| -1400 (-708)) (|:| -2977 *5) (|:| |radicand| (-588 *5))))
- (-5 *1 (-295 *5)) (-5 *4 (-708))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-928)) (-5 *2 (-522)))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))))
+(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-1014)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
+ (-4 *4 (-784)) (-4 *2 (-514)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4))
+ (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-971)) (-5 *1 (-1138 *3 *2)) (-4 *2 (-1142 *3)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-588 (-588 *6))) (-4 *6 (-878 *3 *5 *4))
+ (-4 *3 (-13 (-283) (-135))) (-4 *4 (-13 (-784) (-563 (-1085))))
+ (-4 *5 (-730)) (-5 *1 (-853 *3 *4 *5 *6)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-338))
- (-5 *2 (-108)) (-5 *1 (-609 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-338)) (-4 *6 (-13 (-348 *5) (-10 -7 (-6 -4239))))
- (-4 *4 (-13 (-348 *5) (-10 -7 (-6 -4239)))) (-5 *2 (-108))
- (-5 *1 (-610 *5 *6 *4 *3)) (-4 *3 (-626 *5 *6 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-442)) (-5 *3 (-588 (-239))) (-5 *1 (-1167))))
- ((*1 *1 *1) (-5 *1 (-1167))))
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7)) (-5 *2 (-588 *4))
+ (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
(((*1 *1 *1) (-4 *1 (-603))) ((*1 *1 *1) (-5 *1 (-1032))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-30))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-393 *4) *4)) (-4 *4 (-514)) (-5 *2 (-393 *4))
- (-5 *1 (-394 *4))))
- ((*1 *1 *1) (-5 *1 (-855)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855))))
- ((*1 *1 *1) (-5 *1 (-856)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))
- (-5 *4 (-382 (-522))) (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522)))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))
- (-5 *1 (-945 *3)) (-4 *3 (-1142 (-522)))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))
- (-5 *4 (-382 (-522))) (-5 *1 (-946 *3)) (-4 *3 (-1142 *4))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -1913 (-382 (-522))) (|:| -1924 (-382 (-522)))))
- (-5 *1 (-946 *3)) (-4 *3 (-1142 (-382 (-522))))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3))
- (-4 *3 (-1142 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-202)))) (-5 *1 (-855)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 (-382 (-522)))) (-5 *2 (-588 *4)) (-5 *1 (-716 *4))
- (-4 *4 (-13 (-338) (-782))))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-1166 *5)) (-5 *3 (-708)) (-5 *4 (-1032)) (-4 *5 (-324))
- (-5 *1 (-492 *5)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |stiffness| (-354)) (|:| |stability| (-354))
- (|:| |expense| (-354)) (|:| |accuracy| (-354))
- (|:| |intermediateResults| (-354))))
- (-5 *2 (-960)) (-5 *1 (-281)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784))
- (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-108)))))
-(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1122)))))
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
+ ((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3) (-12 (-5 *2 (-108)) (-5 *1 (-540 *3)) (-4 *3 (-507)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-507))
- (-5 *2 (-382 (-522)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-382 (-522))) (-5 *1 (-393 *3)) (-4 *3 (-507))
- (-4 *3 (-514))))
- ((*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-382 (-522)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-734 *3)) (-4 *3 (-157)) (-4 *3 (-507))
- (-5 *2 (-382 (-522)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-382 (-522))) (-5 *1 (-770 *3)) (-4 *3 (-507))
- (-4 *3 (-1014))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-382 (-522))) (-5 *1 (-777 *3)) (-4 *3 (-507))
- (-4 *3 (-1014))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-923 *3)) (-4 *3 (-157)) (-4 *3 (-507))
- (-5 *2 (-382 (-522)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-382 (-522))) (-5 *1 (-934 *3)) (-4 *3 (-962 *2)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-336 (-110))) (-4 *2 (-971)) (-5 *1 (-652 *2 *4))
- (-4 *4 (-590 *2))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-336 (-110))) (-5 *1 (-771 *2)) (-4 *2 (-971)))))
+ (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
+ (-5 *2 (-2 (|:| |k| (-756 *3)) (|:| |c| *4))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *2)
+ (-12 (-4 *3 (-514)) (-5 *2 (-588 *4)) (-5 *1 (-42 *3 *4))
+ (-4 *4 (-392 *3)))))
+(((*1 *2 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-283)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-759)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-522)) (|has| *1 (-6 -4229)) (-4 *1 (-379))
+ (-5 *2 (-850)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3))
+ (-4 *3 (-392 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-588 (-51))) (-5 *2 (-1171)) (-5 *1 (-793)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1018)) (-5 *1 (-256)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-324)) (-5 *2 (-393 (-1081 (-1081 *4))))
+ (-5 *1 (-1119 *4)) (-5 *3 (-1081 (-1081 *4))))))
(((*1 *2 *1)
(-12 (-4 *1 (-1017 *3 *2 *4 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014))
(-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014)))))
-(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
- (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202)))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))))
- (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE)))) (-5 *4 (-202))
- (-5 *2 (-960)) (-5 *1 (-693))))
- ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
- (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202)))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-65 DOT))))
- (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-66 IMAGE)))) (-5 *8 (-363))
- (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-693)))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 (-1050 *4 *5))) (-5 *3 (-1 (-108) *5 *5))
+ (-4 *4 (-13 (-1014) (-33))) (-4 *5 (-13 (-1014) (-33)))
+ (-5 *1 (-1051 *4 *5))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-588 (-1050 *3 *4))) (-4 *3 (-13 (-1014) (-33)))
+ (-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-522)) (-4 *4 (-1142 (-382 *3))) (-5 *2 (-850))
+ (-5 *1 (-842 *4 *5)) (-4 *5 (-1142 (-382 *4))))))
(((*1 *2)
(-12 (-4 *3 (-514)) (-5 *2 (-588 (-628 *3))) (-5 *1 (-42 *3 *4))
(-4 *4 (-392 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-256))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-561 *3)) (-4 *3 (-784)))))
-(((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169))))
- ((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-514) (-135))) (-5 *1 (-499 *3 *2))
+ (-4 *2 (-1157 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-4 *4 (-1142 *3))
+ (-4 *5 (-662 *3 *4)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-1157 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-338) (-343) (-563 (-522)))) (-5 *1 (-504 *3 *2))
+ (-4 *2 (-1157 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-13 (-514) (-135)))
+ (-5 *1 (-1062 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
+ (-5 *2
+ (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522))
+ (|:| |success| (-108))))
+ (-5 *1 (-726)) (-5 *5 (-522)))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-588 (-561 *2))) (-5 *4 (-1085))
+ (-4 *2 (-13 (-27) (-1106) (-405 *5)))
+ (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-253 *5 *2)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-33)) (-5 *3 (-708)) (-5 *2 (-108))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-784))
+ (-4 *3 (-1014)))))
+(((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-1014)))))
(((*1 *2 *3) (-12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1120))))
((*1 *1 *2)
(-12 (-5 *2 (-881 (-354))) (-5 *1 (-314 *3 *4 *5))
@@ -15330,11 +15849,11 @@
(-3
(|:| |nia|
(-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
(|:| |relerr| (-202))))
(|:| |mdnia|
(-2 (|:| |fn| (-291 (-202)))
- (|:| -2386 (-588 (-1009 (-777 (-202)))))
+ (|:| -2321 (-588 (-1009 (-777 (-202)))))
(|:| |abserr| (-202)) (|:| |relerr| (-202))))))
(-5 *1 (-706))))
((*1 *2 *1)
@@ -15350,13 +15869,13 @@
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-291 (-202))) (|:| -3802 (-588 (-202)))
+ (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202)))
(|:| |lb| (-588 (-777 (-202))))
(|:| |cf| (-588 (-291 (-202))))
(|:| |ub| (-588 (-777 (-202))))))
(|:| |lsa|
(-2 (|:| |lfn| (-588 (-291 (-202))))
- (|:| -3802 (-588 (-202)))))))
+ (|:| -3937 (-588 (-202)))))))
(-5 *1 (-775))))
((*1 *2 *1)
(-12
@@ -15375,26 +15894,26 @@
(-4 *4 (-730)) (-4 *5 (-784)) (-4 *1 (-903 *3 *4 *5 *6))))
((*1 *2 *1) (-12 (-4 *1 (-962 *2)) (-4 *2 (-1120))))
((*1 *1 *2)
- (-3708
+ (-3844
(-12 (-5 *2 (-881 *3))
- (-12 (-2401 (-4 *3 (-37 (-382 (-522)))))
- (-2401 (-4 *3 (-37 (-522)))) (-4 *5 (-563 (-1085))))
+ (-12 (-2473 (-4 *3 (-37 (-382 (-522)))))
+ (-2473 (-4 *3 (-37 (-522)))) (-4 *5 (-563 (-1085))))
(-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730))
(-4 *5 (-784)))
(-12 (-5 *2 (-881 *3))
- (-12 (-2401 (-4 *3 (-507))) (-2401 (-4 *3 (-37 (-382 (-522)))))
+ (-12 (-2473 (-4 *3 (-507))) (-2473 (-4 *3 (-37 (-382 (-522)))))
(-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085))))
(-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730))
(-4 *5 (-784)))
(-12 (-5 *2 (-881 *3))
- (-12 (-2401 (-4 *3 (-919 (-522)))) (-4 *3 (-37 (-382 (-522))))
+ (-12 (-2473 (-4 *3 (-919 (-522)))) (-4 *3 (-37 (-382 (-522))))
(-4 *5 (-563 (-1085))))
(-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730))
(-4 *5 (-784)))))
((*1 *1 *2)
- (-3708
+ (-3844
(-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5))
- (-12 (-2401 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522)))
+ (-12 (-2473 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522)))
(-4 *5 (-563 (-1085))))
(-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))
(-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5))
@@ -15404,166 +15923,149 @@
(-12 (-5 *2 (-881 (-382 (-522)))) (-4 *1 (-985 *3 *4 *5))
(-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))) (-4 *3 (-971))
(-4 *4 (-730)) (-4 *5 (-784)))))
-(((*1 *2 *3) (-12 (-5 *3 (-588 (-51))) (-5 *2 (-1171)) (-5 *1 (-793)))))
-(((*1 *2 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-79 FCN)))) (-5 *2 (-960))
- (-5 *1 (-684)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-628 *3))
- (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $)))))
- (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-628 *3))
- (-4 *3 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $)))))
- (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))))
-(((*1 *1 *1 *1) (-4 *1 (-131)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2))
- (-4 *2 (-405 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507))))
- ((*1 *1 *1 *1) (-5 *1 (-792)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-522))) (-5 *1 (-969))
- (-5 *3 (-522)))))
+(((*1 *1) (-5 *1 (-129))))
+(((*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *1) (-12 (-4 *1 (-343)) (-5 *2 (-850))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-850))
+ (-5 *1 (-492 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-761)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-628 *3)) (-4 *3 (-971)) (-5 *1 (-629 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-962 (-522))) (-4 *3 (-13 (-784) (-514)))
- (-5 *1 (-31 *3 *2)) (-4 *2 (-405 *3))))
- ((*1 *2)
- (-12 (-4 *4 (-157)) (-5 *2 (-1081 *4)) (-5 *1 (-150 *3 *4))
- (-4 *3 (-151 *4))))
- ((*1 *1 *1) (-12 (-4 *1 (-971)) (-4 *1 (-278))))
- ((*1 *2) (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-5 *2 (-1081 *3))))
- ((*1 *2) (-12 (-4 *1 (-662 *3 *2)) (-4 *3 (-157)) (-4 *2 (-1142 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-987 *3 *2)) (-4 *3 (-13 (-782) (-338)))
- (-4 *2 (-1142 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-628 (-291 (-522)))) (-5 *1 (-956)))))
-(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-708)) (-5 *1 (-42 *4 *3))
- (-4 *3 (-392 *4)))))
+ (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
+ (-5 *1 (-160 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-588 (-1081 *5))) (-5 *3 (-1081 *5))
- (-4 *5 (-151 *4)) (-4 *4 (-507)) (-5 *1 (-137 *4 *5))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-588 *3)) (-4 *3 (-1142 *5))
- (-4 *5 (-1142 *4)) (-4 *4 (-324)) (-5 *1 (-333 *4 *5 *3))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-588 (-1081 (-522)))) (-5 *3 (-1081 (-522)))
- (-5 *1 (-530))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-588 (-1081 *1))) (-5 *3 (-1081 *1))
- (-4 *1 (-838)))))
+ (-12 (-5 *2 (-158 (-382 (-522)))) (-5 *1 (-113 *3)) (-14 *3 (-522))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *3 (-1066 *2)) (-4 *2 (-283)) (-5 *1 (-158 *2))))
+ ((*1 *1 *2) (-12 (-5 *2 (-382 *3)) (-4 *3 (-283)) (-5 *1 (-158 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-158 (-522))) (-5 *1 (-703 *3)) (-4 *3 (-379))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-158 (-382 (-522)))) (-5 *1 (-800 *3)) (-14 *3 (-522))))
+ ((*1 *2 *1)
+ (-12 (-14 *3 (-522)) (-5 *2 (-158 (-382 (-522))))
+ (-5 *1 (-801 *3 *4)) (-4 *4 (-798 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4))
- (-4 *4 (-324)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441))))
- ((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))))
-(((*1 *2 *3 *4 *4 *5 *3 *6)
- (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-588 *3)) (-5 *6 (-1081 *3))
- (-4 *3 (-13 (-405 *7) (-27) (-1106)))
- (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-518 *7 *3 *8)) (-4 *8 (-1014))))
- ((*1 *2 *3 *4 *4 *5 *4 *3 *6)
- (|partial| -12 (-5 *4 (-561 *3)) (-5 *5 (-588 *3))
- (-5 *6 (-382 (-1081 *3))) (-4 *3 (-13 (-405 *7) (-27) (-1106)))
- (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-518 *7 *3 *8)) (-4 *8 (-1014)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-200 *2 *3)) (-4 *2 (-13 (-971) (-784)))
- (-14 *3 (-588 (-1085))))))
-(((*1 *1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-690)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-628 (-154 (-382 (-522))))) (-5 *2 (-588 (-154 *4)))
- (-5 *1 (-702 *4)) (-4 *4 (-13 (-338) (-782))))))
+ (-12 (-4 *4 (-514)) (-5 *2 (-1166 (-628 *4))) (-5 *1 (-88 *4 *5))
+ (-5 *3 (-628 *4)) (-4 *5 (-598 *4)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4))))
+ (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-588 *1))
+ (-4 *1 (-990 *4 *5 *6 *3)))))
+(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
+ (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522))
+ (-5 *2 (-960)) (-5 *1 (-694)))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *2 (-157)) (-5 *1 (-265 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1142 *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 (-649 *2 *3 *4 *5 *6)) (-4 *2 (-157))
+ (-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 (-653 *2 *3 *4 *5 *6)) (-4 *2 (-157))
+ (-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 *3 *4)
(-12 (-5 *2 (-1085)) (-5 *3 (-409)) (-4 *5 (-784))
(-5 *1 (-1020 *5 *4)) (-4 *4 (-405 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 *4)) (-4 *4 (-338)) (-5 *2 (-628 *4))
- (-5 *1 (-751 *4 *5)) (-4 *5 (-598 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *5)) (-5 *4 (-708)) (-4 *5 (-338))
- (-5 *2 (-628 *5)) (-5 *1 (-751 *5 *6)) (-4 *6 (-598 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-291 (-202))) (-5 *2 (-202)) (-5 *1 (-281)))))
+ (-12 (-5 *3 (-628 (-382 (-881 (-522))))) (-5 *2 (-588 (-291 (-522))))
+ (-5 *1 (-956)))))
(((*1 *2 *1) (-12 (-4 *1 (-1008 *3)) (-4 *3 (-1120)) (-5 *2 (-522)))))
-(((*1 *1 *1 *1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-514)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1 (-872 (-202)) (-872 (-202)))) (-5 *3 (-588 (-239)))
- (-5 *1 (-237))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1 (-872 (-202)) (-872 (-202)))) (-5 *1 (-239))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 (-454 *5 *6))) (-5 *3 (-454 *5 *6))
- (-14 *5 (-588 (-1085))) (-4 *6 (-426)) (-5 *2 (-1166 *6))
- (-5 *1 (-576 *5 *6)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
- (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
- (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-1166 (-522))) (-5 *3 (-522)) (-5 *1 (-1024))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-1166 (-522))) (-5 *3 (-588 (-522))) (-5 *4 (-522))
- (-5 *1 (-1024)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 *5)) (-4 *5 (-1142 *3)) (-4 *3 (-283))
+ (-5 *2 (-108)) (-5 *1 (-429 *3 *5)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-1088)) (-5 *3 (-1085)))))
+(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1085)) (-5 *3 (-354)) (-5 *1 (-983)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-426))
- (-5 *2 (-454 *4 *5)) (-5 *1 (-576 *4 *5)))))
-(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1054)) (-5 *3 (-132)) (-5 *2 (-108)))))
+ (-12 (-5 *3 (-850)) (-5 *2 (-1081 *4)) (-5 *1 (-332 *4))
+ (-4 *4 (-324)))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-108)) (-4 *6 (-426)) (-4 *7 (-730)) (-4 *8 (-784))
+ (-4 *3 (-985 *6 *7 *8))
+ (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1974 *4))))
+ (-5 *1 (-1022 *6 *7 *8 *3 *4)) (-4 *4 (-990 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-588 (-2 (|:| |val| (-588 *8)) (|:| -1974 *9))))
+ (-5 *5 (-108)) (-4 *8 (-985 *6 *7 *4)) (-4 *9 (-990 *6 *7 *4 *8))
+ (-4 *6 (-426)) (-4 *7 (-730)) (-4 *4 (-784))
+ (-5 *2 (-588 (-2 (|:| |val| *8) (|:| -1974 *9))))
+ (-5 *1 (-1022 *6 *7 *4 *8 *9)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 (-108) *6)) (-4 *6 (-13 (-1014) (-962 *5)))
- (-4 *5 (-815 *4)) (-4 *4 (-1014)) (-5 *2 (-1 (-108) *5))
- (-5 *1 (-860 *4 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-195)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-708)) (-4 *4 (-324)) (-5 *1 (-194 *4 *2))
- (-4 *2 (-1142 *4)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514)) (-4 *4 (-730))
- (-4 *5 (-784)) (-4 *2 (-985 *3 *4 *5)))))
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-1087 (-382 (-522))))
+ (-5 *1 (-169)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -3112 *3) (|:| |gap| (-708)) (|:| -3450 (-719 *3))
+ (|:| -4002 (-719 *3))))
+ (-5 *1 (-719 *3)) (-4 *3 (-971))))
+ ((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-971)) (-4 *5 (-730)) (-4 *3 (-784))
+ (-5 *2
+ (-2 (|:| -3112 *1) (|:| |gap| (-708)) (|:| -3450 *1)
+ (|:| -4002 *1)))
+ (-4 *1 (-985 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *2
+ (-2 (|:| -3112 *1) (|:| |gap| (-708)) (|:| -3450 *1)
+ (|:| -4002 *1)))
+ (-4 *1 (-985 *3 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *5)) (-5 *4 (-850)) (-4 *5 (-784))
+ (-5 *2 (-57 (-588 (-613 *5)))) (-5 *1 (-613 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1166 *5)) (-4 *5 (-584 *4)) (-4 *4 (-514))
+ (-5 *2 (-108)) (-5 *1 (-583 *4 *5)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-35 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-5 *2 (-2 (|:| -2644 *3) (|:| -3149 *4))))))
+(((*1 *1 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-855))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-855))))
+ ((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-856))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-872 (-202)) (-202))) (-5 *3 (-1009 (-202)))
+ (-5 *1 (-856)))))
(((*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *1) (-12 (-5 *2 (-898)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522))
+ (-5 *5 (-3 (|:| |fn| (-363)) (|:| |fp| (-62 G)))) (-5 *2 (-960))
+ (-5 *1 (-686)))))
(((*1 *1 *1) (-12 (-5 *1 (-270 *2)) (-4 *2 (-21)) (-4 *2 (-1120)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1066 (-382 *3))) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
+(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-517)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-305)))))
+(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1054)) (-5 *3 (-132)) (-5 *2 (-108)))))
(((*1 *2 *3 *2)
- (-12 (-5 *2 (-108)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
- ((*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-239)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-35 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-5 *2 (-2 (|:| -2530 *3) (|:| -3048 *4))))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
- (-12 (-5 *4 (-522)) (-5 *6 (-1 (-1171) (-1166 *5) (-1166 *5) (-354)))
- (-5 *3 (-1166 (-354))) (-5 *5 (-354)) (-5 *2 (-1171))
- (-5 *1 (-725)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-730))
- (-4 *5 (-13 (-784) (-10 -8 (-15 -1431 ((-1085) $))))) (-4 *6 (-514))
- (-5 *2 (-2 (|:| -1210 (-881 *6)) (|:| -3136 (-881 *6))))
- (-5 *1 (-670 *4 *5 *6 *3)) (-4 *3 (-878 (-382 (-881 *6)) *4 *5)))))
+ (-12 (-5 *2 (-1068)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-239)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+ (-12 (-4 *5 (-338)) (-4 *5 (-514))
+ (-5 *2
+ (-2 (|:| |minor| (-588 (-850))) (|:| -3277 *3)
+ (|:| |minors| (-588 (-588 (-850)))) (|:| |ops| (-588 *3))))
+ (-5 *1 (-88 *5 *3)) (-5 *4 (-850)) (-4 *3 (-598 *5)))))
(((*1 *2 *1) (-12 (-4 *1 (-221 *2)) (-4 *2 (-1120))))
((*1 *2 *1)
(|partial| -12 (-4 *1 (-1114 *3 *4 *5 *2)) (-4 *3 (-514))
@@ -15571,187 +16073,68 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-708)) (-4 *1 (-1154 *3)) (-4 *3 (-1120))))
((*1 *2 *1) (-12 (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-338)) (-4 *4 (-514)) (-4 *5 (-1142 *4))
- (-5 *2 (-2 (|:| -2012 (-569 *4 *5)) (|:| -1320 (-382 *5))))
- (-5 *1 (-569 *4 *5)) (-5 *3 (-382 *5))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-1074 *3 *4))) (-5 *1 (-1074 *3 *4))
- (-14 *3 (-850)) (-4 *4 (-971))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-426)) (-4 *3 (-971))
- (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
- (-4 *1 (-1142 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-872 (-202)))) (-5 *1 (-1167)))))
+(((*1 *1 *1) (-5 *1 (-983))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-382 *2)) (-4 *2 (-1142 *5))
+ (-5 *1 (-744 *5 *2 *3 *6))
+ (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522)))))
+ (-4 *3 (-598 *2)) (-4 *6 (-598 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 (-382 *2))) (-4 *2 (-1142 *5))
+ (-5 *1 (-744 *5 *2 *3 *6))
+ (-4 *5 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2))
+ (-4 *6 (-598 (-382 *2))))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-782) (-338))) (-5 *1 (-981 *2 *3))
+ (-4 *3 (-1142 *2)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-708)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784))
+ (-4 *4 (-971)) (-4 *4 (-157))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971))
+ (-4 *3 (-157)))))
+(((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-1014)) (-4 *1 (-832 *3)))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
+ (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-202)))
+ (-5 *2 (-960)) (-5 *1 (-695)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-283)) (-4 *3 (-157)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3)))
- (-5 *1 (-627 *3 *4 *5 *6)) (-4 *6 (-626 *3 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-2 (|:| -1353 *3) (|:| -3421 *3))) (-5 *1 (-638 *3))
- (-4 *3 (-283)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-170)) (-5 *3 (-522))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-720 *2)) (-4 *2 (-157))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1081 (-522))) (-5 *1 (-871)) (-5 *3 (-522)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-588 (-708))) (-5 *1 (-897 *4 *3))
- (-4 *3 (-1142 *4)))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *5 (-561 *4)) (-5 *6 (-1081 *4))
- (-4 *4 (-13 (-405 *7) (-27) (-1106)))
- (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4))))
- (-5 *1 (-518 *7 *4 *3)) (-4 *3 (-598 *4)) (-4 *3 (-1014))))
- ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
- (-12 (-5 *5 (-561 *4)) (-5 *6 (-382 (-1081 *4)))
- (-4 *4 (-13 (-405 *7) (-27) (-1106)))
- (-4 *7 (-13 (-426) (-962 (-522)) (-784) (-135) (-584 (-522))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3855 (-588 *4))))
- (-5 *1 (-518 *7 *4 *3)) (-4 *3 (-598 *4)) (-4 *3 (-1014)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-1171)) (-5 *1 (-1167))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
+ (-12 (-5 *2 (-872 *3)) (-4 *3 (-13 (-338) (-1106) (-928)))
+ (-5 *1 (-160 *3)))))
(((*1 *1) (-5 *1 (-108))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *5 (-13 (-563 *2) (-157))) (-5 *2 (-821 *4))
- (-5 *1 (-155 *4 *5 *3)) (-4 *4 (-1014)) (-4 *3 (-151 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-1009 (-777 (-354)))))
- (-5 *2 (-588 (-1009 (-777 (-202))))) (-5 *1 (-281))))
- ((*1 *1 *2) (-12 (-5 *2 (-202)) (-5 *1 (-354))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-792)) (-5 *3 (-522)) (-5 *1 (-369))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-384 *3 *4))
- (-4 *4 (-1142 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3))
- (-5 *2 (-1166 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-157)) (-4 *1 (-392 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-392 *3)) (-4 *3 (-157)) (-5 *2 (-1166 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-393 *1)) (-4 *1 (-405 *3)) (-4 *3 (-514))
- (-4 *3 (-784))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-971))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-437 *3 *4 *5 *6))))
- ((*1 *1 *2) (-12 (-5 *2 (-1018)) (-5 *1 (-498))))
- ((*1 *2 *1) (-12 (-4 *1 (-563 *2)) (-4 *2 (-1120))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-157)) (-4 *1 (-662 *3 *2)) (-4 *2 (-1142 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3)) (-4 *3 (-1014))))
- ((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-971)) (-4 *1 (-907 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-982))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-881 *3)) (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5))
- (-4 *5 (-563 (-1085))) (-4 *4 (-730)) (-4 *5 (-784))))
- ((*1 *1 *2)
- (-3708
- (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5))
- (-12 (-2401 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522)))
- (-4 *5 (-563 (-1085))))
- (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))
- (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5))
- (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))))
- (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-881 (-382 (-522)))) (-4 *1 (-985 *3 *4 *5))
- (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))) (-4 *3 (-971))
- (-4 *4 (-730)) (-4 *5 (-784))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1886 *8)))
- (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-990 *4 *5 *6 *7)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1068))
- (-5 *1 (-988 *4 *5 *6 *7 *8))))
- ((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-999))))
- ((*1 *1 *2) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-1017 *3 *4 *5 *6 *2)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *2 (-1014))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-1017 *3 *4 *5 *2 *6)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-4 *5 (-1014)) (-4 *2 (-1014)) (-4 *6 (-1014))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-1017 *3 *4 *2 *5 *6)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-4 *2 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-1017 *3 *2 *4 *5 *6)) (-4 *3 (-1014)) (-4 *2 (-1014))
- (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-1017 *2 *3 *4 *5 *6)) (-4 *2 (-1014)) (-4 *3 (-1014))
- (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-588 *1)) (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014))
- (-4 *4 (-1014)) (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-588 *7)) (|:| -1886 *8)))
- (-4 *7 (-985 *4 *5 *6)) (-4 *8 (-1023 *4 *5 *6 *7)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1068))
- (-5 *1 (-1055 *4 *5 *6 *7 *8))))
- ((*1 *1 *2) (-12 (-5 *2 (-1018)) (-5 *1 (-1090))))
- ((*1 *2 *1) (-12 (-5 *2 (-1018)) (-5 *1 (-1090))))
- ((*1 *1 *2 *3 *2) (-12 (-5 *2 (-792)) (-5 *3 (-522)) (-5 *1 (-1101))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-792)) (-5 *3 (-522)) (-5 *1 (-1101))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-717 *4 (-794 *5)))
- (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *5 (-588 (-1085)))
- (-5 *2 (-717 *4 (-794 *6))) (-5 *1 (-1190 *4 *5 *6))
- (-14 *6 (-588 (-1085)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-881 *4)) (-4 *4 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2 (-881 (-949 (-382 *4)))) (-5 *1 (-1190 *4 *5 *6))
- (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-717 *4 (-794 *6)))
- (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *6 (-588 (-1085)))
- (-5 *2 (-881 (-949 (-382 *4)))) (-5 *1 (-1190 *4 *5 *6))
- (-14 *5 (-588 (-1085)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1081 *4)) (-4 *4 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2 (-1081 (-949 (-382 *4)))) (-5 *1 (-1190 *4 *5 *6))
- (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085)))))
- ((*1 *2 *3)
- (-12
- (-5 *3 (-1056 *4 (-494 (-794 *6)) (-794 *6) (-717 *4 (-794 *6))))
- (-4 *4 (-13 (-782) (-283) (-135) (-947))) (-14 *6 (-588 (-1085)))
- (-5 *2 (-588 (-717 *4 (-794 *6)))) (-5 *1 (-1190 *4 *5 *6))
- (-14 *5 (-588 (-1085))))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1085)) (-5 *2 (-1089)) (-5 *1 (-1088)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-1068)) (-5 *5 (-628 (-202)))
- (-5 *2 (-960)) (-5 *1 (-685)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-338)) (-4 *3 (-971))
+ (-5 *2 (-2 (|:| -3450 *1) (|:| -4002 *1))) (-4 *1 (-786 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-94 *5)) (-4 *5 (-338)) (-4 *5 (-971))
+ (-5 *2 (-2 (|:| -3450 *3) (|:| -4002 *3))) (-5 *1 (-787 *5 *3))
+ (-4 *3 (-786 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-102 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-818 *4 *5)) (-5 *3 (-818 *4 *6)) (-4 *4 (-1014))
+ (-4 *5 (-1014)) (-4 *6 (-608 *5)) (-5 *1 (-814 *4 *5 *6)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-708)) (-4 *1 (-1142 *4)) (-4 *4 (-971))
+ (-5 *2 (-1166 *4)))))
(((*1 *2)
(-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
(-4 *3 (-342 *4))))
((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
-(((*1 *2)
- (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
- (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171))
- (-5 *1 (-991 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
- (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171))
- (-5 *1 (-1022 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1081 *3)) (-4 *3 (-343)) (-4 *1 (-304 *3))
- (-4 *3 (-338)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-1171))
- (-5 *1 (-423 *4 *5 *6 *7)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-5 *4 (-1 (-108) *3 *3)) (-4 *1 (-1114 *5 *6 *7 *3))
+ (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784)) (-4 *3 (-985 *5 *6 *7))
+ (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1032)) (-5 *1 (-777 *3)) (-4 *3 (-1014)))))
(((*1 *1 *2 *1)
(-12 (|has| *1 (-6 -4238)) (-4 *1 (-139 *2)) (-4 *2 (-1120))
(-4 *2 (-1014))))
@@ -15768,497 +16151,192 @@
((*1 *1 *2 *1)
(-12 (-5 *2 (-1050 *3 *4)) (-4 *3 (-13 (-1014) (-33)))
(-4 *4 (-13 (-1014) (-33))) (-5 *1 (-1051 *3 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1066 (-1066 *4))) (-5 *2 (-1066 *4)) (-5 *1 (-1070 *4))
+ (-4 *4 (-37 (-382 (-522)))) (-4 *4 (-971)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-338))
+ (-5 *2 (-588 (-2 (|:| C (-628 *5)) (|:| |g| (-1166 *5)))))
+ (-5 *1 (-905 *5)) (-5 *3 (-628 *5)) (-5 *4 (-1166 *5)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-708))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-708)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
- (-4 *6 (-730)) (-5 *2 (-588 (-588 (-522))))
- (-5 *1 (-853 *4 *5 *6 *7)) (-5 *3 (-522)) (-4 *7 (-878 *4 *6 *5)))))
+ (-12 (-5 *2 (-2 (|:| |preimage| (-588 *3)) (|:| |image| (-588 *3))))
+ (-5 *1 (-834 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108)))))
+(((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-3 *3 (-588 *1)))
+ (-4 *1 (-990 *4 *5 *6 *3)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-834 *4)) (-4 *4 (-1014)) (-5 *2 (-588 (-708)))
+ (-5 *1 (-833 *4)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-338)) (-5 *1 (-704 *2 *3)) (-4 *2 (-647 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-595 (-382 *2))) (-4 *2 (-1142 *4)) (-5 *1 (-747 *4 *2))
+ (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-596 *2 (-382 *2))) (-4 *2 (-1142 *4))
+ (-5 *1 (-747 *4 *2))
+ (-4 *4 (-13 (-338) (-135) (-962 (-522)) (-962 (-382 (-522))))))))
+(((*1 *2 *1) (-12 (-4 *1 (-883)) (-5 *2 (-588 (-588 (-872 (-202)))))))
+ ((*1 *2 *1) (-12 (-4 *1 (-901)) (-5 *2 (-588 (-588 (-872 (-202))))))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1128 *3 *2)) (-4 *3 (-971))
+ (-4 *2 (-1157 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-792)) (-5 *2 (-1171)) (-5 *1 (-1048))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-792))) (-5 *2 (-1171)) (-5 *1 (-1048)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-1 (-108) *8))) (-4 *8 (-985 *5 *6 *7))
+ (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-2 (|:| |goodPols| (-588 *8)) (|:| |badPols| (-588 *8))))
+ (-5 *1 (-904 *5 *6 *7 *8)) (-5 *4 (-588 *8)))))
(((*1 *1 *2)
(-12 (-4 *3 (-971)) (-5 *1 (-764 *2 *3)) (-4 *2 (-647 *3)))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1068)) (-5 *4 (-522)) (-5 *5 (-628 (-154 (-202))))
- (-5 *2 (-960)) (-5 *1 (-692)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-757)) (-14 *5 (-1085))
- (-5 *2 (-588 *4)) (-5 *1 (-1028 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -1798 (-354)) (|:| -2888 (-1068))
- (|:| |explanations| (-588 (-1068)))))
- (-5 *2 (-960)) (-5 *1 (-281))))
+ (-12 (-4 *4 (-13 (-514) (-784) (-962 (-522)))) (-5 *2 (-108))
+ (-5 *1 (-167 *4 *3)) (-4 *3 (-13 (-27) (-1106) (-405 (-154 *4))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409))))
((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -1798 (-354)) (|:| -2888 (-1068))
- (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))))
- (-5 *2 (-960)) (-5 *1 (-281)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-97)) (-5 *2 (-108)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1 (-108) *2)) (-4 *1 (-139 *2))
- (-4 *2 (-1120)))))
+ (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-108)) (-5 *1 (-1110 *4 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *4))))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-514)) (-5 *2 (-108)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-230 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-338)) (-5 *2 (-588 *3)) (-5 *1 (-874 *4 *3))
+ (-4 *3 (-1142 *4)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-569 *4 *5))
+ (-5 *3
+ (-1 (-2 (|:| |ans| *4) (|:| -2002 *4) (|:| |sol?| (-108)))
+ (-522) *4))
+ (-4 *4 (-338)) (-4 *5 (-1142 *4)) (-5 *1 (-532 *4 *5)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-256)))))
+(((*1 *2 *1) (-12 (-4 *1 (-921 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-708)) (-4 *5 (-338)) (-5 *2 (-158 *6))
+ (-5 *1 (-796 *5 *4 *6)) (-4 *4 (-1157 *5)) (-4 *6 (-1142 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-915 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-426))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
+ (-5 *1 (-1021 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-393 *3)) (-4 *3 (-514)) (-5 *1 (-394 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
+ (-4 *2 (-985 *4 *5 *6)) (-5 *1 (-713 *4 *5 *6 *2 *3))
+ (-4 *3 (-990 *4 *5 *6 *2)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1116 *3)) (-4 *3 (-901)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-202)))))
+(((*1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637))))
+ ((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-637)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
+ (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120)) (-4 *4 (-348 *3))
- (-4 *5 (-348 *3)) (-5 *2 (-708))))
+ (-12 (-4 *1 (-301 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729))
+ (-5 *2 (-708))))
((*1 *2 *1)
- (-12 (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5)) (-5 *2 (-708)))))
-(((*1 *2 *3 *3 *2 *4)
- (-12 (-5 *3 (-628 *2)) (-5 *4 (-522))
- (-4 *2 (-13 (-283) (-10 -8 (-15 -3450 ((-393 $) $)))))
- (-4 *5 (-1142 *2)) (-5 *1 (-469 *2 *5 *6)) (-4 *6 (-384 *2 *5)))))
+ (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014))
+ (-5 *2 (-708))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-708)) (-5 *1 (-673 *3 *4)) (-4 *3 (-971))
+ (-4 *4 (-664)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-159))) (-5 *1 (-1001)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-588 *3)) (-4 *3 (-1120)))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
+ (-4 *3 (-342 *4))))
+ ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *3 (-588 (-803)))
+ (-5 *1 (-442)))))
+(((*1 *2 *3) (-12 (-5 *3 (-850)) (-5 *2 (-1068)) (-5 *1 (-723)))))
+(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
+ (-12 (-5 *4 (-628 (-202))) (-5 *5 (-628 (-522))) (-5 *3 (-522))
+ (-5 *2 (-960)) (-5 *1 (-694)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-588 *1)) (-4 *1 (-985 *4 *5 *6)) (-4 *4 (-971))
+ (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *2 (-108))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-108))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1114 *4 *5 *6 *3)) (-4 *4 (-514)) (-4 *5 (-730))
+ (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4))))
- (-5 *1 (-1022 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-514))
+ (-5 *2 (-2 (|:| -2149 (-628 *5)) (|:| |vec| (-1166 (-588 (-850))))))
+ (-5 *1 (-88 *5 *3)) (-5 *4 (-850)) (-4 *3 (-598 *5)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-108) *4)) (|has| *1 (-6 -4238)) (-4 *1 (-461 *4))
+ (-4 *4 (-1120)) (-5 *2 (-108)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-377)) (-5 *2 (-708))))
+ ((*1 *1 *1) (-4 *1 (-377))))
+(((*1 *2 *1) (-12 (-4 *1 (-919 *2)) (-4 *2 (-514)) (-4 *2 (-507))))
+ ((*1 *1 *1) (-4 *1 (-980))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3))
- (-4 *3 (-895)))))
-(((*1 *1) (-5 *1 (-1168))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-555 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1120))
- (-5 *2 (-108)))))
-(((*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 (-522)) (-5 *5 (-628 (-202))) (-5 *6 (-616 (-202)))
- (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-688)))))
-(((*1 *1 *1 *2 *2)
- (|partial| -12 (-5 *2 (-850)) (-5 *1 (-1015 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
(((*1 *2 *3)
- (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947)))
- (-14 *5 (-588 (-1085)))
- (-5 *2
- (-588 (-2 (|:| -2559 (-1081 *4)) (|:| -3677 (-588 (-881 *4))))))
- (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2
- (-588 (-2 (|:| -2559 (-1081 *5)) (|:| -3677 (-588 (-881 *5))))))
- (-5 *1 (-1190 *5 *6 *7)) (-5 *3 (-588 (-881 *5)))
- (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2
- (-588 (-2 (|:| -2559 (-1081 *5)) (|:| -3677 (-588 (-881 *5))))))
- (-5 *1 (-1190 *5 *6 *7)) (-5 *3 (-588 (-881 *5)))
- (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-108)) (-4 *5 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2
- (-588 (-2 (|:| -2559 (-1081 *5)) (|:| -3677 (-588 (-881 *5))))))
- (-5 *1 (-1190 *5 *6 *7)) (-5 *3 (-588 (-881 *5)))
- (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-782) (-283) (-135) (-947)))
- (-5 *2
- (-588 (-2 (|:| -2559 (-1081 *4)) (|:| -3677 (-588 (-881 *4))))))
- (-5 *1 (-1190 *4 *5 *6)) (-5 *3 (-588 (-881 *4)))
- (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-110)))))
+ (-12 (-5 *2 (-1087 (-382 (-522)))) (-5 *1 (-169)) (-5 *3 (-522)))))
+(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
+ (-12 (-5 *3 (-1068)) (-5 *5 (-628 (-202))) (-5 *6 (-202))
+ (-5 *7 (-628 (-522))) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-690)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1142 *6))
+ (-4 *6 (-13 (-27) (-405 *5)))
+ (-4 *5 (-13 (-784) (-514) (-962 (-522)))) (-4 *8 (-1142 (-382 *7)))
+ (-5 *2 (-539 *3)) (-5 *1 (-510 *5 *6 *7 *8 *3))
+ (-4 *3 (-317 *6 *7 *8)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1151 *3 *4 *5)) (-5 *1 (-294 *3 *4 *5))
- (-4 *3 (-13 (-338) (-784))) (-14 *4 (-1085)) (-14 *5 *3)))
- ((*1 *2 *1) (-12 (-4 *1 (-379)) (-5 *2 (-522))))
- ((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-393 *3)) (-4 *3 (-514))))
- ((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-637))))
+ (-12 (-4 *1 (-46 *3 *4)) (-4 *3 (-971)) (-4 *4 (-729))
+ (-5 *2 (-108))))
((*1 *2 *1)
- (-12 (-4 *2 (-1014)) (-5 *1 (-651 *3 *2 *4)) (-4 *3 (-784))
- (-14 *4
- (-1 (-108) (-2 (|:| -2717 *3) (|:| -1400 *2))
- (-2 (|:| -2717 *3) (|:| -1400 *2)))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-324)) (-5 *3 (-522)) (-5 *2 (-1094 (-850) (-708))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1098 *4 *5))
- (-4 *4 (-1014)) (-4 *5 (-1014)))))
-(((*1 *1) (-5 *1 (-132))) ((*1 *1 *1) (-5 *1 (-792))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-878 *4 *6 *5))
- (-4 *4 (-13 (-283) (-135))) (-4 *5 (-13 (-784) (-563 (-1085))))
- (-4 *6 (-730)) (-5 *2 (-108)) (-5 *1 (-853 *4 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-588 (-881 *4))) (-4 *4 (-13 (-283) (-135)))
- (-4 *5 (-13 (-784) (-563 (-1085)))) (-4 *6 (-730)) (-5 *2 (-108))
- (-5 *1 (-853 *4 *5 *6 *7)) (-4 *7 (-878 *4 *6 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
- (-4 *4 (-971)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1179 (-1085) *3)) (-4 *3 (-971)) (-5 *1 (-1186 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1179 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
- (-5 *1 (-1188 *3 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-756 *4)) (-4 *4 (-784)) (-5 *2 (-108))
- (-5 *1 (-613 *4)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-46 *3 *4)) (-4 *3 (-971))
- (-4 *4 (-729))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-49 *3 *4))
- (-14 *4 (-588 (-1085)))))
- ((*1 *1 *2 *1 *1 *3)
- (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120))
- (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120))
- (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-55 *3 *4 *5)) (-4 *3 (-1120))
- (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-57 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-57 *6)) (-5 *1 (-56 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-128 *5 *6 *7)) (-14 *5 (-522))
- (-14 *6 (-708)) (-4 *7 (-157)) (-4 *8 (-157))
- (-5 *2 (-128 *5 *6 *8)) (-5 *1 (-127 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-154 *5)) (-4 *5 (-157))
- (-4 *6 (-157)) (-5 *2 (-154 *6)) (-5 *1 (-153 *5 *6))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-291 *3) (-291 *3))) (-4 *3 (-13 (-971) (-784)))
- (-5 *1 (-200 *3 *4)) (-14 *4 (-588 (-1085)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-217 *5 *6)) (-14 *5 (-708))
- (-4 *6 (-1120)) (-4 *7 (-1120)) (-5 *2 (-217 *5 *7))
- (-5 *1 (-216 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-270 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-270 *6)) (-5 *1 (-269 *5 *6))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-270 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1068)) (-5 *5 (-561 *6))
- (-4 *6 (-278)) (-4 *2 (-1120)) (-5 *1 (-273 *6 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-561 *5)) (-4 *5 (-278))
- (-4 *2 (-278)) (-5 *1 (-274 *5 *2))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-561 *1)) (-4 *1 (-278))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-628 *5)) (-4 *5 (-971))
- (-4 *6 (-971)) (-5 *2 (-628 *6)) (-5 *1 (-280 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-291 *5)) (-4 *5 (-784))
- (-4 *6 (-784)) (-5 *2 (-291 *6)) (-5 *1 (-289 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-311 *5 *6 *7 *8)) (-4 *5 (-338))
- (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *8 (-317 *5 *6 *7))
- (-4 *9 (-338)) (-4 *10 (-1142 *9)) (-4 *11 (-1142 (-382 *10)))
- (-5 *2 (-311 *9 *10 *11 *12))
- (-5 *1 (-308 *5 *6 *7 *8 *9 *10 *11 *12))
- (-4 *12 (-317 *9 *10 *11))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-313 *3)) (-4 *3 (-1014))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1124)) (-4 *8 (-1124))
- (-4 *6 (-1142 *5)) (-4 *7 (-1142 (-382 *6))) (-4 *9 (-1142 *8))
- (-4 *2 (-317 *8 *9 *10)) (-5 *1 (-315 *5 *6 *7 *4 *8 *9 *10 *2))
- (-4 *4 (-317 *5 *6 *7)) (-4 *10 (-1142 (-382 *9)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1120)) (-4 *6 (-1120))
- (-4 *2 (-348 *6)) (-5 *1 (-346 *5 *4 *6 *2)) (-4 *4 (-348 *5))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-357 *3 *4)) (-4 *3 (-971))
- (-4 *4 (-1014))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-393 *5)) (-4 *5 (-514))
- (-4 *6 (-514)) (-5 *2 (-393 *6)) (-5 *1 (-380 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-382 *5)) (-4 *5 (-514))
- (-4 *6 (-514)) (-5 *2 (-382 *6)) (-5 *1 (-381 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-388 *5 *6 *7 *8)) (-4 *5 (-283))
- (-4 *6 (-919 *5)) (-4 *7 (-1142 *6))
- (-4 *8 (-13 (-384 *6 *7) (-962 *6))) (-4 *9 (-283))
- (-4 *10 (-919 *9)) (-4 *11 (-1142 *10))
- (-5 *2 (-388 *9 *10 *11 *12))
- (-5 *1 (-387 *5 *6 *7 *8 *9 *10 *11 *12))
- (-4 *12 (-13 (-384 *10 *11) (-962 *10)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-157)) (-4 *6 (-157))
- (-4 *2 (-392 *6)) (-5 *1 (-390 *4 *5 *2 *6)) (-4 *4 (-392 *5))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-514)) (-5 *1 (-393 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-971) (-784)))
- (-4 *6 (-13 (-971) (-784))) (-4 *2 (-405 *6))
- (-5 *1 (-396 *5 *4 *6 *2)) (-4 *4 (-405 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1014)) (-4 *6 (-1014))
- (-4 *2 (-400 *6)) (-5 *1 (-398 *5 *4 *6 *2)) (-4 *4 (-400 *5))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-461 *3)) (-4 *3 (-1120))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-478 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-784))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-539 *5)) (-4 *5 (-338))
- (-4 *6 (-338)) (-5 *2 (-539 *6)) (-5 *1 (-538 *5 *6))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 *6 *5))
- (-5 *4 (-3 (-2 (|:| -1856 *5) (|:| |coeff| *5)) "failed"))
- (-4 *5 (-338)) (-4 *6 (-338))
- (-5 *2 (-2 (|:| -1856 *6) (|:| |coeff| *6)))
- (-5 *1 (-538 *5 *6))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed"))
- (-4 *5 (-338)) (-4 *2 (-338)) (-5 *1 (-538 *5 *2))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 *6 *5))
- (-5 *4
- (-3
- (-2 (|:| |mainpart| *5)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *5) (|:| |logand| *5)))))
- "failed"))
- (-4 *5 (-338)) (-4 *6 (-338))
- (-5 *2
- (-2 (|:| |mainpart| *6)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *6) (|:| |logand| *6))))))
- (-5 *1 (-538 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-552 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-552 *6)) (-5 *1 (-549 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-552 *6)) (-5 *5 (-552 *7))
- (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-552 *8))
- (-5 *1 (-550 *6 *7 *8))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1066 *6)) (-5 *5 (-552 *7))
- (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-1066 *8))
- (-5 *1 (-550 *6 *7 *8))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-552 *6)) (-5 *5 (-1066 *7))
- (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-1066 *8))
- (-5 *1 (-550 *6 *7 *8))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1120)) (-5 *1 (-552 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-588 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-588 *6)) (-5 *1 (-586 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-588 *6)) (-5 *5 (-588 *7))
- (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-588 *8))
- (-5 *1 (-587 *6 *7 *8))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-593 *3)) (-4 *3 (-1120))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-971)) (-4 *8 (-971))
- (-4 *6 (-348 *5)) (-4 *7 (-348 *5)) (-4 *2 (-626 *8 *9 *10))
- (-5 *1 (-624 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-626 *5 *6 *7))
- (-4 *9 (-348 *8)) (-4 *10 (-348 *8))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-971))
- (-4 *8 (-971)) (-4 *6 (-348 *5)) (-4 *7 (-348 *5))
- (-4 *2 (-626 *8 *9 *10)) (-5 *1 (-624 *5 *6 *7 *4 *8 *9 *10 *2))
- (-4 *4 (-626 *5 *6 *7)) (-4 *9 (-348 *8)) (-4 *10 (-348 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-514)) (-4 *7 (-514))
- (-4 *6 (-1142 *5)) (-4 *2 (-1142 (-382 *8)))
- (-5 *1 (-648 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1142 (-382 *6)))
- (-4 *8 (-1142 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-971)) (-4 *9 (-971)) (-4 *5 (-784))
- (-4 *6 (-730)) (-4 *2 (-878 *9 *7 *5))
- (-5 *1 (-666 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-730))
- (-4 *4 (-878 *8 *6 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-784)) (-4 *6 (-784)) (-4 *7 (-730))
- (-4 *9 (-971)) (-4 *2 (-878 *9 *8 *6))
- (-5 *1 (-667 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-730))
- (-4 *4 (-878 *9 *7 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-673 *5 *7)) (-4 *5 (-971))
- (-4 *6 (-971)) (-4 *7 (-664)) (-5 *2 (-673 *6 *7))
- (-5 *1 (-672 *5 *6 *7))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-673 *3 *4))
+ (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-971)) (-4 *4 (-1014))
+ (-5 *2 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-547 *3)) (-4 *3 (-971))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-514)) (-5 *2 (-108)) (-5 *1 (-569 *3 *4))
+ (-4 *4 (-1142 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-673 *3 *4)) (-4 *3 (-971))
(-4 *4 (-664))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-719 *5)) (-4 *5 (-971))
- (-4 *6 (-971)) (-5 *2 (-719 *6)) (-5 *1 (-718 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-157)) (-4 *6 (-157))
- (-4 *2 (-734 *6)) (-5 *1 (-735 *4 *5 *2 *6)) (-4 *4 (-734 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-770 *5)) (-4 *5 (-1014))
- (-4 *6 (-1014)) (-5 *2 (-770 *6)) (-5 *1 (-769 *5 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-770 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-770 *5))
- (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *1 (-769 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-777 *5)) (-4 *5 (-1014))
- (-4 *6 (-1014)) (-5 *2 (-777 *6)) (-5 *1 (-776 *5 *6))))
- ((*1 *2 *3 *4 *2 *2)
- (-12 (-5 *2 (-777 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-777 *5))
- (-4 *5 (-1014)) (-4 *6 (-1014)) (-5 *1 (-776 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-806 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-806 *6)) (-5 *1 (-805 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-808 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-808 *6)) (-5 *1 (-807 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-811 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-811 *6)) (-5 *1 (-810 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-818 *5 *6)) (-4 *5 (-1014))
- (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-818 *5 *7))
- (-5 *1 (-817 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-821 *5)) (-4 *5 (-1014))
- (-4 *6 (-1014)) (-5 *2 (-821 *6)) (-5 *1 (-820 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-881 *5)) (-4 *5 (-971))
- (-4 *6 (-971)) (-5 *2 (-881 *6)) (-5 *1 (-875 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-784))
- (-4 *8 (-971)) (-4 *6 (-730))
- (-4 *2
- (-13 (-1014)
- (-10 -8 (-15 -1602 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-708))))))
- (-5 *1 (-880 *6 *7 *8 *5 *2)) (-4 *5 (-878 *8 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-886 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-886 *6)) (-5 *1 (-885 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-872 *5)) (-4 *5 (-971))
- (-4 *6 (-971)) (-5 *2 (-872 *6)) (-5 *1 (-908 *5 *6))))
- ((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 *2 (-881 *4))) (-4 *4 (-971))
- (-4 *2 (-878 (-881 *4) *5 *6)) (-4 *5 (-730))
- (-4 *6
- (-13 (-784)
- (-10 -8 (-15 -1431 ((-1085) $))
- (-15 -1611 ((-3 $ "failed") (-1085))))))
- (-5 *1 (-911 *4 *5 *6 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-514)) (-4 *6 (-514))
- (-4 *2 (-919 *6)) (-5 *1 (-917 *5 *6 *4 *2)) (-4 *4 (-919 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-157)) (-4 *6 (-157))
- (-4 *2 (-923 *6)) (-5 *1 (-924 *4 *5 *2 *6)) (-4 *4 (-923 *5))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-974 *3 *4 *5 *6 *7))
- (-4 *5 (-971)) (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *5 (-971))
- (-4 *6 (-215 *4 *5)) (-4 *7 (-215 *3 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-971)) (-4 *10 (-971))
- (-14 *5 (-708)) (-14 *6 (-708)) (-4 *8 (-215 *6 *7))
- (-4 *9 (-215 *5 *7)) (-4 *2 (-974 *5 *6 *10 *11 *12))
- (-5 *1 (-976 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2))
- (-4 *4 (-974 *5 *6 *7 *8 *9)) (-4 *11 (-215 *6 *10))
- (-4 *12 (-215 *5 *10))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1009 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-1009 *6)) (-5 *1 (-1005 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1009 *5)) (-4 *5 (-782))
- (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-588 *6))
- (-5 *1 (-1005 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1007 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-1007 *6)) (-5 *1 (-1006 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1010 *4 *2)) (-4 *4 (-782))
- (-4 *2 (-1059 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1066 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-1066 *6)) (-5 *1 (-1064 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1066 *6)) (-5 *5 (-1066 *7))
- (-4 *6 (-1120)) (-4 *7 (-1120)) (-4 *8 (-1120)) (-5 *2 (-1066 *8))
- (-5 *1 (-1065 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1081 *5)) (-4 *5 (-971))
- (-4 *6 (-971)) (-5 *2 (-1081 *6)) (-5 *1 (-1079 *5 *6))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1097 *3 *4)) (-4 *3 (-1014))
- (-4 *4 (-1014))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1130 *5 *7 *9)) (-4 *5 (-971))
- (-4 *6 (-971)) (-14 *7 (-1085)) (-14 *9 *5) (-14 *10 *6)
- (-5 *2 (-1130 *6 *8 *10)) (-5 *1 (-1125 *5 *6 *7 *8 *9 *10))
- (-14 *8 (-1085))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1133 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-1133 *6)) (-5 *1 (-1132 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1133 *5)) (-4 *5 (-782))
- (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1066 *6))
- (-5 *1 (-1132 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1139 *5 *6)) (-14 *5 (-1085))
- (-4 *6 (-971)) (-4 *8 (-971)) (-5 *2 (-1139 *7 *8))
- (-5 *1 (-1134 *5 *6 *7 *8)) (-14 *7 (-1085))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-971)) (-4 *6 (-971))
- (-4 *2 (-1142 *6)) (-5 *1 (-1140 *5 *4 *6 *2)) (-4 *4 (-1142 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1151 *5 *7 *9)) (-4 *5 (-971))
- (-4 *6 (-971)) (-14 *7 (-1085)) (-14 *9 *5) (-14 *10 *6)
- (-5 *2 (-1151 *6 *8 *10)) (-5 *1 (-1146 *5 *6 *7 *8 *9 *10))
- (-14 *8 (-1085))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-971)) (-4 *6 (-971))
- (-4 *2 (-1157 *6)) (-5 *1 (-1155 *5 *6 *4 *2)) (-4 *4 (-1157 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1166 *5)) (-4 *5 (-1120))
- (-4 *6 (-1120)) (-5 *2 (-1166 *6)) (-5 *1 (-1165 *5 *6))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1166 *5))
- (-4 *5 (-1120)) (-4 *6 (-1120)) (-5 *2 (-1166 *6))
- (-5 *1 (-1165 *5 *6))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784))
- (-4 *4 (-971))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-971)) (-5 *1 (-1187 *3 *4))
- (-4 *4 (-780)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-855)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-850))) (-5 *1 (-1015 *3 *4)) (-14 *3 (-850))
- (-14 *4 (-850)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-598 *2)) (-4 *2 (-971)) (-4 *2 (-338))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-338)) (-5 *1 (-601 *4 *2))
- (-4 *2 (-598 *4)))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-522)) (-5 *3 (-850)) (-5 *1 (-637))))
- ((*1 *2 *2 *2 *3 *4)
- (-12 (-5 *2 (-628 *5)) (-5 *3 (-94 *5)) (-5 *4 (-1 *5 *5))
- (-4 *5 (-338)) (-5 *1 (-905 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-708)) (-5 *1 (-1074 *3 *4)) (-14 *3 (-850))
- (-4 *4 (-971)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-283)) (-4 *3 (-919 *2)) (-4 *4 (-1142 *3))
- (-5 *1 (-388 *2 *3 *4 *5)) (-4 *5 (-13 (-384 *3 *4) (-962 *3))))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
+ (-5 *2 (-108)))))
+(((*1 *1) (-5 *1 (-760))))
(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+ (-12 (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343)) (-5 *2 (-108))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-108))
+ (-5 *1 (-332 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1166 *4)) (-4 *4 (-324)) (-5 *2 (-108))
+ (-5 *1 (-492 *4)))))
+(((*1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1169))))
+ ((*1 *2 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-1169)))))
+(((*1 *2) (-12 (-5 *2 (-588 (-708))) (-5 *1 (-1169))))
+ ((*1 *2 *2) (-12 (-5 *2 (-588 (-708))) (-5 *1 (-1169)))))
+(((*1 *1 *1 *1) (-4 *1 (-699))))
(((*1 *1 *2)
(-12 (-5 *2 (-708)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971))
(-14 *4 (-588 (-1085)))))
@@ -16274,75 +16352,192 @@
(-12 (-5 *2 (-708)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
(-4 *5 (-157))))
((*1 *1) (-12 (-4 *2 (-157)) (-4 *1 (-662 *2 *3)) (-4 *3 (-1142 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-369)))))
-(((*1 *2 *1) (-12 (-5 *2 (-759)) (-5 *1 (-758)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1014)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 *2)))
- (-5 *2 (-821 *3)) (-5 *1 (-993 *3 *4 *5))
- (-4 *5 (-13 (-405 *4) (-815 *3) (-563 *2))))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-872 *3) (-872 *3))) (-5 *1 (-160 *3))
- (-4 *3 (-13 (-338) (-1106) (-928))))))
-(((*1 *1 *2) (-12 (-5 *1 (-951 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1008 *2)) (-4 *2 (-1120)))))
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
+ (-5 *2 (-588 (-202))) (-5 *1 (-183)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5)))
+ (-5 *2 (-708)) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-708))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-708)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-514)) (-4 *3 (-157)) (-4 *4 (-348 *3))
+ (-4 *5 (-348 *3)) (-5 *1 (-627 *3 *4 *5 *2))
+ (-4 *2 (-626 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-628 (-291 (-202))))
+ (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1157 *4))
+ (-4 *4 (-37 (-382 (-522))))
+ (-5 *2 (-1 (-1066 *4) (-1066 *4) (-1066 *4))) (-5 *1 (-1159 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-382 (-881 *3))) (-5 *1 (-427 *3 *4 *5 *6))
+ (-4 *3 (-514)) (-4 *3 (-157)) (-14 *4 (-850))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-1166 (-628 *3))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-706))
(-5 *2
- (-2 (|:| |stiffnessFactor| (-354)) (|:| |stabilityFactor| (-354))))
- (-5 *1 (-184)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-588 *6)) (-5 *4 (-588 (-224 *5 *6))) (-4 *6 (-426))
- (-5 *2 (-224 *5 *6)) (-14 *5 (-588 (-1085))) (-5 *1 (-576 *5 *6)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1179 *3 *4)) (-4 *3 (-784)) (-4 *4 (-157))
- (-5 *1 (-606 *3 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-606 *3 *4)) (-5 *1 (-1184 *3 *4))
- (-4 *3 (-784)) (-4 *4 (-157)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-128 *2 *3 *4)) (-14 *2 (-522)) (-14 *3 (-708))
- (-4 *4 (-157))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2))
- (-4 *2 (-405 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1007 *2)) (-4 *2 (-405 *4)) (-4 *4 (-13 (-784) (-514)))
- (-5 *1 (-144 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1007 *1)) (-4 *1 (-146))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-146)) (-5 *2 (-1085))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-439 *2 *3)) (-4 *2 (-157)) (-4 *3 (-23))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-708)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-784))
- (-4 *4 (-157)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-338)) (-4 *7 (-1142 *5)) (-4 *4 (-662 *5 *7))
- (-5 *2 (-2 (|:| -1222 (-628 *6)) (|:| |vec| (-1166 *5))))
- (-5 *1 (-748 *5 *6 *7 *4 *3)) (-4 *6 (-598 *5)) (-4 *3 (-598 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338))
- (-4 *7 (-1142 (-382 *6)))
- (-5 *2 (-2 (|:| |answer| *3) (|:| -3434 *3)))
- (-5 *1 (-520 *5 *6 *7 *3)) (-4 *3 (-317 *5 *6 *7))))
+ (-2 (|:| -1361 (-354)) (|:| -3015 (-1068))
+ (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))))
+ (-5 *1 (-523))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338))
+ (-12 (-5 *3 (-706)) (-5 *4 (-983))
(-5 *2
- (-2 (|:| |answer| (-382 *6)) (|:| -3434 (-382 *6))
- (|:| |specpart| (-382 *6)) (|:| |polypart| *6)))
- (-5 *1 (-521 *5 *6)) (-5 *3 (-382 *6)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-258 *2)) (-4 *2 (-1120)) (-4 *2 (-784))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-108) *3 *3)) (-4 *1 (-258 *3)) (-4 *3 (-1120))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-896 *2)) (-4 *2 (-784)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
+ (-2 (|:| -1361 (-354)) (|:| -3015 (-1068))
+ (|:| |explanations| (-588 (-1068))) (|:| |extra| (-960))))
+ (-5 *1 (-523))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-724)) (-5 *3 (-983))
+ (-5 *4
+ (-2 (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
(-5 *2
- (-2 (|:| -3435 *4) (|:| -2972 *4) (|:| |totalpts| (-522))
- (|:| |success| (-108))))
- (-5 *1 (-726)) (-5 *5 (-522)))))
+ (-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))
+ (|:| |extra| (-960))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-724)) (-5 *3 (-983))
+ (-5 *4
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
+ (-5 *2
+ (-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))
+ (|:| |extra| (-960))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-737)) (-5 *3 (-983))
+ (-5 *4
+ (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
+ (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
+ (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
+ (|:| |abserr| (-202)) (|:| |relerr| (-202))))
+ (-5 *2 (-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-745))
+ (-5 *2
+ (-2 (|:| -1361 (-354)) (|:| -3015 (-1068))
+ (|:| |explanations| (-588 (-1068)))))
+ (-5 *1 (-742))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-745)) (-5 *4 (-983))
+ (-5 *2
+ (-2 (|:| -1361 (-354)) (|:| -3015 (-1068))
+ (|:| |explanations| (-588 (-1068)))))
+ (-5 *1 (-742))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-773)) (-5 *3 (-983))
+ (-5 *4
+ (-2 (|:| |lfn| (-588 (-291 (-202)))) (|:| -3937 (-588 (-202)))))
+ (-5 *2 (-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-773)) (-5 *3 (-983))
+ (-5 *4
+ (-2 (|:| |fn| (-291 (-202))) (|:| -3937 (-588 (-202)))
+ (|:| |lb| (-588 (-777 (-202)))) (|:| |cf| (-588 (-291 (-202))))
+ (|:| |ub| (-588 (-777 (-202))))))
+ (-5 *2 (-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-775))
+ (-5 *2
+ (-2 (|:| -1361 (-354)) (|:| -3015 (-1068))
+ (|:| |explanations| (-588 (-1068)))))
+ (-5 *1 (-774))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-775)) (-5 *4 (-983))
+ (-5 *2
+ (-2 (|:| -1361 (-354)) (|:| -3015 (-1068))
+ (|:| |explanations| (-588 (-1068)))))
+ (-5 *1 (-774))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-824)) (-5 *3 (-983))
+ (-5 *4
+ (-2 (|:| |pde| (-588 (-291 (-202))))
+ (|:| |constraints|
+ (-588
+ (-2 (|:| |start| (-202)) (|:| |finish| (-202))
+ (|:| |grid| (-708)) (|:| |boundaryType| (-522))
+ (|:| |dStart| (-628 (-202))) (|:| |dFinish| (-628 (-202))))))
+ (|:| |f| (-588 (-588 (-291 (-202))))) (|:| |st| (-1068))
+ (|:| |tol| (-202))))
+ (-5 *2 (-2 (|:| -1361 (-354)) (|:| |explanations| (-1068))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-827))
+ (-5 *2
+ (-2 (|:| -1361 (-354)) (|:| -3015 (-1068))
+ (|:| |explanations| (-588 (-1068)))))
+ (-5 *1 (-826))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-827)) (-5 *4 (-983))
+ (-5 *2
+ (-2 (|:| -1361 (-354)) (|:| -3015 (-1068))
+ (|:| |explanations| (-588 (-1068)))))
+ (-5 *1 (-826)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-1106))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1166 *1)) (-4 *1 (-345 *4 *5)) (-4 *4 (-157))
+ (-4 *5 (-1142 *4)) (-5 *2 (-628 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-157)) (-4 *4 (-1142 *3))
+ (-5 *2 (-628 *3)))))
+(((*1 *2 *3 *4 *2 *5 *6)
+ (-12
+ (-5 *5
+ (-2 (|:| |done| (-588 *11))
+ (|:| |todo| (-588 (-2 (|:| |val| *3) (|:| -1974 *11))))))
+ (-5 *6 (-708))
+ (-5 *2 (-588 (-2 (|:| |val| (-588 *10)) (|:| -1974 *11))))
+ (-5 *3 (-588 *10)) (-5 *4 (-588 *11)) (-4 *10 (-985 *7 *8 *9))
+ (-4 *11 (-990 *7 *8 *9 *10)) (-4 *7 (-426)) (-4 *8 (-730))
+ (-4 *9 (-784)) (-5 *1 (-988 *7 *8 *9 *10 *11))))
+ ((*1 *2 *3 *4 *2 *5 *6)
+ (-12
+ (-5 *5
+ (-2 (|:| |done| (-588 *11))
+ (|:| |todo| (-588 (-2 (|:| |val| *3) (|:| -1974 *11))))))
+ (-5 *6 (-708))
+ (-5 *2 (-588 (-2 (|:| |val| (-588 *10)) (|:| -1974 *11))))
+ (-5 *3 (-588 *10)) (-5 *4 (-588 *11)) (-4 *10 (-985 *7 *8 *9))
+ (-4 *11 (-1023 *7 *8 *9 *10)) (-4 *7 (-426)) (-4 *8 (-730))
+ (-4 *9 (-784)) (-5 *1 (-1055 *7 *8 *9 *10 *11)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
+ (-5 *2 (-108)) (-5 *1 (-276)))))
+(((*1 *1 *1 *1) (-5 *1 (-792))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1017 *3 *4 *5 *6 *7)) (-4 *3 (-1014)) (-4 *4 (-1014))
+ (-4 *5 (-1014)) (-4 *6 (-1014)) (-4 *7 (-1014)) (-5 *2 (-108)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 (-51))) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1074 *2 *3)) (-14 *2 (-850)) (-4 *3 (-971)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1014)) (-4 *4 (-13 (-971) (-815 *3) (-784) (-563 *2)))
+ (-5 *2 (-821 *3)) (-5 *1 (-993 *3 *4 *5))
+ (-4 *5 (-13 (-405 *4) (-815 *3) (-563 *2))))))
+(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
+ (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *2 (-960))
+ (-5 *1 (-693)))))
(((*1 *1) (-5 *1 (-1171))))
+(((*1 *1 *1) (-12 (-5 *1 (-1107 *2)) (-4 *2 (-1014)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-708)) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5))
+ (-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
+ ((*1 *1 *2)
+ (-12 (-4 *2 (-971)) (-4 *1 (-1035 *3 *2 *4 *5)) (-4 *4 (-215 *3 *2))
+ (-4 *5 (-215 *3 *2)))))
(((*1 *1 *2)
(-12 (-5 *2 (-588 (-588 *3))) (-4 *3 (-971)) (-4 *1 (-626 *3 *4 *5))
(-4 *4 (-348 *3)) (-4 *5 (-348 *3))))
@@ -16354,14 +16549,18 @@
(-12 (-5 *2 (-588 (-588 *5))) (-4 *5 (-971))
(-4 *1 (-974 *3 *4 *5 *6 *7)) (-4 *6 (-215 *4 *5))
(-4 *7 (-215 *3 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-305)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-514))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2769 *4)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 *2)) (-4 *2 (-405 *4)) (-5 *1 (-144 *4 *2))
- (-4 *4 (-13 (-784) (-514))))))
+(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
+ (-12 (-5 *4 (-522)) (-5 *5 (-1068)) (-5 *6 (-628 (-202)))
+ (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-87 G))))
+ (-5 *8 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-363)) (|:| |fp| (-69 PEDERV))))
+ (-5 *10 (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))
+ (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-382 (-522))) (-5 *1 (-547 *3)) (-4 *3 (-37 *2))
+ (-4 *3 (-971)))))
+(((*1 *1 *2) (-12 (-5 *2 (-522)) (-5 *1 (-143))))
+ ((*1 *2 *3) (-12 (-5 *3 (-872 *2)) (-5 *1 (-909 *2)) (-4 *2 (-971)))))
(((*1 *1 *2 *2 *3)
(-12 (-5 *3 (-588 (-1085))) (-4 *4 (-1014))
(-4 *5 (-13 (-971) (-815 *4) (-784) (-563 (-821 *4))))
@@ -16372,243 +16571,132 @@
(-4 *4 (-13 (-971) (-815 *3) (-784) (-563 (-821 *3))))
(-5 *1 (-993 *3 *4 *2))
(-4 *2 (-13 (-405 *4) (-815 *3) (-563 (-821 *3)))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-786 *2)) (-4 *2 (-971)) (-4 *2 (-338)))))
+(((*1 *2 *3) (-12 (-5 *3 (-708)) (-5 *2 (-1171)) (-5 *1 (-354))))
+ ((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-354)))))
+(((*1 *2)
+ (-12 (-4 *4 (-157)) (-5 *2 (-108)) (-5 *1 (-341 *3 *4))
+ (-4 *3 (-342 *4))))
+ ((*1 *2) (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-338)) (-4 *6 (-1142 (-382 *2)))
+ (-4 *2 (-1142 *5)) (-5 *1 (-193 *5 *2 *6 *3))
+ (-4 *3 (-317 *5 *2 *6)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
+(((*1 *2 *3) (-12 (-5 *3 (-354)) (-5 *2 (-1068)) (-5 *1 (-281)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-990 *4 *5 *6 *3)) (-4 *4 (-426)) (-4 *5 (-730))
+ (-4 *6 (-784)) (-4 *3 (-985 *4 *5 *6)) (-5 *2 (-108)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1032)) (-5 *1 (-305)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-426)) (-4 *4 (-784)) (-4 *5 (-730)) (-5 *2 (-588 *6))
- (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522)))))
- (-4 *3 (-1142 *4)) (-5 *1 (-746 *4 *3 *2 *5)) (-4 *2 (-598 *3))
- (-4 *5 (-598 (-382 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-382 *5))
- (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-1142 *4))
- (-5 *1 (-746 *4 *5 *2 *6)) (-4 *2 (-598 *5)) (-4 *6 (-598 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-555 *2 *3)) (-4 *3 (-1120)) (-4 *2 (-1014))
- (-4 *2 (-784)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-792)) (-5 *1 (-365 *3 *4 *5)) (-14 *3 (-708))
- (-14 *4 (-708)) (-4 *5 (-157)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-777 (-354))) (-5 *2 (-777 (-202))) (-5 *1 (-281)))))
-(((*1 *1 *2 *3 *3 *4 *4)
- (-12 (-5 *2 (-881 (-522))) (-5 *3 (-1085))
- (-5 *4 (-1009 (-382 (-522)))) (-5 *1 (-30)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3 *2)
- (-12 (-4 *1 (-724)) (-5 *2 (-960))
- (-5 *3
- (-2 (|:| |fn| (-291 (-202)))
- (|:| -2386 (-588 (-1009 (-777 (-202))))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))))
- ((*1 *2 *3 *2)
- (-12 (-4 *1 (-724)) (-5 *2 (-960))
- (-5 *3
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202)))))))
-(((*1 *1 *1 *2)
- (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784))
- (-5 *1 (-474 *3 *4 *5 *2)) (-4 *2 (-878 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-338)) (-4 *3 (-730)) (-4 *4 (-784))
- (-5 *1 (-474 *2 *3 *4 *5)) (-4 *5 (-878 *2 *3 *4)))))
+ (-12 (-4 *3 (-338)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-108))
+ (-5 *1 (-474 *3 *4 *5 *6)) (-4 *6 (-878 *3 *4 *5)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-522))) (-4 *3 (-971)) (-5 *1 (-547 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-522))) (-4 *1 (-1126 *3)) (-4 *3 (-971))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-522))) (-4 *1 (-1157 *3)) (-4 *3 (-971)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
+ (-4 *2 (-13 (-405 *3) (-928))))))
(((*1 *2 *3)
(-12 (-5 *3 (-1 (-1066 *4) (-1066 *4))) (-5 *2 (-1066 *4))
(-5 *1 (-1189 *4)) (-4 *4 (-1120))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 (-588 (-1066 *5)) (-588 (-1066 *5)))) (-5 *4 (-522))
(-5 *2 (-588 (-1066 *5))) (-5 *1 (-1189 *5)) (-4 *5 (-1120)))))
-(((*1 *1 *1) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1120)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-221 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7))
- (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730))
- (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-988 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7))
- (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730))
- (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-819 *4 *3))
- (-4 *3 (-1120))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-51)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| |k| (-1085)) (|:| |c| (-1186 *3)))))
- (-5 *1 (-1186 *3)) (-4 *3 (-971))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-588 (-2 (|:| |k| *3) (|:| |c| (-1188 *3 *4)))))
- (-5 *1 (-1188 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-960)))))
+(((*1 *2 *2 *2 *2 *3)
+ (-12 (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3)))))
(((*1 *1 *1 *2)
(-12 (-5 *2 (-522)) (-4 *1 (-1008 *3)) (-4 *3 (-1120)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-690)))))
-(((*1 *2 *3 *3 *2)
- (|partial| -12 (-5 *2 (-708))
- (-4 *3 (-13 (-664) (-343) (-10 -7 (-15 ** (*3 *3 (-522))))))
- (-5 *1 (-223 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1066 *4)) (-4 *4 (-37 *3)) (-4 *4 (-971))
- (-5 *3 (-382 (-522))) (-5 *1 (-1070 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-782)) (-5 *2 (-522))))
- ((*1 *2 *1) (-12 (-5 *2 (-522)) (-5 *1 (-834 *3)) (-4 *3 (-1014))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-987 *4 *3)) (-4 *4 (-13 (-782) (-338)))
- (-4 *3 (-1142 *4)) (-5 *2 (-522))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-514) (-784) (-962 *2) (-584 *2) (-426)))
- (-5 *2 (-522)) (-5 *1 (-1029 *4 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *4)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-777 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *6)))
- (-4 *6 (-13 (-514) (-784) (-962 *2) (-584 *2) (-426)))
- (-5 *2 (-522)) (-5 *1 (-1029 *6 *3))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-1068))
- (-4 *6 (-13 (-514) (-784) (-962 *2) (-584 *2) (-426)))
- (-5 *2 (-522)) (-5 *1 (-1029 *6 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *6)))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-426)) (-5 *2 (-522))
- (-5 *1 (-1030 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1085)) (-5 *5 (-777 (-382 (-881 *6))))
- (-5 *3 (-382 (-881 *6))) (-4 *6 (-426)) (-5 *2 (-522))
- (-5 *1 (-1030 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-382 (-881 *6))) (-5 *4 (-1085))
- (-5 *5 (-1068)) (-4 *6 (-426)) (-5 *2 (-522)) (-5 *1 (-1030 *6))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *2 (-522)) (-5 *1 (-1103 *3)) (-4 *3 (-971)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-588 (-708))) (-5 *3 (-156)) (-5 *1 (-1074 *4 *5))
- (-14 *4 (-850)) (-4 *5 (-971)))))
-(((*1 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 *3)) (-4 *3 (-1023 *5 *6 *7 *8))
+ (-4 *5 (-13 (-283) (-135))) (-4 *6 (-730)) (-4 *7 (-784))
+ (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-108))
+ (-5 *1 (-544 *5 *6 *7 *8 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324)) (-5 *2 (-886 (-1032)))
+ (-5 *1 (-321 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171))
+ (-5 *1 (-915 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-4 *6 (-985 *3 *4 *5)) (-5 *2 (-1171))
+ (-5 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *7 (-990 *3 *4 *5 *6)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-588 *3))
- (-5 *1 (-904 *4 *5 *6 *3)) (-4 *3 (-985 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-588 *3)) (-4 *3 (-985 *4 *5 *6)) (-4 *4 (-514))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *1 (-904 *4 *5 *6 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
- (-4 *4 (-730)) (-4 *5 (-784)) (-5 *1 (-904 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 (-588 *7) (-588 *7))) (-5 *2 (-588 *7))
- (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514)) (-4 *5 (-730)) (-4 *6 (-784))
- (-5 *1 (-904 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-798 *3)) (-5 *2 (-522)))))
+ (-12 (-4 *3 (-426)) (-4 *4 (-730)) (-4 *5 (-784))
+ (-5 *1 (-423 *3 *4 *5 *2)) (-4 *2 (-878 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1120)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1154 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1066 (-522))) (-5 *1 (-1070 *4)) (-4 *4 (-971))
+ (-5 *3 (-522)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1171)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-1014)))))
+(((*1 *1) (-5 *1 (-129))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-338)) (-5 *2 (-588 *3)) (-5 *1 (-874 *4 *3))
+ (-4 *3 (-1142 *4)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1166 *1)) (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124))
+ (-4 *4 (-1142 *3)) (-4 *5 (-1142 (-382 *4))))))
(((*1 *2 *1 *1)
- (-12 (-4 *3 (-338)) (-4 *3 (-971))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -1383 *1)))
- (-4 *1 (-786 *3)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-507))))
-(((*1 *2 *1) (-12 (-4 *1 (-364)) (-5 *2 (-1068)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1085)) (-5 *5 (-1009 (-202))) (-5 *2 (-856))
- (-5 *1 (-854 *3)) (-4 *3 (-563 (-498)))))
- ((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *4 (-1085)) (-5 *5 (-1009 (-202))) (-5 *2 (-856))
- (-5 *1 (-854 *3)) (-4 *3 (-563 (-498)))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-855))))
- ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-855))))
- ((*1 *1 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-855))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1009 (-202))) (-5 *1 (-856))))
- ((*1 *1 *2 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-856))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-856))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-588 (-1 (-202) (-202)))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-856))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-588 (-1 (-202) (-202)))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-856))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-856))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-202) (-202))) (-5 *3 (-1009 (-202)))
- (-5 *1 (-856)))))
+ (-12 (-5 *2 (-588 (-719 *3))) (-5 *1 (-719 *3)) (-4 *3 (-514))
+ (-4 *3 (-971)))))
+(((*1 *1 *1) (-12 (-5 *1 (-393 *2)) (-4 *2 (-514)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
(((*1 *2 *1 *3)
- (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4))
- (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-719 *2)) (-4 *2 (-514)) (-4 *2 (-971))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-514)) (-5 *1 (-897 *3 *2)) (-4 *2 (-1142 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-514))))
- ((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *3 (-985 *4 *5 *6))
- (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *1))))
- (-4 *1 (-990 *4 *5 *6 *3)))))
+ (-12 (-4 *1 (-512 *3)) (-4 *3 (-13 (-379) (-1106))) (-5 *2 (-108)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-522))) (-5 *2 (-833 (-522))) (-5 *1 (-846))))
+ ((*1 *2) (-12 (-5 *2 (-833 (-522))) (-5 *1 (-846)))))
+(((*1 *1 *1 *1) (-5 *1 (-108))) ((*1 *1 *1 *1) (-4 *1 (-119))))
+(((*1 *1)
+ (-12 (-4 *1 (-379)) (-2473 (|has| *1 (-6 -4229)))
+ (-2473 (|has| *1 (-6 -4221)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-400 *2)) (-4 *2 (-1014)) (-4 *2 (-784))))
+ ((*1 *2 *1) (-12 (-4 *1 (-767 *2)) (-4 *2 (-784))))
+ ((*1 *1 *1 *1) (-4 *1 (-784))) ((*1 *1) (-5 *1 (-1032))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-856)))))
(((*1 *1 *2 *3)
(-12 (-5 *1 (-402 *3 *2)) (-4 *3 (-13 (-157) (-37 (-382 (-522)))))
(-4 *2 (-13 (-784) (-21))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-256))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1181 *3 *4)) (-4 *3 (-784)) (-4 *4 (-971))
- (-5 *2 (-108))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-1187 *3 *4)) (-4 *3 (-971))
- (-4 *4 (-780)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-522)) (-4 *1 (-626 *3 *4 *5)) (-4 *3 (-971))
- (-4 *4 (-348 *3)) (-4 *5 (-348 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-850)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
- ((*1 *1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-239)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-759)))))
+(((*1 *2 *1) (-12 (-4 *1 (-324)) (-5 *2 (-708))))
+ ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-377)) (-5 *2 (-708)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
- (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
- (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
- (|:| |abserr| (-202)) (|:| |relerr| (-202))))
- (-5 *2 (-354)) (-5 *1 (-184)))))
-(((*1 *2 *2)
- (-12
+ (-12 (-5 *3 (-1052 *4 *2)) (-14 *4 (-850))
+ (-4 *2 (-13 (-971) (-10 -7 (-6 (-4240 "*"))))) (-5 *1 (-831 *4 *2)))))
+(((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-872 (-202))) (-5 *4 (-803)) (-5 *5 (-850))
+ (-5 *2 (-1171)) (-5 *1 (-442))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-872 (-202))) (-5 *2 (-1171)) (-5 *1 (-442))))
+ ((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-588 (-872 (-202)))) (-5 *4 (-803)) (-5 *5 (-850))
+ (-5 *2 (-1171)) (-5 *1 (-442)))))
+(((*1 *1) (-5 *1 (-983))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-354) (-354))) (-5 *4 (-354))
(-5 *2
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
- (|:| |xpnt| (-522))))
- (-4 *4 (-13 (-1142 *3) (-514) (-10 -8 (-15 -2259 ($ $ $)))))
- (-4 *3 (-514)) (-5 *1 (-1145 *3 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-588 (-454 *4 *5))) (-14 *4 (-588 (-1085)))
- (-4 *5 (-426)) (-5 *2 (-588 (-224 *4 *5))) (-5 *1 (-576 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-522)) (-4 *4 (-730)) (-4 *5 (-784)) (-4 *2 (-971))
- (-5 *1 (-296 *4 *5 *2 *6)) (-4 *6 (-878 *2 *4 *5)))))
+ (-2 (|:| -3526 *4) (|:| -3106 *4) (|:| |totalpts| (-522))
+ (|:| |success| (-108))))
+ (-5 *1 (-726)) (-5 *5 (-522)))))
(((*1 *2 *3)
(|partial| -12
(-5 *3
(-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
(|:| |relerr| (-202))))
(-5 *2
(-2
@@ -16626,7 +16714,7 @@
(-3 (|:| |str| (-1066 (-202)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -2386
+ (|:| -2321
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -16635,266 +16723,250 @@
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-517)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-13 (-338) (-135)))
- (-5 *2 (-588 (-2 (|:| -1400 (-708)) (|:| -1893 *4) (|:| |num| *4))))
- (-5 *1 (-374 *3 *4)) (-4 *4 (-1142 *3)))))
-(((*1 *1 *2) (-12 (-5 *1 (-204 *2)) (-4 *2 (-13 (-338) (-1106))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1120)) (-5 *2 (-708)) (-5 *1 (-165 *4 *3))
- (-4 *3 (-615 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1081 *4)) (-4 *4 (-324))
- (-5 *2 (-1166 (-588 (-2 (|:| -3435 *4) (|:| -2717 (-1032))))))
- (-5 *1 (-321 *4)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-291 *3)) (-4 *3 (-13 (-971) (-784)))
- (-5 *1 (-200 *3 *4)) (-14 *4 (-588 (-1085))))))
+ (-12 (-4 *1 (-903 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5)) (-4 *3 (-514))
+ (-5 *2 (-108)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *7)) (-4 *7 (-784))
+ (-4 *8 (-878 *5 *6 *7)) (-4 *5 (-514)) (-4 *6 (-730))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1166 (-382 *8)) "failed"))
+ (|:| -2905 (-588 (-1166 (-382 *8))))))
+ (-5 *1 (-611 *5 *6 *7 *8)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-514)) (-5 *2 (-886 *3)) (-5 *1 (-1073 *4 *3))
+ (-4 *3 (-1142 *4)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-522)) (-5 *1 (-1103 *3)) (-4 *3 (-971)))))
+ (-12 (-5 *3 (-881 *5)) (-4 *5 (-971)) (-5 *2 (-454 *4 *5))
+ (-5 *1 (-873 *4 *5)) (-14 *4 (-588 (-1085))))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
+ (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-202))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN)))) (-5 *2 (-960))
+ (-5 *1 (-687)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *5 (-202))
+ (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-76 FUNCTN))))
+ (-5 *2 (-960)) (-5 *1 (-686)))))
+(((*1 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507))))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 (-522))) (-5 *1 (-898)))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-426) (-135))) (-5 *2 (-393 *3))
+ (-5 *1 (-95 *4 *3)) (-4 *3 (-1142 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-588 *3)) (-4 *3 (-1142 *5)) (-4 *5 (-13 (-426) (-135)))
+ (-5 *2 (-393 *3)) (-5 *1 (-95 *5 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1081 *5)) (-4 *5 (-426)) (-5 *2 (-588 *6))
- (-5 *1 (-500 *5 *6 *4)) (-4 *6 (-338)) (-4 *4 (-13 (-338) (-782)))))
+ (-12 (-5 *3 (-1085)) (-4 *5 (-338)) (-5 *2 (-1066 (-1066 (-881 *5))))
+ (-5 *1 (-1174 *5)) (-5 *4 (-1066 (-881 *5))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-951 (-777 (-522)))) (-5 *1 (-547 *3)) (-4 *3 (-971)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *1 (-591 *2 *3 *4)) (-4 *2 (-1014)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085)) (-4 *4 (-426)) (-4 *4 (-784))
+ (-5 *1 (-531 *4 *2)) (-4 *2 (-260)) (-4 *2 (-405 *4)))))
+(((*1 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-1098 *3 *4)) (-4 *3 (-1014))
+ (-4 *4 (-1014)))))
+(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
+ (-12 (-5 *5 (-628 (-202))) (-5 *6 (-628 (-522))) (-5 *3 (-522))
+ (-5 *4 (-202)) (-5 *2 (-960)) (-5 *1 (-690)))))
+(((*1 *2 *2 *2 *3 *3)
+ (-12 (-5 *3 (-708)) (-4 *4 (-971)) (-5 *1 (-1138 *4 *2))
+ (-4 *2 (-1142 *4)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-708))
+ (-4 *3 (-13 (-283) (-10 -8 (-15 -3133 ((-393 $) $)))))
+ (-4 *4 (-1142 *3)) (-5 *1 (-469 *3 *4 *5)) (-4 *5 (-384 *3 *4)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-588 (-382 (-881 (-522))))) (-5 *4 (-588 (-1085)))
+ (-5 *2 (-588 (-588 *5))) (-5 *1 (-355 *5))
+ (-4 *5 (-13 (-782) (-338)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-881 *5)) (-4 *5 (-426)) (-5 *2 (-588 *6))
- (-5 *1 (-500 *5 *6 *4)) (-4 *6 (-338)) (-4 *4 (-13 (-338) (-782))))))
+ (-12 (-5 *3 (-382 (-881 (-522)))) (-5 *2 (-588 *4)) (-5 *1 (-355 *4))
+ (-4 *4 (-13 (-782) (-338))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-225)))))
(((*1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-426)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171))
- (-5 *1 (-991 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1068)) (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-1171))
- (-5 *1 (-1022 *4 *5 *6 *7 *8)) (-4 *8 (-990 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-514)) (-5 *1 (-40 *3 *2))
- (-4 *2
- (-13 (-338) (-278)
- (-10 -8 (-15 -2805 ((-1037 *3 (-561 $)) $))
- (-15 -2816 ((-1037 *3 (-561 $)) $))
- (-15 -2190 ($ (-1037 *3 (-561 $)))))))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-514)) (-5 *1 (-40 *3 *2))
- (-4 *2
- (-13 (-338) (-278)
- (-10 -8 (-15 -2805 ((-1037 *3 (-561 $)) $))
- (-15 -2816 ((-1037 *3 (-561 $)) $))
- (-15 -2190 ($ (-1037 *3 (-561 $)))))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 *2))
- (-4 *2
- (-13 (-338) (-278)
- (-10 -8 (-15 -2805 ((-1037 *4 (-561 $)) $))
- (-15 -2816 ((-1037 *4 (-561 $)) $))
- (-15 -2190 ($ (-1037 *4 (-561 $)))))))
- (-4 *4 (-514)) (-5 *1 (-40 *4 *2))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-588 (-561 *2)))
- (-4 *2
- (-13 (-338) (-278)
- (-10 -8 (-15 -2805 ((-1037 *4 (-561 $)) $))
- (-15 -2816 ((-1037 *4 (-561 $)) $))
- (-15 -2190 ($ (-1037 *4 (-561 $)))))))
- (-4 *4 (-514)) (-5 *1 (-40 *4 *2)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1066 *4)) (-5 *3 (-522)) (-4 *4 (-971))
- (-5 *1 (-1070 *4))))
- ((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-522)) (-5 *1 (-1158 *3 *4 *5)) (-4 *3 (-971))
- (-14 *4 (-1085)) (-14 *5 *3))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157))))
- ((*1 *2 *3 *3 *2)
- (-12 (-5 *3 (-708)) (-5 *1 (-790 *2)) (-4 *2 (-157)))))
-(((*1 *1) (-5 *1 (-132))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-426))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1081 *6)) (-4 *6 (-878 *5 *3 *4)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *5 (-838)) (-5 *1 (-431 *3 *4 *5 *6))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-838)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-14 *5 (-588 (-1085))) (-4 *2 (-157))
- (-4 *4 (-215 (-3480 *5) (-708)))
- (-14 *6
- (-1 (-108) (-2 (|:| -2717 *3) (|:| -1400 *4))
- (-2 (|:| -2717 *3) (|:| -1400 *4))))
- (-5 *1 (-435 *5 *2 *3 *4 *6 *7)) (-4 *3 (-784))
- (-4 *7 (-878 *2 *4 (-794 *5))))))
-(((*1 *1 *1) (-5 *1 (-983))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
- (|:| -2386 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
- (|:| |relerr| (-202))))
- (-5 *2 (-2 (|:| -1420 (-110)) (|:| |w| (-202)))) (-5 *1 (-183)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-426))) (-5 *1 (-1112 *3 *2))
- (-4 *2 (-13 (-405 *3) (-1106))))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-850)) (-5 *1 (-1015 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
-(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-411)))))
+ (|partial| -12 (-4 *1 (-342 *2)) (-4 *2 (-157)) (-4 *2 (-514))))
+ ((*1 *1 *1) (|partial| -4 *1 (-660))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -2002 *6) (|:| |sol?| (-108))) (-522)
+ *6))
+ (-4 *6 (-338)) (-4 *7 (-1142 *6))
+ (-5 *2 (-2 (|:| |answer| (-539 (-382 *7))) (|:| |a0| *6)))
+ (-5 *1 (-532 *6 *7)) (-5 *3 (-382 *7)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068))
+ (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-108)) (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3))
+ (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *4 (-13 (-338) (-782))) (-5 *2 (-393 *3))
+ (-5 *1 (-164 *4 *3)) (-4 *3 (-1142 (-154 *4))))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1081 *1)) (-5 *3 (-1085)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1081 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-881 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1085)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-784) (-514)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-784) (-514)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1081 *2)) (-5 *4 (-1085)) (-4 *2 (-405 *5))
+ (-5 *1 (-31 *5 *2)) (-4 *5 (-13 (-784) (-514)))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1081 *1)) (-5 *3 (-850)) (-4 *1 (-938))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-1081 *1)) (-5 *3 (-850)) (-5 *4 (-792))
+ (-4 *1 (-938))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *3 (-850)) (-4 *4 (-13 (-782) (-338)))
+ (-4 *1 (-987 *4 *2)) (-4 *2 (-1142 *4)))))
+(((*1 *1 *1) (-4 *1 (-131)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-144 *3 *2))
+ (-4 *2 (-405 *3))))
+ ((*1 *2 *2) (-12 (-5 *1 (-145 *2)) (-4 *2 (-507)))))
(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-522))) (-5 *1 (-969)))))
-(((*1 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-343)) (-4 *2 (-338)))))
-(((*1 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169))))
- ((*1 *2 *2) (-12 (-5 *2 (-850)) (-5 *1 (-1169)))))
+ (-12 (-5 *3 (-588 (-561 *5))) (-4 *4 (-784)) (-5 *2 (-561 *5))
+ (-5 *1 (-531 *4 *5)) (-4 *5 (-405 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-151 *3)) (-4 *3 (-157)) (-4 *3 (-980)) (-4 *3 (-1106))
+ (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4))
+ (-5 *2
+ (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-382 *5))
+ (|:| |c2| (-382 *5)) (|:| |deg| (-708))))
+ (-5 *1 (-136 *4 *5 *3)) (-4 *3 (-1142 (-382 *5))))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-51)) (-5 *1 (-50 *2)) (-4 *2 (-1120))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-881 (-354))) (-5 *1 (-314 *3 *4 *5))
- (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085)))
- (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-382 (-881 (-354)))) (-5 *1 (-314 *3 *4 *5))
- (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085)))
- (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-291 (-354))) (-5 *1 (-314 *3 *4 *5))
- (-4 *5 (-962 (-354))) (-14 *3 (-588 (-1085)))
- (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-881 (-522))) (-5 *1 (-314 *3 *4 *5))
- (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085)))
- (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-382 (-881 (-522)))) (-5 *1 (-314 *3 *4 *5))
- (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085)))
- (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-291 (-522))) (-5 *1 (-314 *3 *4 *5))
- (-4 *5 (-962 (-522))) (-14 *3 (-588 (-1085)))
- (-14 *4 (-588 (-1085))) (-4 *5 (-362))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1085)) (-5 *1 (-314 *3 *4 *5))
- (-14 *3 (-588 *2)) (-14 *4 (-588 *2)) (-4 *5 (-362))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-291 *5)) (-4 *5 (-362))
- (-5 *1 (-314 *3 *4 *5)) (-14 *3 (-588 (-1085)))
- (-14 *4 (-588 (-1085)))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-628 (-382 (-881 (-522))))) (-4 *1 (-359))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-628 (-382 (-881 (-354))))) (-4 *1 (-359))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-628 (-881 (-522)))) (-4 *1 (-359))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-628 (-881 (-354)))) (-4 *1 (-359))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-628 (-291 (-522)))) (-4 *1 (-359))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-628 (-291 (-354)))) (-4 *1 (-359))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-382 (-881 (-522)))) (-4 *1 (-371))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-382 (-881 (-354)))) (-4 *1 (-371))))
- ((*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-522))) (-4 *1 (-371))))
- ((*1 *1 *2) (|partial| -12 (-5 *2 (-881 (-354))) (-4 *1 (-371))))
- ((*1 *1 *2) (|partial| -12 (-5 *2 (-291 (-522))) (-4 *1 (-371))))
- ((*1 *1 *2) (|partial| -12 (-5 *2 (-291 (-354))) (-4 *1 (-371))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1166 (-382 (-881 (-522))))) (-4 *1 (-415))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1166 (-382 (-881 (-354))))) (-4 *1 (-415))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1166 (-881 (-522)))) (-4 *1 (-415))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1166 (-881 (-354)))) (-4 *1 (-415))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1166 (-291 (-522)))) (-4 *1 (-415))))
- ((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1166 (-291 (-354)))) (-4 *1 (-415))))
+ (-12 (-5 *3 (-1085))
+ (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-51)) (-5 *1 (-290 *4 *5))
+ (-4 *5 (-13 (-27) (-1106) (-405 *4)))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-324)) (-4 *5 (-304 *4)) (-4 *6 (-1142 *5))
- (-5 *2 (-1081 (-1081 *4))) (-5 *1 (-714 *4 *5 *6 *3 *7))
- (-4 *3 (-1142 *6)) (-14 *7 (-850))))
+ (-12 (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-51)) (-5 *1 (-290 *4 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-382 (-522)))
+ (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-51)) (-5 *1 (-290 *5 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-270 *3)) (-4 *3 (-13 (-27) (-1106) (-405 *5)))
+ (-4 *5 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-51)) (-5 *1 (-290 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-270 *3)) (-5 *5 (-382 (-522)))
+ (-4 *3 (-13 (-27) (-1106) (-405 *6)))
+ (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-51)) (-5 *1 (-290 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 (-522))) (-5 *4 (-270 *6))
+ (-4 *6 (-13 (-27) (-1106) (-405 *5)))
+ (-4 *5 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-51)) (-5 *1 (-433 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3))
+ (-4 *3 (-13 (-27) (-1106) (-405 *6)))
+ (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-51)) (-5 *1 (-433 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *7 (-522))) (-5 *4 (-270 *7)) (-5 *5 (-1133 (-522)))
+ (-4 *7 (-13 (-27) (-1106) (-405 *6)))
+ (-4 *6 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-51)) (-5 *1 (-433 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-522)))
+ (-4 *3 (-13 (-27) (-1106) (-405 *7)))
+ (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-51)) (-5 *1 (-433 *7 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-1 *8 (-382 (-522)))) (-5 *4 (-270 *8))
+ (-5 *5 (-1133 (-382 (-522)))) (-5 *6 (-382 (-522)))
+ (-4 *8 (-13 (-27) (-1106) (-405 *7)))
+ (-4 *7 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-51)) (-5 *1 (-433 *7 *8))))
+ ((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *4 (-1085)) (-5 *5 (-270 *3)) (-5 *6 (-1133 (-382 (-522))))
+ (-5 *7 (-382 (-522))) (-4 *3 (-13 (-27) (-1106) (-405 *8)))
+ (-4 *8 (-13 (-514) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *2 (-51)) (-5 *1 (-433 *8 *3))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-588 *6)) (-4 *6 (-985 *3 *4 *5))
- (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784))
- (-4 *1 (-903 *3 *4 *5 *6))))
- ((*1 *2 *1) (|partial| -12 (-4 *1 (-962 *2)) (-4 *2 (-1120))))
+ (-12 (-5 *2 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *3))))
+ (-4 *3 (-971)) (-5 *1 (-547 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-5 *1 (-548 *3))))
((*1 *1 *2)
- (|partial| -3708
- (-12 (-5 *2 (-881 *3))
- (-12 (-2401 (-4 *3 (-37 (-382 (-522)))))
- (-2401 (-4 *3 (-37 (-522)))) (-4 *5 (-563 (-1085))))
- (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730))
- (-4 *5 (-784)))
- (-12 (-5 *2 (-881 *3))
- (-12 (-2401 (-4 *3 (-507))) (-2401 (-4 *3 (-37 (-382 (-522)))))
- (-4 *3 (-37 (-522))) (-4 *5 (-563 (-1085))))
- (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730))
- (-4 *5 (-784)))
- (-12 (-5 *2 (-881 *3))
- (-12 (-2401 (-4 *3 (-919 (-522)))) (-4 *3 (-37 (-382 (-522))))
- (-4 *5 (-563 (-1085))))
- (-4 *3 (-971)) (-4 *1 (-985 *3 *4 *5)) (-4 *4 (-730))
- (-4 *5 (-784)))))
+ (-12 (-5 *2 (-1066 (-2 (|:| |k| (-522)) (|:| |c| *3))))
+ (-4 *3 (-971)) (-4 *1 (-1126 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-708))
+ (-5 *3 (-1066 (-2 (|:| |k| (-382 (-522))) (|:| |c| *4))))
+ (-4 *4 (-971)) (-4 *1 (-1147 *4))))
((*1 *1 *2)
- (|partial| -3708
- (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5))
- (-12 (-2401 (-4 *3 (-37 (-382 (-522))))) (-4 *3 (-37 (-522)))
- (-4 *5 (-563 (-1085))))
- (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))
- (-12 (-5 *2 (-881 (-522))) (-4 *1 (-985 *3 *4 *5))
- (-12 (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))))
- (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)))))
+ (-12 (-5 *2 (-1066 *3)) (-4 *3 (-971)) (-4 *1 (-1157 *3))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-881 (-382 (-522)))) (-4 *1 (-985 *3 *4 *5))
- (-4 *3 (-37 (-382 (-522)))) (-4 *5 (-563 (-1085))) (-4 *3 (-971))
- (-4 *4 (-730)) (-4 *5 (-784)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-225)))))
-(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
- (-12 (-5 *2 (-522))
- (-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-708)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-730)) (-4 *4 (-878 *5 *6 *7)) (-4 *5 (-426)) (-4 *7 (-784))
- (-5 *1 (-423 *5 *6 *7 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-588 (-2 (|:| -3435 *4) (|:| -2717 (-1032))))))
- (-4 *4 (-324)) (-5 *2 (-708)) (-5 *1 (-321 *4))))
- ((*1 *2)
- (-12 (-5 *2 (-708)) (-5 *1 (-326 *3 *4)) (-14 *3 (-850))
- (-14 *4 (-850))))
- ((*1 *2)
- (-12 (-5 *2 (-708)) (-5 *1 (-327 *3 *4)) (-4 *3 (-324))
- (-14 *4
- (-3 (-1081 *3)
- (-1166 (-588 (-2 (|:| -3435 *3) (|:| -2717 (-1032)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-708)) (-5 *1 (-328 *3 *4)) (-4 *3 (-324))
- (-14 *4 (-850)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
- (-5 *1 (-695)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-229 *2 *3 *4 *5)) (-4 *2 (-971)) (-4 *3 (-784))
- (-4 *4 (-242 *3)) (-4 *5 (-730)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-588 (-522))) (-5 *3 (-628 (-522))) (-5 *1 (-1024)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1081 *1)) (-4 *1 (-938)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-49 *3 *4)) (-4 *3 (-971))
- (-14 *4 (-588 (-1085)))))
+ (-12 (-5 *2 (-1066 (-2 (|:| |k| (-708)) (|:| |c| *3))))
+ (-4 *3 (-971)) (-4 *1 (-1157 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-561 (-47)))) (-5 *1 (-47))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-561 (-47))) (-5 *1 (-47))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1081 (-47))) (-5 *3 (-588 (-561 (-47)))) (-5 *1 (-47))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1081 (-47))) (-5 *3 (-561 (-47))) (-5 *1 (-47))))
+ ((*1 *2 *1) (-12 (-4 *1 (-151 *2)) (-4 *2 (-157))))
((*1 *2 *3)
- (-12 (-5 *3 (-51)) (-5 *2 (-108)) (-5 *1 (-50 *4)) (-4 *4 (-1120))))
+ (-12 (-4 *2 (-13 (-338) (-782))) (-5 *1 (-164 *2 *3))
+ (-4 *3 (-1142 (-154 *2)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-850)) (-4 *1 (-304 *3)) (-4 *3 (-338)) (-4 *3 (-343))))
+ ((*1 *2 *1) (-12 (-4 *1 (-304 *2)) (-4 *2 (-338))))
((*1 *2 *1)
- (-12 (-5 *2 (-108)) (-5 *1 (-200 *3 *4)) (-4 *3 (-13 (-971) (-784)))
- (-14 *4 (-588 (-1085)))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-613 *3)) (-4 *3 (-784))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-617 *3)) (-4 *3 (-784))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-822 *3)) (-4 *3 (-784)))))
-(((*1 *1 *1 *1) (-4 *1 (-447))) ((*1 *1 *1 *1) (-4 *1 (-699))))
-(((*1 *2) (-12 (-5 *2 (-1171)) (-5 *1 (-1169)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-1085))) (-5 *1 (-498)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1081 *3)) (-4 *3 (-324)) (-5 *1 (-332 *3)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1068)) (-5 *1 (-1102)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+ (-12 (-4 *1 (-345 *2 *3)) (-4 *3 (-1142 *2)) (-4 *2 (-157))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-1142 *2)) (-4 *2 (-919 *3)) (-5 *1 (-388 *3 *2 *4 *5))
+ (-4 *3 (-283)) (-4 *5 (-13 (-384 *2 *4) (-962 *2)))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-1142 *2)) (-4 *2 (-919 *3))
+ (-5 *1 (-389 *3 *2 *4 *5 *6)) (-4 *3 (-283)) (-4 *5 (-384 *2 *4))
+ (-14 *6 (-1166 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-850)) (-4 *5 (-971))
+ (-4 *2 (-13 (-379) (-962 *5) (-338) (-1106) (-260)))
+ (-5 *1 (-417 *5 *3 *2)) (-4 *3 (-1142 *5))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-561 (-465)))) (-5 *1 (-465))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-561 (-465))) (-5 *1 (-465))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1081 (-465))) (-5 *3 (-588 (-561 (-465))))
+ (-5 *1 (-465))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1081 (-465))) (-5 *3 (-561 (-465))) (-5 *1 (-465))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1166 *4)) (-5 *3 (-850)) (-4 *4 (-324))
+ (-5 *1 (-492 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-426)) (-4 *5 (-662 *4 *2)) (-4 *2 (-1142 *4))
+ (-5 *1 (-712 *4 *2 *5 *3)) (-4 *3 (-1142 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157))))
+ ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157))))
+ ((*1 *1 *1) (-4 *1 (-980))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1142 *5)) (-4 *5 (-338))
+ (-5 *2 (-2 (|:| -2585 (-382 *6)) (|:| |coeff| (-382 *6))))
+ (-5 *1 (-532 *5 *6)) (-5 *3 (-382 *6)))))
+(((*1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-419 *3)) (-4 *3 (-971)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-229 *3 *4 *5 *6)) (-4 *3 (-971)) (-4 *4 (-784))
+ (-4 *5 (-242 *4)) (-4 *6 (-730)) (-5 *2 (-588 *4)))))
+(((*1 *2 *2 *3 *4 *5)
+ (-12 (-5 *2 (-588 *9)) (-5 *3 (-1 (-108) *9))
+ (-5 *4 (-1 (-108) *9 *9)) (-5 *5 (-1 *9 *9 *9))
+ (-4 *9 (-985 *6 *7 *8)) (-4 *6 (-514)) (-4 *7 (-730)) (-4 *8 (-784))
+ (-5 *1 (-904 *6 *7 *8 *9)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-561 *1)) (-4 *1 (-405 *4)) (-4 *4 (-784))
(-4 *4 (-514)) (-5 *2 (-382 (-1081 *1)))))
@@ -16918,140 +16990,133 @@
(-5 *1 (-879 *5 *4 *6 *7 *3))
(-4 *3
(-13 (-338)
- (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $)))))))
+ (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $)))))))
((*1 *2 *3 *4 *2)
(-12 (-5 *2 (-1081 *3))
(-4 *3
(-13 (-338)
- (-10 -8 (-15 -2190 ($ *7)) (-15 -2805 (*7 $)) (-15 -2816 (*7 $)))))
+ (-10 -8 (-15 -2217 ($ *7)) (-15 -2947 (*7 $)) (-15 -2959 (*7 $)))))
(-4 *7 (-878 *6 *5 *4)) (-4 *5 (-730)) (-4 *4 (-784)) (-4 *6 (-971))
(-5 *1 (-879 *5 *4 *6 *7 *3))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-1085)) (-4 *5 (-514))
(-5 *2 (-382 (-1081 (-382 (-881 *5))))) (-5 *1 (-967 *5))
(-5 *3 (-382 (-881 *5))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-522)) (-5 *1 (-634 *2)) (-4 *2 (-1142 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *1 (-144 *4 *2))
- (-4 *2 (-405 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1007 *2)) (-4 *2 (-405 *4)) (-4 *4 (-13 (-784) (-514)))
- (-5 *1 (-144 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1007 *1)) (-4 *1 (-146))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-146)) (-5 *2 (-1085)))))
-(((*1 *2 *1) (-12 (-4 *1 (-936 *3)) (-4 *3 (-1120)) (-5 *2 (-588 *3)))))
-(((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-1121 *3)) (-4 *3 (-1014)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-547 *2)) (-4 *2 (-37 (-382 (-522)))) (-4 *2 (-971)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-514))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-897 *4 *3)) (-4 *3 (-1142 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-514)) (-5 *2 (-1166 (-628 *4))) (-5 *1 (-88 *4 *5))
- (-5 *3 (-628 *4)) (-4 *5 (-598 *4)))))
-(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-522)) (-5 *5 (-628 (-202)))
- (-5 *6 (-3 (|:| |fn| (-363)) (|:| |fp| (-84 FCN))))
- (-5 *7 (-3 (|:| |fn| (-363)) (|:| |fp| (-86 OUTPUT))))
- (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-687)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-588 (-821 *3))) (-5 *1 (-821 *3))
+ (-4 *3 (-1014)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-3 (-108) "failed")) (-4 *3 (-426)) (-4 *4 (-784))
+ (-4 *5 (-730)) (-5 *1 (-914 *3 *4 *5 *6)) (-4 *6 (-878 *3 *5 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-821 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-108)) (-5 *1 (-416 *3)) (-4 *3 (-1142 (-522))))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-154 (-202))) (-5 *5 (-522)) (-5 *6 (-1068))
+ (-5 *3 (-202)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1068)) (-5 *1 (-498)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-856))
- (-5 *2
- (-2 (|:| |brans| (-588 (-588 (-872 (-202)))))
- (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))))
- (-5 *1 (-141))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-856)) (-5 *4 (-382 (-522)))
- (-5 *2
- (-2 (|:| |brans| (-588 (-588 (-872 (-202)))))
- (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))))
- (-5 *1 (-141))))
- ((*1 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |brans| (-588 (-588 (-872 (-202)))))
- (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))))
- (-5 *1 (-141)) (-5 *3 (-588 (-872 (-202))))))
- ((*1 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |brans| (-588 (-588 (-872 (-202)))))
- (|:| |xValues| (-1009 (-202))) (|:| |yValues| (-1009 (-202)))))
- (-5 *1 (-141)) (-5 *3 (-588 (-588 (-872 (-202)))))))
- ((*1 *1 *2) (-12 (-5 *2 (-588 (-1009 (-354)))) (-5 *1 (-239))))
- ((*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-239)))))
+ (-12 (-4 *4 (-971)) (-5 *2 (-108)) (-5 *1 (-418 *4 *3))
+ (-4 *3 (-1142 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-985 *3 *4 *5)) (-4 *3 (-971)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-5 *2 (-108)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1171)) (-5 *1 (-759)))))
(((*1 *1 *2) (-12 (-5 *2 (-588 (-1068))) (-5 *1 (-305))))
((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-305)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *2)
- (|:| |polj| *2)))
- (-4 *5 (-730)) (-4 *2 (-878 *4 *5 *6)) (-5 *1 (-423 *4 *5 *6 *2))
- (-4 *4 (-426)) (-4 *6 (-784)))))
-(((*1 *2 *1 *2)
- (-12 (-4 *1 (-339 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-1014)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-971)) (-4 *4 (-730)) (-4 *5 (-784)) (-5 *2 (-588 *1))
- (-4 *1 (-985 *3 *4 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-588 *1)) (|has| *1 (-6 -4239)) (-4 *1 (-936 *3))
- (-4 *3 (-1120)))))
-(((*1 *2 *1) (-12 (-5 *2 (-588 (-561 *1))) (-4 *1 (-278)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *5)) (-5 *4 (-850)) (-4 *5 (-784))
- (-5 *2 (-588 (-613 *5))) (-5 *1 (-613 *5)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-224 *4 *5)) (-14 *4 (-588 (-1085))) (-4 *5 (-971))
- (-5 *2 (-454 *4 *5)) (-5 *1 (-873 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-962 (-522))) (-4 *1 (-278)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-4 *1 (-507)) (-5 *2 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-834 *3)) (-4 *3 (-1014)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1066 (-522))) (-5 *1 (-1070 *4)) (-4 *4 (-971))
- (-5 *3 (-522)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-708)) (-5 *4 (-522)) (-5 *1 (-419 *2)) (-4 *2 (-971)))))
+ (-12 (-4 *3 (-13 (-514) (-784) (-962 (-522)))) (-5 *1 (-167 *3 *2))
+ (-4 *2 (-13 (-27) (-1106) (-405 (-154 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-514) (-784) (-962 (-522))))
+ (-5 *1 (-167 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 (-154 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-1110 *3 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085))
+ (-4 *4 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-5 *1 (-1110 *4 *2)) (-4 *2 (-13 (-27) (-1106) (-405 *4))))))
+(((*1 *2 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168))))
+ ((*1 *2) (-12 (-5 *2 (-354)) (-5 *1 (-1168)))))
+(((*1 *2 *1) (-12 (-5 *2 (-393 *3)) (-5 *1 (-843 *3)) (-4 *3 (-283)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *5 *5))
- (-4 *5 (-13 (-338) (-10 -8 (-15 ** ($ $ (-382 (-522)))))))
- (-5 *2
- (-2 (|:| |solns| (-588 *5))
- (|:| |maps| (-588 (-2 (|:| |arg| *5) (|:| |res| *5))))))
- (-5 *1 (-1040 *3 *5)) (-4 *3 (-1142 *5)))))
+ (-12 (-5 *3 (-1081 *2)) (-4 *2 (-878 (-382 (-881 *6)) *5 *4))
+ (-5 *1 (-670 *5 *4 *6 *2)) (-4 *5 (-730))
+ (-4 *4 (-13 (-784) (-10 -8 (-15 -3873 ((-1085) $)))))
+ (-4 *6 (-514)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-522) (-522))) (-5 *1 (-336 *3)) (-4 *3 (-1014))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-708) (-708))) (-5 *1 (-361 *3)) (-4 *3 (-1014))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
+ (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-561 *1))) (-4 *1 (-278)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1009 (-777 (-354)))) (-5 *2 (-1009 (-777 (-202))))
- (-5 *1 (-281)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-985 *2 *3 *4)) (-4 *2 (-971)) (-4 *3 (-730))
- (-4 *4 (-784)) (-4 *2 (-426)))))
+ (-12 (-5 *3 (-968 *4 *5)) (-4 *4 (-13 (-782) (-283) (-135) (-947)))
+ (-14 *5 (-588 (-1085))) (-5 *2 (-588 (-588 (-949 (-382 *4)))))
+ (-5 *1 (-1190 *4 *5 *6)) (-14 *6 (-588 (-1085)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7))
+ (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-108))
+ (-4 *5 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2 (-588 (-588 (-949 (-382 *5))))) (-5 *1 (-1190 *5 *6 *7))
+ (-14 *6 (-588 (-1085))) (-14 *7 (-588 (-1085)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-588 (-881 *4)))
+ (-4 *4 (-13 (-782) (-283) (-135) (-947)))
+ (-5 *2 (-588 (-588 (-949 (-382 *4))))) (-5 *1 (-1190 *4 *5 *6))
+ (-14 *5 (-588 (-1085))) (-14 *6 (-588 (-1085))))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1081 *1)) (-4 *1 (-938)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-157)) (-4 *2 (-23)) (-5 *1 (-265 *3 *4 *2 *5 *6 *7))
+ (-4 *4 (-1142 *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 (-649 *3 *2 *4 *5 *6)) (-4 *3 (-157))
+ (-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 (-1142 *3)) (-5 *1 (-650 *3 *2)) (-4 *3 (-971))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-23)) (-5 *1 (-653 *3 *2 *4 *5 *6)) (-4 *3 (-157))
+ (-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 (-798 *3)) (-5 *2 (-522)))))
+(((*1 *1) (-5 *1 (-129))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-588 *2)) (-5 *1 (-163 *2)) (-4 *2 (-283))))
- ((*1 *2 *3 *2)
- (-12 (-5 *3 (-588 (-588 *4))) (-5 *2 (-588 *4)) (-4 *4 (-283))
- (-5 *1 (-163 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-588 *8))
- (-5 *4
- (-588
- (-2 (|:| -3855 (-628 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-628 *7)))))
- (-5 *5 (-708)) (-4 *8 (-1142 *7)) (-4 *7 (-1142 *6)) (-4 *6 (-324))
- (-5 *2
- (-2 (|:| -3855 (-628 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-628 *7))))
- (-5 *1 (-468 *6 *7 *8))))
- ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-522)) (-5 *1 (-519)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *3 *3 *3 *3 *4)
- (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+ (-12 (-4 *2 (-514)) (-5 *1 (-897 *2 *3)) (-4 *3 (-1142 *2)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1124)) (-4 *5 (-1142 *4)) (-4 *6 (-1142 (-382 *5)))
+ (-5 *2 (-708)) (-5 *1 (-316 *3 *4 *5 *6)) (-4 *3 (-317 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4))) (-5 *2 (-708)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3))
+ (-4 *3 (-895)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
+ (-12 (-5 *3 (-522)) (-5 *5 (-628 (-202))) (-5 *4 (-202))
+ (-5 *2 (-960)) (-5 *1 (-691)))))
+(((*1 *2 *1) (-12 (-5 *2 (-792)) (-5 *1 (-51)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-872 (-202))) (-5 *4 (-803)) (-5 *2 (-1171))
+ (-5 *1 (-442))))
+ ((*1 *1 *2) (-12 (-5 *2 (-588 *3)) (-4 *3 (-971)) (-4 *1 (-907 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-872 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-872 *3)) (-4 *3 (-971)) (-4 *1 (-1046 *3))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-708)) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 *3)) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-872 *3)) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
+ ((*1 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-872 (-202))) (-5 *1 (-1117)) (-5 *3 (-202)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
(-4 *2 (-13 (-405 *3) (-928)))))
@@ -17064,7 +17129,7 @@
((*1 *1 *1) (-4 *1 (-260)))
((*1 *2 *3)
(-12 (-5 *3 (-393 *4)) (-4 *4 (-514))
- (-5 *2 (-588 (-2 (|:| -2977 (-708)) (|:| |logand| *4))))
+ (-5 *2 (-588 (-2 (|:| -3112 (-708)) (|:| |logand| *4))))
(-5 *1 (-295 *4))))
((*1 *1 *1)
(-12 (-5 *1 (-314 *2 *3 *4)) (-14 *2 (-588 (-1085)))
@@ -17084,36 +17149,17 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-708)) (-5 *1 (-1184 *3 *4))
(-4 *4 (-655 (-382 (-522)))) (-4 *3 (-784)) (-4 *4 (-157)))))
-(((*1 *2 *1) (-12 (-5 *2 (-708)) (-5 *1 (-821 *3)) (-4 *3 (-1014))))
- ((*1 *2 *1) (-12 (-4 *1 (-1033 *3)) (-4 *3 (-1120)) (-5 *2 (-708)))))
-(((*1 *1 *1) (-12 (-5 *1 (-547 *2)) (-4 *2 (-971)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-588 (-382 *6))) (-5 *3 (-382 *6))
- (-4 *6 (-1142 *5)) (-4 *5 (-13 (-338) (-135) (-962 (-522))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-588 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-526 *5 *6)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-1124)) (-4 *5 (-1142 *3)) (-4 *6 (-1142 (-382 *5)))
- (-5 *2 (-108)) (-5 *1 (-316 *4 *3 *5 *6)) (-4 *4 (-317 *3 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1142 *4)) (-4 *4 (-1124))
- (-4 *1 (-317 *4 *3 *5)) (-4 *5 (-1142 (-382 *3))))))
-(((*1 *1 *2 *2 *3 *1)
- (-12 (-5 *2 (-1085)) (-5 *3 (-1018)) (-5 *1 (-267)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-588 (-588 (-522)))) (-5 *1 (-898))
- (-5 *3 (-588 (-522))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-802 (-894 *3) (-894 *3))) (-5 *1 (-894 *3))
- (-4 *3 (-895)))))
-(((*1 *2 *1) (-12 (-4 *1 (-734 *2)) (-4 *2 (-157))))
- ((*1 *2 *1) (-12 (-4 *1 (-923 *2)) (-4 *2 (-157)))))
+ (-12 (-5 *3 (-202)) (-5 *4 (-522)) (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-1007 (-881 (-522)))) (-5 *3 (-881 (-522)))
+ (-5 *1 (-305))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1007 (-881 (-522)))) (-5 *1 (-305)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1085)) (-5 *2 (-1171)) (-5 *1 (-1088)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1068)) (-5 *4 (-154 (-202))) (-5 *5 (-522))
+ (-5 *2 (-960)) (-5 *1 (-696)))))
+(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1090)))))
(((*1 *2 *3)
(-12 (-5 *2 (-154 (-354))) (-5 *1 (-722 *3)) (-4 *3 (-563 (-354)))))
((*1 *2 *3 *4)
@@ -17162,974 +17208,928 @@
(-12 (-5 *3 (-291 (-154 *5))) (-5 *4 (-850)) (-4 *5 (-514))
(-4 *5 (-784)) (-4 *5 (-563 (-354))) (-5 *2 (-154 (-354)))
(-5 *1 (-722 *5)))))
-(((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-522)) (-5 *1 (-1066 *3)) (-4 *3 (-1120))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4239)) (-4 *1 (-1154 *2)) (-4 *2 (-1120)))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *4 (-202))
- (-5 *2
- (-2 (|:| |brans| (-588 (-588 (-872 *4))))
- (|:| |xValues| (-1009 *4)) (|:| |yValues| (-1009 *4))))
- (-5 *1 (-141)) (-5 *3 (-588 (-588 (-872 *4)))))))
(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-784))
- (-5 *2 (-2 (|:| -2977 (-522)) (|:| |var| (-561 *1))))
- (-4 *1 (-405 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-166)) (-5 *1 (-225)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-910 *2)) (-4 *2 (-1106)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-708)) (-4 *4 (-514)) (-5 *1 (-897 *4 *2))
- (-4 *2 (-1142 *4)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-588 (-792))) (-5 *1 (-1085)))))
+ (-12 (-4 *1 (-1046 *3)) (-4 *3 (-971)) (-5 *2 (-588 (-872 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-588 (-872 *3))) (-4 *3 (-971)) (-4 *1 (-1046 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 (-588 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-588 (-872 *3))) (-4 *1 (-1046 *3)) (-4 *3 (-971)))))
+(((*1 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-507)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-108)) (-5 *1 (-591 *3 *4 *5)) (-4 *3 (-1014))
+ (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
+ (-4 *5 (-1142 (-382 *4)))
+ (-5 *2 (-2 (|:| |num| (-1166 *4)) (|:| |den| *4))))))
(((*1 *2 *3)
(-12 (-5 *3 (-588 (-498))) (-5 *2 (-1085)) (-5 *1 (-498)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-850)) (-5 *4 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1167)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
- (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
- (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
- (|:| |abserr| (-202)) (|:| |relerr| (-202))))
- (-5 *2 (-354)) (-5 *1 (-184)))))
-(((*1 *1 *1 *1) (|partial| -4 *1 (-124))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7))
- (-4 *9 (-990 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730))
- (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-988 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 *8)) (-5 *4 (-588 *9)) (-4 *8 (-985 *5 *6 *7))
- (-4 *9 (-1023 *5 *6 *7 *8)) (-4 *5 (-426)) (-4 *6 (-730))
- (-4 *7 (-784)) (-5 *2 (-708)) (-5 *1 (-1055 *5 *6 *7 *8 *9)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-559 *3 *4)) (-4 *3 (-1014)) (-4 *4 (-1014))
- (-5 *2 (-108)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-338)) (-4 *3 (-971))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -1383 *1)))
- (-4 *1 (-786 *3)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-108)) (-5 *1 (-766)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-317 *4 *3 *5)) (-4 *4 (-1124)) (-4 *3 (-1142 *4))
- (-4 *5 (-1142 (-382 *3))) (-5 *2 (-108))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-317 *3 *4 *5)) (-4 *3 (-1124)) (-4 *4 (-1142 *3))
- (-4 *5 (-1142 (-382 *4))) (-5 *2 (-108)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1068)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1085))
- (-4 *5 (-13 (-426) (-784) (-135) (-962 (-522)) (-584 (-522))))
- (-5 *2 (-2 (|:| -1856 *3) (|:| |coeff| *3))) (-5 *1 (-515 *5 *3))
- (-4 *3 (-13 (-27) (-1106) (-405 *5))))))
-(((*1 *1 *1) (-12 (-4 *1 (-349 *2 *3)) (-4 *2 (-784)) (-4 *3 (-157))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-572 *2 *3 *4)) (-4 *2 (-784))
- (-4 *3 (-13 (-157) (-655 (-382 (-522))))) (-14 *4 (-850))))
- ((*1 *1 *1) (-12 (-5 *1 (-617 *2)) (-4 *2 (-784))))
- ((*1 *1 *1) (-12 (-5 *1 (-756 *2)) (-4 *2 (-784))))
- ((*1 *1 *1) (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-894 *3)) (-4 *3 (-895)))))
-(((*1 *1) (-4 *1 (-324)))
+ (-12 (-5 *3 (-628 *1)) (-5 *4 (-1166 *1)) (-4 *1 (-584 *5))
+ (-4 *5 (-971))
+ (-5 *2 (-2 (|:| -2149 (-628 *5)) (|:| |vec| (-1166 *5))))))
((*1 *2 *3)
- (-12 (-5 *3 (-588 *5)) (-4 *5 (-405 *4))
- (-4 *4 (-13 (-514) (-784) (-135)))
- (-5 *2
- (-2 (|:| |primelt| *5) (|:| |poly| (-588 (-1081 *5)))
- (|:| |prim| (-1081 *5))))
- (-5 *1 (-407 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-514) (-784) (-135)))
- (-5 *2
- (-2 (|:| |primelt| *3) (|:| |pol1| (-1081 *3))
- (|:| |pol2| (-1081 *3)) (|:| |prim| (-1081 *3))))
- (-5 *1 (-407 *4 *3)) (-4 *3 (-27)) (-4 *3 (-405 *4))))
- ((*1 *2 *3 *4 *3 *4)
- (-12 (-5 *3 (-881 *5)) (-5 *4 (-1085)) (-4 *5 (-13 (-338) (-135)))
+ (-12 (-5 *3 (-628 *1)) (-4 *1 (-584 *4)) (-4 *4 (-971))
+ (-5 *2 (-628 *4)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-708)) (-4 *1 (-301 *3 *4)) (-4 *3 (-971))
+ (-4 *4 (-729)) (-4 *3 (-157)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-588 (-708))) (-5 *3 (-108)) (-5 *1 (-1074 *4 *5))
+ (-14 *4 (-850)) (-4 *5 (-971)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1066 *3)) (-5 *1 (-158 *3)) (-4 *3 (-283)))))
+(((*1 *2 *1) (-12 (-5 *2 (-588 (-588 (-872 (-202))))) (-5 *1 (-442)))))
+(((*1 *1 *2) (-12 (-5 *2 (-708)) (-5 *1 (-251)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-588 (-256))) (-5 *1 (-256))))
+ ((*1 *2 *1) (-12 (-5 *2 (-588 (-1090))) (-5 *1 (-1090)))))
+(((*1 *1 *1) (-4 *1 (-1054))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-960)) (-5 *3 (-1085)) (-5 *1 (-243)))))
+(((*1 *1 *2) (-12 (-5 *2 (-382 (-522))) (-5 *1 (-459)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-342 *3)) (-4 *3 (-157)) (-4 *3 (-514))
+ (-5 *2 (-1081 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-588 (-1 (-108) *8))) (-4 *8 (-985 *5 *6 *7))
+ (-4 *5 (-514)) (-4 *6 (-730)) (-4 *7 (-784))
+ (-5 *2 (-2 (|:| |goodPols| (-588 *8)) (|:| |badPols| (-588 *8))))
+ (-5 *1 (-904 *5 *6 *7 *8)) (-5 *4 (-588 *8)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-588 (-588 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-588 (-3 (|:| |array| (-588 *3)) (|:| |scalar| (-1085)))))
+ (-5 *6 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1018))
+ (-5 *1 (-372))))
+ ((*1 *2 *3 *4 *5 *6 *3)
+ (-12 (-5 *5 (-588 (-588 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-588 (-3 (|:| |array| (-588 *3)) (|:| |scalar| (-1085)))))
+ (-5 *6 (-588 (-1085))) (-5 *3 (-1085)) (-5 *2 (-1018))
+ (-5 *1 (-372))))
+ ((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *4 (-588 (-1085))) (-5 *5 (-1088)) (-5 *3 (-1085))
+ (-5 *2 (-1018)) (-5 *1 (-372)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (|has| *1 (-6 -4238)) (-4 *1 (-212 *3))
+ (-4 *3 (-1014))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-108) *3)) (-4 *1 (-258 *3)) (-4 *3 (-1120)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-628 (-382 (-881 (-522)))))
(-5 *2
- (-2 (|:| |coef1| (-522)) (|:| |coef2| (-522))
- (|:| |prim| (-1081 *5))))
- (-5 *1 (-888 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-881 *5))) (-5 *4 (-588 (-1085)))
- (-4 *5 (-13 (-338) (-135)))
+ (-588
+ (-2 (|:| |radval| (-291 (-522))) (|:| |radmult| (-522))
+ (|:| |radvect| (-588 (-628 (-291 (-522))))))))
+ (-5 *1 (-956)))))
+(((*1 *1) (-5 *1 (-1167))))
+(((*1 *2 *3 *2)
+ (-12
(-5 *2
- (-2 (|:| -2977 (-588 (-522))) (|:| |poly| (-588 (-1081 *5)))
- (|:| |prim| (-1081 *5))))
- (-5 *1 (-888 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-588 (-881 *6))) (-5 *4 (-588 (-1085))) (-5 *5 (-1085))
- (-4 *6 (-13 (-338) (-135)))
+ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202))
+ (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202))
+ (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))
+ (-5 *3 (-588 (-239))) (-5 *1 (-237))))
+ ((*1 *1 *2)
+ (-12
(-5 *2
- (-2 (|:| -2977 (-588 (-522))) (|:| |poly| (-588 (-1081 *6)))
- (|:| |prim| (-1081 *6))))
- (-5 *1 (-888 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-588 (-202))) (-5 *4 (-708)) (-5 *2 (-628 (-202)))
- (-5 *1 (-281)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1081 *1)) (-5 *4 (-1085)) (-4 *1 (-27))
- (-5 *2 (-588 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1081 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-881 *1)) (-4 *1 (-27)) (-5 *2 (-588 *1))))
+ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202))
+ (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202))
+ (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))
+ (-5 *1 (-239))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168))))
+ ((*1 *2 *1 *3 *3 *4 *4 *4)
+ (-12 (-5 *3 (-522)) (-5 *4 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-1085)) (-4 *4 (-13 (-784) (-514))) (-5 *2 (-588 *1))
- (-4 *1 (-29 *4))))
+ (-12
+ (-5 *3
+ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202))
+ (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202))
+ (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))
+ (-5 *2 (-1171)) (-5 *1 (-1168))))
((*1 *2 *1)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *2 (-588 *1)) (-4 *1 (-29 *3)))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-628 (-202))) (-5 *4 (-522)) (-5 *5 (-108))
- (-5 *2 (-960)) (-5 *1 (-683)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-522)) (-4 *3 (-157)) (-4 *5 (-348 *3))
- (-4 *6 (-348 *3)) (-5 *1 (-627 *3 *5 *6 *2))
- (-4 *2 (-626 *3 *5 *6)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1085))
- (-5 *2 (-3 (|:| |fst| (-409)) (|:| -1367 "void"))) (-5 *1 (-1088)))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-409)))))
+ (-12
+ (-5 *2
+ (-2 (|:| |theta| (-202)) (|:| |phi| (-202)) (|:| -3808 (-202))
+ (|:| |scaleX| (-202)) (|:| |scaleY| (-202)) (|:| |scaleZ| (-202))
+ (|:| |deltaX| (-202)) (|:| |deltaY| (-202))))
+ (-5 *1 (-1168))))
+ ((*1 *2 *1 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-354)) (-5 *2 (-1171)) (-5 *1 (-1168)))))
(((*1 *2 *3)
+ (-12 (-5 *3 (-1166 (-1166 *4))) (-4 *4 (-971)) (-5 *2 (-628 *4))
+ (-5 *1 (-954 *4)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-522)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-708)) (-4 *5 (-157))))
+ ((*1 *1 *1 *2 *1 *2)
+ (-12 (-5 *2 (-522)) (-5 *1 (-128 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-708)) (-4 *5 (-157))))
+ ((*1 *2 *2 *3)
(-12
- (-5 *3
- (-2 (|:| |xinit| (-202)) (|:| |xend| (-202))
- (|:| |fn| (-1166 (-291 (-202)))) (|:| |yinit| (-588 (-202)))
- (|:| |intvals| (-588 (-202))) (|:| |g| (-291 (-202)))
- (|:| |abserr| (-202)) (|:| |relerr| (-202))))
- (-5 *2 (-354)) (-5 *1 (-184)))))
+ (-5 *2
+ (-474 (-382 (-522)) (-217 *5 (-708)) (-794 *4)
+ (-224 *4 (-382 (-522)))))
+ (-5 *3 (-588 (-794 *4))) (-14 *4 (-588 (-1085))) (-14 *5 (-708))
+ (-5 *1 (-475 *4 *5)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108)) (-5 *1 (-915 *4 *5 *6 *7 *3))
- (-4 *3 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 *3)) (-4 *3 (-990 *5 *6 *7 *8)) (-4 *5 (-426))
- (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-108))
- (-5 *1 (-915 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-426)) (-4 *5 (-730)) (-4 *6 (-784))
- (-4 *7 (-985 *4 *5 *6)) (-5 *2 (-108))
- (-5 *1 (-1021 *4 *5 *6 *7 *3)) (-4 *3 (-990 *4 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-588 *3)) (-4 *3 (-990 *5 *6 *7 *8)) (-4 *5 (-426))
- (-4 *6 (-730)) (-4 *7 (-784)) (-4 *8 (-985 *5 *6 *7)) (-5 *2 (-108))
- (-5 *1 (-1021 *5 *6 *7 *8 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-202) (-202))) (-5 *1 (-293)) (-5 *3 (-202)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-426)) (-4 *6 (-730)) (-4 *7 (-784))
- (-4 *3 (-985 *5 *6 *7))
- (-5 *2 (-588 (-2 (|:| |val| *3) (|:| -1886 *4))))
- (-5 *1 (-991 *5 *6 *7 *3 *4)) (-4 *4 (-990 *5 *6 *7 *3)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-821 *4)) (-4 *4 (-1014)) (-5 *1 (-818 *4 *3))
- (-4 *3 (-1014)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-382 (-881 *4))) (-4 *4 (-283))
- (-5 *2 (-382 (-393 (-881 *4)))) (-5 *1 (-966 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-512 *2)) (-4 *2 (-13 (-379) (-1106)))))
- ((*1 *1 *1 *1) (-4 *1 (-730))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-784) (-514))) (-5 *1 (-252 *3 *2))
- (-4 *2 (-13 (-405 *3) (-928))))))
+ (-12 (-5 *3 (-1139 *5 *4)) (-4 *4 (-757)) (-14 *5 (-1085))
+ (-5 *2 (-522)) (-5 *1 (-1028 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-588 *7)) (-4 *7 (-985 *4 *5 *6)) (-4 *4 (-514))
- (-4 *5 (-730)) (-4 *6 (-784)) (-5 *2 (-108))
- (-5 *1 (-904 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-478 *3 *2)) (-4 *3 (-1014)) (-4 *2 (-784)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-708)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-730)) (-4 *7 (-878 *4 *5 *6)) (-4 *4 (-426)) (-4 *6 (-784))
+ (-5 *2 (-108)) (-5 *1 (-423 *4 *5 *6 *7)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1050 *2 *3)) (-4 *2 (-13 (-1014) (-33)))
+ (-4 *3 (-13 (-1014) (-33))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-784)) (-5 *2 (-588 (-588 (-588 *4))))
- (-5 *1 (-1092 *4)) (-5 *3 (-588 (-588 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-132)))))
-(((*1 *1 *2) (-12 (-5 *2 (-588 (-132))) (-5 *1 (-129))))
- ((*1 *1 *2) (-12 (-5 *2 (-1068)) (-5 *1 (-129)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-850)) (-5 *2 (-708)) (-5 *1 (-1015 *4 *5)) (-14 *4 *3)
- (-14 *5 *3))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-108)) (-5 *3 (-588 (-239))) (-5 *1 (-237))))
- ((*1 *1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-239))))
- ((*1 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441))))
- ((*1 *2 *2) (-12 (-5 *2 (-108)) (-5 *1 (-441)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *2 (-1142 *4)) (-5 *1 (-744 *4 *2 *3 *5))
- (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *3 (-598 *2))
- (-4 *5 (-598 (-382 *2)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *2 (-1142 *4)) (-5 *1 (-744 *4 *2 *5 *3))
- (-4 *4 (-13 (-338) (-135) (-962 (-382 (-522))))) (-4 *5 (-598 *2))
- (-4 *3 (-598 (-382 *2))))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1188 *3 *4)) (-4 *1 (-349 *3 *4)) (-4 *3 (-784))
- (-4 *4 (-157))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-361 *2)) (-4 *2 (-1014))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-756 *2)) (-4 *2 (-784))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-756 *3)) (-4 *1 (-1181 *3 *4)) (-4 *3 (-784))
- (-4 *4 (-971))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1181 *2 *3)) (-4 *2 (-784)) (-4 *3 (-971)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-202)) (-5 *2 (-1171)) (-5 *1 (-759)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085)) (-5 *2 (-1 (-202) (-202))) (-5 *1 (-642 *3))
- (-4 *3 (-563 (-498)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1085)) (-5 *2 (-1 (-202) (-202) (-202)))
- (-5 *1 (-642 *3)) (-4 *3 (-563 (-498))))))
-((-1198 . 725256) (-1199 . 725185) (-1200 . 724631) (-1201 . 724291)
- (-1202 . 724065) (-1203 . 723956) (-1204 . 723846) (-1205 . 723794)
- (-1206 . 723676) (-1207 . 723602) (-1208 . 723443) (-1209 . 723336)
- (-1210 . 723235) (-1211 . 723118) (-1212 . 723014) (-1213 . 722802)
- (-1214 . 722721) (-1215 . 721993) (-1216 . 721701) (-1217 . 721649)
- (-1218 . 721536) (-1219 . 721380) (-1220 . 721262) (-1221 . 720832)
- (-1222 . 720728) (-1223 . 719563) (-1224 . 719493) (-1225 . 719120)
- (-1226 . 718879) (-1227 . 718806) (-1228 . 718554) (-1229 . 718483)
- (-1230 . 718340) (-1231 . 718242) (-1232 . 717822) (-1233 . 717778)
- (-1234 . 717486) (-1235 . 717393) (-1236 . 717316) (-1237 . 717253)
- (-1238 . 717150) (-1239 . 717084) (-1240 . 717032) (-1241 . 716885)
- (-1242 . 716667) (-1243 . 716505) (-1244 . 714375) (-1245 . 714267)
- (-1246 . 714172) (-1247 . 714079) (-1248 . 713999) (-1249 . 713865)
- (-1250 . 713580) (-1251 . 713272) (-1252 . 713217) (-1253 . 713076)
- (-1254 . 711839) (-1255 . 711743) (-1256 . 711599) (-1257 . 711013)
- (-1258 . 710902) (-1259 . 710800) (-1260 . 710544) (-1261 . 710454)
- (-1262 . 710355) (-1263 . 710162) (-1264 . 710033) (-1265 . 709926)
- (-1266 . 709805) (-1267 . 709743) (-1268 . 709639) (-1269 . 709525)
- (-1270 . 709445) (-1271 . 709222) (-1272 . 709111) (-1273 . 708195)
- (-1274 . 707946) (-1275 . 707822) (-1276 . 707659) (-1277 . 707574)
- (-1278 . 707505) (-1279 . 707431) (-1280 . 707093) (-1281 . 707014)
- (-1282 . 705613) (-1283 . 705526) (-1284 . 705462) (-1285 . 705376)
- (-1286 . 705313) (-1287 . 705262) (-1288 . 705197) (-1289 . 704695)
- (-1290 . 704629) (-1291 . 704539) (-1292 . 704422) (-1293 . 704319)
- (-1294 . 703840) (-1295 . 703584) (-1296 . 703531) (-1297 . 699010)
- (-1298 . 698909) (-1299 . 698842) (-1300 . 698758) (-1301 . 698708)
- (-1302 . 698604) (-1303 . 698495) (-1304 . 698226) (-1305 . 698195)
- (-1306 . 697902) (-1307 . 697643) (-1308 . 697615) (-1309 . 697466)
- (-1310 . 697250) (-1311 . 696286) (-1312 . 695899) (-1313 . 695788)
- (-1314 . 695493) (-1315 . 695410) (-1316 . 695292) (-1317 . 695147)
- (-1318 . 695050) (-1319 . 694981) (-1320 . 694814) (-1321 . 693518)
- (-1322 . 693380) (-1323 . 693237) (-1324 . 693002) (-1325 . 692710)
- (-1326 . 692581) (-1327 . 692458) (-1328 . 692153) (-1329 . 692068)
- (-1330 . 691949) (-1331 . 691501) (-1332 . 691118) (-1333 . 689938)
- (-1334 . 689885) (-1335 . 689848) (-1336 . 689705) (-1337 . 689650)
- (-1338 . 688902) (-1339 . 688850) (-1340 . 688727) (-1341 . 687362)
- (-1342 . 687240) (-1343 . 687094) (-1344 . 686991) (-1345 . 686914)
- (-1346 . 686830) (-1347 . 686576) (-1348 . 686404) (-1349 . 685984)
- (-1350 . 685901) (-1351 . 685845) (-1352 . 685576) (-1353 . 685326)
- (-1354 . 684921) (-1355 . 684864) (-1356 . 684743) (-1357 . 684660)
- (-1358 . 684547) (-1359 . 684452) (-1360 . 684101) (-1361 . 683960)
- (-1362 . 683572) (-1363 . 683460) (-1364 . 683313) (-1365 . 683260)
- (-1366 . 682830) (-1367 . 682801) (-1368 . 682582) (-1369 . 682364)
- (-1370 . 681913) (-1371 . 681701) (-1372 . 681091) (-1373 . 680867)
- (-1374 . 680707) (-1375 . 680554) (-1376 . 680497) (-1377 . 680441)
- (-1378 . 680327) (-1379 . 680147) (-1380 . 680060) (-1381 . 680008)
- (-1382 . 679948) (-1383 . 679339) (-1384 . 679260) (-1385 . 679117)
- (-1386 . 679022) (-1387 . 678828) (-1388 . 678651) (-1389 . 678548)
- (-1390 . 678496) (-1391 . 664433) (-1392 . 664340) (-1393 . 664156)
- (-1394 . 664061) (-1395 . 663670) (-1396 . 663614) (-1397 . 663501)
- (-1398 . 663417) (-1399 . 663308) (-1400 . 662827) (-1401 . 662775)
- (-1402 . 661479) (-1403 . 661372) (-1404 . 661166) (-1405 . 661068)
- (-1406 . 661039) (-1407 . 660944) (-1408 . 660837) (-1409 . 660624)
- (-1410 . 660433) (-1411 . 660189) (-1412 . 660104) (-1413 . 659963)
- (-1414 . 659863) (-1415 . 659797) (-1416 . 659743) (-1417 . 659410)
- (-1418 . 659286) (-1419 . 659139) (-1420 . 659061) (-1421 . 658854)
- (-1422 . 658610) (-1423 . 658011) (-1424 . 657851) (-1425 . 657754)
- (-1426 . 657417) (-1427 . 657259) (-1428 . 657131) (-1429 . 657058)
- (-1430 . 656965) (-1431 . 652263) (-1432 . 652125) (-1433 . 652097)
- (-1434 . 651945) (-1435 . 651293) (-1436 . 651186) (-1437 . 650963)
- (-1438 . 650666) (-1439 . 650557) (-1440 . 650490) (-1441 . 650069)
- (-1442 . 649748) (-1443 . 649661) (-1444 . 649422) (-1445 . 649237)
- (-1446 . 649099) (-1447 . 648970) (-1448 . 648900) (-1449 . 648829)
- (-1450 . 648772) (-1451 . 648548) (-1452 . 648445) (-1453 . 648386)
- (-1454 . 648220) (-1455 . 648146) (-1456 . 648017) (-1457 . 647826)
- (-1458 . 647644) (-1459 . 647299) (-1460 . 647179) (-1461 . 647107)
- (-1462 . 647033) (-1463 . 646783) (-1464 . 646664) (-1465 . 646527)
- (-1466 . 646406) (-1467 . 646372) (-1468 . 646272) (-1469 . 645470)
- (-1470 . 645371) (-1471 . 645314) (-1472 . 645220) (-1473 . 644732)
- (-1474 . 644579) (-1475 . 644484) (-1476 . 644391) (-1477 . 644336)
- (-1478 . 644270) (-1479 . 643776) (-1480 . 643456) (-1481 . 643115)
- (-1482 . 642936) (-1483 . 642862) (-1484 . 637545) (-1485 . 637444)
- (-1486 . 637361) (-1487 . 637241) (-1488 . 637139) (-1489 . 636603)
- (-1490 . 636465) (-1491 . 636279) (-1492 . 635568) (-1493 . 635517)
- (-1494 . 635385) (-1495 . 635166) (-1496 . 635050) (-1497 . 634927)
- (-1498 . 634861) (-1499 . 633796) (-1500 . 633617) (-1501 . 633557)
- (-1502 . 633447) (-1503 . 633132) (-1504 . 632902) (-1505 . 632847)
- (-1506 . 632776) (-1507 . 632506) (-1508 . 632472) (-1509 . 632263)
- (-1510 . 632207) (-1511 . 632036) (-1512 . 631756) (-1513 . 631118)
- (-1514 . 630885) (-1515 . 630832) (-1516 . 630720) (-1517 . 630612)
- (-1518 . 630584) (-1519 . 630441) (-1520 . 630081) (-1521 . 629864)
- (-1522 . 629547) (-1523 . 629200) (-1524 . 629151) (-1525 . 627609)
- (-1526 . 627430) (-1527 . 627334) (-1528 . 627261) (-1529 . 627132)
- (-1530 . 627027) (-1531 . 626759) (-1532 . 626685) (-1533 . 626520)
- (-1534 . 625766) (-1535 . 625628) (-1536 . 625574) (-1537 . 625479)
- (-1538 . 625348) (-1539 . 625157) (-1540 . 625054) (-1541 . 624630)
- (-1542 . 624466) (-1543 . 624242) (-1544 . 624068) (-1545 . 623938)
- (-1546 . 623883) (-1547 . 623432) (-1548 . 623363) (-1549 . 623057)
- (-1550 . 622914) (-1551 . 622781) (-1552 . 622669) (-1553 . 622133)
- (-1554 . 622038) (-1555 . 621841) (-1556 . 621704) (-1557 . 621647)
- (-1558 . 621560) (-1559 . 621499) (-1560 . 621374) (-1561 . 621238)
- (-1562 . 621118) (-1563 . 621014) (-1564 . 620913) (-1565 . 620696)
- (-1566 . 620537) (-1567 . 620452) (-1568 . 620397) (-1569 . 620023)
- (-1570 . 619906) (-1571 . 619829) (-1572 . 619724) (-1573 . 619690)
- (-1574 . 619603) (-1575 . 619465) (-1576 . 619361) (-1577 . 619257)
- (-1578 . 618942) (-1579 . 618874) (-1580 . 618759) (-1581 . 618481)
- (-1582 . 618106) (-1583 . 618022) (-1584 . 617935) (-1585 . 617603)
- (-1586 . 617526) (-1587 . 617449) (-1588 . 616748) (-1589 . 616630)
- (-1590 . 616456) (-1591 . 616373) (-1592 . 616259) (-1593 . 616171)
- (-1594 . 615828) (-1595 . 615751) (-1596 . 615572) (-1597 . 615442)
- (-1598 . 615317) (-1599 . 615118) (-1600 . 615069) (-1601 . 614838)
- (-1602 . 613654) (-1603 . 613560) (-1604 . 612555) (-1605 . 612478)
- (-1606 . 612337) (-1607 . 612110) (-1608 . 612001) (-1609 . 611914)
- (-1610 . 611510) (-1611 . 611022) (-1612 . 609844) (-1613 . 609688)
- (-1614 . 609521) (-1615 . 609424) (-1616 . 609036) (-1617 . 608462)
- (-1618 . 608325) (-1619 . 608252) (-1620 . 606054) (-1621 . 605815)
- (-1622 . 605648) (-1623 . 605582) (-1624 . 605482) (-1625 . 605411)
- (-1626 . 605302) (-1627 . 605204) (-1628 . 604718) (-1629 . 603716)
- (-1630 . 603605) (-1631 . 603546) (-1632 . 603485) (-1633 . 603407)
- (-1634 . 603276) (-1635 . 603180) (-1636 . 603125) (-1637 . 602788)
- (-1638 . 602715) (-1639 . 602643) (-1640 . 602342) (-1641 . 602233)
- (-1642 . 600923) (-1643 . 600871) (-1644 . 600623) (-1645 . 600497)
- (-1646 . 600390) (-1647 . 600362) (-1648 . 600238) (-1649 . 600210)
- (-1650 . 600051) (-1651 . 599980) (-1652 . 599722) (-1653 . 599448)
- (-1654 . 599304) (-1655 . 599201) (-1656 . 598990) (-1657 . 598896)
- (-1658 . 598706) (-1659 . 598640) (-1660 . 598042) (-1661 . 597886)
- (-1662 . 597637) (-1663 . 597438) (-1664 . 596623) (-1665 . 596435)
- (-1666 . 596251) (-1667 . 596146) (-1668 . 596025) (-1669 . 595940)
- (-1670 . 595547) (-1671 . 595432) (-1672 . 595366) (-1673 . 595191)
- (-1674 . 595061) (-1675 . 594992) (-1676 . 594940) (-1677 . 594912)
- (-1678 . 594225) (-1679 . 594117) (-1680 . 594065) (-1681 . 593994)
- (-1682 . 593817) (-1683 . 593768) (-1684 . 593698) (-1685 . 593620)
- (-1686 . 593522) (-1687 . 593467) (-1688 . 593300) (-1689 . 593213)
- (-1690 . 593160) (-1691 . 593005) (-1692 . 592932) (-1693 . 592842)
- (-1694 . 592745) (-1695 . 592553) (-1696 . 592487) (-1697 . 592243)
- (-1698 . 592187) (-1699 . 592026) (-1700 . 591842) (-1701 . 591735)
- (-1702 . 591648) (-1703 . 591586) (-1704 . 591387) (-1705 . 591257)
- (-1706 . 590919) (-1707 . 590832) (-1708 . 590555) (-1709 . 590482)
- (-1710 . 590353) (-1711 . 590109) (-1712 . 589734) (-1713 . 589582)
- (-1714 . 589364) (-1715 . 589154) (-1716 . 588551) (-1717 . 588477)
- (-1718 . 588322) (-1719 . 588203) (-1720 . 588175) (-1721 . 588122)
- (-1722 . 588055) (-1723 . 587918) (-1724 . 587788) (-1725 . 587662)
- (-1726 . 587585) (-1727 . 587533) (-1728 . 587430) (-1729 . 587307)
- (-1730 . 587220) (-1731 . 587118) (-1732 . 586320) (-1733 . 586078)
- (-1734 . 585971) (-1735 . 585911) (-1736 . 585833) (-1737 . 585675)
- (-1738 . 585100) (-1739 . 585047) (-1740 . 584922) (-1741 . 584769)
- (-1742 . 584674) (-1743 . 584604) (-1744 . 584530) (-1745 . 583956)
- (-1746 . 583875) (-1747 . 583565) (-1748 . 583440) (-1749 . 583259)
- (-1750 . 583148) (-1751 . 583039) (-1752 . 582465) (-1753 . 582382)
- (-1754 . 582218) (-1755 . 581778) (-1756 . 581719) (-1757 . 581500)
- (-1758 . 581364) (-1759 . 580790) (-1760 . 580469) (-1761 . 579609)
- (-1762 . 579468) (-1763 . 579312) (-1764 . 579183) (-1765 . 579086)
- (-1766 . 578842) (-1767 . 578598) (-1768 . 578024) (-1769 . 577927)
- (-1770 . 577279) (-1771 . 577020) (-1772 . 576946) (-1773 . 576775)
- (-1774 . 576723) (-1775 . 576652) (-1776 . 576078) (-1777 . 575963)
- (-1778 . 575828) (-1779 . 575611) (-1780 . 575531) (-1781 . 575475)
- (-1782 . 575133) (-1783 . 574982) (-1784 . 574863) (-1785 . 574754)
- (-1786 . 574590) (-1787 . 574428) (-1788 . 574282) (-1789 . 574093)
- (-1790 . 573937) (-1791 . 573805) (-1792 . 573712) (-1793 . 573559)
- (-1794 . 573447) (-1795 . 573260) (-1796 . 573157) (-1797 . 573044)
- (-1798 . 569759) (-1799 . 569616) (-1800 . 569414) (-1801 . 568709)
- (-1802 . 568570) (-1803 . 568454) (-1804 . 568364) (-1805 . 567955)
- (-1806 . 567855) (-1807 . 567760) (-1808 . 567689) (-1809 . 567311)
- (-1810 . 567141) (-1811 . 566518) (-1812 . 566190) (-1813 . 566033)
- (-1814 . 565927) (-1815 . 565513) (-1816 . 565440) (-1817 . 565326)
- (-1818 . 565225) (-1819 . 565026) (-1820 . 564611) (-1821 . 564224)
- (-1822 . 564172) (-1823 . 564089) (-1824 . 563482) (-1825 . 563244)
- (-1826 . 563149) (-1827 . 562603) (-1828 . 562569) (-1829 . 562326)
- (-1830 . 562166) (-1831 . 562113) (-1832 . 562085) (-1833 . 562001)
- (-1834 . 561935) (-1835 . 561861) (-1836 . 561778) (-1837 . 561568)
- (-1838 . 561500) (-1839 . 561398) (-1840 . 560940) (-1841 . 560852)
- (-1842 . 560741) (-1843 . 560662) (-1844 . 560476) (-1845 . 560383)
- (-1846 . 560309) (-1847 . 559887) (-1848 . 559802) (-1849 . 559604)
- (-1850 . 559460) (-1851 . 559348) (-1852 . 559296) (-1853 . 559213)
- (-1854 . 558917) (-1855 . 558803) (-1856 . 558748) (-1857 . 558533)
- (-1858 . 551579) (-1859 . 551420) (-1860 . 551170) (-1861 . 550961)
- (-1862 . 550737) (-1863 . 550650) (-1864 . 549995) (-1865 . 549570)
- (-1866 . 549245) (-1867 . 549074) (-1868 . 548666) (-1869 . 548550)
- (-1870 . 547395) (-1871 . 547294) (-1872 . 547211) (-1873 . 547128)
- (-1874 . 547021) (-1875 . 546877) (-1876 . 546794) (-1877 . 546745)
- (-1878 . 546615) (-1879 . 546273) (-1880 . 546220) (-1881 . 545979)
- (-1882 . 545906) (-1883 . 545592) (-1884 . 545523) (-1885 . 545279)
- (-1886 . 545217) (-1887 . 545145) (-1888 . 545022) (-1889 . 544952)
- (-1890 . 544837) (-1891 . 544410) (-1892 . 544303) (-1893 . 543975)
- (-1894 . 543748) (-1895 . 543642) (-1896 . 543428) (-1897 . 543273)
- (-1898 . 543207) (-1899 . 543151) (-1900 . 542961) (-1901 . 542844)
- (-1902 . 542670) (-1903 . 542417) (-1904 . 542340) (-1905 . 541980)
- (-1906 . 541480) (-1907 . 540989) (-1908 . 539649) (-1909 . 539617)
- (-1910 . 539562) (-1911 . 539467) (-1912 . 539394) (-1913 . 539057)
- (-1914 . 538977) (-1915 . 538853) (-1916 . 533347) (-1917 . 533240)
- (-1918 . 533128) (-1919 . 533100) (-1920 . 533035) (-1921 . 533007)
- (-1922 . 532919) (-1923 . 532803) (-1924 . 532466) (-1925 . 532389)
- (-1926 . 532210) (-1927 . 532182) (-1928 . 532095) (-1929 . 531707)
- (-1930 . 531608) (-1931 . 531455) (-1932 . 531237) (-1933 . 530923)
- (-1934 . 530507) (-1935 . 530408) (-1936 . 530277) (-1937 . 529824)
- (-1938 . 529283) (-1939 . 529137) (-1940 . 529044) (-1941 . 528950)
- (-1942 . 528867) (-1943 . 528608) (-1944 . 528539) (-1945 . 528268)
- (-1946 . 528156) (-1947 . 528104) (-1948 . 527757) (-1949 . 527309)
- (-1950 . 526928) (-1951 . 526829) (-1952 . 526751) (-1953 . 526581)
- (-1954 . 526479) (-1955 . 526178) (-1956 . 526040) (-1957 . 525937)
- (-1958 . 525721) (-1959 . 525612) (-1960 . 525551) (-1961 . 525523)
- (-1962 . 525443) (-1963 . 525336) (-1964 . 525159) (-1965 . 525100)
- (-1966 . 524884) (-1967 . 524609) (-1968 . 524225) (-1969 . 524169)
- (-1970 . 524049) (-1971 . 523964) (-1972 . 523879) (-1973 . 522117)
- (-1974 . 521960) (-1975 . 521877) (-1976 . 521759) (-1977 . 521618)
- (-1978 . 521515) (-1979 . 521408) (-1980 . 521321) (-1981 . 521186)
- (-1982 . 520885) (-1983 . 520765) (-1984 . 520731) (-1985 . 520578)
- (-1986 . 520087) (-1987 . 520004) (-1988 . 519240) (-1989 . 518945)
- (-1990 . 518771) (-1991 . 518482) (-1992 . 518373) (-1993 . 518099)
- (-1994 . 517976) (-1995 . 517926) (-1996 . 517759) (-1997 . 517678)
- (-1998 . 517619) (-1999 . 517567) (-2000 . 517514) (-2001 . 517398)
- (-2002 . 517211) (-2003 . 516539) (-2004 . 516486) (-2005 . 516379)
- (-2006 . 516281) (-2007 . 516202) (-2008 . 516059) (-2009 . 515508)
- (-2010 . 515452) (-2011 . 515378) (-2012 . 515283) (-2013 . 515177)
- (-2014 . 515082) (-2015 . 514928) (-2016 . 514500) (-2017 . 514189)
- (-2018 . 513802) (-2019 . 513725) (-2020 . 513599) (-2021 . 513535)
- (-2022 . 513504) (-2023 . 513454) (-2024 . 513367) (-2025 . 512744)
- (-2026 . 512716) (-2027 . 512639) (-2028 . 512587) (-2029 . 512487)
- (-2030 . 512392) (-2031 . 512170) (-2032 . 512099) (-2033 . 510916)
- (-2034 . 510738) (-2035 . 510397) (-2036 . 510288) (-2037 . 510211)
- (-2038 . 510095) (-2039 . 509908) (-2040 . 509778) (-2041 . 509560)
- (-2042 . 509415) (-2043 . 509347) (-2044 . 509251) (-2045 . 509098)
- (-2046 . 509024) (-2047 . 508971) (-2048 . 508846) (-2049 . 508762)
- (-2050 . 508643) (-2051 . 507558) (-2052 . 507499) (-2053 . 507398)
- (-2054 . 507346) (-2055 . 507209) (-2056 . 507107) (-2057 . 507012)
- (-2058 . 506739) (-2059 . 506687) (-2060 . 506602) (-2061 . 506495)
- (-2062 . 506342) (-2063 . 506276) (-2064 . 505392) (-2065 . 505297)
- (-2066 . 505091) (-2067 . 505020) (-2068 . 504914) (-2069 . 504567)
- (-2070 . 504511) (-2071 . 503920) (-2072 . 503120) (-2073 . 502870)
- (-2074 . 502790) (-2075 . 502407) (-2076 . 502328) (-2077 . 502245)
- (-2078 . 502023) (-2079 . 501963) (-2080 . 501858) (-2081 . 501726)
- (-2082 . 501442) (-2083 . 501326) (-2084 . 501240) (-2085 . 501124)
- (-2086 . 500911) (-2087 . 500749) (-2088 . 500536) (-2089 . 500483)
- (-2090 . 500382) (-2091 . 500198) (-2092 . 500077) (-2093 . 500020)
- (-2094 . 499574) (-2095 . 499515) (-2096 . 499260) (-2097 . 499173)
- (-2098 . 498299) (-2099 . 498162) (-2100 . 496383) (-2101 . 496103)
- (-2102 . 496017) (-2103 . 495739) (-2104 . 495687) (-2105 . 495584)
- (-2106 . 495375) (-2107 . 495307) (-2108 . 494920) (-2109 . 494700)
- (-2110 . 494585) (-2111 . 494501) (-2112 . 494225) (-2113 . 494066)
- (-2114 . 493970) (-2115 . 493835) (-2116 . 493779) (-2117 . 493378)
- (-2118 . 492961) (-2119 . 492843) (-2120 . 492699) (-2121 . 492597)
- (-2122 . 492540) (-2123 . 491905) (-2124 . 491674) (-2125 . 491563)
- (-2126 . 491341) (-2127 . 491206) (-2128 . 491115) (-2129 . 491050)
- (-2130 . 490857) (-2131 . 490761) (-2132 . 490660) (-2133 . 490626)
- (-2134 . 490512) (-2135 . 489860) (-2136 . 489783) (-2137 . 489699)
- (-2138 . 489095) (-2139 . 488967) (-2140 . 488623) (-2141 . 488418)
- (-2142 . 488265) (-2143 . 488136) (-2144 . 487967) (-2145 . 487901)
- (-2146 . 487824) (-2147 . 486861) (-2148 . 486781) (-2149 . 486579)
- (-2150 . 486470) (-2151 . 486418) (-2152 . 486341) (-2153 . 486269)
- (-2154 . 485792) (-2155 . 485736) (-2156 . 485609) (-2157 . 483457)
- (-2158 . 483405) (-2159 . 483377) (-2160 . 482845) (-2161 . 482777)
- (-2162 . 482663) (-2163 . 482515) (-2164 . 482430) (-2165 . 482353)
- (-2166 . 482259) (-2167 . 482094) (-2168 . 481967) (-2169 . 481667)
- (-2170 . 481084) (-2171 . 480893) (-2172 . 480788) (-2173 . 480705)
- (-2174 . 480652) (-2175 . 480434) (-2176 . 480102) (-2177 . 479811)
- (-2178 . 479738) (-2179 . 479629) (-2180 . 479485) (-2181 . 479385)
- (-2182 . 479135) (-2183 . 478115) (-2184 . 477942) (-2185 . 477823)
- (-2186 . 477732) (-2187 . 477561) (-2188 . 476946) (-2189 . 476894)
- (-2190 . 454025) (-2191 . 453973) (-2192 . 453887) (-2193 . 453786)
- (-2194 . 453661) (-2195 . 453574) (-2196 . 453419) (-2197 . 453214)
- (-2198 . 452937) (-2199 . 452515) (-2200 . 452443) (-2201 . 449691)
- (-2202 . 449589) (-2203 . 449516) (-2204 . 449049) (-2205 . 448845)
- (-2206 . 448680) (-2207 . 448607) (-2208 . 448466) (-2209 . 448414)
- (-2210 . 448219) (-2211 . 448147) (-2212 . 448045) (-2213 . 447216)
- (-2214 . 447164) (-2215 . 446987) (-2216 . 446790) (-2217 . 446573)
- (-2218 . 446502) (-2219 . 446343) (-2220 . 446253) (-2221 . 446201)
- (-2222 . 446136) (-2223 . 445990) (-2224 . 445903) (-2225 . 445661)
- (-2226 . 445558) (-2227 . 445527) (-2228 . 445345) (-2229 . 445119)
- (-2230 . 444598) (-2231 . 444477) (-2232 . 443622) (-2233 . 443534)
- (-2234 . 443426) (-2235 . 443310) (-2236 . 443169) (-2237 . 443091)
- (-2238 . 442708) (-2239 . 442522) (-2240 . 442283) (-2241 . 441786)
- (-2242 . 441644) (-2243 . 441481) (-2244 . 441426) (-2245 . 441319)
- (-2246 . 441003) (-2247 . 440845) (-2248 . 440698) (-2249 . 440043)
- (-2250 . 439745) (-2251 . 439644) (-2252 . 439536) (-2253 . 439441)
- (-2254 . 439344) (-2255 . 438965) (-2256 . 438870) (-2257 . 438764)
- (-2258 . 438385) (-2259 . 437285) (-2260 . 437027) (-2261 . 436957)
- (-2262 . 436904) (-2263 . 436724) (-2264 . 435909) (-2265 . 435612)
- (-2266 . 435507) (-2267 . 435159) (-2268 . 433441) (-2269 . 433328)
- (-2270 . 432967) (-2271 . 432848) (-2272 . 432774) (-2273 . 432721)
- (-2274 . 432577) (-2275 . 432489) (-2276 . 432349) (-2277 . 432252)
- (-2278 . 432027) (-2279 . 431879) (-2280 . 431850) (-2281 . 431776)
- (-2282 . 431748) (-2283 . 431696) (-2284 . 431611) (-2285 . 431372)
- (-2286 . 431273) (-2287 . 431181) (-2288 . 431094) (-2289 . 427106)
- (-2290 . 427036) (-2291 . 426657) (-2292 . 426258) (-2293 . 426100)
- (-2294 . 425488) (-2295 . 425426) (-2296 . 425398) (-2297 . 424529)
- (-2298 . 424394) (-2299 . 424310) (-2300 . 424091) (-2301 . 423966)
- (-2302 . 423892) (-2303 . 423788) (-2304 . 423661) (-2305 . 423118)
- (-2306 . 422692) (-2307 . 422109) (-2308 . 421997) (-2309 . 421754)
- (-2310 . 421653) (-2311 . 421362) (-2312 . 420916) (-2313 . 420866)
- (-2314 . 420809) (-2315 . 420717) (-2316 . 420661) (-2317 . 419665)
- (-2318 . 419179) (-2319 . 419117) (-2320 . 419054) (-2321 . 418956)
- (-2322 . 418669) (-2323 . 417813) (-2324 . 417747) (-2325 . 417608)
- (-2326 . 417430) (-2327 . 417373) (-2328 . 417303) (-2329 . 417067)
- (-2330 . 417018) (-2331 . 416755) (-2332 . 416391) (-2333 . 416292)
- (-2334 . 416195) (-2335 . 415867) (-2336 . 415381) (-2337 . 415347)
- (-2338 . 415182) (-2339 . 415148) (-2340 . 414983) (-2341 . 414949)
- (-2342 . 414756) (-2343 . 414601) (-2344 . 414362) (-2345 . 414046)
- (-2346 . 413947) (-2347 . 413825) (-2348 . 413772) (-2349 . 413678)
- (-2350 . 413625) (-2351 . 413414) (-2352 . 412913) (-2353 . 412736)
- (-2354 . 412665) (-2355 . 412134) (-2356 . 412079) (-2357 . 411924)
- (-2358 . 411753) (-2359 . 411646) (-2360 . 411504) (-2361 . 411405)
- (-2362 . 411335) (-2363 . 411285) (-2364 . 411214) (-2365 . 411074)
- (-2366 . 410933) (-2367 . 410819) (-2368 . 410745) (-2369 . 410647)
- (-2370 . 410567) (-2371 . 410446) (-2372 . 410293) (-2373 . 410081)
- (-2374 . 410029) (-2375 . 409863) (-2376 . 409812) (-2377 . 409221)
- (-2378 . 408994) (-2379 . 407693) (-2380 . 407460) (-2381 . 407284)
- (-2382 . 407084) (-2383 . 407055) (-2384 . 407003) (-2385 . 406949)
- (-2386 . 406810) (-2387 . 406703) (-2388 . 406332) (-2389 . 405413)
- (-2390 . 405327) (-2391 . 405029) (-2392 . 404589) (-2393 . 404517)
- (-2394 . 404379) (-2395 . 404256) (-2396 . 404222) (-2397 . 403880)
- (-2398 . 403796) (-2399 . 403693) (-2400 . 403428) (-2401 . 403311)
- (-2402 . 403131) (-2403 . 402972) (-2404 . 402646) (-2405 . 402287)
- (-2406 . 402080) (-2407 . 402028) (-2408 . 401915) (-2409 . 401836)
- (-2410 . 401745) (-2411 . 401428) (-2412 . 401237) (-2413 . 401114)
- (-2414 . 401086) (-2415 . 401020) (-2416 . 400068) (-2417 . 399973)
- (-2418 . 399769) (-2419 . 399717) (-2420 . 399594) (-2421 . 399470)
- (-2422 . 399357) (-2423 . 399007) (-2424 . 398872) (-2425 . 398777)
- (-2426 . 398579) (-2427 . 398368) (-2428 . 398295) (-2429 . 398165)
- (-2430 . 398131) (-2431 . 397673) (-2432 . 397574) (-2433 . 397189)
- (-2434 . 397046) (-2435 . 396980) (-2436 . 396850) (-2437 . 396648)
- (-2438 . 396468) (-2439 . 396140) (-2440 . 396060) (-2441 . 395975)
- (-2442 . 395767) (-2443 . 395450) (-2444 . 395327) (-2445 . 395249)
- (-2446 . 394969) (-2447 . 394902) (-2448 . 394849) (-2449 . 394401)
- (-2450 . 394334) (-2451 . 394165) (-2452 . 394107) (-2453 . 393904)
- (-2454 . 393805) (-2455 . 393626) (-2456 . 393555) (-2457 . 393387)
- (-2458 . 393246) (-2459 . 393101) (-2460 . 392994) (-2461 . 392794)
- (-2462 . 392187) (-2463 . 392061) (-2464 . 391897) (-2465 . 391703)
- (-2466 . 391625) (-2467 . 391493) (-2468 . 391056) (-2469 . 390811)
- (-2470 . 390731) (-2471 . 390435) (-2472 . 390311) (-2473 . 389940)
- (-2474 . 389888) (-2475 . 389693) (-2476 . 389612) (-2477 . 389369)
- (-2478 . 389119) (-2479 . 388539) (-2480 . 388416) (-2481 . 388267)
- (-2482 . 388215) (-2483 . 387957) (-2484 . 387904) (-2485 . 387745)
- (-2486 . 387273) (-2487 . 387147) (-2488 . 387061) (-2489 . 386963)
- (-2490 . 386737) (-2491 . 386600) (-2492 . 385965) (-2493 . 385909)
- (-2494 . 385754) (-2495 . 385604) (-2496 . 385223) (-2497 . 384841)
- (-2498 . 384677) (-2499 . 384579) (-2500 . 382728) (-2501 . 382654)
- (-2502 . 382594) (-2503 . 382484) (-2504 . 382410) (-2505 . 382324)
- (-2506 . 382194) (-2507 . 382003) (-2508 . 381951) (-2509 . 381542)
- (-2510 . 381028) (-2511 . 380884) (-2512 . 380806) (-2513 . 380721)
- (-2514 . 380437) (-2515 . 380318) (-2516 . 380251) (-2517 . 379580)
- (-2518 . 379307) (-2519 . 379254) (-2520 . 379158) (-2521 . 378858)
- (-2522 . 378748) (-2523 . 378488) (-2524 . 378418) (-2525 . 378335)
- (-2526 . 378068) (-2527 . 377824) (-2528 . 377669) (-2529 . 377616)
- (-2530 . 377462) (-2531 . 377407) (-2532 . 377298) (-2533 . 377231)
- (-2534 . 377178) (-2535 . 377147) (-2536 . 377028) (-2537 . 376788)
- (-2538 . 376714) (-2539 . 376662) (-2540 . 376581) (-2541 . 376528)
- (-2542 . 376405) (-2543 . 376250) (-2544 . 375860) (-2545 . 370761)
- (-2546 . 370688) (-2547 . 370614) (-2548 . 370559) (-2549 . 370289)
- (-2550 . 370206) (-2551 . 370088) (-2552 . 369930) (-2553 . 369862)
- (-2554 . 369803) (-2555 . 369730) (-2556 . 369483) (-2557 . 369401)
- (-2558 . 369257) (-2559 . 368942) (-2560 . 368812) (-2561 . 368700)
- (-2562 . 368570) (-2563 . 368471) (-2564 . 368400) (-2565 . 368293)
- (-2566 . 368244) (-2567 . 368171) (-2568 . 367994) (-2569 . 367882)
- (-2570 . 367812) (-2571 . 367015) (-2572 . 366719) (-2573 . 366560)
- (-2574 . 366463) (-2575 . 366219) (-2576 . 365991) (-2577 . 365898)
- (-2578 . 365814) (-2579 . 365748) (-2580 . 365669) (-2581 . 365641)
- (-2582 . 365347) (-2583 . 365281) (-2584 . 365151) (-2585 . 365064)
- (-2586 . 364911) (-2587 . 364798) (-2588 . 364729) (-2589 . 364512)
- (-2590 . 363971) (-2591 . 363778) (-2592 . 363726) (-2593 . 363359)
- (-2594 . 363191) (-2595 . 363076) (-2596 . 362994) (-2597 . 362808)
- (-2598 . 362699) (-2599 . 362668) (-2600 . 362176) (-2601 . 362116)
- (-2602 . 361908) (-2603 . 361070) (-2604 . 360987) (-2605 . 360934)
- (-2606 . 360774) (-2607 . 360543) (-2608 . 360182) (-2609 . 360046)
- (-2610 . 359730) (-2611 . 359603) (-2612 . 359530) (-2613 . 359339)
- (-2614 . 359168) (-2615 . 358853) (-2616 . 358404) (-2617 . 358352)
- (-2618 . 358225) (-2619 . 358142) (-2620 . 358071) (-2621 . 357740)
- (-2622 . 357450) (-2623 . 357384) (-2624 . 357322) (-2625 . 357228)
- (-2626 . 356192) (-2627 . 355842) (-2628 . 355758) (-2629 . 355588)
- (-2630 . 355227) (-2631 . 355112) (-2632 . 354954) (-2633 . 354856)
- (-2634 . 354666) (-2635 . 354559) (-2636 . 353939) (-2637 . 353798)
- (-2638 . 353685) (-2639 . 353630) (-2640 . 353376) (-2641 . 353123)
- (-2642 . 353064) (-2643 . 352935) (-2644 . 352839) (-2645 . 352673)
- (-2646 . 352592) (-2647 . 352394) (-2648 . 351919) (-2649 . 351891)
- (-2650 . 351706) (-2651 . 351618) (-2652 . 351545) (-2653 . 351193)
- (-2654 . 351096) (-2655 . 350999) (-2656 . 350331) (-2657 . 350151)
- (-2658 . 349771) (-2659 . 349609) (-2660 . 349453) (-2661 . 349401)
- (-2662 . 349306) (-2663 . 349257) (-2664 . 348835) (-2665 . 348510)
- (-2666 . 348443) (-2667 . 348363) (-2668 . 348310) (-2669 . 347658)
- (-2670 . 347575) (-2671 . 347491) (-2672 . 347119) (-2673 . 347069)
- (-2674 . 346498) (-2675 . 346384) (-2676 . 346347) (-2677 . 345937)
- (-2678 . 345779) (-2679 . 345655) (-2680 . 345431) (-2681 . 345332)
- (-2682 . 344120) (-2683 . 343900) (-2684 . 343788) (-2685 . 343609)
- (-2686 . 343538) (-2687 . 343444) (-2688 . 343381) (-2689 . 343050)
- (-2690 . 342912) (-2691 . 342857) (-2692 . 342569) (-2693 . 342482)
- (-2694 . 342231) (-2695 . 342153) (-2696 . 342011) (-2697 . 341856)
- (-2698 . 341784) (-2699 . 341631) (-2700 . 341528) (-2701 . 341427)
- (-2702 . 340918) (-2703 . 340472) (-2704 . 340377) (-2705 . 340266)
- (-2706 . 340122) (-2707 . 339981) (-2708 . 339860) (-2709 . 339617)
- (-2710 . 339586) (-2711 . 339435) (-2712 . 339156) (-2713 . 339095)
- (-2714 . 338697) (-2715 . 338575) (-2716 . 338410) (-2717 . 338083)
- (-2718 . 337680) (-2719 . 337536) (-2720 . 337275) (-2721 . 337150)
- (-2722 . 337056) (-2723 . 336810) (-2724 . 335707) (-2725 . 335606)
- (-2726 . 335528) (-2727 . 335284) (-2728 . 335091) (-2729 . 334971)
- (-2730 . 334658) (-2731 . 334584) (-2732 . 334039) (-2733 . 333984)
- (-2734 . 333875) (-2735 . 333731) (-2736 . 333105) (-2737 . 332973)
- (-2738 . 332680) (-2739 . 332597) (-2740 . 332349) (-2741 . 332078)
- (-2742 . 331908) (-2743 . 331838) (-2744 . 331775) (-2745 . 331631)
- (-2746 . 331579) (-2747 . 331500) (-2748 . 330759) (-2749 . 330469)
- (-2750 . 330379) (-2751 . 330299) (-2752 . 329864) (-2753 . 329749)
- (-2754 . 329642) (-2755 . 329614) (-2756 . 329586) (-2757 . 329523)
- (-2758 . 329386) (-2759 . 329302) (-2760 . 329071) (-2761 . 328330)
- (-2762 . 327757) (-2763 . 327699) (-2764 . 327627) (-2765 . 327571)
- (-2766 . 323411) (-2767 . 323345) (-2768 . 323238) (-2769 . 322537)
- (-2770 . 322450) (-2771 . 322377) (-2772 . 321689) (-2773 . 318781)
- (-2774 . 318702) (-2775 . 318211) (-2776 . 318111) (-2777 . 317698)
- (-2778 . 317614) (-2779 . 317562) (-2780 . 317202) (-2781 . 317093)
- (-2782 . 316855) (-2783 . 316467) (-2784 . 315891) (-2785 . 315686)
- (-2786 . 315580) (-2787 . 315529) (-2788 . 315399) (-2789 . 315211)
- (-2790 . 315020) (-2791 . 314930) (-2792 . 314804) (-2793 . 312704)
- (-2794 . 312128) (-2795 . 312054) (-2796 . 312002) (-2797 . 311923)
- (-2798 . 311724) (-2799 . 311572) (-2800 . 311456) (-2801 . 311404)
- (-2802 . 311058) (-2803 . 310892) (-2804 . 310316) (-2805 . 309617)
- (-2806 . 309490) (-2807 . 309292) (-2808 . 309192) (-2809 . 308880)
- (-2810 . 308792) (-2811 . 308721) (-2812 . 308390) (-2813 . 308001)
- (-2814 . 307722) (-2815 . 307036) (-2816 . 306359) (-2817 . 306188)
- (-2818 . 306117) (-2819 . 306025) (-2820 . 305745) (-2821 . 305578)
- (-2822 . 305507) (-2823 . 305344) (-2824 . 305238) (-2825 . 304552)
- (-2826 . 304329) (-2827 . 304256) (-2828 . 304085) (-2829 . 303976)
- (-2830 . 303831) (-2831 . 303556) (-2832 . 303296) (-2833 . 303242)
- (-2834 . 303124) (-2835 . 302975) (-2836 . 302226) (-2837 . 302146)
- (-2838 . 301881) (-2839 . 301816) (-2840 . 301763) (-2841 . 301524)
- (-2842 . 301406) (-2843 . 301332) (-2844 . 301245) (-2845 . 301153)
- (-2846 . 301080) (-2847 . 300790) (-2848 . 300216) (-2849 . 300109)
- (-2850 . 299999) (-2851 . 299856) (-2852 . 299771) (-2853 . 299664)
- (-2854 . 299581) (-2855 . 299509) (-2856 . 299363) (-2857 . 299173)
- (-2858 . 299064) (-2859 . 299035) (-2860 . 298461) (-2861 . 298410)
- (-2862 . 298300) (-2863 . 298227) (-2864 . 298116) (-2865 . 298034)
- (-2866 . 297933) (-2867 . 297778) (-2868 . 297602) (-2869 . 297509)
- (-2870 . 297263) (-2871 . 296936) (-2872 . 296362) (-2873 . 296255)
- (-2874 . 296184) (-2875 . 296095) (-2876 . 295996) (-2877 . 295889)
- (-2878 . 295731) (-2879 . 295578) (-2880 . 295431) (-2881 . 295248)
- (-2882 . 295180) (-2883 . 295106) (-2884 . 294419) (-2885 . 294360)
- (-2886 . 294253) (-2887 . 294149) (-2888 . 293637) (-2889 . 293479)
- (-2890 . 293405) (-2891 . 293355) (-2892 . 293261) (-2893 . 293114)
- (-2894 . 292900) (-2895 . 292845) (-2896 . 292158) (-2897 . 292106)
- (-2898 . 291854) (-2899 . 291717) (-2900 . 291564) (-2901 . 291364)
- (-2902 . 291241) (-2903 . 291114) (-2904 . 291007) (-2905 . 290870)
- (-2906 . 290697) (-2907 . 290663) (-2908 . 289976) (-2909 . 289669)
- (-2910 . 289562) (-2911 . 289488) (-2912 . 289436) (-2913 . 289365)
- (-2914 . 289214) (-2915 . 289039) (-2916 . 288906) (-2917 . 288851)
- (-2918 . 288766) (-2919 . 288191) (-2920 . 284129) (-2921 . 284059)
- (-2922 . 283997) (-2923 . 283928) (-2924 . 283773) (-2925 . 283315)
- (-2926 . 283241) (-2927 . 282716) (-2928 . 282558) (-2929 . 282505)
- (-2930 . 281930) (-2931 . 281848) (-2932 . 281693) (-2933 . 281429)
- (-2934 . 281267) (-2935 . 281117) (-2936 . 280904) (-2937 . 280798)
- (-2938 . 280694) (-2939 . 280567) (-2940 . 280466) (-2941 . 280264)
- (-2942 . 280233) (-2943 . 279987) (-2944 . 279914) (-2945 . 279815)
- (-2946 . 279762) (-2947 . 279691) (-2948 . 279632) (-2949 . 279429)
- (-2950 . 279224) (-2951 . 279080) (-2952 . 278974) (-2953 . 278690)
- (-2954 . 278624) (-2955 . 278351) (-2956 . 276006) (-2957 . 275975)
- (-2958 . 275473) (-2959 . 275260) (-2960 . 275038) (-2961 . 274707)
- (-2962 . 274605) (-2963 . 274320) (-2964 . 274189) (-2965 . 274049)
- (-2966 . 273454) (-2967 . 273339) (-2968 . 273254) (-2969 . 273092)
- (-2970 . 272711) (-2971 . 272155) (-2972 . 271846) (-2973 . 271787)
- (-2974 . 271721) (-2975 . 271526) (-2976 . 271074) (-2977 . 270719)
- (-2978 . 270669) (-2979 . 270577) (-2980 . 270444) (-2981 . 270360)
- (-2982 . 270251) (-2983 . 270000) (-2984 . 269878) (-2985 . 269684)
- (-2986 . 269374) (-2987 . 268820) (-2988 . 268572) (-2989 . 268363)
- (-2990 . 268220) (-2991 . 268097) (-2992 . 268003) (-2993 . 267975)
- (-2994 . 267924) (-2995 . 267754) (-2996 . 267705) (-2997 . 267634)
- (-2998 . 267564) (-2999 . 267496) (-3000 . 267340) (-3001 . 267258)
- (-3002 . 267142) (-3003 . 266984) (-3004 . 266942) (-3005 . 266748)
- (-3006 . 266643) (-3007 . 266397) (-3008 . 266274) (-3009 . 266204)
- (-3010 . 265494) (-3011 . 265442) (-3012 . 265236) (-3013 . 265101)
- (-3014 . 264839) (-3015 . 264743) (-3016 . 264639) (-3017 . 264416)
- (-3018 . 264301) (-3019 . 264246) (-3020 . 263909) (-3021 . 263768)
- (-3022 . 263538) (-3023 . 263328) (-3024 . 263294) (-3025 . 263195)
- (-3026 . 263037) (-3027 . 262654) (-3028 . 262408) (-3029 . 262246)
- (-3030 . 262100) (-3031 . 262015) (-3032 . 261845) (-3033 . 261763)
- (-3034 . 261711) (-3035 . 261581) (-3036 . 261496) (-3037 . 261434)
- (-3038 . 261376) (-3039 . 261239) (-3040 . 261173) (-3041 . 260989)
- (-3042 . 260848) (-3043 . 260786) (-3044 . 260752) (-3045 . 260664)
- (-3046 . 260590) (-3047 . 260233) (-3048 . 259031) (-3049 . 258871)
- (-3050 . 258709) (-3051 . 258602) (-3052 . 258500) (-3053 . 258376)
- (-3054 . 258305) (-3055 . 258147) (-3056 . 258116) (-3057 . 257998)
- (-3058 . 256170) (-3059 . 256000) (-3060 . 255878) (** . 252801)
- (-3062 . 252714) (-3063 . 252665) (-3064 . 252607) (-3065 . 252449)
- (-3066 . 252372) (-3067 . 252319) (-3068 . 250818) (-3069 . 250746)
- (-3070 . 250645) (-3071 . 250383) (-3072 . 250109) (-3073 . 250005)
- (-3074 . 249911) (-3075 . 249604) (-3076 . 249549) (-3077 . 249326)
- (-3078 . 249217) (-3079 . 247677) (-3080 . 247507) (-3081 . 247112)
- (-3082 . 246956) (-3083 . 246788) (-3084 . 246682) (-3085 . 246387)
- (-3086 . 246302) (-3087 . 246130) (-3088 . 246043) (-3089 . 245553)
- (-3090 . 245356) (-3091 . 245077) (-3092 . 244885) (-3093 . 244783)
- (-3094 . 244628) (-3095 . 244542) (-3096 . 244262) (-3097 . 243996)
- (-3098 . 243260) (-3099 . 243052) (-3100 . 242896) (-3101 . 242755)
- (-3102 . 242724) (-3103 . 242544) (-3104 . 242409) (-3105 . 242339)
- (-3106 . 242286) (-3107 . 242229) (-3108 . 242068) (-3109 . 241942)
- (-3110 . 241829) (-3111 . 241726) (-3112 . 241317) (-3113 . 240968)
- (-3114 . 240846) (-3115 . 240745) (-3116 . 240690) (-3117 . 240415)
- (-3118 . 240289) (-3119 . 239845) (-3120 . 239729) (-3121 . 239425)
- (-3122 . 239146) (-3123 . 239093) (-3124 . 238960) (-3125 . 238887)
- (-3126 . 238814) (-3127 . 238666) (-3128 . 238028) (-3129 . 237887)
- (-3130 . 237808) (-3131 . 237755) (-3132 . 237614) (-3133 . 237215)
- (-3134 . 237077) (-3135 . 236994) (-3136 . 236925) (-3137 . 236720)
- (-3138 . 235560) (-3139 . 235198) (-3140 . 235101) (-3141 . 234803)
- (-3142 . 234772) (-3143 . 234620) (-3144 . 234496) (-3145 . 234021)
- (-3146 . 233955) (-3147 . 233841) (-3148 . 233789) (-3149 . 233653)
- (-3150 . 233481) (-3151 . 233328) (-3152 . 232892) (-3153 . 232580)
- (-3154 . 232434) (-3155 . 232339) (-3156 . 231216) (-3157 . 230829)
- (-3158 . 230720) (-3159 . 230548) (-3160 . 230489) (-3161 . 230323)
- (-3162 . 230175) (-3163 . 230094) (-3164 . 229949) (-3165 . 229896)
- (-3166 . 228649) (-3167 . 228452) (-3168 . 228073) (-3169 . 227901)
- (-3170 . 227804) (-3171 . 227477) (-3172 . 227299) (-3173 . 227159)
- (-3174 . 226826) (-3175 . 226630) (-3176 . 226488) (-3177 . 226398)
- (-3178 . 226252) (-3179 . 226080) (-3180 . 225893) (-3181 . 225821)
- (-3182 . 225642) (-3183 . 225550) (-3184 . 225450) (-3185 . 225138)
- (-3186 . 225058) (-3187 . 224901) (-3188 . 224814) (-3189 . 224680)
- (-3190 . 224478) (-3191 . 224216) (-3192 . 224106) (-3193 . 224016)
- (-3194 . 223823) (-3195 . 223597) (-3196 . 223539) (-3197 . 223383)
- (-3198 . 223243) (-3199 . 223055) (-3200 . 222989) (-3201 . 222851)
- (-3202 . 222721) (-3203 . 222613) (-3204 . 222439) (-3205 . 222188)
- (-3206 . 221666) (-3207 . 221565) (-3208 . 221354) (-3209 . 221264)
- (-3210 . 221075) (-3211 . 220976) (-3212 . 220838) (-3213 . 220751)
- (-3214 . 220652) (-3215 . 220557) (-3216 . 220128) (-3217 . 219990)
- (-3218 . 219930) (-3219 . 219745) (-3220 . 219674) (-3221 . 219488)
- (-3222 . 219370) (-3223 . 219166) (-3224 . 219062) (-3225 . 218991)
- (-3226 . 218849) (-3227 . 218660) (-3228 . 218487) (-3229 . 218306)
- (-3230 . 218112) (-3231 . 218034) (-3232 . 217951) (-3233 . 217810)
- (-3234 . 217758) (-3235 . 217487) (-3236 . 217256) (-3237 . 216910)
- (-3238 . 216389) (-3239 . 216312) (-3240 . 215994) (-3241 . 215748)
- (-3242 . 215674) (-3243 . 214099) (-3244 . 214028) (-3245 . 213696)
- (-3246 . 213556) (-3247 . 213412) (-3248 . 213327) (-3249 . 213159)
- (-3250 . 212559) (-3251 . 212399) (-3252 . 212349) (-3253 . 212285)
- (-3254 . 212187) (-3255 . 211537) (-3256 . 211351) (-3257 . 211295)
- (-3258 . 211224) (-3259 . 210620) (-3260 . 210456) (-3261 . 210251)
- (-3262 . 210154) (-3263 . 210042) (-3264 . 209957) (-3265 . 209901)
- (-3266 . 208691) (-3267 . 208608) (-3268 . 208418) (-3269 . 208311)
- (-3270 . 208205) (-3271 . 208152) (-3272 . 208099) (-3273 . 207898)
- (-3274 . 207664) (-3275 . 207635) (-3276 . 207545) (-3277 . 207437)
- (-3278 . 207385) (-3279 . 207233) (-3280 . 207148) (-3281 . 207042)
- (-3282 . 206857) (-3283 . 206653) (-3284 . 206380) (-3285 . 205309)
- (-3286 . 205243) (-3287 . 205081) (-3288 . 205025) (-3289 . 204680)
- (-3290 . 204587) (-3291 . 204389) (-3292 . 204315) (-3293 . 204181)
- (-3294 . 204115) (-3295 . 203946) (-3296 . 203893) (-3297 . 203783)
- (-3298 . 203600) (-3299 . 203390) (-3300 . 203281) (-3301 . 203064)
- (-3302 . 202934) (-3303 . 202851) (-3304 . 202560) (-3305 . 202281)
- (-3306 . 201815) (-3307 . 201675) (-3308 . 201502) (-3309 . 201419)
- (-3310 . 201045) (-3311 . 200936) (-3312 . 200868) (-3313 . 200439)
- (-3314 . 200285) (-3315 . 200046) (-3316 . 199997) (-3317 . 199929)
- (-3318 . 199858) (-3319 . 199724) (-3320 . 199596) (-3321 . 199516)
- (-3322 . 199076) (-3323 . 198948) (-3324 . 198616) (-3325 . 198543)
- (-3326 . 198413) (-3327 . 198209) (-3328 . 198110) (-3329 . 197978)
- (-3330 . 197691) (-3331 . 197633) (-3332 . 197414) (-3333 . 197277)
- (-3334 . 197183) (-3335 . 197131) (-3336 . 196968) (-3337 . 196853)
- (-3338 . 196819) (-3339 . 196652) (-3340 . 196122) (-3341 . 195601)
- (-3342 . 195521) (-3343 . 195421) (-3344 . 195269) (-3345 . 195095)
- (-3346 . 195023) (-3347 . 194895) (-3348 . 194656) (-3349 . 194558)
- (-3350 . 194431) (-3351 . 193771) (-3352 . 193609) (-3353 . 193514)
- (-3354 . 193329) (-3355 . 193086) (-3356 . 192951) (-3357 . 192849)
- (-3358 . 192689) (-3359 . 192479) (-3360 . 192426) (-3361 . 192341)
- (-3362 . 192215) (-3363 . 191979) (-3364 . 191898) (-3365 . 191825)
- (-3366 . 191694) (-3367 . 191606) (-3368 . 191419) (-3369 . 191305)
- (-3370 . 190922) (-3371 . 190813) (-3372 . 190699) (-3373 . 190569)
- (-3374 . 190389) (-3375 . 190327) (-3376 . 190254) (-3377 . 189826)
- (-3378 . 189666) (-3379 . 189484) (-3380 . 188968) (-3381 . 188805)
- (-3382 . 188750) (-3383 . 188560) (-3384 . 188476) (-3385 . 188406)
- (-3386 . 188227) (-3387 . 188004) (-3388 . 187851) (-3389 . 187781)
- (-3390 . 187602) (-3391 . 187473) (-3392 . 187258) (-3393 . 187173)
- (-3394 . 187051) (-3395 . 186993) (-3396 . 186895) (-3397 . 186835)
- (-3398 . 186742) (-3399 . 186659) (-3400 . 186500) (-3401 . 186443)
- (-3402 . 186412) (-3403 . 186341) (-3404 . 186254) (-3405 . 186140)
- (-3406 . 185914) (-3407 . 185567) (-3408 . 185310) (-3409 . 184789)
- (-3410 . 184719) (-3411 . 184545) (-3412 . 184438) (-3413 . 184270)
- (-3414 . 184169) (-3415 . 184113) (-3416 . 183948) (-3417 . 183830)
- (-3418 . 183735) (-3419 . 183640) (-3420 . 183533) (-3421 . 183327)
- (-3422 . 183225) (-3423 . 183148) (-3424 . 182921) (-3425 . 182435)
- (-3426 . 172905) (-3427 . 172852) (-3428 . 172550) (-3429 . 172439)
- (-3430 . 172380) (-3431 . 171095) (-3432 . 171037) (-3433 . 170952)
- (-3434 . 170774) (-3435 . 170463) (-3436 . 170364) (-3437 . 170259)
- (-3438 . 170207) (-3439 . 169954) (-3440 . 169837) (-3441 . 169490)
- (-3442 . 169335) (-3443 . 169238) (-3444 . 169156) (-3445 . 168596)
- (-3446 . 168343) (-3447 . 168247) (-3448 . 168191) (-3449 . 168089)
- (-3450 . 166819) (-3451 . 166752) (-3452 . 166658) (-3453 . 166606)
- (-3454 . 164752) (-3455 . 164629) (-3456 . 164448) (-3457 . 164375)
- (-3458 . 164045) (-3459 . 163993) (-3460 . 163941) (-3461 . 163644)
- (-3462 . 163352) (-3463 . 163296) (-3464 . 163210) (-3465 . 163131)
- (-3466 . 162759) (-3467 . 162609) (-3468 . 162476) (-3469 . 162380)
- (-3470 . 162228) (-3471 . 162162) (-3472 . 162089) (-3473 . 162061)
- (-3474 . 161843) (-3475 . 161709) (-3476 . 161625) (-3477 . 161447)
- (-3478 . 161321) (-3479 . 161180) (-3480 . 160864) (-3481 . 160827)
- (-3482 . 160508) (-3483 . 160302) (-3484 . 160086) (-3485 . 159543)
- (-3486 . 159097) (-3487 . 158995) (-3488 . 158745) (-3489 . 158665)
- (-3490 . 158597) (-3491 . 158500) (-3492 . 158415) (-3493 . 158312)
- (-3494 . 158205) (-3495 . 157988) (-3496 . 156419) (-3497 . 156336)
- (-3498 . 156244) (-3499 . 155134) (-3500 . 154989) (-3501 . 154877)
- (-3502 . 154822) (-3503 . 154794) (-3504 . 154671) (-3505 . 154263)
- (-3506 . 154171) (-3507 . 154097) (-3508 . 153994) (-3509 . 153769)
- (-3510 . 153497) (-3511 . 153351) (-3512 . 153302) (-3513 . 152862)
- (-3514 . 152649) (-3515 . 152522) (-3516 . 152385) (-3517 . 152299)
- (-3518 . 150835) (-3519 . 150781) (-3520 . 150728) (-3521 . 150592)
- (-3522 . 150539) (-3523 . 150324) (-3524 . 150160) (-3525 . 149831)
- (-3526 . 149779) (-3527 . 149447) (-3528 . 149325) (-3529 . 149172)
- (-3530 . 149029) (-3531 . 148951) (-3532 . 148827) (-3533 . 148704)
- (-3534 . 148603) (-3535 . 148484) (-3536 . 148192) (-3537 . 147984)
- (-3538 . 147828) (-3539 . 147796) (-3540 . 147046) (-3541 . 146876)
- (-3542 . 146747) (-3543 . 146603) (-3544 . 146551) (-3545 . 146408)
- (-3546 . 146352) (-3547 . 146241) (-3548 . 146063) (-3549 . 145681)
- (-3550 . 145552) (-3551 . 145484) (-3552 . 145432) (-3553 . 145358)
- (-3554 . 145253) (-3555 . 145173) (-3556 . 145107) (-3557 . 145030)
- (-3558 . 144975) (-3559 . 144867) (-3560 . 144537) (-3561 . 144450)
- (-3562 . 144355) (-3563 . 144166) (-3564 . 144097) (-3565 . 144012)
- (-3566 . 143841) (-3567 . 143717) (-3568 . 143577) (-3569 . 143281)
- (-3570 . 143229) (-3571 . 143135) (-3572 . 142922) (-3573 . 142778)
- (-3574 . 142639) (-3575 . 142360) (-3576 . 142308) (-3577 . 142061)
- (-3578 . 141988) (-3579 . 141629) (-3580 . 141562) (-3581 . 141432)
- (-3582 . 141111) (-3583 . 140993) (-3584 . 140923) (-3585 . 140805)
- (-3586 . 140706) (-3587 . 140456) (-3588 . 140353) (-3589 . 140204)
- (-3590 . 140152) (-3591 . 140009) (-3592 . 139680) (-3593 . 139371)
- (-3594 . 139316) (-3595 . 139198) (-3596 . 138678) (-3597 . 138459)
- (-3598 . 138261) (-3599 . 138146) (-3600 . 138053) (-3601 . 137750)
- (-3602 . 137441) (-3603 . 137346) (-3604 . 137248) (-3605 . 137139)
- (-3606 . 137013) (-3607 . 136886) (-3608 . 136833) (-3609 . 136716)
- (-3610 . 136679) (-3611 . 136611) (-3612 . 136497) (-3613 . 136309)
- (-3614 . 135405) (-3615 . 135354) (-3616 . 135280) (-3617 . 135231)
- (-3618 . 135165) (-3619 . 134797) (-3620 . 134571) (-3621 . 134515)
- (-3622 . 134174) (-3623 . 134146) (-3624 . 134069) (-3625 . 134014)
- (-3626 . 133873) (-3627 . 133326) (-3628 . 133243) (-3629 . 133005)
- (-3630 . 132911) (-3631 . 132577) (-3632 . 132463) (-3633 . 132295)
- (-3634 . 132229) (-3635 . 132176) (-3636 . 131973) (-3637 . 131852)
- (-3638 . 131712) (-3639 . 131556) (-3640 . 131487) (-3641 . 131368)
- (-3642 . 131237) (-3643 . 131135) (-3644 . 131069) (-3645 . 131012)
- (-3646 . 130903) (-3647 . 130786) (-3648 . 130662) (-3649 . 130553)
- (-3650 . 130497) (-3651 . 130352) (-3652 . 130243) (-3653 . 129959)
- (-3654 . 129928) (-3655 . 129845) (-3656 . 129751) (-3657 . 129652)
- (-3658 . 129530) (-3659 . 129460) (-3660 . 129300) (-3661 . 129164)
- (-3662 . 129049) (-3663 . 128972) (-3664 . 128785) (-3665 . 128663)
- (-3666 . 128412) (-3667 . 128266) (-3668 . 128211) (-3669 . 128100)
- (-3670 . 128020) (-3671 . 127868) (-3672 . 127744) (-3673 . 127713)
- (-3674 . 127658) (-3675 . 127530) (-3676 . 127311) (-3677 . 126119)
- (-3678 . 125948) (-3679 . 125734) (-3680 . 125627) (-3681 . 125471)
- (-3682 . 125412) (-3683 . 125301) (-3684 . 125136) (-3685 . 124802)
- (-3686 . 124703) (-3687 . 124456) (-3688 . 124287) (-3689 . 124111)
- (-3690 . 122930) (-3691 . 122858) (-3692 . 122645) (-3693 . 122547)
- (-3694 . 122404) (-3695 . 122205) (-3696 . 122049) (-3697 . 121923)
- (-3698 . 121808) (-3699 . 120384) (-3700 . 120247) (-3701 . 119653)
- (-3702 . 119476) (-3703 . 119324) (-3704 . 119238) (-3705 . 119097)
- (-3706 . 118916) (-3707 . 118831) (-3708 . 118659) (-3709 . 118608)
- (-3710 . 118450) (-3711 . 118365) (-3712 . 115584) (-3713 . 115532)
- (-3714 . 113285) (-3715 . 113218) (-3716 . 113162) (-3717 . 113078)
- (-3718 . 112945) (-3719 . 111759) (-12 . 111587) (-3721 . 111389)
- (-3722 . 111165) (-3723 . 110989) (-3724 . 110923) (-3725 . 110764)
- (-3726 . 110696) (-3727 . 110515) (-3728 . 110128) (-3729 . 110044)
- (-3730 . 109992) (-3731 . 109812) (-3732 . 109784) (-3733 . 109644)
- (-3734 . 109548) (-3735 . 109411) (-3736 . 109358) (-3737 . 109223)
- (-3738 . 108926) (-3739 . 108874) (-3740 . 108719) (-3741 . 108621)
- (-3742 . 108196) (-3743 . 107920) (-3744 . 107846) (-3745 . 107330)
- (-3746 . 107175) (-3747 . 106986) (-3748 . 106937) (-3749 . 105491)
- (-3750 . 104999) (-3751 . 104857) (-3752 . 104786) (-3753 . 104439)
- (-3754 . 104316) (-3755 . 104145) (-3756 . 103945) (-3757 . 103586)
- (-3758 . 103505) (-3759 . 103411) (-3760 . 103189) (-3761 . 103136)
- (-3762 . 103066) (-3763 . 102995) (-3764 . 102856) (-3765 . 102720)
- (-3766 . 102123) (-3767 . 102095) (-3768 . 102039) (-3769 . 101946)
- (-3770 . 101887) (-3771 . 101831) (-3772 . 101803) (-3773 . 101324)
- (-3774 . 100935) (-3775 . 100559) (-3776 . 99959) (-3777 . 99906)
- (-3778 . 99799) (-3779 . 99494) (-3780 . 99371) (-3781 . 99130)
- (-3782 . 99015) (-3783 . 98920) (-3784 . 98041) (-3785 . 97462)
- (-3786 . 97366) (-3787 . 97205) (-3788 . 97131) (-3789 . 97034)
- (-3790 . 96902) (-3791 . 96829) (-3792 . 96773) (-3793 . 96696)
- (-3794 . 96578) (-3795 . 96367) (-3796 . 96259) (-3797 . 96207)
- (-3798 . 96136) (-3799 . 95557) (-3800 . 95439) (-3801 . 95373)
- (-3802 . 95250) (-3803 . 95184) (-3804 . 95089) (-3805 . 95005)
- (-3806 . 94847) (-3807 . 94548) (-3808 . 94430) (-3809 . 94357)
- (-3810 . 94275) (-3811 . 94166) (-3812 . 94036) (-3813 . 93917)
- (-3814 . 93701) (-3815 . 93594) (-3816 . 93497) (-3817 . 93349)
- (-3818 . 93217) (-3819 . 92153) (-3820 . 91947) (-3821 . 91887)
- (-3822 . 91793) (-3823 . 91738) (-3824 . 91543) (-3825 . 91509)
- (-3826 . 91327) (-3827 . 91137) (-3828 . 91024) (-3829 . 90850)
- (-3830 . 90486) (-3831 . 90364) (-3832 . 90171) (-3833 . 90014)
- (-3834 . 89877) (-3835 . 89672) (-3836 . 89483) (-3837 . 89264)
- (-3838 . 89037) (* . 84514) (-3840 . 84048) (-3841 . 83637)
- (-3842 . 83475) (-3843 . 83253) (-3844 . 83179) (-3845 . 83027)
- (-3846 . 82436) (-3847 . 82383) (-3848 . 82298) (-3849 . 81452)
- (-3850 . 81332) (-3851 . 81180) (-3852 . 81124) (-3853 . 80870)
- (-3854 . 80638) (-3855 . 79773) (-3856 . 79615) (-3857 . 79530)
- (-3858 . 79478) (-3859 . 78735) (-3860 . 78533) (-3861 . 78433)
- (-3862 . 78402) (-3863 . 78317) (-3864 . 74707) (-3865 . 74439)
- (-3866 . 73189) (-3867 . 72942) (-3868 . 72845) (-3869 . 72742)
- (-3870 . 72642) (-3871 . 72608) (-3872 . 72487) (-3873 . 72400)
- (-3874 . 72124) (-3875 . 71816) (-3876 . 71744) (-3877 . 71586)
- (-3878 . 71261) (-3879 . 71167) (-3880 . 71058) (-3881 . 71006)
- (-3882 . 70008) (-3883 . 69956) (-3884 . 69862) (-3885 . 69649)
- (-3886 . 69405) (-3887 . 69229) (-3888 . 69108) (-3889 . 68941)
- (-3890 . 68881) (-3891 . 68798) (-3892 . 68700) (-3893 . 68669)
- (-3894 . 68587) (-3895 . 68448) (-3896 . 68078) (-3897 . 67975)
- (-3898 . 67302) (-3899 . 67215) (-3900 . 67090) (-3901 . 66955)
- (-3902 . 66436) (-3903 . 66325) (-3904 . 65966) (-3905 . 65616)
- (-3906 . 65472) (-3907 . 64803) (-3908 . 63919) (-3909 . 63466)
- (-3910 . 63388) (-3911 . 63330) (-3912 . 63157) (-3913 . 62975)
- (-3914 . 62799) (-3915 . 62747) (-3916 . 62244) (-3917 . 62104)
- (-3918 . 61960) (-3919 . 61635) (-3920 . 61505) (-3921 . 61287)
- (-3922 . 61031) (-3923 . 60794) (-3924 . 60220) (-3925 . 60153)
- (-3926 . 60084) (-3927 . 59999) (-3928 . 59739) (-3929 . 59676)
- (-3930 . 59573) (-3931 . 59238) (-3932 . 59074) (-3933 . 58726)
- (-3934 . 58625) (-3935 . 58429) (-3936 . 58356) (-3937 . 58251)
- (-3938 . 58180) (-3939 . 58127) (-3940 . 57854) (-3941 . 57567)
- (-3942 . 57496) (-3943 . 57390) (-3944 . 56615) (-3945 . 56448)
- (-3946 . 56254) (-3947 . 56121) (-3948 . 56048) (-3949 . 55961)
- (-3950 . 55714) (-3951 . 55641) (-3952 . 55559) (-3953 . 55450)
- (-3954 . 55203) (-3955 . 55066) (-3956 . 55013) (-3957 . 54915)
- (-3958 . 54860) (-3959 . 54702) (-3960 . 54604) (-3961 . 54397)
- (-3962 . 54341) (-3963 . 53815) (-3964 . 53600) (-3965 . 53381)
- (-3966 . 53328) (-3967 . 53262) (-3968 . 53138) (-3969 . 52744)
- (-3970 . 52528) (-3971 . 52225) (-3972 . 52062) (-3973 . 51981)
- (-3974 . 51711) (-3975 . 51599) (-3976 . 51571) (-3977 . 51466)
- (-3978 . 51389) (-3979 . 51267) (-3980 . 51166) (-3981 . 51062)
- (-3982 . 50903) (-3983 . 50696) (-3984 . 50430) (-3985 . 50125)
- (-3986 . 49704) (-3987 . 49599) (-3988 . 49530) (-3989 . 49014)
- (-3990 . 48889) (-3991 . 48861) (-3992 . 48752) (-3993 . 48687)
- (-3994 . 48586) (-3995 . 48531) (-3996 . 48372) (-3997 . 48314)
- (-3998 . 48119) (-3999 . 48022) (-4000 . 47901) (-4001 . 47848)
- (-4002 . 47698) (-4003 . 47570) (-4004 . 47533) (-4005 . 47412)
- (-4006 . 47327) (-4007 . 47256) (-4008 . 47086) (-4009 . 47014)
- (-4010 . 46943) (-4011 . 44691) (-4012 . 44528) (-4013 . 44451)
- (-4014 . 44377) (-4015 . 44280) (-4016 . 44166) (-4017 . 44020)
- (-4018 . 43925) (-4019 . 43612) (-4020 . 43516) (-4021 . 43400)
- (-4022 . 43348) (-4023 . 43295) (-4024 . 43241) (-4025 . 43122)
- (-4026 . 42900) (-4027 . 42607) (-4028 . 42534) (-4029 . 42324)
- (-4030 . 42272) (-4031 . 42201) (-4032 . 41871) (-4033 . 41705)
- (-4034 . 41547) (-4035 . 41474) (-4036 . 41108) (-4037 . 41027)
- (-4038 . 40870) (-4039 . 40815) (-4040 . 40536) (-4041 . 40149)
- (-4042 . 40051) (-4043 . 39968) (-4044 . 39835) (-4045 . 39758)
- (-4046 . 39705) (-4047 . 39622) (-4048 . 39332) (-4049 . 37713)
- (-4050 . 37661) (-4051 . 37519) (-4052 . 37206) (-4053 . 37022)
- (-4054 . 36205) (-4055 . 36128) (-4056 . 36016) (-4057 . 35958)
- (-4058 . 35843) (-4059 . 35756) (-4060 . 35615) (-4061 . 35376)
- (-4062 . 35275) (-4063 . 35127) (-4064 . 34676) (-4065 . 34536)
- (-4066 . 34370) (-4067 . 34296) (-4068 . 33772) (-4069 . 33573)
- (-4070 . 33379) (-4071 . 33150) (-4072 . 32839) (-4073 . 31978)
- (-4074 . 31820) (-4075 . 31704) (-4076 . 31500) (-4077 . 31062)
- (-4078 . 30328) (-4079 . 30034) (-4080 . 29908) (-4081 . 29764)
- (-4082 . 29618) (-4083 . 29538) (-4084 . 29145) (-4085 . 29052)
- (-4086 . 28982) (-4087 . 28926) (-4088 . 28810) (-4089 . 28698)
- (-4090 . 27331) (-4091 . 27244) (-4092 . 27170) (-4093 . 26971)
- (-4094 . 26337) (-4095 . 23922) (-4096 . 23808) (-4097 . 23728)
- (-4098 . 23619) (-4099 . 23505) (-4100 . 23425) (-4101 . 23248)
- (-4102 . 23139) (-4103 . 23032) (-4104 . 22547) (-4105 . 22254)
- (-4106 . 21439) (-4107 . 21257) (-4108 . 21191) (-4109 . 21123)
- (-4110 . 21074) (-4111 . 20905) (-4112 . 20787) (-4113 . 20759)
- (-4114 . 20656) (-4115 . 20504) (-4116 . 20417) (-4117 . 20361)
- (-4118 . 19603) (-4119 . 19523) (-4120 . 19353) (-4121 . 19301)
- (-4122 . 19230) (-4123 . 19196) (-4124 . 18905) (-4125 . 16953)
- (-4126 . 16681) (-4127 . 16628) (-4128 . 16600) (-4129 . 16520)
- (-4130 . 16397) (-4131 . 16317) (-4132 . 16073) (-4133 . 16024)
- (-4134 . 15944) (-4135 . 15811) (-4136 . 15724) (-4137 . 15543)
- (-4138 . 15469) (-4139 . 15390) (-4140 . 15234) (-4141 . 15165)
- (-4142 . 14994) (-4143 . 14911) (-4144 . 14763) (-4145 . 14539)
- (-4146 . 13884) (-4147 . 13807) (-4148 . 12934) (-4149 . 12125)
- (-4150 . 12091) (-4151 . 11893) (-4152 . 11819) (-4153 . 11767)
- (-4154 . 11642) (-4155 . 11217) (-4156 . 11086) (-4157 . 10780)
- (-4158 . 10694) (-4159 . 10621) (-4160 . 10393) (-4161 . 10334)
- (-4162 . 10009) (-4163 . 9904) (-4164 . 9777) (-4165 . 9153)
- (-4166 . 8921) (-4167 . 8548) (-4168 . 8309) (-4169 . 8064)
- (-4170 . 7812) (-4171 . 7565) (-4172 . 7421) (-4173 . 7306)
- (-4174 . 6966) (-4175 . 6862) (-4176 . 6782) (-4177 . 6267)
- (-4178 . 6133) (-4179 . 6036) (-4180 . 5932) (-4181 . 5860)
- (-4182 . 5483) (-4183 . 5354) (-4184 . 5299) (-4185 . 5240)
- (-4186 . 5173) (-4187 . 4982) (-4188 . 4918) (-4189 . 4773)
- (-4190 . 4614) (-4191 . 4537) (-4192 . 4437) (-4193 . 3832)
- (-4194 . 3773) (-4195 . 3690) (-4196 . 3662) (-4197 . 3584)
- (-4198 . 3499) (-4199 . 3448) (-4200 . 3363) (-4201 . 3205)
- (-4202 . 2889) (-4203 . 2625) (-4204 . 2372) (-4205 . 2129)
- (-4206 . 2020) (-4207 . 1946) (-4208 . 1801) (-4209 . 1620)
- (-4210 . 1458) (-4211 . 1359) (-4212 . 1181) (-4213 . 1107)
- (-4214 . 1001) (-4215 . 625) (-4216 . 192) (-4217 . 107) (-4218 . 30)) \ No newline at end of file
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1085)) (|:| |fn| (-291 (-202)))
+ (|:| -2321 (-1009 (-777 (-202)))) (|:| |abserr| (-202))
+ (|:| |relerr| (-202))))
+ (-5 *2 (-522)) (-5 *1 (-183)))))
+(((*1 *2 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-522)) (-5 *4 (-628 (-202))) (-5 *2 (-960))
+ (-5 *1 (-689)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-708)) (-5 *1 (-98 *3)) (-4 *3 (-1014)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1128 *3 *2)) (-4 *3 (-971)) (-4 *2 (-1157 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-108))
+ (-4 *6 (-13 (-426) (-784) (-962 (-522)) (-584 (-522))))
+ (-4 *3 (-13 (-27) (-1106) (-405 *6) (-10 -8 (-15 -2217 ($ *7)))))
+ (-4 *7 (-782))
+ (-4 *8
+ (-13 (-1144 *3 *7) (-338) (-1106)
+ (-10 -8 (-15 -2731 ($ $)) (-15 -2611 ($ $)))))
+ (-5 *2
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1068)) (|:| |prob| (-1068))))))
+ (-5 *1 (-397 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1068)) (-4 *9 (-910 *8))
+ (-14 *10 (-1085)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1114 *3 *4 *5 *6)) (-4 *3 (-514)) (-4 *4 (-730))
+ (-4 *5 (-784)) (-4 *6 (-985 *3 *4 *5))
+ (-5 *2 (-2 (|:| -1720 (-588 *6)) (|:| -1566 (-588 *6)))))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4239)) (-4 *1 (-936 *2)) (-4 *2 (-1120)))))
+((-1198 . 725407) (-1199 . 725223) (-1200 . 724732) (-1201 . 724652)
+ (-1202 . 724579) (-1203 . 724470) (-1204 . 724260) (-1205 . 724155)
+ (-1206 . 723917) (-1207 . 723796) (-1208 . 723356) (-1209 . 723251)
+ (-1210 . 721911) (-1211 . 721882) (-1212 . 721670) (-1213 . 721479)
+ (-1214 . 720876) (-1215 . 720630) (-1216 . 720536) (-1217 . 720477)
+ (-1218 . 720406) (-1219 . 720374) (-1220 . 720246) (-1221 . 720194)
+ (-1222 . 720121) (-1223 . 720047) (-1224 . 719924) (-1225 . 719810)
+ (-1226 . 719555) (-1227 . 719478) (-1228 . 719312) (-1229 . 719201)
+ (-1230 . 719146) (-1231 . 718814) (-1232 . 716684) (-1233 . 716631)
+ (-1234 . 716512) (-1235 . 716442) (-1236 . 716274) (-1237 . 716187)
+ (-1238 . 714950) (-1239 . 714324) (-1240 . 714273) (-1241 . 714143)
+ (-1242 . 714048) (-1243 . 713775) (-1244 . 713693) (-1245 . 713665)
+ (-1246 . 712955) (-1247 . 712889) (-1248 . 712015) (-1249 . 711953)
+ (-1250 . 711666) (-1251 . 711462) (-1252 . 711389) (-1253 . 711288)
+ (-1254 . 710697) (-1255 . 710586) (-1256 . 710533) (-1257 . 710327)
+ (-1258 . 710274) (-1259 . 710137) (-1260 . 710057) (-1261 . 709986)
+ (-1262 . 709831) (-1263 . 709732) (-1264 . 708331) (-1265 . 708104)
+ (-1266 . 707969) (-1267 . 707902) (-1268 . 707699) (-1269 . 705920)
+ (-1270 . 703012) (-1271 . 702779) (-1272 . 702647) (-1273 . 702523)
+ (-1274 . 702347) (-1275 . 701572) (-1276 . 701310) (-1277 . 701173)
+ (-1278 . 700893) (-1279 . 700772) (-1280 . 700719) (-1281 . 700432)
+ (-1282 . 700265) (-1283 . 700158) (-1284 . 699982) (-1285 . 699889)
+ (-1286 . 699759) (-1287 . 699663) (-1288 . 699577) (-1289 . 699437)
+ (-1290 . 699191) (-1291 . 699133) (-1292 . 699021) (-1293 . 698827)
+ (-1294 . 698627) (-1295 . 698501) (-1296 . 698397) (-1297 . 698119)
+ (-1298 . 697963) (-1299 . 696667) (-1300 . 696448) (-1301 . 696420)
+ (-1302 . 696093) (-1303 . 695960) (-1304 . 695845) (-1305 . 695768)
+ (-1306 . 695649) (-1307 . 695597) (-1308 . 695318) (-1309 . 695253)
+ (-1310 . 695116) (-1311 . 695027) (-1312 . 694954) (-1313 . 694899)
+ (-1314 . 694796) (-1315 . 694665) (-1316 . 694562) (-1317 . 694534)
+ (-1318 . 694440) (-1319 . 694353) (-1320 . 694254) (-1321 . 694182)
+ (-1322 . 694125) (-1323 . 694002) (-1324 . 693665) (-1325 . 693563)
+ (-1326 . 693354) (-1327 . 693277) (-1328 . 693189) (-1329 . 693137)
+ (-1330 . 692868) (-1331 . 692761) (-1332 . 692514) (-1333 . 692376)
+ (-1334 . 692323) (-1335 . 692236) (-1336 . 692095) (-1337 . 692027)
+ (-1338 . 691961) (-1339 . 691798) (-1340 . 691640) (-1341 . 691524)
+ (-1342 . 691451) (-1343 . 691063) (-1344 . 690940) (-1345 . 690838)
+ (-1346 . 690451) (-1347 . 690021) (-1348 . 689791) (-1349 . 689734)
+ (-1350 . 689705) (-1351 . 689590) (-1352 . 689410) (-1353 . 689333)
+ (-1354 . 689251) (-1355 . 689098) (-1356 . 689064) (-1357 . 688854)
+ (-1358 . 688056) (-1359 . 687836) (-1360 . 687727) (-1361 . 684442)
+ (-1362 . 684263) (-1363 . 684096) (-1364 . 683949) (-1365 . 683840)
+ (-1366 . 683498) (-1367 . 683256) (-1368 . 682647) (-1369 . 682613)
+ (-1370 . 682498) (-1371 . 682381) (-1372 . 682110) (-1373 . 682082)
+ (-1374 . 681552) (-1375 . 681305) (-1376 . 681122) (-1377 . 681038)
+ (-1378 . 680931) (-1379 . 680832) (-1380 . 680748) (-1381 . 680624)
+ (-1382 . 680454) (-1383 . 680367) (-1384 . 679846) (-1385 . 679709)
+ (-1386 . 679641) (-1387 . 679538) (-1388 . 679380) (-1389 . 679309)
+ (-1390 . 679249) (-1391 . 678973) (-1392 . 678864) (-1393 . 678794)
+ (-1394 . 678714) (-1395 . 678615) (-1396 . 678562) (-1397 . 678488)
+ (-1398 . 678329) (-1399 . 678251) (-1400 . 677868) (-1401 . 677709)
+ (-1402 . 677653) (-1403 . 677590) (-1404 . 677372) (-1405 . 677272)
+ (-1406 . 677213) (-1407 . 677158) (-1408 . 676799) (-1409 . 676746)
+ (-1410 . 676668) (-1411 . 676422) (-1412 . 676277) (-1413 . 676181)
+ (-1414 . 676037) (-1415 . 675723) (-1416 . 675571) (-1417 . 675467)
+ (-1418 . 675309) (-1419 . 675255) (-1420 . 675130) (-1421 . 674968)
+ (-1422 . 674833) (-1423 . 674724) (-1424 . 674125) (-1425 . 674053)
+ (-1426 . 673637) (-1427 . 673479) (-1428 . 673381) (-1429 . 673235)
+ (-1430 . 673082) (-1431 . 673026) (-1432 . 672742) (-1433 . 672714)
+ (-1434 . 672615) (-1435 . 672487) (-1436 . 672413) (-1437 . 672206)
+ (-1438 . 672121) (-1439 . 672026) (-1440 . 671625) (-1441 . 671594)
+ (-1442 . 671273) (-1443 . 671034) (-1444 . 670903) (-1445 . 670829)
+ (-1446 . 670773) (-1447 . 670723) (-1448 . 670640) (-1449 . 670570)
+ (-1450 . 670400) (-1451 . 670343) (-1452 . 669926) (-1453 . 669788)
+ (-1454 . 669673) (-1455 . 669546) (-1456 . 669005) (-1457 . 668911)
+ (-1458 . 668385) (-1459 . 668291) (-1460 . 668217) (-1461 . 668135)
+ (-1462 . 668017) (-1463 . 667945) (-1464 . 667838) (-1465 . 667719)
+ (-1466 . 667059) (-1467 . 666913) (-1468 . 666766) (-1469 . 666551)
+ (-1470 . 666427) (-1471 . 665918) (-1472 . 665819) (-1473 . 665738)
+ (-1474 . 665686) (-1475 . 665542) (-1476 . 665485) (-1477 . 665457)
+ (-1478 . 660140) (-1479 . 660047) (-1480 . 659885) (-1481 . 659671)
+ (-1482 . 659452) (-1483 . 659289) (-1484 . 658843) (-1485 . 658741)
+ (-1486 . 658611) (-1487 . 658301) (-1488 . 658163) (-1489 . 658041)
+ (-1490 . 657978) (-1491 . 657926) (-1492 . 657852) (-1493 . 657757)
+ (-1494 . 657663) (-1495 . 657610) (-1496 . 657555) (-1497 . 657460)
+ (-1498 . 657375) (-1499 . 657290) (-1500 . 657165) (-1501 . 657095)
+ (-1502 . 657038) (-1503 . 656901) (-1504 . 656841) (-1505 . 656664)
+ (-1506 . 656479) (-1507 . 656396) (-1508 . 656144) (-1509 . 656078)
+ (-1510 . 655967) (-1511 . 655898) (-1512 . 655840) (-1513 . 655570)
+ (-1514 . 655410) (-1515 . 655229) (-1516 . 655020) (-1517 . 654385)
+ (-1518 . 654301) (-1519 . 654148) (-1520 . 653951) (-1521 . 653692)
+ (-1522 . 653557) (-1523 . 653420) (-1524 . 653296) (-1525 . 652958)
+ (-1526 . 652817) (-1527 . 652680) (-1528 . 652569) (-1529 . 652433)
+ (-1530 . 652202) (-1531 . 651971) (-1532 . 651876) (-1533 . 651659)
+ (-1534 . 651590) (-1535 . 651430) (-1536 . 651277) (-1537 . 651061)
+ (-1538 . 650982) (-1539 . 650861) (-1540 . 650795) (-1541 . 650686)
+ (-1542 . 650575) (-1543 . 650460) (-1544 . 649887) (-1545 . 649794)
+ (-1546 . 649584) (-1547 . 649313) (-1548 . 649113) (-1549 . 648810)
+ (-1550 . 648723) (-1551 . 648480) (-1552 . 648293) (-1553 . 648071)
+ (-1554 . 648013) (-1555 . 647958) (-1556 . 647905) (-1557 . 647793)
+ (-1558 . 647670) (-1559 . 647507) (-1560 . 647476) (-1561 . 647412)
+ (-1562 . 647144) (-1563 . 647009) (-1564 . 646887) (-1565 . 646815)
+ (-1566 . 646641) (-1567 . 646575) (-1568 . 646448) (-1569 . 646396)
+ (-1570 . 646311) (-1571 . 646230) (-1572 . 646039) (-1573 . 645953)
+ (-1574 . 645802) (-1575 . 645733) (-1576 . 645642) (-1577 . 645391)
+ (-1578 . 645335) (-1579 . 644841) (-1580 . 644770) (-1581 . 644644)
+ (-1582 . 644196) (-1583 . 644089) (-1584 . 643819) (-1585 . 643540)
+ (-1586 . 643489) (-1587 . 643183) (-1588 . 643118) (-1589 . 642972)
+ (-1590 . 638812) (-1591 . 638492) (-1592 . 638397) (-1593 . 638238)
+ (-1594 . 638126) (-1595 . 637989) (-1596 . 637924) (-1597 . 637837)
+ (-1598 . 637782) (-1599 . 637589) (-1600 . 637482) (-1601 . 637141)
+ (-1602 . 637021) (-1603 . 636703) (-1604 . 636510) (-1605 . 636256)
+ (-1606 . 636151) (-1607 . 635978) (-1608 . 635476) (-1609 . 635317)
+ (-1610 . 635179) (-1611 . 635062) (-1612 . 634966) (-1613 . 634855)
+ (-1614 . 634740) (-1615 . 634039) (-1616 . 633786) (-1617 . 633607)
+ (-1618 . 633452) (-1619 . 633206) (-1620 . 633099) (-1621 . 632977)
+ (-1622 . 632911) (-1623 . 632824) (-1624 . 632737) (-1625 . 632636)
+ (-1626 . 632321) (-1627 . 632241) (-1628 . 632002) (-1629 . 631925)
+ (-1630 . 631647) (-1631 . 631546) (-1632 . 631487) (-1633 . 631413)
+ (-1634 . 631339) (-1635 . 631238) (-1636 . 631148) (-1637 . 630816)
+ (-1638 . 630739) (-1639 . 630666) (-1640 . 630537) (-1641 . 630454)
+ (-1642 . 630138) (-1643 . 628563) (-1644 . 628511) (-1645 . 628407)
+ (-1646 . 628290) (-1647 . 628112) (-1648 . 628024) (-1649 . 627945)
+ (-1650 . 627868) (-1651 . 627769) (-1652 . 627649) (-1653 . 627553)
+ (-1654 . 627482) (-1655 . 627433) (-1656 . 627206) (-1657 . 627047)
+ (-1658 . 626976) (-1659 . 626873) (-1660 . 626385) (-1661 . 625201)
+ (-1662 . 624819) (-1663 . 623814) (-1664 . 623426) (-1665 . 623324)
+ (-1666 . 623202) (-1667 . 622870) (-1668 . 622789) (-1669 . 622582)
+ (-1670 . 622431) (-1671 . 621952) (-1672 . 620774) (-1673 . 620645)
+ (-1674 . 620478) (-1675 . 620425) (-1676 . 619889) (-1677 . 619691)
+ (-1678 . 619551) (-1679 . 619424) (-1680 . 619168) (-1681 . 619080)
+ (-1682 . 616882) (-1683 . 616814) (-1684 . 616647) (-1685 . 615645)
+ (-1686 . 615560) (-1687 . 615374) (-1688 . 615280) (-1689 . 614805)
+ (-1690 . 614722) (-1691 . 614670) (-1692 . 613423) (-1693 . 613315)
+ (-1694 . 613214) (-1695 . 613162) (-1696 . 612676) (-1697 . 612648)
+ (-1698 . 612587) (-1699 . 611876) (-1700 . 611133) (-1701 . 610965)
+ (-1702 . 610912) (-1703 . 610841) (-1704 . 610769) (-1705 . 610702)
+ (-1706 . 610586) (-1707 . 610512) (-1708 . 610327) (-1709 . 610276)
+ (-1710 . 609676) (-1711 . 609465) (-1712 . 609263) (-1713 . 608932)
+ (-1714 . 608791) (-1715 . 608707) (-1716 . 608602) (-1717 . 608470)
+ (-1718 . 608310) (-1719 . 608076) (-1720 . 607917) (-1721 . 607416)
+ (-1722 . 607328) (-1723 . 607228) (-1724 . 606938) (-1725 . 606888)
+ (-1726 . 606810) (-1727 . 606730) (-1728 . 606511) (-1729 . 606264)
+ (-1730 . 606214) (-1731 . 606058) (-1732 . 605973) (-1733 . 605902)
+ (-1734 . 605829) (-1735 . 605652) (-1736 . 605403) (-1737 . 605337)
+ (-1738 . 604954) (-1739 . 604850) (-1740 . 604784) (-1741 . 604640)
+ (-1742 . 604288) (-1743 . 604172) (-1744 . 604108) (-1745 . 603554)
+ (-1746 . 603483) (-1747 . 603215) (-1748 . 603153) (-1749 . 602914)
+ (-1750 . 602805) (-1751 . 602728) (-1752 . 602553) (-1753 . 602438)
+ (-1754 . 602098) (-1755 . 601993) (-1756 . 601870) (-1757 . 601183)
+ (-1758 . 601085) (-1759 . 600988) (-1760 . 599738) (-1761 . 599644)
+ (-1762 . 599375) (-1763 . 599320) (-1764 . 598980) (-1765 . 598850)
+ (-1766 . 598753) (-1767 . 598687) (-1768 . 598461) (-1769 . 598275)
+ (-1770 . 598028) (-1771 . 596992) (-1772 . 596961) (-1773 . 596853)
+ (-1774 . 596749) (-1775 . 596639) (-1776 . 595574) (-1777 . 594906)
+ (-1778 . 594850) (-1779 . 594753) (-1780 . 594460) (-1781 . 594130)
+ (-1782 . 594050) (-1783 . 593998) (-1784 . 593819) (-1785 . 593613)
+ (-1786 . 593433) (-1787 . 593362) (-1788 . 593259) (-1789 . 593000)
+ (-1790 . 592913) (-1791 . 592779) (-1792 . 592399) (-1793 . 592289)
+ (-1794 . 591685) (-1795 . 591567) (-1796 . 591467) (-1797 . 591439)
+ (-1798 . 591344) (-1799 . 591247) (-1800 . 591092) (-1801 . 591018)
+ (-1802 . 590703) (-1803 . 590539) (-1804 . 590377) (-1805 . 590343)
+ (-1806 . 590194) (-1807 . 590005) (-1808 . 589901) (-1809 . 589745)
+ (-1810 . 589693) (-1811 . 589463) (-1812 . 589304) (-1813 . 589099)
+ (-1814 . 588978) (-1815 . 588762) (-1816 . 588693) (-1817 . 588621)
+ (-1818 . 588514) (-1819 . 588459) (-1820 . 588407) (-1821 . 588310)
+ (-1822 . 588223) (-1823 . 587259) (-1824 . 587174) (-1825 . 586797)
+ (-1826 . 586763) (-1827 . 586662) (-1828 . 586550) (-1829 . 586274)
+ (-1830 . 586116) (-1831 . 585541) (-1832 . 585154) (-1833 . 585030)
+ (-1834 . 584901) (-1835 . 584845) (-1836 . 584728) (-1837 . 584643)
+ (-1838 . 584335) (-1839 . 583761) (-1840 . 583650) (-1841 . 583510)
+ (-1842 . 583455) (-1843 . 583284) (-1844 . 583228) (-1845 . 583124)
+ (-1846 . 583052) (-1847 . 582773) (-1848 . 582478) (-1849 . 581904)
+ (-1850 . 581608) (-1851 . 581549) (-1852 . 581420) (-1853 . 581140)
+ (-1854 . 581057) (-1855 . 580899) (-1856 . 580325) (-1857 . 580242)
+ (-1858 . 580190) (-1859 . 580123) (-1860 . 579485) (-1861 . 579295)
+ (-1862 . 578970) (-1863 . 578852) (-1864 . 578278) (-1865 . 578184)
+ (-1866 . 577993) (-1867 . 577920) (-1868 . 577864) (-1869 . 577631)
+ (-1870 . 577524) (-1871 . 577430) (-1872 . 577285) (-1873 . 576711)
+ (-1874 . 576498) (-1875 . 576434) (-1876 . 576354) (-1877 . 576301)
+ (-1878 . 576195) (-1879 . 576086) (-1880 . 575989) (-1881 . 575845)
+ (-1882 . 575700) (-1883 . 575498) (-1884 . 575386) (-1885 . 575333)
+ (-1886 . 574335) (-1887 . 574161) (-1888 . 574092) (-1889 . 573939)
+ (-1890 . 573800) (-1891 . 573687) (-1892 . 573528) (-1893 . 572905)
+ (-1894 . 572797) (-1895 . 572744) (-1896 . 572692) (-1897 . 572449)
+ (-1898 . 572282) (-1899 . 571873) (-1900 . 571594) (-1901 . 571517)
+ (-1902 . 571489) (-1903 . 571321) (-1904 . 571120) (-1905 . 571026)
+ (-1906 . 570888) (-1907 . 570836) (-1908 . 570472) (-1909 . 569981)
+ (-1910 . 569881) (-1911 . 569828) (-1912 . 569713) (-1913 . 569570)
+ (-1914 . 569336) (-1915 . 569123) (-1916 . 568980) (-1917 . 568883)
+ (-1918 . 568810) (-1919 . 568205) (-1920 . 568105) (-1921 . 567919)
+ (-1922 . 567826) (-1923 . 567466) (-1924 . 567437) (-1925 . 567193)
+ (-1926 . 566983) (-1927 . 566748) (-1928 . 566389) (-1929 . 566061)
+ (-1930 . 566002) (-1931 . 565589) (-1932 . 565480) (-1933 . 565263)
+ (-1934 . 565173) (-1935 . 564997) (-1936 . 564705) (-1937 . 564638)
+ (-1938 . 564152) (-1939 . 563928) (-1940 . 563845) (-1941 . 563761)
+ (-1942 . 563706) (-1943 . 563675) (-1944 . 563358) (-1945 . 562933)
+ (-1946 . 562825) (-1947 . 562704) (-1948 . 562575) (-1949 . 562541)
+ (-1950 . 562411) (-1951 . 562383) (-1952 . 562228) (-1953 . 561736)
+ (-1954 . 561389) (-1955 . 561337) (-1956 . 561170) (-1957 . 561047)
+ (-1958 . 559892) (-1959 . 559571) (-1960 . 559406) (-1961 . 559328)
+ (-1962 . 559157) (-1963 . 559108) (-1964 . 559048) (-1965 . 558896)
+ (-1966 . 558813) (-1967 . 558508) (-1968 . 558474) (-1969 . 558356)
+ (-1970 . 558271) (-1971 . 558164) (-1972 . 557956) (-1973 . 556414)
+ (-1974 . 556352) (-1975 . 556267) (-1976 . 556169) (-1977 . 556084)
+ (-1978 . 556014) (-1979 . 555849) (-1980 . 555521) (-1981 . 555470)
+ (-1982 . 555328) (-1983 . 555149) (-1984 . 554311) (-1985 . 554205)
+ (-1986 . 554123) (-1987 . 554004) (-1988 . 553970) (-1989 . 553852)
+ (-1990 . 553753) (-1991 . 553668) (-1992 . 553551) (-1993 . 553214)
+ (-1994 . 553118) (-1995 . 553035) (-1996 . 552850) (-1997 . 552711)
+ (-1998 . 552263) (-1999 . 552164) (-2000 . 552006) (-2001 . 551936)
+ (-2002 . 551599) (-2003 . 551526) (-2004 . 551473) (-2005 . 551269)
+ (-2006 . 545763) (-2007 . 545393) (-2008 . 545240) (-2009 . 545184)
+ (-2010 . 544801) (-2011 . 544551) (-2012 . 544235) (-2013 . 544185)
+ (-2014 . 544056) (-2015 . 543896) (-2016 . 543508) (-2017 . 543235)
+ (-2018 . 543132) (-2019 . 541952) (-2020 . 541849) (-2021 . 541585)
+ (-2022 . 541354) (-2023 . 541249) (-2024 . 540178) (-2025 . 539725)
+ (-2026 . 539638) (-2027 . 539564) (-2028 . 539511) (-2029 . 539362)
+ (-2030 . 539109) (-2031 . 539035) (-2032 . 538969) (-2033 . 538622)
+ (-2034 . 538497) (-2035 . 538113) (-2036 . 538027) (-2037 . 537990)
+ (-2038 . 537661) (-2039 . 537418) (-2040 . 537253) (-2041 . 537173)
+ (-2042 . 537011) (-2043 . 536876) (-2044 . 536746) (-2045 . 536603)
+ (-2046 . 536548) (-2047 . 536439) (-2048 . 535685) (-2049 . 535629)
+ (-2050 . 535110) (-2051 . 534919) (-2052 . 534801) (-2053 . 534727)
+ (-2054 . 534469) (-2055 . 533797) (-2056 . 533659) (-2057 . 533314)
+ (-2058 . 533025) (-2059 . 532914) (-2060 . 532862) (-2061 . 532650)
+ (-2062 . 532130) (-2063 . 532060) (-2064 . 531915) (-2065 . 531861)
+ (-2066 . 531802) (-2067 . 531709) (-2068 . 531350) (-2069 . 531269)
+ (-2070 . 530860) (-2071 . 530641) (-2072 . 530460) (-2073 . 530407)
+ (-2074 . 530312) (-2075 . 530260) (-2076 . 530062) (-2077 . 528879)
+ (-2078 . 528529) (-2079 . 528015) (-2080 . 527287) (-2081 . 527089)
+ (-2082 . 526909) (-2083 . 526747) (-2084 . 526673) (-2085 . 526529)
+ (-2086 . 526237) (-2087 . 526093) (-2088 . 526040) (-2089 . 525925)
+ (-2090 . 525826) (-2091 . 525011) (-2092 . 524805) (-2093 . 524274)
+ (-2094 . 524140) (-2095 . 524045) (-2096 . 523376) (-2097 . 523324)
+ (-2098 . 523246) (-2099 . 523153) (-2100 . 523034) (-2101 . 522737)
+ (-2102 . 522559) (-2103 . 522461) (-2104 . 522412) (-2105 . 522346)
+ (-2106 . 521462) (-2107 . 521377) (-2108 . 521264) (-2109 . 520961)
+ (-2110 . 520887) (-2111 . 520782) (-2112 . 520753) (-2113 . 520331)
+ (-2114 . 520162) (-2115 . 519709) (-2116 . 519577) (-2117 . 519421)
+ (-2118 . 519137) (-2119 . 519042) (-2120 . 518694) (-2121 . 518588)
+ (-2122 . 518493) (-2123 . 518440) (-2124 . 518115) (-2125 . 518037)
+ (-2126 . 517980) (-2127 . 517862) (-2128 . 517743) (-2129 . 517677)
+ (-2130 . 517579) (-2131 . 517203) (-2132 . 515485) (-2133 . 515378)
+ (-2134 . 515311) (-2135 . 515201) (-2136 . 514771) (-2137 . 514598)
+ (-2138 . 514152) (-2139 . 514099) (-2140 . 514036) (-2141 . 513936)
+ (-2142 . 513090) (-2143 . 512981) (-2144 . 512548) (-2145 . 512435)
+ (-2146 . 512222) (-2147 . 512039) (-2148 . 511857) (-2149 . 511753)
+ (-2150 . 511657) (-2151 . 511326) (-2152 . 511255) (-2153 . 507645)
+ (-2154 . 507519) (-2155 . 507400) (-2156 . 507315) (-2157 . 507124)
+ (-2158 . 506948) (-2159 . 506648) (-2160 . 505483) (-2161 . 505345)
+ (-2162 . 505236) (-2163 . 505109) (-2164 . 505032) (-2165 . 504958)
+ (-2166 . 504873) (-2167 . 504731) (-2168 . 504344) (-2169 . 504292)
+ (-2170 . 504182) (-2171 . 504112) (-2172 . 504014) (-2173 . 503959)
+ (-2174 . 503899) (-2175 . 503782) (-2176 . 503729) (-2177 . 503588)
+ (-2178 . 503536) (-2179 . 503446) (-2180 . 502943) (-2181 . 502683)
+ (-2182 . 502310) (-2183 . 502022) (-2184 . 501911) (-2185 . 501874)
+ (-2186 . 501540) (-2187 . 501440) (-2188 . 501294) (-2189 . 501211)
+ (-2190 . 501071) (-2191 . 501001) (-2192 . 500760) (-2193 . 500682)
+ (-2194 . 500616) (-2195 . 500429) (-2196 . 499822) (-2197 . 499678)
+ (-2198 . 499595) (-2199 . 499522) (-2200 . 499391) (-2201 . 499296)
+ (-2202 . 498850) (-2203 . 498517) (-2204 . 498279) (-2205 . 498207)
+ (-2206 . 497882) (-2207 . 497630) (-2208 . 497386) (-2209 . 497290)
+ (-2210 . 497136) (-2211 . 497034) (-2212 . 496939) (-2213 . 496815)
+ (-2214 . 496636) (-2215 . 496304) (-2216 . 496174) (-2217 . 473305)
+ (-2218 . 473150) (-2219 . 473079) (-2220 . 472651) (-2221 . 472596)
+ (-2222 . 472452) (-2223 . 472202) (-2224 . 472055) (-2225 . 471955)
+ (-2226 . 471409) (-2227 . 468657) (-2228 . 468514) (-2229 . 468461)
+ (-2230 . 468150) (-2231 . 467813) (-2232 . 467725) (-2233 . 467645)
+ (-2234 . 467513) (-2235 . 467306) (-2236 . 467272) (-2237 . 466960)
+ (-2238 . 466873) (-2239 . 466807) (-2240 . 466752) (-2241 . 466654)
+ (-2242 . 466586) (-2243 . 466513) (-2244 . 466373) (-2245 . 465986)
+ (-2246 . 465826) (-2247 . 465746) (-2248 . 465503) (-2249 . 465348)
+ (-2250 . 465275) (-2251 . 464323) (-2252 . 463494) (-2253 . 463074)
+ (-2254 . 462965) (-2255 . 462664) (-2256 . 462567) (-2257 . 462342)
+ (-2258 . 462265) (-2259 . 462168) (-2260 . 462047) (-2261 . 461890)
+ (-2262 . 461730) (-2263 . 461525) (-2264 . 461448) (-2265 . 461404)
+ (-2266 . 461337) (-2267 . 461250) (-2268 . 461165) (-2269 . 461056)
+ (-2270 . 460908) (-2271 . 460782) (-2272 . 460596) (-2273 . 460568)
+ (-2274 . 460231) (-2275 . 460144) (-2276 . 459289) (-2277 . 459078)
+ (-2278 . 458801) (-2279 . 458509) (-2280 . 457199) (-2281 . 457096)
+ (-2282 . 457067) (-2283 . 457038) (-2284 . 456974) (-2285 . 456906)
+ (-2286 . 456772) (-2287 . 456614) (-2288 . 456264) (-2289 . 456101)
+ (-2290 . 456017) (-2291 . 455909) (-2292 . 455837) (-2293 . 455785)
+ (-2294 . 455692) (-2295 . 455585) (-2296 . 455533) (-2297 . 455459)
+ (-2298 . 455428) (-2299 . 455379) (-2300 . 455295) (-2301 . 455167)
+ (-2302 . 454965) (-2303 . 454868) (-2304 . 454802) (-2305 . 454750)
+ (-2306 . 454648) (-2307 . 454596) (-2308 . 453496) (-2309 . 453433)
+ (-2310 . 453185) (-2311 . 453131) (-2312 . 453081) (-2313 . 452864)
+ (-2314 . 452695) (-2315 . 452622) (-2316 . 452549) (-2317 . 452475)
+ (-2318 . 452213) (-2319 . 452043) (-2320 . 451972) (-2321 . 451833)
+ (-2322 . 451730) (-2323 . 451369) (-2324 . 451284) (-2325 . 451158)
+ (-2326 . 451071) (-2327 . 449502) (-2328 . 449384) (-2329 . 449301)
+ (-2330 . 445313) (-2331 . 444846) (-2332 . 444753) (-2333 . 444656)
+ (-2334 . 444546) (-2335 . 444185) (-2336 . 443606) (-2337 . 442994)
+ (-2338 . 442966) (-2339 . 442900) (-2340 . 442793) (-2341 . 442686)
+ (-2342 . 442063) (-2343 . 441980) (-2344 . 441952) (-2345 . 441748)
+ (-2346 . 441610) (-2347 . 441520) (-2348 . 441452) (-2349 . 441337)
+ (-2350 . 441219) (-2351 . 441101) (-2352 . 440675) (-2353 . 440623)
+ (-2354 . 440252) (-2355 . 440224) (-2356 . 440196) (-2357 . 439086)
+ (-2358 . 438983) (-2359 . 438881) (-2360 . 438729) (-2361 . 438571)
+ (-2362 . 438378) (-2363 . 438213) (-2364 . 438147) (-2365 . 438085)
+ (-2366 . 437967) (-2367 . 437820) (-2368 . 437696) (-2369 . 437610)
+ (-2370 . 437465) (-2371 . 437388) (-2372 . 437236) (-2373 . 437138)
+ (-2374 . 436486) (-2375 . 436028) (-2376 . 435802) (-2377 . 435729)
+ (-2378 . 435663) (-2379 . 435564) (-2380 . 435504) (-2381 . 435409)
+ (-2382 . 435191) (-2383 . 435163) (-2384 . 434865) (-2385 . 434765)
+ (-2386 . 434653) (-2387 . 434566) (-2388 . 434500) (-2389 . 434378)
+ (-2390 . 434087) (-2391 . 433897) (-2392 . 433790) (-2393 . 433732)
+ (-2394 . 433644) (-2395 . 433425) (-2396 . 433284) (-2397 . 433057)
+ (-2398 . 432895) (-2399 . 432455) (-2400 . 432384) (-2401 . 432329)
+ (-2402 . 432234) (-2403 . 432178) (-2404 . 431732) (-2405 . 431648)
+ (-2406 . 431425) (-2407 . 431285) (-2408 . 431174) (-2409 . 431067)
+ (-2410 . 431015) (-2411 . 430783) (-2412 . 430675) (-2413 . 430417)
+ (-2414 . 430389) (-2415 . 430167) (-2416 . 429409) (-2417 . 429359)
+ (-2418 . 429280) (-2419 . 428983) (-2420 . 428825) (-2421 . 428637)
+ (-2422 . 428442) (-2423 . 427822) (-2424 . 427727) (-2425 . 427604)
+ (-2426 . 427330) (-2427 . 427091) (-2428 . 427020) (-2429 . 426940)
+ (-2430 . 426883) (-2431 . 426742) (-2432 . 426633) (-2433 . 426447)
+ (-2434 . 426381) (-2435 . 426082) (-2436 . 426010) (-2437 . 424709)
+ (-2438 . 424616) (-2439 . 424208) (-2440 . 424064) (-2441 . 423965)
+ (-2442 . 423787) (-2443 . 423617) (-2444 . 423504) (-2445 . 423437)
+ (-2446 . 423363) (-2447 . 423233) (-2448 . 423160) (-2449 . 423058)
+ (-2450 . 422978) (-2451 . 422904) (-2452 . 422801) (-2453 . 422460)
+ (-2454 . 422368) (-2455 . 422316) (-2456 . 422226) (-2457 . 421961)
+ (-2458 . 421540) (-2459 . 421432) (-2460 . 421010) (-2461 . 420928)
+ (-2462 . 420873) (-2463 . 420547) (-2464 . 420413) (-2465 . 420188)
+ (-2466 . 419977) (-2467 . 419890) (-2468 . 419781) (-2469 . 419710)
+ (-2470 . 419625) (-2471 . 419538) (-2472 . 419364) (-2473 . 419247)
+ (-2474 . 419138) (-2475 . 419012) (-2476 . 418438) (-2477 . 418153)
+ (-2478 . 418059) (-2479 . 417982) (-2480 . 417912) (-2481 . 417766)
+ (-2482 . 417732) (-2483 . 417493) (-2484 . 417242) (-2485 . 417044)
+ (-2486 . 416914) (-2487 . 414814) (-2488 . 414780) (-2489 . 414472)
+ (-2490 . 414356) (-2491 . 414166) (-2492 . 414064) (-2493 . 414015)
+ (-2494 . 413636) (-2495 . 413429) (-2496 . 413138) (-2497 . 413015)
+ (-2498 . 412830) (-2499 . 412686) (-2500 . 412164) (-2501 . 412090)
+ (-2502 . 411971) (-2503 . 411763) (-2504 . 411708) (-2505 . 411642)
+ (-2506 . 411243) (-2507 . 411056) (-2508 . 410616) (-2509 . 410564)
+ (-2510 . 408612) (-2511 . 408483) (-2512 . 408371) (-2513 . 408160)
+ (-2514 . 408108) (-2515 . 407892) (-2516 . 407679) (-2517 . 407583)
+ (-2518 . 407448) (-2519 . 406850) (-2520 . 406720) (-2521 . 406562)
+ (-2522 . 406449) (-2523 . 406177) (-2524 . 405897) (-2525 . 405827)
+ (-2526 . 405775) (-2527 . 405685) (-2528 . 405578) (-2529 . 405499)
+ (-2530 . 405281) (-2531 . 405231) (-2532 . 405087) (-2533 . 404639)
+ (-2534 . 404440) (-2535 . 404313) (-2536 . 404251) (-2537 . 404198)
+ (-2538 . 404119) (-2539 . 403974) (-2540 . 403903) (-2541 . 403714)
+ (-2542 . 403631) (-2543 . 403432) (-2544 . 403335) (-2545 . 403307)
+ (-2546 . 402721) (-2547 . 402654) (-2548 . 402580) (-2549 . 401765)
+ (-2550 . 401214) (-2551 . 401069) (-2552 . 400932) (-2553 . 400904)
+ (-2554 . 400813) (-2555 . 400568) (-2556 . 400344) (-2557 . 400245)
+ (-2558 . 399949) (-2559 . 399801) (-2560 . 399649) (-2561 . 399461)
+ (-2562 . 398866) (-2563 . 398755) (-2564 . 398687) (-2565 . 398518)
+ (-2566 . 398464) (-2567 . 397595) (-2568 . 397278) (-2569 . 397198)
+ (-2570 . 397095) (-2571 . 397008) (-2572 . 396882) (-2573 . 396768)
+ (-2574 . 396652) (-2575 . 396520) (-2576 . 396336) (-2577 . 396234)
+ (-2578 . 396181) (-2579 . 396022) (-2580 . 395887) (-2581 . 395791)
+ (-2582 . 395711) (-2583 . 395520) (-2584 . 395461) (-2585 . 395406)
+ (-2586 . 395307) (-2587 . 395255) (-2588 . 394191) (-2589 . 394070)
+ (-2590 . 393814) (-2591 . 393661) (-2592 . 393564) (-2593 . 393428)
+ (-2594 . 393344) (-2595 . 393100) (-2596 . 392977) (-2597 . 392811)
+ (-2598 . 392716) (-2599 . 392501) (-2600 . 392155) (-2601 . 391949)
+ (-2602 . 391859) (-2603 . 391774) (-2604 . 391530) (-2605 . 391456)
+ (-2606 . 391403) (-2607 . 391354) (-2608 . 391326) (-2609 . 391197)
+ (-2610 . 391059) (-2611 . 384105) (-2612 . 383939) (-2613 . 383845)
+ (-2614 . 383746) (-2615 . 383518) (-2616 . 383125) (-2617 . 383000)
+ (-2618 . 382785) (-2619 . 382705) (-2620 . 382546) (-2621 . 382355)
+ (-2622 . 382295) (-2623 . 382022) (-2624 . 381967) (-2625 . 381840)
+ (-2626 . 381647) (-2627 . 381554) (-2628 . 381496) (-2629 . 381381)
+ (-2630 . 381217) (-2631 . 381133) (-2632 . 381000) (-2633 . 380818)
+ (-2634 . 380633) (-2635 . 380383) (-2636 . 380188) (-2637 . 379990)
+ (-2638 . 379906) (-2639 . 379814) (-2640 . 379485) (-2641 . 379356)
+ (-2642 . 379290) (-2643 . 379087) (-2644 . 378933) (-2645 . 377848)
+ (-2646 . 377761) (-2647 . 377416) (-2648 . 377345) (-2649 . 377136)
+ (-2650 . 377036) (-2651 . 377002) (-2652 . 376895) (-2653 . 376839)
+ (-2654 . 376599) (-2655 . 376530) (-2656 . 376431) (-2657 . 376365)
+ (-2658 . 376313) (-2659 . 376254) (-2660 . 376073) (-2661 . 375992)
+ (-2662 . 375872) (-2663 . 375785) (-2664 . 375599) (-2665 . 375287)
+ (-2666 . 375105) (-2667 . 374109) (-2668 . 374057) (-2669 . 373936)
+ (-2670 . 373908) (-2671 . 373729) (-2672 . 373397) (-2673 . 373296)
+ (-2674 . 373222) (-2675 . 373170) (-2676 . 373096) (-2677 . 372978)
+ (-2678 . 372323) (-2679 . 372235) (-2680 . 372045) (-2681 . 372017)
+ (-2682 . 371531) (-2683 . 366432) (-2684 . 366328) (-2685 . 366257)
+ (-2686 . 365963) (-2687 . 365904) (-2688 . 365782) (-2689 . 365703)
+ (-2690 . 365453) (-2691 . 365128) (-2692 . 364924) (-2693 . 364811)
+ (-2694 . 364740) (-2695 . 364677) (-2696 . 364540) (-2697 . 364426)
+ (-2698 . 364318) (-2699 . 364150) (-2700 . 363931) (-2701 . 363778)
+ (-2702 . 363622) (-2703 . 363524) (-2704 . 363387) (-2705 . 363283)
+ (-2706 . 363112) (-2707 . 362781) (-2708 . 362607) (-2709 . 362505)
+ (-2710 . 362425) (-2711 . 362282) (-2712 . 362230) (-2713 . 362153)
+ (-2714 . 362012) (-2715 . 361942) (-2716 . 361817) (-2717 . 361748)
+ (-2718 . 361384) (-2719 . 361277) (-2720 . 360762) (-2721 . 360641)
+ (-2722 . 360233) (-2723 . 360162) (-2724 . 360088) (-2725 . 359699)
+ (-2726 . 359628) (-2727 . 359341) (-2728 . 359118) (-2729 . 359057)
+ (-2730 . 358978) (-2731 . 356826) (-2732 . 356748) (-2733 . 356653)
+ (-2734 . 356482) (-2735 . 356311) (-2736 . 356277) (-2737 . 356161)
+ (-2738 . 356019) (-2739 . 355621) (-2740 . 355428) (-2741 . 354512)
+ (-2742 . 353656) (-2743 . 353456) (-2744 . 353343) (-2745 . 353219)
+ (-2746 . 353042) (-2747 . 352769) (-2748 . 352665) (-2749 . 352582)
+ (-2750 . 352482) (-2751 . 352381) (-2752 . 352192) (-2753 . 352121)
+ (-2754 . 351964) (-2755 . 351912) (-2756 . 351773) (-2757 . 351651)
+ (-2758 . 351402) (-2759 . 351353) (-2760 . 350746) (-2761 . 350619)
+ (-2762 . 350496) (-2763 . 350348) (-2764 . 350239) (-2765 . 349437)
+ (-2766 . 349354) (-2767 . 349181) (-2768 . 349044) (-2769 . 348952)
+ (-2770 . 348870) (-2771 . 348785) (-2772 . 348715) (-2773 . 348589)
+ (-2774 . 348046) (-2775 . 347945) (-2776 . 347721) (-2777 . 347622)
+ (-2778 . 347441) (-2779 . 347358) (-2780 . 347169) (-2781 . 346889)
+ (-2782 . 346782) (-2783 . 346618) (-2784 . 346540) (-2785 . 346421)
+ (-2786 . 345838) (-2787 . 345786) (-2788 . 345131) (-2789 . 345037)
+ (-2790 . 344930) (-2791 . 344736) (-2792 . 344270) (-2793 . 344103)
+ (-2794 . 343811) (-2795 . 343713) (-2796 . 343519) (-2797 . 343276)
+ (-2798 . 343123) (-2799 . 343046) (-2800 . 342558) (-2801 . 342480)
+ (-2802 . 342336) (-2803 . 341925) (-2804 . 341854) (-2805 . 341799)
+ (-2806 . 341591) (-2807 . 341513) (-2808 . 341447) (-2809 . 341346)
+ (-2810 . 340537) (-2811 . 340454) (-2812 . 340371) (-2813 . 340208)
+ (-2814 . 340046) (-2815 . 339880) (-2816 . 339713) (-2817 . 339581)
+ (-2818 . 339425) (-2819 . 338541) (-2820 . 338507) (-2821 . 338366)
+ (-2822 . 338317) (-2823 . 338211) (-2824 . 337989) (-2825 . 337902)
+ (-2826 . 337465) (-2827 . 337370) (-2828 . 337338) (-2829 . 337286)
+ (-2830 . 337212) (-2831 . 337160) (-2832 . 337030) (-2833 . 336807)
+ (-2834 . 336733) (-2835 . 336527) (-2836 . 336474) (-2837 . 336394)
+ (-2838 . 336034) (-2839 . 335284) (-2840 . 335221) (-2841 . 335169)
+ (-2842 . 334898) (-2843 . 334556) (-2844 . 334483) (-2845 . 334331)
+ (-2846 . 334035) (-2847 . 333964) (-2848 . 333794) (-2849 . 333685)
+ (-2850 . 333560) (-2851 . 333507) (-2852 . 333276) (-2853 . 333105)
+ (-2854 . 332514) (-2855 . 332104) (-2856 . 331980) (-2857 . 331851)
+ (-2858 . 331745) (-2859 . 331507) (-2860 . 331376) (-2861 . 331135)
+ (-2862 . 330789) (-2863 . 330736) (-2864 . 330627) (-2865 . 330256)
+ (-2866 . 330112) (-2867 . 329959) (-2868 . 329612) (-2869 . 329306)
+ (-2870 . 329233) (-2871 . 329156) (-2872 . 329011) (-2873 . 328926)
+ (-2874 . 328874) (-2875 . 328822) (-2876 . 328766) (-2877 . 328680)
+ (-2878 . 328420) (-2879 . 328300) (-2880 . 328156) (-2881 . 328013)
+ (-2882 . 327686) (-2883 . 327095) (-2884 . 327022) (-2885 . 326965)
+ (-2886 . 326911) (-2887 . 326759) (-2888 . 325959) (-2889 . 325903)
+ (-2890 . 325675) (-2891 . 325549) (-2892 . 325493) (-2893 . 325375)
+ (-2894 . 325264) (-2895 . 325014) (-2896 . 324955) (-2897 . 324842)
+ (-2898 . 324588) (-2899 . 324439) (-2900 . 324295) (-2901 . 324215)
+ (-2902 . 323890) (-2903 . 323787) (-2904 . 323707) (-2905 . 322842)
+ (-2906 . 322101) (-2907 . 322024) (-2908 . 321643) (-2909 . 321538)
+ (-2910 . 321510) (-2911 . 321101) (-2912 . 320943) (-2913 . 320878)
+ (-2914 . 320818) (-2915 . 320077) (-2916 . 319850) (-2917 . 319751)
+ (-2918 . 319624) (-2919 . 319275) (-2920 . 319209) (-2921 . 318970)
+ (-2922 . 318885) (-2923 . 318197) (-2924 . 318119) (-2925 . 308589)
+ (-2926 . 308357) (-2927 . 308235) (-2928 . 307659) (-2929 . 307606)
+ (-2930 . 307436) (-2931 . 307063) (-2932 . 306962) (-2933 . 306934)
+ (-2934 . 306900) (-2935 . 306245) (-2936 . 305669) (-2937 . 305368)
+ (-2938 . 305066) (-2939 . 304821) (-2940 . 304766) (-2941 . 304626)
+ (-2942 . 304512) (-2943 . 304374) (-2944 . 304076) (-2945 . 303898)
+ (-2946 . 303322) (-2947 . 302623) (-2948 . 302512) (-2949 . 302268)
+ (-2950 . 302016) (-2951 . 301741) (-2952 . 301645) (-2953 . 300993)
+ (-2954 . 300934) (-2955 . 300831) (-2956 . 300774) (-2957 . 300088)
+ (-2958 . 299987) (-2959 . 299310) (-2960 . 299066) (-2961 . 298622)
+ (-2962 . 298545) (-2963 . 298408) (-2964 . 298172) (-2965 . 298064)
+ (-2966 . 297378) (-2967 . 296093) (-2968 . 295877) (-2969 . 295744)
+ (-2970 . 295691) (-2971 . 295387) (-2972 . 295112) (-2973 . 295028)
+ (-2974 . 294975) (-2975 . 294866) (-2976 . 294117) (-2977 . 294068)
+ (-2978 . 293973) (-2979 . 293863) (-2980 . 293598) (-2981 . 293540)
+ (-2982 . 293463) (-2983 . 293184) (-2984 . 292580) (-2985 . 292445)
+ (-2986 . 292394) (-2987 . 292131) (-2988 . 291752) (-2989 . 291178)
+ (-2990 . 291071) (-2991 . 291010) (-2992 . 290900) (-2993 . 290815)
+ (-2994 . 290762) (-2995 . 290629) (-2996 . 290501) (-2997 . 290204)
+ (-2998 . 290109) (-2999 . 290081) (-3000 . 290015) (-3001 . 289441)
+ (-3002 . 289263) (-3003 . 289192) (-3004 . 288902) (-3005 . 288829)
+ (-3006 . 288485) (-3007 . 288433) (-3008 . 288326) (-3009 . 288227)
+ (-3010 . 288121) (-3011 . 287547) (-3012 . 287440) (-3013 . 287310)
+ (-3014 . 287258) (-3015 . 286746) (-3016 . 286541) (-3017 . 286468)
+ (-3018 . 286313) (-3019 . 286196) (-3020 . 286001) (-3021 . 285896)
+ (-3022 . 285809) (-3023 . 285122) (-3024 . 284743) (-3025 . 284636)
+ (-3026 . 284459) (-3027 . 284317) (-3028 . 284265) (-3029 . 284117)
+ (-3030 . 283964) (-3031 . 283866) (-3032 . 283832) (-3033 . 283780)
+ (-3034 . 283699) (-3035 . 283012) (-3036 . 282953) (-3037 . 282800)
+ (-3038 . 282487) (-3039 . 282346) (-3040 . 282217) (-3041 . 281792)
+ (-3042 . 281723) (-3043 . 281416) (-3044 . 280729) (-3045 . 280476)
+ (-3046 . 280260) (-3047 . 280017) (-3048 . 279833) (-3049 . 279607)
+ (-3050 . 279528) (-3051 . 279252) (-3052 . 279083) (-3053 . 275021)
+ (-3054 . 274446) (-3055 . 274099) (-3056 . 273824) (-3057 . 273607)
+ (-3058 . 273357) (-3059 . 272540) (-3060 . 272019) (-3061 . 271966)
+ (-3062 . 271450) (-3063 . 271384) (-3064 . 271328) (-3065 . 270787)
+ (-3066 . 270212) (-3067 . 270057) (-3068 . 269477) (-3069 . 269365)
+ (-3070 . 269244) (-3071 . 269103) (-3072 . 268948) (-3073 . 267985)
+ (-3074 . 267862) (-3075 . 267765) (-3076 . 267645) (-3077 . 267452)
+ (-3078 . 267394) (-3079 . 267256) (-3080 . 267176) (-3081 . 266987)
+ (-3082 . 266714) (-3083 . 266662) (-3084 . 266580) (-3085 . 266495)
+ (-3086 . 266346) (-3087 . 266231) (-3088 . 266148) (-3089 . 266099)
+ (-3090 . 265897) (-3091 . 263552) (-3092 . 263521) (-3093 . 263436)
+ (-3094 . 262876) (-3095 . 262824) (-3096 . 262457) (-3097 . 262370)
+ (-3098 . 262255) (-3099 . 262186) (-3100 . 262077) (-3101 . 260631)
+ (-3102 . 258869) (-3103 . 258616) (-3104 . 258358) (-3105 . 258217)
+ (-3106 . 257908) (-3107 . 257703) (-3108 . 257211) (-3109 . 257159)
+ (-3110 . 257063) (-3111 . 256906) (-3112 . 256551) (-3113 . 256312)
+ (-3114 . 255950) (-3115 . 255699) (-3116 . 255622) (-3117 . 255480)
+ (-3118 . 255397) (-3119 . 255341) (-3120 . 255240) (-3121 . 255143)
+ (-3122 . 255071) (-3123 . 255000) (-3124 . 254898) (-3125 . 254780)
+ (-3126 . 254632) (-3127 . 254580) (-3128 . 254282) (-3129 . 253805)
+ (-3130 . 253458) (-3131 . 253235) (-3132 . 253094) (-3133 . 251824)
+ (-3134 . 251373) (-3135 . 251342) (-3136 . 251286) (-3137 . 251163)
+ (-3138 . 251060) (-3139 . 250993) (-3140 . 250853) (-3141 . 250701)
+ (-3142 . 250574) (-3143 . 250403) (-3144 . 250296) (-3145 . 250202)
+ (-3146 . 250036) (-3147 . 249974) (-3148 . 249850) (-3149 . 248648)
+ (-3150 . 248596) (-3151 . 248396) (-3152 . 248309) (-3153 . 248257)
+ (-3154 . 248183) (-3155 . 247708) (-3156 . 247680) (-3157 . 247321)
+ (-3158 . 247020) (-3159 . 245166) (-3160 . 244642) (-3161 . 244576)
+ (-3162 . 242748) (-3163 . 242667) (-3164 . 242135) (** . 239058)
+ (-3166 . 238938) (-3167 . 238815) (-3168 . 238616) (-3169 . 238564)
+ (-3170 . 237063) (-3171 . 236969) (-3172 . 236901) (-3173 . 236639)
+ (-3174 . 236605) (-3175 . 236424) (-3176 . 236230) (-3177 . 236094)
+ (-3178 . 234554) (-3179 . 234332) (-3180 . 234218) (-3181 . 234050)
+ (-3182 . 233977) (-3183 . 233824) (-3184 . 233595) (-3185 . 233423)
+ (-3186 . 233270) (-3187 . 233217) (-3188 . 233069) (-3189 . 232578)
+ (-3190 . 232248) (-3191 . 231937) (-3192 . 231501) (-3193 . 230765)
+ (-3194 . 230680) (-3195 . 230610) (-3196 . 230558) (-3197 . 230475)
+ (-3198 . 230317) (-3199 . 230156) (-3200 . 229844) (-3201 . 229773)
+ (-3202 . 229696) (-3203 . 229580) (-3204 . 228816) (-3205 . 228764)
+ (-3206 . 228648) (-3207 . 228522) (-3208 . 228376) (-3209 . 228237)
+ (-3210 . 228143) (-3211 . 228090) (-3212 . 227795) (-3213 . 227396)
+ (-3214 . 227099) (-3215 . 226661) (-3216 . 226023) (-3217 . 225928)
+ (-3218 . 225763) (-3219 . 225627) (-3220 . 225453) (-3221 . 225161)
+ (-3222 . 224427) (-3223 . 224040) (-3224 . 222880) (-3225 . 222283)
+ (-3226 . 222156) (-3227 . 222061) (-3228 . 221975) (-3229 . 221866)
+ (-3230 . 221572) (-3231 . 221463) (-3232 . 221349) (-3233 . 221049)
+ (-3234 . 221021) (-3235 . 220849) (-3236 . 220645) (-3237 . 220566)
+ (-3238 . 220292) (-3239 . 220166) (-3240 . 220107) (-3241 . 218984)
+ (-3242 . 218401) (-3243 . 218308) (-3244 . 218136) (-3245 . 217636)
+ (-3246 . 217264) (-3247 . 217212) (-3248 . 217089) (-3249 . 216945)
+ (-3250 . 216779) (-3251 . 216720) (-3252 . 216529) (-3253 . 216357)
+ (-3254 . 216233) (-3255 . 216066) (-3256 . 215916) (-3257 . 215824)
+ (-3258 . 215678) (-3259 . 215530) (-3260 . 215474) (-3261 . 215369)
+ (-3262 . 215197) (-3263 . 215084) (-3264 . 215003) (-3265 . 214870)
+ (-3266 . 214477) (-3267 . 214396) (-3268 . 214313) (-3269 . 214285)
+ (-3270 . 214189) (-3271 . 214051) (-3272 . 213701) (-3273 . 213642)
+ (-3274 . 213549) (-3275 . 213404) (-3276 . 213351) (-3277 . 213195)
+ (-3278 . 212716) (-3279 . 212551) (-3280 . 212416) (-3281 . 212278)
+ (-3282 . 211917) (-3283 . 211765) (-3284 . 211713) (-3285 . 211643)
+ (-3286 . 211542) (-3287 . 211489) (-3288 . 211100) (-3289 . 211027)
+ (-3290 . 210624) (-3291 . 210488) (-3292 . 210435) (-3293 . 210369)
+ (-3294 . 210274) (-3295 . 210218) (-3296 . 209789) (-3297 . 209592)
+ (-3298 . 209216) (-3299 . 209107) (-3300 . 208963) (-3301 . 208765)
+ (-3302 . 208449) (-3303 . 208376) (-3304 . 208260) (-3305 . 208144)
+ (-3306 . 207765) (-3307 . 207621) (-3308 . 207021) (-3309 . 206760)
+ (-3310 . 206549) (-3311 . 206521) (-3312 . 206334) (-3313 . 206207)
+ (-3314 . 205686) (-3315 . 205574) (-3316 . 205519) (-3317 . 205422)
+ (-3318 . 205369) (-3319 . 205269) (-3320 . 205196) (-3321 . 205143)
+ (-3322 . 205009) (-3323 . 204936) (-3324 . 204849) (-3325 . 204101)
+ (-3326 . 203774) (-3327 . 203667) (-3328 . 203417) (-3329 . 203333)
+ (-3330 . 203203) (-3331 . 203012) (-3332 . 202905) (-3333 . 202831)
+ (-3334 . 202779) (-3335 . 202635) (-3336 . 202457) (-3337 . 202152)
+ (-3338 . 201132) (-3339 . 200674) (-3340 . 200503) (-3341 . 200325)
+ (-3342 . 200227) (-3343 . 200028) (-3344 . 199378) (-3345 . 199255)
+ (-3346 . 199115) (-3347 . 198992) (-3348 . 198819) (-3349 . 198688)
+ (-3350 . 198589) (-3351 . 198510) (-3352 . 198384) (-3353 . 198069)
+ (-3354 . 197435) (-3355 . 196070) (-3356 . 195737) (-3357 . 194527)
+ (-3358 . 194286) (-3359 . 194167) (-3360 . 194064) (-3361 . 193923)
+ (-3362 . 193538) (-3363 . 193395) (-3364 . 192946) (-3365 . 190531)
+ (-3366 . 190409) (-3367 . 190213) (-3368 . 190122) (-3369 . 190007)
+ (-3370 . 189583) (-3371 . 189527) (-3372 . 189490) (-3373 . 189347)
+ (-3374 . 189233) (-3375 . 189087) (-3376 . 188992) (-3377 . 188821)
+ (-3378 . 188657) (-3379 . 188338) (-3380 . 188272) (-3381 . 188198)
+ (-3382 . 188089) (-3383 . 187986) (-3384 . 187903) (-3385 . 187719)
+ (-3386 . 187104) (-3387 . 186225) (-3388 . 186001) (-3389 . 185906)
+ (-3390 . 185776) (-3391 . 185560) (-3392 . 185446) (-3393 . 185362)
+ (-3394 . 185198) (-3395 . 185057) (-3396 . 185005) (-3397 . 184426)
+ (-3398 . 184216) (-3399 . 184091) (-3400 . 183961) (-3401 . 183855)
+ (-3402 . 183312) (-3403 . 183110) (-3404 . 183030) (-3405 . 182776)
+ (-3406 . 182714) (-3407 . 182274) (-3408 . 182222) (-3409 . 182126)
+ (-3410 . 182032) (-3411 . 181977) (-3412 . 181800) (-3413 . 181628)
+ (-3414 . 181569) (-3415 . 181535) (-3416 . 181374) (-3417 . 181288)
+ (-3418 . 181042) (-3419 . 180591) (-3420 . 180355) (-3421 . 179967)
+ (-3422 . 179858) (-3423 . 179438) (-3424 . 179350) (-3425 . 179131)
+ (-3426 . 179057) (-3427 . 178956) (-3428 . 177853) (-3429 . 177710)
+ (-3430 . 177629) (-3431 . 177522) (-3432 . 177439) (-3433 . 177365)
+ (-3434 . 177229) (-3435 . 177132) (-3436 . 177007) (-3437 . 176906)
+ (-3438 . 176773) (-3439 . 176700) (-3440 . 176215) (-3441 . 176159)
+ (-3442 . 175838) (-3443 . 175481) (-3444 . 175447) (-3445 . 175369)
+ (-3446 . 175257) (-3447 . 175126) (-3448 . 174833) (-3449 . 174673)
+ (-3450 . 174423) (-3451 . 174321) (-3452 . 173461) (-3453 . 173309)
+ (-3454 . 173211) (-3455 . 172967) (-3456 . 172431) (-3457 . 172343)
+ (-3458 . 172161) (-3459 . 171756) (-3460 . 171615) (-3461 . 171453)
+ (-3462 . 171329) (-3463 . 171136) (-3464 . 170939) (-3465 . 170752)
+ (-3466 . 170686) (-3467 . 170565) (-3468 . 170458) (-3469 . 170302)
+ (-3470 . 170271) (-3471 . 170157) (-3472 . 170037) (-3473 . 169900)
+ (-3474 . 169517) (-3475 . 169434) (-3476 . 169372) (-3477 . 169270)
+ (-3478 . 169173) (-3479 . 169118) (-3480 . 168943) (-3481 . 168886)
+ (-3482 . 168671) (-3483 . 168562) (-3484 . 168509) (-3485 . 168243)
+ (-3486 . 168130) (-3487 . 168006) (-3488 . 167762) (-3489 . 167634)
+ (-3490 . 167501) (-3491 . 167440) (-3492 . 167409) (-3493 . 167295)
+ (-3494 . 166990) (-3495 . 166802) (-3496 . 166707) (-3497 . 166636)
+ (-3498 . 166392) (-3499 . 166173) (-3500 . 164554) (-3501 . 164523)
+ (-3502 . 164398) (-3503 . 164343) (-3504 . 164213) (-3505 . 163792)
+ (-3506 . 163673) (-3507 . 163322) (-3508 . 163225) (-3509 . 163067)
+ (-3510 . 161875) (-3511 . 161739) (-3512 . 161665) (-3513 . 161485)
+ (-3514 . 161400) (-3515 . 161295) (-3516 . 161177) (-3517 . 161036)
+ (-3518 . 161005) (-3519 . 160357) (-3520 . 159496) (-3521 . 159325)
+ (-3522 . 159221) (-3523 . 159151) (-3524 . 159082) (-3525 . 159009)
+ (-3526 . 158698) (-3527 . 158646) (-3528 . 158160) (-3529 . 158048)
+ (-3530 . 157878) (-3531 . 157619) (-3532 . 157405) (-3533 . 156038)
+ (-3534 . 155937) (-3535 . 155884) (-3536 . 155456) (-3537 . 155394)
+ (-3538 . 154878) (-3539 . 154731) (-3540 . 154609) (-3541 . 154535)
+ (-3542 . 154428) (-3543 . 154211) (-3544 . 154142) (-3545 . 153982)
+ (-3546 . 153857) (-3547 . 153734) (-3548 . 153515) (-3549 . 153428)
+ (-3550 . 153257) (-3551 . 153101) (-3552 . 153016) (-3553 . 152834)
+ (-3554 . 152679) (-3555 . 152570) (-3556 . 152415) (-3557 . 152197)
+ (-3558 . 152148) (-3559 . 152096) (-3560 . 151985) (-3561 . 151930)
+ (-3562 . 151865) (-3563 . 151349) (-3564 . 150891) (-3565 . 150501)
+ (-3566 . 150050) (-3567 . 149992) (-3568 . 149921) (-3569 . 149756)
+ (-3570 . 149538) (-3571 . 149164) (-3572 . 149090) (-3573 . 148927)
+ (-3574 . 148854) (-3575 . 148753) (-3576 . 148638) (-3577 . 148426)
+ (-3578 . 148268) (-3579 . 148088) (-3580 . 147754) (-3581 . 147667)
+ (-3582 . 147590) (-3583 . 147535) (-3584 . 147480) (-3585 . 147406)
+ (-3586 . 146881) (-3587 . 146746) (-3588 . 146418) (-3589 . 145808)
+ (-3590 . 145731) (-3591 . 145415) (-3592 . 145316) (-3593 . 145065)
+ (-3594 . 144960) (-3595 . 144905) (-3596 . 144715) (-3597 . 144557)
+ (-3598 . 144398) (-3599 . 144345) (-3600 . 144121) (-3601 . 143904)
+ (-3602 . 143824) (-3603 . 143577) (-3604 . 143485) (-3605 . 143407)
+ (-3606 . 143373) (-3607 . 143289) (-3608 . 143231) (-3609 . 143178)
+ (-3610 . 142908) (-3611 . 142823) (-3612 . 142663) (-3613 . 142321)
+ (-3614 . 142249) (-3615 . 142080) (-3616 . 141988) (-3617 . 141884)
+ (-3618 . 141742) (-3619 . 141660) (-3620 . 141590) (-3621 . 141395)
+ (-3622 . 141123) (-3623 . 140970) (-3624 . 140653) (-3625 . 140502)
+ (-3626 . 140401) (-3627 . 140225) (-3628 . 140139) (-3629 . 140035)
+ (-3630 . 139880) (-3631 . 139777) (-3632 . 139598) (-3633 . 139443)
+ (-3634 . 139322) (-3635 . 139048) (-3636 . 138991) (-3637 . 138868)
+ (-3638 . 138749) (-3639 . 137568) (-3640 . 136104) (-3641 . 136036)
+ (-3642 . 135964) (-3643 . 135741) (-3644 . 135477) (-3645 . 135424)
+ (-3646 . 135320) (-3647 . 135264) (-3648 . 135186) (-3649 . 135077)
+ (-3650 . 135005) (-3651 . 134630) (-3652 . 134527) (-3653 . 134374)
+ (-3654 . 134212) (-3655 . 134062) (-3656 . 133948) (-3657 . 133854)
+ (-3658 . 133690) (-3659 . 133623) (-3660 . 133410) (-3661 . 133326)
+ (-3662 . 133225) (-3663 . 133155) (-3664 . 133027) (-3665 . 132877)
+ (-3666 . 132790) (-3667 . 132737) (-3668 . 132575) (-3669 . 132268)
+ (-3670 . 132170) (-3671 . 132083) (-3672 . 131904) (-3673 . 131867)
+ (-3674 . 131654) (-3675 . 131602) (-3676 . 131547) (-3677 . 131401)
+ (-3678 . 131258) (-3679 . 131181) (-3680 . 131096) (-3681 . 130967)
+ (-3682 . 130861) (-3683 . 130778) (-3684 . 130560) (-3685 . 130337)
+ (-3686 . 130258) (-3687 . 129967) (-3688 . 129778) (-3689 . 129652)
+ (-3690 . 128951) (-3691 . 128866) (-3692 . 128762) (-3693 . 128691)
+ (-3694 . 128573) (-3695 . 128430) (-3696 . 128274) (-3697 . 128103)
+ (-3698 . 127994) (-3699 . 127879) (-3700 . 123358) (-3701 . 123240)
+ (-3702 . 123082) (-3703 . 122960) (-3704 . 122790) (-3705 . 122663)
+ (-3706 . 122493) (-3707 . 122361) (-3708 . 122266) (-3709 . 122019)
+ (-3710 . 121597) (-3711 . 120173) (-3712 . 120115) (-3713 . 119972)
+ (-3714 . 119798) (-3715 . 119726) (-3716 . 119658) (-3717 . 119349)
+ (-3718 . 119248) (-3719 . 119054) (-3720 . 118961) (-3721 . 118566)
+ (-3722 . 118429) (-3723 . 118227) (-3724 . 118144) (-3725 . 118046)
+ (-3726 . 117975) (-3727 . 117902) (-3728 . 117593) (-3729 . 117541)
+ (-3730 . 117364) (-3731 . 117208) (-3732 . 117096) (-3733 . 117043)
+ (-3734 . 116449) (-3735 . 116308) (-3736 . 116194) (-3737 . 116134)
+ (-3738 . 113882) (-3739 . 113851) (-3740 . 113604) (-3741 . 113501)
+ (-3742 . 113314) (-3743 . 113208) (-3744 . 113031) (-3745 . 112975)
+ (-3746 . 112632) (-3747 . 112550) (-3748 . 112457) (-3749 . 112211)
+ (-3750 . 112048) (-3751 . 111968) (-3752 . 111916) (-3753 . 111621)
+ (-3754 . 111518) (-3755 . 111366) (-3756 . 111187) (-3757 . 111104)
+ (-3758 . 110960) (-3759 . 110887) (-3760 . 110810) (-3761 . 110725)
+ (-3762 . 110632) (-3763 . 110489) (-3764 . 110436) (-3765 . 110350)
+ (-3766 . 110220) (-3767 . 110146) (-3768 . 109987) (-3769 . 109672)
+ (-3770 . 109573) (-3771 . 108921) (-3772 . 108737) (-3773 . 108650)
+ (-3774 . 107945) (-3775 . 107804) (-3776 . 107735) (-3777 . 107610)
+ (-3778 . 107553) (-3779 . 107439) (-3780 . 107386) (-3781 . 107256)
+ (-3782 . 107117) (-3783 . 107022) (-3784 . 106939) (-3785 . 106449)
+ (-3786 . 106268) (-3787 . 106069) (-3788 . 105998) (-3789 . 105927)
+ (-3790 . 105815) (-3791 . 105669) (-3792 . 105585) (-3793 . 105194)
+ (-3794 . 105141) (-3795 . 105025) (-3796 . 104828) (-3797 . 104743)
+ (-3798 . 104666) (-3799 . 104435) (-3800 . 104348) (-3801 . 104289)
+ (-3802 . 104194) (-3803 . 104064) (-3804 . 103692) (-3805 . 103533)
+ (-3806 . 103477) (-3807 . 103387) (-3808 . 103108) (-3809 . 103057)
+ (-3810 . 88994) (-3811 . 88882) (-3812 . 88788) (-3813 . 88689)
+ (-3814 . 88575) (-3815 . 88372) (-3816 . 88059) (-3817 . 87867)
+ (-3818 . 87808) (-3819 . 87695) (-3820 . 87223) (-3821 . 87173)
+ (-3822 . 87073) (-3823 . 86915) (-3824 . 86820) (-3825 . 86718)
+ (-3826 . 86577) (-3827 . 86351) (-3828 . 86280) (-3829 . 86075)
+ (-3830 . 85979) (-3831 . 85909) (-3832 . 85710) (-3833 . 85626)
+ (-3834 . 85540) (-3835 . 85384) (-3836 . 84813) (-3837 . 84728)
+ (-3838 . 84619) (-3839 . 84503) (-3840 . 84156) (-3841 . 84049)
+ (-3842 . 83905) (-3843 . 83791) (-3844 . 83619) (-3845 . 83521)
+ (-3846 . 83412) (-3847 . 83341) (-3848 . 83186) (-3849 . 80405)
+ (-3850 . 80318) (-3851 . 80061) (-3852 . 80009) (-3853 . 79903)
+ (-3854 . 79854) (-3855 . 79628) (-12 . 79456) (-3857 . 79370)
+ (-3858 . 78889) (-3859 . 78852) (-3860 . 78474) (-3861 . 78422)
+ (-3862 . 78018) (-3863 . 77945) (-3864 . 77424) (-3865 . 77140)
+ (-3866 . 77087) (-3867 . 77035) (-3868 . 76877) (-3869 . 76740)
+ (-3870 . 76570) (-3871 . 76290) (-3872 . 74043) (-3873 . 69341)
+ (-3874 . 69185) (-3875 . 69115) (-3876 . 69041) (-3877 . 68975)
+ (-3878 . 68798) (-3879 . 68744) (-3880 . 68416) (-3881 . 67120)
+ (-3882 . 66485) (-3883 . 66361) (-3884 . 66095) (-3885 . 66028)
+ (-3886 . 65931) (-3887 . 65819) (-3888 . 65645) (-3889 . 65526)
+ (-3890 . 65024) (-3891 . 64867) (-3892 . 64659) (-3893 . 64552)
+ (-3894 . 64496) (-3895 . 63577) (-3896 . 63353) (-3897 . 63297)
+ (-3898 . 63190) (-3899 . 62616) (-3900 . 62560) (-3901 . 62338)
+ (-3902 . 62125) (-3903 . 61328) (-3904 . 61148) (-3905 . 60992)
+ (-3906 . 60837) (-3907 . 60731) (-3908 . 60632) (-3909 . 60548)
+ (-3910 . 60458) (-3911 . 60321) (-3912 . 60028) (-3913 . 59860)
+ (-3914 . 59789) (-3915 . 59567) (-3916 . 59271) (-3917 . 58857)
+ (-3918 . 58707) (-3919 . 58566) (-3920 . 57354) (-3921 . 57221)
+ (-3922 . 56908) (-3923 . 56856) (-3924 . 56783) (-3925 . 56710)
+ (-3926 . 56609) (-3927 . 56469) (-3928 . 56413) (-3929 . 56082)
+ (-3930 . 55862) (-3931 . 55481) (-3932 . 55450) (-3933 . 55377)
+ (-3934 . 54191) (-3935 . 54117) (-3936 . 54052) (-3937 . 53929)
+ (-3938 . 53690) (-3939 . 53549) (-3940 . 53493) (-3941 . 53391)
+ (-3942 . 53181) (-3943 . 52799) (-3944 . 52619) (-3945 . 52507)
+ (-3946 . 52393) (-3947 . 52195) (-3948 . 51650) (-3949 . 51504)
+ (-3950 . 51390) (-3951 . 51225) (-3952 . 51173) (-3953 . 50888)
+ (-3954 . 50787) (-3955 . 50608) (-3956 . 50473) (-3957 . 50249)
+ (-3958 . 50194) (-3959 . 49952) (-3960 . 49878) (-3961 . 49673)
+ (-3962 . 49555) (-3963 . 49484) (-3964 . 49353) (* . 44830)
+ (-3966 . 44760) (-3967 . 44689) (-3968 . 44490) (-3969 . 44314)
+ (-3970 . 44205) (-3971 . 44102) (-3972 . 44004) (-3973 . 43909)
+ (-3974 . 43579) (-3975 . 43439) (-3976 . 43345) (-3977 . 43292)
+ (-3978 . 42877) (-3979 . 42811) (-3980 . 42679) (-3981 . 42648)
+ (-3982 . 42617) (-3983 . 42522) (-3984 . 42442) (-3985 . 42276)
+ (-3986 . 42191) (-3987 . 42032) (-3988 . 41739) (-3989 . 41632)
+ (-3990 . 41474) (-3991 . 41353) (-3992 . 41191) (-3993 . 41139)
+ (-3994 . 40984) (-3995 . 40900) (-3996 . 40227) (-3997 . 40159)
+ (-3998 . 40076) (-3999 . 39894) (-4000 . 39863) (-4001 . 39710)
+ (-4002 . 39504) (-4003 . 39431) (-4004 . 39050) (-4005 . 38992)
+ (-4006 . 38919) (-4007 . 38810) (-4008 . 38629) (-4009 . 38381)
+ (-4010 . 38279) (-4011 . 38189) (-4012 . 37823) (-4013 . 37267)
+ (-4014 . 37030) (-4015 . 36908) (-4016 . 36818) (-4017 . 36431)
+ (-4018 . 36372) (-4019 . 36291) (-4020 . 36194) (-4021 . 36000)
+ (-4022 . 35916) (-4023 . 35807) (-4024 . 35493) (-4025 . 35336)
+ (-4026 . 35270) (-4027 . 35078) (-4028 . 34768) (-4029 . 34701)
+ (-4030 . 34030) (-4031 . 33978) (-4032 . 33872) (-4033 . 33803)
+ (-4034 . 33586) (-4035 . 33391) (-4036 . 33336) (-4037 . 33270)
+ (-4038 . 32716) (-4039 . 32449) (-4040 . 32269) (-4041 . 32139)
+ (-4042 . 31895) (-4043 . 31797) (-4044 . 31518) (-4045 . 31066)
+ (-4046 . 30818) (-4047 . 30574) (-4048 . 30180) (-4049 . 30108)
+ (-4050 . 30025) (-4051 . 29975) (-4052 . 29588) (-4053 . 29560)
+ (-4054 . 29492) (-4055 . 29283) (-4056 . 29227) (-4057 . 29147)
+ (-4058 . 29070) (-4059 . 29042) (-4060 . 28919) (-4061 . 28628)
+ (-4062 . 28530) (-4063 . 28438) (-4064 . 28295) (-4065 . 28134)
+ (-4066 . 28020) (-4067 . 27637) (-4068 . 27567) (-4069 . 27101)
+ (-4070 . 27004) (-4071 . 26921) (-4072 . 26788) (-4073 . 26665)
+ (-4074 . 26481) (-4075 . 26293) (-4076 . 26214) (-4077 . 26099)
+ (-4078 . 25959) (-4079 . 25862) (-4080 . 25768) (-4081 . 25661)
+ (-4082 . 24757) (-4083 . 24674) (-4084 . 24501) (-4085 . 24074)
+ (-4086 . 23956) (-4087 . 23738) (-4088 . 23710) (-4089 . 23623)
+ (-4090 . 23401) (-4091 . 23350) (-4092 . 23243) (-4093 . 23160)
+ (-4094 . 22904) (-4095 . 22830) (-4096 . 22768) (-4097 . 22717)
+ (-4098 . 22634) (-4099 . 22574) (-4100 . 22500) (-4101 . 22273)
+ (-4102 . 22196) (-4103 . 21822) (-4104 . 21735) (-4105 . 21668)
+ (-4106 . 21498) (-4107 . 21299) (-4108 . 21194) (-4109 . 21145)
+ (-4110 . 21039) (-4111 . 20930) (-4112 . 20861) (-4113 . 20769)
+ (-4114 . 20485) (-4115 . 20355) (-4116 . 20306) (-4117 . 20240)
+ (-4118 . 20036) (-4119 . 19963) (-4120 . 19749) (-4121 . 19681)
+ (-4122 . 19596) (-4123 . 19516) (-4124 . 19178) (-4125 . 19107)
+ (-4126 . 18610) (-4127 . 17795) (-4128 . 17427) (-4129 . 17311)
+ (-4130 . 17259) (-4131 . 16969) (-4132 . 16540) (-4133 . 16385)
+ (-4134 . 16125) (-4135 . 16045) (-4136 . 15975) (-4137 . 15888)
+ (-4138 . 15746) (-4139 . 15520) (-4140 . 15434) (-4141 . 15355)
+ (-4142 . 15201) (-4143 . 15135) (-4144 . 14992) (-4145 . 14929)
+ (-4146 . 14861) (-4147 . 14584) (-4148 . 14529) (-4149 . 14188)
+ (-4150 . 14072) (-4151 . 13782) (-4152 . 13577) (-4153 . 13338)
+ (-4154 . 13253) (-4155 . 13197) (-4156 . 13094) (-4157 . 12971)
+ (-4158 . 12815) (-4159 . 12651) (-4160 . 12544) (-4161 . 12471)
+ (-4162 . 12443) (-4163 . 12230) (-4164 . 11795) (-4165 . 11688)
+ (-4166 . 11353) (-4167 . 11247) (-4168 . 11198) (-4169 . 11008)
+ (-4170 . 10384) (-4171 . 9511) (-4172 . 9382) (-4173 . 9300)
+ (-4174 . 9102) (-4175 . 8940) (-4176 . 8624) (-4177 . 8526)
+ (-4178 . 8449) (-4179 . 8024) (-4180 . 7956) (-4181 . 7782)
+ (-4182 . 7618) (-4183 . 7535) (-4184 . 7484) (-4185 . 7240)
+ (-4186 . 5389) (-4187 . 5150) (-4188 . 5034) (-4189 . 4876)
+ (-4190 . 4821) (-4191 . 4608) (-4192 . 4355) (-4193 . 4284)
+ (-4194 . 3936) (-4195 . 3806) (-4196 . 3734) (-4197 . 3576)
+ (-4198 . 3429) (-4199 . 3054) (-4200 . 2980) (-4201 . 2839)
+ (-4202 . 2786) (-4203 . 2652) (-4204 . 2575) (-4205 . 2474)
+ (-4206 . 2328) (-4207 . 2268) (-4208 . 2226) (-4209 . 2074)
+ (-4210 . 1527) (-4211 . 1426) (-4212 . 1298) (-4213 . 938)
+ (-4214 . 742) (-4215 . 552) (-4216 . 358) (-4217 . 140) (-4218 . 30)) \ No newline at end of file